Merge pull request #12 from SethBarberee/master

Merge work from SethBarberee/pmd-red into pret.
This commit is contained in:
Seth Barberee 2020-12-17 13:17:58 -06:00 committed by GitHub
commit 096de8d9b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1015 changed files with 806545 additions and 313227 deletions

3
.gitignore vendored
View File

@ -17,8 +17,6 @@
sound/**/*.bin
src/*.s
tools/agbcc
ld_script_ruby.txt
ld_script_sapphire.txt
*.map
*.id0
*.id1
@ -39,3 +37,4 @@ build/
.idea/
*.DS_Store
*.pl
*.a

View File

@ -0,0 +1,204 @@
#!/usr/bin/perl
use IPC::Cmd qw[ run ];
(@ARGV == 1)
or die "ERROR: no map file specified.\n";
open(my $file, $ARGV[0])
or die "ERROR: could not open file '$ARGV[0]'.\n";
my $src = 0;
my $asm = 0;
my $srcdata = 0;
my $data = 0;
while (my $line = <$file>)
{
if ($line =~ /^ \.(\w+)\s+0x[0-9a-f]+\s+(0x[0-9a-f]+) (\w+)\/.+\.o/)
{
my $section = $1;
my $size = hex($2);
my $dir = $3;
if ($section =~ /text/)
{
if ($dir eq 'src')
{
$src += $size;
}
elsif ($dir eq 'asm')
{
$asm += $size;
}
}
elsif ($section =~ /rodata/)
{
if ($dir eq 'src')
{
$srcdata += $size;
}
elsif ($dir eq 'data')
{
$data += $size;
}
}
}
}
(my $elffname = $ARGV[0]) =~ s/\.map/.elf/;
# Note that the grep filters out all branch labels. It also requires a minimum
# line length of 5, to filter out a ton of generated symbols (like AcCn). No
# settings to nm seem to remove these symbols. Finally, nm prints out a separate
# entry for whenever a name appears in a file, not just where it's defined. uniq
# removes all the duplicate entries.
#
#
# You'd expect this to take a while, because of uniq. It runs in under a second,
# though. Uniq is pretty fast!
my $base_cmd = "nm $elffname | awk '{print \$3}' | grep '^[^_].\\{4\\}' | uniq";
# This looks for Unknown_, Unknown_, or sub_, followed by just numbers. Note that
# it matches even if stuff precedes the unknown, like sUnknown/gUnknown.
# 'sub_' anchors to the start so it does not consider symbols like 'nullsub_12' undocumented.
my $undoc_cmd = "grep -E '[Uu]nknown_[0-9a-fA-F]*|^sub_[0-9a-fA-F]*'";
# This looks for every symbol with an address at the end of it. Some things are
# given a name based on their type / location, but still have an unknown purpose.
# For example, FooMap_EventScript_FFFFFFF.
my $partial_doc_cmd = "grep '_[0-38-9][0-9a-fA-F]\\{5,6\\}'";
my $count_cmd = "wc -l";
my $incbin_cmd = "find \"\$(dirname $elffname)\" \\( -name '*.s' -o -name '*.inc' \\) -exec cat {} ';' | grep -oE '^\\s*\\.incbin\\s*\"[^\"]+\"\s*,\\s*(0x)?[0-9a-fA-F]+\\s*,\\s*(0x)?[0-9a-fA-F]+' -";
# It sucks that we have to run this three times, but I can't figure out how to get
# stdin working for subcommands in perl while still having a timeout. It's decently
# fast anyway.
my $total_syms_as_string;
(run (
command => "$base_cmd | $count_cmd",
buffer => \$total_syms_as_string,
timeout => 60
))
or die "ERROR: Error while getting all symbols: $?";
my $undocumented_as_string;
(run (
command => "$base_cmd | $undoc_cmd | $count_cmd",
buffer => \$undocumented_as_string,
timeout => 60
))
or die "ERROR: Error while filtering for undocumented symbols: $?";
my $partial_documented_as_string;
(run (
command => "$base_cmd | $partial_doc_cmd | $count_cmd",
buffer => \$partial_documented_as_string,
timeout => 60
))
or die "ERROR: Error while filtering for partial symbols: $?";
my $incbin_count_as_string;
(run (
command => "$incbin_cmd | $count_cmd",
buffer => \$incbin_count_as_string,
timeout => 60
))
or die "ERROR: Error while counting incbins: $?";
my $incbin_bytes_as_string;
(run (
command => "(echo -n 'ibase=16;' ; $incbin_cmd | sed -E 's/.*,\\s*0x([0-9a-fA-F]+)/\\1/' | tr '\\n' '+'; echo '0' ) | bc",
buffer => \$incbin_bytes_as_string,
timeout => 60
))
or die "ERROR: Error while calculating incbin totals: $?";
# Performing addition on a string converts it to a number. Any string that fails
# to convert to a number becomes 0. So if our converted number is 0, but our string
# is nonzero, then the conversion was an error.
my $undocumented = $undocumented_as_string + 0;
(($undocumented != 0) and ($undocumented_as_string ne "0"))
or die "ERROR: Cannot convert string to num: '$undocumented_as_string'";
my $partial_documented = $partial_documented_as_string + 0;
(($partial_documented != 0) and ($partial_documented_as_string ne "0"))
or die "ERROR: Cannot convert string to num: '$partial_documented_as_string'";
my $total_syms = $total_syms_as_string + 0;
(($total_syms != 0) and ($total_syms_as_string ne "0"))
or die "ERROR: Cannot convert string to num: '$total_syms_as_string'";
($total_syms != 0)
or die "ERROR: No symbols found.";
my $incbin_count = $incbin_count_as_string + 0;
(($incbin_count != 0) and ($incbin_count_as_string ne "0"))
or die "ERROR: Cannot convert string to num: '$incbin_count_as_string'";
my $incbin_bytes = $incbin_bytes_as_string + 0;
(($incbin_bytes != 0) and ($incbin_bytes_as_string ne "0"))
or die "ERROR: Cannot convert string to num: '$incbin_bytes_as_string'";
my $total = $src + $asm;
my $srcPct = sprintf("%.4f", 100 * $src / $total);
my $asmPct = sprintf("%.4f", 100 * $asm / $total);
# partial_documented is double-counting the unknown_* and sub_* symbols.
$partial_documented = $partial_documented - $undocumented;
my $documented = $total_syms - ($undocumented + $partial_documented);
my $docPct = sprintf("%.4f", 100 * $documented / $total_syms);
my $partialPct = sprintf("%.4f", 100 * $partial_documented / $total_syms);
my $undocPct = sprintf("%.4f", 100 * $undocumented / $total_syms);
if ($asm == 0)
{
print "Code decompilation is 100% complete\n"
}
else
{
print "$total total bytes of code\n";
print "$src bytes of code in src ($srcPct%)\n";
print "$asm bytes of code in asm ($asmPct%)\n";
}
print "\n";
if ($partial_documented == 0 && $undocumented == 0)
{
print "Documentation is 100% complete\n"
}
else
{
print "$total_syms total symbols\n";
print "$documented symbols documented ($docPct%)\n";
print "$partial_documented symbols partially documented ($partialPct%)\n";
print "$undocumented symbols undocumented ($undocPct%)\n";
}
print "\n";
my $dataTotal = $srcdata + $data;
my $srcDataPct = sprintf("%.4f", 100 * $srcdata / $dataTotal);
my $dataPct = sprintf("%.4f", 100 * $data / $dataTotal);
my $incPct = sprintf("%.4f", 100 * $incbin_bytes / $dataTotal);
if ($data == 0)
{
print "Data porting to C is 100% complete\n"
}
else
{
print "$dataTotal total bytes of data\n";
print "$srcdata bytes of data in src ($srcDataPct%)\n";
print "$data bytes of data in data ($dataPct%)\n";
}
print "\n";
if ($incbin_count == 0) {
print "All incbins have been eliminated\n"
} else {
print "$incbin_bytes bytes of data in $incbin_count incbins ($incPct%)\n"
}

View File

@ -0,0 +1,16 @@
#!/bin/bash -ex
# Only run this script if it's the master branch build.
if [[ "$TRAVIS_BRANCH" != "master" || "$TRAVIS_PULL_REQUEST" != "false" ]]; then
exit 0
fi
build_name=$1
map_file=$build_name.map
if [ ! -f $map_file ]; then
echo "$map_file does not exist!"
exit 1
fi
output=$(perl $(dirname "$0")/calcrom.pl $build_name.map | sed -E ':a;N;$!ba;s/\r{0,1}\n/\\n/g')
curl -d "{\"username\": \"$CALCROM_DISCORD_WEBHOOK_USERNAME\", \"avatar_url\": \"$CALCROM_DISCORD_WEBHOOK_AVATAR_URL\", \"content\":\"\`\`\`$build_name progress:\\n$output\`\`\`\"}" -H "Content-Type: application/json" -X POST $CALCROM_DISCORD_WEBHOOK_URL

View File

@ -51,9 +51,9 @@ ALL_OBJECTS := $(C_OBJECTS) $(ASM_OBJECTS)
SUBDIRS := $(sort $(dir $(ALL_OBJECTS)))
ifeq ($(OS),Windows_NT)
LIB := ../../tools/agbcc/lib/libc.a ../../tools/agbcc/lib/libgcc.a
LIB := ../../tools/agbcc/lib/libc.a ../../tools/agbcc/lib/libgcc.a ../../libagbsyscall/libagbsyscall.a
else
LIB := -L ../../tools/agbcc/lib -lc -lgcc
LIB := -L ../../tools/agbcc/lib -lc -lgcc -L ../../libagbsyscall -lagbsyscall
endif
LD_SCRIPT := $(BUILD_DIR)/ld_script.ld
@ -63,8 +63,7 @@ $(BUILD_DIR)/src/agb_flash.o : CC1FLAGS := -O -mthumb-interwork
$(BUILD_DIR)/src/agb_flash_1m.o: CC1FLAGS := -O -mthumb-interwork
$(BUILD_DIR)/src/agb_flash_mx.o: CC1FLAGS := -O -mthumb-interwork
$(BUILD_DIR)/src/m4a_2.o: CC1 := tools/agbcc/bin/old_agbcc
$(BUILD_DIR)/src/m4a_4.o: CC1 := tools/agbcc/bin/old_agbcc
$(BUILD_DIR)/src/m4a.o: CC1 := tools/agbcc/bin/old_agbcc
#### Main Rules ####
@ -78,7 +77,7 @@ endif
ALL_BUILDS := red
# Available targets
.PHONY: all clean tidy
.PHONY: all clean tidy libagbsyscall
MAKEFLAGS += --no-print-directory
# Secondary expansion is required for dependency variables in object rules.
@ -107,12 +106,13 @@ clean: tidy
tidy:
$(RM) $(ALL_BUILDS:%=pmd_%{.gba,.elf,.map})
$(RM) -r build
@$(MAKE) clean -C libagbsyscall
$(ROM): %.gba: %.elf
$(OBJCOPY) -O binary --gap-fill 0xFF --pad-to 0xA000000 $< $@
$(GBAFIX) $@ -p -t"$(TITLE)" -c$(GAME_CODE) -m$(MAKER_CODE) -r$(REVISION) --silent
%.elf: $(LD_SCRIPT) $(ALL_OBJECTS) $(LIBC)
%.elf: $(LD_SCRIPT) $(ALL_OBJECTS) $(LIBC) libagbsyscall
cd $(BUILD_DIR) && $(LD) -T ld_script.ld -Map ../../$(MAP) -o ../../$@ $(LIB)
$(LD_SCRIPT): ld_script.txt $(BUILD_DIR)/sym_ewram.ld $(BUILD_DIR)/sym_ewram2.ld $(BUILD_DIR)/sym_iwram.ld
@ -131,3 +131,6 @@ $(BUILD_DIR)/data/%.o: data/%.s $$(ASM_DEP)
$(BUILD_DIR)/%.o: %.s $$(ASM_DEP)
$(AS) $(ASFLAGS) $< -o $@
libagbsyscall:
@$(MAKE) -C libagbsyscall TOOLCHAIN=$(TOOLCHAIN)

112
asm/arm_func.s Normal file
View File

@ -0,0 +1,112 @@
.include "constants/gba_constants.inc"
.include "asm/macros.inc"
.syntax unified
.text
arm_func_start sub_80001E8
sub_80001E8:
stmdb sp!, {r4-r11}
mov r12, 0x4000000 @ REG_BASE
ldr r11, _08000224
add r10, r11, 0x40
mov r9, 0x1
mov r8, 0
strb r8, [r12, 0x208] @ REG_IME
ldmia r10, {r0-r7}
stmia r10!, {r4-r7}
stmia r10!, {r0-r3}
ldr r0, [r11, 0x4]
str r8, [r11, 0x4]
strb r9, [r12, 0x208] @ REG_IME
ldmia sp!, {r4-r11}
bx lr
.align 2, 0
_08000224: .4byte gUnknown_202DCF8
arm_func_end sub_80001E8
arm_func_start sub_8000228
sub_8000228:
mov r12, 0x4000000
add r12, r12, 0x120 @ REG_SIODATA32
ldmia r12, {r0,r1}
stmdb sp!, {r7-r11}
ldr r11, _08000340
mov r9, 0xFE
add r9, r9, 0xFE00
ldrh r3, [r12, 0x8]
and r3, r3, 0x40
strb r3, [r11, 0x9]
ldr r10, [r11, 0x14]
adds r3, r10, 0x1
blt _08000284
bne _08000278
strh r9, [r12, 0xA]
add r8, r11, 0x28
ldmia r8, {r2,r3}
mov r7, r2
stmia r8, {r3,r7}
b _08000284
_08000278:
ldr r3, [r11, 0x2C]
ldr r2, [r3, r10, lsl 1]
strh r2, [r12, 0xA]
_08000284:
cmp r10, 0xB
addlt r10, r10, 0x1
strlt r10, [r11, 0x14]
stmdb sp!, {r0,r1,r5,r6}
mov r6, 0x3
_08000298:
add r8, r11, 0x18
add r8, r8, r6, lsl 2
ldr r10, [r8]
mov r3, r6, lsl 1
ldrh r5, [sp, r3]
cmp r5, r9
bne _080002C8
cmp r10, 0x9
ble _080002C8
mov r0, 0x1
sub r10, r0, 0x2
b _080002F4
_080002C8:
ldr r0, [r8, 0x18]
mov r3, r10, lsl 1
strh r5, [r0, r3]
cmp r10, 0x9
bne _080002F4
ldr r1, [r8, 0x28]
str r0, [r8, 0x28]
str r1, [r8, 0x18]
add r3, r11, 0x4
mov r0, 0x1
strb r0, [r3, r6]
_080002F4:
cmp r10, 0xB
addlt r10, r10, 0x1
str r10, [r8]
subs r6, r6, 0x1
bge _08000298
ldrb r0, [r11]
cmp r0, 0
beq _08000334
ldr r7, _08000344 @ REG_TM3CNT_H
mov r0, 0
strh r0, [r7]
ldrh r0, [r12, 0x8]
orr r0, r0, 0x80
strh r0, [r12, 0x8]
mov r0, 0xC0
strh r0, [r7]
_08000334:
add sp, sp, 0x8
ldmia sp!, {r5-r11}
bx lr
.align 2, 0
_08000340: .4byte gUnknown_202DCF8
_08000344: .4byte 0x0400010e
arm_func_end sub_8000228
.align 2,0

2070
asm/code.s

File diff suppressed because it is too large Load Diff

1929
asm/code_2.s Normal file

File diff suppressed because it is too large Load Diff

View File

@ -5,16 +5,7 @@
.text
thumb_func_start nullsub_141
nullsub_141:
bx lr
thumb_func_end nullsub_141
thumb_func_start nullsub_142
nullsub_142:
bx lr
thumb_func_end nullsub_142
@ Unused
thumb_func_start sub_80035F8
sub_80035F8:
push {lr}

View File

@ -1559,86 +1559,4 @@ _08006094:
_080060A4: .4byte 0x000003ff
thumb_func_end sub_8005838
thumb_func_start sub_80060A8
sub_80060A8:
push {lr}
ldr r1, _080060D8
ldr r0, _080060DC
ldr r0, [r0]
str r0, [r1]
ldr r2, _080060E0
movs r1, 0
ldr r0, [r2]
cmp r0, 0
bne _080060BE
movs r1, 0x1
_080060BE:
str r1, [r2]
ldr r2, _080060E4
movs r1, 0
ldr r0, [r2]
cmp r0, 0
bne _080060CC
movs r1, 0x1
_080060CC:
str r1, [r2]
ldr r1, _080060E8
movs r0, 0
strb r0, [r1]
pop {r0}
bx r0
.align 2, 0
_080060D8: .4byte gUnknown_2026E3C
_080060DC: .4byte gUnknown_2026E58
_080060E0: .4byte gUnknown_2026E54
_080060E4: .4byte gUnknown_2026E50
_080060E8: .4byte gUnknown_2026E38
thumb_func_end sub_80060A8
thumb_func_start sub_80060EC
sub_80060EC:
push {lr}
ldr r1, _08006130
ldr r0, _08006134
ldr r0, [r0]
str r0, [r1]
ldr r2, _08006138
movs r1, 0
ldr r0, [r2]
cmp r0, 0
bne _08006102
movs r1, 0x1
_08006102:
str r1, [r2]
ldr r2, _0800613C
movs r1, 0
ldr r0, [r2]
cmp r0, 0
bne _08006110
movs r1, 0x1
_08006110:
str r1, [r2]
ldr r0, _08006140
ldrh r2, [r0]
movs r0, 0xF8
lsls r0, 5
ands r0, r2
lsrs r0, 8
movs r1, 0x1F
ands r1, r2
bl sub_800CC44
ldr r1, _08006144
movs r0, 0x1
strb r0, [r1]
pop {r0}
bx r0
.align 2, 0
_08006130: .4byte gUnknown_2026E3C
_08006134: .4byte gUnknown_2026E58
_08006138: .4byte gUnknown_2026E54
_0800613C: .4byte gUnknown_2026E50
_08006140: .4byte gUnknown_2026E4E
_08006144: .4byte gUnknown_2026E38
thumb_func_end sub_80060EC
.align 2, 0 @ Don't pad with nop.

View File

@ -5,8 +5,8 @@
.text
thumb_func_start sub_8009804
sub_8009804:
thumb_func_start vram_related_8009804
vram_related_8009804:
push {lr}
movs r1, 0xC0
lsls r1, 19
@ -83,7 +83,7 @@ _08009890: .4byte 0x06010000
_08009894: .4byte 0x00001f7f
_08009898: .4byte 0x05000200
_0800989C: .4byte 0x00a000a0
thumb_func_end sub_8009804
thumb_func_end vram_related_8009804
thumb_func_start sub_80098A0
sub_80098A0:
@ -2356,32 +2356,4 @@ _0800A878:
bx r0
thumb_func_end sub_800A78C
thumb_func_start sub_800A894
sub_800A894:
push {lr}
adds r2, r0, 0
adds r0, r1, 0
cmp r0, 0
bgt _0800A8A0
movs r0, 0x1
_0800A8A0:
ldr r1, _0800A8BC
cmp r0, r1
ble _0800A8A8
adds r0, r1, 0
_0800A8A8:
ldr r1, _0800A8C0
lsls r0, 2
adds r0, r1
ldr r0, [r0]
str r0, [r2, 0x4]
movs r0, 0
str r0, [r2]
pop {r0}
bx r0
.align 2, 0
_0800A8BC: .4byte 0x0000012b
_0800A8C0: .4byte gUnknown_80B96E4
thumb_func_end sub_800A894
.align 2, 0 @ Don't pad with nop.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

776
asm/code_800B5F0.s Normal file
View File

@ -0,0 +1,776 @@
.include "constants/gba_constants.inc"
.include "asm/macros.inc"
.syntax unified
.text
thumb_func_start sub_800B720
sub_800B720:
push {r4-r7,lr}
mov r7, r10
mov r6, r9
mov r5, r8
push {r5-r7}
sub sp, 0x14
str r1, [sp]
lsls r0, 16
asrs r0, 16
str r0, [sp, 0xC]
bl DisableInterrupts
lsls r0, 24
lsrs r0, 24
str r0, [sp, 0x4]
ldr r0, _0800B780
mov r8, r0
ldr r1, _0800B784
mov r10, r1
ldr r2, _0800B788
mov r9, r2
ldr r5, _0800B78C
mov r12, r5
_0800B74E:
movs r7, 0
str r7, [sp, 0x10]
movs r4, 0
ldr r3, _0800B784
mov r1, r8
movs r2, 0
ldrsh r0, [r1, r2]
ldr r6, _0800B78C
ldr r5, [sp, 0xC]
lsls r5, 16
str r5, [sp, 0x8]
cmp r4, r0
bge _0800B7BA
movs r7, 0
ldrsh r1, [r3, r7]
ldrh r2, [r6]
movs r5, 0
ldrsh r0, [r6, r5]
cmp r1, r0
bne _0800B790
adds r0, r2, 0x1
mov r7, r9
ands r0, r7
strh r0, [r6]
b _0800B74E
.align 2, 0
_0800B780: .4byte gUnknown_203B0AA
_0800B784: .4byte gUnknown_202D608
_0800B788: .4byte 0x00007fff
_0800B78C: .4byte gUnknown_203B0A8
_0800B790:
adds r4, 0x1
adds r3, 0x8
mov r1, r8
movs r2, 0
ldrsh r0, [r1, r2]
cmp r4, r0
bge _0800B7BA
movs r5, 0
ldrsh r1, [r3, r5]
mov r7, r12
ldrh r2, [r7]
movs r5, 0
ldrsh r0, [r7, r5]
cmp r1, r0
bne _0800B790
adds r0, r2, 0x1
mov r7, r9
ands r0, r7
strh r0, [r6]
movs r0, 0x1
str r0, [sp, 0x10]
_0800B7BA:
ldr r1, [sp, 0x10]
cmp r1, 0
bne _0800B74E
movs r4, 0
mov r3, r10
ldr r2, _0800B84C
movs r5, 0
ldrsh r1, [r2, r5]
cmp r4, r1
bge _0800B7EA
movs r7, 0x2
ldrsh r0, [r3, r7]
ldr r2, [sp, 0xC]
cmp r0, r2
bgt _0800B7EA
_0800B7D8:
adds r4, 0x1
adds r3, 0x8
cmp r4, r1
bge _0800B7EA
movs r5, 0x2
ldrsh r0, [r3, r5]
ldr r7, [sp, 0xC]
cmp r0, r7
ble _0800B7D8
_0800B7EA:
ldr r1, _0800B84C
movs r2, 0
ldrsh r0, [r1, r2]
subs r2, r0, 0x1
lsls r0, r2, 3
mov r5, r10
adds r3, r0, r5
lsls r5, r4, 3
cmp r2, r4
blt _0800B80E
_0800B7FE:
ldr r0, [r3]
ldr r1, [r3, 0x4]
str r0, [r3, 0x8]
str r1, [r3, 0xC]
subs r2, 0x1
subs r3, 0x8
cmp r2, r4
bge _0800B7FE
_0800B80E:
ldr r7, _0800B84C
ldrh r0, [r7]
adds r0, 0x1
strh r0, [r7]
mov r0, r10
adds r1, r5, r0
ldrh r0, [r6]
strh r0, [r1]
ldr r2, [sp, 0x8]
lsrs r0, r2, 16
strh r0, [r1, 0x2]
mov r0, r10
adds r0, 0x4
adds r0, r5, r0
ldr r5, [sp]
str r5, [r0]
ldr r7, [sp, 0x4]
cmp r7, 0
beq _0800B838
bl EnableInterrupts
_0800B838:
movs r1, 0
ldrsh r0, [r6, r1]
add sp, 0x14
pop {r3-r5}
mov r8, r3
mov r9, r4
mov r10, r5
pop {r4-r7}
pop {r1}
bx r1
.align 2, 0
_0800B84C: .4byte gUnknown_203B0AA
thumb_func_end sub_800B720
thumb_func_start sub_800B850
sub_800B850:
push {r4-r7,lr}
lsls r0, 16
asrs r6, r0, 16
bl DisableInterrupts
lsls r0, 24
lsrs r5, r0, 24
movs r2, 0
ldr r4, _0800B8A0
ldr r3, _0800B8A4
movs r1, 0
ldrsh r0, [r3, r1]
cmp r2, r0
bge _0800B8B4
adds r1, r3, 0
_0800B86E:
movs r7, 0
ldrsh r0, [r4, r7]
cmp r0, r6
bne _0800B8A8
ldrh r0, [r1]
subs r0, 0x1
strh r0, [r1]
movs r3, 0
ldrsh r0, [r1, r3]
cmp r2, r0
bge _0800B896
ldr r3, _0800B8A4
_0800B886:
ldr r0, [r4, 0x8]
ldr r1, [r4, 0xC]
stm r4!, {r0,r1}
adds r2, 0x1
movs r7, 0
ldrsh r0, [r3, r7]
cmp r2, r0
blt _0800B886
_0800B896:
cmp r5, 0
beq _0800B8BC
bl EnableInterrupts
b _0800B8BC
.align 2, 0
_0800B8A0: .4byte gUnknown_202D608
_0800B8A4: .4byte gUnknown_203B0AA
_0800B8A8:
adds r2, 0x1
adds r4, 0x8
movs r7, 0
ldrsh r0, [r3, r7]
cmp r2, r0
blt _0800B86E
_0800B8B4:
cmp r5, 0
beq _0800B8BC
bl EnableInterrupts
_0800B8BC:
pop {r4-r7}
pop {r0}
bx r0
thumb_func_end sub_800B850
thumb_func_start nullsub_177
nullsub_177:
bx lr
thumb_func_end nullsub_177
thumb_func_start VBlankIntr
VBlankIntr:
push {r4-r7,lr}
mov r7, r10
mov r6, r9
mov r5, r8
push {r5-r7}
ldr r0, _0800B95C
ldr r1, [r0]
adds r1, 0x1
str r1, [r0]
bl SoundVSync
bl BlinkSavingIcon
ldr r0, _0800B960
ldr r0, [r0, 0x4]
cmp r0, 0
beq _0800B8EE
bl _call_via_r0
_0800B8EE:
movs r2, 0
ldr r3, _0800B964
movs r1, 0
ldrsh r0, [r3, r1]
adds r6, r3, 0
ldr r7, _0800B968
ldr r1, _0800B96C
mov r12, r1
ldr r1, _0800B970
mov r8, r1
ldr r1, _0800B974
mov r9, r1
ldr r1, _0800B978
mov r10, r1
cmp r2, r0
bge _0800B920
ldr r5, _0800B97C
ldr r4, _0800B980
_0800B912:
ldm r5!, {r0,r1}
stm r4!, {r0,r1}
adds r2, 0x1
movs r1, 0
ldrsh r0, [r3, r1]
cmp r2, r0
blt _0800B912
_0800B920:
ldrh r0, [r6]
strh r0, [r7]
movs r1, 0x1
negs r1, r1
adds r0, r1, 0
mov r1, r12
strh r0, [r1]
mov r1, r8
strh r0, [r1]
mov r1, r9
strh r0, [r1]
ldr r1, _0800B984
movs r0, 0x28
strh r0, [r1]
mov r1, r10
ldrb r0, [r1]
cmp r0, 0
bne _0800B948
bl UpdateSound
_0800B948:
movs r0, 0x1
bl SetInterruptFlag
pop {r3-r5}
mov r8, r3
mov r9, r4
mov r10, r5
pop {r4-r7}
pop {r0}
bx r0
.align 2, 0
_0800B95C: .4byte gUnknown_203B0A0
_0800B960: .4byte gUnknown_202D5F0
_0800B964: .4byte gUnknown_203B0AA
_0800B968: .4byte gUnknown_203B0AC
_0800B96C: .4byte gUnknown_203B0AE
_0800B970: .4byte gUnknown_203B0B0
_0800B974: .4byte gUnknown_203B0B2
_0800B978: .4byte gUnknown_203B099
_0800B97C: .4byte gUnknown_202D608
_0800B980: .4byte gUnknown_202D648
_0800B984: .4byte 0x04000004
thumb_func_end VBlankIntr
thumb_func_start VCountIntr
VCountIntr:
push {r4-r7,lr}
mov r7, r8
push {r7}
ldr r0, _0800BA44
ldrh r0, [r0]
lsls r0, 16
asrs r6, r0, 16
ldr r0, _0800BA48
movs r2, 0
ldrsh r1, [r0, r2]
adds r7, r0, 0
cmp r1, 0
bge _0800B9B2
ldr r0, _0800BA4C
ldr r0, [r0, 0x8]
cmp r0, 0
beq _0800B9AE
bl _call_via_r0
_0800B9AE:
movs r0, 0
strh r0, [r7]
_0800B9B2:
ldr r0, _0800BA50
movs r3, 0
ldrsh r2, [r7, r3]
movs r3, 0
ldrsh r1, [r0, r3]
mov r8, r0
cmp r2, r1
bge _0800BA34
ldr r1, _0800BA54
adds r0, r2, 0
lsls r0, 3
adds r0, r1
movs r3, 0x2
ldrsh r0, [r0, r3]
cmp r0, r6
bgt _0800BA10
adds r5, r1, 0
adds r4, r7, 0
_0800B9D6:
movs r1, 0
ldrsh r0, [r4, r1]
lsls r0, 3
adds r1, r5, 0x4
adds r0, r1
ldr r0, [r0]
cmp r0, 0
beq _0800B9EA
bl _call_via_r0
_0800B9EA:
ldrh r0, [r4]
adds r0, 0x1
strh r0, [r4]
ldr r1, _0800BA50
lsls r0, 16
asrs r0, 16
movs r2, 0
ldrsh r1, [r1, r2]
cmp r0, r1
bge _0800BA34
movs r3, 0
ldrsh r0, [r4, r3]
lsls r0, 3
adds r0, r5
movs r1, 0x2
ldrsh r0, [r0, r1]
ldr r7, _0800BA48
cmp r0, r6
ble _0800B9D6
_0800BA10:
movs r2, 0
ldrsh r1, [r7, r2]
mov r3, r8
movs r2, 0
ldrsh r0, [r3, r2]
cmp r1, r0
bge _0800BA34
ldr r2, _0800BA58
ldr r1, _0800BA54
movs r3, 0
ldrsh r0, [r7, r3]
lsls r0, 3
adds r0, r1
ldrh r0, [r0, 0x2]
lsls r0, 8
movs r1, 0x28
orrs r0, r1
strh r0, [r2]
_0800BA34:
movs r0, 0x4
bl SetInterruptFlag
pop {r3}
mov r8, r3
pop {r4-r7}
pop {r0}
bx r0
.align 2, 0
_0800BA44: .4byte 0x04000006
_0800BA48: .4byte gUnknown_203B0AE
_0800BA4C: .4byte gUnknown_202D5F0
_0800BA50: .4byte gUnknown_203B0AC
_0800BA54: .4byte gUnknown_202D648
_0800BA58: .4byte 0x04000004
thumb_func_end VCountIntr
thumb_func_start sub_800BA5C
sub_800BA5C:
push {r4,lr}
ldr r4, _0800BAA4
ldrb r0, [r4]
cmp r0, 0
beq _0800BA72
ldr r1, _0800BAA8
ldr r0, [r1]
adds r0, 0x1
str r0, [r1]
bl xxx_update_bg_sound_input
_0800BA72:
movs r0, 0x1
strb r0, [r4]
ldr r1, _0800BAAC
movs r0, 0
strb r0, [r1]
ldr r1, _0800BAA8
movs r0, 0
str r0, [r1]
bl nullsub_25
ldr r1, _0800BAB0
_0800BA88:
ldrh r0, [r1]
cmp r0, 0x9F
bhi _0800BA88
ldr r1, _0800BAB4
movs r0, 0x1
strb r0, [r1]
bl VBlankIntrWait
bl nullsub_18
pop {r4}
pop {r0}
bx r0
.align 2, 0
_0800BAA4: .4byte gUnknown_203B09A
_0800BAA8: .4byte gUnknown_203B09C
_0800BAAC: .4byte gUnknown_203B09B
_0800BAB0: .4byte 0x04000006
_0800BAB4: .4byte gUnknown_203B099
thumb_func_end sub_800BA5C
thumb_func_start xxx_update_bg_sound_input
xxx_update_bg_sound_input:
push {r4,r5,lr}
ldr r1, _0800BACC
ldrb r4, [r1]
cmp r4, 0
beq _0800BAD4
ldr r1, _0800BAD0
ldr r0, [r1]
adds r0, 0x1
str r0, [r1]
b _0800BAFE
.align 2, 0
_0800BACC: .4byte gUnknown_203B09B
_0800BAD0: .4byte gUnknown_203B09C
_0800BAD4:
movs r0, 0x1
strb r0, [r1]
ldr r0, _0800BB04
strb r4, [r0]
ldr r0, _0800BB08
str r4, [r0]
bl UpdateBGControlRegisters
ldr r5, _0800BB0C
ldrb r0, [r5]
cmp r0, 0
beq _0800BAF0
bl UpdateSound
_0800BAF0:
bl UpdateInput
strb r4, [r5]
ldr r0, _0800BB10
ldr r1, _0800BB14
ldr r1, [r1]
str r1, [r0]
_0800BAFE:
pop {r4,r5}
pop {r0}
bx r0
.align 2, 0
_0800BB04: .4byte gUnknown_203B09A
_0800BB08: .4byte gUnknown_203B09C
_0800BB0C: .4byte gUnknown_203B099
_0800BB10: .4byte gUnknown_203B0A4
_0800BB14: .4byte gUnknown_203B0A0
thumb_func_end xxx_update_bg_sound_input
thumb_func_start Timer3Intr
Timer3Intr:
push {lr}
ldr r0, _0800BB30
ldr r0, [r0, 0x10]
cmp r0, 0
beq _0800BB26
bl _call_via_r0
_0800BB26:
movs r0, 0x40
bl SetInterruptFlag
pop {r0}
bx r0
.align 2, 0
_0800BB30: .4byte gUnknown_202D5F0
thumb_func_end Timer3Intr
thumb_func_start sub_800BB34
sub_800BB34:
ldr r0, _0800BB3C
ldr r0, [r0]
bx lr
.align 2, 0
_0800BB3C: .4byte gUnknown_203B0A0
thumb_func_end sub_800BB34
thumb_func_start nullsub_178
nullsub_178:
bx lr
thumb_func_end nullsub_178
thumb_func_start sub_800BB44
sub_800BB44:
push {r4-r7,lr}
mov r7, r10
mov r6, r9
mov r5, r8
push {r5-r7}
sub sp, 0x4
ldr r2, _0800BBF0
ldrh r0, [r2]
ldr r1, _0800BBF4
cmp r0, r1
beq _0800BB60
_0800BB5A:
ldrh r0, [r2]
cmp r0, r1
bne _0800BB5A
_0800BB60:
bl DisableInterrupts
lsls r0, 24
lsrs r0, 24
str r0, [sp]
ldr r1, _0800BBF8
_0800BB6C:
ldrh r0, [r1]
cmp r0, 0x9F
bls _0800BB6C
movs r0, 0x80
lsls r0, 19
mov r9, r0
ldrh r1, [r0]
mov r8, r1
movs r0, 0x80
mov r2, r9
strh r0, [r2]
movs r7, 0xA0
lsls r7, 19
ldr r1, _0800BBFC
adds r0, r1, 0
strh r0, [r7]
ldr r5, _0800BC00
ldrh r4, [r5]
movs r2, 0xC0
lsls r2, 6
adds r0, r2, 0
strh r0, [r5]
ldr r0, _0800BC04
mov r10, r0
ldr r1, _0800BC08
adds r0, r1, 0
mov r2, r10
strh r0, [r2]
ldr r6, _0800BC0C
movs r0, 0x1
strh r0, [r6]
bl SoundBiasReset
swi 0x3
bl SoundBiasSet
movs r0, 0
strh r0, [r6]
strh r4, [r5]
mov r1, r10
strh r0, [r1]
mov r1, r8
mov r2, r9
strh r1, [r2]
strh r0, [r7]
ldr r2, [sp]
cmp r2, 0
beq _0800BBD0
bl EnableInterrupts
_0800BBD0:
ldr r2, _0800BBF0
ldrh r0, [r2]
ldr r1, _0800BBF4
cmp r0, r1
beq _0800BBE0
_0800BBDA:
ldrh r0, [r2]
cmp r0, r1
bne _0800BBDA
_0800BBE0:
add sp, 0x4
pop {r3-r5}
mov r8, r3
mov r9, r4
mov r10, r5
pop {r4-r7}
pop {r0}
bx r0
.align 2, 0
_0800BBF0: .4byte 0x04000130
_0800BBF4: .4byte 0x000003ff
_0800BBF8: .4byte 0x04000006
_0800BBFC: .4byte 0x00007fff
_0800BC00: .4byte 0x04000200
_0800BC04: .4byte 0x04000132
_0800BC08: .4byte 0x00008304
_0800BC0C: .4byte 0x04000208
thumb_func_end sub_800BB44
thumb_func_start nullsub_17
nullsub_17:
bx lr
thumb_func_end nullsub_17
thumb_func_start UpdateBGControlRegisters
UpdateBGControlRegisters:
push {r4,lr}
sub sp, 0x10
ldr r0, _0800BC2C
ldrb r0, [r0]
cmp r0, 0x1
bne _0800BC30
str r0, [sp]
movs r0, 0x2
str r0, [sp, 0x4]
movs r0, 0
b _0800BC3A
.align 2, 0
_0800BC2C: .4byte gUnknown_202D7FE
_0800BC30:
movs r0, 0
str r0, [sp]
movs r0, 0x1
str r0, [sp, 0x4]
movs r0, 0x2
_0800BC3A:
str r0, [sp, 0x8]
movs r0, 0x3
str r0, [sp, 0xC]
ldr r1, _0800BCA8
ldr r2, _0800BCAC
ldrh r0, [r2, 0x4]
strh r0, [r1]
adds r1, 0x2
ldrh r0, [r2, 0x6]
strh r0, [r1]
adds r1, 0x2
ldr r2, _0800BCB0
ldrh r0, [r2, 0x4]
strh r0, [r1]
adds r1, 0x2
ldrh r0, [r2, 0x6]
strh r0, [r1]
adds r1, 0x2
ldr r3, _0800BCB4
ldrh r0, [r3, 0x4]
strh r0, [r1]
adds r1, 0x2
ldrh r0, [r3, 0x6]
strh r0, [r1]
adds r1, 0x2
ldr r2, _0800BCB8
ldrh r0, [r2, 0x4]
strh r0, [r1]
adds r1, 0x2
ldrh r0, [r2, 0x6]
strh r0, [r1]
ldr r2, _0800BCBC
ldr r0, [sp]
movs r4, 0xB0
lsls r4, 6
adds r1, r4, 0
orrs r0, r1
strh r0, [r2]
adds r2, 0x2
ldr r0, [sp, 0x4]
movs r4, 0xB4
lsls r4, 6
adds r1, r4, 0
orrs r0, r1
strh r0, [r2]
ldrh r1, [r3, 0x2]
movs r0, 0x80
lsls r0, 8
cmp r1, r0
bne _0800BCC8
ldr r0, _0800BCC0
ldr r1, [sp, 0x8]
ldr r3, _0800BCC4
adds r2, r3, 0
b _0800BCD2
.align 2, 0
_0800BCA8: .4byte 0x04000010
_0800BCAC: .4byte gUnknown_202D698
_0800BCB0: .4byte gUnknown_202D6A0
_0800BCB4: .4byte gUnknown_202D6A8
_0800BCB8: .4byte gUnknown_202D6B0
_0800BCBC: .4byte 0x04000008
_0800BCC0: .4byte 0x0400000c
_0800BCC4: .4byte 0x00002e08
_0800BCC8:
ldr r0, _0800BCF4
ldr r1, [sp, 0x8]
movs r4, 0xB8
lsls r4, 6
adds r2, r4, 0
_0800BCD2:
orrs r1, r2
strh r1, [r0]
ldr r2, _0800BCF8
ldr r0, [sp, 0xC]
ldr r3, _0800BCFC
adds r1, r3, 0
orrs r0, r1
strh r0, [r2]
ldr r1, _0800BD00
ldr r0, _0800BD04
ldrh r0, [r0]
strh r0, [r1]
add sp, 0x10
pop {r4}
pop {r0}
bx r0
.align 2, 0
_0800BCF4: .4byte 0x0400000c
_0800BCF8: .4byte 0x0400000e
_0800BCFC: .4byte 0x00002f08
_0800BD00: .4byte 0x04000050
_0800BD04: .4byte gUnknown_202D7FC
thumb_func_end UpdateBGControlRegisters
.align 2, 0 @ Don't pad with nop.

249
asm/code_800C9CC.s Normal file
View File

@ -0,0 +1,249 @@
.include "constants/gba_constants.inc"
.include "asm/macros.inc"
.syntax unified
.text
thumb_func_start sub_800CD64
sub_800CD64:
ldr r2, _0800CD7C
strb r1, [r2]
ldr r2, _0800CD80
negs r1, r0
orrs r1, r0
asrs r1, 31
movs r3, 0x80
lsls r3, 8
adds r0, r3, 0
ands r1, r0
strh r1, [r2, 0x2]
bx lr
.align 2, 0
_0800CD7C: .4byte gUnknown_202D7FE
_0800CD80: .4byte gUnknown_202D6A8
thumb_func_end sub_800CD64
thumb_func_start SetBGOBJEnableFlags
SetBGOBJEnableFlags:
push {r4,lr}
movs r3, 0x80
lsls r3, 19
ldrh r1, [r3]
ldr r2, _0800CDA4
ands r2, r1
lsls r0, 8
movs r4, 0xF8
lsls r4, 5
adds r1, r4, 0
bics r1, r0
orrs r2, r1
strh r2, [r3]
pop {r4}
pop {r0}
bx r0
.align 2, 0
_0800CDA4: .4byte 0x0000e0ff
thumb_func_end SetBGOBJEnableFlags
thumb_func_start sub_800CDA8
sub_800CDA8:
ldr r1, _0800CDBC
str r0, [r1]
ldr r2, _0800CDC0
ldr r1, _0800CDC4
lsls r0, 1
adds r0, r1
ldrh r0, [r0]
strh r0, [r2]
bx lr
.align 2, 0
_0800CDBC: .4byte gUnknown_202D800
_0800CDC0: .4byte gUnknown_202D7FC
_0800CDC4: .4byte gUnknown_203B0BE
thumb_func_end sub_800CDA8
thumb_func_start sub_800CDC8
sub_800CDC8:
ldr r0, _0800CDD0
ldr r0, [r0]
bx lr
.align 2, 0
_0800CDD0: .4byte gUnknown_202D800
thumb_func_end sub_800CDC8
thumb_func_start SetWindowTitle
SetWindowTitle:
bx lr
thumb_func_end SetWindowTitle
thumb_func_start nullsub_23
nullsub_23:
bx lr
thumb_func_end nullsub_23
thumb_func_start nullsub_182
nullsub_182:
bx lr
thumb_func_end nullsub_182
thumb_func_start sub_800CDE0
sub_800CDE0:
movs r0, 0x1
bx lr
thumb_func_end sub_800CDE0
thumb_func_start CpuCopy
CpuCopy:
push {lr}
adds r3, r0, 0
cmp r2, 0
bge _0800CDEE
adds r2, 0x3
_0800CDEE:
lsls r2, 9
lsrs r2, 11
movs r0, 0x80
lsls r0, 19
orrs r2, r0
adds r0, r1, 0
adds r1, r3, 0
bl CpuSet
pop {r0}
bx r0
thumb_func_end CpuCopy
thumb_func_start CpuClear
CpuClear:
push {lr}
sub sp, 0x4
adds r3, r0, 0
movs r0, 0
str r0, [sp]
cmp r1, 0
bge _0800CE14
adds r1, 0x3
_0800CE14:
lsls r2, r1, 9
lsrs r2, 11
movs r0, 0xA0
lsls r0, 19
orrs r2, r0
mov r0, sp
adds r1, r3, 0
bl CpuSet
add sp, 0x4
pop {r0}
bx r0
thumb_func_end CpuClear
thumb_func_start CpuFill
CpuFill:
push {lr}
sub sp, 0x4
adds r3, r0, 0
str r1, [sp]
cmp r2, 0
bge _0800CE3A
adds r2, 0x3
_0800CE3A:
lsls r2, 9
lsrs r2, 11
movs r0, 0xA0
lsls r0, 19
orrs r2, r0
mov r0, sp
adds r1, r3, 0
bl CpuSet
add sp, 0x4
pop {r0}
bx r0
thumb_func_end CpuFill
thumb_func_start sub_800CE54
sub_800CE54:
push {lr}
ldr r2, _0800CEC0
ldrh r0, [r2]
movs r3, 0x80
lsls r3, 8
adds r1, r3, 0
orrs r0, r1
ldr r1, _0800CEC4
ands r0, r1
strh r0, [r2]
mov r8, r8
mov r8, r8
mov r8, r8
mov r8, r8
ldr r1, _0800CEC8
ands r0, r1
strh r0, [r2]
ldr r1, _0800CECC
ldr r2, _0800CED0
adds r0, r2, 0
strh r0, [r1]
adds r1, 0x2
movs r0, 0x3D
strh r0, [r1]
adds r1, 0x6
ldr r0, _0800CED4
ldrh r0, [r0]
strh r0, [r1]
adds r1, 0x2
ldr r0, _0800CED8
ldrh r0, [r0]
strh r0, [r1]
ldr r0, _0800CEDC
ldrb r1, [r0]
cmp r1, 0
beq _0800CEF4
ldr r1, _0800CEE0
ldr r0, _0800CEE4
ldr r2, [r0]
adds r0, r2, 0x4
str r0, [r1]
ldr r3, _0800CEE8
str r3, [r1, 0x4]
ldr r0, _0800CEEC
str r0, [r1, 0x8]
ldr r0, [r1, 0x8]
ldrh r0, [r2]
strh r0, [r3]
subs r1, 0x6E
ldrh r0, [r2, 0x2]
strh r0, [r1]
ldr r0, _0800CEF0
movs r1, 0xA0
b _0800CEFE
.align 2, 0
_0800CEC0: .4byte 0x040000ba
_0800CEC4: .4byte 0x0000cdff
_0800CEC8: .4byte 0x00007fff
_0800CECC: .4byte 0x04000048
_0800CED0: .4byte 0x00003f3f
_0800CED4: .4byte gUnknown_202D7FC
_0800CED8: .4byte gUnknown_202D7FA
_0800CEDC: .4byte gUnknown_2026E38
_0800CEE0: .4byte 0x040000b0
_0800CEE4: .4byte gUnknown_2026E3C
_0800CEE8: .4byte 0x04000040
_0800CEEC: .4byte 0xa2600002
_0800CEF0: .4byte 0x04000044
_0800CEF4:
ldr r0, _0800CF08
strh r1, [r0]
adds r0, 0x2
strh r1, [r0]
adds r0, 0x2
_0800CEFE:
strh r1, [r0]
adds r0, 0x2
strh r1, [r0]
pop {r0}
bx r0
.align 2, 0
_0800CF08: .4byte 0x04000040
thumb_func_end sub_800CE54
.align 2,0

View File

@ -5,110 +5,6 @@
.text
thumb_func_start Hang
Hang:
push {lr}
_0800D092:
swi 0x2
b _0800D092
thumb_func_end Hang
thumb_func_start sub_800D098
sub_800D098:
push {r4-r7,lr}
mov r7, r10
mov r6, r9
mov r5, r8
push {r5-r7}
ldr r1, _0800D138
_0800D0A4:
ldrh r0, [r1]
cmp r0, 0x9F
bls _0800D0A4
movs r1, 0x80
lsls r1, 19
ldrh r0, [r1]
adds r7, r0, 0
movs r0, 0
strh r0, [r1]
movs r1, 0xA0
lsls r1, 19
ldr r2, _0800D13C
adds r0, r2, 0
strh r0, [r1]
ldr r2, _0800D140
ldrh r0, [r2]
ldr r1, _0800D144
cmp r0, r1
beq _0800D0D0
_0800D0CA:
ldrh r0, [r2]
cmp r0, r1
bne _0800D0CA
_0800D0D0:
ldr r6, _0800D148
movs r0, 0
mov r8, r0
strh r0, [r6]
ldr r5, _0800D14C
ldrh r4, [r5]
movs r1, 0xC0
lsls r1, 6
adds r0, r1, 0
strh r0, [r5]
ldr r2, _0800D150
mov r10, r2
ldr r1, _0800D154
adds r0, r1, 0
strh r0, [r2]
movs r2, 0x1
mov r9, r2
strh r2, [r6]
bl SoundBiasReset
swi 0x3
bl SoundBiasSet
mov r0, r8
strh r0, [r6]
strh r4, [r5]
mov r1, r10
strh r0, [r1]
mov r2, r9
strh r2, [r6]
ldr r1, _0800D138
_0800D10E:
ldrh r0, [r1]
cmp r0, 0x9F
bls _0800D10E
movs r0, 0x80
lsls r0, 19
strh r7, [r0]
ldr r2, _0800D140
ldrh r0, [r2]
ldr r1, _0800D144
cmp r0, r1
beq _0800D12A
_0800D124:
ldrh r0, [r2]
cmp r0, r1
bne _0800D124
_0800D12A:
pop {r3-r5}
mov r8, r3
mov r9, r4
mov r10, r5
pop {r4-r7}
pop {r0}
bx r0
.align 2, 0
_0800D138: .4byte 0x04000006
_0800D13C: .4byte 0x0000efff
_0800D140: .4byte 0x04000130
_0800D144: .4byte 0x000003ff
_0800D148: .4byte 0x04000208
_0800D14C: .4byte 0x04000200
_0800D150: .4byte 0x04000132
_0800D154: .4byte 0x0000c304
thumb_func_end sub_800D098
thumb_func_start sub_800D158
sub_800D158:
@ -5700,7 +5596,7 @@ _0800FA20: .4byte gUnknown_203B0E4
_0800FA24: .4byte gUnknown_2026E4E
_0800FA28: .4byte 0x00001010
_0800FA2C: .4byte 0x00004014
_0800FA30: .4byte gUnknown_80D3570
_0800FA30: .4byte gFriendAreaLocations
_0800FA34: .4byte 0x00004a2c
_0800FA38: .4byte 0x00004a28
_0800FA3C: .4byte 0x00004a1c
@ -6743,7 +6639,7 @@ _08010238:
ldrh r0, [r4, 0x2]
b _08010260
.align 2, 0
_08010248: .4byte gUnknown_80D3570
_08010248: .4byte gFriendAreaLocations
_0801024C:
adds r2, 0x1
cmp r2, 0x7
@ -7017,7 +6913,7 @@ _08010448:
pop {r0}
bx r0
.align 2, 0
_08010470: .4byte gUnknown_80D3F14
_08010470: .4byte gDungeonCoordinates
_08010474: .4byte 0xfffffc00
_08010478: .4byte 0xfffffdff
_0801047C: .4byte gUnknown_203B0E8
@ -7090,7 +6986,7 @@ _080104E6:
b _0801050E
.align 2, 0
_08010504: .4byte 0x00001108
_08010508: .4byte gUnknown_80D3F14
_08010508: .4byte gDungeonCoordinates
_0801050C:
strb r0, [r4]
_0801050E:
@ -7151,7 +7047,7 @@ _0801057C: .4byte gUnknown_203B0E8
_08010580: .4byte 0x00005114
_08010584: .4byte 0x0000110c
_08010588: .4byte 0x000052dc
_0801058C: .4byte gUnknown_80D3F14
_0801058C: .4byte gDungeonCoordinates
_08010590: .4byte 0x000052d8
_08010594: .4byte 0x000052de
_08010598: .4byte 0x000052da
@ -7241,7 +7137,7 @@ sub_801059C:
ldr r0, _08010714
movs r1, 0
ldr r2, [sp, 0xC]
bl sub_800AE28
bl DecompressATGlobalFile
ldr r1, [r4]
ldr r2, _08010718
adds r0, r1, r2
@ -7255,7 +7151,7 @@ sub_801059C:
ldr r3, _0801071C
adds r0, r3
ldr r2, [sp, 0x10]
bl sub_800AAA8
bl DecompressATFile
ldr r1, [r4]
ldr r2, _08010720
adds r0, r1, r2
@ -7649,7 +7545,7 @@ sub_8010960:
bl sub_80060EC
ldr r0, _080109FC
ldr r0, [r0]
bl sub_8094FB4
bl IncrementPlayTime
bl sub_800CB20
bl sub_800485C
bl CopySpritesToOam
@ -8129,7 +8025,7 @@ sub_8010D8C:
strh r0, [r1, 0x2]
bx lr
.align 2, 0
_08010DA0: .4byte gUnknown_80D3F14
_08010DA0: .4byte gDungeonCoordinates
thumb_func_end sub_8010D8C
thumb_func_start sub_8010DA4
@ -8205,7 +8101,7 @@ sub_8010DA4:
ldr r0, _08010EDC
movs r1, 0
mov r2, r10
bl sub_800AE28
bl DecompressATGlobalFile
ldr r1, [r4]
ldr r2, _08010EE0
adds r0, r1, r2
@ -8217,7 +8113,7 @@ sub_8010DA4:
ldr r0, [r4]
adds r0, 0x14
adds r2, r7, 0
bl sub_800AAA8
bl DecompressATFile
ldr r1, [r4]
ldr r3, _08010EE4
adds r0, r1, r3
@ -9279,7 +9175,7 @@ sub_801169C:
bl sub_80060EC
ldr r0, _0801175C
ldr r0, [r0]
bl sub_8094FB4
bl IncrementPlayTime
bl sub_800CB20
bl sub_800485C
bl CopySpritesToOam
@ -9305,745 +9201,4 @@ _08011758: .4byte gUnknown_203B46C
_0801175C: .4byte gUnknown_203B47C
thumb_func_end sub_801169C
thumb_func_start sub_8011760
sub_8011760:
push {lr}
movs r0, 0xD
bl sub_80023E4
lsls r0, 24
cmp r0, 0
beq _08011776
movs r0, 0x13
bl sub_800BDFC
b _08011788
_08011776:
movs r0, 0xC
bl sub_80023E4
lsls r0, 24
cmp r0, 0
beq _08011788
movs r0, 0x7
bl sub_800BDFC
_08011788:
pop {r0}
bx r0
thumb_func_end sub_8011760
thumb_func_start sub_801178C
sub_801178C:
push {lr}
movs r0, 0xD
bl sub_80023E4
lsls r0, 24
cmp r0, 0
beq _080117A2
movs r0, 0x13
bl sub_800BDFC
b _080117A8
_080117A2:
movs r0, 0x7
bl sub_800BDFC
_080117A8:
pop {r0}
bx r0
thumb_func_end sub_801178C
thumb_func_start sub_80117AC
sub_80117AC:
push {lr}
movs r0, 0xD
bl sub_80023E4
lsls r0, 24
cmp r0, 0
bne _080117C0
movs r0, 0x1E
bl sub_800BFD0
_080117C0:
pop {r0}
bx r0
thumb_func_end sub_80117AC
thumb_func_start sub_80117C4
sub_80117C4:
push {lr}
movs r0, 0x1E
bl sub_800BFD0
pop {r0}
bx r0
thumb_func_end sub_80117C4
thumb_func_start sub_80117D0
sub_80117D0:
push {lr}
movs r0, 0x97
lsls r0, 1
movs r1, 0x80
lsls r1, 1
bl sub_800C074
pop {r0}
bx r0
thumb_func_end sub_80117D0
thumb_func_start sub_80117E4
sub_80117E4:
push {lr}
ldr r0, _080117F4
movs r1, 0x80
lsls r1, 1
bl sub_800C074
pop {r0}
bx r0
.align 2, 0
_080117F4: .4byte 0x0000012f
thumb_func_end sub_80117E4
thumb_func_start sub_80117F8
sub_80117F8:
push {lr}
ldr r0, _08011808
movs r1, 0x80
lsls r1, 1
bl sub_800C074
pop {r0}
bx r0
.align 2, 0
_08011808: .4byte 0x0000012d
thumb_func_end sub_80117F8
thumb_func_start sub_801180C
sub_801180C:
ldr r0, _08011820
movs r1, 0
str r1, [r0]
ldr r0, _08011824
strh r1, [r0]
ldr r0, _08011828
strh r1, [r0]
ldr r0, _0801182C
strh r1, [r0]
bx lr
.align 2, 0
_08011820: .4byte gUnknown_202DE1C
_08011824: .4byte gUnknown_202DE20
_08011828: .4byte gUnknown_202DE22
_0801182C: .4byte gUnknown_202DE24
thumb_func_end sub_801180C
thumb_func_start sub_8011830
sub_8011830:
push {lr}
bl sub_800C93C
ldr r0, _08011848
movs r1, 0
strh r1, [r0]
ldr r0, _0801184C
strh r1, [r0]
ldr r0, _08011850
strh r1, [r0]
pop {r0}
bx r0
.align 2, 0
_08011848: .4byte gUnknown_202DE20
_0801184C: .4byte gUnknown_202DE22
_08011850: .4byte gUnknown_202DE24
thumb_func_end sub_8011830
thumb_func_start sub_8011854
sub_8011854:
push {lr}
bl sub_800C9CC
pop {r0}
bx r0
thumb_func_end sub_8011854
thumb_func_start sub_8011860
sub_8011860:
push {lr}
ldr r1, _08011898
ldrh r2, [r1]
movs r3, 0
ldrsh r0, [r1, r3]
cmp r0, 0
ble _08011872
subs r0, r2, 0x1
strh r0, [r1]
_08011872:
ldr r1, _0801189C
ldrh r2, [r1]
movs r3, 0
ldrsh r0, [r1, r3]
cmp r0, 0
ble _08011882
subs r0, r2, 0x1
strh r0, [r1]
_08011882:
ldr r1, _080118A0
ldrh r2, [r1]
movs r3, 0
ldrsh r0, [r1, r3]
cmp r0, 0
ble _08011892
subs r0, r2, 0x1
strh r0, [r1]
_08011892:
pop {r0}
bx r0
.align 2, 0
_08011898: .4byte gUnknown_202DE20
_0801189C: .4byte gUnknown_202DE22
_080118A0: .4byte gUnknown_202DE24
thumb_func_end sub_8011860
thumb_func_start sub_80118A4
sub_80118A4:
push {lr}
bl sub_8011924
ldr r0, _080118BC
bl sub_801199C
ldr r0, _080118C0
bl sub_801199C
pop {r0}
bx r0
.align 2, 0
_080118BC: .4byte 0x000003e6
_080118C0: .4byte 0x000003e5
thumb_func_end sub_80118A4
thumb_func_start sub_80118C4
sub_80118C4:
push {r4,lr}
adds r4, r0, 0
lsls r4, 16
lsrs r4, 16
adds r0, r4, 0
bl sub_800BFD0
ldr r0, _080118E8
adds r1, r4, 0
bl sub_800C3F8
ldr r0, _080118EC
adds r1, r4, 0
bl sub_800C3F8
pop {r4}
pop {r0}
bx r0
.align 2, 0
_080118E8: .4byte 0x000003e6
_080118EC: .4byte 0x000003e5
thumb_func_end sub_80118C4
thumb_func_start sub_80118F0
sub_80118F0:
push {lr}
lsls r0, 16
lsrs r0, 16
bl sub_800BDFC
pop {r0}
bx r0
thumb_func_end sub_80118F0
thumb_func_start sub_8011900
sub_8011900:
push {lr}
lsls r0, 16
lsrs r0, 16
lsls r1, 16
lsrs r1, 16
bl sub_800BE8C
pop {r0}
bx r0
thumb_func_end sub_8011900
thumb_func_start sub_8011914
sub_8011914:
push {lr}
lsls r0, 16
lsrs r0, 16
bl sub_800BF48
pop {r0}
bx r0
thumb_func_end sub_8011914
thumb_func_start sub_8011924
sub_8011924:
push {lr}
bl sub_800BF80
pop {r0}
bx r0
thumb_func_end sub_8011924
thumb_func_start sub_8011930
sub_8011930:
push {lr}
lsls r0, 16
lsrs r0, 16
bl sub_800BFD0
pop {r0}
bx r0
thumb_func_end sub_8011930
thumb_func_start sub_8011940
sub_8011940:
push {r4,lr}
lsls r0, 16
lsrs r4, r0, 16
bl sub_800C068
lsls r0, 16
lsrs r1, r0, 16
ldr r0, _08011960
cmp r4, r0
bne _08011964
eors r1, r4
negs r0, r1
orrs r0, r1
lsrs r0, 31
b _0801196C
.align 2, 0
_08011960: .4byte 0x000003e7
_08011964:
movs r0, 0
cmp r1, r4
bne _0801196C
movs r0, 0x1
_0801196C:
pop {r4}
pop {r1}
bx r1
thumb_func_end sub_8011940
thumb_func_start sub_8011974
sub_8011974:
push {lr}
lsls r0, 16
lsrs r0, 16
lsls r1, 16
lsrs r1, 16
bl sub_800C074
pop {r0}
bx r0
thumb_func_end sub_8011974
thumb_func_start sub_8011988
sub_8011988:
push {lr}
lsls r0, 16
lsrs r0, 16
movs r1, 0x80
lsls r1, 1
bl sub_800C074
pop {r0}
bx r0
thumb_func_end sub_8011988
thumb_func_start sub_801199C
sub_801199C:
push {lr}
lsls r0, 16
lsrs r0, 16
bl sub_800C298
pop {r0}
bx r0
thumb_func_end sub_801199C
thumb_func_start sub_80119AC
sub_80119AC:
push {lr}
lsls r0, 16
lsrs r0, 16
lsls r1, 16
lsrs r1, 16
bl sub_800C3F8
pop {r0}
bx r0
thumb_func_end sub_80119AC
thumb_func_start sub_80119C0
sub_80119C0:
push {lr}
lsls r0, 16
lsrs r0, 16
bl sub_800C5D0
lsls r0, 24
lsrs r0, 24
pop {r1}
bx r1
thumb_func_end sub_80119C0
thumb_func_start sub_80119D4
sub_80119D4:
push {r4,lr}
adds r2, r0, 0
ldr r4, _080119FC
movs r1, 0
ldrsh r0, [r4, r1]
cmp r0, 0
bgt _080119F6
ldr r1, _08011A00
lsls r0, r2, 1
adds r0, r1
ldrh r0, [r0]
movs r1, 0x80
lsls r1, 1
bl sub_800C074
movs r0, 0x4
strh r0, [r4]
_080119F6:
pop {r4}
pop {r0}
bx r0
.align 2, 0
_080119FC: .4byte gUnknown_202DE20
_08011A00: .4byte gUnknown_80D4144
thumb_func_end sub_80119D4
thumb_func_start sub_8011A04
sub_8011A04:
push {lr}
ldr r1, _08011A24
movs r2, 0
ldrsh r0, [r1, r2]
cmp r0, 0
bgt _08011A1E
movs r0, 0x3
strh r0, [r1]
ldr r0, _08011A28
movs r1, 0x80
lsls r1, 1
bl sub_800C074
_08011A1E:
pop {r0}
bx r0
.align 2, 0
_08011A24: .4byte gUnknown_202DE22
_08011A28: .4byte 0x00000131
thumb_func_end sub_8011A04
thumb_func_start sub_8011A2C
sub_8011A2C:
ldr r1, _08011A34
str r0, [r1]
bx lr
.align 2, 0
_08011A34: .4byte gUnknown_202DE1C
thumb_func_end sub_8011A2C
thumb_func_start NDS_DebugInit
NDS_DebugInit:
push {lr}
bl nullsub_26
bl nullsub_27
bl nullsub_29
bl nullsub_30
bl nullsub_31
bl nullsub_32
bl nullsub_28
ldr r1, _08011A60
movs r0, 0x1
str r0, [r1]
pop {r0}
bx r0
.align 2, 0
_08011A60: .4byte gUnknown_203B14C
thumb_func_end NDS_DebugInit
thumb_func_start nullsub_25
nullsub_25:
bx lr
thumb_func_end nullsub_25
thumb_func_start nullsub_26
nullsub_26:
bx lr
thumb_func_end nullsub_26
thumb_func_start PrintFuncFileLineOrNotEntry
PrintFuncFileLineOrNotEntry:
push {r4,lr}
sub sp, 0x4
adds r4, r0, 0
adds r0, r1, 0
cmp r0, 0
beq _08011A90
ldr r1, _08011A8C
ldr r2, [r0, 0x8]
ldr r3, [r0]
ldr r0, [r0, 0x4]
str r0, [sp]
adds r0, r4, 0
bl sprintf
b _08011A98
.align 2, 0
_08011A8C: .4byte gUnknown_80D418C
_08011A90:
ldr r1, _08011AA0
adds r0, r4, 0
bl sprintf
_08011A98:
add sp, 0x4
pop {r4}
pop {r0}
bx r0
.align 2, 0
_08011AA0: .4byte gUnknown_80D41B0
thumb_func_end PrintFuncFileLineOrNotEntry
thumb_func_start PrintFuncFileLine
PrintFuncFileLine:
push {r4,r5,lr}
sub sp, 0x8
ldr r5, _08011AC4
ldr r3, [r1, 0x8]
ldr r4, [r1]
str r4, [sp]
ldr r1, [r1, 0x4]
str r1, [sp, 0x4]
adds r1, r5, 0
bl sprintf
add sp, 0x8
pop {r4,r5}
pop {r0}
bx r0
.align 2, 0
_08011AC4: .4byte gUnknown_80D41C4
thumb_func_end PrintFuncFileLine
thumb_func_start PrintMessageWithFuncFileLine
PrintMessageWithFuncFileLine:
push {r2,r3}
push {r4,r5,lr}
sub sp, 0x4
adds r4, r0, 0
adds r5, r1, 0
ldr r1, [sp, 0x10]
add r2, sp, 0x14
bl vsprintf
adds r0, r4, 0
bl strlen
adds r4, r0
ldr r1, _08011AFC
ldr r2, [r5, 0x8]
ldr r3, [r5]
ldr r0, [r5, 0x4]
str r0, [sp]
adds r0, r4, 0
bl sprintf
add sp, 0x4
pop {r4,r5}
pop {r3}
add sp, 0x8
bx r3
.align 2, 0
_08011AFC: .4byte gUnknown_80D41EC
thumb_func_end PrintMessageWithFuncFileLine
thumb_func_start nullsub_199
nullsub_199:
bx lr
thumb_func_end nullsub_199
thumb_func_start nullsub_27
nullsub_27:
bx lr
thumb_func_end nullsub_27
thumb_func_start sub_8011B08
sub_8011B08:
ldr r1, _08011B10
movs r0, 0x1
strb r0, [r1]
bx lr
.align 2, 0
_08011B10: .4byte gUnknown_203B150
thumb_func_end sub_8011B08
thumb_func_start sub_8011B14
sub_8011B14:
ldr r1, _08011B1C
movs r0, 0
strb r0, [r1]
bx lr
.align 2, 0
_08011B1C: .4byte gUnknown_203B150
thumb_func_end sub_8011B14
thumb_func_start sub_8011B20
sub_8011B20:
push {lr}
ldr r1, _08011B38
movs r2, 0
ldrb r0, [r1]
cmp r0, 0
bne _08011B2E
movs r2, 0x1
_08011B2E:
strb r2, [r1]
ldrb r0, [r1]
pop {r1}
bx r1
.align 2, 0
_08011B38: .4byte gUnknown_203B150
thumb_func_end sub_8011B20
thumb_func_start sub_8011B3C
sub_8011B3C:
ldr r0, _08011B44
ldrb r0, [r0]
bx lr
.align 2, 0
_08011B44: .4byte gUnknown_203B150
thumb_func_end sub_8011B3C
thumb_func_start nullsub_137
nullsub_137:
bx lr
thumb_func_end nullsub_137
thumb_func_start FatalErrorPrintFuncFileLine
FatalErrorPrintFuncFileLine:
push {lr}
sub sp, 0x100
adds r2, r0, 0
cmp r2, 0
beq _08011B5E
mov r0, sp
bl PrintFuncFileLine
b _08011B66
_08011B5E:
ldr r2, _08011B6C
mov r0, sp
bl PrintFuncFileLine
_08011B66:
add sp, 0x100
pop {r0}
bx r0
.align 2, 0
_08011B6C: .4byte gUnknown_80D421C
thumb_func_end FatalErrorPrintFuncFileLine
thumb_func_start FatalErrorFormatMessage
FatalErrorFormatMessage:
push {r0-r3}
push {lr}
sub sp, 0x100
ldr r1, [sp, 0x104]
add r2, sp, 0x108
mov r0, sp
bl vsprintf
add sp, 0x100
pop {r3}
add sp, 0x10
bx r3
thumb_func_end FatalErrorFormatMessage
thumb_func_start sub_8011B88
sub_8011B88:
push {r0-r3}
push {lr}
sub sp, 0x100
ldr r1, [sp, 0x104]
add r2, sp, 0x108
mov r0, sp
bl vsprintf
add sp, 0x100
pop {r3}
add sp, 0x10
bx r3
thumb_func_end sub_8011B88
thumb_func_start nullsub_28
nullsub_28:
bx lr
thumb_func_end nullsub_28
thumb_func_start sub_8011BA4
sub_8011BA4:
movs r0, 0
bx lr
thumb_func_end sub_8011BA4
thumb_func_start sub_8011BA8
sub_8011BA8:
movs r0, 0
bx lr
thumb_func_end sub_8011BA8
thumb_func_start sub_8011BAC
sub_8011BAC:
ldr r0, _08011BB0
bx lr
.align 2, 0
_08011BB0: .4byte gUnknown_80D4288
thumb_func_end sub_8011BAC
thumb_func_start sub_8011BB4
sub_8011BB4:
push {lr}
bl Hang
pop {r0}
bx r0
thumb_func_end sub_8011BB4
thumb_func_start Log
Log:
push {r1-r3}
add sp, 0xC
bx lr
thumb_func_end Log
thumb_func_start sub_8011BC8
sub_8011BC8:
push {r2,r3}
add sp, 0x8
bx lr
thumb_func_end sub_8011BC8
thumb_func_start nullsub_29
nullsub_29:
bx lr
thumb_func_end nullsub_29
thumb_func_start nullsub_30
nullsub_30:
bx lr
thumb_func_end nullsub_30
thumb_func_start nullsub_31
nullsub_31:
bx lr
thumb_func_end nullsub_31
thumb_func_start nullsub_32
nullsub_32:
bx lr
thumb_func_end nullsub_32
thumb_func_start FatalErrorHang
FatalErrorHang:
push {lr}
bl Hang
pop {r0}
bx r0
thumb_func_end FatalErrorHang
thumb_func_start FatalError
FatalError:
push {r1-r3}
push {r4,lr}
sub sp, 0x100
adds r1, r0, 0
ldr r4, [sp, 0x108]
ldr r0, _08011C14
bl FatalErrorPrintFuncFileLine
add r2, sp, 0x10C
mov r0, sp
adds r1, r4, 0
bl vsprintf
ldr r0, _08011C18
mov r1, sp
bl FatalErrorFormatMessage
bl FatalErrorHang
.align 2, 0
_08011C14: .4byte gUnknown_80D42C0
_08011C18: .4byte gUnknown_80D42D4
thumb_func_end FatalError
.align 2, 0 @ Don't pad with nop.

38
asm/code_80118A4.s Normal file
View File

@ -0,0 +1,38 @@
.include "constants/gba_constants.inc"
.include "asm/macros.inc"
.syntax unified
.text
@ Unused
thumb_func_start PrintMessageWithFuncFileLine
PrintMessageWithFuncFileLine:
push {r2,r3}
push {r4,r5,lr}
sub sp, 0x4
adds r4, r0, 0
adds r5, r1, 0
ldr r1, [sp, 0x10]
add r2, sp, 0x14
bl vsprintf
adds r0, r4, 0
bl strlen
adds r4, r0
ldr r1, _08011AFC
ldr r2, [r5, 0x8]
ldr r3, [r5]
ldr r0, [r5, 0x4]
str r0, [sp]
adds r0, r4, 0
bl sprintf
add sp, 0x4
pop {r4,r5}
pop {r3}
add sp, 0x8
bx r3
.align 2, 0
_08011AFC: .4byte gUnknown_80D41EC
thumb_func_end PrintMessageWithFuncFileLine
.align 2,0 @ Don't pad with nop

File diff suppressed because it is too large Load Diff

20608
asm/code_801D760.s Normal file

File diff suppressed because it is too large Load Diff

1737
asm/code_8027C84.s Normal file

File diff suppressed because it is too large Load Diff

6091
asm/code_803D110.s Normal file

File diff suppressed because it is too large Load Diff

3385
asm/code_8040094.s Normal file

File diff suppressed because it is too large Load Diff

1029
asm/code_8041AD0.s Normal file

File diff suppressed because it is too large Load Diff

11310
asm/code_80428A0.s Normal file

File diff suppressed because it is too large Load Diff

20482
asm/code_8048480.s Normal file

File diff suppressed because it is too large Load Diff

116339
asm/code_80521D0.s Normal file

File diff suppressed because it is too large Load Diff

1727
asm/code_808DAB4.s Normal file

File diff suppressed because it is too large Load Diff

2629
asm/code_808EAB0.s Normal file

File diff suppressed because it is too large Load Diff

4704
asm/code_809017C.s Normal file

File diff suppressed because it is too large Load Diff

6169
asm/code_8092334.s Normal file

File diff suppressed because it is too large Load Diff

4820
asm/code_8095014.s Normal file

File diff suppressed because it is too large Load Diff

1446
asm/code_809747C.s Normal file

File diff suppressed because it is too large Load Diff

720
asm/code_8097F40.s Normal file
View File

@ -0,0 +1,720 @@
.include "constants/gba_constants.inc"
.include "asm/macros.inc"
.syntax unified
.text
thumb_func_start sub_8097F74
sub_8097F74:
push {r4,lr}
ldr r4, _08097FA0
ldr r0, [r4]
movs r1, 0
movs r2, 0x64
bl memset
movs r2, 0
ldr r3, _08097FA4
_08097F86:
ldr r0, [r4]
adds r0, 0x58
adds r0, r2
ldrb r1, [r3, 0x2]
strb r1, [r0]
adds r3, 0x4
adds r2, 0x1
cmp r2, 0xB
ble _08097F86
pop {r4}
pop {r0}
bx r0
.align 2, 0
_08097FA0: .4byte gUnknown_203B498
_08097FA4: .4byte gUnknown_810AD0C
thumb_func_end sub_8097F74
thumb_func_start sub_8097FA8
sub_8097FA8:
lsls r0, 24
ldr r1, _08097FCC
ldr r3, [r1]
lsrs r1, r0, 29
lsls r1, 2
adds r3, 0x48
adds r3, r1
movs r1, 0xF8
lsls r1, 21
ands r1, r0
lsrs r1, 24
movs r2, 0x1
lsls r2, r1
ldr r0, [r3]
orrs r0, r2
str r0, [r3]
bx lr
.align 2, 0
_08097FCC: .4byte gUnknown_203B498
thumb_func_end sub_8097FA8
thumb_func_start sub_8097FD0
sub_8097FD0:
lsls r0, 24
ldr r1, _08097FF4
ldr r3, [r1]
lsrs r1, r0, 29
lsls r1, 2
adds r3, 0x3C
adds r3, r1
movs r1, 0xF8
lsls r1, 21
ands r1, r0
lsrs r1, 24
movs r2, 0x1
lsls r2, r1
ldr r0, [r3]
orrs r0, r2
str r0, [r3]
bx lr
.align 2, 0
_08097FF4: .4byte gUnknown_203B498
thumb_func_end sub_8097FD0
thumb_func_start sub_8097FF8
sub_8097FF8:
push {r4-r7,lr}
movs r4, 0
ldr r6, _08098040
movs r7, 0x1
_08098000:
ldr r5, [r6]
adds r0, r4, 0
cmp r4, 0
bge _0809800A
adds r0, 0x1F
_0809800A:
asrs r0, 5
lsls r3, r0, 2
adds r1, r5, 0
adds r1, 0x48
adds r1, r3
lsls r0, 5
subs r0, r4, r0
adds r2, r7, 0
lsls r2, r0
ldr r0, [r1]
ands r0, r2
cmp r0, 0
beq _08098030
adds r1, r5, 0
adds r1, 0x3C
adds r1, r3
ldr r0, [r1]
orrs r0, r2
str r0, [r1]
_08098030:
adds r4, 0x1
cmp r4, 0x3F
ble _08098000
bl sub_8098080
pop {r4-r7}
pop {r0}
bx r0
.align 2, 0
_08098040: .4byte gUnknown_203B498
thumb_func_end sub_8097FF8
thumb_func_start sub_8098044
sub_8098044:
push {r4,r5,lr}
lsls r0, 24
ldr r1, _0809807C
ldr r3, [r1]
lsrs r5, r0, 29
lsls r5, 2
adds r4, r3, 0
adds r4, 0x3C
adds r4, r5
movs r1, 0xF8
lsls r1, 21
ands r1, r0
lsrs r1, 24
movs r2, 0x1
lsls r2, r1
mvns r2, r2
ldr r0, [r4]
ands r0, r2
str r0, [r4]
adds r3, 0x48
adds r3, r5
ldr r0, [r3]
ands r0, r2
str r0, [r3]
pop {r4,r5}
pop {r0}
bx r0
.align 2, 0
_0809807C: .4byte gUnknown_203B498
thumb_func_end sub_8098044
thumb_func_start sub_8098080
sub_8098080:
push {r4,lr}
movs r2, 0
ldr r4, _080980A0
movs r3, 0
_08098088:
ldr r0, [r4]
lsls r1, r2, 2
adds r0, 0x48
adds r0, r1
str r3, [r0]
adds r2, 0x1
cmp r2, 0x2
ble _08098088
pop {r4}
pop {r0}
bx r0
.align 2, 0
_080980A0: .4byte gUnknown_203B498
thumb_func_end sub_8098080
thumb_func_start sub_80980A4
sub_80980A4:
ldr r0, _080980B0
ldr r2, [r0]
ldrb r0, [r2]
movs r1, 0x1
strb r1, [r2]
bx lr
.align 2, 0
_080980B0: .4byte gUnknown_203B498
thumb_func_end sub_80980A4
thumb_func_start sub_80980B4
sub_80980B4:
push {lr}
lsls r0, 16
asrs r1, r0, 16
adds r3, r1, 0
ldr r0, _080980F8
cmp r1, r0
beq _080980F4
adds r0, 0x1
cmp r1, r0
beq _080980F4
adds r0, 0x1
cmp r1, r0
beq _080980F4
ldr r0, _080980FC
ldr r2, [r0]
adds r0, r1, 0
cmp r1, 0
bge _080980DA
adds r0, 0x1F
_080980DA:
asrs r0, 5
lsls r1, r0, 2
adds r2, 0x4
adds r2, r1
lsls r0, 5
subs r0, r3, r0
lsls r0, 16
asrs r0, 16
movs r1, 0x1
lsls r1, r0
ldr r0, [r2]
orrs r0, r1
str r0, [r2]
_080980F4:
pop {r0}
bx r0
.align 2, 0
_080980F8: .4byte 0x000001a5
_080980FC: .4byte gUnknown_203B498
thumb_func_end sub_80980B4
thumb_func_start sub_8098100
sub_8098100:
push {lr}
lsls r1, r0, 24
lsrs r3, r1, 24
cmp r3, 0x3F
bls _0809810E
movs r0, 0
b _0809812C
_0809810E:
ldr r0, _08098130
ldr r2, [r0]
lsrs r0, r1, 29
lsls r0, 2
adds r2, 0x3C
adds r2, r0
movs r0, 0x1F
ands r0, r3
movs r1, 0x1
lsls r1, r0
ldr r0, [r2]
ands r0, r1
cmp r0, 0
beq _0809812C
movs r0, 0x1
_0809812C:
pop {r1}
bx r1
.align 2, 0
_08098130: .4byte gUnknown_203B498
thumb_func_end sub_8098100
thumb_func_start sub_8098134
sub_8098134:
push {lr}
lsls r0, 16
asrs r1, r0, 16
adds r3, r1, 0
ldr r0, _0809816C
ldr r2, [r0]
adds r0, r1, 0
cmp r1, 0
bge _08098148
adds r0, 0x1F
_08098148:
asrs r0, 5
lsls r1, r0, 2
adds r2, 0x4
adds r2, r1
lsls r0, 5
subs r0, r3, r0
lsls r0, 16
asrs r0, 16
movs r1, 0x1
lsls r1, r0
ldr r0, [r2]
ands r0, r1
cmp r0, 0
beq _08098166
movs r0, 0x1
_08098166:
pop {r1}
bx r1
.align 2, 0
_0809816C: .4byte gUnknown_203B498
thumb_func_end sub_8098134
thumb_func_start sub_8098170
sub_8098170:
push {lr}
adds r3, r0, 0
ldr r0, _0809819C
ldr r2, [r0]
adds r0, r3, 0
cmp r3, 0
bge _08098180
adds r0, 0x1F
_08098180:
asrs r0, 5
lsls r1, r0, 2
adds r2, 0x54
adds r2, r1
lsls r0, 5
subs r0, r3, r0
movs r1, 0x1
lsls r1, r0
ldr r0, [r2]
orrs r0, r1
str r0, [r2]
pop {r0}
bx r0
.align 2, 0
_0809819C: .4byte gUnknown_203B498
thumb_func_end sub_8098170
thumb_func_start sub_80981A0
sub_80981A0:
push {lr}
adds r3, r0, 0
cmp r3, 0x1E
ble _080981AC
movs r0, 0
b _080981D4
_080981AC:
ldr r0, _080981D8
ldr r2, [r0]
adds r1, r3, 0
cmp r3, 0
bge _080981B8
adds r1, 0x1F
_080981B8:
asrs r1, 5
lsls r0, r1, 2
adds r2, 0x54
adds r2, r0
lsls r1, 5
subs r1, r3, r1
movs r0, 0x1
lsls r0, r1
ldr r2, [r2]
ands r2, r0
cmp r2, 0
beq _080981D2
movs r2, 0x1
_080981D2:
adds r0, r2, 0
_080981D4:
pop {r1}
bx r1
.align 2, 0
_080981D8: .4byte gUnknown_203B498
thumb_func_end sub_80981A0
thumb_func_start sub_80981DC
sub_80981DC:
push {r4,r5,lr}
lsls r0, 16
asrs r3, r0, 16
movs r1, 0
ldr r4, _080981FC
ldr r2, _08098200
_080981E8:
movs r5, 0
ldrsh r0, [r2, r5]
cmp r0, r3
bne _08098204
ldr r0, [r4]
adds r0, 0x58
adds r0, r1
ldrb r0, [r0]
b _0809820E
.align 2, 0
_080981FC: .4byte gUnknown_203B498
_08098200: .4byte gUnknown_810AD0C
_08098204:
adds r2, 0x4
adds r1, 0x1
cmp r1, 0xB
ble _080981E8
movs r0, 0x1
_0809820E:
pop {r4,r5}
pop {r1}
bx r1
thumb_func_end sub_80981DC
thumb_func_start sub_8098214
sub_8098214:
push {r4-r6,lr}
lsls r0, 16
asrs r3, r0, 16
movs r1, 0
ldr r5, _08098240
movs r4, 0x1
ldr r2, _08098244
_08098222:
movs r6, 0
ldrsh r0, [r2, r6]
cmp r0, r3
bne _08098232
ldr r0, [r5]
adds r0, 0x58
adds r0, r1
strb r4, [r0]
_08098232:
adds r2, 0x4
adds r1, 0x1
cmp r1, 0xB
ble _08098222
pop {r4-r6}
pop {r0}
bx r0
.align 2, 0
_08098240: .4byte gUnknown_203B498
_08098244: .4byte gUnknown_810AD0C
thumb_func_end sub_8098214
thumb_func_start sub_8098248
sub_8098248:
push {r4-r7,lr}
mov r7, r9
mov r6, r8
push {r6,r7}
sub sp, 0x8
adds r7, r0, 0
mov r5, sp
adds r5, 0x3
movs r0, 0xFF
strb r0, [r5]
add r4, sp, 0x4
movs r0, 0
strb r0, [r4]
ldr r0, _08098300
ldr r1, [r0]
adds r0, r7, 0
movs r2, 0x1
bl sub_809488C
movs r6, 0
mov r9, r5
mov r8, r4
mov r4, sp
adds r4, 0x1
mov r5, sp
adds r5, 0x2
_0809827C:
lsls r0, r6, 16
asrs r0, 16
bl sub_8098134
mov r1, sp
strb r0, [r1]
adds r0, r7, 0
movs r2, 0x1
bl sub_809488C
adds r6, 0x1
ldr r0, _08098304
cmp r6, r0
ble _0809827C
movs r6, 0
_0809829A:
lsls r0, r6, 24
lsrs r0, 24
bl sub_8098100
strb r0, [r4]
adds r0, r7, 0
adds r1, r4, 0
movs r2, 0x1
bl sub_809488C
adds r6, 0x1
cmp r6, 0x3F
ble _0809829A
movs r6, 0
adds r4, r5, 0
_080982B8:
adds r0, r6, 0
bl sub_80981A0
strb r0, [r4]
adds r0, r7, 0
adds r1, r4, 0
movs r2, 0x1
bl sub_809488C
adds r6, 0x1
cmp r6, 0x1E
ble _080982B8
movs r6, 0
_080982D2:
ldr r0, _08098300
ldr r0, [r0]
adds r0, 0x58
adds r0, r6
ldrb r0, [r0]
mov r1, r8
cmp r0, 0
beq _080982E4
mov r1, r9
_080982E4:
adds r0, r7, 0
movs r2, 0x1
bl sub_809488C
adds r6, 0x1
cmp r6, 0xB
ble _080982D2
add sp, 0x8
pop {r3,r4}
mov r8, r3
mov r9, r4
pop {r4-r7}
pop {r0}
bx r0
.align 2, 0
_08098300: .4byte gUnknown_203B498
_08098304: .4byte 0x000001a7
thumb_func_end sub_8098248
thumb_func_start sub_8098308
sub_8098308:
push {r4-r7,lr}
mov r7, r8
push {r7}
sub sp, 0x4
adds r6, r0, 0
ldr r4, _080983D0
ldr r0, [r4]
movs r1, 0
movs r2, 0x64
bl memset
ldr r1, [r4]
adds r0, r6, 0
movs r2, 0x1
bl sub_8094924
movs r4, 0
mov r5, sp
adds r5, 0x1
mov r7, sp
adds r7, 0x2
movs r0, 0x3
add r0, sp
mov r8, r0
_08098338:
adds r0, r6, 0
mov r1, sp
movs r2, 0x1
bl sub_8094924
mov r0, sp
ldrb r0, [r0]
cmp r0, 0
beq _08098352
lsls r0, r4, 16
asrs r0, 16
bl sub_80980B4
_08098352:
adds r4, 0x1
ldr r0, _080983D4
cmp r4, r0
ble _08098338
movs r4, 0
_0809835C:
adds r0, r6, 0
adds r1, r5, 0
movs r2, 0x1
bl sub_8094924
ldrb r0, [r5]
cmp r0, 0
beq _08098374
lsls r0, r4, 24
lsrs r0, 24
bl sub_8097FA8
_08098374:
adds r4, 0x1
cmp r4, 0x3F
ble _0809835C
movs r4, 0
adds r5, r7, 0
_0809837E:
adds r0, r6, 0
adds r1, r5, 0
movs r2, 0x1
bl sub_8094924
ldrb r0, [r5]
cmp r0, 0
beq _08098394
adds r0, r4, 0
bl sub_8098170
_08098394:
adds r4, 0x1
cmp r4, 0x1E
ble _0809837E
movs r4, 0
_0809839C:
adds r0, r6, 0
mov r1, r8
movs r2, 0x1
bl sub_8094924
ldr r0, _080983D0
ldr r1, [r0]
adds r1, 0x58
adds r1, r4
mov r0, sp
adds r0, 0x3
ldrb r2, [r0]
movs r0, 0x1
ands r0, r2
strb r0, [r1]
adds r4, 0x1
cmp r4, 0xB
ble _0809839C
bl sub_8097FF8
add sp, 0x4
pop {r3}
mov r8, r3
pop {r4-r7}
pop {r0}
bx r0
.align 2, 0
_080983D0: .4byte gUnknown_203B498
_080983D4: .4byte 0x000001a7
thumb_func_end sub_8098308
thumb_func_start sub_80983D8
sub_80983D8:
push {r4,lr}
movs r2, 0
ldrsh r3, [r1, r2]
movs r4, 0
ldrsh r2, [r0, r4]
subs r2, r3, r2
movs r3, 0x2
ldrsh r1, [r1, r3]
movs r4, 0x2
ldrsh r0, [r0, r4]
subs r1, r0
cmp r2, 0
bne _080983FA
cmp r1, 0
bne _080983FA
movs r0, 0
b _08098428
_080983FA:
cmp r2, 0
ble _08098400
movs r2, 0x1
_08098400:
cmp r1, 0
ble _08098406
movs r1, 0x1
_08098406:
movs r0, 0x1
negs r0, r0
cmp r2, r0
bgt _08098410
adds r2, r0, 0
_08098410:
cmp r1, r0
bgt _08098416
adds r1, r0, 0
_08098416:
ldr r3, _08098430
adds r2, 0x1
adds r1, 0x1
lsls r0, r1, 1
adds r0, r1
adds r0, r2
lsls r0, 2
adds r0, r3
ldr r0, [r0]
_08098428:
pop {r4}
pop {r1}
bx r1
.align 2, 0
_08098430: .4byte gUnknown_8115E94
thumb_func_end sub_80983D8
thumb_func_start sub_8098434
sub_8098434:
push {r4,lr}
adds r3, r0, 0
adds r4, r1, 0
movs r0, 0
ldrsh r1, [r3, r0]
movs r2, 0
ldrsh r0, [r4, r2]
subs r2, r1, r0
cmp r2, 0
bge _0809844A
negs r2, r2
_0809844A:
movs r0, 0x2
ldrsh r1, [r3, r0]
movs r3, 0x2
ldrsh r0, [r4, r3]
subs r0, r1, r0
cmp r0, 0
bge _0809845A
negs r0, r0
_0809845A:
cmp r0, r2
bge _08098460
adds r0, r2, 0
_08098460:
pop {r4}
pop {r1}
bx r1
thumb_func_end sub_8098434
.align 2,0

791
asm/code_8098468.s Normal file
View File

@ -0,0 +1,791 @@
.include "constants/gba_constants.inc"
.include "asm/macros.inc"
.syntax unified
.text
thumb_func_start xxx_script_related_8098468
xxx_script_related_8098468:
push {r4-r7,lr}
sub sp, 0x8
ldr r1, _08098494
str r0, [r1]
ldr r4, _08098498
movs r2, 0
strb r2, [r4]
ldr r3, _0809849C
movs r1, 0x1
strb r1, [r3]
ldr r1, _080984A0
strb r2, [r1]
subs r0, 0xD
adds r2, r1, 0
cmp r0, 0x4
bhi _08098504
lsls r0, 2
ldr r1, _080984A4
adds r0, r1
ldr r0, [r0]
mov pc, r0
.align 2, 0
_08098494: .4byte gUnknown_20398B4
_08098498: .4byte gUnknown_20398B9
_0809849C: .4byte gUnknown_20398B8
_080984A0: .4byte gUnknown_20398BA
_080984A4: .4byte _080984A8
.align 2, 0
_080984A8:
.4byte _080984BC
.4byte _080984C8
.4byte _080984CE
.4byte _080984D4
.4byte _080984FC
_080984BC:
movs r1, 0x1
strb r1, [r2]
movs r0, 0
strb r0, [r3]
strb r1, [r4]
b _08098504
_080984C8:
movs r0, 0x1
strb r0, [r3]
b _08098502
_080984CE:
movs r0, 0x1
strb r0, [r3]
b _08098502
_080984D4:
add r2, sp, 0x4
movs r0, 0x3
mov r1, sp
bl sub_8001B88
ldr r2, _080984F4
movs r1, 0
ldr r0, [sp]
cmp r0, 0
bne _080984EA
movs r1, 0x1
_080984EA:
strb r1, [r2]
ldr r1, _080984F8
movs r0, 0x1
strb r0, [r1]
b _08098504
.align 2, 0
_080984F4: .4byte gUnknown_20398B8
_080984F8: .4byte gUnknown_20398B9
_080984FC:
movs r0, 0
strb r0, [r3]
movs r0, 0x1
_08098502:
strb r0, [r4]
_08098504:
bl sub_801180C
ldr r0, _080985B0
ldrb r0, [r0]
cmp r0, 0
bne _08098522
movs r0, 0xD
bl sub_80023E4
lsls r0, 24
cmp r0, 0
bne _08098522
movs r0, 0x10
bl sub_80118C4
_08098522:
ldr r1, _080985B4
ldr r2, _080985B8
adds r0, r2, 0
strh r0, [r1]
movs r0, 0
bl xxx_update_some_bg_tiles
bl sub_8099648
bl sub_809975C
bl sub_809D0AC
bl sub_80A7744
bl sub_809D490
bl sub_80A62F0
bl sub_809C5C4
bl sub_809A560
bl sub_809CB50
bl sub_80A4A7C
bl nullsub_117
bl sub_80AD990
bl sub_80A77F8
bl sub_80ABB54
bl sub_80ACB90
bl sub_809A62C
ldr r0, _080985BC
movs r1, 0
strb r1, [r0]
ldr r0, _080985C0
strb r1, [r0]
ldr r6, _080985C4
movs r0, 0x1
str r0, [r6]
ldr r1, _080985C8
movs r0, 0
str r0, [r1]
ldr r0, _080985CC
movs r4, 0x1
negs r4, r4
str r4, [r0]
ldr r5, _080985D0
movs r0, 0
movs r1, 0xD
bl sub_8001658
strh r0, [r5]
movs r0, 0
movs r1, 0xE
bl sub_8001658
ldr r1, _080985D4
str r0, [r1]
ldr r0, _080985D8
strh r4, [r0]
adds r7, r4, 0
ldr r0, [r6]
b _08098988
.align 2, 0
_080985B0: .4byte gUnknown_20398B9
_080985B4: .4byte gUnknown_2026E4E
_080985B8: .4byte 0x00000808
_080985BC: .4byte gUnknown_203B49C
_080985C0: .4byte gUnknown_203B49D
_080985C4: .4byte gUnknown_20398A8
_080985C8: .4byte gUnknown_20398AC
_080985CC: .4byte gUnknown_20398B0
_080985D0: .4byte gUnknown_20398BE
_080985D4: .4byte gUnknown_20398C0
_080985D8: .4byte gUnknown_20398C4
_080985DC:
movs r0, 0x1
negs r0, r0
bl sub_809A71C
bl sub_809A76C
bl sub_809977C
ldr r0, _08098600
ldr r0, [r0]
cmp r0, 0x11
bls _080985F6
b _08098756
_080985F6:
lsls r0, 2
ldr r1, _08098604
adds r0, r1
ldr r0, [r0]
mov pc, r0
.align 2, 0
_08098600: .4byte gUnknown_20398B4
_08098604: .4byte _08098608
.align 2, 0
_08098608:
.4byte _08098650
.4byte _08098756
.4byte _08098660
.4byte _08098660
.4byte _08098756
.4byte _08098666
.4byte _08098756
.4byte _08098756
.4byte _08098756
.4byte _0809866A
.4byte _0809866A
.4byte _0809866A
.4byte _0809866A
.4byte _0809870C
.4byte _08098748
.4byte _0809874C
.4byte _08098750
.4byte _08098754
_08098650:
bl sub_8098C58
ldr r1, _0809865C
movs r0, 0x1
str r0, [r1]
b _08098756
.align 2, 0
_0809865C: .4byte gUnknown_20398B4
_08098660:
bl sub_8001D88
b _08098756
_08098666:
movs r7, 0x70
b _08098756
_0809866A:
ldr r0, _080986BC
ldr r2, [r0]
movs r0, 0
movs r1, 0x16
bl sub_80018D8
movs r0, 0
movs r1, 0x25
movs r2, 0
bl sub_80018D8
bl sub_8098C58
movs r0, 0
movs r1, 0x15
movs r2, 0x1
movs r3, 0x2
bl sub_800226C
movs r0, 0
movs r1, 0x13
bl sub_8001658
lsls r0, 16
asrs r4, r0, 16
movs r0, 0x1
negs r0, r0
cmp r4, r0
beq _08098756
cmp r4, 0x51
bne _080986C0
movs r0, 0
movs r1, 0x14
bl sub_8001658
lsls r0, 16
asrs r0, 16
bl sub_80A2608
b _080986C6
.align 2, 0
_080986BC: .4byte gUnknown_20398B4
_080986C0:
adds r0, r4, 0
bl sub_80A2608
_080986C6:
movs r1, 0xA
ldrsh r7, [r0, r1]
ldr r5, _08098700
ldr r0, [r5]
cmp r0, 0x9
bne _080986E0
lsls r2, r4, 16
lsrs r2, 16
movs r0, 0
movs r1, 0x31
movs r3, 0x1
bl sub_800199C
_080986E0:
ldr r0, [r5]
bl sub_8098FCC
lsls r0, 16
asrs r1, r0, 16
movs r0, 0x1
negs r0, r0
cmp r1, r0
beq _08098756
ldr r0, _08098704
strh r1, [r0]
ldr r1, _08098708
movs r0, 0
str r0, [r1]
b _08098756
.align 2, 0
_08098700: .4byte gUnknown_20398B4
_08098704: .4byte gUnknown_20398BE
_08098708: .4byte gUnknown_20398C0
_0809870C:
bl sub_8098C58
ldr r1, _08098744
movs r0, 0x1
str r0, [r1]
movs r0, 0
movs r1, 0x18
movs r2, 0x1
bl sub_80018D8
movs r0, 0
movs r1, 0xF
movs r2, 0
bl sub_80018D8
movs r0, 0
movs r1, 0xD
movs r2, 0
bl sub_80018D8
movs r0, 0
movs r1, 0xE
movs r2, 0
bl sub_80018D8
movs r7, 0x71
b _08098756
.align 2, 0
_08098744: .4byte gUnknown_20398B4
_08098748:
movs r7, 0x73
b _08098756
_0809874C:
movs r7, 0x74
b _08098756
_08098750:
movs r7, 0x75
b _08098756
_08098754:
movs r7, 0x76
_08098756:
ldr r0, _08098790
ldrb r0, [r0]
cmp r0, 0
bne _080987C0
movs r0, 0
movs r1, 0xD
bl sub_8001658
adds r5, r0, 0
ldr r4, _08098794
ldr r2, [r4]
movs r0, 0
movs r1, 0x18
bl sub_80018D8
ldr r4, [r4]
cmp r4, 0x1
beq _080987A6
cmp r4, 0x3
bne _0809879C
ldr r0, _08098798
movs r1, 0
ldrsh r2, [r0, r1]
movs r0, 0
movs r1, 0xF
bl sub_80018D8
b _080987A6
.align 2, 0
_08098790: .4byte gUnknown_20398B9
_08098794: .4byte gUnknown_20398B4
_08098798: .4byte gUnknown_20398BE
_0809879C:
movs r0, 0
movs r1, 0xF
adds r2, r5, 0
bl sub_80018D8
_080987A6:
ldr r0, _0809882C
movs r1, 0
ldrsh r2, [r0, r1]
movs r0, 0
movs r1, 0xD
bl sub_80018D8
ldr r0, _08098830
ldr r2, [r0]
movs r0, 0
movs r1, 0xE
bl sub_80018D8
_080987C0:
ldr r1, _08098834
movs r0, 0x2
str r0, [r1]
ldr r0, _08098838
movs r1, 0
str r1, [r0]
ldr r0, _0809883C
str r1, [r0]
ldr r0, _08098840
movs r4, 0x1
negs r4, r4
str r4, [r0]
ldr r2, _08098844
ldr r1, _0809882C
ldrh r0, [r1]
strh r0, [r2]
strh r4, [r1]
bl sub_809977C
bl sub_809D4B0
adds r0, r4, 0
bl GroundSprite_Reset
bl sub_809C63C
bl sub_809A62C
bl sub_80A4AEC
bl sub_809D0BC
bl sub_80AD9D0
bl sub_80A786C
bl sub_80ABB98
bl sub_80ACBD4
bl sub_809C658
bl nullsub_16
bl sub_8097944
cmp r7, r4
beq _08098848
adds r0, r7, 0
movs r1, 0
bl GroundMap_ExecuteEvent
b _08098850
.align 2, 0
_0809882C: .4byte gUnknown_20398BE
_08098830: .4byte gUnknown_20398C0
_08098834: .4byte gUnknown_20398B4
_08098838: .4byte gUnknown_20398A8
_0809883C: .4byte gUnknown_20398AC
_08098840: .4byte gUnknown_20398B0
_08098844: .4byte gUnknown_20398BC
_08098848:
movs r0, 0x66
movs r1, 0
bl GroundMap_ExecuteEvent
_08098850:
bl GroundMap_Action
movs r0, 0
movs r1, 0
bl sub_8005838
bl sub_80060EC
bl xxx_call_update_bg_sound_input
_08098864:
bl xxx_call_update_bg_sound_input
bl sub_80A6E68
ldr r0, _08098890
ldr r0, [r0]
cmp r0, 0
beq _080988B2
ldr r1, _08098894
ldr r0, [r1]
cmp r0, 0
ble _0809889C
subs r0, 0x1
str r0, [r1]
cmp r0, 0
bgt _080988F8
ldr r0, _08098898
ldr r0, [r0]
bl sub_80999D4
b _080988F8
.align 2, 0
_08098890: .4byte gUnknown_20398A8
_08098894: .4byte gUnknown_20398AC
_08098898: .4byte gUnknown_20398B0
_0809889C:
bl sub_8099B94
lsls r0, 24
cmp r0, 0
bne _080988F8
bl sub_809C740
lsls r0, 24
cmp r0, 0
bne _0809897C
b _080988F8
_080988B2:
ldr r0, _08098968
ldrb r0, [r0]
cmp r0, 0
beq _080988F8
ldr r0, _0809896C
ldrb r0, [r0]
cmp r0, 0
bne _080988F8
bl sub_809AFAC
lsls r0, 24
cmp r0, 0
bne _080988F8
ldr r0, _08098970
ldrh r0, [r0, 0x2]
ldr r2, _08098974
adds r1, r2, 0
ands r0, r1
cmp r0, 0
bne _080988E4
bl sub_80048BC
lsls r0, 24
cmp r0, 0
beq _080988F8
_080988E4:
movs r0, 0x72
movs r1, 0
bl GroundMap_ExecuteEvent
movs r0, 0x1E
bl sub_8098F44
movs r0, 0x1E
bl sub_80118C4
_080988F8:
bl GroundMap_Action
bl nullsub_124
bl GroundLives_Action
bl GroundObject_Action
bl GroundEffect_Action
bl nullsub_105
bl sub_809B474
bl GroundScript_Unlock
bl sub_809D25C
bl sub_80A59DC
bl sub_809B614
bl sub_809CA20
bl sub_80A6E80
bl sub_8099BE4
bl sub_8099744
bl sub_8011860
ldr r0, _08098978
ldr r0, [r0]
bl IncrementPlayTime
bl sub_800CB20
bl sub_800485C
bl nullsub_120
bl sub_80A5E70
bl sub_809B638
bl nullsub_106
bl sub_80A73EC
bl sub_8099750
bl sub_8009908
b _08098864
.align 2, 0
_08098968: .4byte gUnknown_20398B9
_0809896C: .4byte gUnknown_20398B8
_08098970: .4byte gUnknown_20255F0
_08098974: .4byte 0x0000030f
_08098978: .4byte gUnknown_203B47C
_0809897C:
bl sub_80A4AEC
movs r7, 0x1
negs r7, r7
ldr r0, _080989E8
ldr r0, [r0]
_08098988:
subs r0, 0x1
cmp r0, 0x1
bhi _08098990
b _080985DC
_08098990:
bl sub_80A4AC4
bl nullsub_118
bl sub_80A78F0
bl sub_80ABBD4
bl sub_80ACC10
bl sub_80ADA08
bl sub_809CB74
bl sub_809A610
bl sub_809C618
bl sub_80A658C
bl sub_809D508
bl sub_80A7754
bl nullsub_119
bl sub_8099768
bl nullsub_103
bl nullsub_16
ldr r0, _080989EC
ldrb r0, [r0]
cmp r0, 0
beq _080989FA
ldr r0, _080989E8
ldr r0, [r0]
cmp r0, 0x9
beq _080989F0
cmp r0, 0xA
bne _080989F0
movs r0, 0x10
b _08098BD2
.align 2, 0
_080989E8: .4byte gUnknown_20398A8
_080989EC: .4byte gUnknown_20398B9
_080989F0:
movs r0, 0x1E
bl sub_80118C4
movs r0, 0xF
b _08098BD2
_080989FA:
ldr r0, _08098A10
ldr r0, [r0]
subs r0, 0x3
cmp r0, 0x5
bls _08098A06
b _08098BC0
_08098A06:
lsls r0, 2
ldr r1, _08098A14
adds r0, r1
ldr r0, [r0]
mov pc, r0
.align 2, 0
_08098A10: .4byte gUnknown_20398A8
_08098A14: .4byte _08098A18
.align 2, 0
_08098A18:
.4byte _08098A30
.4byte _08098A72
.4byte _08098AA0
.4byte _08098B08
.4byte _08098B58
.4byte _08098B8C
_08098A30:
movs r4, 0x1
negs r4, r4
movs r0, 0
movs r1, 0x13
adds r2, r4, 0
bl sub_80018D8
movs r0, 0
movs r1, 0x14
adds r2, r4, 0
bl sub_80018D8
movs r0, 0
movs r1, 0x18
movs r2, 0x4
bl sub_80018D8
movs r0, 0
movs r1, 0x16
movs r2, 0x4
bl sub_80018D8
movs r0, 0
movs r1, 0xD
bl sub_8001658
adds r2, r0, 0
movs r0, 0
movs r1, 0xF
bl sub_80018D8
movs r0, 0x5
b _08098BD2
_08098A72:
movs r0, 0
movs r1, 0x13
movs r2, 0
bl sub_80018D8
movs r0, 0
movs r1, 0x18
movs r2, 0x5
bl sub_80018D8
movs r0, 0
movs r1, 0x16
movs r2, 0x5
bl sub_80018D8
movs r2, 0x1
negs r2, r2
movs r0, 0
movs r1, 0x13
bl sub_80018D8
movs r0, 0x6
b _08098BD2
_08098AA0:
ldr r5, _08098B04
movs r1, 0
ldrsh r0, [r5, r1]
bl sub_80A2654
adds r4, r0, 0
lsls r4, 16
asrs r4, 16
movs r0, 0
ldrsh r2, [r5, r0]
movs r0, 0
movs r1, 0x13
bl sub_80018D8
movs r0, 0
movs r1, 0x14
adds r2, r4, 0
bl sub_80018D8
ldrh r2, [r5]
movs r0, 0
movs r1, 0x30
movs r3, 0x1
bl sub_800199C
movs r0, 0
movs r1, 0x18
movs r2, 0x7
bl sub_80018D8
movs r0, 0
movs r1, 0x16
movs r2, 0x7
bl sub_80018D8
movs r0, 0
movs r1, 0x11
bl sub_8001658
lsls r0, 16
asrs r0, 16
cmp r0, 0xA
bne _08098B00
movs r0, 0
movs r1, 0x11
movs r2, 0
bl sub_80018D8
_08098B00:
movs r0, 0x7
b _08098BD2
.align 2, 0
_08098B04: .4byte gUnknown_20398C4
_08098B08:
movs r0, 0
movs r1, 0x13
movs r2, 0x51
bl sub_80018D8
ldr r0, _08098B54
movs r1, 0
ldrsh r2, [r0, r1]
movs r0, 0
movs r1, 0x14
bl sub_80018D8
movs r0, 0
movs r1, 0x18
movs r2, 0x7
bl sub_80018D8
movs r0, 0
movs r1, 0x16
movs r2, 0x7
bl sub_80018D8
movs r0, 0
movs r1, 0x11
bl sub_8001658
lsls r0, 16
asrs r0, 16
cmp r0, 0xA
bne _08098B4E
movs r0, 0
movs r1, 0x11
movs r2, 0
bl sub_80018D8
_08098B4E:
movs r0, 0x8
b _08098BD2
.align 2, 0
_08098B54: .4byte gUnknown_20398C4
_08098B58:
movs r0, 0
movs r1, 0x13
movs r2, 0x50
bl sub_80018D8
ldr r0, _08098B88
ldrb r2, [r0]
movs r0, 0
movs r1, 0x14
bl sub_80018D8
movs r0, 0
movs r1, 0x18
movs r2, 0x7
bl sub_80018D8
movs r0, 0
movs r1, 0x16
movs r2, 0x7
bl sub_80018D8
movs r0, 0x9
b _08098BD2
.align 2, 0
_08098B88: .4byte gUnknown_2039950
_08098B8C:
movs r0, 0
movs r1, 0x13
movs r2, 0x52
bl sub_80018D8
ldr r0, _08098BBC
movs r1, 0
ldrsh r2, [r0, r1]
movs r0, 0
movs r1, 0x14
bl sub_80018D8
movs r0, 0
movs r1, 0x18
movs r2, 0x7
bl sub_80018D8
movs r0, 0
movs r1, 0x16
movs r2, 0x7
bl sub_80018D8
movs r0, 0xA
b _08098BD2
.align 2, 0
_08098BBC: .4byte gUnknown_20398C4
_08098BC0:
movs r0, 0
movs r1, 0x18
movs r2, 0x1
bl sub_80018D8
movs r0, 0x10
bl sub_80118C4
movs r0, 0xE
_08098BD2:
add sp, 0x8
pop {r4-r7}
pop {r1}
bx r1
thumb_func_end xxx_script_related_8098468
.align 2,0 @ Don't pad with nop

8355
asm/code_8098BDC.s Normal file

File diff suppressed because it is too large Load Diff

10038
asm/code_809D148.s Normal file

File diff suppressed because it is too large Load Diff

10427
asm/code_80A26CC.s Normal file

File diff suppressed because it is too large Load Diff

14045
asm/code_80A7714.s Normal file

File diff suppressed because it is too large Load Diff

View File

@ -9,18 +9,6 @@
.text
thumb_func_start sub_8272760
sub_8272760:
push {lr}
adds r1, r0, 0
ldr r0, _08272770
bl sub_8272774
pop {r0}
bx r0
.align 2, 0
_08272770: .4byte 0x02027370
thumb_func_end sub_8272760
thumb_func_start sub_8272774
sub_8272774:
push {r4-r7,lr}
@ -167,7 +155,7 @@ sub_8272870:
pop {r0}
bx r0
.align 2, 0
_08272880: .4byte 0x02027370
_08272880: .4byte gUnknown_2027370
thumb_func_end sub_8272870
thumb_func_start sub_8272884
@ -336,7 +324,7 @@ sub_82729A4:
pop {r0}
bx r0
.align 2, 0
_082729B4: .4byte 0x02027370
_082729B4: .4byte gUnknown_2027370
thumb_func_end sub_82729A4
thumb_func_start sub_82729B8
@ -451,7 +439,7 @@ sub_8272A78:
pop {r0}
bx r0
.align 2, 0
_08272A88: .4byte 0x02027370
_08272A88: .4byte gUnknown_2027370
thumb_func_end sub_8272A78
thumb_func_start sub_8272A8C

View File

@ -2565,27 +2565,4 @@ _0800274E:
bx r1
thumb_func_end sub_8002718
thumb_func_start sub_8002758
sub_8002758:
push {lr}
adds r2, r0, 0
movs r0, 0
movs r1, 0x1
movs r3, 0x9
bl sub_800226C
pop {r0}
bx r0
thumb_func_end sub_8002758
thumb_func_start sub_800276C
sub_800276C:
movs r0, 0
bx lr
thumb_func_end sub_800276C
thumb_func_start nullsub_140
nullsub_140:
bx lr
thumb_func_end nullsub_140
.align 2, 0 @ Don't pad with nop.

38
asm/fatal_system.s Normal file
View File

@ -0,0 +1,38 @@
.include "constants/gba_constants.inc"
.include "asm/macros.inc"
.syntax unified
.text
thumb_func_start FatalErrorFormatMessage
FatalErrorFormatMessage:
push {r0-r3}
push {lr}
sub sp, 0x100
ldr r1, [sp, 0x104]
add r2, sp, 0x108
mov r0, sp
bl vsprintf
add sp, 0x100
pop {r3}
add sp, 0x10
bx r3
thumb_func_end FatalErrorFormatMessage
thumb_func_start sub_8011B88
sub_8011B88:
push {r0-r3}
push {lr}
sub sp, 0x100
ldr r1, [sp, 0x104]
add r2, sp, 0x108
mov r0, sp
bl vsprintf
add sp, 0x100
pop {r3}
add sp, 0x10
bx r3
thumb_func_end sub_8011B88
.align 2,0

72
asm/fatal_system_1.s Normal file
View File

@ -0,0 +1,72 @@
.include "constants/gba_constants.inc"
.include "asm/macros.inc"
.syntax unified
.text
thumb_func_start Log
Log:
push {r1-r3}
add sp, 0xC
bx lr
thumb_func_end Log
thumb_func_start sub_8011BC8
sub_8011BC8:
push {r2,r3}
add sp, 0x8
bx lr
thumb_func_end sub_8011BC8
thumb_func_start nullsub_29
nullsub_29:
bx lr
thumb_func_end nullsub_29
thumb_func_start nullsub_30
nullsub_30:
bx lr
thumb_func_end nullsub_30
thumb_func_start nullsub_31
nullsub_31:
bx lr
thumb_func_end nullsub_31
thumb_func_start nullsub_32
nullsub_32:
bx lr
thumb_func_end nullsub_32
thumb_func_start FatalErrorHang
FatalErrorHang:
push {lr}
bl Hang
pop {r0}
bx r0
thumb_func_end FatalErrorHang
thumb_func_start FatalError
FatalError:
push {r1-r3}
push {r4,lr}
sub sp, 0x100
adds r1, r0, 0
ldr r4, [sp, 0x108]
ldr r0, _08011C14
bl FatalErrorPrintFuncFileLine
add r2, sp, 0x10C
mov r0, sp
adds r1, r4, 0
bl vsprintf
ldr r0, _08011C18
mov r1, sp
bl FatalErrorFormatMessage
bl FatalErrorHang
.align 2, 0
_08011C14: .4byte gFatalText
_08011C18: .4byte gUnknown_80D42D4
thumb_func_end FatalError
.align 2,0

View File

@ -5,199 +5,6 @@
.text
thumb_func_start InitInput
InitInput:
ldr r0, =gUnknown_20255F0
movs r3, 0
movs r2, 0
strh r2, [r0]
strh r2, [r0, 0x2]
strh r2, [r0, 0x4]
strh r2, [r0, 0x6]
ldr r0, =gUnknown_2025638
strh r2, [r0]
strh r2, [r0, 0x2]
strh r2, [r0, 0x4]
strh r2, [r0, 0x6]
ldr r1, =gUnknown_202562C
ldr r0, =0x4a14c1
str r0, [r1]
ldr r0, =gUnknown_2025600
str r2, [r0, 0x20]
ldr r1, =0xffff
strh r1, [r0]
movs r1, 0x1
negs r1, r1
strh r1, [r0, 0x2]
strh r1, [r0, 0x4]
strh r1, [r0, 0x6]
strh r1, [r0, 0x1C]
strh r1, [r0, 0x1E]
strh r1, [r0, 0x8]
strh r1, [r0, 0xA]
strh r1, [r0, 0xC]
strh r1, [r0, 0xE]
strh r1, [r0, 0x10]
strh r1, [r0, 0x12]
strh r1, [r0, 0x14]
strh r1, [r0, 0x16]
adds r1, r0, 0
adds r1, 0x28
strb r3, [r1]
adds r0, 0x29
strb r3, [r0]
ldr r0, =gUnknown_2025668
strh r2, [r0]
strh r2, [r0, 0x2]
bx lr
.align 2, 0
.pool
thumb_func_end InitInput
thumb_func_start sub_800485C
sub_800485C:
push {r4,r5,lr}
ldr r2, =gUnknown_2025638
ldr r1, =gUnknown_20255F0
adds r0, r2, 0
ldm r0!, {r3-r5}
stm r1!, {r3-r5}
ldr r0, [r0]
str r0, [r1]
movs r3, 0
movs r0, 0
strh r0, [r2]
strh r0, [r2, 0x2]
strh r0, [r2, 0x4]
strh r0, [r2, 0x6]
ldr r0, =gUnknown_2025600
ldr r1, =0xffff
strh r1, [r0]
movs r1, 0x1
negs r1, r1
strh r1, [r0, 0x2]
strh r1, [r0, 0x4]
strh r1, [r0, 0x6]
strh r1, [r0, 0x8]
strh r1, [r0, 0xA]
strh r1, [r0, 0xC]
strh r1, [r0, 0xE]
strh r1, [r0, 0x10]
strh r1, [r0, 0x12]
strh r1, [r0, 0x14]
strh r1, [r0, 0x16]
adds r1, r0, 0
adds r1, 0x28
strb r3, [r1]
adds r0, 0x29
strb r3, [r0]
pop {r4,r5}
pop {r0}
bx r0
.align 2, 0
.pool
thumb_func_end sub_800485C
thumb_func_start sub_80048B8
sub_80048B8:
movs r0, 0
bx lr
thumb_func_end sub_80048B8
thumb_func_start sub_80048BC
sub_80048BC:
movs r0, 0
bx lr
thumb_func_end sub_80048BC
thumb_func_start sub_80048C0
sub_80048C0:
movs r0, 0
bx lr
thumb_func_end sub_80048C0
thumb_func_start sub_80048C4
sub_80048C4:
movs r0, 0
bx lr
thumb_func_end sub_80048C4
thumb_func_start sub_80048C8
sub_80048C8:
movs r0, 0
bx lr
thumb_func_end sub_80048C8
thumb_func_start sub_80048CC
sub_80048CC:
movs r0, 0
bx lr
thumb_func_end sub_80048CC
thumb_func_start sub_80048D0
sub_80048D0:
ldr r1, =gUnknown_20255F0
movs r0, 0
strh r0, [r1, 0x4]
ldr r1, =gUnknown_2025648
str r0, [r1, 0xC]
strh r0, [r1, 0x8]
ldr r1, =gUnknown_2025668
ldr r0, =0x3e7
strh r0, [r1]
strh r0, [r1, 0x2]
bx lr
.align 2, 0
.pool
thumb_func_end sub_80048D0
thumb_func_start sub_80048F8
sub_80048F8:
ldr r0, =gUnknown_20255F0
movs r1, 0
strh r1, [r0, 0x2]
ldr r0, =gUnknown_2025638
strh r1, [r0, 0x2]
ldr r0, =gUnknown_2025648
strh r1, [r0, 0x2]
bx lr
.align 2, 0
.pool
thumb_func_end sub_80048F8
thumb_func_start sub_8004914
sub_8004914:
ldr r0, =gUnknown_2025600
movs r1, 0x5
str r1, [r0, 0x20]
movs r2, 0
movs r1, 0
strh r1, [r0, 0x24]
ldr r1, =0xffff
strh r1, [r0]
movs r1, 0x1
negs r1, r1
strh r1, [r0, 0x2]
strh r1, [r0, 0x4]
strh r1, [r0, 0x6]
strh r1, [r0, 0x8]
strh r1, [r0, 0xA]
strh r1, [r0, 0xC]
strh r1, [r0, 0xE]
strh r1, [r0, 0x10]
strh r1, [r0, 0x12]
strh r1, [r0, 0x14]
strh r1, [r0, 0x16]
adds r1, r0, 0
adds r1, 0x28
strb r2, [r1]
adds r0, 0x29
strb r2, [r0]
bx lr
.align 2, 0
.pool
thumb_func_end sub_8004914
thumb_func_start UpdateInput
UpdateInput:
push {r4-r6,lr}

View File

@ -1,574 +0,0 @@
.include "asm/macros.inc"
.include "constants/gba_constants.inc"
.include "constants/m4a_constants.inc"
.syntax unified
.text
thumb_func_start CgbSound
CgbSound:
push {r4-r7,lr}
mov r7, r10
mov r6, r9
mov r5, r8
push {r5-r7}
sub sp, 0x1C
ldr r0, =SOUND_INFO_PTR
ldr r0, [r0]
str r0, [sp, 0x4]
ldrb r0, [r0, 0xA]
cmp r0, 0
beq _080AFB00
subs r0, 0x1
ldr r1, [sp, 0x4]
strb r0, [r1, 0xA]
b _080AFB06
.pool
_080AFB00:
movs r0, 0xE
ldr r2, [sp, 0x4]
strb r0, [r2, 0xA]
_080AFB06:
movs r6, 0x1
ldr r0, [sp, 0x4]
ldr r4, [r0, 0x1C]
_080AFB0C:
ldrb r1, [r4]
movs r0, 0xC7
ands r0, r1
adds r2, r6, 0x1
mov r10, r2
movs r2, 0x40
adds r2, r4
mov r9, r2
cmp r0, 0
bne _080AFB22
b _080AFF0C
_080AFB22:
cmp r6, 0x2
beq _080AFB54
cmp r6, 0x2
bgt _080AFB30
cmp r6, 0x1
beq _080AFB36
b _080AFB8C
_080AFB30:
cmp r6, 0x3
beq _080AFB6C
b _080AFB8C
_080AFB36:
ldr r0, =REG_NR10
str r0, [sp, 0x8]
ldr r7, =REG_NR11
ldr r2, =REG_NR12
str r2, [sp, 0xC]
adds r0, 0x4
str r0, [sp, 0x10]
adds r2, 0x2
b _080AFB9C
.pool
_080AFB54:
ldr r0, =REG_NR10 + 1
str r0, [sp, 0x8]
ldr r7, =REG_NR21
ldr r2, =REG_NR22
b _080AFB94
.pool
_080AFB6C:
ldr r0, =REG_NR30
str r0, [sp, 0x8]
ldr r7, =REG_NR31
ldr r2, =REG_NR32
str r2, [sp, 0xC]
adds r0, 0x4
str r0, [sp, 0x10]
adds r2, 0x2
b _080AFB9C
.pool
_080AFB8C:
ldr r0, =REG_NR30 + 1
str r0, [sp, 0x8]
ldr r7, =REG_NR41
ldr r2, =REG_NR42
_080AFB94:
str r2, [sp, 0xC]
adds r0, 0xB
str r0, [sp, 0x10]
adds r2, 0x4
_080AFB9C:
str r2, [sp, 0x14]
ldr r0, [sp, 0x4]
ldrb r0, [r0, 0xA]
str r0, [sp]
ldr r2, [sp, 0xC]
ldrb r0, [r2]
mov r8, r0
adds r2, r1, 0
movs r0, 0x80
ands r0, r2
cmp r0, 0
beq _080AFC92
movs r3, 0x40
adds r0, r3, 0
ands r0, r2
lsls r0, 24
lsrs r5, r0, 24
adds r0, r6, 0x1
mov r10, r0
movs r1, 0x40
adds r1, r4
mov r9, r1
cmp r5, 0
bne _080AFCB6
movs r0, 0x3
strb r0, [r4]
strb r0, [r4, 0x1D]
adds r0, r4, 0
str r3, [sp, 0x18]
bl CgbModVol
ldr r3, [sp, 0x18]
cmp r6, 0x2
beq _080AFC04
cmp r6, 0x2
bgt _080AFBF8
cmp r6, 0x1
beq _080AFBFE
b _080AFC58
.pool
_080AFBF8:
cmp r6, 0x3
beq _080AFC10
b _080AFC58
_080AFBFE:
ldrb r0, [r4, 0x1F]
ldr r2, [sp, 0x8]
strb r0, [r2]
_080AFC04:
ldr r0, [r4, 0x24]
lsls r0, 6
ldrb r1, [r4, 0x1E]
adds r0, r1, r0
strb r0, [r7]
b _080AFC64
_080AFC10:
ldr r1, [r4, 0x24]
ldr r0, [r4, 0x28]
cmp r1, r0
beq _080AFC38
ldr r2, [sp, 0x8]
strb r3, [r2]
ldr r1, =REG_WAVE_RAM
ldr r2, [r4, 0x24]
ldr r0, [r2]
str r0, [r1]
adds r1, 0x4
ldr r0, [r2, 0x4]
str r0, [r1]
adds r1, 0x4
ldr r0, [r2, 0x8]
str r0, [r1]
adds r1, 0x4
ldr r0, [r2, 0xC]
str r0, [r1]
str r2, [r4, 0x28]
_080AFC38:
ldr r0, [sp, 0x8]
strb r5, [r0]
ldrb r0, [r4, 0x1E]
strb r0, [r7]
ldrb r0, [r4, 0x1E]
cmp r0, 0
beq _080AFC50
movs r0, 0xC0
b _080AFC72
.pool
_080AFC50:
movs r1, 0x80
negs r1, r1
strb r1, [r4, 0x1A]
b _080AFC74
_080AFC58:
ldrb r0, [r4, 0x1E]
strb r0, [r7]
ldr r0, [r4, 0x24]
lsls r0, 3
ldr r2, [sp, 0x10]
strb r0, [r2]
_080AFC64:
ldrb r0, [r4, 0x4]
adds r0, 0x8
mov r8, r0
ldrb r0, [r4, 0x1E]
cmp r0, 0
beq _080AFC72
movs r0, 0x40
_080AFC72:
strb r0, [r4, 0x1A]
_080AFC74:
ldrb r1, [r4, 0x4]
movs r2, 0
strb r1, [r4, 0xB]
movs r0, 0xFF
ands r0, r1
adds r1, r6, 0x1
mov r10, r1
movs r1, 0x40
adds r1, r4
mov r9, r1
cmp r0, 0
bne _080AFC8E
b _080AFDCA
_080AFC8E:
strb r2, [r4, 0x9]
b _080AFDF8
_080AFC92:
movs r0, 0x4
ands r0, r2
cmp r0, 0
beq _080AFCC4
ldrb r0, [r4, 0xD]
subs r0, 0x1
strb r0, [r4, 0xD]
movs r2, 0xFF
ands r0, r2
lsls r0, 24
adds r1, r6, 0x1
mov r10, r1
movs r2, 0x40
adds r2, r4
mov r9, r2
cmp r0, 0
ble _080AFCB6
b _080AFE0A
_080AFCB6:
lsls r0, r6, 24
lsrs r0, 24
bl CgbOscOff
movs r0, 0
strb r0, [r4]
b _080AFF08
_080AFCC4:
movs r0, 0x40
ands r0, r1
adds r2, r6, 0x1
mov r10, r2
movs r2, 0x40
adds r2, r4
mov r9, r2
cmp r0, 0
beq _080AFD04
movs r0, 0x3
ands r0, r1
cmp r0, 0
beq _080AFD04
movs r0, 0xFC
ands r0, r1
movs r2, 0
strb r0, [r4]
ldrb r1, [r4, 0x7]
strb r1, [r4, 0xB]
movs r0, 0xFF
ands r0, r1
cmp r0, 0
beq _080AFD36
movs r0, 0x1
ldrb r1, [r4, 0x1D]
orrs r0, r1
strb r0, [r4, 0x1D]
cmp r6, 0x3
beq _080AFDF8
ldrb r2, [r4, 0x7]
mov r8, r2
b _080AFDF8
_080AFD04:
ldrb r0, [r4, 0xB]
cmp r0, 0
bne _080AFDF8
cmp r6, 0x3
bne _080AFD16
movs r0, 0x1
ldrb r1, [r4, 0x1D]
orrs r0, r1
strb r0, [r4, 0x1D]
_080AFD16:
adds r0, r4, 0
bl CgbModVol
movs r0, 0x3
ldrb r2, [r4]
ands r0, r2
cmp r0, 0
bne _080AFD6A
ldrb r0, [r4, 0x9]
subs r0, 0x1
strb r0, [r4, 0x9]
movs r1, 0xFF
ands r0, r1
lsls r0, 24
cmp r0, 0
bgt _080AFD66
_080AFD36:
ldrb r2, [r4, 0xC]
ldrb r1, [r4, 0xA]
adds r0, r2, 0
muls r0, r1
adds r0, 0xFF
asrs r0, 8
movs r1, 0
strb r0, [r4, 0x9]
lsls r0, 24
cmp r0, 0
beq _080AFCB6
movs r0, 0x4
ldrb r2, [r4]
orrs r0, r2
strb r0, [r4]
movs r0, 0x1
ldrb r1, [r4, 0x1D]
orrs r0, r1
strb r0, [r4, 0x1D]
cmp r6, 0x3
beq _080AFE0A
movs r2, 0x8
mov r8, r2
b _080AFE0A
_080AFD66:
ldrb r0, [r4, 0x7]
b _080AFDF6
_080AFD6A:
cmp r0, 0x1
bne _080AFD76
_080AFD6E:
ldrb r0, [r4, 0x19]
strb r0, [r4, 0x9]
movs r0, 0x7
b _080AFDF6
_080AFD76:
cmp r0, 0x2
bne _080AFDBA
ldrb r0, [r4, 0x9]
subs r0, 0x1
strb r0, [r4, 0x9]
movs r1, 0xFF
ands r0, r1
lsls r0, 24
ldrb r2, [r4, 0x19]
lsls r1, r2, 24
cmp r0, r1
bgt _080AFDB6
_080AFD8E:
ldrb r0, [r4, 0x6]
cmp r0, 0
bne _080AFD9E
movs r0, 0xFC
ldrb r1, [r4]
ands r0, r1
strb r0, [r4]
b _080AFD36
_080AFD9E:
ldrb r0, [r4]
subs r0, 0x1
strb r0, [r4]
movs r0, 0x1
ldrb r2, [r4, 0x1D]
orrs r0, r2
strb r0, [r4, 0x1D]
cmp r6, 0x3
beq _080AFD6E
movs r0, 0x8
mov r8, r0
b _080AFD6E
_080AFDB6:
ldrb r0, [r4, 0x5]
b _080AFDF6
_080AFDBA:
ldrb r0, [r4, 0x9]
adds r0, 0x1
strb r0, [r4, 0x9]
movs r1, 0xFF
ands r0, r1
ldrb r2, [r4, 0xA]
cmp r0, r2
bcc _080AFDF4
_080AFDCA:
ldrb r0, [r4]
subs r0, 0x1
movs r2, 0
strb r0, [r4]
ldrb r1, [r4, 0x5]
strb r1, [r4, 0xB]
movs r0, 0xFF
ands r0, r1
cmp r0, 0
beq _080AFD8E
movs r0, 0x1
ldrb r1, [r4, 0x1D]
orrs r0, r1
strb r0, [r4, 0x1D]
ldrb r0, [r4, 0xA]
strb r0, [r4, 0x9]
cmp r6, 0x3
beq _080AFDF8
ldrb r2, [r4, 0x5]
mov r8, r2
b _080AFDF8
_080AFDF4:
ldrb r0, [r4, 0x4]
_080AFDF6:
strb r0, [r4, 0xB]
_080AFDF8:
ldrb r0, [r4, 0xB]
subs r0, 0x1
strb r0, [r4, 0xB]
ldr r0, [sp]
cmp r0, 0
bne _080AFE0A
subs r0, 0x1
str r0, [sp]
b _080AFD04
_080AFE0A:
movs r0, 0x2
ldrb r1, [r4, 0x1D]
ands r0, r1
cmp r0, 0
beq _080AFE82
cmp r6, 0x3
bgt _080AFE4A
movs r0, 0x8
ldrb r2, [r4, 0x1]
ands r0, r2
cmp r0, 0
beq _080AFE4A
ldr r0, =REG_SOUNDBIAS + 1
ldrb r0, [r0]
cmp r0, 0x3F
bgt _080AFE3C
ldr r0, [r4, 0x20]
adds r0, 0x2
ldr r1, =0x000007fc
b _080AFE46
.pool
_080AFE3C:
cmp r0, 0x7F
bgt _080AFE4A
ldr r0, [r4, 0x20]
adds r0, 0x1
ldr r1, =0x000007fe
_080AFE46:
ands r0, r1
str r0, [r4, 0x20]
_080AFE4A:
cmp r6, 0x4
beq _080AFE5C
ldr r0, [r4, 0x20]
ldr r1, [sp, 0x10]
strb r0, [r1]
b _080AFE6A
.pool
_080AFE5C:
ldr r2, [sp, 0x10]
ldrb r0, [r2]
movs r1, 0x8
ands r1, r0
ldr r0, [r4, 0x20]
orrs r0, r1
strb r0, [r2]
_080AFE6A:
movs r0, 0xC0
ldrb r1, [r4, 0x1A]
ands r0, r1
adds r1, r4, 0
adds r1, 0x21
ldrb r1, [r1]
adds r0, r1, r0
strb r0, [r4, 0x1A]
movs r2, 0xFF
ands r0, r2
ldr r1, [sp, 0x14]
strb r0, [r1]
_080AFE82:
movs r0, 0x1
ldrb r2, [r4, 0x1D]
ands r0, r2
cmp r0, 0
beq _080AFF08
ldr r1, =REG_NR51
ldrb r0, [r1]
ldrb r2, [r4, 0x1C]
bics r0, r2
ldrb r2, [r4, 0x1B]
orrs r0, r2
strb r0, [r1]
cmp r6, 0x3
bne _080AFED4
ldr r0, =gCgb3Vol
ldrb r1, [r4, 0x9]
adds r0, r1, r0
ldrb r0, [r0]
ldr r2, [sp, 0xC]
strb r0, [r2]
movs r1, 0x80
adds r0, r1, 0
ldrb r2, [r4, 0x1A]
ands r0, r2
cmp r0, 0
beq _080AFF08
ldr r0, [sp, 0x8]
strb r1, [r0]
ldrb r0, [r4, 0x1A]
ldr r1, [sp, 0x14]
strb r0, [r1]
movs r0, 0x7F
ldrb r2, [r4, 0x1A]
ands r0, r2
strb r0, [r4, 0x1A]
b _080AFF08
.pool
_080AFED4:
movs r0, 0xF
mov r1, r8
ands r1, r0
mov r8, r1
ldrb r2, [r4, 0x9]
lsls r0, r2, 4
add r0, r8
ldr r1, [sp, 0xC]
strb r0, [r1]
movs r2, 0x80
ldrb r0, [r4, 0x1A]
orrs r0, r2
ldr r1, [sp, 0x14]
strb r0, [r1]
cmp r6, 0x1
bne _080AFF08
ldr r0, [sp, 0x8]
ldrb r1, [r0]
movs r0, 0x8
ands r0, r1
cmp r0, 0
bne _080AFF08
ldrb r0, [r4, 0x1A]
orrs r0, r2
ldr r1, [sp, 0x14]
strb r0, [r1]
_080AFF08:
movs r0, 0
strb r0, [r4, 0x1D]
_080AFF0C:
mov r6, r10
mov r4, r9
cmp r6, 0x4
bgt _080AFF16
b _080AFB0C
_080AFF16:
add sp, 0x1C
pop {r3-r5}
mov r8, r3
mov r9, r4
mov r10, r5
pop {r4-r7}
pop {r0}
bx r0
thumb_func_end CgbSound
.align 2, 0 @ Don't pad with nop.

View File

@ -1 +1,2 @@
.include "asm/macros/function.inc"
.include "asm/macros/music_voice.inc"

140
asm/macros/music_voice.inc Normal file
View File

@ -0,0 +1,140 @@
.macro voice_directsound base_midi_key:req, pan:req, sample_data_pointer:req, attack:req, decay:req, sustain:req, release:req
.byte 0
_voice_directsound \base_midi_key, \pan, \sample_data_pointer, \attack, \decay, \sustain, \release
.endm
.macro voice_directsound_no_resample base_midi_key:req, pan:req, sample_data_pointer:req, attack:req, decay:req, sustain:req, release:req
.byte 8
_voice_directsound \base_midi_key, \pan, \sample_data_pointer, \attack, \decay, \sustain, \release
.endm
.macro voice_directsound_alt base_midi_key:req, pan:req, sample_data_pointer:req, attack:req, decay:req, sustain:req, release:req
.byte 16
_voice_directsound \base_midi_key, \pan, \sample_data_pointer, \attack, \decay, \sustain, \release
.endm
.macro _voice_directsound base_midi_key:req, pan:req, sample_data_pointer:req, attack:req, decay:req, sustain:req, release:req
.byte \base_midi_key
.byte 0
.if \pan != 0
.byte (0x80 | \pan)
.else
.byte 0
.endif
.4byte \sample_data_pointer
.byte \attack
.byte \decay
.byte \sustain
.byte \release
.endm
.macro voice_square_1 base_midi_key:req, pan:req, sweep:req, duty_cycle:req, attack:req, decay:req, sustain:req, release:req
_voice_square_1 1, \base_midi_key, \pan, \sweep, \duty_cycle, \attack, \decay, \sustain, \release
.endm
.macro voice_square_1_alt base_midi_key:req, pan:req, sweep:req, duty_cycle:req, attack:req, decay:req, sustain:req, release:req
_voice_square_1 9, \base_midi_key, \pan, \sweep, \duty_cycle, \attack, \decay, \sustain, \release
.endm
.macro _voice_square_1 type:req, base_midi_key:req, pan:req, sweep:req, duty_cycle:req, attack:req, decay:req, sustain:req, release:req
.byte \type
.byte \base_midi_key
.if \pan != 0
.byte (0x80 | \pan)
.else
.byte 0
.endif
.byte \sweep
.byte (\duty_cycle & 0x3)
.byte 0, 0, 0
.byte (\attack & 0x7)
.byte (\decay & 0x7)
.byte (\sustain & 0xF)
.byte (\release & 0x7)
.endm
.macro voice_square_2 base_midi_key:req, pan:req, duty_cycle:req, attack:req, decay:req, sustain:req, release:req
_voice_square_2 2, \base_midi_key, \pan, \duty_cycle, \attack, \decay, \sustain, \release
.endm
.macro voice_square_2_alt base_midi_key:req, pan:req, duty_cycle:req, attack:req, decay:req, sustain:req, release:req
_voice_square_2 10, \base_midi_key, \pan, \duty_cycle, \attack, \decay, \sustain, \release
.endm
.macro _voice_square_2 type:req, base_midi_key:req, pan:req, duty_cycle:req, attack:req, decay:req, sustain:req, release:req
.byte \type
.byte \base_midi_key
.if \pan != 0
.byte (0x80 | \pan)
.else
.byte 0
.endif
.byte 0
.byte (\duty_cycle & 0x3)
.byte 0, 0, 0
.byte (\attack & 0x7)
.byte (\decay & 0x7)
.byte (\sustain & 0xF)
.byte (\release & 0x7)
.endm
.macro voice_programmable_wave base_midi_key:req, pan:req, wave_samples_pointer:req, attack:req, decay:req, sustain:req, release:req
_voice_programmable_wave 3, \base_midi_key, \pan, \wave_samples_pointer, \attack, \decay, \sustain, \release
.endm
.macro voice_programmable_wave_alt base_midi_key:req, pan:req, wave_samples_pointer:req, attack:req, decay:req, sustain:req, release:req
_voice_programmable_wave 11, \base_midi_key, \pan, \wave_samples_pointer, \attack, \decay, \sustain, \release
.endm
.macro _voice_programmable_wave type:req, base_midi_key:req, pan:req, wave_samples_pointer:req, attack:req, decay:req, sustain:req, release:req
.byte \type
.byte \base_midi_key
.if \pan != 0
.byte (0x80 | \pan)
.else
.byte 0
.endif
.byte 0
.4byte \wave_samples_pointer
.byte (\attack & 0x7)
.byte (\decay & 0x7)
.byte (\sustain & 0xF)
.byte (\release & 0x7)
.endm
.macro voice_noise base_midi_key:req, pan:req, period:req, attack:req, decay:req, sustain:req, release:req
_voice_noise 4, \base_midi_key, \pan, \period, \attack, \decay, \sustain, \release
.endm
.macro voice_noise_alt base_midi_key:req, pan:req, period:req, attack:req, decay:req, sustain:req, release:req
_voice_noise 12, \base_midi_key, \pan, \period, \attack, \decay, \sustain, \release
.endm
.macro _voice_noise type:req, base_midi_key:req, pan:req, period:req, attack:req, decay:req, sustain:req, release:req
.byte \type
.byte \base_midi_key
.if \pan != 0
.byte (0x80 | \pan)
.else
.byte 0
.endif
.byte 0
.byte (\period & 0x1)
.byte 0, 0, 0
.byte (\attack & 0x7)
.byte (\decay & 0x7)
.byte (\sustain & 0xF)
.byte (\release & 0x7)
.endm
.macro voice_keysplit voice_group_pointer:req, keysplit_table_pointer:req
.byte 0x40, 0, 0, 0
.4byte \voice_group_pointer
.4byte \keysplit_table_pointer
.endm
.macro voice_keysplit_all voice_group_pointer:req
.byte 0x80, 0, 0, 0
.4byte \voice_group_pointer
.4byte 0
.endm

View File

@ -5,39 +5,6 @@
.text
thumb_func_start xxx_memory_attr_related
xxx_memory_attr_related:
push {lr}
adds r1, r0, 0
cmp r1, 0
bne _0800303C
movs r0, 0
b _08003060
_0800303C:
movs r0, 0x8
ands r0, r1
cmp r0, 0
beq _08003048
movs r0, 0x4
b _08003060
_08003048:
movs r2, 0x7
ands r2, r1
movs r0, 0x1
cmp r2, 0x7
beq _08003060
movs r0, 0x2
cmp r2, 0x1
beq _08003060
movs r0, 0x5
cmp r2, 0x3
bne _08003060
movs r0, 0x3
_08003060:
pop {r1}
bx r1
thumb_func_end xxx_memory_attr_related
thumb_func_start MemorySearchFromFront
MemorySearchFromFront:
push {r4-r7,lr}

1095
asm/music.s Normal file

File diff suppressed because it is too large Load Diff

2030
asm/personality_test.s Normal file

File diff suppressed because it is too large Load Diff

1782
asm/pokemon.s Normal file

File diff suppressed because it is too large Load Diff

184
asm/pokemon_1.s Normal file
View File

@ -0,0 +1,184 @@
.include "constants/gba_constants.inc"
.include "asm/macros.inc"
.syntax unified
.text
thumb_func_start sub_808DC28
sub_808DC28:
lsls r0, 16
asrs r0, 16
ldr r2, _0808DC44
ldr r3, [r2]
lsls r2, r0, 3
adds r2, r0
lsls r2, 3
adds r2, r3
lsls r1, 1
adds r2, 0x24
adds r2, r1
ldrh r0, [r2]
bx lr
.align 2, 0
_0808DC44: .4byte gMonsterParameters
thumb_func_end sub_808DC28
thumb_func_start sub_808DC48
sub_808DC48:
lsls r0, 16
asrs r0, 16
ldr r2, _0808DC64
ldr r3, [r2]
lsls r2, r0, 3
adds r2, r0
lsls r2, 3
adds r2, r3
lsls r1, 1
adds r2, 0x28
adds r2, r1
ldrh r0, [r2]
bx lr
.align 2, 0
_0808DC64: .4byte gMonsterParameters
thumb_func_end sub_808DC48
thumb_func_start sub_808DC68
sub_808DC68:
lsls r0, 16
asrs r0, 16
ldr r2, _0808DC80
ldr r3, [r2]
lsls r2, r0, 3
adds r2, r0
lsls r2, 3
adds r2, r3
adds r2, 0x13
adds r2, r1
ldrb r0, [r2]
bx lr
.align 2, 0
_0808DC80: .4byte gMonsterParameters
thumb_func_end sub_808DC68
thumb_func_start sub_808DC84
sub_808DC84:
lsls r0, 16
asrs r0, 16
ldr r2, _0808DC9C
ldr r3, [r2]
lsls r2, r0, 3
adds r2, r0
lsls r2, 3
adds r2, r3
adds r2, 0x17
adds r2, r1
ldrb r0, [r2]
bx lr
.align 2, 0
_0808DC9C: .4byte gMonsterParameters
thumb_func_end sub_808DC84
thumb_func_start sub_808DCA0
sub_808DCA0:
lsls r0, 16
asrs r0, 16
ldr r2, _0808DCBC
ldr r3, [r2]
lsls r2, r0, 3
adds r2, r0
lsls r2, 3
adds r2, r3
lsls r1, 1
adds r2, 0x3C
adds r2, r1
movs r1, 0
ldrsh r0, [r2, r1]
bx lr
.align 2, 0
_0808DCBC: .4byte gMonsterParameters
thumb_func_end sub_808DCA0
thumb_func_start sub_808DCC0
sub_808DCC0:
lsls r0, 16
asrs r0, 16
ldr r1, _0808DCD8
ldr r2, [r1]
lsls r1, r0, 3
adds r1, r0
lsls r1, 3
adds r1, r2
adds r1, 0x40
movs r2, 0
ldrsh r0, [r1, r2]
bx lr
.align 2, 0
_0808DCD8: .4byte gMonsterParameters
thumb_func_end sub_808DCC0
thumb_func_start sub_808DCDC
sub_808DCDC:
lsls r0, 16
asrs r0, 16
ldr r2, _0808DCF8
ldr r3, [r2]
lsls r2, r0, 3
adds r2, r0
lsls r2, 3
adds r2, r3
lsls r1, 1
adds r2, 0x42
adds r2, r1
movs r1, 0
ldrsh r0, [r2, r1]
bx lr
.align 2, 0
_0808DCF8: .4byte gMonsterParameters
thumb_func_end sub_808DCDC
thumb_func_start sub_808DCFC
sub_808DCFC:
lsls r0, 16
asrs r0, 16
ldr r1, _0808DD14
ldr r2, [r1]
lsls r1, r0, 3
adds r1, r0
lsls r1, 3
adds r1, r2
movs r2, 0x3E
ldrsh r0, [r1, r2]
bx lr
.align 2, 0
_0808DD14: .4byte gMonsterParameters
thumb_func_end sub_808DCFC
thumb_func_start sub_808DD18
sub_808DD18:
push {r4,lr}
lsls r0, 16
asrs r0, 16
ldr r2, _0808DD44
ldr r3, [r2]
lsls r2, r0, 3
adds r2, r0
lsls r2, 3
adds r2, r3
ldr r4, [r2, 0x20]
subs r1, 0x1
adds r0, r4, 0
muls r0, r1
movs r1, 0xA
bl __divsi3
adds r4, r0
adds r0, r4, 0
pop {r4}
pop {r1}
bx r1
.align 2, 0
_0808DD44: .4byte gMonsterParameters
thumb_func_end sub_808DD18
.align 2,0 @ don't pad with nop

1121
asm/save.s

File diff suppressed because it is too large Load Diff

605
asm/save1.s Normal file
View File

@ -0,0 +1,605 @@
.include "constants/gba_constants.inc"
.include "asm/macros.inc"
.syntax unified
.text
thumb_func_start sub_8012574
sub_8012574:
push {r4-r6,lr}
lsls r0, 16
asrs r4, r0, 16
bl sub_80993D8
ldr r5, _080125D4
movs r0, 0x20
movs r1, 0x5
bl MemoryAlloc
str r0, [r5]
movs r6, 0
movs r1, 0
strh r4, [r0, 0x1C]
str r1, [r0, 0xC]
str r1, [r0, 0x10]
cmp r4, 0
beq _080125BA
adds r0, r4, 0
bl sub_808DDD0
ldr r1, [r5]
str r0, [r1, 0xC]
ldr r0, [r0, 0x4]
str r0, [r1, 0x10]
strb r6, [r1, 0x18]
ldr r0, [r5]
strb r6, [r0, 0x19]
ldr r0, [r5]
strb r6, [r0, 0x1A]
ldr r1, [r5]
movs r0, 0x2
strh r0, [r1, 0x14]
movs r0, 0x8
strh r0, [r1, 0x16]
_080125BA:
ldr r1, [r5]
ldr r0, [r1, 0xC]
cmp r0, 0
beq _080125DC
adds r2, r1, 0
adds r2, 0xC
ldr r0, _080125D8
movs r1, 0
movs r3, 0x20
bl sub_80141B4
b _080125E8
.align 2, 0
_080125D4: .4byte gUnknown_203B18C
_080125D8: .4byte gUnknown_80D4398
_080125DC:
ldr r0, _080125F8
movs r1, 0
movs r2, 0
movs r3, 0x20
bl sub_80141B4
_080125E8:
ldr r0, _080125FC
ldr r1, [r0]
movs r0, 0x3
str r0, [r1]
pop {r4-r6}
pop {r0}
bx r0
.align 2, 0
_080125F8: .4byte gUnknown_80D4398
_080125FC: .4byte gUnknown_203B18C
thumb_func_end sub_8012574
thumb_func_start sub_8012600
sub_8012600:
push {r4,r5,lr}
sub sp, 0x8
movs r5, 0
ldr r0, _08012628
ldr r2, [r0]
ldr r1, [r2, 0xC]
adds r4, r0, 0
cmp r1, 0
beq _08012616
adds r5, r2, 0
adds r5, 0xC
_08012616:
ldr r0, [r2]
cmp r0, 0x7
bls _0801261E
b _08012738
_0801261E:
lsls r0, 2
ldr r1, _0801262C
adds r0, r1
ldr r0, [r0]
mov pc, r0
.align 2, 0
_08012628: .4byte gUnknown_203B18C
_0801262C: .4byte _08012630
.align 2, 0
_08012630:
.4byte _08012650
.4byte _08012654
.4byte _08012738
.4byte _08012678
.4byte _08012680
.4byte _0801271C
.4byte _08012738
.4byte _08012734
_08012650:
ldr r1, [r4]
b _0801272A
_08012654:
ldr r1, [r4]
ldr r0, [r1, 0x4]
adds r0, 0x1
str r0, [r1, 0x4]
cmp r0, 0x8
ble _08012738
ldr r0, _08012674
movs r1, 0
movs r2, 0
movs r3, 0x20
bl sub_80141B4
ldr r1, [r4]
movs r0, 0x3
str r0, [r1]
b _08012738
.align 2, 0
_08012674: .4byte gUnknown_80D43D8
_08012678:
ldr r1, [r4]
movs r0, 0x4
str r0, [r1]
b _08012738
_08012680:
movs r0, 0
str r0, [sp]
bl sub_80140DC
bl sub_8011C1C
adds r1, r0, 0
mov r0, sp
bl sub_801203C
ldr r4, _080126B8
ldr r1, [r4]
str r0, [r1, 0x8]
cmp r0, 0
beq _080126C4
cmp r0, 0x1
beq _080126DC
ldr r0, [r1, 0xC]
cmp r0, 0
beq _080126F4
ldr r0, _080126BC
_080126AA:
ldr r3, _080126C0
movs r1, 0
adds r2, r5, 0
bl sub_80141B4
b _08012700
.align 2, 0
_080126B8: .4byte gUnknown_203B18C
_080126BC: .4byte gUnknown_80D44B0
_080126C0: .4byte 0x00000101
_080126C4:
ldr r0, [r1, 0xC]
cmp r0, 0
beq _080126D4
ldr r0, _080126D0
b _080126AA
.align 2, 0
_080126D0: .4byte gUnknown_80D4438
_080126D4:
ldr r0, _080126D8
b _080126F6
.align 2, 0
_080126D8: .4byte gUnknown_80D4438
_080126DC:
ldr r0, _080126F0
movs r1, 0
movs r2, 0
movs r3, 0
bl sub_80141B4
ldr r1, [r4]
movs r0, 0x6
b _08012706
.align 2, 0
_080126F0: .4byte gUnknown_80D444C
_080126F4:
ldr r0, _08012710
_080126F6:
ldr r3, _08012714
movs r1, 0
adds r2, r5, 0
bl sub_80141B4
_08012700:
ldr r0, _08012718
ldr r1, [r0]
movs r0, 0x5
_08012706:
str r0, [r1]
bl sub_8014114
b _08012738
.align 2, 0
_08012710: .4byte gUnknown_80D44B0
_08012714: .4byte 0x00000101
_08012718: .4byte gUnknown_203B18C
_0801271C:
add r0, sp, 0x4
bl sub_80144A4
cmp r0, 0
bne _08012738
ldr r0, _08012730
ldr r1, [r0]
_0801272A:
movs r0, 0x7
str r0, [r1]
b _08012738
.align 2, 0
_08012730: .4byte gUnknown_203B18C
_08012734:
movs r0, 0
b _0801273A
_08012738:
movs r0, 0x1
_0801273A:
add sp, 0x8
pop {r4,r5}
pop {r1}
bx r1
thumb_func_end sub_8012600
thumb_func_start sub_8012744
sub_8012744:
ldr r0, _0801274C
ldr r0, [r0]
ldr r0, [r0, 0x8]
bx lr
.align 2, 0
_0801274C: .4byte gUnknown_203B18C
thumb_func_end sub_8012744
thumb_func_start sub_8012750
sub_8012750:
push {r4,lr}
ldr r4, _08012778
ldr r0, [r4]
cmp r0, 0
beq _0801276E
ldr r0, [r0, 0xC]
cmp r0, 0
beq _08012764
bl CloseFile
_08012764:
ldr r0, [r4]
bl MemoryFree
movs r0, 0
str r0, [r4]
_0801276E:
bl sub_80993E4
pop {r4}
pop {r0}
bx r0
.align 2, 0
_08012778: .4byte gUnknown_203B18C
thumb_func_end sub_8012750
thumb_func_start sub_801277C
sub_801277C:
push {r4-r6,lr}
adds r5, r0, 0
adds r6, r1, 0
ldr r4, _080127A4
movs r0, 0x10
movs r1, 0x5
bl MemoryAlloc
str r0, [r4]
str r5, [r0, 0x4]
str r6, [r0, 0x8]
movs r1, 0
strb r1, [r0, 0xC]
ldr r1, [r4]
movs r0, 0x1
str r0, [r1]
pop {r4-r6}
pop {r0}
bx r0
.align 2, 0
_080127A4: .4byte gUnknown_203B190
thumb_func_end sub_801277C
thumb_func_start sub_80127A8
sub_80127A8:
push {r4,r5,lr}
sub sp, 0x8
ldr r5, _080127C0
ldr r2, [r5]
ldr r4, [r2]
cmp r4, 0x1
beq _080127D4
cmp r4, 0x1
bgt _080127C4
cmp r4, 0
beq _080127CE
b _0801281E
.align 2, 0
_080127C0: .4byte gUnknown_203B190
_080127C4:
cmp r4, 0x2
beq _08012808
cmp r4, 0x3
beq _0801281A
b _0801281E
_080127CE:
movs r0, 0x1
str r0, [r2]
b _0801281E
_080127D4:
movs r0, 0x10
str r0, [sp]
ldr r1, [r2, 0x4]
ldr r2, [r2, 0x8]
mov r0, sp
bl sub_8011F9C
cmp r0, 0
bne _080127EC
ldr r0, [r5]
strb r4, [r0, 0xC]
b _08012812
_080127EC:
ldr r0, _08012800
ldr r3, _08012804
movs r1, 0
movs r2, 0
bl sub_80141B4
ldr r1, [r5]
movs r0, 0x2
str r0, [r1]
b _0801281E
.align 2, 0
_08012800: .4byte gUnknown_80D44C8
_08012804: .4byte 0x00000301
_08012808:
add r0, sp, 0x4
bl sub_80144A4
cmp r0, 0
bne _0801281E
_08012812:
ldr r1, [r5]
movs r0, 0x3
str r0, [r1]
b _0801281E
_0801281A:
movs r0, 0
b _08012820
_0801281E:
movs r0, 0x1
_08012820:
add sp, 0x8
pop {r4,r5}
pop {r1}
bx r1
thumb_func_end sub_80127A8
thumb_func_start sub_8012828
sub_8012828:
ldr r0, _08012830
ldr r0, [r0]
ldrb r0, [r0, 0xC]
bx lr
.align 2, 0
_08012830: .4byte gUnknown_203B190
thumb_func_end sub_8012828
thumb_func_start sub_8012834
sub_8012834:
push {r4,lr}
ldr r4, _0801284C
ldr r0, [r4]
cmp r0, 0
beq _08012846
bl MemoryFree
movs r0, 0
str r0, [r4]
_08012846:
pop {r4}
pop {r0}
bx r0
.align 2, 0
_0801284C: .4byte gUnknown_203B190
thumb_func_end sub_8012834
thumb_func_start sub_8012850
sub_8012850:
push {r4-r6,lr}
mov r6, r8
push {r6}
adds r6, r0, 0
mov r8, r1
lsls r4, r2, 24
lsrs r4, 24
ldr r5, _0801288C
movs r0, 0x14
movs r1, 0x5
bl MemoryAlloc
str r0, [r5]
str r6, [r0, 0x4]
mov r1, r8
str r1, [r0, 0x8]
movs r1, 0
strb r4, [r0, 0xC]
ldr r0, [r5]
str r1, [r0]
ldrb r0, [r0, 0xC]
cmp r0, 0
beq _08012894
ldr r0, _08012890
movs r2, 0
movs r3, 0x20
bl sub_80141B4
b _080128A0
.align 2, 0
_0801288C: .4byte gUnknown_203B194
_08012890: .4byte gUnknown_80D45AC
_08012894:
ldr r0, _080128AC
movs r1, 0
movs r2, 0
movs r3, 0x20
bl sub_80141B4
_080128A0:
pop {r3}
mov r8, r3
pop {r4-r6}
pop {r0}
bx r0
.align 2, 0
_080128AC: .4byte gUnknown_80D45AC
thumb_func_end sub_8012850
thumb_func_start sub_80128B0
sub_80128B0:
push {r4,lr}
sub sp, 0x8
ldr r1, _080128CC
ldr r0, [r1]
ldr r0, [r0]
adds r4, r1, 0
cmp r0, 0x5
bls _080128C2
b _080129F0
_080128C2:
lsls r0, 2
ldr r1, _080128D0
adds r0, r1
ldr r0, [r0]
mov pc, r0
.align 2, 0
_080128CC: .4byte gUnknown_203B194
_080128D0: .4byte _080128D4
.align 2, 0
_080128D4:
.4byte _080128EC
.4byte _080128F4
.4byte _0801291C
.4byte _080129C8
.4byte _080129F0
.4byte _080129E0
_080128EC:
ldr r1, [r4]
movs r0, 0x1
str r0, [r1]
b _080129F0
_080128F4:
bl sub_80140DC
movs r0, 0x10
str r0, [sp]
ldr r4, _08012918
ldr r0, [r4]
ldr r1, [r0, 0x4]
ldr r2, [r0, 0x8]
mov r0, sp
bl sub_80121D4
ldr r1, [r4]
str r0, [r1, 0x10]
movs r0, 0x2
str r0, [r1]
movs r0, 0x1
b _080129F2
.align 2, 0
_08012918: .4byte gUnknown_203B194
_0801291C:
movs r0, 0
str r0, [sp]
ldr r0, [r4]
ldr r0, [r0, 0x10]
cmp r0, 0
bne _08012934
mov r0, sp
movs r1, 0x2
bl sub_801203C
ldr r1, [r4]
str r0, [r1, 0x10]
_08012934:
ldr r0, [r4]
ldr r0, [r0, 0x10]
cmp r0, 0
beq _08012964
cmp r0, 0x1
beq _080129AC
ldr r0, _08012958
bl sub_80121E0
ldr r0, _0801295C
ldr r3, _08012960
movs r1, 0
movs r2, 0
bl sub_80141B4
ldr r1, [r4]
movs r0, 0x3
b _080129BC
.align 2, 0
_08012958: .4byte 0x000f1209
_0801295C: .4byte gUnknown_80D47A0
_08012960: .4byte 0x00000301
_08012964:
ldr r0, _08012980
bl sub_80121E0
ldr r0, [r4]
ldrb r0, [r0, 0xC]
cmp r0, 0
beq _0801298C
ldr r0, _08012984
ldr r3, _08012988
movs r1, 0
movs r2, 0
bl sub_80141B4
b _08012998
.align 2, 0
_08012980: .4byte 0x000f1207
_08012984: .4byte gUnknown_80D45F4
_08012988: .4byte 0x00000301
_0801298C:
ldr r0, _080129A0
ldr r3, _080129A4
movs r1, 0
movs r2, 0
bl sub_80141B4
_08012998:
ldr r0, _080129A8
ldr r1, [r0]
movs r0, 0x3
b _080129BC
.align 2, 0
_080129A0: .4byte gUnknown_80D4668
_080129A4: .4byte 0x00000301
_080129A8: .4byte gUnknown_203B194
_080129AC:
ldr r0, _080129C4
movs r1, 0
movs r2, 0
movs r3, 0
bl sub_80141B4
ldr r1, [r4]
movs r0, 0x4
_080129BC:
str r0, [r1]
bl sub_8014114
b _080129F0
.align 2, 0
_080129C4: .4byte gUnknown_80D473C
_080129C8:
add r0, sp, 0x4
bl sub_80144A4
cmp r0, 0
bne _080129F0
ldr r0, _080129DC
ldr r1, [r0]
movs r0, 0x5
str r0, [r1]
b _080129F0
.align 2, 0
_080129DC: .4byte gUnknown_203B194
_080129E0:
ldr r0, [r4]
ldr r0, [r0, 0x10]
cmp r0, 0
bne _080129EC
movs r0, 0x2
b _080129F2
_080129EC:
movs r0, 0x3
b _080129F2
_080129F0:
movs r0, 0
_080129F2:
add sp, 0x8
pop {r4}
pop {r1}
bx r1
thumb_func_end sub_80128B0
.align 2,0

View File

@ -1,34 +0,0 @@
.include "asm/macros.inc"
.syntax unified
.text
thumb_func_start CpuSet
CpuSet:
swi 0xB
bx lr
thumb_func_end CpuSet
thumb_func_start SoundBiasReset
SoundBiasReset:
movs r0, 0
swi 0x19
bx lr
thumb_func_end SoundBiasReset
thumb_func_start SoundBiasSet
SoundBiasSet:
movs r0, 0x1
swi 0x19
bx lr
thumb_func_end SoundBiasSet
thumb_func_start VBlankIntrWait
VBlankIntrWait:
movs r2, 0
swi 0x5
bx lr
thumb_func_end VBlankIntrWait
.align 2, 0 @ Don't pad with nop.

View File

@ -4046,7 +4046,7 @@ sub_800829C:
lsls r1, 5
muls r1, r2
adds r2, r3, 0
bl sub_800AAB4
bl DecompressAT
movs r2, 0
movs r1, 0x8
ldrsh r0, [r4, r1]

36781
asm/wonder_mail.s Normal file

File diff suppressed because it is too large Load Diff

0
asmdiff.sh Normal file → Executable file
View File

View File

@ -209,9 +209,18 @@
'þ' = FE
'ÿ' = FF
'し' = 82 B5
'な' = 82 C8
POKE = 83 BF 83 C4
A_BUTTON = 87 50
B_BUTTON = 87 51
L_BUTTON = 87 74
R_BUTTON = 84 86
SELECT_BUTTON = 87 72 87 73
START_BUTTON = 87 53 87 71
DPAD = 87 52
'\n' = 0A
'\0' = 00
'\n' = 0A

View File

@ -1,44 +1,375 @@
.section .rodata
.asciz "pksdir0"
.string "pksdir0\0"
.global gUnknown_80B690C
gUnknown_80B690C: @ 80B690C
.incbin "baserom.gba", 0xB690C, 0x88
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x19, 0x00, 0x00, 0x00
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x34, 0x00, 0x00, 0x00
.byte 0x02, 0x00, 0x00, 0x00
.byte 0x85, 0x00, 0x00, 0x00
.byte 0x03, 0x00, 0x00, 0x00
.byte 0x45, 0x01, 0x00, 0x00
.byte 0x04, 0x00, 0x00, 0x00
.byte 0x07, 0x00, 0x00, 0x00
.byte 0x05, 0x00, 0x00, 0x00
.byte 0x9e, 0x00, 0x00, 0x00
.byte 0x06, 0x00, 0x00, 0x00
.byte 0x1b, 0x01, 0x00, 0x00
.byte 0x07, 0x00, 0x00, 0x00
.byte 0x36, 0x00, 0x00, 0x00
.byte 0x08, 0x00, 0x00, 0x00
.byte 0x04, 0x00, 0x00, 0x00
.byte 0x09, 0x00, 0x00, 0x00
.byte 0x18, 0x01, 0x00, 0x00
.byte 0x0a, 0x00, 0x00, 0x00
.byte 0x9b, 0x00, 0x00, 0x00
.byte 0x0b, 0x00, 0x00, 0x00
.byte 0x68, 0x00, 0x00, 0x00
.byte 0x0c, 0x00, 0x00, 0x00
.byte 0x42, 0x00, 0x00, 0x00
.byte 0x0d, 0x00, 0x00, 0x00
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x0e, 0x00, 0x00, 0x00
.byte 0x98, 0x00, 0x00, 0x00
.byte 0x0f, 0x00, 0x00, 0x00
.byte 0x15, 0x01, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.global gUnknown_80B6994
gUnknown_80B6994: @ 80B6994
.incbin "baserom.gba", 0xB6994, 0x28
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x07, 0x00, 0x00, 0x00
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x9e, 0x00, 0x00, 0x00
.byte 0x03, 0x00, 0x00, 0x00
.byte 0x18, 0x01, 0x00, 0x00
.byte 0x03, 0x00, 0x00, 0x00
.byte 0x98, 0x00, 0x00, 0x00
.byte 0x02, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.global gUnknown_80B69BC
gUnknown_80B69BC: @ 80B69BC
.incbin "baserom.gba", 0xB69BC, 0x3C
.string "PKDi ver 1.0 [Apr 28 2006] 16:37:54\0"
.align 2,0
.string "titlen0\0"
.align 2,0
.string "titlen1\0"
.align 2,0
.string "titlen2\0"
.align 2,0
.global gUnknown_80B69F8
gUnknown_80B69F8: @ 80B69F8
.incbin "baserom.gba", 0xB69F8, 0x30
.byte 0xE0, 0x69, 0x0B, 0x08
.byte 0xE8, 0x69, 0x0B, 0x08
.byte 0xF0, 0x69, 0x0B, 0x08
.string "titlen0p\0"
.align 2,0
.string "titlen1p\0"
.align 2,0
.string "titlen2p\0"
.align 2,0
.global gUnknown_80B6A28
gUnknown_80B6A28: @ 80B6A28
.incbin "baserom.gba", 0xB6A28, 0xC
.byte 0x04, 0x6A, 0x0B, 0x08 @ Pointer to titlen0p
.byte 0x10, 0x6A, 0x0B, 0x08 @ Pointer to titlen1p
.byte 0x1C, 0x6A, 0x0B, 0x08 @ Pointer to titlen2p
.include "data/text/save.inc"
.global gUnknown_80B6D90
gUnknown_80B6D90: @ 80B6D90
.incbin "baserom.gba", 0xB6D90, 0x3B4
.byte 0x44, 0x71, 0x0b, 0x08
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x3c, 0x71, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0x34, 0x71, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0x2c, 0x71, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0x24, 0x71, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0x1c, 0x71, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0x14, 0x71, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0x0c, 0x71, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0x04, 0x71, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0xfc, 0x70, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0xf4, 0x70, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0xec, 0x70, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0xe4, 0x70, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0xdc, 0x70, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0xd4, 0x70, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0xcc, 0x70, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0xc4, 0x70, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0xbc, 0x70, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0xb4, 0x70, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0xac, 0x70, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0xa4, 0x70, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0x9c, 0x70, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0x94, 0x70, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0x8c, 0x70, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0x84, 0x70, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0x7c, 0x70, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0x74, 0x70, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0x6c, 0x70, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0x64, 0x70, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0x5c, 0x70, 0x0b, 0x08
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x54, 0x70, 0x0b, 0x08
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x4c, 0x70, 0x0b, 0x08
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x44, 0x70, 0x0b, 0x08
.byte 0x02, 0x00, 0x00, 0x00
.byte 0x3c, 0x70, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0x34, 0x70, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0x2c, 0x70, 0x0b, 0x08
.byte 0x03, 0x00, 0x00, 0x00
.byte 0x24, 0x70, 0x0b, 0x08
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x1c, 0x70, 0x0b, 0x08
.byte 0x03, 0x00, 0x00, 0x00
.byte 0x14, 0x70, 0x0b, 0x08
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x0c, 0x70, 0x0b, 0x08
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x04, 0x70, 0x0b, 0x08
.byte 0x01, 0x00, 0x00, 0x00
.byte 0xfc, 0x6f, 0x0b, 0x08
.byte 0x01, 0x00, 0x00, 0x00
.byte 0xf4, 0x6f, 0x0b, 0x08
.byte 0x01, 0x00, 0x00, 0x00
.byte 0xec, 0x6f, 0x0b, 0x08
.byte 0x02, 0x00, 0x00, 0x00
.byte 0xe4, 0x6f, 0x0b, 0x08
.byte 0x01, 0x00, 0x00, 0x00
.byte 0xdc, 0x6f, 0x0b, 0x08
.byte 0x03, 0x00, 0x00, 0x00
.byte 0xd4, 0x6f, 0x0b, 0x08
.byte 0x01, 0x00, 0x00, 0x00
.byte 0xcc, 0x6f, 0x0b, 0x08
.byte 0x01, 0x00, 0x00, 0x00
.byte 0xc4, 0x6f, 0x0b, 0x08
.byte 0x03, 0x00, 0x00, 0x00
.byte 0xbc, 0x6f, 0x0b, 0x08
.byte 0x01, 0x00, 0x00, 0x00
.byte 0xb4, 0x6f, 0x0b, 0x08
.byte 0x03, 0x00, 0x00, 0x00
.byte 0xac, 0x6f, 0x0b, 0x08
.byte 0x01, 0x00, 0x00, 0x00
.byte 0xa4, 0x6f, 0x0b, 0x08
.byte 0x03, 0x00, 0x00, 0x00
.byte 0x9c, 0x6f, 0x0b, 0x08
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x94, 0x6f, 0x0b, 0x08
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x8c, 0x6f, 0x0b, 0x08
.byte 0x02, 0x00, 0x00, 0x00
.byte 0x84, 0x6f, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0x78, 0x6f, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.byte 0x68, 0x6f, 0x0b, 0x08
.byte 0xff, 0xff, 0xff, 0xff
.string "DEBUG GROUND\0"
.align 2,0
.string "NEXT DAY\0"
.align 2,0
.string "R00E01A\0"
.align 2,0
.string "S09E01C\0"
.align 2,0
.string "S09E01B\0"
.align 2,0
.string "S09E01A\0"
.align 2,0
.string "S08E01B\0"
.align 2,0
.string "S08E01A\0"
.align 2,0
.string "S07E01B\0"
.align 2,0
.string "S07E01A\0"
.align 2,0
.string "S06E01C\0"
.align 2,0
.string "S06E01B\0"
.align 2,0
.string "S06E01A\0"
.align 2,0
.string "S05E01B\0"
.align 2,0
.string "S05E01A\0"
.align 2,0
.string "S04E01F\0"
.align 2,0
.string "S04E01E\0"
.align 2,0
.string "S04E01D\0"
.align 2,0
.string "S04E01C\0"
.align 2,0
.string "S04E01B\0"
.align 2,0
.string "S04E01A\0"
.align 2,0
.string "S03E01B\0"
.align 2,0
.string "S03E01A\0"
.align 2,0
.string "S02E02B\0"
.align 2,0
.string "S02E02A\0"
.align 2,0
.string "S02E01A\0"
.align 2,0
.string "S01E02B\0"
.align 2,0
.string "S01E02A\0"
.align 2,0
.string "S01E01B\0"
.align 2,0
.string "S01E01A\0"
.align 2,0
.string "S00E01A\0"
.align 2,0
.string "M02END\0"
.align 2,0
.string "M02E02H\0"
.align 2,0
.string "M02E02G\0"
.align 2,0
.string "M02E02F\0"
.align 2,0
.string "M02E02E\0"
.align 2,0
.string "M02E02D\0"
.align 2,0
.string "M02E02C\0"
.align 2,0
.string "M02E02B\0"
.align 2,0
.string "M02E02A\0"
.align 2,0
.string "M02E01A\0"
.align 2,0
.string "M01END\0"
.align 2,0
.string "M01E10A\0"
.align 2,0
.string "M01E09A\0"
.align 2,0
.string "M01E08B\0"
.align 2,0
.string "M01E08A\0"
.align 2,0
.string "M01E07B\0"
.align 2,0
.string "M01E07A\0"
.align 2,0
.string "M01E06A\0"
.align 2,0
.string "M01E05B\0"
.align 2,0
.string "M01E05A\0"
.align 2,0
.string "M01E04B\0"
.align 2,0
.string "M01E04A\0"
.align 2,0
.string "M01E03A\0"
.align 2,0
.string "M01E02B\0"
.align 2,0
.string "M01E02A\0"
.align 2,0
.string "M01E01A\0"
.align 2,0
.string "M00E01A\0"
.align 2,0
.global gUnknown_80B7144
gUnknown_80B7144: @ 80B7144
.incbin "baserom.gba", 0xB7144, 0x8
.string "NONE\0"
.align 2,0
.global gUnknown_80B714C
gUnknown_80B714C: @ 80B714C
.incbin "baserom.gba", 0xB714C, 0x54
.byte 0x9C, 0x71, 0x0B, 0x08
.byte 0x9C, 0x71, 0x0B, 0x08
.byte 0x94, 0x71, 0x0B, 0x08
.byte 0x90, 0x71, 0x0B, 0x08
.byte 0x8C, 0x71, 0x0B, 0x08
.byte 0x88, 0x71, 0x0B, 0x08
.byte 0x80, 0x71, 0x0B, 0x08
.byte 0x7C, 0x71, 0x0B, 0x08
.byte 0x78, 0x71, 0x0B, 0x08
.byte 0x74, 0x71, 0x0B, 0x08
.string "END\0"
.string "9\0"
.align 2,0
.string "3\0"
.align 2,0
.string "2-2 8\0"
.align 2,0
.string "6\0"
.align 2,0
.string "5\0"
.align 2,0
.string "4\0"
.align 2,0
.string "1-2 7\0"
.align 2,0
.string "2-1\0"
.align 2,0
.global gUnknown_80B71A0
gUnknown_80B71A0: @ 80B71A0
.incbin "baserom.gba", 0xB71A0, 0x44
.byte 0xD8, 0x71, 0x0B, 0x08 @ Pointer to CISTART
.byte 0xC8, 0x71, 0x0B, 0x08 @ Pointer to CECONTINUE
.byte 0xBC, 0x71, 0x0B, 0x08 @ Pointer to CNLAST
.byte 0xB0, 0x71, 0x0B, 0x08 @ Pointer to CWEND
.string "#CWEND#R\0"
.align 2,0
.string "#CNLAST#R\0"
.align 2,0
.string "#CECONTINUE#R\0"
.align 2,0
.string "#CISTART#R\0"
.align 2,0
.global gUnknown_80B71E4
gUnknown_80B71E4: @ 80B71E4
@ -50,7 +381,9 @@ gUnknown_80B72CC: @ 80B72CC
.global gUnknown_80B7318
gUnknown_80B7318: @ 80B7318
.incbin "baserom.gba", 0xB7318, 0xC
.byte 0xF4, 0x72, 0x0B, 0x08
.byte 0x51, 0x05, 0x00, 0x00
.byte 0x0C, 0x73, 0x0B, 0x08
.global gUnknown_80B7324
gUnknown_80B7324: @ 80B7324
@ -58,19 +391,24 @@ gUnknown_80B7324: @ 80B7324
.global gUnknown_80B7350
gUnknown_80B7350: @ 80B7350
.incbin "baserom.gba", 0xB7350, 0xC
.byte 0xF4, 0x72, 0x0B, 0x08 @ Pointer to ../main/event_flag.c
.byte 0x7C, 0x05, 0x00, 0x00
.byte 0x44, 0x73, 0x0B, 0x08 @ Pointer to _FlagJudge
.global gUnknown_80B735C
gUnknown_80B735C: @ 80B735C
.incbin "baserom.gba", 0xB735C, 0x1C
.string "event flag rule error %d\0"
.align 2,0
.global gUnknown_80B7378
gUnknown_80B7378: @ 80B7378
.incbin "baserom.gba", 0xB7378, 0x10
.string "error number\0"
.align 2,0
.global gUnknown_80B7388
gUnknown_80B7388: @ 80B7388
.incbin "baserom.gba", 0xB7388, 0xC
.string "1-1\0"
.string "pksdir0\0"
.global gUnknown_80B7394
gUnknown_80B7394: @ 80B7394
@ -82,7 +420,9 @@ gUnknown_80B7E3C: @ 80B7E3C
.global gUnknown_80B7EB8
gUnknown_80B7EB8: @ 80B7EB8
.incbin "baserom.gba", 0xB7EB8, 0xC
.byte 0x8C, 0x7E, 0x0B, 0x08
.byte 0x45, 0x02, 0x00, 0x00
.byte 0xA8, 0x7E, 0x0B, 0x08 @ Pointer to _LocateSetFront
.global gUnknown_80B7EC4
gUnknown_80B7EC4: @ 80B7EC4
@ -90,11 +430,17 @@ gUnknown_80B7EC4: @ 80B7EC4
.global gUnknown_80B7EFC
gUnknown_80B7EFC: @ 80B7EFC
.incbin "baserom.gba", 0xB7EFC, 0x18
.byte 0x8C, 0x7E, 0x0B, 0x08
.byte 0xA1, 0x02, 0x00, 0x00
.byte 0xEC, 0x7E, 0x0B, 0x08
.string "_LocateSet\0"
.align 2,0
.global gUnknown_80B7F14
gUnknown_80B7F14: @ 80B7F14
.incbin "baserom.gba", 0xB7F14, 0xC
.byte 0x8C, 0x7E, 0x0B, 0x08
.byte 0x2C, 0x03, 0x00, 0x00
.byte 0x08, 0x7F, 0x0B, 0x08
.global gUnknown_80B7F20
gUnknown_80B7F20: @ 80B7F20
@ -102,15 +448,34 @@ gUnknown_80B7F20: @ 80B7F20
.global gUnknown_80B7F88
gUnknown_80B7F88: @ 80B7F88
.incbin "baserom.gba", 0xB7F88, 0xC
.byte 0x8C, 0x7E, 0x0B, 0x08 @ Pointer to ../system/memory_locate.c
.byte 0x55, 0x04, 0x00, 0x00
.byte 0x6C, 0x7F, 0x0B, 0x08 @ Pointer to MemoryLocate_LocalCreate
.global gUnknown_80B7F94
gUnknown_80B7F94: @ 80B7F94
.incbin "baserom.gba", 0xB7F94, 0x74
.string "Memroy LocalCreate buffer %08x size can't locate\0" @ Spelling error is intentional
.align 2,0
.string "pksdir0\0"
.string "pksdir0\0"
.string "pksdir0\0"
.string "pksdir0\0"
.string "pksdir0\0"
.string "pksdir0\0"
.string "pksdir0\0"
.string "pksdir0\0"
.global gUnknown_80B8008
gUnknown_80B8008: @ 80B8008
.incbin "baserom.gba", 0xB8008, 0x22
.byte 0x10, 0x00, 0x0c, 0x00
.byte 0x09, 0x00, 0x07, 0x00
.byte 0x06, 0x00, 0x05, 0x00
.byte 0x04, 0x00, 0x03, 0x00
.byte 0x02, 0x00, 0x02, 0x00
.byte 0x01, 0x00, 0x01, 0x00
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00
.global gUnknown_80B802A
gUnknown_80B802A: @ 80B802A
@ -142,7 +507,10 @@ gUnknown_80B85DC: @ 80B85DC
.global gUnknown_80B86A4
gUnknown_80B86A4: @ 80B86A4
.incbin "baserom.gba", 0xB86A4, 0x10
.byte 0x5C, 0x86, 0x0B, 0x08
.byte 0xA1, 0x81, 0x07, 0x00
.byte 0x0A, 0x00, 0x00, 0x00
.byte 0x08, 0x00, 0x00, 0x00
.global gUnknown_80B86B4
gUnknown_80B86B4: @ 80B86B4
@ -150,58 +518,118 @@ gUnknown_80B86B4: @ 80B86B4
.global gUnknown_80B87B4
gUnknown_80B87B4: @ 80B87B4
.incbin "baserom.gba", 0xB87B4, 0x8
.string "kanji_a\0"
.align 2,0
.global gUnknown_80B87BC
gUnknown_80B87BC: @ 80B87BC
.incbin "baserom.gba", 0xB87BC, 0x8
.string "kanji_b\0"
.align 2,0
.global gUnknown_80B87C4
gUnknown_80B87C4: @ 80B87C4
.incbin "baserom.gba", 0xB87C4, 0x20
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.global gUnknown_80B87E4
gUnknown_80B87E4: @ 80B87E4
.incbin "baserom.gba", 0xB87E4, 0x20
.byte 0x88, 0x88, 0x88, 0x88
.byte 0x88, 0x88, 0x88, 0x88
.byte 0x88, 0x88, 0x88, 0x88
.byte 0x88, 0x88, 0x88, 0x88
.byte 0x88, 0x88, 0x88, 0x88
.byte 0x88, 0x88, 0x88, 0x88
.byte 0x88, 0x88, 0x88, 0x88
.byte 0x88, 0x88, 0x88, 0x88
.global gUnknown_80B8804
gUnknown_80B8804: @ 80B8804
.incbin "baserom.gba", 0xB8804, 0x10
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x02, 0x00, 0x00, 0x00
.byte 0x03, 0x00, 0x00, 0x00
.global gUnknown_80B8814
gUnknown_80B8814: @ 80B8814
.incbin "baserom.gba", 0xB8814, 0x10
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x02, 0x00, 0x00, 0x00
.byte 0x03, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.global gUnknown_80B8824
gUnknown_80B8824: @ 80B8824
.incbin "baserom.gba", 0xB8824, 0x24
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x0f, 0x00, 0x00, 0x00
.byte 0xff, 0x00, 0x00, 0x00
.byte 0xff, 0x0f, 0x00, 0x00
.byte 0xff, 0xff, 0x00, 0x00
.byte 0xff, 0xff, 0x0f, 0x00
.byte 0xff, 0xff, 0xff, 0x00
.byte 0xff, 0xff, 0xff, 0x0f
.byte 0xff, 0xff, 0xff, 0xff
.global gUnknown_80B8848
gUnknown_80B8848: @ 80B8848
.incbin "baserom.gba", 0xB8848, 0x20
.byte 0x0F, 0x00, 0x00, 0x00
.byte 0xF0, 0x00, 0x00, 0x00
.byte 0x00, 0x0F, 0x00, 0x00
.byte 0x00, 0xF0, 0x00, 0x00
.byte 0x00, 0x00, 0x0F, 0x00
.byte 0x00, 0x00, 0xF0, 0x00
.byte 0x00, 0x00, 0x00, 0x0F
.byte 0x00, 0x00, 0x00, 0xF0
.global gUnknown_80B8868
gUnknown_80B8868: @ 80B8868
.incbin "baserom.gba", 0xB8868, 0x48
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x0f, 0x00, 0x00, 0x00
.byte 0xff, 0x00, 0x00, 0x00
.byte 0xff, 0x0f, 0x00, 0x00
.byte 0xff, 0xff, 0x00, 0x00
.byte 0xff, 0xff, 0x0f, 0x00
.byte 0xff, 0xff, 0xff, 0x00
.byte 0xff, 0xff, 0xff, 0x0f
.byte 0xff, 0xff, 0xff, 0xff
.byte 0xf0, 0xff, 0xff, 0xff
.byte 0x00, 0xff, 0xff, 0xff
.byte 0x00, 0xf0, 0xff, 0xff
.byte 0x00, 0x00, 0xff, 0xff
.byte 0x00, 0x00, 0xf0, 0xff
.byte 0x00, 0x00, 0x00, 0xff
.byte 0x00, 0x00, 0x00, 0xf0
.string "pksdir0\0"
.align 2,0
.global gUnknown_80B88B0
gUnknown_80B88B0: @ 80B88B0
.incbin "baserom.gba", 0xB88B0, 0x8
.string "font\0"
.align 2,0
.global gUnknown_80B88B8
gUnknown_80B88B8: @ 80B88B8
.incbin "baserom.gba", 0xB88B8, 0x8
.string "fontsp\0"
.align 2,0
.global gUnknown_80B88C0
gUnknown_80B88C0: @ 80B88C0
.incbin "baserom.gba", 0xB88C0, 0xC
.string "fontsppa\0"
.align 2,0
.global gUnknown_80B88CC
gUnknown_80B88CC: @ 80B88CC
.incbin "baserom.gba", 0xB88CC, 0x18
.string "fontpal\0"
.align 2,0
.string "pksdir0\0"
.string "pksdir0\0"
.global gUnknown_80B88E4
gUnknown_80B88E4: @ 80B88E4
gUnknown_80B88E4: @ 80B88E4 @ (uppercase font table??)
.incbin "baserom.gba", 0xB88E4, 0x200
.global gUnknown_80B8AE4
@ -214,4 +642,305 @@ gUnknown_80B92E4: @ 80B92E4
.global gUnknown_80B96E4
gUnknown_80B96E4: @ 80B96E4
.incbin "baserom.gba", 0xB96E4, 0x4B0
@ replacing .incbin "baserom.gba", 0x000b96e4, 0x4b0
@ It's an array..
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x72, 0xb1, 0x00, 0x00
.byte 0x3e, 0x19, 0x01, 0x00
.byte 0xe4, 0x62, 0x01, 0x00
.byte 0x04, 0x9c, 0x01, 0x00
.byte 0xb0, 0xca, 0x01, 0x00
.byte 0x27, 0xf2, 0x01, 0x00
.byte 0x56, 0x14, 0x02, 0x00
.byte 0x7d, 0x32, 0x02, 0x00
.byte 0x76, 0x4d, 0x02, 0x00
.byte 0xdc, 0x65, 0x02, 0x00
.byte 0x22, 0x7c, 0x02, 0x00
.byte 0xa0, 0x90, 0x02, 0x00
.byte 0x99, 0xa3, 0x02, 0x00
.byte 0x42, 0xb5, 0x02, 0x00
.byte 0xc8, 0xc5, 0x02, 0x00
.byte 0x4d, 0xd5, 0x02, 0x00
.byte 0xef, 0xe3, 0x02, 0x00
.byte 0xc6, 0xf1, 0x02, 0x00
.byte 0xe8, 0xfe, 0x02, 0x00
.byte 0x65, 0x0b, 0x03, 0x00
.byte 0x4e, 0x17, 0x03, 0x00
.byte 0xaf, 0x22, 0x03, 0x00
.byte 0x94, 0x2d, 0x03, 0x00
.byte 0x08, 0x38, 0x03, 0x00
.byte 0x12, 0x42, 0x03, 0x00
.byte 0xbb, 0x4b, 0x03, 0x00
.byte 0x0b, 0x55, 0x03, 0x00
.byte 0x07, 0x5e, 0x03, 0x00
.byte 0xb4, 0x66, 0x03, 0x00
.byte 0x19, 0x6f, 0x03, 0x00
.byte 0x3a, 0x77, 0x03, 0x00
.byte 0x1b, 0x7f, 0x03, 0x00
.byte 0xbf, 0x86, 0x03, 0x00
.byte 0x2b, 0x8e, 0x03, 0x00
.byte 0x61, 0x95, 0x03, 0x00
.byte 0x65, 0x9c, 0x03, 0x00
.byte 0x38, 0xa3, 0x03, 0x00
.byte 0xdf, 0xa9, 0x03, 0x00
.byte 0x5a, 0xb0, 0x03, 0x00
.byte 0xac, 0xb6, 0x03, 0x00
.byte 0xd7, 0xbc, 0x03, 0x00
.byte 0xde, 0xc2, 0x03, 0x00
.byte 0xc0, 0xc8, 0x03, 0x00
.byte 0x81, 0xce, 0x03, 0x00
.byte 0x21, 0xd4, 0x03, 0x00
.byte 0xa3, 0xd9, 0x03, 0x00
.byte 0x07, 0xdf, 0x03, 0x00
.byte 0x4e, 0xe4, 0x03, 0x00
.byte 0x7a, 0xe9, 0x03, 0x00
.byte 0x8c, 0xee, 0x03, 0x00
.byte 0x84, 0xf3, 0x03, 0x00
.byte 0x65, 0xf8, 0x03, 0x00
.byte 0x2e, 0xfd, 0x03, 0x00
.byte 0xe0, 0x01, 0x04, 0x00
.byte 0x7d, 0x06, 0x04, 0x00
.byte 0x05, 0x0b, 0x04, 0x00
.byte 0x79, 0x0f, 0x04, 0x00
.byte 0xd9, 0x13, 0x04, 0x00
.byte 0x26, 0x18, 0x04, 0x00
.byte 0x62, 0x1c, 0x04, 0x00
.byte 0x8b, 0x20, 0x04, 0x00
.byte 0xa4, 0x24, 0x04, 0x00
.byte 0xac, 0x28, 0x04, 0x00
.byte 0xa4, 0x2c, 0x04, 0x00
.byte 0x8d, 0x30, 0x04, 0x00
.byte 0x66, 0x34, 0x04, 0x00
.byte 0x31, 0x38, 0x04, 0x00
.byte 0xee, 0x3b, 0x04, 0x00
.byte 0x9d, 0x3f, 0x04, 0x00
.byte 0x3e, 0x43, 0x04, 0x00
.byte 0xd3, 0x46, 0x04, 0x00
.byte 0x5b, 0x4a, 0x04, 0x00
.byte 0xd7, 0x4d, 0x04, 0x00
.byte 0x46, 0x51, 0x04, 0x00
.byte 0xaa, 0x54, 0x04, 0x00
.byte 0x03, 0x58, 0x04, 0x00
.byte 0x51, 0x5b, 0x04, 0x00
.byte 0x94, 0x5e, 0x04, 0x00
.byte 0xcc, 0x61, 0x04, 0x00
.byte 0xfa, 0x64, 0x04, 0x00
.byte 0x1e, 0x68, 0x04, 0x00
.byte 0x39, 0x6b, 0x04, 0x00
.byte 0x4a, 0x6e, 0x04, 0x00
.byte 0x51, 0x71, 0x04, 0x00
.byte 0x50, 0x74, 0x04, 0x00
.byte 0x45, 0x77, 0x04, 0x00
.byte 0x32, 0x7a, 0x04, 0x00
.byte 0x17, 0x7d, 0x04, 0x00
.byte 0xf3, 0x7f, 0x04, 0x00
.byte 0xc7, 0x82, 0x04, 0x00
.byte 0x93, 0x85, 0x04, 0x00
.byte 0x58, 0x88, 0x04, 0x00
.byte 0x15, 0x8b, 0x04, 0x00
.byte 0xca, 0x8d, 0x04, 0x00
.byte 0x79, 0x90, 0x04, 0x00
.byte 0x20, 0x93, 0x04, 0x00
.byte 0xc0, 0x95, 0x04, 0x00
.byte 0x59, 0x98, 0x04, 0x00
.byte 0xec, 0x9a, 0x04, 0x00
.byte 0x78, 0x9d, 0x04, 0x00
.byte 0xfe, 0x9f, 0x04, 0x00
.byte 0x7d, 0xa2, 0x04, 0x00
.byte 0xf6, 0xa4, 0x04, 0x00
.byte 0x69, 0xa7, 0x04, 0x00
.byte 0xd7, 0xa9, 0x04, 0x00
.byte 0x3e, 0xac, 0x04, 0x00
.byte 0xa0, 0xae, 0x04, 0x00
.byte 0xfc, 0xb0, 0x04, 0x00
.byte 0x52, 0xb3, 0x04, 0x00
.byte 0xa3, 0xb5, 0x04, 0x00
.byte 0xef, 0xb7, 0x04, 0x00
.byte 0x36, 0xba, 0x04, 0x00
.byte 0x77, 0xbc, 0x04, 0x00
.byte 0xb3, 0xbe, 0x04, 0x00
.byte 0xeb, 0xc0, 0x04, 0x00
.byte 0x1d, 0xc3, 0x04, 0x00
.byte 0x4b, 0xc5, 0x04, 0x00
.byte 0x74, 0xc7, 0x04, 0x00
.byte 0x99, 0xc9, 0x04, 0x00
.byte 0xb8, 0xcb, 0x04, 0x00
.byte 0xd4, 0xcd, 0x04, 0x00
.byte 0xeb, 0xcf, 0x04, 0x00
.byte 0xfd, 0xd1, 0x04, 0x00
.byte 0x0c, 0xd4, 0x04, 0x00
.byte 0x16, 0xd6, 0x04, 0x00
.byte 0x1c, 0xd8, 0x04, 0x00
.byte 0x1e, 0xda, 0x04, 0x00
.byte 0x1c, 0xdc, 0x04, 0x00
.byte 0x16, 0xde, 0x04, 0x00
.byte 0x0c, 0xe0, 0x04, 0x00
.byte 0xff, 0xe1, 0x04, 0x00
.byte 0xed, 0xe3, 0x04, 0x00
.byte 0xd8, 0xe5, 0x04, 0x00
.byte 0xc0, 0xe7, 0x04, 0x00
.byte 0xa3, 0xe9, 0x04, 0x00
.byte 0x83, 0xeb, 0x04, 0x00
.byte 0x60, 0xed, 0x04, 0x00
.byte 0x39, 0xef, 0x04, 0x00
.byte 0x0f, 0xf1, 0x04, 0x00
.byte 0xe1, 0xf2, 0x04, 0x00
.byte 0xb1, 0xf4, 0x04, 0x00
.byte 0x7c, 0xf6, 0x04, 0x00
.byte 0x45, 0xf8, 0x04, 0x00
.byte 0x0b, 0xfa, 0x04, 0x00
.byte 0xcd, 0xfb, 0x04, 0x00
.byte 0x8c, 0xfd, 0x04, 0x00
.byte 0x49, 0xff, 0x04, 0x00
.byte 0x02, 0x01, 0x05, 0x00
.byte 0xb8, 0x02, 0x05, 0x00
.byte 0x6c, 0x04, 0x05, 0x00
.byte 0x1d, 0x06, 0x05, 0x00
.byte 0xca, 0x07, 0x05, 0x00
.byte 0x75, 0x09, 0x05, 0x00
.byte 0x1d, 0x0b, 0x05, 0x00
.byte 0xc3, 0x0c, 0x05, 0x00
.byte 0x66, 0x0e, 0x05, 0x00
.byte 0x06, 0x10, 0x05, 0x00
.byte 0xa3, 0x11, 0x05, 0x00
.byte 0x3e, 0x13, 0x05, 0x00
.byte 0xd6, 0x14, 0x05, 0x00
.byte 0x6c, 0x16, 0x05, 0x00
.byte 0x00, 0x18, 0x05, 0x00
.byte 0x90, 0x19, 0x05, 0x00
.byte 0x1f, 0x1b, 0x05, 0x00
.byte 0xab, 0x1c, 0x05, 0x00
.byte 0x34, 0x1e, 0x05, 0x00
.byte 0xbc, 0x1f, 0x05, 0x00
.byte 0x41, 0x21, 0x05, 0x00
.byte 0xc3, 0x22, 0x05, 0x00
.byte 0x44, 0x24, 0x05, 0x00
.byte 0xc2, 0x25, 0x05, 0x00
.byte 0x3e, 0x27, 0x05, 0x00
.byte 0xb7, 0x28, 0x05, 0x00
.byte 0x2f, 0x2a, 0x05, 0x00
.byte 0xa4, 0x2b, 0x05, 0x00
.byte 0x18, 0x2d, 0x05, 0x00
.byte 0x89, 0x2e, 0x05, 0x00
.byte 0xf8, 0x2f, 0x05, 0x00
.byte 0x65, 0x31, 0x05, 0x00
.byte 0xd0, 0x32, 0x05, 0x00
.byte 0x39, 0x34, 0x05, 0x00
.byte 0xa0, 0x35, 0x05, 0x00
.byte 0x06, 0x37, 0x05, 0x00
.byte 0x69, 0x38, 0x05, 0x00
.byte 0xca, 0x39, 0x05, 0x00
.byte 0x29, 0x3b, 0x05, 0x00
.byte 0x87, 0x3c, 0x05, 0x00
.byte 0xe3, 0x3d, 0x05, 0x00
.byte 0x3c, 0x3f, 0x05, 0x00
.byte 0x94, 0x40, 0x05, 0x00
.byte 0xeb, 0x41, 0x05, 0x00
.byte 0x3f, 0x43, 0x05, 0x00
.byte 0x92, 0x44, 0x05, 0x00
.byte 0xe3, 0x45, 0x05, 0x00
.byte 0x32, 0x47, 0x05, 0x00
.byte 0x80, 0x48, 0x05, 0x00
.byte 0xcb, 0x49, 0x05, 0x00
.byte 0x16, 0x4b, 0x05, 0x00
.byte 0x5e, 0x4c, 0x05, 0x00
.byte 0xa5, 0x4d, 0x05, 0x00
.byte 0xea, 0x4e, 0x05, 0x00
.byte 0x2e, 0x50, 0x05, 0x00
.byte 0x70, 0x51, 0x05, 0x00
.byte 0xb0, 0x52, 0x05, 0x00
.byte 0xef, 0x53, 0x05, 0x00
.byte 0x2d, 0x55, 0x05, 0x00
.byte 0x68, 0x56, 0x05, 0x00
.byte 0xa3, 0x57, 0x05, 0x00
.byte 0xdc, 0x58, 0x05, 0x00
.byte 0x13, 0x5a, 0x05, 0x00
.byte 0x49, 0x5b, 0x05, 0x00
.byte 0x7d, 0x5c, 0x05, 0x00
.byte 0xb0, 0x5d, 0x05, 0x00
.byte 0xe2, 0x5e, 0x05, 0x00
.byte 0x12, 0x60, 0x05, 0x00
.byte 0x40, 0x61, 0x05, 0x00
.byte 0x6e, 0x62, 0x05, 0x00
.byte 0x9a, 0x63, 0x05, 0x00
.byte 0xc4, 0x64, 0x05, 0x00
.byte 0xed, 0x65, 0x05, 0x00
.byte 0x15, 0x67, 0x05, 0x00
.byte 0x3c, 0x68, 0x05, 0x00
.byte 0x61, 0x69, 0x05, 0x00
.byte 0x85, 0x6a, 0x05, 0x00
.byte 0xa8, 0x6b, 0x05, 0x00
.byte 0xc9, 0x6c, 0x05, 0x00
.byte 0xe9, 0x6d, 0x05, 0x00
.byte 0x08, 0x6f, 0x05, 0x00
.byte 0x25, 0x70, 0x05, 0x00
.byte 0x42, 0x71, 0x05, 0x00
.byte 0x5d, 0x72, 0x05, 0x00
.byte 0x77, 0x73, 0x05, 0x00
.byte 0x8f, 0x74, 0x05, 0x00
.byte 0xa7, 0x75, 0x05, 0x00
.byte 0xbd, 0x76, 0x05, 0x00
.byte 0xd2, 0x77, 0x05, 0x00
.byte 0xe6, 0x78, 0x05, 0x00
.byte 0xf9, 0x79, 0x05, 0x00
.byte 0x0b, 0x7b, 0x05, 0x00
.byte 0x1b, 0x7c, 0x05, 0x00
.byte 0x2b, 0x7d, 0x05, 0x00
.byte 0x39, 0x7e, 0x05, 0x00
.byte 0x46, 0x7f, 0x05, 0x00
.byte 0x52, 0x80, 0x05, 0x00
.byte 0x5d, 0x81, 0x05, 0x00
.byte 0x67, 0x82, 0x05, 0x00
.byte 0x70, 0x83, 0x05, 0x00
.byte 0x77, 0x84, 0x05, 0x00
.byte 0x7e, 0x85, 0x05, 0x00
.byte 0x84, 0x86, 0x05, 0x00
.byte 0x88, 0x87, 0x05, 0x00
.byte 0x8c, 0x88, 0x05, 0x00
.byte 0x8e, 0x89, 0x05, 0x00
.byte 0x90, 0x8a, 0x05, 0x00
.byte 0x90, 0x8b, 0x05, 0x00
.byte 0x90, 0x8c, 0x05, 0x00
.byte 0x8e, 0x8d, 0x05, 0x00
.byte 0x8c, 0x8e, 0x05, 0x00
.byte 0x88, 0x8f, 0x05, 0x00
.byte 0x84, 0x90, 0x05, 0x00
.byte 0x7f, 0x91, 0x05, 0x00
.byte 0x78, 0x92, 0x05, 0x00
.byte 0x71, 0x93, 0x05, 0x00
.byte 0x69, 0x94, 0x05, 0x00
.byte 0x60, 0x95, 0x05, 0x00
.byte 0x55, 0x96, 0x05, 0x00
.byte 0x4a, 0x97, 0x05, 0x00
.byte 0x3f, 0x98, 0x05, 0x00
.byte 0x32, 0x99, 0x05, 0x00
.byte 0x24, 0x9a, 0x05, 0x00
.byte 0x15, 0x9b, 0x05, 0x00
.byte 0x06, 0x9c, 0x05, 0x00
.byte 0xf5, 0x9c, 0x05, 0x00
.byte 0xe4, 0x9d, 0x05, 0x00
.byte 0xd2, 0x9e, 0x05, 0x00
.byte 0xbf, 0x9f, 0x05, 0x00
.byte 0xab, 0xa0, 0x05, 0x00
.byte 0x97, 0xa1, 0x05, 0x00
.byte 0x81, 0xa2, 0x05, 0x00
.byte 0x6b, 0xa3, 0x05, 0x00
.byte 0x54, 0xa4, 0x05, 0x00
.byte 0x3c, 0xa5, 0x05, 0x00
.byte 0x23, 0xa6, 0x05, 0x00
.byte 0x09, 0xa7, 0x05, 0x00
.byte 0xef, 0xa7, 0x05, 0x00
.byte 0xd3, 0xa8, 0x05, 0x00
.byte 0xb7, 0xa9, 0x05, 0x00
.byte 0x9a, 0xaa, 0x05, 0x00
.byte 0x7d, 0xab, 0x05, 0x00
.byte 0x5e, 0xac, 0x05, 0x00
.byte 0x3f, 0xad, 0x05, 0x00
.byte 0x1f, 0xae, 0x05, 0x00
.byte 0xff, 0xae, 0x05, 0x00
.byte 0xdd, 0xaf, 0x05, 0x00
.byte 0xbb, 0xb0, 0x05, 0x00
.byte 0x98, 0xb1, 0x05, 0x00
.byte 0x74, 0xb2, 0x05, 0x00
.byte 0x50, 0xb3, 0x05, 0x00

File diff suppressed because it is too large Load Diff

729
data/data_80EBA18.s Normal file
View File

@ -0,0 +1,729 @@
.section .rodata
.global gUnknown_80EBA18
gUnknown_80EBA18: @ 80EBA18
@ replacing .incbin "baserom.gba", 0x000eba18, 0x463c
.byte 0x2c, 0x00, 0x0f, 0x08
.byte 0xf4, 0xfe, 0x0e, 0x08
.byte 0xdc, 0xfe, 0x0e, 0x08
.byte 0x90, 0xfd, 0x0e, 0x08
.byte 0x74, 0xfd, 0x0e, 0x08
.byte 0x30, 0xfc, 0x0e, 0x08
.byte 0x1c, 0xfc, 0x0e, 0x08
.byte 0xe0, 0xfa, 0x0e, 0x08
.byte 0xd0, 0xfa, 0x0e, 0x08
.byte 0xc4, 0xf9, 0x0e, 0x08
.byte 0xa8, 0xf9, 0x0e, 0x08
.byte 0x7c, 0xf8, 0x0e, 0x08
.byte 0x6c, 0xf8, 0x0e, 0x08
.byte 0xa8, 0xf7, 0x0e, 0x08
.byte 0x90, 0xf7, 0x0e, 0x08
.byte 0x44, 0xf6, 0x0e, 0x08
.byte 0x34, 0xf6, 0x0e, 0x08
.byte 0xf0, 0xf4, 0x0e, 0x08
.byte 0xd4, 0xf4, 0x0e, 0x08
.byte 0xb4, 0xf3, 0x0e, 0x08
.byte 0x9c, 0xf3, 0x0e, 0x08
.byte 0x54, 0xf2, 0x0e, 0x08
.byte 0x34, 0xf2, 0x0e, 0x08
.byte 0x10, 0xf1, 0x0e, 0x08
.byte 0xf0, 0xf0, 0x0e, 0x08
.byte 0x04, 0xf0, 0x0e, 0x08
.byte 0xe4, 0xef, 0x0e, 0x08
.byte 0xb8, 0xee, 0x0e, 0x08
.byte 0xa0, 0xee, 0x0e, 0x08
.byte 0x68, 0xed, 0x0e, 0x08
.byte 0x48, 0xed, 0x0e, 0x08
.byte 0x3c, 0xec, 0x0e, 0x08
.byte 0x24, 0xec, 0x0e, 0x08
.byte 0xd8, 0xea, 0x0e, 0x08
.byte 0xc0, 0xea, 0x0e, 0x08
.byte 0x84, 0xe9, 0x0e, 0x08
.byte 0x68, 0xe9, 0x0e, 0x08
.byte 0x74, 0xe8, 0x0e, 0x08
.byte 0x58, 0xe8, 0x0e, 0x08
.byte 0x20, 0xe7, 0x0e, 0x08
.byte 0x04, 0xe7, 0x0e, 0x08
.byte 0xcc, 0xe5, 0x0e, 0x08
.byte 0xb0, 0xe5, 0x0e, 0x08
.byte 0x78, 0xe4, 0x0e, 0x08
.byte 0x58, 0xe4, 0x0e, 0x08
.byte 0x1c, 0xe3, 0x0e, 0x08
.byte 0x04, 0xe3, 0x0e, 0x08
.byte 0xc8, 0xe1, 0x0e, 0x08
.byte 0xc0, 0xe1, 0x0e, 0x08
.byte 0x80, 0xe0, 0x0e, 0x08
.byte 0x68, 0xe0, 0x0e, 0x08
.byte 0x0c, 0xdf, 0x0e, 0x08
.byte 0xf8, 0xde, 0x0e, 0x08
.byte 0x2c, 0xde, 0x0e, 0x08
.byte 0x20, 0xde, 0x0e, 0x08
.byte 0xd4, 0xdc, 0x0e, 0x08
.byte 0xb4, 0xdc, 0x0e, 0x08
.byte 0x84, 0xdb, 0x0e, 0x08
.byte 0x68, 0xdb, 0x0e, 0x08
.byte 0x40, 0xda, 0x0e, 0x08
.byte 0x1c, 0xda, 0x0e, 0x08
.byte 0xf0, 0xd8, 0x0e, 0x08
.byte 0xd0, 0xd8, 0x0e, 0x08
.byte 0xf8, 0xd7, 0x0e, 0x08
.byte 0xdc, 0xd7, 0x0e, 0x08
.byte 0x00, 0xd7, 0x0e, 0x08
.byte 0xe8, 0xd6, 0x0e, 0x08
.byte 0xac, 0xd5, 0x0e, 0x08
.byte 0x94, 0xd5, 0x0e, 0x08
.byte 0x78, 0xd4, 0x0e, 0x08
.byte 0x5c, 0xd4, 0x0e, 0x08
.byte 0x8c, 0xd3, 0x0e, 0x08
.byte 0x70, 0xd3, 0x0e, 0x08
.byte 0xa8, 0xd2, 0x0e, 0x08
.byte 0x90, 0xd2, 0x0e, 0x08
.byte 0x60, 0xd1, 0x0e, 0x08
.byte 0x40, 0xd1, 0x0e, 0x08
.byte 0x78, 0xd0, 0x0e, 0x08
.byte 0x54, 0xd0, 0x0e, 0x08
.byte 0x64, 0xcf, 0x0e, 0x08
.byte 0x44, 0xcf, 0x0e, 0x08
.byte 0xf8, 0xcd, 0x0e, 0x08
.byte 0xd8, 0xcd, 0x0e, 0x08
.byte 0xb0, 0xcc, 0x0e, 0x08
.byte 0x94, 0xcc, 0x0e, 0x08
.byte 0x8c, 0xcb, 0x0e, 0x08
.byte 0x70, 0xcb, 0x0e, 0x08
.byte 0x68, 0xca, 0x0e, 0x08
.byte 0x44, 0xca, 0x0e, 0x08
.byte 0x40, 0xc9, 0x0e, 0x08
.byte 0x24, 0xc9, 0x0e, 0x08
.byte 0xec, 0xc7, 0x0e, 0x08
.byte 0xd4, 0xc7, 0x0e, 0x08
.byte 0xa0, 0xc6, 0x0e, 0x08
.byte 0x7c, 0xc6, 0x0e, 0x08
.byte 0x40, 0xc5, 0x0e, 0x08
.byte 0x20, 0xc5, 0x0e, 0x08
.byte 0x10, 0xc4, 0x0e, 0x08
.byte 0xf0, 0xc3, 0x0e, 0x08
.byte 0xf4, 0xc2, 0x0e, 0x08
.byte 0xdc, 0xc2, 0x0e, 0x08
.byte 0xd8, 0xc1, 0x0e, 0x08
.byte 0xc0, 0xc1, 0x0e, 0x08
.byte 0x9c, 0xc0, 0x0e, 0x08
.byte 0x84, 0xc0, 0x0e, 0x08
.byte 0x78, 0xbf, 0x0e, 0x08
.byte 0x5c, 0xbf, 0x0e, 0x08
.byte 0x18, 0xbe, 0x0e, 0x08
.byte 0xf8, 0xbd, 0x0e, 0x08
.byte 0xd4, 0xbc, 0x0e, 0x08
.byte 0xc0, 0xbc, 0x0e, 0x08
.byte 0xd8, 0xbb, 0x0e, 0x08
.string "The Wigglytuff Club has added new Friend\n"
.string "Areas for sale!\n"
.string "Rescue Teams are urged to check with\n"
.string "Wigglytuff for what is available.\n"
.string "By adding to your Friend Areas~2c you can\n"
.string "recruit Pokémon that wouldn~27t join your\n"
.string "rescue team before!\0"
.align 2,0
.string "New Friend Areas!\0"
.align 2,0
.byte 0x43, 0x6f, 0x6e, 0x67
.byte 0x72, 0x61, 0x74, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x21, 0x20, 0x59, 0x6f, 0x75, 0x72, 0x20, 0x74, 0x65, 0x61, 0x6d, 0x20, 0x68, 0x61, 0x73, 0x20, 0x61, 0x74, 0x74, 0x61, 0x69
.byte 0x6e, 0x65, 0x64, 0x0a
.byte 0x74, 0x68, 0x65, 0x20, 0x4c, 0x75, 0x63, 0x61, 0x72, 0x69, 0x6f, 0x20, 0x52, 0x61, 0x6e, 0x6b, 0x2d, 0x2d, 0x74, 0x68, 0x65, 0x20, 0x74, 0x6f, 0x70, 0x20, 0x72, 0x61
.byte 0x6e, 0x6b, 0x20, 0x61, 0x6d, 0x6f, 0x6e, 0x67, 0x0a
.byte 0x72, 0x65, 0x73, 0x63, 0x75, 0x65, 0x20, 0x74, 0x65, 0x61, 0x6d, 0x73, 0x21, 0x20, 0x49, 0x6e, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6d
.byte 0x6f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6f, 0x66, 0x20, 0x79, 0x6f, 0x75, 0x72, 0x0a
.byte 0x66, 0x61, 0x6e, 0x74, 0x61, 0x73, 0x74, 0x69, 0x63, 0x20, 0x61, 0x63, 0x68, 0x69, 0x65, 0x76
.byte 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x7e, 0x32, 0x63, 0x20, 0x77, 0x65, 0x20, 0x61, 0x77, 0x61, 0x72, 0x64, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x74, 0x68, 0x65, 0x0a
.byte 0x4c, 0x75, 0x63, 0x61, 0x72, 0x69
.byte 0x6f, 0x20, 0x53, 0x74, 0x61, 0x74, 0x75, 0x65, 0x7e, 0x32, 0x63, 0x20, 0x63, 0x72, 0x61, 0x66, 0x74, 0x65, 0x64, 0x20, 0x61, 0x66, 0x74, 0x65, 0x72, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6c, 0x65
.byte 0x67, 0x65, 0x6e, 0x64, 0x61, 0x72, 0x79, 0x0a
.byte 0x72, 0x65, 0x73, 0x63, 0x75, 0x65, 0x20, 0x74, 0x65, 0x61, 0x6d, 0x20, 0x6c, 0x65, 0x61, 0x64, 0x65, 0x72, 0x2e, 0x0a
.byte 0x4b, 0x65, 0x65, 0x70
.byte 0x20, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x77, 0x6f, 0x72, 0x6c, 0x64, 0x20, 0x70, 0x65, 0x61, 0x63, 0x65, 0x21, 0x0a
.byte 0x20, 0x20, 0x20, 0x2d, 0x20, 0x50
.byte 0x6f, 0x6b, 0xe9, 0x6d, 0x6f, 0x6e, 0x20, 0x52, 0x65, 0x73, 0x63, 0x75, 0x65, 0x20, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x2d, 0x00, 0x00, 0x00, 0x00
.byte 0x43, 0x6f, 0x6e, 0x67, 0x72, 0x61, 0x74, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x2d, 0x20, 0x4c, 0x75, 0x63, 0x61, 0x72, 0x69, 0x6f, 0x20, 0x52, 0x61, 0x6e, 0x6b, 0x21, 0x00
.byte 0x23, 0x2b, 0x23, 0x43, 0x36, 0x4d, 0x79, 0x73, 0x74, 0x65, 0x72, 0x79, 0x20, 0x52, 0x75, 0x69, 0x6e, 0x20, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x55, 0x6e, 0x64, 0x65, 0x72, 0x67, 0x72, 0x6f
.byte 0x75, 0x6e, 0x64, 0x21, 0x23, 0x52, 0x0a
.byte 0x49, 0x74, 0x73, 0x20, 0x73, 0x69, 0x74, 0x65, 0x20, 0x68, 0x61, 0x64, 0x20, 0x62, 0x65, 0x65, 0x6e, 0x20, 0x68, 0x69, 0x64, 0x64, 0x65, 0x6e, 0x20
.byte 0x62, 0x79, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x72, 0x61, 0x74, 0x65, 0x72, 0x20, 0x6f, 0x66, 0x20, 0x61, 0x0a
.byte 0x6d, 0x65, 0x74, 0x65, 0x6f, 0x72, 0x20, 0x73, 0x74, 0x72, 0x69, 0x6b, 0x65
.byte 0x20, 0x69, 0x6e, 0x20, 0x61, 0x6e, 0x63, 0x69, 0x65, 0x6e, 0x74, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x2e, 0x20, 0x54, 0x68, 0x65, 0x20, 0x42, 0x75, 0x72, 0x69, 0x65, 0x64, 0x0a
.byte 0x52, 0x65
.byte 0x6c, 0x69, 0x63, 0x20, 0x69, 0x73, 0x20, 0x74, 0x68, 0x6f, 0x75, 0x67, 0x68, 0x74, 0x20, 0x74, 0x6f, 0x20, 0x64, 0x61, 0x74, 0x65, 0x20, 0x62, 0x61, 0x63, 0x6b, 0x20, 0x62, 0x65, 0x79, 0x6f
.byte 0x6e, 0x64, 0x0a
.byte 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x65, 0x64, 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x2e, 0x20, 0x54, 0x68, 0x65, 0x72, 0x65, 0x20, 0x61, 0x72, 0x65, 0x20, 0x72
.byte 0x75, 0x6d, 0x6f, 0x72, 0x73, 0x20, 0x6f, 0x66, 0x0a
.byte 0x74, 0x72, 0x65, 0x61, 0x73, 0x75, 0x72, 0x65, 0x73, 0x2e, 0x2e, 0x2e, 0x20, 0x41, 0x6e, 0x64, 0x20, 0x70, 0x65, 0x72, 0x68, 0x61, 0x70
.byte 0x73, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x20, 0x50, 0x6f, 0x6b, 0xe9, 0x6d, 0x6f, 0x6e, 0x0a, 0x74, 0x68, 0x61, 0x74, 0x20, 0x6c, 0x69, 0x76, 0x65, 0x64, 0x20, 0x69, 0x6e, 0x20, 0x61, 0x6e, 0x63
.byte 0x69, 0x65, 0x6e, 0x74, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x2e, 0x20, 0x54, 0x68, 0x65, 0x20, 0x42, 0x75, 0x72, 0x69, 0x65, 0x64, 0x0a
.byte 0x52, 0x65, 0x6c, 0x69, 0x63, 0x20, 0x69, 0x73, 0x20
.byte 0x74, 0x68, 0x65, 0x20, 0x6d, 0x61, 0x69, 0x6e, 0x20, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x20, 0x69, 0x6e, 0x20, 0x50, 0x6f, 0x6b, 0xe9, 0x6d, 0x6f, 0x6e, 0x20, 0x53, 0x71, 0x75, 0x61, 0x72, 0x65
.byte 0x2e, 0x00, 0x00, 0x00
.byte 0x42, 0x75, 0x72, 0x69, 0x65, 0x64, 0x20, 0x52, 0x65, 0x6c, 0x69, 0x63, 0x20, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x65, 0x64, 0x21, 0x00, 0x00, 0x00, 0x00
.byte 0x23, 0x2b, 0x23, 0x43, 0x35, 0x24, 0x6d, 0x30, 0x20, 0x49, 0x6e, 0x6e, 0x6f, 0x63, 0x65, 0x6e, 0x74, 0x21, 0x20, 0x50, 0x61, 0x72, 0x74, 0x20, 0x32, 0x23, 0x52, 0x0a
.byte 0x23, 0x43, 0x34, 0x51
.byte 0x75, 0x6f, 0x74, 0x65, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x43, 0x68, 0x61, 0x72, 0x69, 0x7a, 0x61, 0x72, 0x64, 0x20, 0x6f, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x73, 0x63, 0x65, 0x6e, 0x65
.byte 0x3a, 0x23, 0x52, 0x0a
.byte 0x7e, 0x39, 0x33, 0x54, 0x68, 0x61, 0x74, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x77, 0x68, 0x61, 0x74, 0x20, 0x49, 0x20, 0x74, 0x68, 0x6f, 0x75, 0x67, 0x68, 0x74, 0x20, 0x72
.byte 0x69, 0x67, 0x68, 0x74, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x0a
.byte 0x74, 0x68, 0x65, 0x20, 0x73, 0x74, 0x61, 0x72, 0x74, 0x7e, 0x32, 0x63, 0x20, 0x68, 0x61, 0x68, 0x61, 0x68, 0x61, 0x21, 0x7e, 0x39
.byte 0x34, 0x0a
.byte 0x23, 0x43, 0x34, 0x51, 0x75, 0x6f, 0x74, 0x65, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x54, 0x79, 0x72, 0x61, 0x6e, 0x69, 0x74, 0x61, 0x72, 0x20, 0x6f, 0x6e, 0x20, 0x74, 0x68, 0x65
.byte 0x20, 0x73, 0x63, 0x65, 0x6e, 0x65, 0x3a, 0x23, 0x52, 0x0a
.byte 0x7e, 0x39, 0x33, 0x54, 0x68, 0x61, 0x74, 0x20, 0x6d, 0x75, 0x63, 0x6b, 0x72, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x20, 0x47, 0x65, 0x6e
.byte 0x67, 0x61, 0x72, 0x2e, 0x2e, 0x2e, 0x0a
.byte 0x48, 0x65, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x67, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x61, 0x77, 0x61, 0x79, 0x20, 0x77
.byte 0x69, 0x74, 0x68, 0x20, 0x74, 0x68, 0x69, 0x73, 0x21, 0x0a
.byte 0x48, 0x65, 0x7e, 0x32, 0x37, 0x64, 0x20, 0x62, 0x65, 0x74, 0x74, 0x65, 0x72, 0x20, 0x62, 0x65, 0x20, 0x72, 0x65, 0x61, 0x64, 0x79
.byte 0x20, 0x66, 0x6f, 0x72, 0x20, 0x69, 0x74, 0x21, 0x7e, 0x39, 0x34, 0x00, 0x50, 0x6f, 0x6b, 0xe9, 0x6d, 0x6f, 0x6e, 0x20, 0x4e, 0x65, 0x77, 0x73, 0x20, 0x45, 0x78, 0x74, 0x72, 0x61, 0x20, 0x32
.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x2b, 0x23, 0x43, 0x35, 0x24, 0x6d, 0x30, 0x20, 0x49, 0x6e, 0x6e, 0x6f, 0x63, 0x65, 0x6e, 0x74, 0x21, 0x20, 0x50, 0x61, 0x72, 0x74, 0x20, 0x31, 0x23, 0x52, 0x0a
.byte 0x24, 0x6d, 0x31, 0x20, 0x6d, 0x65, 0x74, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x4e, 0x69, 0x6e, 0x65, 0x74, 0x61, 0x6c, 0x65, 0x73, 0x20, 0x6f, 0x6e, 0x20, 0x23, 0x43, 0x32, 0x4d, 0x74, 0x2e
.byte 0x20, 0x46, 0x72, 0x65, 0x65, 0x7a, 0x65, 0x23, 0x52, 0x2e, 0x0a
.byte 0x4e, 0x69, 0x6e, 0x65, 0x74, 0x61, 0x6c, 0x65, 0x73, 0x20, 0x74, 0x65, 0x73, 0x74, 0x69, 0x66, 0x69, 0x65, 0x64, 0x20, 0x74
.byte 0x68, 0x61, 0x74, 0x20, 0x24, 0x6d, 0x30, 0x20, 0x77, 0x61, 0x73, 0x0a
.byte 0x6e, 0x6f, 0x74, 0x20, 0x74, 0x68, 0x65, 0x20, 0x68, 0x75, 0x6d, 0x61, 0x6e, 0x20, 0x74, 0x68, 0x61, 0x74, 0x20, 0x61
.byte 0x70, 0x70, 0x65, 0x61, 0x72, 0x65, 0x64, 0x20, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6c, 0x65, 0x67, 0x65, 0x6e, 0x64, 0x2e, 0x0a, 0x41, 0x73, 0x20, 0x61, 0x20, 0x72, 0x65, 0x73, 0x75
.byte 0x6c, 0x74, 0x7e, 0x32, 0x63, 0x20, 0x47, 0x65, 0x6e, 0x67, 0x61, 0x72, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x63, 0x6c, 0x61, 0x69, 0x6d, 0x73, 0x20, 0x77, 0x65, 0x72, 0x65, 0x20, 0x66, 0x6f, 0x75
.byte 0x6e, 0x64, 0x20, 0x74, 0x6f, 0x0a, 0x62, 0x65, 0x20, 0x6d, 0x61, 0x6c, 0x69, 0x63, 0x69, 0x6f, 0x75, 0x73, 0x20, 0x6c, 0x69, 0x65, 0x73, 0x2e, 0x0a, 0x23, 0x43, 0x34, 0x54, 0x68, 0x65, 0x20
.byte 0x63, 0x6c, 0x65, 0x61, 0x72, 0x6c, 0x79, 0x20, 0x64, 0x69, 0x73, 0x6d, 0x61, 0x79, 0x65, 0x64, 0x20, 0x47, 0x65, 0x6e, 0x67, 0x61, 0x72, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x71, 0x75, 0x6f, 0x74
.byte 0x65, 0x3a, 0x23, 0x52, 0x0a, 0x7e, 0x39, 0x33, 0x55, 0x67, 0x65, 0x67, 0x65, 0x67, 0x65, 0x67, 0x65, 0x67, 0x65, 0x67, 0x65, 0x67, 0x65, 0x67, 0x65, 0x67, 0x65, 0x67, 0x65, 0x67, 0x65, 0x68
.byte 0x21, 0x7e, 0x39, 0x34, 0x00, 0x00, 0x00, 0x00, 0x50, 0x6f, 0x6b, 0xe9, 0x6d, 0x6f, 0x6e, 0x20, 0x4e, 0x65, 0x77, 0x73, 0x20, 0x45, 0x78, 0x74, 0x72, 0x61, 0x20, 0x31, 0x00, 0x00, 0x00, 0x00
.byte 0x59, 0x6f, 0x21, 0x20, 0x41, 0x6d, 0x69, 0x67, 0x6f, 0x21, 0x20, 0x49, 0x74, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x61, 0x77, 0x65, 0x73, 0x6f, 0x6d, 0x65, 0x20, 0x79, 0x6f, 0x75, 0x7e, 0x32, 0x37
.byte 0x72, 0x65, 0x20, 0x62, 0x61, 0x63, 0x6b, 0x21, 0x0a, 0x49, 0x7e, 0x32, 0x37, 0x6c, 0x6c, 0x20, 0x62, 0x65, 0x20, 0x64, 0x65, 0x6c, 0x69, 0x76, 0x65, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x6d, 0x61
.byte 0x69, 0x6c, 0x20, 0x74, 0x6f, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x61, 0x67, 0x61, 0x69, 0x6e, 0x21, 0x0a, 0x49, 0x7e, 0x32, 0x37, 0x76, 0x65, 0x20, 0x62, 0x65, 0x65, 0x6e, 0x20, 0x6c, 0x6f, 0x6f
.byte 0x6b, 0x69, 0x6e, 0x67, 0x20, 0x66, 0x6f, 0x72, 0x77, 0x61, 0x72, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x74, 0x68, 0x69, 0x73, 0x20, 0x77, 0x69, 0x74, 0x68, 0x0a, 0x6d, 0x79, 0x20, 0x62, 0x69, 0x6c
.byte 0x6c, 0x20, 0x6f, 0x75, 0x74, 0x73, 0x74, 0x72, 0x65, 0x74, 0x63, 0x68, 0x65, 0x64, 0x21, 0x0a, 0x49, 0x7e, 0x32, 0x37, 0x6c, 0x6c, 0x20, 0x64, 0x65, 0x6c, 0x69, 0x76, 0x65, 0x72, 0x20, 0x74
.byte 0x6f, 0x6e, 0x73, 0x20, 0x6f, 0x66, 0x20, 0x6d, 0x61, 0x69, 0x6c, 0x7e, 0x32, 0x63, 0x20, 0x73, 0x6f, 0x20, 0x79, 0x6f, 0x75, 0x7e, 0x32, 0x37, 0x64, 0x20, 0x62, 0x65, 0x74, 0x74, 0x65, 0x72
.byte 0x0a, 0x62, 0x65, 0x20, 0x72, 0x65, 0x61, 0x64, 0x79, 0x7e, 0x32, 0x63, 0x20, 0x61, 0x6d, 0x69, 0x67, 0x6f, 0x21, 0x0a, 0x0a, 0x20, 0x2d, 0x20, 0x54, 0x68, 0x65, 0x20, 0x77, 0x61, 0x6e, 0x64
.byte 0x65, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x20, 0x63, 0x61, 0x72, 0x72, 0x69, 0x65, 0x72, 0x7e, 0x32, 0x63, 0x20, 0x50, 0x65, 0x6c, 0x69, 0x70, 0x70, 0x65, 0x72
.byte 0x20, 0x2d, 0x00, 0x00, 0x41, 0x20, 0x4c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x50, 0x65, 0x6c, 0x69, 0x70, 0x70, 0x65, 0x72, 0x00, 0x00, 0x23, 0x2b, 0x23, 0x43
.byte 0x36, 0x54, 0x72, 0x79, 0x20, 0x54, 0x68, 0x65, 0x73, 0x65, 0x20, 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x20, 0x4d, 0x6f, 0x76, 0x65, 0x73, 0x20, 0x74, 0x6f, 0x20, 0x4b, 0x4f, 0x20, 0x46, 0x6f
.byte 0x65, 0x73, 0x21, 0x23, 0x52, 0x0a, 0x0a, 0x50, 0x73, 0x79, 0x64, 0x75, 0x63, 0x6b, 0x0a, 0x23, 0x43, 0x34, 0x43, 0x6f, 0x6e, 0x66, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x23, 0x52, 0x20, 0x2b, 0x20
.byte 0x23, 0x43, 0x34, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x23, 0x52, 0x0a, 0x54, 0x6f, 0x74, 0x6f, 0x64, 0x69, 0x6c, 0x65, 0x0a, 0x23, 0x43, 0x34, 0x42, 0x69, 0x74, 0x65, 0x23, 0x52, 0x20
.byte 0x2b, 0x20, 0x23, 0x43, 0x34, 0x53, 0x63, 0x61, 0x72, 0x79, 0x20, 0x46, 0x61, 0x63, 0x65, 0x23, 0x52, 0x0a, 0x43, 0x79, 0x6e, 0x64, 0x61, 0x71, 0x75, 0x69, 0x6c, 0x0a, 0x23, 0x43, 0x34, 0x46
.byte 0x6c, 0x61, 0x6d, 0x65, 0x20, 0x57, 0x68, 0x65, 0x65, 0x6c, 0x23, 0x52, 0x20, 0x2b, 0x20, 0x23, 0x43, 0x34, 0x53, 0x6d, 0x6f, 0x6b, 0x65, 0x73, 0x63, 0x72, 0x65, 0x65, 0x6e, 0x23, 0x52, 0x23
.byte 0x50, 0x50, 0x69, 0x6b, 0x61, 0x63, 0x68, 0x75, 0x0a, 0x23, 0x43, 0x34, 0x54, 0x68, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x62, 0x6f, 0x6c, 0x74, 0x23, 0x52, 0x20, 0x2b, 0x20, 0x23, 0x43, 0x34, 0x44
.byte 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x20, 0x54, 0x65, 0x61, 0x6d, 0x23, 0x52, 0x0a, 0x53, 0x6b, 0x69, 0x74, 0x74, 0x79, 0x0a, 0x23, 0x43, 0x34, 0x54, 0x61, 0x69, 0x6c, 0x20, 0x57, 0x68, 0x69, 0x70
.byte 0x23, 0x52, 0x20, 0x2b, 0x20, 0x23, 0x43, 0x34, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x73, 0x6c, 0x61, 0x70, 0x23, 0x52, 0x00, 0x00, 0x00, 0x00, 0x23, 0x35, 0x30, 0x20, 0x4c, 0x69, 0x6e, 0x6b
.byte 0x65, 0x64, 0x20, 0x4d, 0x6f, 0x76, 0x65, 0x73, 0x20, 0x50, 0x72, 0x6f, 0x20, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x20, 0x32, 0x00, 0x00, 0x00, 0x00, 0x23, 0x2b, 0x23, 0x43, 0x36, 0x54, 0x68, 0x65
.byte 0x73, 0x65, 0x20, 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x20, 0x4d, 0x6f, 0x76, 0x65, 0x20, 0x43, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x23, 0x52, 0x0a, 0x23, 0x2b
.byte 0x23, 0x43, 0x36, 0x43, 0x61, 0x6e, 0x20, 0x42, 0x65, 0x20, 0x44, 0x65, 0x76, 0x61, 0x73, 0x74, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x21, 0x23, 0x52, 0x0a, 0x0a, 0x42, 0x75, 0x6c, 0x62, 0x61, 0x73
.byte 0x61, 0x75, 0x72, 0x0a, 0x23, 0x43, 0x34, 0x52, 0x61, 0x7a, 0x6f, 0x72, 0x20, 0x4c, 0x65, 0x61, 0x66, 0x23, 0x52, 0x20, 0x2b, 0x20, 0x23, 0x43, 0x34, 0x53, 0x6c, 0x65, 0x65, 0x70, 0x20, 0x50
.byte 0x6f, 0x77, 0x64, 0x65, 0x72, 0x23, 0x52, 0x0a, 0x43, 0x68, 0x69, 0x6b, 0x6f, 0x72, 0x69, 0x74, 0x61, 0x0a, 0x23, 0x43, 0x34, 0x42, 0x6f, 0x64, 0x79, 0x20, 0x53, 0x6c, 0x61, 0x6d, 0x23, 0x52
.byte 0x20, 0x2b, 0x20, 0x23, 0x43, 0x34, 0x52, 0x65, 0x66, 0x6c, 0x65, 0x63, 0x74, 0x23, 0x52, 0x23, 0x50, 0x54, 0x72, 0x65, 0x65, 0x63, 0x6b, 0x6f, 0x0a, 0x23, 0x43, 0x34, 0x53, 0x63, 0x72, 0x65
.byte 0x65, 0x63, 0x68, 0x23, 0x52, 0x20, 0x2b, 0x20, 0x23, 0x43, 0x34, 0x50, 0x6f, 0x75, 0x6e, 0x64, 0x23, 0x52, 0x0a, 0x4d, 0x61, 0x63, 0x68, 0x6f, 0x70, 0x0a, 0x23, 0x43, 0x34, 0x46, 0x6f, 0x63
.byte 0x75, 0x73, 0x20, 0x45, 0x6e, 0x65, 0x72, 0x67, 0x79, 0x23, 0x52, 0x20, 0x2b, 0x20, 0x23, 0x43, 0x34, 0x4b, 0x61, 0x72, 0x61, 0x74, 0x65, 0x20, 0x43, 0x68, 0x6f, 0x70, 0x23, 0x52, 0x0a, 0x43
.byte 0x75, 0x62, 0x6f, 0x6e, 0x65, 0x0a, 0x23, 0x43, 0x34, 0x54, 0x61, 0x69, 0x6c, 0x20, 0x57, 0x68, 0x69, 0x70, 0x23, 0x52, 0x20, 0x2b, 0x20, 0x23, 0x43, 0x34, 0x42, 0x6f, 0x6e, 0x65, 0x6d, 0x65
.byte 0x72, 0x61, 0x6e, 0x67, 0x23, 0x52, 0x00, 0x00, 0x23, 0x34, 0x39, 0x20, 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x20, 0x4d, 0x6f, 0x76, 0x65, 0x73, 0x20, 0x50, 0x72, 0x6f, 0x20, 0x4c, 0x65, 0x76
.byte 0x65, 0x6c, 0x20, 0x31, 0x00, 0x00, 0x00, 0x00, 0x23, 0x2b, 0x23, 0x43, 0x36, 0x52, 0x65, 0x6c, 0x69, 0x65, 0x66, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x44, 0x65, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65
.byte 0x20, 0x53, 0x6f, 0x75, 0x6c, 0x73, 0x20, 0x57, 0x68, 0x6f, 0x20, 0x43, 0x61, 0x6e, 0x7e, 0x32, 0x37, 0x74, 0x23, 0x52, 0x0a, 0x23, 0x2b, 0x23, 0x43, 0x36, 0x53, 0x6c, 0x65, 0x65, 0x70, 0x20
.byte 0x77, 0x69, 0x74, 0x68, 0x20, 0x44, 0x69, 0x66, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x74, 0x20, 0x50, 0x69, 0x6c, 0x6c, 0x6f, 0x77, 0x73, 0x21, 0x23, 0x52, 0x0a, 0x49, 0x6e, 0x73, 0x6f, 0x6d, 0x6e
.byte 0x69, 0x61, 0x63, 0x73, 0x20, 0x72, 0x65, 0x6a, 0x6f, 0x69, 0x63, 0x65, 0x64, 0x20, 0x6f, 0x76, 0x65, 0x72, 0x20, 0x74, 0x68, 0x65, 0x20, 0x61, 0x6e, 0x6e, 0x6f, 0x75, 0x6e, 0x63, 0x65, 0x6d
.byte 0x65, 0x6e, 0x74, 0x0a, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x53, 0x6c, 0x61, 0x6b, 0x6f, 0x74, 0x68, 0x20, 0x50, 0x69, 0x6c, 0x6c, 0x6f, 0x77, 0x7e, 0x32, 0x63, 0x20, 0x77, 0x68, 0x69
.byte 0x63, 0x68, 0x20, 0x69, 0x73, 0x20, 0x73, 0x61, 0x69, 0x64, 0x20, 0x74, 0x6f, 0x0a, 0x69, 0x6e, 0x64, 0x75, 0x63, 0x65, 0x20, 0x73, 0x6c, 0x65, 0x65, 0x70, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x20
.byte 0x6a, 0x75, 0x73, 0x74, 0x20, 0x62, 0x79, 0x20, 0x73, 0x65, 0x65, 0x69, 0x6e, 0x67, 0x20, 0x69, 0x74, 0x2e, 0x0a, 0x41, 0x6c, 0x72, 0x65, 0x61, 0x64, 0x79, 0x20, 0x74, 0x68, 0x65, 0x20, 0x69
.byte 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x20, 0x69, 0x73, 0x20, 0x73, 0x77, 0x61, 0x6d, 0x70, 0x65, 0x64, 0x20, 0x77, 0x69, 0x74, 0x68, 0x0a, 0x69, 0x6e, 0x71, 0x75, 0x69, 0x72, 0x69, 0x65
.byte 0x73, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x61, 0x6c, 0x6c, 0x20, 0x6f, 0x76, 0x65, 0x72, 0x2e, 0x20, 0x48, 0x6f, 0x77, 0x65, 0x76, 0x65, 0x72, 0x7e, 0x32, 0x63, 0x0a, 0x70, 0x72, 0x6f, 0x64
.byte 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x69, 0x73, 0x20, 0x73, 0x61, 0x69, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x62, 0x65, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x79, 0x65, 0x74, 0x20, 0x72, 0x65, 0x61
.byte 0x64, 0x79, 0x2e, 0x00, 0x23, 0x34, 0x38, 0x20, 0x53, 0x6c, 0x61, 0x6b, 0x6f, 0x74, 0x68, 0x20, 0x50, 0x69, 0x6c, 0x6c, 0x6f, 0x77, 0x73, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x49, 0x6e, 0x73, 0x6f
.byte 0x6d, 0x6e, 0x69, 0x61, 0x21, 0x00, 0x00, 0x00, 0x41, 0x73, 0x20, 0x61, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6e, 0x61, 0x74, 0x75, 0x72
.byte 0x61, 0x6c, 0x20, 0x64, 0x69, 0x73, 0x61, 0x73, 0x74, 0x65, 0x72, 0x73, 0x7e, 0x32, 0x63, 0x0a, 0x74, 0x68, 0x65, 0x72, 0x65, 0x20, 0x68, 0x61, 0x76, 0x65, 0x20, 0x62, 0x65, 0x65, 0x6e, 0x20
.byte 0x6d, 0x61, 0x6e, 0x79, 0x20, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x73, 0x20, 0x6f, 0x66, 0x20, 0x50, 0x69, 0x74, 0x66, 0x61, 0x6c, 0x6c, 0x0a, 0x54, 0x72, 0x61, 0x70, 0x73, 0x20, 0x61, 0x70
.byte 0x70, 0x65, 0x61, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x69, 0x6e, 0x20, 0x64, 0x75, 0x6e, 0x67, 0x65, 0x6f, 0x6e, 0x73, 0x2e, 0x0a, 0x48, 0x6f, 0x77, 0x65, 0x76, 0x65, 0x72, 0x7e, 0x32, 0x63, 0x20
.byte 0x74, 0x68, 0x65, 0x72, 0x65, 0x20, 0x61, 0x6c, 0x73, 0x6f, 0x20, 0x61, 0x70, 0x70, 0x65, 0x61, 0x72, 0x20, 0x74, 0x6f, 0x20, 0x62, 0x65, 0x20, 0x70, 0x69, 0x74, 0x66, 0x61, 0x6c, 0x6c, 0x73
.byte 0x0a, 0x6d, 0x61, 0x64, 0x65, 0x20, 0x62, 0x79, 0x20, 0x50, 0x6f, 0x6b, 0xe9, 0x6d, 0x6f, 0x6e, 0x20, 0x74, 0x68, 0x61, 0x74, 0x20, 0x61, 0x72, 0x65, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x68, 0x61
.byte 0x72, 0x6d, 0x66, 0x75, 0x6c, 0x2e, 0x0a, 0x54, 0x68, 0x65, 0x20, 0x6c, 0x61, 0x74, 0x74, 0x65, 0x72, 0x20, 0x61, 0x72, 0x65, 0x20, 0x74, 0x68, 0x6f, 0x75, 0x67, 0x68, 0x74, 0x20, 0x74, 0x6f
.byte 0x20, 0x62, 0x65, 0x20, 0x6d, 0x61, 0x64, 0x65, 0x20, 0x62, 0x79, 0x0a, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x20, 0x53, 0x77, 0x69, 0x6e, 0x75, 0x62, 0x2e, 0x20, 0x53, 0x6f, 0x6d
.byte 0x65, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x6f, 0x75, 0x74, 0x20, 0x74, 0x6f, 0x0a, 0x62, 0x65, 0x20, 0x68, 0x6f, 0x74, 0x20, 0x73, 0x70, 0x72, 0x69, 0x6e, 0x67
.byte 0x73, 0x20, 0x74, 0x68, 0x61, 0x74, 0x20, 0x65, 0x72, 0x75, 0x70, 0x74, 0x20, 0x6f, 0x63, 0x63, 0x61, 0x73, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x6c, 0x79, 0x2e, 0x00, 0x00, 0x23, 0x34, 0x37, 0x20
.byte 0x42, 0x65, 0x77, 0x61, 0x72, 0x65, 0x20, 0x6f, 0x66, 0x20, 0x50, 0x69, 0x74, 0x66, 0x61, 0x6c, 0x6c, 0x73, 0x00, 0x00, 0x41, 0x20, 0x68, 0x69, 0x67, 0x68, 0x2d, 0x73, 0x65, 0x61, 0x73, 0x20
.byte 0x72, 0x65, 0x73, 0x63, 0x75, 0x65, 0x20, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x23, 0x43, 0x32, 0x53, 0x74, 0x6f, 0x72, 0x6d, 0x79, 0x20, 0x53, 0x65, 0x61, 0x23, 0x52, 0x20, 0x62, 0x79
.byte 0x0a, 0x23, 0x43, 0x35, 0x54, 0x65, 0x61, 0x6d, 0x20, 0x53, 0x65, 0x61, 0x20, 0x44, 0x72, 0x61, 0x67, 0x6f, 0x6e, 0x73, 0x23, 0x52, 0x20, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x20, 0x79, 0x65, 0x73
.byte 0x74, 0x65, 0x72, 0x64, 0x61, 0x79, 0x20, 0x77, 0x69, 0x74, 0x68, 0x0a, 0x74, 0x68, 0x65, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x66, 0x75, 0x6c, 0x20, 0x72, 0x65, 0x63, 0x6f, 0x76
.byte 0x65, 0x72, 0x79, 0x20, 0x6f, 0x66, 0x20, 0x54, 0x65, 0x6e, 0x74, 0x61, 0x63, 0x6f, 0x6f, 0x6c, 0x2e, 0x0a, 0x54, 0x68, 0x65, 0x20, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x7e, 0x32, 0x63, 0x20
.byte 0x43, 0x6f, 0x72, 0x73, 0x6f, 0x6c, 0x61, 0x7e, 0x32, 0x63, 0x20, 0x69, 0x73, 0x20, 0x73, 0x61, 0x69, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x62, 0x65, 0x20, 0x64, 0x65, 0x6c, 0x69, 0x67, 0x68, 0x74
.byte 0x65, 0x64, 0x0a, 0x62, 0x79, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6f, 0x75, 0x74, 0x63, 0x6f, 0x6d, 0x65, 0x2e, 0x0a, 0x54, 0x65, 0x6e, 0x74, 0x61, 0x63, 0x6f, 0x6f, 0x6c, 0x20, 0x73, 0x74, 0x61
.byte 0x74, 0x65, 0x64, 0x7e, 0x32, 0x63, 0x20, 0x7e, 0x39, 0x33, 0x49, 0x20, 0x64, 0x69, 0x64, 0x6e, 0x7e, 0x32, 0x37, 0x74, 0x20, 0x72, 0x65, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x20, 0x68, 0x6f, 0x77
.byte 0x20, 0x66, 0x61, 0x72, 0x0a, 0x49, 0x7e, 0x32, 0x37, 0x64, 0x20, 0x62, 0x65, 0x65, 0x6e, 0x20, 0x77, 0x61, 0x73, 0x68, 0x65, 0x64, 0x20, 0x6f, 0x75, 0x74, 0x20, 0x74, 0x6f, 0x20, 0x73, 0x65
.byte 0x61, 0x2e, 0x7e, 0x39, 0x34, 0x0a, 0x54, 0x68, 0x65, 0x20, 0x23, 0x43, 0x32, 0x53, 0x74, 0x6f, 0x72, 0x6d, 0x79, 0x20, 0x53, 0x65, 0x61, 0x23, 0x52, 0x20, 0x69, 0x73, 0x20, 0x75, 0x6e, 0x66
.byte 0x6f, 0x72, 0x67, 0x69, 0x76, 0x69, 0x6e, 0x67, 0x21, 0x00, 0x00, 0x00, 0x23, 0x34, 0x36, 0x20, 0x53, 0x65, 0x61, 0x20, 0x52, 0x65, 0x73, 0x63, 0x75, 0x65, 0x20, 0x61, 0x20, 0x53, 0x75, 0x63
.byte 0x63, 0x65, 0x73, 0x73, 0x21, 0x00, 0x00, 0x00, 0x56, 0x69, 0x6c, 0x65, 0x70, 0x6c, 0x75, 0x6d, 0x65, 0x20, 0x61, 0x72, 0x65, 0x20, 0x77, 0x69, 0x64, 0x65, 0x6c, 0x79, 0x20, 0x72, 0x65, 0x63
.byte 0x6f, 0x67, 0x6e, 0x69, 0x7a, 0x65, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x0a, 0x74, 0x68, 0x65, 0x69, 0x72, 0x20, 0x6d, 0x61, 0x73, 0x73, 0x69, 0x76, 0x65, 0x20, 0x66, 0x6c, 0x6f, 0x77, 0x65
.byte 0x72, 0x2e, 0x20, 0x48, 0x6f, 0x77, 0x65, 0x76, 0x65, 0x72, 0x7e, 0x32, 0x63, 0x20, 0x66, 0x65, 0x77, 0x20, 0x64, 0x61, 0x72, 0x65, 0x0a, 0x74, 0x6f, 0x20, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x61
.byte 0x63, 0x68, 0x20, 0x56, 0x69, 0x6c, 0x65, 0x70, 0x6c, 0x75, 0x6d, 0x65, 0x20, 0x62, 0x65, 0x63, 0x61, 0x75, 0x73, 0x65, 0x20, 0x74, 0x68, 0x65, 0x79, 0x0a, 0x73, 0x63, 0x61, 0x74, 0x74, 0x65
.byte 0x72, 0x20, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x73, 0x20, 0x6f, 0x66, 0x20, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x67, 0x79, 0x2d, 0x69, 0x6e, 0x64, 0x75, 0x63, 0x69, 0x6e, 0x67, 0x0a, 0x70, 0x6f, 0x6c
.byte 0x6c, 0x65, 0x6e, 0x2e, 0x20, 0x56, 0x69, 0x6c, 0x65, 0x70, 0x6c, 0x75, 0x6d, 0x65, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x61, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x61, 0x74, 0x20, 0x74, 0x68, 0x65
.byte 0x79, 0x20, 0x74, 0x69, 0x72, 0x65, 0x0a, 0x76, 0x65, 0x72, 0x79, 0x20, 0x65, 0x61, 0x73, 0x69, 0x6c, 0x79, 0x20, 0x62, 0x65, 0x63, 0x61, 0x75, 0x73, 0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x66
.byte 0x6c, 0x6f, 0x77, 0x65, 0x72, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x0a, 0x6d, 0x61, 0x6b, 0x65, 0x73, 0x20, 0x74, 0x68, 0x65, 0x69, 0x72, 0x20, 0x68, 0x65, 0x61
.byte 0x64, 0x20, 0x68, 0x65, 0x61, 0x76, 0x79, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x23, 0x34, 0x35, 0x20, 0x56, 0x69, 0x6c, 0x65, 0x70, 0x6c, 0x75, 0x6d, 0x65, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x57, 0x65
.byte 0x69, 0x67, 0x68, 0x74, 0x79, 0x20, 0x50, 0x72, 0x6f, 0x62, 0x6c, 0x65, 0x6d, 0x00, 0x00, 0x00, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x68, 0x61, 0x73, 0x20, 0x72, 0x65, 0x76
.byte 0x65, 0x61, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x68, 0x61, 0x74, 0x20, 0x23, 0x43, 0x34, 0x52, 0x61, 0x77, 0x73, 0x74, 0x20, 0x42, 0x65, 0x72, 0x72, 0x69, 0x65, 0x73, 0x23, 0x52, 0x0a, 0x66, 0x6f
.byte 0x75, 0x6e, 0x64, 0x20, 0x69, 0x6e, 0x20, 0x64, 0x75, 0x6e, 0x67, 0x65, 0x6f, 0x6e, 0x73, 0x20, 0x61, 0x72, 0x65, 0x20, 0x75, 0x73, 0x75, 0x61, 0x6c, 0x6c, 0x79, 0x20, 0x75, 0x6e, 0x72, 0x69
.byte 0x70, 0x65, 0x6e, 0x65, 0x64, 0x0a, 0x61, 0x6e, 0x64, 0x20, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x65, 0x64, 0x20, 0x67, 0x72, 0x65, 0x65, 0x6e, 0x2e, 0x20, 0x57, 0x68, 0x65, 0x6e, 0x20, 0x72, 0x69
.byte 0x70, 0x65, 0x7e, 0x32, 0x63, 0x20, 0x74, 0x68, 0x65, 0x79, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x61, 0x0a, 0x73, 0x6b, 0x79, 0x20, 0x62, 0x6c, 0x75, 0x65, 0x20, 0x63, 0x6f, 0x6c, 0x6f, 0x72
.byte 0x2e, 0x20, 0x41, 0x6e, 0x20, 0x75, 0x6e, 0x72, 0x69, 0x70, 0x65, 0x6e, 0x65, 0x64, 0x20, 0x6f, 0x6e, 0x65, 0x20, 0x69, 0x73, 0x20, 0x65, 0x61, 0x73, 0x69, 0x65, 0x72, 0x0a, 0x74, 0x6f, 0x20
.byte 0x65, 0x61, 0x74, 0x7e, 0x32, 0x63, 0x20, 0x68, 0x6f, 0x77, 0x65, 0x76, 0x65, 0x72, 0x7e, 0x32, 0x63, 0x20, 0x62, 0x65, 0x63, 0x61, 0x75, 0x73, 0x65, 0x20, 0x69, 0x74, 0x20, 0x68, 0x61, 0x73
.byte 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x79, 0x65, 0x74, 0x0a, 0x74, 0x75, 0x72, 0x6e, 0x65, 0x64, 0x20, 0x62, 0x69, 0x74, 0x74, 0x65, 0x72, 0x2e, 0x20, 0x49, 0x74, 0x20, 0x69, 0x73, 0x20, 0x6b, 0x6e
.byte 0x6f, 0x77, 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x68, 0x65, 0x61, 0x6c, 0x20, 0x61, 0x6c, 0x6c, 0x0a, 0x62, 0x75, 0x72, 0x6e, 0x73, 0x2e, 0x00, 0x00, 0x23, 0x34, 0x34, 0x20, 0x52, 0x61, 0x77, 0x73
.byte 0x74, 0x20, 0x42, 0x65, 0x72, 0x72, 0x79, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x45, 0x66, 0x66, 0x65, 0x63, 0x74, 0x00, 0x00, 0x57, 0x65, 0x20, 0x70, 0x72, 0x6f, 0x75, 0x64, 0x6c, 0x79, 0x20, 0x61
.byte 0x6e, 0x6e, 0x6f, 0x75, 0x6e, 0x63, 0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6f, 0x66, 0x0a, 0x74, 0x68, 0x65, 0x20, 0x52, 0x65
.byte 0x64, 0x20, 0x26, 0x20, 0x42, 0x6c, 0x75, 0x65, 0x20, 0x46, 0x61, 0x6e, 0x20, 0x43, 0x6c, 0x75, 0x62, 0x7e, 0x32, 0x63, 0x20, 0x61, 0x6e, 0x20, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61
.byte 0x74, 0x69, 0x6f, 0x6e, 0x0a, 0x66, 0x6f, 0x72, 0x20, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x50, 0x6f, 0x6b, 0xe9, 0x6d, 0x6f, 0x6e, 0x20, 0x72, 0x65, 0x73, 0x63
.byte 0x75, 0x65, 0x20, 0x74, 0x65, 0x61, 0x6d, 0x73, 0x2e, 0x0a, 0x57, 0x65, 0x20, 0x61, 0x72, 0x65, 0x20, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x6c, 0x79, 0x20, 0x72, 0x65, 0x63, 0x72, 0x75
.byte 0x69, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x2e, 0x0a, 0x57, 0x6f, 0x6e, 0x7e, 0x32, 0x37, 0x74, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x6a
.byte 0x6f, 0x69, 0x6e, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x77, 0x20, 0x79, 0x6f, 0x75, 0x72, 0x20, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x0a, 0x62, 0x65, 0x68, 0x69, 0x6e
.byte 0x64, 0x20, 0x6f, 0x75, 0x72, 0x20, 0x68, 0x61, 0x72, 0x64, 0x2d, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x20, 0x72, 0x65, 0x73, 0x63, 0x75, 0x65, 0x20, 0x68, 0x65, 0x72, 0x6f, 0x65, 0x73
.byte 0x3f, 0x0a, 0x0a, 0x20, 0x20, 0x2d, 0x20, 0x50, 0x6c, 0x75, 0x73, 0x6c, 0x65, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x4d, 0x69, 0x6e, 0x75, 0x6e, 0x20, 0x2d, 0x00, 0x00, 0x00, 0x23, 0x34, 0x33, 0x20
.byte 0x46, 0x61, 0x6e, 0x20, 0x43, 0x6c, 0x75, 0x62, 0x20, 0x53, 0x65, 0x65, 0x6b, 0x73, 0x20, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x21, 0x00, 0x41, 0x73, 0x20, 0x61, 0x20, 0x73, 0x70, 0x65
.byte 0x63, 0x69, 0x61, 0x6c, 0x20, 0x74, 0x72, 0x65, 0x61, 0x74, 0x7e, 0x32, 0x63, 0x20, 0x49, 0x7e, 0x32, 0x37, 0x6c, 0x6c, 0x20, 0x73, 0x68, 0x61, 0x72, 0x65, 0x20, 0x61, 0x20, 0x73, 0x69, 0x6d
.byte 0x70, 0x6c, 0x65, 0x0a, 0x77, 0x61, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x74, 0x65, 0x6c, 0x6c, 0x20, 0x66, 0x6f, 0x72, 0x74, 0x75, 0x6e, 0x65, 0x73, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x79, 0x6f
.byte 0x75, 0x21, 0x0a, 0x54, 0x68, 0x65, 0x20, 0x6b, 0x65, 0x79, 0x20, 0x69, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x66, 0x69, 0x72, 0x73, 0x74, 0x20, 0x74, 0x68, 0x69, 0x6e, 0x67, 0x20, 0x79, 0x6f
.byte 0x75, 0x20, 0x66, 0x69, 0x6e, 0x64, 0x20, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x0a, 0x64, 0x61, 0x79, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x66, 0x69, 0x72, 0x73, 0x74, 0x20, 0x64, 0x75, 0x6e, 0x67
.byte 0x65, 0x6f, 0x6e, 0x2e, 0x0a, 0x49, 0x66, 0x20, 0x69, 0x74, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x7e, 0x32, 0x63, 0x20, 0x79, 0x6f, 0x75, 0x7e, 0x32, 0x37, 0x6c, 0x6c
.byte 0x20, 0x62, 0x65, 0x20, 0x73, 0x75, 0x72, 0x65, 0x20, 0x74, 0x6f, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x20, 0x6d, 0x6f, 0x72, 0x65, 0x2e, 0x0a, 0x49, 0x66, 0x20, 0x69, 0x74, 0x7e, 0x32, 0x37, 0x73
.byte 0x20, 0x61, 0x20, 0x42, 0x65, 0x72, 0x72, 0x79, 0x7e, 0x32, 0x63, 0x20, 0x79, 0x6f, 0x75, 0x72, 0x20, 0x68, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x20, 0x6c, 0x75, 0x63, 0x6b, 0x20, 0x69, 0x73, 0x20
.byte 0x67, 0x6f, 0x6f, 0x64, 0x2e, 0x0a, 0x49, 0x66, 0x20, 0x69, 0x74, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x61, 0x6e, 0x20, 0x41, 0x70, 0x70, 0x6c, 0x65, 0x7e, 0x32, 0x63, 0x20, 0x79, 0x6f, 0x75, 0x7e
.byte 0x32, 0x37, 0x72, 0x65, 0x20, 0x73, 0x75, 0x70, 0x65, 0x72, 0x20, 0x6c, 0x75, 0x63, 0x6b, 0x79, 0x21, 0x0a, 0x20, 0x20, 0x2d, 0x20, 0x43, 0x68, 0x61, 0x6e, 0x73, 0x65, 0x79, 0x20, 0x2d, 0x00
.byte 0x23, 0x34, 0x32, 0x20, 0x43, 0x68, 0x61, 0x6e, 0x73, 0x65, 0x79, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x46, 0x6f, 0x72, 0x74, 0x75, 0x6e, 0x65, 0x2d, 0x54, 0x65, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x00
.byte 0x4f, 0x6e, 0x65, 0x20, 0x6f, 0x66, 0x20, 0x6f, 0x75, 0x72, 0x20, 0x6f, 0x6c, 0x64, 0x65, 0x73, 0x74, 0x20, 0x72, 0x65, 0x73, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x63, 0x6c, 0x61, 0x69
.byte 0x6d, 0x73, 0x20, 0x74, 0x6f, 0x20, 0x66, 0x65, 0x65, 0x6c, 0x0a, 0x72, 0x65, 0x6a, 0x75, 0x76, 0x65, 0x6e, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x20, 0x4b, 0x61, 0x62, 0x75, 0x74, 0x6f, 0x20, 0x72
.byte 0x65, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x6c, 0x79, 0x20, 0x68, 0x61, 0x64, 0x20, 0x61, 0x6e, 0x0a, 0x65, 0x6e, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x65, 0x72, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20
.byte 0x52, 0x65, 0x6c, 0x69, 0x63, 0x61, 0x6e, 0x74, 0x68, 0x20, 0x69, 0x6e, 0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x62, 0x6f, 0x74, 0x68, 0x0a, 0x70, 0x61, 0x72, 0x74, 0x69, 0x65, 0x73, 0x20
.byte 0x72, 0x65, 0x6d, 0x69, 0x6e, 0x69, 0x73, 0x63, 0x65, 0x64, 0x20, 0x61, 0x62, 0x6f, 0x75, 0x74, 0x20, 0x74, 0x68, 0x65, 0x20, 0x7e, 0x39, 0x33, 0x6f, 0x6c, 0x64, 0x20, 0x64, 0x61, 0x79, 0x73
.byte 0x2e, 0x7e, 0x39, 0x34, 0x0a, 0x48, 0x6f, 0x77, 0x65, 0x76, 0x65, 0x72, 0x7e, 0x32, 0x63, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x20, 0x4b, 0x61, 0x62, 0x75, 0x74, 0x6f, 0x20, 0x63, 0x6f, 0x75, 0x6c
.byte 0x64, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6b, 0x65, 0x65, 0x70, 0x20, 0x75, 0x70, 0x0a, 0x77, 0x69, 0x74, 0x68, 0x20, 0x52, 0x65, 0x6c, 0x69, 0x63, 0x61, 0x6e, 0x74, 0x68, 0x7e, 0x32, 0x37, 0x73
.byte 0x20, 0x74, 0x61, 0x6c, 0x65, 0x73, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x61, 0x20, 0x68, 0x75, 0x6e, 0x64, 0x72, 0x65, 0x64, 0x0a, 0x6d, 0x69, 0x6c, 0x6c, 0x69, 0x6f, 0x6e, 0x20, 0x79, 0x65
.byte 0x61, 0x72, 0x73, 0x20, 0x61, 0x67, 0x6f, 0x2e, 0x20, 0x4b, 0x61, 0x62, 0x75, 0x74, 0x6f, 0x20, 0x73, 0x74, 0x61, 0x74, 0x65, 0x64, 0x7e, 0x32, 0x63, 0x20, 0x7e, 0x39, 0x33, 0x49, 0x74, 0x0a
.byte 0x6d, 0x61, 0x64, 0x65, 0x20, 0x6d, 0x65, 0x20, 0x66, 0x65, 0x65, 0x6c, 0x20, 0x79, 0x6f, 0x75, 0x6e, 0x67, 0x20, 0x74, 0x61, 0x6c, 0x6b, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x6f, 0x20, 0x52, 0x65
.byte 0x6c, 0x69, 0x63, 0x61, 0x6e, 0x74, 0x68, 0x2e, 0x7e, 0x39, 0x34, 0x00, 0x23, 0x34, 0x31, 0x20, 0x4b, 0x61, 0x62, 0x75, 0x74, 0x6f, 0x20, 0x46, 0x65, 0x65, 0x6c, 0x73, 0x20, 0x59, 0x6f, 0x75
.byte 0x6e, 0x67, 0x20, 0x41, 0x67, 0x61, 0x69, 0x6e, 0x21, 0x00, 0x00, 0x00, 0x53, 0x6d, 0x65, 0x61, 0x72, 0x67, 0x6c, 0x65, 0x7e, 0x32, 0x63, 0x20, 0x74, 0x68, 0x65, 0x20, 0x61, 0x72, 0x74, 0x69
.byte 0x73, 0x74, 0x20, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x68, 0x69, 0x73, 0x20, 0x75, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x0a, 0x61, 0x72, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63
.byte 0x20, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x7e, 0x32, 0x63, 0x20, 0x68, 0x61, 0x64, 0x20, 0x61, 0x20, 0x77, 0x69, 0x6e, 0x64, 0x66, 0x61, 0x6c, 0x6c, 0x20, 0x64, 0x61, 0x79, 0x20, 0x61, 0x73
.byte 0x20, 0x6f, 0x6e, 0x65, 0x0a, 0x6f, 0x66, 0x20, 0x68, 0x69, 0x73, 0x20, 0x70, 0x61, 0x69, 0x6e, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x20, 0x77, 0x61, 0x73, 0x20, 0x61, 0x75, 0x63, 0x74, 0x69, 0x6f
.byte 0x6e, 0x65, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x33, 0x30, 0x30, 0x0a, 0x6d, 0x69, 0x6c, 0x6c, 0x69, 0x6f, 0x6e, 0x20, 0x83, 0xbf, 0x83, 0xc4, 0x20, 0x79, 0x65, 0x73, 0x74, 0x65, 0x72, 0x64
.byte 0x61, 0x79, 0x2e, 0x20, 0x54, 0x68, 0x65, 0x20, 0x61, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x65, 0x64, 0x0a, 0x61, 0x72, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x20, 0x77, 0x61, 0x73, 0x20, 0x6f, 0x6e
.byte 0x65, 0x20, 0x6f, 0x66, 0x20, 0x53, 0x6d, 0x65, 0x61, 0x72, 0x67, 0x6c, 0x65, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x0a, 0x77, 0x6f, 0x72, 0x6b
.byte 0x73, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x65, 0x61, 0x72, 0x6c, 0x79, 0x20, 0x69, 0x6e, 0x20, 0x68, 0x69, 0x73, 0x20, 0x63, 0x61, 0x72, 0x65, 0x65, 0x72, 0x2e, 0x00, 0x23, 0x34, 0x30, 0x20
.byte 0x53, 0x6d, 0x65, 0x61, 0x72, 0x67, 0x6c, 0x65, 0x20, 0x50, 0x61, 0x69, 0x6e, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x41, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x65, 0x64, 0x21, 0x00, 0x00, 0x00, 0x00
.byte 0x54, 0x6f, 0x64, 0x61, 0x79, 0x7e, 0x32, 0x63, 0x20, 0x74, 0x68, 0x65, 0x20, 0x77, 0x65, 0x61, 0x74, 0x68, 0x65, 0x72, 0x20, 0x6f, 0x76, 0x65, 0x72, 0x20, 0x50, 0x6f, 0x6b, 0xe9, 0x6d, 0x6f
.byte 0x6e, 0x0a, 0x53, 0x71, 0x75, 0x61, 0x72, 0x65, 0x20, 0x70, 0x72, 0x6f, 0x6d, 0x69, 0x73, 0x65, 0x73, 0x20, 0x74, 0x6f, 0x20, 0x62, 0x65, 0x20, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x20, 0x77, 0x69
.byte 0x74, 0x68, 0x20, 0x6e, 0x6f, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x63, 0x65, 0x20, 0x6f, 0x66, 0x20, 0x73, 0x68, 0x6f, 0x77, 0x65, 0x72, 0x73, 0x2e, 0x0a, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x20, 0x72
.byte 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x63, 0x61, 0x6e, 0x20, 0x65, 0x78, 0x70, 0x65, 0x63, 0x74, 0x20, 0x73, 0x68, 0x6f, 0x77, 0x65, 0x72, 0x73, 0x20, 0x66, 0x6f, 0x6c, 0x6c, 0x6f, 0x77
.byte 0x65, 0x64, 0x0a, 0x62, 0x79, 0x20, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x73, 0x2e, 0x20, 0x54, 0x68, 0x65, 0x72, 0x65, 0x20, 0x6d, 0x61, 0x79, 0x20, 0x62, 0x65, 0x20, 0x73, 0x75, 0x6e, 0x20, 0x62
.byte 0x72, 0x65, 0x61, 0x6b, 0x73, 0x0a, 0x64, 0x65, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x6f, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x64, 0x61, 0x79, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x6d
.byte 0x6f, 0x6f, 0x64, 0x73, 0x2e, 0x00, 0x00, 0x00, 0x23, 0x33, 0x39, 0x20, 0x43, 0x61, 0x73, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x44, 0x61, 0x69, 0x6c, 0x79, 0x20, 0x57
.byte 0x65, 0x61, 0x74, 0x68, 0x65, 0x72, 0x00, 0x00, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x73, 0x20, 0x6f, 0x66, 0x20, 0x61, 0x20, 0x6e, 0x6f, 0x78, 0x69, 0x6f, 0x75, 0x73, 0x20, 0x67, 0x61, 0x73
.byte 0x20, 0x6c, 0x65, 0x61, 0x6b, 0x20, 0x63, 0x61, 0x75, 0x73, 0x65, 0x64, 0x0a, 0x77, 0x69, 0x64, 0x65, 0x73, 0x70, 0x72, 0x65, 0x61, 0x64, 0x20, 0x63, 0x68, 0x61, 0x6f, 0x73, 0x20, 0x69, 0x6e
.byte 0x20, 0x74, 0x68, 0x65, 0x20, 0x23, 0x43, 0x44, 0x53, 0x69, 0x6e, 0x69, 0x73, 0x74, 0x65, 0x72, 0x20, 0x57, 0x6f, 0x6f, 0x64, 0x73, 0x23, 0x52, 0x2e, 0x0a, 0x53, 0x70, 0x65, 0x63, 0x69, 0x61
.byte 0x6c, 0x69, 0x73, 0x74, 0x73, 0x20, 0x73, 0x70, 0x65, 0x63, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20, 0x74, 0x68, 0x61, 0x74, 0x20, 0x74, 0x68, 0x65, 0x20, 0x72, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x0a
.byte 0x6e, 0x61, 0x74, 0x75, 0x72, 0x61, 0x6c, 0x20, 0x64, 0x69, 0x73, 0x61, 0x73, 0x74, 0x65, 0x72, 0x73, 0x20, 0x61, 0x72, 0x65, 0x20, 0x74, 0x6f, 0x20, 0x62, 0x6c, 0x61, 0x6d, 0x65, 0x2e, 0x20
.byte 0x48, 0x6f, 0x77, 0x65, 0x76, 0x65, 0x72, 0x7e, 0x32, 0x63, 0x0a, 0x73, 0x6f, 0x6d, 0x65, 0x20, 0x61, 0x6c, 0x73, 0x6f, 0x20, 0x62, 0x6c, 0x61, 0x6d, 0x65, 0x20, 0x23, 0x43, 0x35, 0x54, 0x65
.byte 0x61, 0x6d, 0x20, 0x4b, 0x6f, 0x66, 0x66, 0x69, 0x6e, 0x67, 0x23, 0x52, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x0a, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65
.byte 0x20, 0x61, 0x72, 0x65, 0x61, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x74, 0x68, 0x65, 0x20, 0x66, 0x6f, 0x75, 0x6c, 0x2d, 0x73, 0x6d, 0x65, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x20, 0x67, 0x61, 0x73, 0x2e
.byte 0x0a, 0x54, 0x68, 0x65, 0x20, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x7e, 0x32, 0x63, 0x20, 0x61, 0x70, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x6c, 0x79, 0x7e, 0x32, 0x63, 0x20, 0x69, 0x73, 0x20
.byte 0x62, 0x6c, 0x6f, 0x77, 0x69, 0x6e, 0x67, 0x20, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x0a, 0x77, 0x69, 0x6e, 0x64, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x23, 0x33, 0x38, 0x20, 0x4e, 0x6f, 0x78, 0x69
.byte 0x6f, 0x75, 0x73, 0x20, 0x47, 0x61, 0x73, 0x20, 0x4c, 0x65, 0x61, 0x6b, 0x3f, 0x21, 0x00, 0x00, 0x23, 0x2b, 0x23, 0x43, 0x36, 0x57, 0x68, 0x65, 0x6e, 0x20, 0x55, 0x73, 0x65, 0x64, 0x20, 0x53
.byte 0x6f, 0x6d, 0x65, 0x77, 0x68, 0x65, 0x72, 0x65, 0x20, 0x53, 0x70, 0x65, 0x63, 0x69, 0x61, 0x6c, 0x2e, 0x2e, 0x2e, 0x23, 0x52, 0x0a, 0x45, 0x65, 0x76, 0x65, 0x65, 0x20, 0x61, 0x6e, 0x64, 0x20
.byte 0x57, 0x61, 0x74, 0x65, 0x72, 0x20, 0x53, 0x74, 0x6f, 0x6e, 0x65, 0x7e, 0x32, 0x63, 0x20, 0x46, 0x69, 0x72, 0x65, 0x20, 0x53, 0x74, 0x6f, 0x6e, 0x65, 0x7e, 0x32, 0x63, 0x0a, 0x54, 0x68, 0x75
.byte 0x6e, 0x64, 0x65, 0x72, 0x73, 0x74, 0x6f, 0x6e, 0x65, 0x7e, 0x32, 0x63, 0x20, 0x6f, 0x72, 0x2e, 0x2e, 0x2e, 0x0a, 0x45, 0x78, 0x65, 0x67, 0x67, 0x63, 0x75, 0x74, 0x65, 0x20, 0x61, 0x6e, 0x64
.byte 0x20, 0x4c, 0x65, 0x61, 0x66, 0x20, 0x53, 0x74, 0x6f, 0x6e, 0x65, 0x2e, 0x2e, 0x2e, 0x0a, 0x4f, 0x6e, 0x69, 0x78, 0x7e, 0x32, 0x63, 0x20, 0x4d, 0x65, 0x74, 0x61, 0x6c, 0x20, 0x43, 0x6f, 0x61
.byte 0x74, 0x7e, 0x32, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x4c, 0x69, 0x6e, 0x6b, 0x20, 0x43, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x2e, 0x2e, 0x0a, 0x54, 0x68, 0x65, 0x72, 0x65, 0x20, 0x61, 0x70, 0x70
.byte 0x65, 0x61, 0x72, 0x20, 0x74, 0x6f, 0x20, 0x62, 0x65, 0x20, 0x6d, 0x61, 0x6e, 0x79, 0x20, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x73, 0x21, 0x00, 0x00, 0x23, 0x33, 0x37, 0x20, 0x4b, 0x65, 0x79, 0x20
.byte 0x49, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x50, 0x6f, 0x6b, 0xe9, 0x6d, 0x6f, 0x6e, 0x20, 0x32, 0x00, 0x23, 0x2b, 0x23, 0x43, 0x36, 0x57, 0x68, 0x65, 0x6e, 0x20, 0x55, 0x73
.byte 0x65, 0x64, 0x20, 0x53, 0x6f, 0x6d, 0x65, 0x77, 0x68, 0x65, 0x72, 0x65, 0x20, 0x53, 0x70, 0x65, 0x63, 0x69, 0x61, 0x6c, 0x2e, 0x2e, 0x2e, 0x23, 0x52, 0x0a, 0x53, 0x75, 0x6e, 0x6b, 0x65, 0x72
.byte 0x6e, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x53, 0x75, 0x6e, 0x20, 0x53, 0x74, 0x6f, 0x6e, 0x65, 0x2e, 0x2e, 0x2e, 0x0a, 0x53, 0x6b, 0x69, 0x74, 0x74, 0x79, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x4d, 0x6f
.byte 0x6f, 0x6e, 0x20, 0x53, 0x74, 0x6f, 0x6e, 0x65, 0x2e, 0x2e, 0x2e, 0x0a, 0x47, 0x72, 0x6f, 0x77, 0x6c, 0x69, 0x74, 0x68, 0x65, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x46, 0x69, 0x72, 0x65, 0x20, 0x53
.byte 0x74, 0x6f, 0x6e, 0x65, 0x2e, 0x2e, 0x2e, 0x0a, 0x53, 0x68, 0x65, 0x6c, 0x6c, 0x64, 0x65, 0x72, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x57, 0x61, 0x74, 0x65, 0x72, 0x20, 0x53, 0x74, 0x6f, 0x6e, 0x65
.byte 0x2e, 0x2e, 0x2e, 0x0a, 0x43, 0x6c, 0x61, 0x6d, 0x70, 0x65, 0x72, 0x6c, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x44, 0x65, 0x65, 0x70, 0x73, 0x65, 0x61, 0x74, 0x6f, 0x6f, 0x74, 0x68, 0x2e, 0x2e, 0x2e
.byte 0x0a, 0x54, 0x68, 0x65, 0x72, 0x65, 0x20, 0x61, 0x70, 0x70, 0x65, 0x61, 0x72, 0x20, 0x74, 0x6f, 0x20, 0x62, 0x65, 0x20, 0x6d, 0x61, 0x6e, 0x79, 0x20, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x73, 0x21
.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x33, 0x36, 0x20, 0x4b, 0x65, 0x79, 0x20, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x50, 0x6f, 0x6b, 0xe9, 0x6d, 0x6f, 0x6e, 0x20, 0x31, 0x00
.byte 0x23, 0x2b, 0x23, 0x43, 0x36, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x20, 0x55, 0x70, 0x20, 0x43, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x41, 0x74, 0x74, 0x61, 0x63, 0x6b
.byte 0x73, 0x21, 0x23, 0x52, 0x0a, 0x53, 0x6f, 0x6d, 0x65, 0x20, 0x64, 0x75, 0x6e, 0x67, 0x65, 0x6f, 0x6e, 0x73, 0x20, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x20, 0x72, 0x65, 0x73, 0x63, 0x75, 0x65, 0x20
.byte 0x74, 0x65, 0x61, 0x6d, 0x73, 0x20, 0x74, 0x6f, 0x0a, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x20, 0x6c, 0x65, 0x61, 0x64, 0x65, 0x72, 0x73, 0x20, 0x6f, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x73
.byte 0x70, 0x6f, 0x74, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x64, 0x6f, 0x69, 0x6e, 0x67, 0x0a, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x61, 0x74, 0x74, 0x61, 0x63, 0x6b
.byte 0x73, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x73, 0x6f, 0x20, 0x6f, 0x6e, 0x2e, 0x0a, 0x57, 0x68, 0x65, 0x6e, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x20, 0x61, 0x20, 0x64, 0x75
.byte 0x6e, 0x67, 0x65, 0x6f, 0x6e, 0x7e, 0x32, 0x63, 0x20, 0x6f, 0x70, 0x65, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6d, 0x65, 0x6e, 0x75, 0x7e, 0x32, 0x63, 0x0a, 0x63, 0x68, 0x6f, 0x6f, 0x73, 0x65
.byte 0x20, 0x74, 0x68, 0x65, 0x20, 0x50, 0x6f, 0x6b, 0xe9, 0x6d, 0x6f, 0x6e, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x77, 0x61, 0x6e, 0x74, 0x20, 0x61, 0x73, 0x20, 0x74, 0x68, 0x65, 0x0a, 0x6c, 0x65, 0x61
.byte 0x64, 0x65, 0x72, 0x20, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x20, 0x23, 0x43, 0x36, 0x54, 0x65, 0x61, 0x6d, 0x23, 0x52, 0x7e, 0x32, 0x63, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x20, 0x73, 0x65, 0x6c, 0x65
.byte 0x63, 0x74, 0x20, 0x74, 0x68, 0x65, 0x0a, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x23, 0x43, 0x36, 0x4c, 0x65, 0x61, 0x64, 0x65, 0x72, 0x23, 0x52, 0x2e, 0x00, 0x23, 0x33, 0x35, 0x20
.byte 0x53, 0x77, 0x69, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x20, 0x4c, 0x65, 0x61, 0x64, 0x65, 0x72, 0x73, 0x00, 0x00, 0x00, 0x54, 0x68, 0x65, 0x72, 0x65, 0x20, 0x68, 0x61, 0x76, 0x65, 0x20, 0x62
.byte 0x65, 0x65, 0x6e, 0x20, 0x6e, 0x75, 0x6d, 0x65, 0x72, 0x6f, 0x75, 0x73, 0x20, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x73, 0x20, 0x74, 0x68, 0x61, 0x74, 0x0a, 0x74, 0x68, 0x65, 0x20, 0x6f, 0x6c
.byte 0x64, 0x65, 0x72, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x4b, 0x65, 0x63, 0x6c, 0x65, 0x6f, 0x6e, 0x20, 0x6d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x73, 0x20, 0x69, 0x6e, 0x0a
.byte 0x50, 0x6f, 0x6b, 0xe9, 0x6d, 0x6f, 0x6e, 0x20, 0x53, 0x71, 0x75, 0x61, 0x72, 0x65, 0x20, 0x6f, 0x63, 0x63, 0x61, 0x73, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x6c, 0x79, 0x20, 0x67, 0x6f, 0x65, 0x73
.byte 0x0a, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6e, 0x67, 0x2e, 0x20, 0x53, 0x6f, 0x6d, 0x65, 0x20, 0x72, 0x65, 0x73, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x63, 0x6c, 0x61, 0x69, 0x6d, 0x7e, 0x32
.byte 0x63, 0x20, 0x7e, 0x39, 0x33, 0x48, 0x65, 0x7e, 0x32, 0x37, 0x73, 0x0a, 0x67, 0x72, 0x65, 0x65, 0x64, 0x79, 0x2e, 0x20, 0x48, 0x65, 0x20, 0x6d, 0x75, 0x73, 0x74, 0x20, 0x62, 0x65, 0x20, 0x6f
.byte 0x66, 0x66, 0x20, 0x64, 0x6f, 0x69, 0x6e, 0x67, 0x20, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x0a, 0x73, 0x6f, 0x6d, 0x65, 0x77, 0x68, 0x65, 0x72, 0x65, 0x2e, 0x7e, 0x39, 0x34, 0x20
.byte 0x48, 0x69, 0x73, 0x20, 0x79, 0x6f, 0x75, 0x6e, 0x67, 0x65, 0x72, 0x20, 0x62, 0x72, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x20, 0x64, 0x65, 0x6e, 0x69, 0x65, 0x73, 0x0a, 0x73, 0x75, 0x63, 0x68, 0x20
.byte 0x63, 0x6c, 0x61, 0x69, 0x6d, 0x73, 0x3a, 0x20, 0x7e, 0x39, 0x33, 0x48, 0x65, 0x20, 0x77, 0x6f, 0x75, 0x6c, 0x64, 0x6e, 0x7e, 0x32, 0x37, 0x74, 0x20, 0x67, 0x65, 0x74, 0x20, 0x66, 0x72, 0x65
.byte 0x65, 0x20, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x0a, 0x69, 0x6e, 0x20, 0x64, 0x75, 0x6e, 0x67, 0x65, 0x6f, 0x6e, 0x73, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x74, 0x72, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x73
.byte 0x65, 0x6c, 0x6c, 0x20, 0x74, 0x68, 0x65, 0x6d, 0x2e, 0x2e, 0x2e, 0x7e, 0x39, 0x34, 0x00, 0x00, 0x23, 0x33, 0x34, 0x20, 0x57, 0x68, 0x65, 0x72, 0x65, 0x20, 0x49, 0x73, 0x20, 0x4b, 0x65, 0x63
.byte 0x6c, 0x65, 0x6f, 0x6e, 0x3f, 0x00, 0x00, 0x00, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x3a, 0x20, 0x50, 0x6c, 0x65, 0x61, 0x73, 0x61, 0x6e, 0x74, 0x20, 0x77, 0x65, 0x61, 0x74, 0x68, 0x65, 0x72, 0x2e
.byte 0x0a, 0x48, 0x61, 0x69, 0x6c, 0x3a, 0x20, 0x52, 0x65, 0x67, 0x75, 0x6c, 0x61, 0x72, 0x6c, 0x79, 0x20, 0x69, 0x6e, 0x66, 0x6c, 0x69, 0x63, 0x74, 0x73, 0x20, 0x64, 0x61, 0x6d, 0x61, 0x67, 0x65
.byte 0x7e, 0x32, 0x63, 0x0a, 0x65, 0x78, 0x63, 0x65, 0x70, 0x74, 0x20, 0x6f, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x49, 0x63, 0x65, 0x20, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x0a, 0x46, 0x6f, 0x67, 0x3a
.byte 0x20, 0x54, 0x75, 0x72, 0x6e, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x20, 0x6f, 0x66, 0x20, 0x61, 0x6c, 0x6c, 0x20, 0x50, 0x6f, 0x6b, 0xe9, 0x6d, 0x6f, 0x6e
.byte 0x20, 0x6f, 0x6e, 0x0a, 0x74, 0x68, 0x65, 0x20, 0x66, 0x6c, 0x6f, 0x6f, 0x72, 0x20, 0x74, 0x6f, 0x20, 0x4d, 0x75, 0x64, 0x20, 0x53, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x0a, 0x42, 0x6c, 0x69, 0x7a
.byte 0x7a, 0x61, 0x72, 0x64, 0x3a, 0x20, 0x42, 0x6f, 0x6f, 0x73, 0x74, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6d, 0x6f, 0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x20, 0x73, 0x70, 0x65, 0x65, 0x64, 0x20
.byte 0x6f, 0x66, 0x0a, 0x49, 0x63, 0x65, 0x2d, 0x74, 0x79, 0x70, 0x65, 0x20, 0x50, 0x6f, 0x6b, 0xe9, 0x6d, 0x6f, 0x6e, 0x20, 0x62, 0x79, 0x20, 0x6f, 0x6e, 0x65, 0x20, 0x6c, 0x65, 0x76, 0x65, 0x6c
.byte 0x2e, 0x00, 0x00, 0x00, 0x23, 0x33, 0x33, 0x20, 0x44, 0x75, 0x6e, 0x67, 0x65, 0x6f, 0x6e, 0x73, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x57, 0x65, 0x61, 0x74, 0x68, 0x65, 0x72, 0x20, 0x32, 0x00, 0x00
.byte 0x45, 0x61, 0x72, 0x6c, 0x69, 0x65, 0x72, 0x20, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x7e, 0x32, 0x63, 0x20, 0x57, 0x6f, 0x62, 0x62, 0x75, 0x66, 0x66, 0x65, 0x74, 0x20, 0x72, 0x65, 0x70, 0x6f, 0x72
.byte 0x74, 0x65, 0x64, 0x6c, 0x79, 0x0a, 0x77, 0x6f, 0x62, 0x62, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x68, 0x65, 0x20, 0x77, 0x72, 0x6f, 0x6e, 0x67, 0x20, 0x77, 0x61, 0x79, 0x20, 0x61, 0x6e, 0x64, 0x20
.byte 0x77, 0x61, 0x6e, 0x64, 0x65, 0x72, 0x65, 0x64, 0x20, 0x6f, 0x66, 0x66, 0x2e, 0x0a, 0x49, 0x74, 0x20, 0x68, 0x61, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x62, 0x65, 0x20, 0x72, 0x65, 0x73, 0x63, 0x75
.byte 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x74, 0x68, 0x65, 0x20, 0x66, 0x61, 0x6d, 0x6f, 0x75, 0x73, 0x0a, 0x23, 0x43, 0x35, 0x54, 0x65, 0x61, 0x6d, 0x20, 0x48, 0x79, 0x64, 0x72, 0x6f, 0x23, 0x52
.byte 0x2e, 0x0a, 0x46, 0x6f, 0x72, 0x74, 0x75, 0x6e, 0x61, 0x74, 0x65, 0x6c, 0x79, 0x7e, 0x32, 0x63, 0x20, 0x74, 0x68, 0x65, 0x20, 0x77, 0x61, 0x79, 0x77, 0x61, 0x72, 0x64, 0x20, 0x77, 0x61, 0x6e
.byte 0x64, 0x65, 0x72, 0x65, 0x72, 0x0a, 0x57, 0x6f, 0x62, 0x62, 0x75, 0x66, 0x66, 0x65, 0x74, 0x20, 0x77, 0x61, 0x73, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x20, 0x77, 0x6f, 0x62, 0x62, 0x6c, 0x79, 0x20
.byte 0x61, 0x6e, 0x64, 0x20, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x77, 0x69, 0x73, 0x65, 0x0a, 0x75, 0x6e, 0x68, 0x61, 0x72, 0x6d, 0x65, 0x64, 0x2e, 0x00, 0x23, 0x33, 0x32, 0x20, 0x57, 0x6f, 0x62, 0x62
.byte 0x6c, 0x79, 0x20, 0x57, 0x6f, 0x62, 0x62, 0x75, 0x66, 0x66, 0x65, 0x74, 0x20, 0x57, 0x61, 0x6e, 0x64, 0x65, 0x72, 0x73, 0x21, 0x00, 0x00, 0x00, 0x41, 0x6d, 0x6f, 0x6e, 0x67, 0x20, 0x72, 0x65
.byte 0x73, 0x63, 0x75, 0x65, 0x20, 0x74, 0x65, 0x61, 0x6d, 0x73, 0x7e, 0x32, 0x63, 0x20, 0x74, 0x68, 0x65, 0x72, 0x65, 0x20, 0x69, 0x73, 0x20, 0x67, 0x72, 0x6f, 0x77, 0x69, 0x6e, 0x67, 0x0a, 0x64
.byte 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x65, 0x71, 0x75, 0x69, 0x70, 0x6d, 0x65, 0x6e, 0x74, 0x20, 0x74, 0x68, 0x61, 0x74, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20
.byte 0x6f, 0x6e, 0x6c, 0x79, 0x0a, 0x70, 0x72, 0x61, 0x63, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x7e, 0x32, 0x63, 0x20, 0x62, 0x75, 0x74, 0x20, 0x61, 0x6c, 0x73, 0x6f, 0x20, 0x66, 0x61, 0x73, 0x68, 0x69
.byte 0x6f, 0x6e, 0x61, 0x62, 0x6c, 0x79, 0x20, 0x61, 0x70, 0x70, 0x65, 0x61, 0x6c, 0x69, 0x6e, 0x67, 0x2e, 0x0a, 0x54, 0x68, 0x65, 0x20, 0x70, 0x69, 0x6e, 0x6b, 0x20, 0x23, 0x43, 0x34, 0x50, 0x65
.byte 0x63, 0x68, 0x61, 0x20, 0x53, 0x63, 0x61, 0x72, 0x66, 0x23, 0x52, 0x20, 0x69, 0x73, 0x20, 0x65, 0x73, 0x70, 0x65, 0x63, 0x69, 0x61, 0x6c, 0x6c, 0x79, 0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61
.byte 0x72, 0x2e, 0x0a, 0x45, 0x76, 0x65, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x23, 0x43, 0x35, 0x4b, 0x65, 0x63, 0x6c, 0x65, 0x6f, 0x6e, 0x20, 0x53, 0x68, 0x6f, 0x70, 0x23, 0x52, 0x20, 0x69, 0x73
.byte 0x20, 0x68, 0x61, 0x76, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x72, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x0a, 0x6b, 0x65, 0x65, 0x70, 0x69, 0x6e, 0x67, 0x20, 0x69, 0x74, 0x20, 0x69, 0x6e, 0x20, 0x73, 0x74
.byte 0x6f, 0x63, 0x6b, 0x2e, 0x0a, 0x49, 0x66, 0x20, 0x79, 0x6f, 0x75, 0x7e, 0x32, 0x37, 0x72, 0x65, 0x20, 0x6c, 0x75, 0x63, 0x6b, 0x79, 0x20, 0x65, 0x6e, 0x6f, 0x75, 0x67, 0x68, 0x20, 0x74, 0x6f
.byte 0x20, 0x73, 0x70, 0x6f, 0x74, 0x20, 0x6f, 0x6e, 0x65, 0x7e, 0x32, 0x63, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x20, 0x61, 0x0a, 0x62, 0x65, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x20, 0x66, 0x6f, 0x72, 0x20
.byte 0x69, 0x74, 0x21, 0x00, 0x23, 0x33, 0x31, 0x20, 0x50, 0x65, 0x63, 0x68, 0x61, 0x20, 0x53, 0x63, 0x61, 0x72, 0x66, 0x2d, 0x2d, 0x54, 0x6f, 0x70, 0x20, 0x50, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x72
.byte 0x69, 0x74, 0x79, 0x21, 0x00, 0x00, 0x00, 0x00, 0x53, 0x75, 0x6e, 0x6e, 0x79, 0x3a, 0x20, 0x42, 0x6f, 0x6f, 0x73, 0x74, 0x73, 0x20, 0x46, 0x69, 0x72, 0x65, 0x2d, 0x74, 0x79, 0x70, 0x65, 0x20
.byte 0x6d, 0x6f, 0x76, 0x65, 0x73, 0x7e, 0x32, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x0a, 0x77, 0x65, 0x61, 0x6b, 0x65, 0x6e, 0x73, 0x20, 0x57, 0x61, 0x74, 0x65, 0x72, 0x2d, 0x74, 0x79, 0x70, 0x65, 0x20
.byte 0x6d, 0x6f, 0x76, 0x65, 0x73, 0x2e, 0x0a, 0x53, 0x61, 0x6e, 0x64, 0x73, 0x74, 0x6f, 0x72, 0x6d, 0x3a, 0x20, 0x52, 0x65, 0x67, 0x75, 0x6c, 0x61, 0x72, 0x6c, 0x79, 0x20, 0x69, 0x6e, 0x66, 0x6c
.byte 0x69, 0x63, 0x74, 0x73, 0x20, 0x64, 0x61, 0x6d, 0x61, 0x67, 0x65, 0x0a, 0x65, 0x78, 0x63, 0x65, 0x70, 0x74, 0x20, 0x6f, 0x6e, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x7e, 0x32, 0x63, 0x20
.byte 0x52, 0x6f, 0x63, 0x6b, 0x7e, 0x32, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x53, 0x74, 0x65, 0x65, 0x6c, 0x20, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x0a, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x79, 0x3a
.byte 0x20, 0x41, 0x6c, 0x6c, 0x20, 0x6d, 0x6f, 0x76, 0x65, 0x73, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x61, 0x74, 0x74, 0x61, 0x63, 0x6b, 0x73, 0x7e, 0x32, 0x63, 0x20, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64
.byte 0x69, 0x6e, 0x67, 0x0a, 0x74, 0x68, 0x65, 0x20, 0x4e, 0x6f, 0x72, 0x6d, 0x61, 0x6c, 0x20, 0x74, 0x79, 0x70, 0x65, 0x7e, 0x32, 0x63, 0x20, 0x61, 0x72, 0x65, 0x20, 0x77, 0x65, 0x61, 0x6b, 0x65
.byte 0x6e, 0x65, 0x64, 0x2e, 0x0a, 0x52, 0x61, 0x69, 0x6e, 0x3a, 0x20, 0x42, 0x6f, 0x6f, 0x73, 0x74, 0x73, 0x20, 0x57, 0x61, 0x74, 0x65, 0x72, 0x2d, 0x74, 0x79, 0x70, 0x65, 0x20, 0x6d, 0x6f, 0x76
.byte 0x65, 0x73, 0x7e, 0x32, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x0a, 0x77, 0x65, 0x61, 0x6b, 0x65, 0x6e, 0x73, 0x20, 0x46, 0x69, 0x72, 0x65, 0x2e, 0x20, 0x50, 0x72, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73
.byte 0x20, 0x65, 0x78, 0x70, 0x6c, 0x6f, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x23, 0x33, 0x30, 0x20, 0x44, 0x75, 0x6e, 0x67, 0x65, 0x6f, 0x6e, 0x73, 0x20, 0x61, 0x6e, 0x64
.byte 0x20, 0x57, 0x65, 0x61, 0x74, 0x68, 0x65, 0x72, 0x20, 0x31, 0x00, 0x00, 0x57, 0x69, 0x74, 0x68, 0x20, 0x61, 0x20, 0x73, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x20, 0x61, 0x63, 0x74, 0x20, 0x6f, 0x66
.byte 0x20, 0x63, 0x6f, 0x75, 0x72, 0x61, 0x67, 0x65, 0x7e, 0x32, 0x63, 0x20, 0x41, 0x7a, 0x75, 0x72, 0x69, 0x6c, 0x6c, 0x0a, 0x62, 0x65, 0x63, 0x61, 0x6d, 0x65, 0x20, 0x61, 0x20, 0x68, 0x65, 0x72
.byte 0x6f, 0x20, 0x64, 0x65, 0x73, 0x70, 0x69, 0x74, 0x65, 0x20, 0x62, 0x65, 0x69, 0x6e, 0x67, 0x20, 0x73, 0x6d, 0x61, 0x6c, 0x6c, 0x20, 0x69, 0x6e, 0x20, 0x73, 0x69, 0x7a, 0x65, 0x2e, 0x0a, 0x41
.byte 0x7a, 0x75, 0x72, 0x69, 0x6c, 0x6c, 0x20, 0x63, 0x61, 0x6d, 0x65, 0x20, 0x61, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x20, 0x53, 0x6c, 0x6f, 0x77, 0x70, 0x6f, 0x6b, 0x65, 0x7e, 0x32, 0x63, 0x20, 0x77
.byte 0x68, 0x6f, 0x20, 0x68, 0x61, 0x64, 0x0a, 0x66, 0x61, 0x6c, 0x6c, 0x65, 0x6e, 0x20, 0x69, 0x6e, 0x74, 0x6f, 0x20, 0x61, 0x20, 0x70, 0x6f, 0x6e, 0x64, 0x2e, 0x20, 0x4f, 0x75, 0x72, 0x20, 0x68
.byte 0x65, 0x72, 0x6f, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x74, 0x61, 0x69, 0x6c, 0x7e, 0x32, 0x63, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x77, 0x6e, 0x0a, 0x61, 0x74, 0x20, 0x74, 0x68, 0x65, 0x20, 0x73, 0x74
.byte 0x72, 0x75, 0x67, 0x67, 0x6c, 0x69, 0x6e, 0x67, 0x20, 0x53, 0x6c, 0x6f, 0x77, 0x70, 0x6f, 0x6b, 0x65, 0x7e, 0x32, 0x63, 0x20, 0x73, 0x61, 0x76, 0x65, 0x64, 0x20, 0x61, 0x20, 0x73, 0x75, 0x72
.byte 0x65, 0x0a
.byte 0x64, 0x72, 0x6f, 0x77, 0x6e, 0x69, 0x6e, 0x67, 0x21, 0x20, 0x53, 0x6c, 0x6f, 0x77, 0x70, 0x6f, 0x6b, 0x65, 0x20, 0x63, 0x6c, 0x61, 0x69, 0x6d, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20
.byte 0x68, 0x61, 0x76, 0x65, 0x0a
.byte 0x65, 0x6e, 0x74, 0x69, 0x72, 0x65, 0x6c, 0x79, 0x20, 0x66, 0x6f, 0x72, 0x67, 0x6f, 0x74, 0x74, 0x65, 0x6e, 0x20, 0x68, 0x61, 0x76, 0x69, 0x6e, 0x67, 0x20, 0x74
.byte 0x68, 0x65, 0x20, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x20, 0x74, 0x6f, 0x0a, 0x73, 0x77, 0x69, 0x6d, 0x20, 0x63, 0x61, 0x70, 0x61, 0x62, 0x6c, 0x79, 0x2e, 0x00, 0x23, 0x32, 0x39, 0x20
.byte 0x41, 0x7a, 0x75, 0x72, 0x69, 0x6c, 0x6c, 0x2d, 0x2d, 0x74, 0x68, 0x65, 0x20, 0x4c, 0x69, 0x74, 0x74, 0x6c, 0x65, 0x20, 0x48, 0x65, 0x72, 0x6f, 0x21, 0x00, 0x00, 0x00, 0x23, 0x2b, 0x23, 0x43
.byte 0x36, 0x48, 0x65, 0x61, 0x64, 0x20, 0x4f, 0x75, 0x74, 0x20, 0x74, 0x6f, 0x20, 0x74, 0x68, 0x65, 0x20, 0x44, 0x65, 0x73, 0x65, 0x72, 0x74, 0x20, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x21, 0x23
.byte 0x52, 0x0a
.byte 0x49, 0x66, 0x20, 0x79, 0x6f, 0x75, 0x7e, 0x32, 0x37, 0x76, 0x65, 0x20, 0x62, 0x65, 0x65, 0x6e, 0x20, 0x77, 0x6f, 0x6e, 0x64, 0x65, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x77, 0x68, 0x61
.byte 0x74, 0x20, 0x6c, 0x69, 0x65, 0x73, 0x20, 0x62, 0x65, 0x68, 0x69, 0x6e, 0x64, 0x0a
.byte 0x74, 0x68, 0x65, 0x20, 0x6d, 0x79, 0x73, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x75, 0x73, 0x20, 0x6c, 0x6f, 0x63
.byte 0x6b, 0x65, 0x64, 0x20, 0x64, 0x6f, 0x6f, 0x72, 0x73, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x23, 0x43, 0x44, 0x53, 0x6f, 0x6c, 0x61, 0x72, 0x0a
.byte 0x43, 0x61, 0x76, 0x65, 0x23, 0x52
.byte 0x7e, 0x32, 0x63, 0x20, 0x74, 0x68, 0x65, 0x72, 0x65, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x62, 0x65, 0x65, 0x6e, 0x20, 0x61, 0x20, 0x62, 0x72, 0x65, 0x61, 0x6b, 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67
.byte 0x68, 0x21, 0x0a
.byte 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x73, 0x20, 0x69, 0x6e, 0x64, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x64, 0x6f, 0x6f, 0x72, 0x20, 0x6b, 0x65, 0x79
.byte 0x73, 0x20, 0x61, 0x72, 0x65, 0x20, 0x65, 0x61, 0x73, 0x69, 0x6c, 0x79, 0x0a, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x23, 0x43, 0x44, 0x44, 0x65, 0x73
.byte 0x65, 0x72, 0x74, 0x20, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x23, 0x52, 0x2e, 0x20, 0x45, 0x78, 0x70, 0x6c, 0x6f, 0x72, 0x65, 0x72, 0x73, 0x20, 0x61, 0x72, 0x65, 0x0a, 0x61, 0x64, 0x76, 0x69
.byte 0x73, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x6f, 0x73, 0x65, 0x20, 0x74, 0x65, 0x61, 0x6d, 0x73, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x50, 0x6f, 0x6b, 0xe9, 0x6d, 0x6f
.byte 0x6e, 0x0a, 0x61, 0x64, 0x61, 0x70, 0x74, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x74, 0x68, 0x65, 0x20, 0x64, 0x65, 0x73, 0x65, 0x72, 0x74, 0x20, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d
.byte 0x65, 0x6e, 0x74, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x23, 0x32, 0x38, 0x20, 0x54, 0x68, 0x65, 0x20, 0x4b, 0x65, 0x79, 0x00, 0x23, 0x2b, 0x23, 0x43, 0x36, 0x46, 0x65, 0x65, 0x6c, 0x20, 0x61, 0x20
.byte 0x4c, 0x69, 0x74, 0x74, 0x6c, 0x65, 0x20, 0x45, 0x6e, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x3f, 0x23, 0x52, 0x0a
.byte 0x54, 0x65, 0x64, 0x64, 0x69, 0x75, 0x72, 0x73, 0x61, 0x20, 0x69, 0x73, 0x20, 0x6f
.byte 0x66, 0x74, 0x65, 0x6e, 0x20, 0x73, 0x65, 0x65, 0x6e, 0x20, 0x6c, 0x69, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x20, 0x69, 0x74, 0x73, 0x20, 0x70, 0x61, 0x77, 0x73, 0x0a
.byte 0x74, 0x68, 0x61, 0x74, 0x20
.byte 0x68, 0x61, 0x76, 0x65, 0x20, 0x73, 0x6f, 0x61, 0x6b, 0x65, 0x64, 0x20, 0x75, 0x70, 0x20, 0x73, 0x77, 0x65, 0x65, 0x74, 0x20, 0x68, 0x6f, 0x6e, 0x65, 0x79, 0x2e, 0x20, 0x57, 0x68, 0x69, 0x6c
.byte 0x65, 0x20, 0x69, 0x74, 0x0a
.byte 0x6d, 0x61, 0x79, 0x20, 0x62, 0x65, 0x20, 0x73, 0x74, 0x69, 0x63, 0x6b, 0x79, 0x20, 0x73, 0x68, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x20, 0x70, 0x61, 0x77, 0x73, 0x20
.byte 0x77, 0x69, 0x74, 0x68, 0x0a
.byte 0x54, 0x65, 0x64, 0x64, 0x69, 0x75, 0x72, 0x73, 0x61, 0x7e, 0x32, 0x63, 0x20, 0x6f, 0x6e, 0x65, 0x20, 0x63, 0x61, 0x6e, 0x7e, 0x32, 0x37, 0x74, 0x20, 0x68, 0x65
.byte 0x6c, 0x70, 0x20, 0x62, 0x75, 0x74, 0x20, 0x66, 0x65, 0x65, 0x6c, 0x20, 0x61, 0x0a
.byte 0x74, 0x77, 0x69, 0x6e, 0x67, 0x65, 0x20, 0x6f, 0x66, 0x20, 0x65, 0x6e, 0x76, 0x79, 0x2e, 0x00, 0x00, 0x00
.byte 0x23, 0x32, 0x37, 0x20, 0x53, 0x77, 0x65, 0x65, 0x74, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x73, 0x21, 0x00, 0x00, 0x00, 0x00, 0x23, 0x2b, 0x23, 0x43, 0x36, 0x41, 0x6c, 0x6c, 0x20, 0x4d, 0x6f, 0x76
.byte 0x65, 0x73, 0x20, 0x48, 0x61, 0x76, 0x65, 0x20, 0x45, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x20, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x23, 0x52, 0x0a
.byte 0x4d, 0x6f, 0x76, 0x65, 0x73
.byte 0x20, 0x74, 0x68, 0x61, 0x74, 0x20, 0x61, 0x66, 0x66, 0x65, 0x63, 0x74, 0x20, 0x61, 0x6e, 0x20, 0x65, 0x6e, 0x74, 0x69, 0x72, 0x65, 0x20, 0x72, 0x6f, 0x6f, 0x6d, 0x20, 0x68, 0x61, 0x76, 0x65
.byte 0x20, 0x61, 0x0a
.byte 0x72, 0x61, 0x6e, 0x67, 0x65, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x77, 0x6f, 0x20, 0x74, 0x69, 0x6c, 0x65, 0x73, 0x20, 0x69, 0x6e, 0x20, 0x61, 0x20, 0x63, 0x6f, 0x72, 0x72, 0x69
.byte 0x64, 0x6f, 0x72, 0x2e, 0x20, 0x54, 0x68, 0x65, 0x20, 0x6d, 0x6f, 0x76, 0x65, 0x0a
.byte 0x23, 0x43, 0x34, 0x47, 0x72, 0x6f, 0x77, 0x6c, 0x23, 0x52, 0x7e, 0x32, 0x63, 0x20, 0x77, 0x68, 0x69, 0x63
.byte 0x68, 0x20, 0x6c, 0x6f, 0x77, 0x65, 0x72, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x41, 0x74, 0x74, 0x61, 0x63, 0x6b, 0x20, 0x73, 0x74, 0x61, 0x74, 0x20, 0x6f, 0x66, 0x0a
.byte 0x66, 0x6f, 0x65, 0x73
.byte 0x20, 0x69, 0x6e, 0x20, 0x61, 0x20, 0x72, 0x6f, 0x6f, 0x6d, 0x7e, 0x32, 0x63, 0x20, 0x77, 0x69, 0x6c, 0x6c, 0x20, 0x72, 0x65, 0x61, 0x63, 0x68, 0x20, 0x74, 0x77, 0x6f, 0x20, 0x74, 0x69, 0x6c
.byte 0x65, 0x73, 0x20, 0x61, 0x77, 0x61, 0x79, 0x0a
.byte 0x69, 0x6e, 0x20, 0x61, 0x20, 0x63, 0x6f, 0x72, 0x72, 0x69, 0x64, 0x6f, 0x72, 0x7e, 0x32, 0x63, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x65, 0x78, 0x61
.byte 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x20, 0x49, 0x66, 0x7e, 0x32, 0x63, 0x20, 0x68, 0x6f, 0x77, 0x65, 0x76, 0x65, 0x72, 0x7e, 0x32, 0x63, 0x0a
.byte 0x74, 0x68, 0x65, 0x20, 0x76, 0x69, 0x73, 0x69, 0x62
.byte 0x69, 0x6c, 0x69, 0x74, 0x79, 0x20, 0x69, 0x73, 0x20, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x6a, 0x75, 0x73, 0x74, 0x20, 0x6f, 0x6e, 0x65, 0x20, 0x74, 0x69, 0x6c
.byte 0x65, 0x7e, 0x32, 0x63, 0x0a, 0x74, 0x68, 0x65, 0x20, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x20, 0x6f, 0x66, 0x20, 0x6d, 0x6f, 0x76, 0x65, 0x73, 0x20, 0x77, 0x69, 0x6c, 0x6c, 0x20, 0x61, 0x6c, 0x73
.byte 0x6f, 0x20, 0x62, 0x65, 0x20, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x2e, 0x00, 0x00, 0x00, 0x23, 0x32, 0x36, 0x20, 0x54, 0x68, 0x65, 0x20, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x20, 0x6f, 0x66
.byte 0x20, 0x4d, 0x6f, 0x76, 0x65, 0x73, 0x00, 0x00, 0x23, 0x2b, 0x23, 0x43, 0x36, 0x4d, 0x61, 0x6b, 0x65, 0x20, 0x59, 0x6f, 0x75, 0x72, 0x20, 0x45, 0x78, 0x70, 0x6c, 0x6f, 0x72, 0x61, 0x74, 0x69
.byte 0x6f, 0x6e, 0x73, 0x20, 0x45, 0x61, 0x73, 0x69, 0x65, 0x72, 0x20, 0x62, 0x79, 0x23, 0x52, 0x0a, 0x23, 0x2b, 0x23, 0x43, 0x36, 0x42, 0x6f, 0x6f, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x68
.byte 0x65, 0x20, 0x49, 0x51, 0x20, 0x6f, 0x66, 0x20, 0x54, 0x65, 0x61, 0x6d, 0x20, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x21, 0x23, 0x52, 0x0a, 0x45, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x47
.byte 0x75, 0x6d, 0x6d, 0x69, 0x73, 0x20, 0x62, 0x6f, 0x6f, 0x73, 0x74, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x49, 0x51, 0x20, 0x6f, 0x66, 0x20, 0x50, 0x6f, 0x6b, 0xe9, 0x6d, 0x6f, 0x6e, 0x2e, 0x0a
.byte 0x55, 0x70, 0x6f, 0x6e, 0x20, 0x72, 0x65, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x20, 0x63, 0x65, 0x72, 0x74, 0x61, 0x69, 0x6e, 0x20, 0x49, 0x51, 0x20, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x73, 0x7e
.byte 0x32, 0x63, 0x20, 0x61, 0x20, 0x50, 0x6f, 0x6b, 0xe9, 0x6d, 0x6f, 0x6e, 0x0a, 0x6c, 0x65, 0x61, 0x72, 0x6e, 0x73, 0x20, 0x49, 0x51, 0x20, 0x53, 0x6b, 0x69, 0x6c, 0x6c, 0x73, 0x20, 0x74, 0x68
.byte 0x61, 0x74, 0x20, 0x63, 0x61, 0x6e, 0x20, 0x62, 0x65, 0x20, 0x76, 0x65, 0x72, 0x79, 0x20, 0x68, 0x65, 0x6c, 0x70, 0x66, 0x75, 0x6c, 0x0a, 0x28, 0x66, 0x6f, 0x72, 0x20, 0x65, 0x78, 0x61, 0x6d
.byte 0x70, 0x6c, 0x65, 0x7e, 0x32, 0x63, 0x20, 0x6c, 0x65, 0x61, 0x72, 0x6e, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x6f, 0x20, 0x73, 0x65, 0x65, 0x6b, 0x20, 0x6f, 0x75, 0x74, 0x20, 0x66, 0x6f, 0x65, 0x73
.byte 0x0a, 0x77, 0x69, 0x74, 0x68, 0x20, 0x74, 0x79, 0x70, 0x65, 0x20, 0x64, 0x69, 0x73, 0x61, 0x64, 0x76, 0x61, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x73, 0x29, 0x2e, 0x20, 0x43, 0x68, 0x65, 0x63, 0x6b
.byte 0x0a, 0x74, 0x68, 0x65, 0x20, 0x49, 0x51, 0x20, 0x53, 0x6b, 0x69, 0x6c, 0x6c, 0x73, 0x20, 0x6f, 0x66, 0x20, 0x79, 0x6f, 0x75, 0x72, 0x20, 0x74, 0x65, 0x61, 0x6d, 0x20, 0x6d, 0x65, 0x6d, 0x62
.byte 0x65, 0x72, 0x73, 0x21, 0x00, 0x00, 0x00, 0x00, 0x23, 0x32, 0x35, 0x20, 0x49, 0x51, 0x00, 0x00, 0x23, 0x2b, 0x23, 0x43, 0x36, 0x4e, 0x65, 0x77, 0x20, 0x54, 0x79, 0x70, 0x65, 0x73, 0x20, 0x6f
.byte 0x66, 0x20, 0x46, 0x6c, 0x6f, 0x6f, 0x72, 0x20, 0x54, 0x69, 0x6c, 0x65, 0x73, 0x3f, 0x23, 0x52, 0x0a, 0x54, 0x68, 0x65, 0x72, 0x65, 0x20, 0x68, 0x61, 0x76, 0x65, 0x20, 0x62, 0x65, 0x65, 0x6e
.byte 0x20, 0x6e, 0x75, 0x6d, 0x65, 0x72, 0x6f, 0x75, 0x73, 0x20, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x73, 0x20, 0x6f, 0x66, 0x20, 0x6e, 0x65, 0x77, 0x0a, 0x66, 0x6c, 0x6f, 0x6f, 0x72, 0x20, 0x74
.byte 0x69, 0x6c, 0x65, 0x73, 0x20, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x20, 0x74, 0x68, 0x61, 0x6e, 0x20, 0x57, 0x6f, 0x6e, 0x64, 0x65, 0x72, 0x20, 0x54, 0x69, 0x6c, 0x65, 0x73, 0x2e, 0x0a, 0x42, 0x65
.byte 0x6c, 0x69, 0x65, 0x76, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x68, 0x61, 0x76, 0x65, 0x20, 0x62, 0x65, 0x65, 0x6e, 0x20, 0x6d, 0x61, 0x64, 0x65, 0x20, 0x62, 0x79, 0x20, 0x74, 0x68, 0x65, 0x20
.byte 0x72, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x0a, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x61, 0x6c, 0x20, 0x64, 0x69, 0x73, 0x61, 0x73, 0x74, 0x65, 0x72, 0x73, 0x7e, 0x32, 0x63, 0x20, 0x74, 0x68, 0x65, 0x73
.byte 0x65, 0x20, 0x66, 0x6c, 0x6f, 0x6f, 0x72, 0x20, 0x74, 0x69, 0x6c, 0x65, 0x73, 0x20, 0x72, 0x65, 0x6d, 0x61, 0x69, 0x6e, 0x0a, 0x68, 0x69, 0x64, 0x64, 0x65, 0x6e, 0x20, 0x75, 0x6e, 0x74, 0x69
.byte 0x6c, 0x20, 0x74, 0x68, 0x65, 0x79, 0x20, 0x61, 0x72, 0x65, 0x20, 0x73, 0x74, 0x65, 0x70, 0x70, 0x65, 0x64, 0x20, 0x6f, 0x6e, 0x2e, 0x20, 0x54, 0x68, 0x65, 0x79, 0x20, 0x74, 0x68, 0x65, 0x6e
.byte 0x0a, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x20, 0x61, 0x20, 0x76, 0x61, 0x72, 0x69, 0x65, 0x74, 0x79, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x72, 0x61, 0x70, 0x73, 0x2e, 0x20, 0x52, 0x65, 0x73
.byte 0x63, 0x75, 0x65, 0x20, 0x74, 0x65, 0x61, 0x6d, 0x73, 0x0a, 0x61, 0x72, 0x65, 0x20, 0x75, 0x72, 0x67, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x75, 0x73, 0x65, 0x20, 0x65, 0x78, 0x74, 0x72, 0x65
.byte 0x6d, 0x65, 0x20, 0x63, 0x61, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x00, 0x23, 0x32, 0x34, 0x20, 0x4e, 0x65, 0x77, 0x20, 0x46, 0x6c, 0x6f, 0x6f, 0x72, 0x20, 0x54, 0x69, 0x6c, 0x65, 0x73, 0x3f
.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x2b, 0x23, 0x43, 0x36, 0x53, 0x74, 0x75, 0x64, 0x79, 0x20, 0x54, 0x79, 0x70, 0x65, 0x20, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x75, 0x70, 0x73, 0x23, 0x52, 0x0a, 0x23
.byte 0x2b, 0x23, 0x43, 0x36, 0x61, 0x74, 0x20, 0x74, 0x68, 0x65, 0x20, 0x4d, 0x61, 0x6b, 0x75, 0x68, 0x69, 0x74, 0x61, 0x20, 0x44, 0x6f, 0x6a, 0x6f, 0x21, 0x23, 0x52, 0x0a, 0x41, 0x74, 0x20, 0x74
.byte 0x68, 0x65, 0x20, 0x4d, 0x61, 0x6b, 0x75, 0x68, 0x69, 0x74, 0x61, 0x20, 0x44, 0x6f, 0x6a, 0x6f, 0x7e, 0x32, 0x63, 0x20, 0x6f, 0x6e, 0x65, 0x20, 0x63, 0x61, 0x6e, 0x20, 0x6c, 0x65, 0x61, 0x72
.byte 0x6e, 0x20, 0x68, 0x6f, 0x77, 0x0a, 0x50, 0x6f, 0x6b, 0xe9, 0x6d, 0x6f, 0x6e, 0x20, 0x74, 0x79, 0x70, 0x65, 0x20, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x75, 0x70, 0x73, 0x20, 0x61, 0x66, 0x66, 0x65
.byte 0x63, 0x74, 0x20, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x73, 0x2e, 0x0a, 0x49, 0x74, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x62, 0x65, 0x63, 0x61, 0x75, 0x73, 0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x64
.byte 0x6f, 0x6a, 0x6f, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67, 0x20, 0x72, 0x6f, 0x6f, 0x6d, 0x73, 0x20, 0x61, 0x72, 0x65, 0x0a, 0x64, 0x69, 0x76, 0x69, 0x64
.byte 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x20, 0x46, 0x6f, 0x72, 0x20, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x7e, 0x32, 0x63, 0x20, 0x69, 0x6e, 0x20, 0x74, 0x68
.byte 0x65, 0x20, 0x23, 0x43, 0x44, 0x46, 0x69, 0x72, 0x65, 0x0a, 0x4d, 0x61, 0x7a, 0x65, 0x23, 0x52, 0x7e, 0x32, 0x63, 0x20, 0x74, 0x68, 0x65, 0x72, 0x65, 0x20, 0x61, 0x72, 0x65, 0x20, 0x6f, 0x6e
.byte 0x6c, 0x79, 0x20, 0x46, 0x69, 0x72, 0x65, 0x2d, 0x74, 0x79, 0x70, 0x65, 0x20, 0x50, 0x6f, 0x6b, 0xe9, 0x6d, 0x6f, 0x6e, 0x2e, 0x0a, 0x54, 0x72, 0x79, 0x20, 0x6d, 0x6f, 0x76, 0x65, 0x20, 0x74
.byte 0x79, 0x70, 0x65, 0x73, 0x20, 0x74, 0x6f, 0x20, 0x73, 0x65, 0x65, 0x20, 0x77, 0x68, 0x61, 0x74, 0x20, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x20, 0x62, 0x65, 0x73, 0x74, 0x21, 0x00, 0x00, 0x00, 0x00
.byte 0x23, 0x32, 0x33, 0x20, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x20, 0x61, 0x74, 0x20, 0x74, 0x68, 0x65, 0x20, 0x4d, 0x61, 0x6b, 0x75, 0x68, 0x69, 0x74, 0x61, 0x20, 0x44, 0x6f, 0x6a, 0x6f, 0x21, 0x00
.byte 0x23, 0x2b, 0x23, 0x43, 0x36, 0x4e, 0x65, 0x77, 0x20, 0x54, 0x79, 0x70, 0x65, 0x73, 0x20, 0x6f, 0x66, 0x20, 0x4d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x73, 0x20, 0x44, 0x69, 0x73, 0x63, 0x6f
.byte 0x76, 0x65, 0x72, 0x65, 0x64, 0x3f, 0x23, 0x52, 0x0a, 0x49, 0x6e, 0x20, 0x61, 0x20, 0x72, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x6c, 0x79, 0x20, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x65
.byte 0x64, 0x20, 0x63, 0x61, 0x76, 0x65, 0x7e, 0x32, 0x63, 0x20, 0x65, 0x78, 0x70, 0x6c, 0x6f, 0x72, 0x65, 0x72, 0x73, 0x0a, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x75, 0x6e, 0x69, 0x71, 0x75, 0x65
.byte 0x20, 0x74, 0x79, 0x70, 0x65, 0x73, 0x20, 0x6f, 0x66, 0x20, 0x54, 0x65, 0x63, 0x68, 0x6e, 0x69, 0x63, 0x61, 0x6c, 0x20, 0x4d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x73, 0x2e, 0x0a, 0x54, 0x68
.byte 0x65, 0x79, 0x20, 0x61, 0x70, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x6c, 0x79, 0x20, 0x64, 0x6f, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x62, 0x72, 0x65, 0x61, 0x6b, 0x20, 0x61, 0x66, 0x74, 0x65, 0x72
.byte 0x20, 0x61, 0x20, 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x0a, 0x75, 0x73, 0x65, 0x2e, 0x20, 0x46, 0x75, 0x72, 0x74, 0x68, 0x65, 0x72, 0x20, 0x73, 0x74, 0x75, 0x64, 0x69, 0x65, 0x73, 0x20, 0x61
.byte 0x72, 0x65, 0x20, 0x73, 0x61, 0x69, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x62, 0x65, 0x20, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x0a, 0x63, 0x6f, 0x6e, 0x73, 0x69, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f
.byte 0x6e, 0x20, 0x62, 0x79, 0x20, 0x74, 0x68, 0x65, 0x20, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x69, 0x65, 0x73, 0x2e, 0x0a, 0x49, 0x6e, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64
.byte 0x20, 0x6e, 0x65, 0x77, 0x73, 0x7e, 0x32, 0x63, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x61, 0x76, 0x65, 0x20, 0x69, 0x73, 0x20, 0x74, 0x6f, 0x20, 0x62, 0x65, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x64
.byte 0x0a, 0x74, 0x68, 0x65, 0x20, 0x23, 0x43, 0x44, 0x53, 0x6f, 0x6c, 0x61, 0x72, 0x20, 0x43, 0x61, 0x76, 0x65, 0x23, 0x52, 0x2e, 0x00, 0x00, 0x00, 0x23, 0x32, 0x32, 0x20, 0x4e, 0x65, 0x77, 0x20
.byte 0x54, 0x79, 0x70, 0x65, 0x73, 0x20, 0x6f, 0x66, 0x20, 0x4d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x73, 0x3f, 0x00, 0x00, 0x23, 0x2b, 0x23, 0x43, 0x36, 0x54, 0x68, 0x65, 0x20, 0x55, 0x6c, 0x74
.byte 0x69, 0x6d, 0x61, 0x74, 0x65, 0x20, 0x44, 0x75, 0x6e, 0x67, 0x65, 0x6f, 0x6e, 0x23, 0x52, 0x0a, 0x23, 0x2b, 0x23, 0x43, 0x36, 0x43, 0x68, 0x61, 0x6c, 0x6c, 0x65, 0x6e, 0x67, 0x65, 0x73, 0x20
.byte 0x59, 0x6f, 0x75, 0x20, 0x74, 0x6f, 0x20, 0x44, 0x6f, 0x20, 0x59, 0x6f, 0x75, 0x72, 0x20, 0x42, 0x65, 0x73, 0x74, 0x21, 0x23, 0x52, 0x0a, 0x53, 0x6f, 0x6d, 0x65, 0x77, 0x68, 0x65, 0x72, 0x65
.byte 0x20, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x77, 0x6f, 0x72, 0x6c, 0x64, 0x7e, 0x32, 0x63, 0x20, 0x74, 0x68, 0x65, 0x72, 0x65, 0x20, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x73, 0x65, 0x64, 0x6c
.byte 0x79, 0x0a, 0x69, 0x73, 0x20, 0x61, 0x6e, 0x20, 0x69, 0x6e, 0x63, 0x72, 0x65, 0x64, 0x69, 0x62, 0x6c, 0x79, 0x20, 0x74, 0x6f, 0x75, 0x67, 0x68, 0x20, 0x64, 0x75, 0x6e, 0x67, 0x65, 0x6f, 0x6e
.byte 0x2e, 0x20, 0x4f, 0x6e, 0x65, 0x20, 0x6d, 0x75, 0x73, 0x74, 0x0a, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x20, 0x61, 0x6c, 0x6f, 0x6e, 0x65, 0x20, 0x61, 0x74, 0x20, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x20
.byte 0x31, 0x7e, 0x32, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x77, 0x69, 0x74, 0x68, 0x6f, 0x75, 0x74, 0x20, 0x61, 0x6e, 0x79, 0x0a, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x2e, 0x20, 0x4e, 0x6f, 0x20, 0x6f
.byte 0x6e, 0x65, 0x20, 0x68, 0x61, 0x73, 0x20, 0x65, 0x76, 0x65, 0x72, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x20, 0x74, 0x68, 0x65, 0x0a, 0x63, 0x68, 0x61, 0x6c, 0x6c, 0x65
.byte 0x6e, 0x67, 0x65, 0x2e, 0x20, 0x49, 0x74, 0x20, 0x69, 0x73, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x69, 0x64, 0x65, 0x72, 0x65, 0x64, 0x20, 0x61, 0x20, 0x74, 0x65, 0x73, 0x74, 0x20, 0x6e, 0x6f, 0x74
.byte 0x20, 0x6f, 0x66, 0x0a, 0x70, 0x6f, 0x77, 0x65, 0x72, 0x7e, 0x32, 0x63, 0x20, 0x62, 0x75, 0x74, 0x20, 0x6f, 0x66, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x6c, 0x6c, 0x69, 0x67, 0x65, 0x6e, 0x63, 0x65
.byte 0x20, 0x61, 0x6e, 0x64, 0x20, 0x77, 0x69, 0x74, 0x73, 0x2e, 0x00, 0x00, 0x23, 0x32, 0x31, 0x20, 0x54, 0x68, 0x65, 0x20, 0x55, 0x6c, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x20, 0x44, 0x75, 0x6e
.byte 0x67, 0x65, 0x6f, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x23, 0x2b, 0x23, 0x43, 0x36, 0x47, 0x75, 0x6d, 0x6d, 0x69, 0x73, 0x20, 0x54, 0x68, 0x61, 0x74, 0x20, 0x4d, 0x61, 0x6b, 0x65, 0x20, 0x59, 0x6f
.byte 0x75, 0x20, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x23, 0x52, 0x0a, 0x52, 0x65, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x20, 0x68, 0x61, 0x73, 0x20, 0x72, 0x65, 0x76, 0x65, 0x61, 0x6c, 0x65, 0x64, 0x20
.byte 0x74, 0x68, 0x61, 0x74, 0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x72, 0x20, 0x47, 0x75, 0x6d, 0x6d, 0x69, 0x0a, 0x74, 0x72, 0x65, 0x61, 0x74, 0x73, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6f, 0x6e
.byte 0x6c, 0x79, 0x20, 0x65, 0x6e, 0x68, 0x61, 0x6e, 0x63, 0x65, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x6c, 0x6c, 0x69, 0x67, 0x65, 0x6e, 0x63, 0x65, 0x7e, 0x32, 0x63, 0x20, 0x74, 0x68, 0x65, 0x79, 0x0a
.byte 0x61, 0x6c, 0x73, 0x6f, 0x20, 0x68, 0x61, 0x76, 0x65, 0x20, 0x64, 0x69, 0x66, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x74, 0x20, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x73, 0x20, 0x64, 0x65, 0x70, 0x65
.byte 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x6f, 0x6e, 0x0a, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x20, 0x53, 0x68, 0x61, 0x72, 0x65, 0x20, 0x47, 0x75, 0x6d, 0x6d, 0x69, 0x73, 0x20, 0x77, 0x69, 0x74, 0x68
.byte 0x20, 0x79, 0x6f, 0x75, 0x72, 0x20, 0x66, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x73, 0x20, 0x61, 0x6e, 0x64, 0x0a, 0x67, 0x65, 0x74, 0x20, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x65, 0x72, 0x20, 0x66, 0x6f
.byte 0x72, 0x20, 0x79, 0x6f, 0x75, 0x72, 0x20, 0x61, 0x64, 0x76, 0x65, 0x6e, 0x74, 0x75, 0x72, 0x65, 0x73, 0x21, 0x20, 0x49, 0x6e, 0x0a, 0x64, 0x75, 0x6e, 0x67, 0x65, 0x6f, 0x6e, 0x73, 0x7e, 0x32
.byte 0x63, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x77, 0x20, 0x74, 0x68, 0x65, 0x6d, 0x20, 0x61, 0x74, 0x20, 0x79, 0x6f, 0x75, 0x72, 0x20, 0x66, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x73, 0x2e, 0x0a, 0x55, 0x73
.byte 0x65, 0x20, 0x74, 0x68, 0x65, 0x6d, 0x20, 0x69, 0x6e, 0x20, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x20, 0x41, 0x72, 0x65, 0x61, 0x73, 0x20, 0x61, 0x6e, 0x64, 0x2e, 0x2e, 0x2e, 0x3f, 0x00, 0x00
.byte 0x23, 0x32, 0x30, 0x20, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x47, 0x75, 0x6d, 0x6d, 0x69, 0x00, 0x00, 0x00, 0x00, 0x23, 0x2b, 0x23, 0x43
.byte 0x36, 0x4d, 0x6f, 0x76, 0x69, 0x6e, 0x67, 0x20, 0x44, 0x69, 0x61, 0x67, 0x6f, 0x6e, 0x61, 0x6c, 0x6c, 0x79, 0x23, 0x52, 0x0a, 0x4d, 0x6f, 0x76, 0x65, 0x20, 0x64, 0x69, 0x61, 0x67, 0x6f, 0x6e
.byte 0x61, 0x6c, 0x6c, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x61, 0x76, 0x6f, 0x69, 0x64, 0x20, 0x66, 0x6f, 0x65, 0x73, 0x21, 0x0a, 0x4b, 0x65, 0x65, 0x70, 0x69, 0x6e, 0x67, 0x20, 0x84, 0x86, 0x20, 0x70
.byte 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x7e, 0x32, 0x63, 0x20, 0x75, 0x73, 0x65, 0x0a, 0x87, 0x52, 0x20, 0x74, 0x6f, 0x20, 0x6d, 0x6f, 0x76, 0x65, 0x20, 0x64, 0x69, 0x61, 0x67, 0x6f, 0x6e, 0x61
.byte 0x6c, 0x6c, 0x79, 0x2e, 0x0a, 0x23, 0x2b, 0x23, 0x43, 0x36, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x69, 0x6e, 0x67, 0x20, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x23, 0x52, 0x0a, 0x49
.byte 0x74, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x61, 0x6c, 0x73, 0x6f, 0x20, 0x76, 0x65, 0x72, 0x79, 0x20, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x61, 0x6e, 0x74, 0x20, 0x74, 0x6f, 0x20, 0x63, 0x68, 0x61
.byte 0x6e, 0x67, 0x65, 0x0a, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x77, 0x69, 0x74, 0x68, 0x6f, 0x75, 0x74, 0x20, 0x6d, 0x6f, 0x76, 0x69, 0x6e, 0x67, 0x2e, 0x20, 0x43
.byte 0x68, 0x65, 0x63, 0x6b, 0x20, 0x48, 0x69, 0x6e, 0x74, 0x73, 0x20, 0x74, 0x6f, 0x0a, 0x73, 0x65, 0x65, 0x20, 0x68, 0x6f, 0x77, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x63, 0x61, 0x6e, 0x20, 0x64, 0x6f
.byte 0x20, 0x74, 0x68, 0x69, 0x73, 0x20, 0x6d, 0x61, 0x6e, 0x65, 0x75, 0x76, 0x65, 0x72, 0x21, 0x00, 0x23, 0x31, 0x39, 0x20, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x61, 0x6e, 0x74, 0x20, 0x4d, 0x6f
.byte 0x76, 0x69, 0x6e, 0x67, 0x20, 0x54, 0x69, 0x70, 0x73, 0x00, 0x00, 0x00, 0x49, 0x66, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x77, 0x61, 0x6e, 0x74, 0x20, 0x74, 0x6f, 0x20, 0x65, 0x6e, 0x6c, 0x61, 0x72
.byte 0x67, 0x65, 0x20, 0x79, 0x6f, 0x75, 0x72, 0x20, 0x72, 0x65, 0x73, 0x63, 0x75, 0x65, 0x20, 0x74, 0x65, 0x61, 0x6d, 0x7e, 0x32, 0x63, 0x0a, 0x79, 0x6f, 0x75, 0x20, 0x6d, 0x75, 0x73, 0x74, 0x20
.byte 0x66, 0x69, 0x72, 0x73, 0x74, 0x20, 0x67, 0x65, 0x74, 0x20, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x20, 0x41, 0x72, 0x65, 0x61, 0x73, 0x2e, 0x20, 0x57, 0x68, 0x65, 0x6e, 0x0a, 0x61, 0x20, 0x50
.byte 0x6f, 0x6b, 0xe9, 0x6d, 0x6f, 0x6e, 0x20, 0x74, 0x68, 0x61, 0x74, 0x20, 0x63, 0x61, 0x6e, 0x20, 0x6c, 0x69, 0x76, 0x65, 0x20, 0x69, 0x6e, 0x20, 0x61, 0x6e, 0x20, 0x6f, 0x62, 0x74, 0x61, 0x69
.byte 0x6e, 0x65, 0x64, 0x0a, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x20, 0x41, 0x72, 0x65, 0x61, 0x20, 0x69, 0x73, 0x20, 0x64, 0x65, 0x66, 0x65, 0x61, 0x74, 0x65, 0x64, 0x7e, 0x32, 0x63, 0x20, 0x69
.byte 0x74, 0x20, 0x6d, 0x61, 0x79, 0x20, 0x61, 0x73, 0x6b, 0x20, 0x74, 0x6f, 0x0a, 0x6a, 0x6f, 0x69, 0x6e, 0x20, 0x79, 0x6f, 0x75, 0x72, 0x20, 0x72, 0x65, 0x73, 0x63, 0x75, 0x65, 0x20, 0x74, 0x65
.byte 0x61, 0x6d, 0x2e, 0x20, 0x41, 0x64, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x79, 0x6f, 0x75, 0x72, 0x0a, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x20, 0x41, 0x72, 0x65, 0x61, 0x73, 0x20, 0x73, 0x6f, 0x20
.byte 0x79, 0x6f, 0x75, 0x20, 0x63, 0x61, 0x6e, 0x20, 0x72, 0x65, 0x63, 0x72, 0x75, 0x69, 0x74, 0x20, 0x6d, 0x6f, 0x72, 0x65, 0x0a, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x21, 0x20, 0x49, 0x6e
.byte 0x63, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x6c, 0x79, 0x7e, 0x32, 0x63, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x6d, 0x61, 0x79, 0x20, 0x74, 0x61, 0x6b, 0x65, 0x20, 0x6e, 0x6f, 0x0a, 0x6d, 0x6f
.byte 0x72, 0x65, 0x20, 0x74, 0x68, 0x61, 0x6e, 0x20, 0x74, 0x68, 0x72, 0x65, 0x65, 0x20, 0x66, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x73, 0x20, 0x69, 0x6e, 0x74, 0x6f, 0x20, 0x61, 0x20, 0x64, 0x75, 0x6e
.byte 0x67, 0x65, 0x6f, 0x6e, 0x2e, 0x00, 0x00, 0x00, 0x23, 0x31, 0x38, 0x20, 0x41, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x54, 0x65, 0x61, 0x6d, 0x20, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x00
.byte 0x23, 0x2b, 0x23, 0x43, 0x36, 0x55, 0x73, 0x65, 0x20, 0x54, 0x65, 0x61, 0x6d, 0x20, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x20, 0x45, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x6c
.byte 0x79, 0x21, 0x23, 0x52, 0x0a, 0x57, 0x68, 0x65, 0x6e, 0x20, 0x79, 0x6f, 0x75, 0x7e, 0x32, 0x37, 0x72, 0x65, 0x20, 0x66, 0x69, 0x67, 0x68, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x69, 0x6e, 0x20, 0x61
.byte 0x20, 0x64, 0x75, 0x6e, 0x67, 0x65, 0x6f, 0x6e, 0x7e, 0x32, 0x63, 0x20, 0x69, 0x74, 0x7e, 0x32, 0x37, 0x73, 0x0a, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x61, 0x6e, 0x74, 0x20, 0x74, 0x6f, 0x20
.byte 0x75, 0x73, 0x65, 0x20, 0x79, 0x6f, 0x75, 0x72, 0x20, 0x74, 0x65, 0x61, 0x6d, 0x20, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x2e, 0x20, 0x49, 0x66, 0x0a, 0x61, 0x74, 0x74, 0x61, 0x63, 0x6b
.byte 0x65, 0x64, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x74, 0x68, 0x65, 0x20, 0x73, 0x69, 0x64, 0x65, 0x7e, 0x32, 0x63, 0x20, 0x6d, 0x6f, 0x76, 0x65, 0x20, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x6f, 0x6e
.byte 0x74, 0x61, 0x6c, 0x6c, 0x79, 0x2e, 0x0a, 0x49, 0x66, 0x20, 0x61, 0x74, 0x74, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x61, 0x62, 0x6f, 0x76, 0x65, 0x20, 0x6f, 0x72
.byte 0x20, 0x62, 0x65, 0x6c, 0x6f, 0x77, 0x7e, 0x32, 0x63, 0x20, 0x6d, 0x6f, 0x76, 0x65, 0x0a, 0x76, 0x65, 0x72, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x6c, 0x79, 0x2e, 0x20, 0x54, 0x68, 0x61, 0x74, 0x20
.byte 0x77, 0x61, 0x79, 0x7e, 0x32, 0x63, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x63, 0x61, 0x6e, 0x20, 0x68, 0x61, 0x76, 0x65, 0x20, 0x73, 0x65, 0x76, 0x65, 0x72, 0x61, 0x6c, 0x0a, 0x50, 0x6f, 0x6b, 0xe9
.byte 0x6d, 0x6f, 0x6e, 0x20, 0x66, 0x69, 0x67, 0x68, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x61, 0x20, 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x20, 0x66, 0x6f, 0x65, 0x2e, 0x20, 0x43, 0x68, 0x61, 0x6e, 0x67
.byte 0x65, 0x0a, 0x54, 0x61, 0x63, 0x74, 0x69, 0x63, 0x73, 0x20, 0x69, 0x66, 0x20, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x20, 0x64, 0x6f, 0x6e, 0x7e, 0x32, 0x37, 0x74, 0x20, 0x6d, 0x6f, 0x76
.byte 0x65, 0x20, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x6c, 0x79, 0x2e, 0x00, 0x23, 0x31, 0x37, 0x20, 0x4d, 0x6f, 0x76, 0x69, 0x6e, 0x67, 0x20, 0x61, 0x73, 0x20, 0x61, 0x20, 0x54, 0x65, 0x61, 0x6d
.byte 0x00, 0x00, 0x00, 0x00, 0x23, 0x2b, 0x23, 0x43, 0x36, 0x54, 0x68, 0x65, 0x20, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x20, 0x57, 0x6f, 0x6e, 0x64, 0x65, 0x72, 0x73, 0x20, 0x6f, 0x66, 0x20, 0x50, 0x6f
.byte 0x6b, 0xe9, 0x6d, 0x6f, 0x6e, 0x3f, 0x23, 0x52, 0x0a, 0x54, 0x68, 0x65, 0x20, 0x6d, 0x79, 0x73, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x75, 0x73, 0x20, 0x66, 0x65, 0x65, 0x74, 0x20, 0x6f, 0x66, 0x20
.byte 0x44, 0x69, 0x67, 0x6c, 0x65, 0x74, 0x74, 0x2e, 0x0a, 0x57, 0x68, 0x61, 0x74, 0x20, 0x69, 0x73, 0x20, 0x69, 0x6e, 0x73, 0x69, 0x64, 0x65, 0x20, 0x46, 0x6f, 0x72, 0x72, 0x65, 0x74, 0x72, 0x65
.byte 0x73, 0x73, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x73, 0x68, 0x65, 0x6c, 0x6c, 0x2e, 0x0a, 0x54, 0x68, 0x65, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x6c, 0x6c, 0x69, 0x67, 0x65, 0x6e, 0x63, 0x65, 0x20, 0x6f
.byte 0x66, 0x20, 0x47, 0x69, 0x72, 0x61, 0x66, 0x61, 0x72, 0x69, 0x67, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x74, 0x61, 0x69, 0x6c, 0x2e, 0x0a, 0x41, 0x72, 0x62, 0x6f, 0x6b, 0x7e, 0x32, 0x37, 0x73, 0x20
.byte 0x76, 0x61, 0x72, 0x69, 0x65, 0x74, 0x79, 0x20, 0x6f, 0x66, 0x20, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x73, 0x2e, 0x0a, 0x57, 0x65, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x73, 0x75
.byte 0x62, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x72, 0x65, 0x61, 0x64, 0x65, 0x72, 0x73, 0x20, 0x6f, 0x6e, 0x0a, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x20
.byte 0x50, 0x6f, 0x6b, 0xe9, 0x6d, 0x6f, 0x6e, 0x20, 0x6d, 0x79, 0x73, 0x74, 0x65, 0x72, 0x69, 0x65, 0x73, 0x21, 0x0a, 0x20, 0x20, 0x2d, 0x20, 0x4d, 0x79, 0x73, 0x74, 0x65, 0x72, 0x79, 0x20, 0x48
.byte 0x75, 0x6e, 0x74, 0x65, 0x72, 0x20, 0x54, 0x65, 0x61, 0x6d, 0x20, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x23, 0x31, 0x36, 0x20, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x20, 0x57, 0x6f, 0x6e, 0x64, 0x65, 0x72
.byte 0x73, 0x20, 0x6f, 0x66, 0x20, 0x50, 0x6f, 0x6b, 0xe9, 0x6d, 0x6f, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x23, 0x43, 0x36, 0x46, 0x69, 0x72, 0x73, 0x74, 0x23, 0x3d, 0x32, 0x47, 0x72, 0x61, 0x76, 0x65
.byte 0x6c, 0x65, 0x72, 0x6f, 0x63, 0x6b, 0x23, 0x52, 0x0a, 0x23, 0x43, 0x36, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x23, 0x3d, 0x32, 0x4f, 0x72, 0x61, 0x6e, 0x20, 0x42, 0x65, 0x72, 0x72, 0x79, 0x23
.byte 0x52, 0x0a, 0x49, 0x6e, 0x20, 0x61, 0x20, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x77, 0x69, 0x64, 0x65, 0x20, 0x73, 0x75, 0x72, 0x76, 0x65, 0x79, 0x20, 0x69, 0x6e, 0x76, 0x6f, 0x6c, 0x76, 0x69
.byte 0x6e, 0x67, 0x20, 0x72, 0x65, 0x73, 0x63, 0x75, 0x65, 0x0a, 0x74, 0x65, 0x61, 0x6d, 0x73, 0x7e, 0x32, 0x63, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6d, 0x6f, 0x73, 0x74, 0x20, 0x70, 0x6f, 0x70, 0x75
.byte 0x6c, 0x61, 0x72, 0x20, 0x69, 0x74, 0x65, 0x6d, 0x20, 0x77, 0x61, 0x73, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x74, 0x6f, 0x0a, 0x62, 0x65, 0x20, 0x23, 0x43, 0x34, 0x47, 0x72, 0x61, 0x76
.byte 0x65, 0x6c, 0x65, 0x72, 0x6f, 0x63, 0x6b, 0x73, 0x23, 0x52, 0x2e, 0x20, 0x41, 0x63, 0x63, 0x6f, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x6f, 0x20, 0x53, 0x75, 0x64, 0x6f, 0x77, 0x6f, 0x6f
.byte 0x64, 0x6f, 0x0a, 0x6f, 0x66, 0x20, 0x23, 0x43, 0x35, 0x54, 0x65, 0x61, 0x6d, 0x20, 0x46, 0x61, 0x6b, 0x65, 0x72, 0x73, 0x23, 0x52, 0x7e, 0x32, 0x63, 0x20, 0x7e, 0x39, 0x33, 0x49, 0x74, 0x20
.byte 0x6c, 0x65, 0x74, 0x73, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x61, 0x74, 0x74, 0x61, 0x63, 0x6b, 0x0a, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x66, 0x61, 0x72, 0x20, 0x61, 0x77, 0x61, 0x79, 0x2e, 0x20, 0x49
.byte 0x74, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x69, 0x6e, 0x76, 0x61, 0x6c, 0x75, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x7e, 0x39, 0x34, 0x20, 0x54, 0x68, 0x65, 0x20, 0x6e, 0x65, 0x78, 0x74, 0x0a, 0x6d, 0x6f
.byte 0x73, 0x74, 0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x72, 0x20, 0x69, 0x74, 0x65, 0x6d, 0x20, 0x77, 0x61, 0x73, 0x20, 0x23, 0x43, 0x34, 0x4f, 0x72, 0x61, 0x6e, 0x20, 0x42, 0x65, 0x72, 0x72
.byte 0x69, 0x65, 0x73, 0x23, 0x52, 0x2e, 0x00, 0x00, 0x23, 0x31, 0x35, 0x20, 0x50, 0x6f, 0x6c, 0x6c, 0x3a, 0x20, 0x54, 0x6f, 0x70, 0x20, 0x54, 0x77, 0x6f, 0x20, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x00
.byte 0x23, 0x2b, 0x23, 0x43, 0x36, 0x54, 0x68, 0x65, 0x73, 0x65, 0x20, 0x41, 0x72, 0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x46, 0x69, 0x6e, 0x61, 0x6c, 0x20, 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x20
.byte 0x4d, 0x6f, 0x76, 0x65, 0x73, 0x23, 0x52, 0x0a, 0x23, 0x2b, 0x23, 0x43, 0x36, 0x57, 0x65, 0x20, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x20, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65
.byte 0x20, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x20, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x21, 0x23, 0x52, 0x0a, 0x23, 0x43, 0x32, 0x45, 0x6c, 0x65, 0x63, 0x74, 0x72, 0x69, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20
.byte 0x57, 0x61, 0x74, 0x65, 0x72, 0x20, 0x54, 0x79, 0x70, 0x65, 0x73, 0x23, 0x52, 0x0a, 0x50, 0x69, 0x6b, 0x61, 0x63, 0x68, 0x75, 0x0a, 0x23, 0x43, 0x34, 0x54, 0x68, 0x75, 0x6e, 0x64, 0x65, 0x72
.byte 0x73, 0x68, 0x6f, 0x63, 0x6b, 0x23, 0x52, 0x20, 0x2b, 0x20, 0x23, 0x43, 0x34, 0x47, 0x72, 0x6f, 0x77, 0x6c, 0x23, 0x52, 0x0a, 0x53, 0x71, 0x75, 0x69, 0x72, 0x74, 0x6c, 0x65, 0x0a, 0x23, 0x43
.byte 0x34, 0x54, 0x61, 0x69, 0x6c, 0x20, 0x57, 0x68, 0x69, 0x70, 0x23, 0x52, 0x20, 0x2b, 0x20, 0x23, 0x43, 0x34, 0x54, 0x61, 0x63, 0x6b, 0x6c, 0x65, 0x23, 0x52, 0x23, 0x50, 0x54, 0x6f, 0x74, 0x6f
.byte 0x64, 0x69, 0x6c, 0x65, 0x0a, 0x23, 0x43, 0x34, 0x4c, 0x65, 0x65, 0x72, 0x23, 0x52, 0x20, 0x2b, 0x20, 0x23, 0x43, 0x34, 0x53, 0x63, 0x72, 0x61, 0x74, 0x63, 0x68, 0x23, 0x52, 0x0a, 0x4d, 0x75
.byte 0x64, 0x6b, 0x69, 0x70, 0x0a, 0x23, 0x43, 0x34, 0x57, 0x61, 0x74, 0x65, 0x72, 0x20, 0x47, 0x75, 0x6e, 0x23, 0x52, 0x20, 0x2b, 0x20, 0x23, 0x43, 0x34, 0x4d, 0x75, 0x64, 0x2d, 0x53, 0x6c, 0x61
.byte 0x70, 0x23, 0x52, 0x0a, 0x50, 0x73, 0x79, 0x64, 0x75, 0x63, 0x6b, 0x0a, 0x23, 0x43, 0x34, 0x54, 0x61, 0x69, 0x6c, 0x20, 0x57, 0x68, 0x69, 0x70, 0x23, 0x52, 0x20, 0x2b, 0x20, 0x23, 0x43, 0x34
.byte 0x53, 0x63, 0x72, 0x61, 0x74, 0x63, 0x68, 0x23, 0x52, 0x00, 0x00, 0x00, 0x23, 0x31, 0x34, 0x20, 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x20, 0x4d, 0x6f, 0x76, 0x65, 0x73, 0x20, 0x45, 0x6e, 0x74
.byte 0x72, 0x79, 0x20, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x20, 0x33, 0x00, 0x00, 0x23, 0x43, 0x32, 0x46, 0x69, 0x72, 0x65, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x4e, 0x6f, 0x72, 0x6d, 0x61, 0x6c, 0x20, 0x54
.byte 0x79, 0x70, 0x65, 0x73, 0x23, 0x52, 0x0a, 0x43, 0x68, 0x61, 0x72, 0x6d, 0x61, 0x6e, 0x64, 0x65, 0x72, 0x0a, 0x23, 0x43, 0x34, 0x45, 0x6d, 0x62, 0x65, 0x72, 0x23, 0x52, 0x20, 0x2b, 0x20, 0x23
.byte 0x43, 0x34, 0x47, 0x72, 0x6f, 0x77, 0x6c, 0x23, 0x52, 0x0a, 0x43, 0x79, 0x6e, 0x64, 0x61, 0x71, 0x75, 0x69, 0x6c, 0x0a, 0x23, 0x43, 0x34, 0x4c, 0x65, 0x65, 0x72, 0x23, 0x52, 0x20, 0x2b, 0x20
.byte 0x23, 0x43, 0x34, 0x54, 0x61, 0x63, 0x6b, 0x6c, 0x65, 0x23, 0x52, 0x0a, 0x54, 0x6f, 0x72, 0x63, 0x68, 0x69, 0x63, 0x0a, 0x23, 0x43, 0x34, 0x45, 0x6d, 0x62, 0x65, 0x72, 0x23, 0x52, 0x20, 0x2b
.byte 0x20, 0x23, 0x43, 0x34, 0x47, 0x72, 0x6f, 0x77, 0x6c, 0x23, 0x52, 0x23, 0x50, 0x45, 0x65, 0x76, 0x65, 0x65, 0x0a, 0x23, 0x43, 0x34, 0x54, 0x61, 0x69, 0x6c, 0x20, 0x57, 0x68, 0x69, 0x70, 0x23
.byte 0x52, 0x20, 0x2b, 0x20, 0x23, 0x43, 0x34, 0x54, 0x61, 0x63, 0x6b, 0x6c, 0x65, 0x23, 0x52, 0x0a, 0x4d, 0x65, 0x6f, 0x77, 0x74, 0x68, 0x0a, 0x23, 0x43, 0x34, 0x53, 0x63, 0x72, 0x61, 0x74, 0x63
.byte 0x68, 0x23, 0x52, 0x20, 0x2b, 0x20, 0x23, 0x43, 0x34, 0x47, 0x72, 0x6f, 0x77, 0x6c, 0x23, 0x52, 0x0a, 0x53, 0x6b, 0x69, 0x74, 0x74, 0x79, 0x0a, 0x23, 0x43, 0x34, 0x54, 0x61, 0x69, 0x6c, 0x20
.byte 0x57, 0x68, 0x69, 0x70, 0x23, 0x52, 0x20, 0x2b, 0x20, 0x23, 0x43, 0x34, 0x54, 0x61, 0x63, 0x6b, 0x6c, 0x65, 0x23, 0x52, 0x00, 0x00, 0x00, 0x00, 0x23, 0x31, 0x33, 0x20, 0x4c, 0x69, 0x6e, 0x6b
.byte 0x65, 0x64, 0x20, 0x4d, 0x6f, 0x76, 0x65, 0x73, 0x20, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x20, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x20, 0x32, 0x00, 0x00, 0x23, 0x2b, 0x23, 0x43, 0x36, 0x54, 0x68, 0x65
.byte 0x73, 0x65, 0x20, 0x41, 0x72, 0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x23, 0x52, 0x0a, 0x23, 0x2b, 0x23, 0x43, 0x36, 0x4c, 0x69
.byte 0x6e, 0x6b, 0x65, 0x64, 0x20, 0x4d, 0x6f, 0x76, 0x65, 0x73, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x42, 0x65, 0x67, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x73, 0x21, 0x23, 0x52, 0x0a, 0x23, 0x43, 0x32, 0x47
.byte 0x72, 0x61, 0x73, 0x73, 0x7e, 0x32, 0x63, 0x20, 0x46, 0x69, 0x67, 0x68, 0x74, 0x69, 0x6e, 0x67, 0x7e, 0x32, 0x63, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x54
.byte 0x79, 0x70, 0x65, 0x73, 0x23, 0x52, 0x0a, 0x42, 0x75, 0x6c, 0x62, 0x61, 0x73, 0x61, 0x75, 0x72, 0x0a, 0x23, 0x43, 0x34, 0x56, 0x69, 0x6e, 0x65, 0x20, 0x57, 0x68, 0x69, 0x70, 0x23, 0x52, 0x20
.byte 0x2b, 0x20, 0x23, 0x43, 0x34, 0x47, 0x72, 0x6f, 0x77, 0x6c, 0x23, 0x52, 0x0a, 0x43, 0x68, 0x69, 0x6b, 0x6f, 0x72, 0x69, 0x74, 0x61, 0x0a, 0x23, 0x43, 0x34, 0x52, 0x61, 0x7a, 0x6f, 0x72, 0x20
.byte 0x4c, 0x65, 0x61, 0x66, 0x23, 0x52, 0x20, 0x2b, 0x20, 0x23, 0x43, 0x34, 0x47, 0x72, 0x6f, 0x77, 0x6c, 0x23, 0x52, 0x23, 0x50, 0x54, 0x72, 0x65, 0x65, 0x63, 0x6b, 0x6f, 0x0a, 0x23, 0x43, 0x34
.byte 0x4c, 0x65, 0x65, 0x72, 0x23, 0x52, 0x20, 0x2b, 0x20, 0x23, 0x43, 0x34, 0x50, 0x6f, 0x75, 0x6e, 0x64, 0x23, 0x52, 0x0a, 0x4d, 0x61, 0x63, 0x68, 0x6f, 0x70, 0x0a, 0x23, 0x43, 0x34, 0x4c, 0x65
.byte 0x65, 0x72, 0x23, 0x52, 0x20, 0x2b, 0x20, 0x23, 0x43, 0x34, 0x4c, 0x6f, 0x77, 0x20, 0x4b, 0x69, 0x63, 0x6b, 0x23, 0x52, 0x0a, 0x43, 0x75, 0x62, 0x6f, 0x6e, 0x65, 0x0a, 0x23, 0x43, 0x34, 0x54
.byte 0x61, 0x69, 0x6c, 0x20, 0x57, 0x68, 0x69, 0x70, 0x23, 0x52, 0x20, 0x2b, 0x20, 0x23, 0x43, 0x34, 0x42, 0x6f, 0x6e, 0x65, 0x20, 0x43, 0x6c, 0x75, 0x62, 0x23, 0x52, 0x00, 0x23, 0x31, 0x32, 0x20
.byte 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x20, 0x4d, 0x6f, 0x76, 0x65, 0x73, 0x20, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x20, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x20, 0x31, 0x00, 0x00, 0x23, 0x2b, 0x23, 0x43
.byte 0x36, 0x4c, 0x65, 0x61, 0x72, 0x6e, 0x20, 0x48, 0x6f, 0x77, 0x20, 0x54, 0x79, 0x70, 0x65, 0x73, 0x20, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x20, 0x55, 0x70, 0x21, 0x23, 0x52, 0x0a, 0x41, 0x6c, 0x6c
.byte 0x20, 0x50, 0x6f, 0x6b, 0xe9, 0x6d, 0x6f, 0x6e, 0x20, 0x61, 0x72, 0x65, 0x20, 0x6f, 0x66, 0x20, 0x63, 0x65, 0x72, 0x74, 0x61, 0x69, 0x6e, 0x20, 0x74, 0x79, 0x70, 0x65, 0x73, 0x7e, 0x32, 0x63
.byte 0x20, 0x73, 0x75, 0x63, 0x68, 0x20, 0x61, 0x73, 0x0a, 0x23, 0x43, 0x32, 0x46, 0x69, 0x72, 0x65, 0x23, 0x52, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x23, 0x43, 0x35, 0x57, 0x61, 0x74, 0x65, 0x72, 0x23
.byte 0x52, 0x2e, 0x20, 0x49, 0x6e, 0x20, 0x61, 0x20, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x7e, 0x32, 0x63, 0x20, 0x74, 0x68, 0x65, 0x20, 0x64, 0x61, 0x6d, 0x61, 0x67, 0x65, 0x0a, 0x69, 0x6e, 0x66
.byte 0x6c, 0x69, 0x63, 0x74, 0x65, 0x64, 0x20, 0x64, 0x65, 0x70, 0x65, 0x6e, 0x64, 0x73, 0x20, 0x6f, 0x6e, 0x20, 0x68, 0x6f, 0x77, 0x20, 0x74, 0x68, 0x65, 0x20, 0x50, 0x6f, 0x6b, 0xe9, 0x6d, 0x6f
.byte 0x6e, 0x7e, 0x32, 0x37, 0x73, 0x0a, 0x74, 0x79, 0x70, 0x65, 0x20, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x73, 0x20, 0x75, 0x70, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6d
.byte 0x6f, 0x76, 0x65, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x0a, 0x46, 0x6f, 0x72, 0x20, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x7e, 0x32, 0x63, 0x20, 0x61, 0x20, 0x23
.byte 0x43, 0x32, 0x46, 0x69, 0x72, 0x65, 0x23, 0x52, 0x2d, 0x74, 0x79, 0x70, 0x65, 0x20, 0x50, 0x6f, 0x6b, 0xe9, 0x6d, 0x6f, 0x6e, 0x20, 0x69, 0x73, 0x0a, 0x77, 0x65, 0x61, 0x6b, 0x20, 0x61, 0x67
.byte 0x61, 0x69, 0x6e, 0x73, 0x74, 0x20, 0x23, 0x43, 0x35, 0x57, 0x61, 0x74, 0x65, 0x72, 0x23, 0x52, 0x2d, 0x74, 0x79, 0x70, 0x65, 0x20, 0x6d, 0x6f, 0x76, 0x65, 0x73, 0x2e, 0x0a, 0x45, 0x78, 0x70
.byte 0x6c, 0x6f, 0x69, 0x74, 0x20, 0x74, 0x79, 0x70, 0x65, 0x20, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x75, 0x70, 0x73, 0x20, 0x74, 0x6f, 0x20, 0x77, 0x69, 0x6e, 0x20, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65
.byte 0x73, 0x21, 0x00, 0x00, 0x23, 0x31, 0x31, 0x20, 0x54, 0x79, 0x70, 0x65, 0x73, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x75, 0x70, 0x73, 0x00, 0x00, 0x49, 0x66, 0x20, 0x79
.byte 0x6f, 0x75, 0x72, 0x20, 0x72, 0x65, 0x73, 0x63, 0x75, 0x65, 0x20, 0x74, 0x65, 0x61, 0x6d, 0x20, 0x69, 0x73, 0x20, 0x64, 0x65, 0x66, 0x65, 0x61, 0x74, 0x65, 0x64, 0x20, 0x69, 0x6e, 0x20, 0x61
.byte 0x0a, 0x64, 0x75, 0x6e, 0x67, 0x65, 0x6f, 0x6e, 0x7e, 0x32, 0x63, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x6c, 0x6f, 0x73, 0x65, 0x20, 0x73, 0x65, 0x76, 0x65, 0x72, 0x61, 0x6c, 0x20, 0x69, 0x74, 0x65
.byte 0x6d, 0x73, 0x20, 0x61, 0x6e, 0x64, 0x0a, 0x61, 0x6c, 0x6c, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x61, 0x72, 0x65, 0x20, 0x63, 0x61, 0x72
.byte 0x72, 0x79, 0x69, 0x6e, 0x67, 0x2e, 0x0a, 0x42, 0x65, 0x77, 0x61, 0x72, 0x65, 0x20, 0x6f, 0x66, 0x20, 0x77, 0x68, 0x61, 0x74, 0x20, 0x79, 0x6f, 0x75, 0x7e, 0x32, 0x37, 0x72, 0x65, 0x20, 0x63
.byte 0x61, 0x72, 0x72, 0x79, 0x69, 0x6e, 0x67, 0x20, 0x62, 0x65, 0x66, 0x6f, 0x72, 0x65, 0x0a, 0x79, 0x6f, 0x75, 0x20, 0x67, 0x6f, 0x20, 0x6f, 0x66, 0x66, 0x20, 0x6f, 0x6e, 0x20, 0x61, 0x20, 0x72
.byte 0x65, 0x73, 0x63, 0x75, 0x65, 0x20, 0x6f, 0x72, 0x20, 0x61, 0x6e, 0x20, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x0a, 0x55, 0x73, 0x65, 0x20, 0x23, 0x43, 0x35, 0x4b, 0x61, 0x6e, 0x67, 0x61
.byte 0x73, 0x6b, 0x68, 0x61, 0x6e, 0x20, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x23, 0x52, 0x20, 0x74, 0x6f, 0x20, 0x6b, 0x65, 0x65, 0x70, 0x0a, 0x69, 0x6e, 0x76, 0x61, 0x6c, 0x75, 0x61, 0x62
.byte 0x6c, 0x65, 0x20, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x73, 0x61, 0x66, 0x65, 0x6c, 0x79, 0x20, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x64, 0x2e, 0x0a, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x50, 0x6f, 0x6b
.byte 0xe9, 0x6d, 0x6f, 0x6e, 0x20, 0x52, 0x65, 0x73, 0x63, 0x75, 0x65, 0x20, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x2d, 0x00, 0x00, 0x23, 0x31, 0x30, 0x20
.byte 0x4d, 0x79, 0x73, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x75, 0x73, 0x20, 0x44, 0x75, 0x6e, 0x67, 0x65, 0x6f, 0x6e, 0x73, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x23, 0x2b, 0x23, 0x43, 0x36, 0x57, 0x6f, 0x6e
.byte 0x64, 0x65, 0x72, 0x20, 0x54, 0x69, 0x6c, 0x65, 0x73, 0x20, 0x52, 0x65, 0x73, 0x65, 0x74, 0x20, 0x41, 0x74, 0x74, 0x61, 0x63, 0x6b, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x44, 0x65, 0x66, 0x65, 0x6e
.byte 0x73, 0x65, 0x21, 0x23, 0x52, 0x0a, 0x49, 0x66, 0x20, 0x79, 0x6f, 0x75, 0x72, 0x20, 0x41, 0x74, 0x74, 0x61, 0x63, 0x6b, 0x20, 0x69, 0x73, 0x20, 0x6c, 0x6f, 0x77, 0x65, 0x72, 0x65, 0x64, 0x20
.byte 0x62, 0x79, 0x20, 0x61, 0x20, 0x66, 0x6f, 0x65, 0x7e, 0x32, 0x37, 0x73, 0x0a, 0x23, 0x43, 0x34, 0x47, 0x72, 0x6f, 0x77, 0x6c, 0x23, 0x52, 0x7e, 0x32, 0x63, 0x20, 0x6f, 0x72, 0x20, 0x79, 0x6f
.byte 0x75, 0x72, 0x20, 0x44, 0x65, 0x66, 0x65, 0x6e, 0x73, 0x65, 0x20, 0x69, 0x73, 0x20, 0x6c, 0x6f, 0x77, 0x65, 0x72, 0x65, 0x64, 0x0a, 0x62, 0x79, 0x20, 0x61, 0x20, 0x66, 0x6f, 0x65, 0x7e, 0x32
.byte 0x37, 0x73, 0x20, 0x23, 0x43, 0x34, 0x54, 0x61, 0x69, 0x6c, 0x20, 0x57, 0x68, 0x69, 0x70, 0x23, 0x52, 0x7e, 0x32, 0x63, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65
.byte 0x7e, 0x32, 0x63, 0x20, 0x74, 0x68, 0x65, 0x0a, 0x61, 0x66, 0x66, 0x65, 0x63, 0x74, 0x65, 0x64, 0x20, 0x73, 0x74, 0x61, 0x74, 0x20, 0x63, 0x61, 0x6e, 0x20, 0x62, 0x65, 0x20, 0x72, 0x65, 0x73
.byte 0x65, 0x74, 0x20, 0x74, 0x6f, 0x20, 0x6e, 0x6f, 0x72, 0x6d, 0x61, 0x6c, 0x20, 0x62, 0x79, 0x0a, 0x73, 0x74, 0x65, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x20, 0x6f, 0x6e, 0x20, 0x61, 0x20, 0x57, 0x6f
.byte 0x6e, 0x64, 0x65, 0x72, 0x20, 0x54, 0x69, 0x6c, 0x65, 0x20, 0x6f, 0x72, 0x20, 0x67, 0x6f, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x6f, 0x20, 0x74, 0x68, 0x65, 0x0a, 0x6e, 0x65, 0x78, 0x74, 0x20, 0x66
.byte 0x6c, 0x6f, 0x6f, 0x72, 0x2e, 0x20, 0x42, 0x65, 0x77, 0x61, 0x72, 0x65, 0x7e, 0x32, 0x63, 0x20, 0x65, 0x6e, 0x68, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x20, 0x73, 0x74, 0x61, 0x74, 0x73, 0x20, 0x61
.byte 0x72, 0x65, 0x0a, 0x61, 0x6c, 0x73, 0x6f, 0x20, 0x72, 0x65, 0x73, 0x65, 0x74, 0x20, 0x74, 0x6f, 0x20, 0x6e, 0x6f, 0x72, 0x6d, 0x61, 0x6c, 0x21, 0x00, 0x00, 0x00, 0x00, 0x23, 0x39, 0x20, 0x57
.byte 0x6f, 0x6e, 0x64, 0x65, 0x72, 0x20, 0x54, 0x69, 0x6c, 0x65, 0x73, 0x00, 0x23, 0x2b, 0x23, 0x43, 0x36, 0x54, 0x68, 0x65, 0x20, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x73, 0x20, 0x6f, 0x66
.byte 0x20, 0x55, 0x73, 0x69, 0x6e, 0x67, 0x20, 0x4d, 0x6f, 0x76, 0x65, 0x73, 0x23, 0x52, 0x0a, 0x49, 0x66, 0x20, 0x61, 0x20, 0x6d, 0x6f, 0x76, 0x65, 0x20, 0x69, 0x73, 0x20, 0x75, 0x73, 0x65, 0x64
.byte 0x20, 0x6f, 0x6e, 0x20, 0x61, 0x20, 0x66, 0x6f, 0x65, 0x7e, 0x32, 0x63, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x69, 0x74, 0x20, 0x69, 0x73, 0x0a, 0x64, 0x65, 0x66, 0x65, 0x61, 0x74, 0x65, 0x64
.byte 0x7e, 0x32, 0x63, 0x20, 0x23, 0x43, 0x35, 0x79, 0x6f, 0x75, 0x20, 0x65, 0x61, 0x72, 0x6e, 0x20, 0x6d, 0x6f, 0x72, 0x65, 0x20, 0x45, 0x78, 0x70, 0x2e, 0x20, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x73
.byte 0x23, 0x52, 0x21, 0x0a, 0x41, 0x20, 0x6d, 0x6f, 0x76, 0x65, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x20, 0x68, 0x61, 0x73, 0x20, 0x74, 0x6f, 0x20, 0x62, 0x65, 0x20, 0x75, 0x73, 0x65, 0x64, 0x20, 0x6f
.byte 0x6e, 0x63, 0x65, 0x20, 0x6f, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x0a, 0x66, 0x6f, 0x65, 0x3a, 0x20, 0x61, 0x66, 0x74, 0x65, 0x72, 0x20, 0x74, 0x68, 0x61, 0x74, 0x20, 0x69, 0x74, 0x20, 0x63, 0x61
.byte 0x6e, 0x20, 0x62, 0x65, 0x20, 0x64, 0x65, 0x66, 0x65, 0x61, 0x74, 0x65, 0x64, 0x20, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x20, 0x61, 0x0a, 0x72, 0x65, 0x67, 0x75, 0x6c, 0x61, 0x72, 0x20, 0x61, 0x74
.byte 0x74, 0x61, 0x63, 0x6b, 0x20, 0x74, 0x6f, 0x20, 0x65, 0x61, 0x72, 0x6e, 0x20, 0x6d, 0x6f, 0x72, 0x65, 0x20, 0x45, 0x78, 0x70, 0x2e, 0x20, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x2e, 0x0a, 0x4d
.byte 0x6f, 0x76, 0x65, 0x73, 0x20, 0x61, 0x72, 0x65, 0x20, 0x61, 0x6c, 0x73, 0x6f, 0x20, 0x6d, 0x6f, 0x72, 0x65, 0x20, 0x6c, 0x69, 0x6b, 0x65, 0x6c, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x62, 0x65, 0x63
.byte 0x6f, 0x6d, 0x65, 0x0a, 0x23, 0x43, 0x35, 0x63, 0x72, 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x20, 0x68, 0x69, 0x74, 0x73, 0x23, 0x52, 0x21, 0x20, 0x44, 0x6f, 0x6e, 0x7e, 0x32, 0x37, 0x74, 0x20
.byte 0x6f, 0x76, 0x65, 0x72, 0x75, 0x73, 0x65, 0x20, 0x74, 0x68, 0x65, 0x6d, 0x7e, 0x32, 0x63, 0x20, 0x74, 0x68, 0x6f, 0x75, 0x67, 0x68, 0x21, 0x00, 0x23, 0x38, 0x20, 0x4c, 0x65, 0x74, 0x7e, 0x32
.byte 0x37, 0x73, 0x20, 0x55, 0x73, 0x65, 0x20, 0x4d, 0x6f, 0x76, 0x65, 0x73, 0x21, 0x00, 0x00, 0x00, 0x23, 0x2b, 0x23, 0x43, 0x36, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x20, 0x59, 0x6f, 0x75, 0x72
.byte 0x20, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x23, 0x52, 0x0a, 0x23, 0x2b, 0x23, 0x43, 0x36, 0x74, 0x6f, 0x20, 0x53, 0x75, 0x69, 0x74, 0x20
.byte 0x59, 0x6f, 0x75, 0x72, 0x20, 0x50, 0x6c, 0x61, 0x79, 0x20, 0x53, 0x74, 0x79, 0x6c, 0x65, 0x21, 0x23, 0x52, 0x0a, 0x50, 0x72, 0x65, 0x73, 0x73, 0x20, 0x87, 0x51, 0x20, 0x74, 0x6f, 0x20, 0x6f
.byte 0x70, 0x65, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6d, 0x65, 0x6e, 0x75, 0x7e, 0x32, 0x63, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x63, 0x68, 0x6f, 0x6f, 0x73, 0x65, 0x20, 0x23, 0x43, 0x36, 0x4f
.byte 0x74, 0x68, 0x65, 0x72, 0x73, 0x23, 0x52, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x23, 0x43, 0x36, 0x47, 0x61, 0x6d, 0x65, 0x20, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x23, 0x52, 0x2e, 0x0a, 0x59
.byte 0x6f, 0x75, 0x20, 0x63, 0x61, 0x6e, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x20, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x20, 0x74, 0x6f, 0x20, 0x73, 0x75, 0x69, 0x74, 0x20, 0x74
.byte 0x68, 0x65, 0x20, 0x77, 0x61, 0x79, 0x0a, 0x79, 0x6f, 0x75, 0x20, 0x70, 0x6c, 0x61, 0x79, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x23, 0x37, 0x20, 0x47, 0x61, 0x6d, 0x65, 0x20, 0x4f, 0x70, 0x74, 0x69
.byte 0x6f, 0x6e, 0x73, 0x00, 0x23, 0x2b, 0x23, 0x43, 0x36, 0x49, 0x6e, 0x76, 0x65, 0x73, 0x74, 0x69, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x55, 0x6e, 0x64, 0x65, 0x72, 0x20, 0x57, 0x61
.byte 0x79, 0x20, 0x69, 0x6e, 0x74, 0x6f, 0x23, 0x52, 0x0a, 0x23, 0x2b, 0x23, 0x43, 0x36, 0x52, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x20, 0x52, 0x61, 0x73, 0x68, 0x20, 0x6f, 0x66, 0x20, 0x4e, 0x61, 0x74
.byte 0x75, 0x72, 0x61, 0x6c, 0x20, 0x44, 0x69, 0x73, 0x61, 0x73, 0x74, 0x65, 0x72, 0x73, 0x23, 0x52, 0x0a, 0x50, 0x6f, 0x6b, 0xe9, 0x6d, 0x6f, 0x6e, 0x20, 0x69, 0x6e, 0x20, 0x61, 0x66, 0x66, 0x65
.byte 0x63, 0x74, 0x65, 0x64, 0x20, 0x61, 0x72, 0x65, 0x61, 0x73, 0x20, 0x61, 0x74, 0x74, 0x61, 0x63, 0x6b, 0x20, 0x61, 0x6e, 0x79, 0x0a, 0x6f, 0x75, 0x74, 0x73, 0x69, 0x64, 0x65, 0x72, 0x20, 0x77
.byte 0x69, 0x74, 0x68, 0x6f, 0x75, 0x74, 0x20, 0x68, 0x65, 0x73, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x20, 0x53, 0x6f, 0x6d, 0x65, 0x20, 0x62, 0x65, 0x6c, 0x69, 0x65, 0x76, 0x65, 0x0a
.byte 0x61, 0x20, 0x6d, 0x79, 0x73, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x75, 0x73, 0x20, 0x66, 0x6f, 0x72, 0x63, 0x65, 0x20, 0x69, 0x73, 0x20, 0x62, 0x65, 0x68, 0x69, 0x6e, 0x64, 0x20, 0x74, 0x68, 0x65
.byte 0x69, 0x72, 0x0a, 0x62, 0x65, 0x68, 0x61, 0x76, 0x69, 0x6f, 0x72, 0x2e, 0x20, 0x4f, 0x6e, 0x65, 0x20, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x20, 0x62, 0x6c, 0x61, 0x6d, 0x65, 0x64, 0x20, 0x44
.byte 0x69, 0x67, 0x6c, 0x65, 0x74, 0x74, 0x0a, 0x66, 0x6f, 0x72, 0x20, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x61, 0x72, 0x74, 0x68, 0x71, 0x75, 0x61, 0x6b, 0x65
.byte 0x73, 0x7e, 0x32, 0x63, 0x20, 0x62, 0x75, 0x74, 0x20, 0x74, 0x68, 0x65, 0x0a, 0x69, 0x6e, 0x76, 0x65, 0x73, 0x74, 0x69, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x20, 0x74, 0x65, 0x61, 0x6d, 0x20
.byte 0x69, 0x73, 0x20, 0x73, 0x6b, 0x65, 0x70, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x2e, 0x00, 0x00, 0x00, 0x23, 0x36, 0x20, 0x52, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x20, 0x4e, 0x61, 0x74, 0x75, 0x72, 0x61
.byte 0x6c, 0x20, 0x44, 0x69, 0x73, 0x61, 0x73, 0x74, 0x65, 0x72, 0x73, 0x00, 0x23, 0x2b, 0x23, 0x43, 0x36, 0x53, 0x65, 0x65, 0x64, 0x73, 0x20, 0x43, 0x61, 0x6e, 0x20, 0x42, 0x65, 0x20, 0x54, 0x68
.byte 0x72, 0x6f, 0x77, 0x6e, 0x7e, 0x32, 0x63, 0x20, 0x54, 0x6f, 0x6f, 0x21, 0x23, 0x52, 0x0a, 0x53, 0x65, 0x65, 0x64, 0x73, 0x20, 0x61, 0x72, 0x65, 0x20, 0x75, 0x73, 0x75, 0x61, 0x6c, 0x6c, 0x79
.byte 0x20, 0x6d, 0x65, 0x61, 0x6e, 0x74, 0x20, 0x74, 0x6f, 0x20, 0x62, 0x65, 0x20, 0x65, 0x61, 0x74, 0x65, 0x6e, 0x2e, 0x0a, 0x42, 0x75, 0x74, 0x20, 0x64, 0x69, 0x64, 0x20, 0x79, 0x6f, 0x75, 0x20
.byte 0x6b, 0x6e, 0x6f, 0x77, 0x3f, 0x20, 0x54, 0x68, 0x65, 0x79, 0x20, 0x63, 0x61, 0x6e, 0x20, 0x61, 0x6c, 0x73, 0x6f, 0x20, 0x62, 0x65, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x77, 0x6e, 0x0a, 0x61, 0x74
.byte 0x20, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x20, 0x50, 0x6f, 0x6b, 0xe9, 0x6d, 0x6f, 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x75, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x20, 0x74, 0x68, 0x65, 0x69, 0x72, 0x20, 0x65
.byte 0x66, 0x66, 0x65, 0x63, 0x74, 0x73, 0x2e, 0x0a, 0x54, 0x6f, 0x73, 0x73, 0x20, 0x73, 0x65, 0x65, 0x64, 0x73, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x64, 0x6f, 0x6e, 0x7e, 0x32, 0x37, 0x74, 0x20, 0x77
.byte 0x61, 0x6e, 0x74, 0x20, 0x74, 0x6f, 0x20, 0x65, 0x61, 0x74, 0x20, 0x61, 0x74, 0x20, 0x66, 0x6f, 0x65, 0x73, 0x21, 0x0a, 0x54, 0x68, 0x72, 0x6f, 0x77, 0x20, 0x67, 0x6f, 0x6f, 0x64, 0x20, 0x73
.byte 0x65, 0x65, 0x64, 0x73, 0x20, 0x61, 0x74, 0x20, 0x66, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x73, 0x21, 0x0a, 0x44, 0x6f, 0x6e, 0x7e, 0x32, 0x37, 0x74, 0x20, 0x62, 0x65, 0x20, 0x61, 0x66, 0x72, 0x61
.byte 0x69, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x77, 0x20, 0x79, 0x6f, 0x75, 0x72, 0x20, 0x73, 0x65, 0x65, 0x64, 0x73, 0x21, 0x00, 0x23, 0x35, 0x20, 0x54, 0x68, 0x72, 0x6f, 0x77
.byte 0x20, 0x53, 0x65, 0x65, 0x64, 0x73, 0x21, 0x00, 0x23, 0x2b, 0x23, 0x43, 0x36, 0x45, 0x61, 0x74, 0x20, 0x53, 0x6f, 0x6d, 0x65, 0x74, 0x68, 0x69, 0x6e, 0x67, 0x20, 0x57, 0x68, 0x65, 0x6e, 0x20
.byte 0x59, 0x6f, 0x75, 0x20, 0x47, 0x65, 0x74, 0x20, 0x48, 0x75, 0x6e, 0x67, 0x72, 0x79, 0x21, 0x23, 0x52, 0x0a, 0x57, 0x68, 0x69, 0x6c, 0x65, 0x20, 0x79, 0x6f, 0x75, 0x7e, 0x32, 0x37, 0x72, 0x65
.byte 0x20, 0x65, 0x78, 0x70, 0x6c, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x61, 0x20, 0x64, 0x75, 0x6e, 0x67, 0x65, 0x6f, 0x6e, 0x7e, 0x32, 0x63, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x77, 0x69, 0x6c, 0x6c
.byte 0x0a, 0x67, 0x65, 0x74, 0x20, 0x70, 0x72, 0x6f, 0x67, 0x72, 0x65, 0x73, 0x73, 0x69, 0x76, 0x65, 0x6c, 0x79, 0x20, 0x68, 0x75, 0x6e, 0x67, 0x72, 0x79, 0x20, 0x28, 0x79, 0x6f, 0x75, 0x72, 0x20
.byte 0x42, 0x65, 0x6c, 0x6c, 0x79, 0x20, 0x67, 0x6f, 0x65, 0x73, 0x0a, 0x64, 0x6f, 0x77, 0x6e, 0x29, 0x2e, 0x20, 0x49, 0x66, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x62, 0x65, 0x63, 0x6f, 0x6d, 0x65, 0x20
.byte 0x66, 0x61, 0x6d, 0x69, 0x73, 0x68, 0x65, 0x64, 0x7e, 0x32, 0x63, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x77, 0x69, 0x6c, 0x6c, 0x0a, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x75, 0x61, 0x6c, 0x6c, 0x79, 0x20
.byte 0x6c, 0x6f, 0x73, 0x65, 0x20, 0x48, 0x50, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x20, 0x66, 0x61, 0x69, 0x6e, 0x74, 0x2e, 0x0a, 0x54, 0x68, 0x61, 0x74, 0x7e, 0x32, 0x37, 0x73
.byte 0x20, 0x77, 0x68, 0x79, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x73, 0x68, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x65, 0x61, 0x74, 0x20, 0x73, 0x6f, 0x6d, 0x65, 0x74, 0x68, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x6f
.byte 0x20, 0x66, 0x69, 0x6c, 0x6c, 0x0a, 0x79, 0x6f, 0x75, 0x72, 0x20, 0x42, 0x65, 0x6c, 0x6c, 0x79, 0x21, 0x20, 0x59, 0x6f, 0x75, 0x20, 0x63, 0x61, 0x6e, 0x20, 0x61, 0x6c, 0x77, 0x61, 0x79, 0x73
.byte 0x20, 0x62, 0x75, 0x79, 0x20, 0x66, 0x6f, 0x6f, 0x64, 0x20, 0x61, 0x74, 0x20, 0x74, 0x68, 0x65, 0x0a, 0x23, 0x43, 0x35, 0x4b, 0x65, 0x63, 0x6c, 0x65, 0x6f, 0x6e, 0x20, 0x53, 0x68, 0x6f, 0x70
.byte 0x23, 0x52, 0x2e, 0x00, 0x23, 0x34, 0x20, 0x47, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x48, 0x75, 0x6e, 0x67, 0x72, 0x79, 0x00, 0x00, 0x00, 0x49, 0x66, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x77
.byte 0x61, 0x6e, 0x74, 0x20, 0x74, 0x6f, 0x20, 0x67, 0x6f, 0x20, 0x6f, 0x6e, 0x20, 0x61, 0x20, 0x72, 0x65, 0x73, 0x63, 0x75, 0x65, 0x20, 0x6a, 0x6f, 0x62, 0x20, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x64
.byte 0x0a
.byte 0x6f, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x42, 0x75, 0x6c, 0x6c, 0x65, 0x74, 0x69, 0x6e, 0x20, 0x42, 0x6f, 0x61, 0x72, 0x64, 0x20, 0x61, 0x74, 0x20, 0x74, 0x68, 0x65, 0x20, 0x50, 0x65
.byte 0x6c, 0x69, 0x70, 0x70, 0x65, 0x72, 0x20, 0x50, 0x6f, 0x73, 0x74, 0x0a
.byte 0x4f, 0x66, 0x66, 0x69, 0x63, 0x65, 0x7e, 0x32, 0x63, 0x20, 0x6f, 0x72, 0x20, 0x6f, 0x6e, 0x65, 0x20, 0x74, 0x68, 0x61
.byte 0x74, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x64, 0x65, 0x6c, 0x69, 0x76, 0x65, 0x72, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x79, 0x6f, 0x75, 0x72, 0x0a
.byte 0x4d, 0x61, 0x69, 0x6c, 0x62, 0x6f, 0x78, 0x7e
.byte 0x32, 0x63, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x66, 0x69, 0x72, 0x73, 0x74, 0x20, 0x6e, 0x65, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x23, 0x43, 0x36, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x23, 0x52
.byte 0x20, 0x74, 0x68, 0x65, 0x20, 0x6a, 0x6f, 0x62, 0x7e, 0x32, 0x63, 0x0a
.byte 0x74, 0x68, 0x65, 0x6e, 0x20, 0x63, 0x68, 0x6f, 0x6f, 0x73, 0x65, 0x20, 0x23, 0x43, 0x36, 0x54, 0x61, 0x6b, 0x65, 0x20
.byte 0x4a, 0x6f, 0x62, 0x23, 0x52, 0x2e, 0x20, 0x4f, 0x6e, 0x6c, 0x79, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x20, 0x77, 0x69, 0x6c, 0x6c, 0x20, 0x79, 0x6f, 0x75, 0x0a
.byte 0x62, 0x65, 0x20, 0x61, 0x62, 0x6c
.byte 0x65, 0x20, 0x74, 0x6f, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x20, 0x74, 0x68, 0x61, 0x74, 0x20, 0x6a, 0x6f, 0x62, 0x2e, 0x0a
.byte 0x54, 0x72, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x64, 0x6f, 0x20
.byte 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x65, 0x64, 0x20, 0x6a, 0x6f, 0x62, 0x73, 0x20, 0x71, 0x75, 0x69, 0x63, 0x6b, 0x6c, 0x79, 0x21, 0x0a, 0x20, 0x20, 0x20
.byte 0x2d, 0x20, 0x50, 0x6f, 0x6b, 0xe9
.byte 0x6d, 0x6f, 0x6e, 0x20, 0x52, 0x65, 0x73, 0x63, 0x75, 0x65, 0x20, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x2d, 0x00, 0x00, 0x00, 0x23, 0x33, 0x20, 0x41
.byte 0x63, 0x63, 0x65, 0x70, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x52, 0x65, 0x73, 0x63, 0x75, 0x65, 0x20, 0x4a, 0x6f, 0x62, 0x73, 0x00, 0x00, 0x00, 0x00, 0x23, 0x2b, 0x23, 0x43, 0x36, 0x53, 0x61, 0x76
.byte 0x69, 0x6e, 0x67, 0x20, 0x59, 0x6f, 0x75, 0x72, 0x20, 0x41, 0x64, 0x76, 0x65, 0x6e, 0x74, 0x75, 0x72, 0x65, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x50, 0x6f, 0x6b, 0xe9, 0x6d, 0x6f, 0x6e, 0x20, 0x4e
.byte 0x65, 0x77, 0x73, 0x23, 0x52, 0x0a
.byte 0x59, 0x6f, 0x75, 0x20, 0x63, 0x61, 0x6e, 0x20, 0x73, 0x61, 0x76, 0x65, 0x20, 0x79, 0x6f, 0x75, 0x72, 0x20, 0x61, 0x64, 0x76, 0x65, 0x6e, 0x74, 0x75, 0x72
.byte 0x65, 0x20, 0x62, 0x79, 0x20, 0x67, 0x6f, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x6f, 0x0a, 0x79, 0x6f, 0x75, 0x72, 0x20, 0x62, 0x65, 0x64, 0x2e, 0x20, 0x47, 0x65, 0x74, 0x20, 0x69, 0x6e, 0x20, 0x74
.byte 0x68, 0x65, 0x20, 0x68, 0x61, 0x62, 0x69, 0x74, 0x20, 0x6f, 0x66, 0x20, 0x73, 0x61, 0x76, 0x69, 0x6e, 0x67, 0x20, 0x6f, 0x66, 0x74, 0x65, 0x6e, 0x2e, 0x0a
.byte 0x59, 0x6f, 0x75, 0x20, 0x73, 0x68
.byte 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x61, 0x6c, 0x73, 0x6f, 0x20, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x20, 0x6f, 0x6c, 0x64, 0x20, 0x50, 0x6f, 0x6b, 0xe9, 0x6d, 0x6f, 0x6e, 0x20, 0x4e, 0x65, 0x77, 0x73
.byte 0x2e, 0x0a
.byte 0x49, 0x66, 0x20, 0x79, 0x6f, 0x75, 0x72, 0x20, 0x4d, 0x61, 0x69, 0x6c, 0x62, 0x6f, 0x78, 0x20, 0x69, 0x73, 0x20, 0x66, 0x75, 0x6c, 0x6c, 0x7e, 0x32, 0x63, 0x20, 0x79, 0x6f, 0x75
.byte 0x20, 0x77, 0x6f, 0x6e, 0x7e, 0x32, 0x37, 0x74, 0x20, 0x67, 0x65, 0x74, 0x20, 0x74, 0x68, 0x65, 0x0a
.byte 0x6c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x20, 0x69, 0x73, 0x73, 0x75, 0x65, 0x20, 0x6f, 0x66
.byte 0x20, 0x74, 0x68, 0x65, 0x20, 0x6e, 0x65, 0x77, 0x73, 0x20, 0x6f, 0x72, 0x20, 0x61, 0x6e, 0x79, 0x20, 0x6a, 0x6f, 0x62, 0x20, 0x6d, 0x61, 0x69, 0x6c, 0x2e, 0x0a
.byte 0x43, 0x68, 0x65, 0x63, 0x6b
.byte 0x20, 0x74, 0x68, 0x65, 0x20, 0x4d, 0x61, 0x69, 0x6c, 0x62, 0x6f, 0x78, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x20, 0x6f, 0x6c, 0x64, 0x20, 0x6e, 0x65, 0x77, 0x73, 0x21, 0x0a, 0x20, 0x20, 0x20
.byte 0x2d, 0x20, 0x50, 0x6f, 0x6b, 0xe9, 0x6d, 0x6f, 0x6e, 0x20, 0x52, 0x65, 0x73, 0x63, 0x75, 0x65, 0x20, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f
.byte 0x6e, 0x20, 0x2d, 0x00, 0x23, 0x32, 0x20, 0x52, 0x65, 0x73, 0x63, 0x75, 0x65, 0x20, 0x54, 0x65, 0x61, 0x6d, 0x20, 0x42, 0x61, 0x73, 0x69, 0x63, 0x73, 0x00, 0x00, 0x00, 0x23, 0x2b, 0x23, 0x43
.byte 0x36, 0x54, 0x6f, 0x20, 0x41, 0x6c, 0x6c, 0x20, 0x4e, 0x65, 0x77, 0x20, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x21, 0x23, 0x52, 0x0a, 0x59, 0x6f, 0x75, 0x72, 0x20, 0x62, 0x61, 0x64, 0x67
.byte 0x65, 0x20, 0x68, 0x61, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x70, 0x6f, 0x77, 0x65, 0x72, 0x20, 0x74, 0x6f, 0x20, 0x73, 0x65, 0x6e, 0x64, 0x20, 0x62, 0x61, 0x63, 0x6b, 0x0a, 0x74, 0x6f, 0x20
.byte 0x74, 0x6f, 0x77, 0x6e, 0x20, 0x61, 0x6e, 0x79, 0x20, 0x50, 0x6f, 0x6b, 0xe9, 0x6d, 0x6f, 0x6e, 0x20, 0x79, 0x6f, 0x75, 0x7e, 0x32, 0x37, 0x76, 0x65, 0x20, 0x72, 0x65, 0x73, 0x63, 0x75, 0x65
.byte 0x64, 0x2e, 0x20, 0x4a, 0x75, 0x73, 0x74, 0x0a
.byte 0x68, 0x6f, 0x6c, 0x64, 0x20, 0x74, 0x68, 0x65, 0x20, 0x62, 0x61, 0x64, 0x67, 0x65, 0x20, 0x75, 0x70, 0x7e, 0x32, 0x63, 0x20, 0x61, 0x6e, 0x64
.byte 0x20, 0x69, 0x74, 0x20, 0x64, 0x6f, 0x65, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x72, 0x65, 0x73, 0x74, 0x2e, 0x0a
.byte 0x42, 0x79, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x69, 0x6e, 0x67
.byte 0x20, 0x72, 0x65, 0x73, 0x63, 0x75, 0x65, 0x20, 0x6a, 0x6f, 0x62, 0x73, 0x7e, 0x32, 0x63, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x77, 0x69, 0x6c, 0x6c, 0x20, 0x62, 0x65, 0x0a
.byte 0x61, 0x77, 0x61, 0x72
.byte 0x64, 0x65, 0x64, 0x20, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x20, 0x74, 0x68, 0x61, 0x74, 0x20, 0x72, 0x61, 0x69, 0x73, 0x65, 0x20, 0x79, 0x6f, 0x75, 0x72, 0x20, 0x74, 0x65, 0x61, 0x6d, 0x7e
.byte 0x32, 0x37, 0x73, 0x0a
.byte 0x72, 0x61, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x2e, 0x20, 0x41, 0x69, 0x6d, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x74, 0x68, 0x65, 0x20, 0x42, 0x72, 0x6f, 0x6e, 0x7a, 0x65, 0x20
.byte 0x52, 0x61, 0x6e, 0x6b, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x6e, 0x6f, 0x77, 0x21, 0x0a, 0x20, 0x20, 0x20
.byte 0x2d, 0x20, 0x50, 0x6f, 0x6b, 0xe9, 0x6d, 0x6f, 0x6e, 0x20, 0x52, 0x65, 0x73, 0x63, 0x75
.byte 0x65, 0x20, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x23, 0x31, 0x20, 0x57, 0x65, 0x6c, 0x63, 0x6f, 0x6d, 0x65, 0x20, 0x74
.byte 0x6f, 0x20, 0x61, 0x20, 0x52, 0x65, 0x73, 0x63, 0x75, 0x65, 0x20, 0x54, 0x65, 0x61, 0x6d, 0x21, 0x00, 0x00, 0x00, 0x00, 0x70, 0x6b, 0x73, 0x64, 0x69, 0x72, 0x30, 0x00

10834
data/data_80F4278.s Normal file

File diff suppressed because it is too large Load Diff

View File

@ -2,4 +2,972 @@
.global gUnknown_8270000
gUnknown_8270000: @ 8270000
.incbin "baserom.gba", 0x270000, 0x2724
@ replacing .incbin "baserom.gba", 0x00270000, 0x2724
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x04, 0x00, 0x07, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x8c, 0x34, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x95, 0x1b, 0x00, 0x03
.byte 0xa5, 0x1c, 0x00, 0x03
.byte 0xd9, 0x1d, 0x00, 0x03
.byte 0xad, 0x1e, 0x00, 0x03
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0xff, 0xff
.byte 0xff, 0xff, 0xff, 0xff
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x41, 0x3e
.byte 0x42, 0x3c, 0x44, 0x3b
.byte 0x48, 0x37, 0x40, 0x30
.byte 0x46, 0x38, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x03, 0x00, 0x00, 0x00
.byte 0x02, 0x00, 0x0a, 0x00
.byte 0x1a, 0x00, 0x09, 0x00
.byte 0x09, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x03, 0x00, 0x00, 0x00
.byte 0x17, 0x00, 0x06, 0x00
.byte 0x05, 0x00, 0x03, 0x00
.byte 0x03, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x03, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x03, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x80, 0x42, 0x0d, 0x08
.byte 0x70, 0x42, 0x0d, 0x08
.byte 0x68, 0x42, 0x0d, 0x08
.byte 0x60, 0x42, 0x0d, 0x08
.byte 0x5c, 0x42, 0x0d, 0x08
.byte 0x58, 0x42, 0x0d, 0x08
.byte 0x50, 0x42, 0x0d, 0x08
.byte 0x48, 0x42, 0x0d, 0x08
.byte 0x3c, 0x42, 0x0d, 0x08
.byte 0x30, 0x42, 0x0d, 0x08
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x20, 0x43, 0x0d, 0x08
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x02, 0x00, 0x0f, 0x00
.byte 0x1a, 0x00, 0x05, 0x00
.byte 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x40, 0x00, 0x00, 0x00
.byte 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x03, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x03, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x02, 0x00, 0x00, 0x00
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x10, 0x00, 0x00, 0x00
.byte 0x11, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x01, 0x00, 0x00, 0x00
.byte 0xde, 0xff, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x28, 0x76, 0x0e, 0x08
.byte 0x05, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x03, 0x00, 0x00, 0x00
.byte 0x0c, 0x00, 0x00, 0x00
.byte 0x0c, 0x00, 0x00, 0x00
.byte 0x0e, 0x00, 0x00, 0x00
.byte 0x0e, 0x00, 0x00, 0x00
.byte 0x0d, 0x00, 0x00, 0x00
.byte 0x0e, 0x00, 0x00, 0x00
.byte 0x0c, 0x00, 0x00, 0x00
.byte 0x0d, 0x00, 0x00, 0x00
.byte 0x0d, 0x00, 0x00, 0x00
.byte 0x0b, 0x00, 0x00, 0x00
.byte 0x0b, 0x00, 0x00, 0x00
.byte 0x0b, 0x00, 0x00, 0x00
.byte 0x10, 0x00, 0x00, 0x00
.byte 0x11, 0x00, 0x00, 0x00
.byte 0x12, 0x00, 0x00, 0x00
.byte 0x13, 0x00, 0x00, 0x00
.byte 0x14, 0x00, 0x00, 0x00
.byte 0x15, 0x00, 0x00, 0x00
.byte 0x1a, 0x00, 0x00, 0x00
.byte 0x18, 0x00, 0x00, 0x00
.byte 0x1b, 0x00, 0x00, 0x00
.byte 0x16, 0x00, 0x00, 0x00
.byte 0x19, 0x00, 0x00, 0x00
.byte 0x17, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x64, 0x00, 0x64, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x15, 0x00, 0x16, 0x00
.byte 0x15, 0x00, 0x16, 0x00
.byte 0x02, 0x03, 0x01, 0x01
.byte 0x00, 0x00, 0x00, 0x02
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x02, 0x00, 0x0d, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x28, 0x00, 0x00, 0x00
.byte 0x28, 0x00, 0x00, 0x00
.byte 0x50, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x71, 0x02, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0xdf, 0xb0, 0x08, 0x99
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x90, 0x63, 0x11, 0x08
.byte 0x6c, 0x63, 0x11, 0x08
.byte 0x3c, 0x63, 0x11, 0x08
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0xa0, 0xb6, 0x03, 0x02
.byte 0xf8, 0xb6, 0x03, 0x02
.byte 0x50, 0xb7, 0x03, 0x02
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x74, 0xfe, 0x26, 0x08
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0xbc, 0xb4, 0x03, 0x02
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x43, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x43, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0xc0, 0xb7, 0x03, 0x02
.byte 0xc0, 0xb7, 0x03, 0x02
.byte 0xc8, 0xb7, 0x03, 0x02
.byte 0xc8, 0xb7, 0x03, 0x02
.byte 0xd0, 0xb7, 0x03, 0x02
.byte 0xd0, 0xb7, 0x03, 0x02
.byte 0xd8, 0xb7, 0x03, 0x02
.byte 0xd8, 0xb7, 0x03, 0x02
.byte 0xe0, 0xb7, 0x03, 0x02
.byte 0xe0, 0xb7, 0x03, 0x02
.byte 0xe8, 0xb7, 0x03, 0x02
.byte 0xe8, 0xb7, 0x03, 0x02
.byte 0xf0, 0xb7, 0x03, 0x02
.byte 0xf0, 0xb7, 0x03, 0x02
.byte 0xf8, 0xb7, 0x03, 0x02
.byte 0xf8, 0xb7, 0x03, 0x02
.byte 0x00, 0xb8, 0x03, 0x02
.byte 0x00, 0xb8, 0x03, 0x02
.byte 0x08, 0xb8, 0x03, 0x02
.byte 0x08, 0xb8, 0x03, 0x02
.byte 0x10, 0xb8, 0x03, 0x02
.byte 0x10, 0xb8, 0x03, 0x02
.byte 0x18, 0xb8, 0x03, 0x02
.byte 0x18, 0xb8, 0x03, 0x02
.byte 0x20, 0xb8, 0x03, 0x02
.byte 0x20, 0xb8, 0x03, 0x02
.byte 0x28, 0xb8, 0x03, 0x02
.byte 0x28, 0xb8, 0x03, 0x02
.byte 0x30, 0xb8, 0x03, 0x02
.byte 0x30, 0xb8, 0x03, 0x02
.byte 0x38, 0xb8, 0x03, 0x02
.byte 0x38, 0xb8, 0x03, 0x02
.byte 0x40, 0xb8, 0x03, 0x02
.byte 0x40, 0xb8, 0x03, 0x02
.byte 0x48, 0xb8, 0x03, 0x02
.byte 0x48, 0xb8, 0x03, 0x02
.byte 0x50, 0xb8, 0x03, 0x02
.byte 0x50, 0xb8, 0x03, 0x02
.byte 0x58, 0xb8, 0x03, 0x02
.byte 0x58, 0xb8, 0x03, 0x02
.byte 0x60, 0xb8, 0x03, 0x02
.byte 0x60, 0xb8, 0x03, 0x02
.byte 0x68, 0xb8, 0x03, 0x02
.byte 0x68, 0xb8, 0x03, 0x02
.byte 0x70, 0xb8, 0x03, 0x02
.byte 0x70, 0xb8, 0x03, 0x02
.byte 0x78, 0xb8, 0x03, 0x02
.byte 0x78, 0xb8, 0x03, 0x02
.byte 0x80, 0xb8, 0x03, 0x02
.byte 0x80, 0xb8, 0x03, 0x02
.byte 0x88, 0xb8, 0x03, 0x02
.byte 0x88, 0xb8, 0x03, 0x02
.byte 0x90, 0xb8, 0x03, 0x02
.byte 0x90, 0xb8, 0x03, 0x02
.byte 0x98, 0xb8, 0x03, 0x02
.byte 0x98, 0xb8, 0x03, 0x02
.byte 0xa0, 0xb8, 0x03, 0x02
.byte 0xa0, 0xb8, 0x03, 0x02
.byte 0xa8, 0xb8, 0x03, 0x02
.byte 0xa8, 0xb8, 0x03, 0x02
.byte 0xb0, 0xb8, 0x03, 0x02
.byte 0xb0, 0xb8, 0x03, 0x02
.byte 0xb8, 0xb8, 0x03, 0x02
.byte 0xb8, 0xb8, 0x03, 0x02
.byte 0xc0, 0xb8, 0x03, 0x02
.byte 0xc0, 0xb8, 0x03, 0x02
.byte 0xc8, 0xb8, 0x03, 0x02
.byte 0xc8, 0xb8, 0x03, 0x02
.byte 0xd0, 0xb8, 0x03, 0x02
.byte 0xd0, 0xb8, 0x03, 0x02
.byte 0xd8, 0xb8, 0x03, 0x02
.byte 0xd8, 0xb8, 0x03, 0x02
.byte 0xe0, 0xb8, 0x03, 0x02
.byte 0xe0, 0xb8, 0x03, 0x02
.byte 0xe8, 0xb8, 0x03, 0x02
.byte 0xe8, 0xb8, 0x03, 0x02
.byte 0xf0, 0xb8, 0x03, 0x02
.byte 0xf0, 0xb8, 0x03, 0x02
.byte 0xf8, 0xb8, 0x03, 0x02
.byte 0xf8, 0xb8, 0x03, 0x02
.byte 0x00, 0xb9, 0x03, 0x02
.byte 0x00, 0xb9, 0x03, 0x02
.byte 0x08, 0xb9, 0x03, 0x02
.byte 0x08, 0xb9, 0x03, 0x02
.byte 0x10, 0xb9, 0x03, 0x02
.byte 0x10, 0xb9, 0x03, 0x02
.byte 0x18, 0xb9, 0x03, 0x02
.byte 0x18, 0xb9, 0x03, 0x02
.byte 0x20, 0xb9, 0x03, 0x02
.byte 0x20, 0xb9, 0x03, 0x02
.byte 0x28, 0xb9, 0x03, 0x02
.byte 0x28, 0xb9, 0x03, 0x02
.byte 0x30, 0xb9, 0x03, 0x02
.byte 0x30, 0xb9, 0x03, 0x02
.byte 0x38, 0xb9, 0x03, 0x02
.byte 0x38, 0xb9, 0x03, 0x02
.byte 0x40, 0xb9, 0x03, 0x02
.byte 0x40, 0xb9, 0x03, 0x02
.byte 0x48, 0xb9, 0x03, 0x02
.byte 0x48, 0xb9, 0x03, 0x02
.byte 0x50, 0xb9, 0x03, 0x02
.byte 0x50, 0xb9, 0x03, 0x02
.byte 0x58, 0xb9, 0x03, 0x02
.byte 0x58, 0xb9, 0x03, 0x02
.byte 0x60, 0xb9, 0x03, 0x02
.byte 0x60, 0xb9, 0x03, 0x02
.byte 0x68, 0xb9, 0x03, 0x02
.byte 0x68, 0xb9, 0x03, 0x02
.byte 0x70, 0xb9, 0x03, 0x02
.byte 0x70, 0xb9, 0x03, 0x02
.byte 0x78, 0xb9, 0x03, 0x02
.byte 0x78, 0xb9, 0x03, 0x02
.byte 0x80, 0xb9, 0x03, 0x02
.byte 0x80, 0xb9, 0x03, 0x02
.byte 0x88, 0xb9, 0x03, 0x02
.byte 0x88, 0xb9, 0x03, 0x02
.byte 0x90, 0xb9, 0x03, 0x02
.byte 0x90, 0xb9, 0x03, 0x02
.byte 0x98, 0xb9, 0x03, 0x02
.byte 0x98, 0xb9, 0x03, 0x02
.byte 0xa0, 0xb9, 0x03, 0x02
.byte 0xa0, 0xb9, 0x03, 0x02
.byte 0xa8, 0xb9, 0x03, 0x02
.byte 0xa8, 0xb9, 0x03, 0x02
.byte 0xb0, 0xb9, 0x03, 0x02
.byte 0xb0, 0xb9, 0x03, 0x02
.byte 0xb8, 0xb9, 0x03, 0x02
.byte 0xb8, 0xb9, 0x03, 0x02
.byte 0xc0, 0xb9, 0x03, 0x02
.byte 0xc0, 0xb9, 0x03, 0x02
.byte 0xc8, 0xb9, 0x03, 0x02
.byte 0xc8, 0xb9, 0x03, 0x02
.byte 0xd0, 0xb9, 0x03, 0x02
.byte 0xd0, 0xb9, 0x03, 0x02
.byte 0xd8, 0xb9, 0x03, 0x02
.byte 0xd8, 0xb9, 0x03, 0x02
.byte 0xe0, 0xb9, 0x03, 0x02
.byte 0xe0, 0xb9, 0x03, 0x02
.byte 0xe8, 0xb9, 0x03, 0x02
.byte 0xe8, 0xb9, 0x03, 0x02
.byte 0xf0, 0xb9, 0x03, 0x02
.byte 0xf0, 0xb9, 0x03, 0x02
.byte 0xf8, 0xb9, 0x03, 0x02
.byte 0xf8, 0xb9, 0x03, 0x02
.byte 0x00, 0xba, 0x03, 0x02
.byte 0x00, 0xba, 0x03, 0x02
.byte 0x08, 0xba, 0x03, 0x02
.byte 0x08, 0xba, 0x03, 0x02
.byte 0x10, 0xba, 0x03, 0x02
.byte 0x10, 0xba, 0x03, 0x02
.byte 0x18, 0xba, 0x03, 0x02
.byte 0x18, 0xba, 0x03, 0x02
.byte 0x20, 0xba, 0x03, 0x02
.byte 0x20, 0xba, 0x03, 0x02
.byte 0x28, 0xba, 0x03, 0x02
.byte 0x28, 0xba, 0x03, 0x02
.byte 0x30, 0xba, 0x03, 0x02
.byte 0x30, 0xba, 0x03, 0x02
.byte 0x38, 0xba, 0x03, 0x02
.byte 0x38, 0xba, 0x03, 0x02
.byte 0x40, 0xba, 0x03, 0x02
.byte 0x40, 0xba, 0x03, 0x02
.byte 0x48, 0xba, 0x03, 0x02
.byte 0x48, 0xba, 0x03, 0x02
.byte 0x50, 0xba, 0x03, 0x02
.byte 0x50, 0xba, 0x03, 0x02
.byte 0x58, 0xba, 0x03, 0x02
.byte 0x58, 0xba, 0x03, 0x02
.byte 0x60, 0xba, 0x03, 0x02
.byte 0x60, 0xba, 0x03, 0x02
.byte 0x68, 0xba, 0x03, 0x02
.byte 0x68, 0xba, 0x03, 0x02
.byte 0x70, 0xba, 0x03, 0x02
.byte 0x70, 0xba, 0x03, 0x02
.byte 0x78, 0xba, 0x03, 0x02
.byte 0x78, 0xba, 0x03, 0x02
.byte 0x80, 0xba, 0x03, 0x02
.byte 0x80, 0xba, 0x03, 0x02
.byte 0x88, 0xba, 0x03, 0x02
.byte 0x88, 0xba, 0x03, 0x02
.byte 0x90, 0xba, 0x03, 0x02
.byte 0x90, 0xba, 0x03, 0x02
.byte 0x98, 0xba, 0x03, 0x02
.byte 0x98, 0xba, 0x03, 0x02
.byte 0xa0, 0xba, 0x03, 0x02
.byte 0xa0, 0xba, 0x03, 0x02
.byte 0xa8, 0xba, 0x03, 0x02
.byte 0xa8, 0xba, 0x03, 0x02
.byte 0xb0, 0xba, 0x03, 0x02
.byte 0xb0, 0xba, 0x03, 0x02
.byte 0xb8, 0xba, 0x03, 0x02
.byte 0xb8, 0xba, 0x03, 0x02
.byte 0xc0, 0xba, 0x03, 0x02
.byte 0xc0, 0xba, 0x03, 0x02
.byte 0xc8, 0xba, 0x03, 0x02
.byte 0xc8, 0xba, 0x03, 0x02
.byte 0xd0, 0xba, 0x03, 0x02
.byte 0xd0, 0xba, 0x03, 0x02
.byte 0xd8, 0xba, 0x03, 0x02
.byte 0xd8, 0xba, 0x03, 0x02
.byte 0xe0, 0xba, 0x03, 0x02
.byte 0xe0, 0xba, 0x03, 0x02
.byte 0xe8, 0xba, 0x03, 0x02
.byte 0xe8, 0xba, 0x03, 0x02
.byte 0xf0, 0xba, 0x03, 0x02
.byte 0xf0, 0xba, 0x03, 0x02
.byte 0xf8, 0xba, 0x03, 0x02
.byte 0xf8, 0xba, 0x03, 0x02
.byte 0x00, 0xbb, 0x03, 0x02
.byte 0x00, 0xbb, 0x03, 0x02
.byte 0x08, 0xbb, 0x03, 0x02
.byte 0x08, 0xbb, 0x03, 0x02
.byte 0x10, 0xbb, 0x03, 0x02
.byte 0x10, 0xbb, 0x03, 0x02
.byte 0x18, 0xbb, 0x03, 0x02
.byte 0x18, 0xbb, 0x03, 0x02
.byte 0x20, 0xbb, 0x03, 0x02
.byte 0x20, 0xbb, 0x03, 0x02
.byte 0x28, 0xbb, 0x03, 0x02
.byte 0x28, 0xbb, 0x03, 0x02
.byte 0x30, 0xbb, 0x03, 0x02
.byte 0x30, 0xbb, 0x03, 0x02
.byte 0x38, 0xbb, 0x03, 0x02
.byte 0x38, 0xbb, 0x03, 0x02
.byte 0x40, 0xbb, 0x03, 0x02
.byte 0x40, 0xbb, 0x03, 0x02
.byte 0x48, 0xbb, 0x03, 0x02
.byte 0x48, 0xbb, 0x03, 0x02
.byte 0x50, 0xbb, 0x03, 0x02
.byte 0x50, 0xbb, 0x03, 0x02
.byte 0x58, 0xbb, 0x03, 0x02
.byte 0x58, 0xbb, 0x03, 0x02
.byte 0x60, 0xbb, 0x03, 0x02
.byte 0x60, 0xbb, 0x03, 0x02
.byte 0x68, 0xbb, 0x03, 0x02
.byte 0x68, 0xbb, 0x03, 0x02
.byte 0x70, 0xbb, 0x03, 0x02
.byte 0x70, 0xbb, 0x03, 0x02
.byte 0x78, 0xbb, 0x03, 0x02
.byte 0x78, 0xbb, 0x03, 0x02
.byte 0x80, 0xbb, 0x03, 0x02
.byte 0x80, 0xbb, 0x03, 0x02
.byte 0x88, 0xbb, 0x03, 0x02
.byte 0x88, 0xbb, 0x03, 0x02
.byte 0x90, 0xbb, 0x03, 0x02
.byte 0x90, 0xbb, 0x03, 0x02
.byte 0x98, 0xbb, 0x03, 0x02
.byte 0x98, 0xbb, 0x03, 0x02
.byte 0xa0, 0xbb, 0x03, 0x02
.byte 0xa0, 0xbb, 0x03, 0x02
.byte 0xa8, 0xbb, 0x03, 0x02
.byte 0xa8, 0xbb, 0x03, 0x02
.byte 0xb0, 0xbb, 0x03, 0x02
.byte 0xb0, 0xbb, 0x03, 0x02
.byte 0xb8, 0xbb, 0x03, 0x02
.byte 0xb8, 0xbb, 0x03, 0x02
.byte 0x00, 0x00, 0x02, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.byte 0xff, 0xff, 0xff, 0xff
.byte 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00

View File

@ -0,0 +1,24 @@
.global Boss3FloorID
Boss3FloorID:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0xc1, 0x01, 0xce, 0x00, 0x0c, 0x00, 0x41, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00
.byte 0xc2, 0x01, 0xce, 0x00, 0x0d, 0x00, 0x41, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00
.byte 0xc3, 0x01, 0xce, 0x00, 0x0e, 0x00, 0x41, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00
.byte 0xc4, 0x01, 0xce, 0x00, 0x0f, 0x00, 0x43, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00
.byte 0xc5, 0x01, 0xce, 0x00, 0x10, 0x00, 0x43, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00
.byte 0xc6, 0x01, 0xce, 0x00, 0x11, 0x00, 0x43, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00
.byte 0xc7, 0x01, 0xce, 0x00, 0x12, 0x00, 0x44, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00
.byte 0xc8, 0x01, 0xce, 0x00, 0x12, 0x00, 0x44, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00
.byte 0xc9, 0x01, 0xce, 0x00, 0x12, 0x00, 0x44, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00
.byte 0xca, 0x01, 0xce, 0x00, 0x12, 0x00, 0x45, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00
.byte 0xcb, 0x01, 0xce, 0x00, 0x13, 0x00, 0x45, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00
.byte 0xcc, 0x01, 0xce, 0x00, 0x13, 0x00, 0x45, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00
.byte 0xcd, 0x01, 0xce, 0x00, 0x13, 0x00, 0x45, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00
.byte 0xce, 0x01, 0xce, 0x00, 0x13, 0x00, 0x45, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00
.byte 0xcf, 0x01, 0xce, 0x00, 0x13, 0x00, 0x45, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00
.byte 0xd0, 0x01, 0xce, 0x00, 0x14, 0x00, 0x45, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00
.byte 0xd1, 0x01, 0xce, 0x00, 0x14, 0x00, 0x45, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00
.byte 0xd2, 0x01, 0xce, 0x00, 0x14, 0x00, 0x45, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00
.byte 0xd3, 0x01, 0xce, 0x00, 0x14, 0x00, 0x45, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00
.byte 0xd4, 0x01, 0xce, 0x00, 0x15, 0x00, 0x45, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00

View File

@ -0,0 +1,15 @@
.global Boss4FloorID
Boss4FloorID:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0xd5, 0x01, 0xcf, 0x00, 0x16, 0x00, 0x46, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00
.byte 0xd6, 0x01, 0xcf, 0x00, 0x17, 0x00, 0x46, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00
.byte 0xd7, 0x01, 0xcf, 0x00, 0x18, 0x00, 0x46, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00
.byte 0xd8, 0x01, 0xd0, 0x00, 0x19, 0x00, 0x47, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00
.byte 0xd9, 0x01, 0xd1, 0x00, 0x1a, 0x00, 0x47, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00
.byte 0xda, 0x01, 0xd2, 0x00, 0x1b, 0x00, 0x47, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00
.byte 0xdb, 0x01, 0xd2, 0x00, 0x1c, 0x00, 0x48, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00
.byte 0xdc, 0x01, 0xd3, 0x00, 0x1c, 0x00, 0x48, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00
.byte 0xdd, 0x01, 0xd4, 0x00, 0x1c, 0x00, 0x48, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00
.byte 0xde, 0x01, 0xd5, 0x00, 0x1c, 0x00, 0x49, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00
.byte 0xdf, 0x01, 0xd6, 0x00, 0x1d, 0x00, 0x49, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00

View File

@ -0,0 +1,12 @@
.global Boss9FloorID
Boss9FloorID:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0xd8, 0x02, 0x53, 0x01, 0x3f, 0x00, 0x57, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0xd9, 0x02, 0x53, 0x01, 0x3f, 0x00, 0x57, 0x00, 0x01, 0x00, 0x02, 0x00, 0x42, 0x00, 0x00, 0x00, 0xda, 0x02, 0x53, 0x01, 0x3f, 0x00, 0x57, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0xdb, 0x02, 0x53, 0x01, 0x3f, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x42, 0x00, 0x00, 0x00, 0xdc, 0x02, 0x53, 0x01, 0x3f, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0xdd, 0x02, 0x53, 0x01, 0x3f, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x42, 0x00, 0x00, 0x00, 0xde, 0x02, 0x53, 0x01, 0x3f, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0xdf, 0x02, 0x53, 0x01, 0x3f, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x42, 0x00, 0x00, 0x00, 0xe0, 0x02, 0x53, 0x01, 0x3f, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0xe1, 0x02, 0x53, 0x01, 0x3f, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x42, 0x00, 0x00, 0x00, 0xe2, 0x02, 0x53, 0x01, 0x3f, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x42, 0x00, 0x00, 0x00
.byte 0xe3, 0x02, 0x53, 0x01, 0x3f, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x42, 0x00, 0x00, 0x00

View File

@ -0,0 +1,54 @@
.global BuriedRelicFloorID
BuriedRelicFloorID:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x43, 0x02, 0x16, 0x01, 0x07, 0x00, 0x50, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x44, 0x02, 0x16, 0x01, 0x07, 0x00, 0x50, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x45, 0x02, 0x16, 0x01, 0x07, 0x00, 0x50, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x46, 0x02, 0x17, 0x01, 0x07, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x47, 0x02, 0x18, 0x01, 0x07, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x48, 0x02, 0x18, 0x01, 0x07, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x49, 0x02, 0x18, 0x01, 0x07, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x4a, 0x02, 0x18, 0x01, 0x07, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x4b, 0x02, 0x19, 0x01, 0x07, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x4c, 0x02, 0x1a, 0x01, 0x08, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x4d, 0x02, 0x1b, 0x01, 0x08, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x4e, 0x02, 0x1c, 0x01, 0x08, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x4f, 0x02, 0x1c, 0x01, 0x08, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x50, 0x02, 0x1d, 0x01, 0x08, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x51, 0x02, 0x1e, 0x01, 0x08, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x52, 0x02, 0x1f, 0x01, 0x08, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x53, 0x02, 0x20, 0x01, 0x08, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x54, 0x02, 0x20, 0x01, 0x08, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x55, 0x02, 0x21, 0x01, 0x08, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x56, 0x02, 0x22, 0x01, 0x08, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x57, 0x02, 0x23, 0x01, 0x08, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x58, 0x02, 0x23, 0x01, 0x08, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x59, 0x02, 0x24, 0x01, 0x08, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x5a, 0x02, 0x25, 0x01, 0x08, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x5b, 0x02, 0x26, 0x01, 0x08, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x5c, 0x02, 0x27, 0x01, 0x08, 0x00, 0x52, 0x00, 0x53, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x5d, 0x02, 0x27, 0x01, 0x08, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x5e, 0x02, 0x27, 0x01, 0x08, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x5f, 0x02, 0x27, 0x01, 0x08, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x60, 0x02, 0x28, 0x01, 0x30, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x61, 0x02, 0x29, 0x01, 0x31, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x62, 0x02, 0x29, 0x01, 0x31, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x63, 0x02, 0x29, 0x01, 0x31, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x64, 0x02, 0x29, 0x01, 0x31, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x65, 0x02, 0x2a, 0x01, 0x31, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x66, 0x02, 0x2b, 0x01, 0x31, 0x00, 0x52, 0x00, 0x53, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x67, 0x02, 0x2b, 0x01, 0x31, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x68, 0x02, 0x2b, 0x01, 0x31, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x69, 0x02, 0x2b, 0x01, 0x31, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x6a, 0x02, 0x2c, 0x01, 0x32, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x6b, 0x02, 0x2d, 0x01, 0x32, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x6c, 0x02, 0x2d, 0x01, 0x32, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x6d, 0x02, 0x2d, 0x01, 0x32, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x6e, 0x02, 0x2d, 0x01, 0x32, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x6f, 0x02, 0x2d, 0x01, 0x32, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x70, 0x02, 0x2d, 0x01, 0x32, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x71, 0x02, 0x2d, 0x01, 0x32, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x72, 0x02, 0x2d, 0x01, 0x32, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x73, 0x02, 0x2d, 0x01, 0x32, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x74, 0x02, 0x2e, 0x01, 0x33, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x75, 0x02, 0x2e, 0x01, 0x33, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x76, 0x02, 0x2e, 0x01, 0x33, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x77, 0x02, 0x2e, 0x01, 0x33, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x78, 0x02, 0x2e, 0x01, 0x33, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x79, 0x02, 0x2e, 0x01, 0x33, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x7a, 0x02, 0x2e, 0x01, 0x33, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x7b, 0x02, 0x2e, 0x01, 0x33, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x7c, 0x02, 0x2e, 0x01, 0x33, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x7d, 0x02, 0x2e, 0x01, 0x33, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x7e, 0x02, 0x2f, 0x01, 0x34, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x7f, 0x02, 0x30, 0x01, 0x34, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x80, 0x02, 0x30, 0x01, 0x34, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x81, 0x02, 0x30, 0x01, 0x34, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x82, 0x02, 0x30, 0x01, 0x34, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x83, 0x02, 0x31, 0x01, 0x34, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x84, 0x02, 0x31, 0x01, 0x34, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x85, 0x02, 0x31, 0x01, 0x34, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x86, 0x02, 0x32, 0x01, 0x34, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x87, 0x02, 0x32, 0x01, 0x34, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x88, 0x02, 0x33, 0x01, 0x35, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x89, 0x02, 0x34, 0x01, 0x36, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x8a, 0x02, 0x34, 0x01, 0x36, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x8b, 0x02, 0x34, 0x01, 0x37, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x8c, 0x02, 0x35, 0x01, 0x38, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x8d, 0x02, 0x36, 0x01, 0x36, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x8e, 0x02, 0x36, 0x01, 0x36, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x8f, 0x02, 0x36, 0x01, 0x36, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x90, 0x02, 0x36, 0x01, 0x36, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x91, 0x02, 0x36, 0x01, 0x39, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x92, 0x02, 0x37, 0x01, 0x39, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x93, 0x02, 0x37, 0x01, 0x39, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x94, 0x02, 0x38, 0x01, 0x39, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x95, 0x02, 0x38, 0x01, 0x39, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x96, 0x02, 0x38, 0x01, 0x39, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x97, 0x02, 0x38, 0x01, 0x39, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x98, 0x02, 0x38, 0x01, 0x39, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x99, 0x02, 0x38, 0x01, 0x39, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x9a, 0x02, 0x39, 0x01, 0x39, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x9b, 0x02, 0x39, 0x01, 0x39, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x9c, 0x02, 0x39, 0x01, 0x39, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x9d, 0x02, 0x3a, 0x01, 0x39, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0x9e, 0x02, 0x3a, 0x01, 0x39, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0x9f, 0x02, 0x3a, 0x01, 0x39, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0xa0, 0x02, 0x3b, 0x01, 0x39, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0xa1, 0x02, 0x3b, 0x01, 0x39, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0xa2, 0x02, 0x3b, 0x01, 0x39, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00, 0xa3, 0x02, 0x3b, 0x01, 0x39, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00
.byte 0x51, 0x00, 0x00, 0x00, 0xa4, 0x02, 0x3b, 0x01, 0x39, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00
.byte 0xa5, 0x02, 0x3c, 0x01, 0x3a, 0x00, 0x52, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x51, 0x00, 0x00, 0x00

View File

@ -0,0 +1,55 @@
.global D61FloorID
D61FloorID:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x1d, 0x06, 0xd7, 0x02, 0x73, 0x00, 0x57, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x1e, 0x06, 0xd7, 0x02, 0x73, 0x00, 0x57, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x1f, 0x06, 0xd7, 0x02, 0x73, 0x00, 0x57, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x20, 0x06, 0xd7, 0x02, 0x73, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x21, 0x06, 0xd8, 0x02, 0x73, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x22, 0x06, 0xd8, 0x02, 0x73, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x23, 0x06, 0xd8, 0x02, 0x73, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x24, 0x06, 0xd8, 0x02, 0x73, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x25, 0x06, 0xd8, 0x02, 0x73, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x26, 0x06, 0xd9, 0x02, 0x73, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x27, 0x06, 0xd9, 0x02, 0x73, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x28, 0x06, 0xd9, 0x02, 0x73, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x29, 0x06, 0xda, 0x02, 0x73, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x2a, 0x06, 0xda, 0x02, 0x73, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x2b, 0x06, 0xda, 0x02, 0x73, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x2c, 0x06, 0xda, 0x02, 0x73, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x2d, 0x06, 0xda, 0x02, 0x73, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x2e, 0x06, 0xda, 0x02, 0x73, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x2f, 0x06, 0xda, 0x02, 0x73, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x30, 0x06, 0xdb, 0x02, 0x73, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x31, 0x06, 0xdc, 0x02, 0x74, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x32, 0x06, 0xdc, 0x02, 0x74, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x33, 0x06, 0xdc, 0x02, 0x74, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x34, 0x06, 0xdc, 0x02, 0x74, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x35, 0x06, 0xdc, 0x02, 0x74, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x36, 0x06, 0xdc, 0x02, 0x74, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x37, 0x06, 0xdc, 0x02, 0x74, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x38, 0x06, 0xdc, 0x02, 0x74, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x39, 0x06, 0xdc, 0x02, 0x74, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x3a, 0x06, 0xdd, 0x02, 0x74, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x3b, 0x06, 0xde, 0x02, 0x74, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x3c, 0x06, 0xde, 0x02, 0x74, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x3d, 0x06, 0xde, 0x02, 0x74, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x3e, 0x06, 0xdf, 0x02, 0x74, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x3f, 0x06, 0xdf, 0x02, 0x74, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x40, 0x06, 0xe0, 0x02, 0x74, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x41, 0x06, 0xe0, 0x02, 0x74, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x42, 0x06, 0xe0, 0x02, 0x74, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x43, 0x06, 0xe0, 0x02, 0x74, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x44, 0x06, 0xe1, 0x02, 0x74, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x45, 0x06, 0xe1, 0x02, 0x75, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x46, 0x06, 0xe1, 0x02, 0x75, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x47, 0x06, 0xe2, 0x02, 0x75, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x48, 0x06, 0xe2, 0x02, 0x75, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x49, 0x06, 0xe2, 0x02, 0x75, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x4a, 0x06, 0xe2, 0x02, 0x75, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x4b, 0x06, 0xe2, 0x02, 0x75, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x4c, 0x06, 0xe2, 0x02, 0x75, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x4d, 0x06, 0xe3, 0x02, 0x75, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x4e, 0x06, 0xe4, 0x02, 0x76, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x4f, 0x06, 0xe4, 0x02, 0x77, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x50, 0x06, 0xe4, 0x02, 0x78, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x51, 0x06, 0xe5, 0x02, 0x78, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x52, 0x06, 0xe6, 0x02, 0x78, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x53, 0x06, 0xe6, 0x02, 0x78, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x54, 0x06, 0xe7, 0x02, 0x78, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x55, 0x06, 0xe7, 0x02, 0x77, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x56, 0x06, 0xe7, 0x02, 0x79, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x57, 0x06, 0xe7, 0x02, 0x79, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x58, 0x06, 0xe8, 0x02, 0x7a, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x59, 0x06, 0xe8, 0x02, 0x7a, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x5a, 0x06, 0xe8, 0x02, 0x7a, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x5b, 0x06, 0xe8, 0x02, 0x7a, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x5c, 0x06, 0xe8, 0x02, 0x7a, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x5d, 0x06, 0xe9, 0x02, 0x7a, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x5e, 0x06, 0xe9, 0x02, 0x7a, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x5f, 0x06, 0xea, 0x02, 0x7a, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x60, 0x06, 0xea, 0x02, 0x7a, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x61, 0x06, 0xea, 0x02, 0x7a, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x62, 0x06, 0xeb, 0x02, 0x7b, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x63, 0x06, 0xec, 0x02, 0x7c, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x64, 0x06, 0xec, 0x02, 0x7c, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x65, 0x06, 0xec, 0x02, 0x7d, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x66, 0x06, 0xec, 0x02, 0x7e, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x67, 0x06, 0xec, 0x02, 0x7c, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x68, 0x06, 0xec, 0x02, 0x7c, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x69, 0x06, 0xec, 0x02, 0x7c, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x6a, 0x06, 0xec, 0x02, 0x7f, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x6b, 0x06, 0xec, 0x02, 0x80, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x6c, 0x06, 0xec, 0x02, 0x81, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x6d, 0x06, 0xec, 0x02, 0x81, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x6e, 0x06, 0xec, 0x02, 0x81, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x6f, 0x06, 0xec, 0x02, 0x81, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x70, 0x06, 0xec, 0x02, 0x81, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x71, 0x06, 0xec, 0x02, 0x82, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x72, 0x06, 0xec, 0x02, 0x82, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x73, 0x06, 0xec, 0x02, 0x83, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x74, 0x06, 0xec, 0x02, 0x84, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x75, 0x06, 0xec, 0x02, 0x84, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x76, 0x06, 0xec, 0x02, 0x84, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x77, 0x06, 0xed, 0x02, 0x85, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x78, 0x06, 0xed, 0x02, 0x85, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x79, 0x06, 0xed, 0x02, 0x85, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x7a, 0x06, 0xed, 0x02, 0x86, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x7b, 0x06, 0xed, 0x02, 0x86, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x7c, 0x06, 0xed, 0x02, 0x87, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x7d, 0x06, 0xed, 0x02, 0x88, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x7e, 0x06, 0xed, 0x02, 0x88, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x03, 0x00, 0x00, 0x00, 0x7f, 0x06, 0xed, 0x02, 0x88, 0x00, 0x58, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00

View File

@ -0,0 +1,4 @@
.global D63FloorID
D63FloorID:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0xe3, 0x06, 0x0e, 0x02, 0x57, 0x00, 0xb0, 0x00, 0x13, 0x00, 0xb1, 0x00, 0x42, 0x00, 0x00, 0x00

View File

@ -0,0 +1,20 @@
.global DesertRegionFloorID
DesertRegionFloorID:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0xe4, 0x02, 0x54, 0x01, 0x40, 0x00, 0x59, 0x00, 0x5a, 0x00, 0x2e, 0x00, 0x5b, 0x00, 0x00, 0x00
.byte 0xe5, 0x02, 0x54, 0x01, 0x40, 0x00, 0x59, 0x00, 0x5a, 0x00, 0x2e, 0x00, 0x5b, 0x00, 0x00, 0x00
.byte 0xe6, 0x02, 0x54, 0x01, 0x40, 0x00, 0x59, 0x00, 0x5a, 0x00, 0x2e, 0x00, 0x5b, 0x00, 0x00, 0x00
.byte 0xe7, 0x02, 0x54, 0x01, 0x40, 0x00, 0x59, 0x00, 0x5a, 0x00, 0x2e, 0x00, 0x5b, 0x00, 0x00, 0x00
.byte 0xe8, 0x02, 0x54, 0x01, 0x40, 0x00, 0x59, 0x00, 0x5a, 0x00, 0x2e, 0x00, 0x5b, 0x00, 0x00, 0x00
.byte 0xe9, 0x02, 0x54, 0x01, 0x40, 0x00, 0x59, 0x00, 0x5a, 0x00, 0x2e, 0x00, 0x5b, 0x00, 0x00, 0x00
.byte 0xea, 0x02, 0x55, 0x01, 0x40, 0x00, 0x59, 0x00, 0x5a, 0x00, 0x2e, 0x00, 0x5b, 0x00, 0x00, 0x00
.byte 0xeb, 0x02, 0x55, 0x01, 0x40, 0x00, 0x59, 0x00, 0x5a, 0x00, 0x2e, 0x00, 0x5b, 0x00, 0x00, 0x00
.byte 0xec, 0x02, 0x55, 0x01, 0x40, 0x00, 0x59, 0x00, 0x5a, 0x00, 0x2e, 0x00, 0x5b, 0x00, 0x00, 0x00
.byte 0xed, 0x02, 0x55, 0x01, 0x40, 0x00, 0x59, 0x00, 0x5a, 0x00, 0x2e, 0x00
.byte 0x5b, 0x00, 0x00, 0x00, 0xee, 0x02, 0x55, 0x01, 0x40, 0x00, 0x59, 0x00, 0x5a, 0x00, 0x2e, 0x00, 0x5b, 0x00, 0x00, 0x00, 0xef, 0x02, 0x56, 0x01, 0x40, 0x00, 0x59, 0x00, 0x5a, 0x00, 0x2e, 0x00
.byte 0x5b, 0x00, 0x00, 0x00, 0xf0, 0x02, 0x56, 0x01, 0x40, 0x00, 0x59, 0x00, 0x5a, 0x00, 0x2e, 0x00, 0x5b, 0x00, 0x00, 0x00, 0xf1, 0x02, 0x57, 0x01, 0x40, 0x00, 0x59, 0x00, 0x5a, 0x00, 0x2e, 0x00
.byte 0x5b, 0x00, 0x00, 0x00, 0xf2, 0x02, 0x58, 0x01, 0x40, 0x00, 0x59, 0x00, 0x5a, 0x00, 0x2e, 0x00, 0x5b, 0x00, 0x00, 0x00, 0xf3, 0x02, 0x58, 0x01, 0x40, 0x00, 0x59, 0x00, 0x5a, 0x00, 0x2e, 0x00
.byte 0x5b, 0x00, 0x00, 0x00, 0xf4, 0x02, 0x58, 0x01, 0x40, 0x00, 0x59, 0x00, 0x5a, 0x00, 0x2e, 0x00, 0x5b, 0x00, 0x00, 0x00, 0xf5, 0x02, 0x58, 0x01, 0x40, 0x00, 0x59, 0x00, 0x5a, 0x00, 0x2e, 0x00
.byte 0x5b, 0x00, 0x00, 0x00, 0xf6, 0x02, 0x58, 0x01, 0x40, 0x00, 0x5c, 0x00, 0x5a, 0x00, 0x2e, 0x00, 0x5b, 0x00, 0x00, 0x00
.byte 0xf7, 0x02, 0x58, 0x01, 0x40, 0x00, 0x5c, 0x00, 0x5a, 0x00, 0x2e, 0x00, 0x5b, 0x00, 0x00, 0x00

View File

@ -0,0 +1,44 @@
.global FarOffSeaFloorID
FarOffSeaFloorID:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0xaa, 0x05, 0xb1, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xab, 0x05, 0xb1, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xac, 0x05, 0xb1, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xad, 0x05, 0xb1, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xae, 0x05, 0xb1, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xaf, 0x05, 0xb2, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xb0, 0x05, 0xb2, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xb1, 0x05, 0xb2, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xb2, 0x05, 0xb3, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xb3, 0x05, 0xb4, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xb4, 0x05, 0xb5, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xb5, 0x05, 0xb5, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xb6, 0x05, 0xb5, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xb7, 0x05, 0xb6, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xb8, 0x05, 0xb7, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xb9, 0x05, 0xb7, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xba, 0x05, 0xb7, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xbb, 0x05, 0xb7, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xbc, 0x05, 0xb7, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xbd, 0x05, 0xb8, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xbe, 0x05, 0xb9, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xbf, 0x05, 0xb9, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xc0, 0x05, 0xb9, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xc1, 0x05, 0xba, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xc2, 0x05, 0xba, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xc3, 0x05, 0xbb, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xc4, 0x05, 0xbb, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xc5, 0x05, 0xbb, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xc6, 0x05, 0xbb, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xc7, 0x05, 0xbc, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xc8, 0x05, 0xbd, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xc9, 0x05, 0xbd, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xca, 0x05, 0xbd, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xcb, 0x05, 0xbd, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xcc, 0x05, 0xbe, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xcd, 0x05, 0xbf, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xce, 0x05, 0xc0, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xcf, 0x05, 0xc0, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xd0, 0x05, 0xc0, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xd1, 0x05, 0xc1, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xd2, 0x05, 0xc2, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xd3, 0x05, 0xc2, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xd4, 0x05, 0xc2, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xd5, 0x05, 0xc2, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xd6, 0x05, 0xc3, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xd7, 0x05, 0xc3, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xd8, 0x05, 0xc3, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xd9, 0x05, 0xc3, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xda, 0x05, 0xc3, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xdb, 0x05, 0xc4, 0x02, 0x06, 0x00, 0xa4, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xdc, 0x05, 0xc5, 0x02, 0x06, 0x00, 0xa5, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xdd, 0x05, 0xc5, 0x02, 0x06, 0x00, 0xa5, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xde, 0x05, 0xc5, 0x02, 0x06, 0x00, 0xa5, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xdf, 0x05, 0xc5, 0x02, 0x06, 0x00, 0xa5, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xe0, 0x05, 0xc6, 0x02, 0x06, 0x00, 0xa5, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xe1, 0x05, 0xc6, 0x02, 0x06, 0x00, 0xa5, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xe2, 0x05, 0xc6, 0x02, 0x06, 0x00, 0xa5, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xe3, 0x05, 0xc6, 0x02, 0x06, 0x00, 0xa5, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xe4, 0x05, 0xc6, 0x02, 0x06, 0x00, 0xa5, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xe5, 0x05, 0xc7, 0x02, 0x06, 0x00, 0xa5, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xe6, 0x05, 0x99, 0x00, 0x06, 0x00, 0xa5, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xe7, 0x05, 0x99, 0x00, 0x06, 0x00, 0xa5, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xe8, 0x05, 0x99, 0x00, 0x06, 0x00, 0xa5, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xe9, 0x05, 0x99, 0x00, 0x06, 0x00, 0xa5, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xea, 0x05, 0xc8, 0x02, 0x06, 0x00, 0xa5, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xeb, 0x05, 0xc8, 0x02, 0x06, 0x00, 0xa5, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xec, 0x05, 0xc8, 0x02, 0x06, 0x00, 0xa5, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xed, 0x05, 0xc8, 0x02, 0x06, 0x00, 0xa5, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xee, 0x05, 0xc8, 0x02, 0x06, 0x00, 0xa5, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xef, 0x05, 0xc9, 0x02, 0x06, 0x00, 0xa5, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xf0, 0x05, 0xca, 0x02, 0x06, 0x00, 0xa5, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xf1, 0x05, 0xca, 0x02, 0x06, 0x00, 0xa5, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xf2, 0x05, 0xca, 0x02, 0x06, 0x00, 0xa5, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xf3, 0x05, 0xca, 0x02, 0x06, 0x00, 0xa5, 0x00, 0x01, 0x00, 0x02, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xf4, 0x05, 0xca, 0x02, 0x06, 0x00, 0xa5, 0x00, 0x01, 0x00, 0x02, 0x00
.byte 0x3e, 0x00, 0x00, 0x00

View File

@ -0,0 +1,21 @@
.global FieryFieldFloorID
FieryFieldFloorID:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x48, 0x03, 0x7d, 0x01, 0x48, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x2e, 0x00
.byte 0x39, 0x00, 0x00, 0x00, 0x49, 0x03, 0x7d, 0x01, 0x48, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00, 0x4a, 0x03, 0x7d, 0x01, 0x48, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x2e, 0x00
.byte 0x39, 0x00, 0x00, 0x00, 0x4b, 0x03, 0x7e, 0x01, 0x48, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00, 0x4c, 0x03, 0x7f, 0x01, 0x48, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x2e, 0x00
.byte 0x39, 0x00, 0x00, 0x00, 0x4d, 0x03, 0x80, 0x01, 0x48, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00, 0x4e, 0x03, 0x80, 0x01, 0x48, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x2e, 0x00
.byte 0x39, 0x00, 0x00, 0x00, 0x4f, 0x03, 0x81, 0x01, 0x48, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00, 0x50, 0x03, 0x82, 0x01, 0x48, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x2e, 0x00
.byte 0x39, 0x00, 0x00, 0x00, 0x51, 0x03, 0x83, 0x01, 0x49, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00, 0x52, 0x03, 0x83, 0x01, 0x4a, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x2e, 0x00
.byte 0x39, 0x00, 0x00, 0x00, 0x53, 0x03, 0x83, 0x01, 0x4a, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00, 0x54, 0x03, 0x83, 0x01, 0x4a, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x2e, 0x00
.byte 0x39, 0x00, 0x00, 0x00, 0x55, 0x03, 0x83, 0x01, 0x4a, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00, 0x56, 0x03, 0x84, 0x01, 0x4a, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x2e, 0x00
.byte 0x39, 0x00, 0x00, 0x00, 0x57, 0x03, 0x84, 0x01, 0x4a, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00, 0x58, 0x03, 0x85, 0x01, 0x4a, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x2e, 0x00
.byte 0x39, 0x00, 0x00, 0x00, 0x59, 0x03, 0x85, 0x01, 0x4a, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00, 0x5a, 0x03, 0x85, 0x01, 0x4a, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x2e, 0x00
.byte 0x39, 0x00, 0x00, 0x00, 0x5b, 0x03, 0x85, 0x01, 0x4a, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00, 0x5c, 0x03, 0x86, 0x01, 0x4a, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x2e, 0x00
.byte 0x39, 0x00, 0x00, 0x00, 0x5d, 0x03, 0x87, 0x01, 0x4a, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00, 0x5e, 0x03, 0x87, 0x01, 0x4a, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x2e, 0x00
.byte 0x39, 0x00, 0x00, 0x00, 0x5f, 0x03, 0x87, 0x01, 0x4a, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00, 0x60, 0x03, 0x88, 0x01, 0x4a, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x2e, 0x00
.byte 0x39, 0x00, 0x00, 0x00, 0x61, 0x03, 0x89, 0x01, 0x4a, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00, 0x62, 0x03, 0x89, 0x01, 0x4a, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x2e, 0x00
.byte 0x39, 0x00, 0x00, 0x00, 0x63, 0x03, 0x89, 0x01, 0x4a, 0x00, 0x62, 0x00, 0x5e, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00, 0x64, 0x03, 0x89, 0x01, 0x4a, 0x00, 0x63, 0x00, 0x5e, 0x00, 0x2e, 0x00
.byte 0x39, 0x00, 0x00, 0x00
.byte 0x65, 0x03, 0x8a, 0x01, 0x4a, 0x00, 0x63, 0x00, 0x5e, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00

View File

@ -0,0 +1,12 @@
.global FrostyForestFloorID
FrostyForestFloorID:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x5d, 0x00, 0x40, 0x00, 0x03, 0x00, 0x1b, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x5e, 0x00, 0x40, 0x00, 0x03, 0x00, 0x1b, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x5f, 0x00, 0x41, 0x00, 0x03, 0x00, 0x1b, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x60, 0x00, 0x42, 0x00, 0x03, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x61, 0x00, 0x43, 0x00, 0x03, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x62, 0x00, 0x43, 0x00, 0x03, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x63, 0x00, 0x44, 0x00, 0x03, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x64, 0x00, 0x45, 0x00, 0x03, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x65, 0x00, 0x45, 0x00, 0x03, 0x00, 0x1d, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00

View File

@ -0,0 +1,9 @@
.byte 0x0b, 0x06, 0x24, 0x0a, 0x00, 0x14, 0x03, 0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x03, 0x01, 0x00, 0x0f, 0x00, 0x28, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x24, 0x0a, 0x00, 0x14, 0x03, 0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x03, 0x02, 0x00, 0x0f, 0x00, 0x28, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x24, 0x0a, 0x00, 0x14, 0x03, 0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x03, 0x03, 0x00, 0x0f, 0x00, 0x28, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x24, 0x0a, 0x00, 0x14, 0x03, 0x07, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x03, 0x04, 0x00, 0x0f, 0x00, 0x28, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00
.byte 0x00, 0x06, 0x24, 0x0a, 0x00, 0x14, 0x03, 0x07, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x05, 0x03, 0x05, 0x00, 0x0f, 0x00, 0x28, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00
.byte 0x00, 0x06, 0x24, 0x0a, 0x00, 0x14, 0x03, 0x07, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x05, 0x03, 0x06, 0x00, 0x0f, 0x00, 0x28, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x24, 0x0a, 0x00, 0x14, 0x03, 0x06, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x03, 0x07, 0x00, 0x0f, 0x00, 0x28, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x24, 0x0a, 0x00, 0x14, 0x03, 0x06, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x03, 0x08, 0x00, 0x0f, 0x00, 0x28, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x24, 0x0a, 0x00, 0x14, 0x03, 0x06, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x03, 0x09, 0x00, 0x0f, 0x00, 0x28, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00

View File

@ -0,0 +1,8 @@
.global FrostyGrottoFloorID
FrostyGrottoFloorID:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x66, 0x00, 0x46, 0x00, 0x03, 0x00, 0x1e, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x67, 0x00, 0x46, 0x00, 0x03, 0x00, 0x1e, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x68, 0x00, 0x46, 0x00, 0x03, 0x00, 0x1e, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x69, 0x00, 0x46, 0x00, 0x03, 0x00, 0x1f, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x6a, 0x00, 0x47, 0x00, 0x03, 0x00, 0x1f, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00

View File

@ -0,0 +1,7 @@
.byte 0x0b, 0x06, 0x24, 0x17, 0x07, 0x14, 0x03, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x04, 0x01, 0x00, 0x28, 0x06, 0x0a, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x24, 0x17, 0x07, 0x19, 0x04, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x04, 0x02, 0x00, 0x28, 0x06, 0x0a, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00
.byte 0x00, 0x08, 0x24, 0x17, 0x07, 0x1e, 0x04, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x04, 0x03, 0x00, 0x28, 0x06, 0x0a, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00
.byte 0x00, 0x08, 0x24, 0x17, 0x07, 0x14, 0x05, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x04, 0x04, 0x00, 0x28, 0x06, 0x0a, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00
@ Boss
.byte 0x00, 0x08, 0x44, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x04, 0x05, 0x05, 0x28, 0x06, 0x0a, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00

View File

@ -0,0 +1,15 @@
.global GreatCanyonFloorID
GreatCanyonFloorID:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x34, 0x00, 0x27, 0x00, 0x03, 0x00, 0x12, 0x00, 0x13, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x35, 0x00, 0x27, 0x00, 0x03, 0x00, 0x12, 0x00, 0x13, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x36, 0x00, 0x27, 0x00, 0x03, 0x00, 0x12, 0x00, 0x13, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x37, 0x00, 0x28, 0x00, 0x03, 0x00, 0x14, 0x00, 0x13, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x38, 0x00, 0x29, 0x00, 0x03, 0x00, 0x14, 0x00, 0x13, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x39, 0x00, 0x2a, 0x00, 0x03, 0x00, 0x14, 0x00, 0x13, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x3a, 0x00, 0x2b, 0x00, 0x03, 0x00, 0x14, 0x00, 0x13, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x3b, 0x00, 0x2c, 0x00, 0x03, 0x00, 0x14, 0x00, 0x13, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x3c, 0x00, 0x2d, 0x00, 0x03, 0x00, 0x14, 0x00, 0x13, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x3d, 0x00, 0x2e, 0x00, 0x03, 0x00, 0x14, 0x00, 0x13, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x3e, 0x00, 0x2e, 0x00, 0x03, 0x00, 0x14, 0x00, 0x13, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x3f, 0x00, 0x2f, 0x00, 0x03, 0x00, 0x14, 0x00, 0x13, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00

View File

@ -0,0 +1,12 @@
.byte 0x0b, 0x0a, 0x2c, 0x07, 0x00, 0x19, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x03, 0x01, 0x00, 0x0f, 0x00, 0x0a, 0x00, 0x07, 0x05, 0x00, 0x00, 0x00
.byte 0x0b, 0x05, 0x2c, 0x07, 0x00, 0x14, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x03, 0x02, 0x00, 0x0f, 0x00, 0x0a, 0x00, 0x07, 0x05, 0x00, 0x00, 0x00
.byte 0x0b, 0x08, 0x2c, 0x07, 0x00, 0x14, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x03, 0x03, 0x00, 0x0f, 0x00, 0x0a, 0x00, 0x07, 0x05, 0x00, 0x00, 0x00
.byte 0x0b, 0x05, 0x2c, 0x07, 0x00, 0x19, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x05, 0x03, 0x04, 0x00, 0x0f, 0x00, 0x0a, 0x00, 0x07, 0x05, 0x00, 0x00, 0x00
.byte 0x00, 0x0a, 0x2c, 0x07, 0x00, 0x14, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x05, 0x03, 0x05, 0x00, 0x0f, 0x00, 0x0a, 0x00, 0x07, 0x05, 0x00, 0x00, 0x00
.byte 0x00, 0x0c, 0x2c, 0x07, 0x00, 0x19, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x05, 0x03, 0x06, 0x00, 0x0f, 0x00, 0x0a, 0x00, 0x07, 0x05, 0x00, 0x00, 0x00
.byte 0x00, 0x05, 0x2c, 0x07, 0x00, 0x19, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x03, 0x07, 0x00, 0x0f, 0x00, 0x0a, 0x00, 0x07, 0x05, 0x00, 0x00, 0x00
.byte 0x0d, 0x06, 0x2c, 0x07, 0x00, 0x14, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x03, 0x08, 0x00, 0x0f, 0x00, 0x0a, 0x00, 0x07, 0x05, 0x00, 0x00, 0x00
.byte 0x0d, 0x0a, 0x2c, 0x07, 0x00, 0x19, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x03, 0x09, 0x00, 0x0f, 0x00, 0x0a, 0x00, 0x07, 0x05, 0x00, 0x00, 0x00
.byte 0x00, 0x08, 0x2c, 0x07, 0x00, 0x19, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x03, 0x0a, 0x00, 0x0f, 0x00, 0x0a, 0x00, 0x07, 0x05, 0x00, 0x00, 0x00
.byte 0x00, 0x08, 0x2c, 0x07, 0x00, 0x19, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x03, 0x0b, 0x00, 0x0f, 0x00, 0x0a, 0x00, 0x07, 0x05, 0x00, 0x00, 0x00
.byte 0x00, 0x08, 0x2c, 0x07, 0x00, 0x14, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x03, 0x0c, 0x00, 0x0f, 0x00, 0x0a, 0x00, 0x07, 0x05, 0x00, 0x00, 0x00

View File

@ -0,0 +1,55 @@
.global JoyousTowerFloorID
JoyousTowerFloorID:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x47, 0x05, 0x63, 0x02, 0x5e, 0x00, 0x9d, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x48, 0x05, 0x64, 0x02, 0x1e, 0x00, 0x9d, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x49, 0x05, 0x65, 0x02, 0x1e, 0x00, 0x9d, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x4a, 0x05, 0x66, 0x02, 0x1e, 0x00, 0x9f, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x4b, 0x05, 0x67, 0x02, 0x1e, 0x00, 0x9f, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x4c, 0x05, 0x68, 0x02, 0x1e, 0x00, 0x9f, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x4d, 0x05, 0x69, 0x02, 0x1e, 0x00, 0x9f, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x4e, 0x05, 0x6a, 0x02, 0x1e, 0x00, 0x9f, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x4f, 0x05, 0x6b, 0x02, 0x1e, 0x00, 0x9f, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x50, 0x05, 0x6b, 0x02, 0x5f, 0x00, 0x9f, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x51, 0x05, 0x6c, 0x02, 0x60, 0x00, 0x9f, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x52, 0x05, 0x6d, 0x02, 0x60, 0x00, 0x9f, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x53, 0x05, 0x6e, 0x02, 0x5f, 0x00, 0x9f, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x54, 0x05, 0x6f, 0x02, 0x5f, 0x00, 0x9f, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x55, 0x05, 0x70, 0x02, 0x5f, 0x00, 0x9f, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x56, 0x05, 0x71, 0x02, 0x5f, 0x00, 0x9f, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x57, 0x05, 0x72, 0x02, 0x5f, 0x00, 0x9f, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x58, 0x05, 0x73, 0x02, 0x5f, 0x00, 0x9f, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x59, 0x05, 0x74, 0x02, 0x5f, 0x00, 0x9f, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x5a, 0x05, 0x75, 0x02, 0x61, 0x00, 0x9f, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x5b, 0x05, 0x76, 0x02, 0x62, 0x00, 0x9f, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x5c, 0x05, 0x77, 0x02, 0x62, 0x00, 0x9f, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x5d, 0x05, 0x78, 0x02, 0x62, 0x00, 0x9f, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x5e, 0x05, 0x79, 0x02, 0x62, 0x00, 0x9f, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x5f, 0x05, 0x7a, 0x02, 0x62, 0x00, 0x9f, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x60, 0x05, 0x7b, 0x02, 0x62, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x61, 0x05, 0x7c, 0x02, 0x62, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x62, 0x05, 0x7d, 0x02, 0x62, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x63, 0x05, 0x7e, 0x02, 0x62, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x64, 0x05, 0x7f, 0x02, 0x63, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x65, 0x05, 0x80, 0x02, 0x64, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x66, 0x05, 0x80, 0x02, 0x64, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x67, 0x05, 0x81, 0x02, 0x64, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x68, 0x05, 0x81, 0x02, 0x64, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x69, 0x05, 0x82, 0x02, 0x64, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x6a, 0x05, 0x83, 0x02, 0x64, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x6b, 0x05, 0x84, 0x02, 0x64, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x6c, 0x05, 0x84, 0x02, 0x64, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x6d, 0x05, 0x85, 0x02, 0x64, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x6e, 0x05, 0x86, 0x02, 0x65, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x6f, 0x05, 0x87, 0x02, 0x65, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x70, 0x05, 0x88, 0x02, 0x65, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x71, 0x05, 0x89, 0x02, 0x65, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x72, 0x05, 0x8a, 0x02, 0x65, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x73, 0x05, 0x8b, 0x02, 0x65, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x74, 0x05, 0x8c, 0x02, 0x65, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x75, 0x05, 0x8d, 0x02, 0x65, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x76, 0x05, 0x8d, 0x02, 0x65, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x77, 0x05, 0x8d, 0x02, 0x65, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x78, 0x05, 0x8e, 0x02, 0x66, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x79, 0x05, 0x8f, 0x02, 0x67, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x7a, 0x05, 0x90, 0x02, 0x67, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x7b, 0x05, 0x91, 0x02, 0x67, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x7c, 0x05, 0x91, 0x02, 0x67, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x7d, 0x05, 0x92, 0x02, 0x67, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x7e, 0x05, 0x93, 0x02, 0x67, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x7f, 0x05, 0x94, 0x02, 0x67, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x80, 0x05, 0x95, 0x02, 0x67, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x81, 0x05, 0x96, 0x02, 0x67, 0x00, 0xa0, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x82, 0x05, 0x97, 0x02, 0x68, 0x00, 0xa1, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x83, 0x05, 0x98, 0x02, 0x68, 0x00, 0xa1, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x84, 0x05, 0x99, 0x02, 0x68, 0x00, 0xa1, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x85, 0x05, 0x9a, 0x02, 0x68, 0x00, 0xa1, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x86, 0x05, 0x9a, 0x02, 0x68, 0x00, 0xa1, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x87, 0x05, 0x9b, 0x02, 0x68, 0x00, 0xa1, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x88, 0x05, 0x9c, 0x02, 0x68, 0x00, 0xa1, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x89, 0x05, 0x9d, 0x02, 0x68, 0x00, 0xa1, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x8a, 0x05, 0x9e, 0x02, 0x68, 0x00, 0xa1, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x8b, 0x05, 0x9e, 0x02, 0x68, 0x00, 0xa1, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x8c, 0x05, 0x9f, 0x02, 0x69, 0x00, 0xa1, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x8d, 0x05, 0xa0, 0x02, 0x6a, 0x00, 0xa1, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x8e, 0x05, 0xa1, 0x02, 0x6a, 0x00, 0xa1, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x8f, 0x05, 0xa1, 0x02, 0x6b, 0x00, 0xa1, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x90, 0x05, 0xa2, 0x02, 0x6c, 0x00, 0xa1, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x91, 0x05, 0xa2, 0x02, 0x6a, 0x00, 0xa1, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x92, 0x05, 0xa3, 0x02, 0x6a, 0x00, 0xa1, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x93, 0x05, 0xa4, 0x02, 0x6a, 0x00, 0xa1, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x94, 0x05, 0xa5, 0x02, 0x6a, 0x00, 0xa2, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x95, 0x05, 0xa6, 0x02, 0x6d, 0x00, 0xa2, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x96, 0x05, 0xa7, 0x02, 0x6e, 0x00, 0xa2, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x97, 0x05, 0xa7, 0x02, 0x6f, 0x00, 0xa2, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x98, 0x05, 0xa7, 0x02, 0x6f, 0x00, 0xa2, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x99, 0x05, 0xa8, 0x02, 0x6f, 0x00, 0xa2, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x9a, 0x05, 0xa8, 0x02, 0x6f, 0x00, 0xa2, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x9b, 0x05, 0xa9, 0x02, 0x6f, 0x00, 0xa2, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x9c, 0x05, 0xaa, 0x02, 0x6f, 0x00, 0xa2, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x9d, 0x05, 0xaa, 0x02, 0x6f, 0x00, 0xa2, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0x9e, 0x05, 0xab, 0x02, 0x6f, 0x00, 0xa2, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0x9f, 0x05, 0xac, 0x02, 0x6f, 0x00, 0xa2, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0xa0, 0x05, 0xad, 0x02, 0x6f, 0x00, 0xa2, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0xa1, 0x05, 0xad, 0x02, 0x6f, 0x00, 0xa3, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0xa2, 0x05, 0xae, 0x02, 0x6f, 0x00, 0xa3, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0xa3, 0x05, 0xaf, 0x02, 0x6f, 0x00, 0xa3, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0xa4, 0x05, 0xb0, 0x02, 0x6f, 0x00, 0xa3, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0xa5, 0x05, 0xb0, 0x02, 0x6f, 0x00, 0xa3, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0xa6, 0x05, 0xb0, 0x02, 0x6f, 0x00, 0xa3, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0xa7, 0x05, 0xb0, 0x02, 0x6f, 0x00, 0xa3, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00, 0xa8, 0x05, 0xb0, 0x02, 0x6f, 0x00, 0xa3, 0x00, 0x9e, 0x00, 0x2e, 0x00, 0x42, 0x00, 0x00, 0x00, 0xa9, 0x05, 0xb0, 0x02, 0x6f, 0x00, 0xa3, 0x00, 0x9e, 0x00, 0x2e, 0x00
.byte 0x42, 0x00, 0x00, 0x00

View File

@ -0,0 +1,17 @@
.global LapisCaveFloorID
LapisCaveFloorID:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x40, 0x00, 0x30, 0x00, 0x04, 0x00, 0x15, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x41, 0x00, 0x30, 0x00, 0x04, 0x00, 0x15, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x42, 0x00, 0x30, 0x00, 0x04, 0x00, 0x15, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x43, 0x00, 0x31, 0x00, 0x04, 0x00, 0x15, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x44, 0x00, 0x32, 0x00, 0x04, 0x00, 0x16, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x45, 0x00, 0x32, 0x00, 0x04, 0x00, 0x16, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x46, 0x00, 0x32, 0x00, 0x04, 0x00, 0x17, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x47, 0x00, 0x32, 0x00, 0x04, 0x00, 0x17, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x48, 0x00, 0x33, 0x00, 0x04, 0x00, 0x17, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x49, 0x00, 0x33, 0x00, 0x04, 0x00, 0x17, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x4a, 0x00, 0x34, 0x00, 0x04, 0x00, 0x17, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x4b, 0x00, 0x34, 0x00, 0x04, 0x00, 0x17, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x4c, 0x00, 0x35, 0x00, 0x04, 0x00, 0x17, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x4d, 0x00, 0x36, 0x00, 0x04, 0x00, 0x17, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00

View File

@ -0,0 +1,14 @@
.byte 0x01, 0x06, 0x2d, 0x08, 0x00, 0x19, 0x03, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x01, 0x03, 0x03, 0x01, 0x00, 0x0a, 0x00, 0x0a, 0x02, 0x02, 0x05, 0x00, 0x00, 0x00
.byte 0x01, 0x06, 0x2d, 0x08, 0x00, 0x19, 0x03, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x01, 0x03, 0x03, 0x02, 0x00, 0x0a, 0x00, 0x0a, 0x02, 0x02, 0x05, 0x00, 0x00, 0x00
.byte 0x01, 0x06, 0x2d, 0x08, 0x00, 0x19, 0x03, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x01, 0x03, 0x03, 0x03, 0x00, 0x0a, 0x00, 0x0a, 0x02, 0x02, 0x05, 0x00, 0x00, 0x00
.byte 0x01, 0x06, 0x2d, 0x08, 0x00, 0x19, 0x03, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x01, 0x03, 0x03, 0x04, 0x00, 0x0f, 0x00, 0x0a, 0x02, 0x02, 0x05, 0x00, 0x00, 0x00
.byte 0x01, 0x06, 0x2d, 0x08, 0x00, 0x19, 0x03, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x03, 0x03, 0x05, 0x00, 0x0f, 0x00, 0x0a, 0x00, 0x02, 0x05, 0x00, 0x00, 0x00
.byte 0x01, 0x06, 0x2d, 0x08, 0x00, 0x19, 0x03, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x03, 0x03, 0x06, 0x00, 0x0f, 0x00, 0x0a, 0x00, 0x02, 0x05, 0x00, 0x00, 0x00
.byte 0x01, 0x06, 0x2d, 0x08, 0x00, 0x1e, 0x03, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x03, 0x07, 0x00, 0x0f, 0x00, 0x0a, 0x00, 0x02, 0x05, 0x00, 0x00, 0x00
.byte 0x01, 0x06, 0x2d, 0x08, 0x00, 0x1e, 0x03, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x04, 0x03, 0x08, 0x00, 0x0f, 0x00, 0x14, 0x00, 0x02, 0x05, 0x00, 0x00, 0x00
.byte 0x01, 0x06, 0x2d, 0x08, 0x00, 0x1e, 0x03, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x03, 0x09, 0x00, 0x0f, 0x00, 0x14, 0x02, 0x02, 0x05, 0x00, 0x00, 0x00
.byte 0x01, 0x06, 0x2d, 0x08, 0x00, 0x1e, 0x03, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x03, 0x0a, 0x00, 0x14, 0x00, 0x14, 0x02, 0x02, 0x05, 0x00, 0x00, 0x00
.byte 0x01, 0x06, 0x2d, 0x08, 0x00, 0x1e, 0x03, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x03, 0x0b, 0x00, 0x14, 0x00, 0x1e, 0x02, 0x02, 0x05, 0x00, 0x00, 0x00
.byte 0x01, 0x06, 0x2d, 0x08, 0x00, 0x1e, 0x03, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x03, 0x0c, 0x00, 0x14, 0x00, 0x1e, 0x02, 0x02, 0x05, 0x00, 0x00, 0x00
.byte 0x01, 0x06, 0x2d, 0x08, 0x00, 0x1e, 0x03, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x03, 0x0d, 0x00, 0x14, 0x00, 0x28, 0x02, 0x02, 0x05, 0x00, 0x00, 0x00
.byte 0x01, 0x06, 0x2d, 0x08, 0x00, 0x1e, 0x03, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x03, 0x03, 0x0e, 0x00, 0x14, 0x00, 0x28, 0x02, 0x02, 0x05, 0x00, 0x00, 0x00

View File

@ -0,0 +1,26 @@
.global MagmaCavernFloorID
MagmaCavernFloorID:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x7f, 0x00, 0x51, 0x00, 0x04, 0x00, 0x24, 0x00, 0x25, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x80, 0x00, 0x51, 0x00, 0x04, 0x00, 0x24, 0x00, 0x25, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x81, 0x00, 0x51, 0x00, 0x04, 0x00, 0x24, 0x00, 0x25, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x82, 0x00, 0x52, 0x00, 0x04, 0x00, 0x26, 0x00, 0x25, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x83, 0x00, 0x53, 0x00, 0x04, 0x00, 0x26, 0x00, 0x25, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x84, 0x00, 0x53, 0x00, 0x04, 0x00, 0x26, 0x00, 0x25, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x85, 0x00, 0x54, 0x00, 0x04, 0x00, 0x26, 0x00, 0x25, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x86, 0x00, 0x55, 0x00, 0x04, 0x00, 0x26, 0x00, 0x25, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x87, 0x00, 0x56, 0x00, 0x04, 0x00, 0x26, 0x00, 0x25, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x88, 0x00, 0x56, 0x00, 0x04, 0x00, 0x27, 0x00, 0x25, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x89, 0x00, 0x57, 0x00, 0x04, 0x00, 0x27, 0x00, 0x25, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x8a, 0x00, 0x58, 0x00, 0x04, 0x00, 0x27, 0x00, 0x25, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x8b, 0x00, 0x59, 0x00, 0x04, 0x00, 0x27, 0x00, 0x25, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x8c, 0x00, 0x5a, 0x00, 0x04, 0x00, 0x27, 0x00, 0x25, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x8d, 0x00, 0x5b, 0x00, 0x04, 0x00, 0x27, 0x00, 0x25, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x8e, 0x00, 0x5b, 0x00, 0x04, 0x00, 0x27, 0x00, 0x25, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x8f, 0x00, 0x5b, 0x00, 0x04, 0x00, 0x27, 0x00, 0x25, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x90, 0x00, 0x5b, 0x00, 0x04, 0x00, 0x27, 0x00, 0x25, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x91, 0x00, 0x5b, 0x00, 0x04, 0x00, 0x27, 0x00, 0x25, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x92, 0x00, 0x5b, 0x00, 0x04, 0x00, 0x27, 0x00, 0x25, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x93, 0x00, 0x5c, 0x00, 0x04, 0x00, 0x27, 0x00, 0x25, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x94, 0x00, 0x5d, 0x00, 0x04, 0x00, 0x27, 0x00, 0x25, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x95, 0x00, 0x5d, 0x00, 0x04, 0x00, 0x27, 0x00, 0x25, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00

View File

@ -0,0 +1,23 @@
.byte 0x00, 0x07, 0x2e, 0x0c, 0x00, 0x0f, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x04, 0x01, 0x00, 0x0f, 0x00, 0x00, 0x02, 0x07, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x07, 0x2e, 0x0c, 0x00, 0x14, 0x06, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x04, 0x02, 0x00, 0x0f, 0x00, 0x00, 0x02, 0x07, 0x07, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x2e, 0x0c, 0x00, 0x14, 0x07, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x04, 0x03, 0x00, 0x0f, 0x00, 0x00, 0x02, 0x07, 0x07, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x2e, 0x0c, 0x00, 0x19, 0x07, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x04, 0x00, 0x0f, 0x00, 0x00, 0x02, 0x07, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x08, 0x2e, 0x0c, 0x00, 0x14, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x04, 0x05, 0x00, 0x0f, 0x00, 0x00, 0x02, 0x07, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x08, 0x2e, 0x0c, 0x00, 0x14, 0x07, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x04, 0x06, 0x00, 0x0f, 0x00, 0x00, 0x02, 0x07, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x08, 0x2e, 0x0c, 0x00, 0x14, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x04, 0x07, 0x00, 0x0f, 0x00, 0x00, 0x02, 0x07, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x08, 0x3b, 0x0c, 0x00, 0x14, 0x07, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x04, 0x08, 0x00, 0x0f, 0x00, 0x00, 0x02, 0x07, 0x07, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x3b, 0x0c, 0x00, 0x0f, 0x07, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x04, 0x09, 0x00, 0x0f, 0x00, 0x00, 0x02, 0x07, 0x07, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x3b, 0x0c, 0x00, 0x14, 0x07, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x04, 0x0a, 0x00, 0x0f, 0x00, 0x00, 0x02, 0x07, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x07, 0x3b, 0x0c, 0x00, 0x19, 0x07, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x04, 0x0b, 0x00, 0x0f, 0x00, 0x00, 0x02, 0x07, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x07, 0x3b, 0x0c, 0x00, 0x19, 0x07, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x05, 0x04, 0x0c, 0x00, 0x0f, 0x00, 0x00, 0x02, 0x07, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x07, 0x3b, 0x0c, 0x00, 0x14, 0x07, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x04, 0x0d, 0x00, 0x0f, 0x00, 0x00, 0x02, 0x07, 0x07, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x3b, 0x0c, 0x00, 0x14, 0x07, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x04, 0x0e, 0x00, 0x0f, 0x00, 0x00, 0x02, 0x07, 0x07, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x3b, 0x0c, 0x00, 0x0f, 0x07, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x04, 0x0f, 0x00, 0x0f, 0x00, 0x00, 0x02, 0x07, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x08, 0x3b, 0x0c, 0x00, 0x14, 0x07, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x04, 0x10, 0x00, 0x0f, 0x00, 0x00, 0x02, 0x07, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x08, 0x3b, 0x0c, 0x00, 0x19, 0x07, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x04, 0x11, 0x00, 0x0f, 0x00, 0x00, 0x02, 0x07, 0x07, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x30, 0x0c, 0x00, 0x19, 0x07, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x04, 0x12, 0x00, 0x0f, 0x00, 0x00, 0x02, 0x07, 0x07, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x30, 0x0c, 0x00, 0x14, 0x07, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x04, 0x13, 0x00, 0x0f, 0x00, 0x00, 0x02, 0x07, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x08, 0x30, 0x0c, 0x00, 0x14, 0x07, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x04, 0x14, 0x00, 0x0f, 0x00, 0x00, 0x02, 0x07, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x08, 0x30, 0x0c, 0x00, 0x14, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x04, 0x15, 0x00, 0x0f, 0x00, 0x00, 0x02, 0x07, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x08, 0x30, 0x0c, 0x00, 0x14, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x04, 0x16, 0x00, 0x0f, 0x00, 0x00, 0x02, 0x07, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x08, 0x30, 0x0c, 0x00, 0x14, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x04, 0x17, 0x00, 0x0f, 0x00, 0x00, 0x02, 0x07, 0x07, 0x00, 0x00, 0x00

View File

@ -0,0 +1,6 @@
.global MagmaCavernPitFloorID
MagmaCavernPitFloorID:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x96, 0x00, 0x5e, 0x00, 0x03, 0x00, 0x28, 0x00, 0x25, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x97, 0x00, 0x5f, 0x00, 0x03, 0x00, 0x28, 0x00, 0x25, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x98, 0x00, 0x60, 0x00, 0x03, 0x00, 0x28, 0x00, 0x25, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00

View File

@ -0,0 +1,3 @@
.byte 0x0f, 0x08, 0x30, 0x19, 0x00, 0x14, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x04, 0x04, 0x01, 0x00, 0x0a, 0x06, 0x00, 0x02, 0x0d, 0x06, 0x00, 0x00, 0x00
.byte 0x0f, 0x08, 0x30, 0x19, 0x00, 0x14, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x04, 0x02, 0x14, 0x0a, 0x06, 0x00, 0x00, 0x0d, 0x06, 0x00, 0x00, 0x00
.byte 0x0f, 0x07, 0x46, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x03, 0x07, 0x32, 0x06, 0x14, 0x00, 0x0d, 0x06, 0x00, 0x00, 0x00

View File

@ -0,0 +1,23 @@
.global MeteorCaveFloorID
MeteorCaveFloorID:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x46, 0x01, 0xa1, 0x00, 0x07, 0x00, 0x38, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00
.byte 0x47, 0x01, 0xa1, 0x00, 0x07, 0x00, 0x38, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00
.byte 0x48, 0x01, 0xa1, 0x00, 0x07, 0x00, 0x38, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00
.byte 0x49, 0x01, 0xa1, 0x00, 0x07, 0x00, 0x3a, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00
.byte 0x4a, 0x01, 0xa1, 0x00, 0x07, 0x00, 0x3a, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00
.byte 0x4b, 0x01, 0xa1, 0x00, 0x07, 0x00, 0x3a, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00
.byte 0x4c, 0x01, 0xa1, 0x00, 0x07, 0x00, 0x3b, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00
.byte 0x4d, 0x01, 0xa1, 0x00, 0x07, 0x00, 0x3b, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00
.byte 0x4e, 0x01, 0xa1, 0x00, 0x07, 0x00, 0x3b, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00
.byte 0x4f, 0x01, 0xa1, 0x00, 0x08, 0x00, 0x3b, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00
.byte 0x50, 0x01, 0xa1, 0x00, 0x08, 0x00, 0x3b, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00
.byte 0x51, 0x01, 0xa1, 0x00, 0x08, 0x00, 0x3b, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00
.byte 0x52, 0x01, 0xa1, 0x00, 0x08, 0x00, 0x3b, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00
.byte 0x53, 0x01, 0xa1, 0x00, 0x08, 0x00, 0x3b, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00
.byte 0x54, 0x01, 0xa1, 0x00, 0x08, 0x00, 0x3b, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00
.byte 0x55, 0x01, 0xa1, 0x00, 0x08, 0x00, 0x3b, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00
.byte 0x56, 0x01, 0xa1, 0x00, 0x08, 0x00, 0x3b, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00
.byte 0x57, 0x01, 0xa1, 0x00, 0x08, 0x00, 0x3b, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00
.byte 0x58, 0x01, 0xa1, 0x00, 0x08, 0x00, 0x3b, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00
.byte 0x59, 0x01, 0xa2, 0x00, 0x09, 0x00, 0x3b, 0x00, 0x01, 0x00, 0x2e, 0x00, 0x39, 0x00, 0x00, 0x00

View File

@ -0,0 +1,21 @@
.byte 0x00, 0x08, 0x1c, 0x15, 0x00, 0x28, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x05, 0x01, 0x00, 0x0f, 0x00, 0x00, 0x02, 0x06, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x0a, 0x1c, 0x15, 0x00, 0x28, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x01, 0x04, 0x05, 0x02, 0x00, 0x0f, 0x00, 0x00, 0x02, 0x06, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x0c, 0x1c, 0x15, 0x00, 0x28, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x01, 0x04, 0x05, 0x03, 0x00, 0x0f, 0x00, 0x0a, 0x02, 0x06, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x0f, 0x1c, 0x15, 0x00, 0x28, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x01, 0x04, 0x05, 0x04, 0x00, 0x0f, 0x00, 0x0a, 0x02, 0x06, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x0c, 0x1c, 0x15, 0x00, 0x28, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x05, 0x05, 0x00, 0x14, 0x00, 0x14, 0x02, 0x06, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x0f, 0x1c, 0x15, 0x00, 0x28, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x01, 0x04, 0x0a, 0x06, 0x00, 0x14, 0x00, 0x14, 0x01, 0x06, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x14, 0x1c, 0x15, 0x00, 0x28, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x01, 0x04, 0x0a, 0x07, 0x00, 0x14, 0x00, 0x14, 0x01, 0x06, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x0f, 0x1c, 0x15, 0x00, 0x28, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x0a, 0x08, 0x00, 0x1e, 0x00, 0x1e, 0x01, 0x06, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x0c, 0x1c, 0x15, 0x00, 0x28, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x05, 0x0a, 0x09, 0x00, 0x1e, 0x00, 0x1e, 0x01, 0x06, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x0a, 0x1c, 0x15, 0x00, 0x28, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x01, 0x05, 0x0a, 0x0a, 0x00, 0x1e, 0x00, 0x1e, 0x01, 0x06, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x08, 0x1c, 0x15, 0x00, 0x28, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x01, 0x05, 0x0a, 0x0b, 0x00, 0x1e, 0x00, 0x1e, 0x01, 0x06, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x0c, 0x1c, 0x15, 0x00, 0x28, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x05, 0x0a, 0x0c, 0x00, 0x28, 0x00, 0x28, 0x01, 0x06, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x0f, 0x1c, 0x15, 0x00, 0x28, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x05, 0x0a, 0x0d, 0x00, 0x28, 0x00, 0x28, 0x01, 0x06, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x0c, 0x1c, 0x15, 0x00, 0x28, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x01, 0x05, 0x0a, 0x0e, 0x00, 0x28, 0x00, 0x28, 0x01, 0x06, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x0f, 0x1c, 0x15, 0x00, 0x28, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x01, 0x05, 0x0a, 0x0f, 0x00, 0x28, 0x00, 0x28, 0x01, 0x06, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x0c, 0x1c, 0x15, 0x00, 0x28, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x01, 0x05, 0x0a, 0x10, 0x00, 0x28, 0x00, 0x28, 0x01, 0x06, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x0c, 0x1c, 0x15, 0x00, 0x28, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x01, 0x05, 0x0a, 0x11, 0x00, 0x28, 0x00, 0x28, 0x01, 0x06, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x0f, 0x1c, 0x15, 0x00, 0x28, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x01, 0x05, 0x0a, 0x12, 0x00, 0x28, 0x00, 0x28, 0x01, 0x06, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x0f, 0x1c, 0x15, 0x00, 0x28, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x01, 0x05, 0x0a, 0x13, 0x00, 0x28, 0x00, 0x28, 0x01, 0x06, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x0f, 0x1c, 0x15, 0x00, 0x28, 0xff, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x01, 0x05, 0x00, 0x14, 0x17, 0x28, 0x00, 0x28, 0x00, 0x06, 0x07, 0x00, 0x00, 0x00

View File

@ -0,0 +1,15 @@
.global MtBlazeFloorID
MtBlazeFloorID:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x4e, 0x00, 0x37, 0x00, 0x03, 0x00, 0x18, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x4f, 0x00, 0x37, 0x00, 0x03, 0x00, 0x18, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x50, 0x00, 0x37, 0x00, 0x03, 0x00, 0x18, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x51, 0x00, 0x38, 0x00, 0x03, 0x00, 0x19, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x52, 0x00, 0x39, 0x00, 0x03, 0x00, 0x19, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x53, 0x00, 0x3a, 0x00, 0x03, 0x00, 0x19, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x54, 0x00, 0x3b, 0x00, 0x03, 0x00, 0x19, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x55, 0x00, 0x3c, 0x00, 0x03, 0x00, 0x19, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x56, 0x00, 0x3c, 0x00, 0x03, 0x00, 0x19, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x57, 0x00, 0x3d, 0x00, 0x03, 0x00, 0x19, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x58, 0x00, 0x3d, 0x00, 0x03, 0x00, 0x19, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x59, 0x00, 0x3d, 0x00, 0x03, 0x00, 0x19, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00

View File

@ -0,0 +1,12 @@
.byte 0x0b, 0x06, 0x2e, 0x09, 0x00, 0x0f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x01, 0x00, 0x14, 0x00, 0x28, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x2e, 0x09, 0x00, 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x02, 0x00, 0x14, 0x00, 0x28, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x2e, 0x09, 0x00, 0x14, 0x03, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x03, 0x00, 0x14, 0x00, 0x28, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x2e, 0x09, 0x00, 0x14, 0x03, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x04, 0x04, 0x00, 0x14, 0x00, 0x28, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x2e, 0x09, 0x00, 0x14, 0x03, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x04, 0x05, 0x00, 0x14, 0x00, 0x28, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x2e, 0x09, 0x00, 0x14, 0x03, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x04, 0x06, 0x00, 0x14, 0x00, 0x28, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x2e, 0x09, 0x00, 0x14, 0x03, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x04, 0x07, 0x00, 0x14, 0x00, 0x28, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x2e, 0x09, 0x00, 0x14, 0x03, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x04, 0x08, 0x00, 0x14, 0x00, 0x28, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x2e, 0x09, 0x00, 0x14, 0x03, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x04, 0x09, 0x00, 0x14, 0x00, 0x28, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x2e, 0x09, 0x00, 0x14, 0x03, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x04, 0x0a, 0x00, 0x14, 0x00, 0x28, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x2e, 0x09, 0x00, 0x14, 0x03, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x04, 0x0b, 0x00, 0x14, 0x00, 0x28, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x2e, 0x09, 0x00, 0x14, 0x03, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x04, 0x0c, 0x00, 0x14, 0x00, 0x28, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00

View File

@ -0,0 +1,6 @@
.global MtBlazePeakFloorID
MtBlazePeakFloorID:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x5a, 0x00, 0x3e, 0x00, 0x01, 0x00, 0x1a, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x5b, 0x00, 0x3e, 0x00, 0x01, 0x00, 0x1a, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x5c, 0x00, 0x3f, 0x00, 0x01, 0x00, 0x1a, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00

View File

@ -0,0 +1,5 @@
.byte 0x00, 0x06, 0x2e, 0x16, 0x00, 0x14, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x01, 0x00, 0x14, 0x05, 0x28, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00
.byte 0x00, 0x07, 0x2e, 0x16, 0x00, 0x14, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x02, 0x00, 0x14, 0x05, 0x28, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00
@ Boss
.byte 0x00, 0x08, 0x43, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x03, 0x04, 0x14, 0x05, 0x28, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00

View File

@ -0,0 +1,25 @@
.global MtFarawayFloorID
MtFarawayFloorID:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0xf5, 0x05, 0xcb, 0x02, 0x48, 0x00, 0xa6, 0x00, 0x3d, 0x00, 0x2e, 0x00, 0x3e, 0x00, 0x00, 0x00
.byte 0xf6, 0x05, 0xcb, 0x02, 0x48, 0x00, 0xa6, 0x00, 0x3d, 0x00, 0x2e, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xf7, 0x05, 0xcb, 0x02, 0x48, 0x00, 0xa6, 0x00, 0x3d, 0x00, 0x2e, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xf8, 0x05, 0xcb, 0x02, 0x48, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xf9, 0x05, 0xcb, 0x02, 0x48, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xfa, 0x05, 0xcc, 0x02, 0x48, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xfb, 0x05, 0xcc, 0x02, 0x48, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xfc, 0x05, 0xcc, 0x02, 0x48, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xfd, 0x05, 0xcc, 0x02, 0x48, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0xfe, 0x05, 0xcd, 0x02, 0x49, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xff, 0x05, 0xce, 0x02, 0x4a, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0x00, 0x06, 0xcf, 0x02, 0x4a, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x01, 0x06, 0xcf, 0x02, 0x4a, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0x02, 0x06, 0xcf, 0x02, 0x4a, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x03, 0x06, 0xcf, 0x02, 0x4a, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0x04, 0x06, 0xcf, 0x02, 0x4a, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x05, 0x06, 0xcf, 0x02, 0x4a, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0x06, 0x06, 0xcf, 0x02, 0x4a, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x07, 0x06, 0xcf, 0x02, 0x4a, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0x08, 0x06, 0xd0, 0x02, 0x70, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x09, 0x06, 0xd1, 0x02, 0x70, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0x0a, 0x06, 0xd1, 0x02, 0x70, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x0b, 0x06, 0xd1, 0x02, 0x70, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0x0c, 0x06, 0xd1, 0x02, 0x70, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x0d, 0x06, 0xd1, 0x02, 0x70, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0x0e, 0x06, 0xd1, 0x02, 0x70, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x0f, 0x06, 0xd1, 0x02, 0x70, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0x10, 0x06, 0xd1, 0x02, 0x70, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x11, 0x06, 0xd1, 0x02, 0x70, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0x12, 0x06, 0xd2, 0x02, 0x70, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x13, 0x06, 0xd3, 0x02, 0x71, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0x14, 0x06, 0xd3, 0x02, 0x71, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x15, 0x06, 0xd3, 0x02, 0x71, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0x16, 0x06, 0xd3, 0x02, 0x71, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x17, 0x06, 0xd4, 0x02, 0x71, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0x18, 0x06, 0xd3, 0x02, 0x71, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x19, 0x06, 0xd3, 0x02, 0x71, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0x1a, 0x06, 0xd3, 0x02, 0x71, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x1b, 0x06, 0xd5, 0x02, 0x71, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00
.byte 0x3e, 0x00, 0x00, 0x00, 0x1c, 0x06, 0xd6, 0x02, 0x72, 0x00, 0xa7, 0x00, 0x3d, 0x00, 0x2e, 0x00, 0x3e, 0x00, 0x00, 0x00

View File

@ -0,0 +1,18 @@
.global MtFreezeFloorID
MtFreezeFloorID:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x6b, 0x00, 0x48, 0x00, 0x03, 0x00, 0x20, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x6c, 0x00, 0x48, 0x00, 0x03, 0x00, 0x20, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x6d, 0x00, 0x49, 0x00, 0x03, 0x00, 0x20, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x6e, 0x00, 0x49, 0x00, 0x03, 0x00, 0x21, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x6f, 0x00, 0x49, 0x00, 0x03, 0x00, 0x21, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x70, 0x00, 0x4a, 0x00, 0x03, 0x00, 0x21, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x71, 0x00, 0x4b, 0x00, 0x03, 0x00, 0x21, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x72, 0x00, 0x4c, 0x00, 0x03, 0x00, 0x21, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x73, 0x00, 0x4c, 0x00, 0x03, 0x00, 0x21, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x74, 0x00, 0x4c, 0x00, 0x03, 0x00, 0x21, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x75, 0x00, 0x4c, 0x00, 0x03, 0x00, 0x21, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x76, 0x00, 0x4d, 0x00, 0x03, 0x00, 0x21, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x77, 0x00, 0x4e, 0x00, 0x03, 0x00, 0x21, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x78, 0x00, 0x4e, 0x00, 0x03, 0x00, 0x21, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x79, 0x00, 0x4e, 0x00, 0x03, 0x00, 0x21, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00

View File

@ -0,0 +1,15 @@
.byte 0x0b, 0x06, 0x2f, 0x0b, 0x00, 0x14, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x03, 0x01, 0x00, 0x0f, 0x00, 0x14, 0x00, 0x02, 0x07, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x2f, 0x0b, 0x00, 0x14, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x03, 0x02, 0x00, 0x0f, 0x00, 0x14, 0x00, 0x02, 0x07, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x2f, 0x0b, 0x00, 0x19, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x03, 0x03, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x02, 0x07, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x2f, 0x0b, 0x00, 0x19, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x03, 0x04, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x02, 0x07, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x2f, 0x0b, 0x00, 0x0f, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x03, 0x05, 0x00, 0x0a, 0x00, 0x0a, 0x00, 0x02, 0x07, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x2f, 0x0b, 0x00, 0x19, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x03, 0x06, 0x00, 0x0f, 0x00, 0x0a, 0x00, 0x02, 0x07, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x2f, 0x0b, 0x00, 0x0f, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x03, 0x07, 0x00, 0x0f, 0x00, 0x0a, 0x00, 0x02, 0x07, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x2f, 0x0b, 0x00, 0x19, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x03, 0x08, 0x00, 0x14, 0x00, 0x0a, 0x00, 0x02, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x06, 0x2f, 0x0b, 0x07, 0x0f, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x03, 0x09, 0x00, 0x14, 0x00, 0x0a, 0x00, 0x02, 0x07, 0x00, 0x00, 0x00
.byte 0x00, 0x06, 0x2f, 0x0b, 0x07, 0x19, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x03, 0x0a, 0x00, 0x14, 0x00, 0x0a, 0x00, 0x02, 0x07, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x2f, 0x0b, 0x07, 0x19, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x03, 0x0b, 0x00, 0x1e, 0x00, 0x0a, 0x00, 0x02, 0x07, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x2f, 0x0b, 0x07, 0x0f, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x03, 0x0c, 0x00, 0x1e, 0x00, 0x0a, 0x00, 0x02, 0x07, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x2f, 0x0b, 0x07, 0x0f, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x03, 0x0d, 0x00, 0x1e, 0x00, 0x0a, 0x00, 0x02, 0x07, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x2f, 0x0b, 0x07, 0x19, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x03, 0x0e, 0x00, 0x1e, 0x00, 0x0a, 0x00, 0x02, 0x07, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x2f, 0x0b, 0x07, 0x19, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x03, 0x0f, 0x00, 0x1e, 0x00, 0x0a, 0x00, 0x02, 0x07, 0x00, 0x00, 0x00

View File

@ -0,0 +1,8 @@
.global MtFreezePeakFloorID
MtFreezePeakFloorID:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x7a, 0x00, 0x4f, 0x00, 0x03, 0x00, 0x22, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x7b, 0x00, 0x4f, 0x00, 0x03, 0x00, 0x22, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x7c, 0x00, 0x4f, 0x00, 0x03, 0x00, 0x22, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x7d, 0x00, 0x4f, 0x00, 0x03, 0x00, 0x23, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x7e, 0x00, 0x50, 0x00, 0x03, 0x00, 0x23, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00

View File

@ -0,0 +1,7 @@
.byte 0x0b, 0x06, 0x2f, 0x18, 0x00, 0x0f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x04, 0x01, 0x00, 0x05, 0x04, 0x1e, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x2f, 0x18, 0x00, 0x14, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x04, 0x02, 0x00, 0x05, 0x04, 0x14, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00
.byte 0x00, 0x0c, 0x2f, 0x18, 0x00, 0x19, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x04, 0x03, 0x00, 0x05, 0x04, 0x14, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00
.byte 0x00, 0x0a, 0x2f, 0x18, 0x00, 0x0f, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x04, 0x04, 0x00, 0x0a, 0x04, 0x0a, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00
@ Boss
.byte 0x00, 0x0b, 0x45, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x04, 0x05, 0x06, 0x0a, 0x04, 0x0a, 0x00, 0x02, 0x06, 0x00, 0x00, 0x00

View File

@ -0,0 +1,7 @@
.global MtFreezePeakAltFloorID
MtFreezePeakAltFloorID:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x5a, 0x01, 0x4f, 0x00, 0x0a, 0x00, 0x22, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x5b, 0x01, 0x4f, 0x00, 0x0a, 0x00, 0x22, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x5c, 0x01, 0x4f, 0x00, 0x0a, 0x00, 0x22, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x5d, 0x01, 0x4f, 0x00, 0x0a, 0x00, 0x23, 0x00, 0x1c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00

View File

@ -0,0 +1,5 @@
.byte 0x0b, 0x06, 0x2f, 0x18, 0x00, 0x0f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x04, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x05, 0x06, 0x00, 0x00, 0x00
.byte 0x0b, 0x06, 0x2f, 0x18, 0x00, 0x14, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x04, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x05, 0x06, 0x00, 0x00, 0x00
.byte 0x00, 0x0c, 0x2f, 0x18, 0x00, 0x19, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x04, 0x03, 0x00, 0x00, 0x04, 0x00, 0x00, 0x05, 0x06, 0x00, 0x00, 0x00
.byte 0x00, 0x0a, 0x2f, 0x18, 0x00, 0x0f, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x04, 0x04, 0x00, 0x00, 0x04, 0x00, 0x00, 0x05, 0x06, 0x00, 0x00, 0x00

View File

@ -0,0 +1,12 @@
.global MtSteelFloorID
MtSteelFloorID:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x08, 0x00, 0x05, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x09, 0x00, 0x05, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x0a, 0x00, 0x05, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x0b, 0x00, 0x05, 0x00, 0x01, 0x00, 0x09, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x0c, 0x00, 0x06, 0x00, 0x01, 0x00, 0x09, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x0d, 0x00, 0x07, 0x00, 0x01, 0x00, 0x09, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x0e, 0x00, 0x08, 0x00, 0x01, 0x00, 0x0a, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x0f, 0x00, 0x08, 0x00, 0x01, 0x00, 0x0a, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x10, 0x00, 0x09, 0x00, 0x01, 0x00, 0x0a, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00

View File

@ -0,0 +1,11 @@
.byte 0x0b, 0x09, 0x27, 0x03, 0x00, 0x0c, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x01, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x03, 0x03, 0x00, 0x00, 0x00
.byte 0x0b, 0x09, 0x27, 0x03, 0x00, 0x0c, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x02, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x03, 0x03, 0x00, 0x00, 0x00
.byte 0x0b, 0x08, 0x27, 0x03, 0x00, 0x0c, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x03, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x03, 0x03, 0x00, 0x00, 0x00
.byte 0x08, 0x08, 0x27, 0x03, 0x00, 0x0c, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x03, 0x04, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x03, 0x03, 0x00, 0x00, 0x00
.byte 0x08, 0x07, 0x27, 0x03, 0x00, 0x0c, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x03, 0x05, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x03, 0x03, 0x00, 0x00, 0x00
.byte 0x08, 0x07, 0x28, 0x03, 0x00, 0x0c, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x03, 0x06, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x03, 0x03, 0x00, 0x00, 0x00
.byte 0x08, 0x07, 0x28, 0x03, 0x00, 0x0c, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x03, 0x07, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x03, 0x03, 0x00, 0x00, 0x00
.byte 0x08, 0x07, 0x28, 0x03, 0x00, 0x0c, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x03, 0x08, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x03, 0x03, 0x00, 0x00, 0x00
.byte 0x00, 0x07, 0x40, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x03, 0x09, 0x01, 0x00, 0x00, 0x0b, 0x00, 0x03, 0x03, 0x00, 0x00, 0x00

View File

@ -0,0 +1,13 @@
.global MtThunderFloorID
MtThunderFloorID:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x27, 0x00, 0x1d, 0x00, 0x01, 0x00, 0x0f, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x28, 0x00, 0x1e, 0x00, 0x01, 0x00, 0x0f, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x29, 0x00, 0x1e, 0x00, 0x01, 0x00, 0x0f, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x2a, 0x00, 0x1e, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x2b, 0x00, 0x1f, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x2c, 0x00, 0x20, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x2d, 0x00, 0x21, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x2e, 0x00, 0x22, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x2f, 0x00, 0x23, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00
.byte 0x30, 0x00, 0x24, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00

Some files were not shown because too many files have changed in this diff Show More