From f5e65a4d3ea71e3441d0104d43a2557bb1d66c25 Mon Sep 17 00:00:00 2001 From: Dark Date: Thu, 18 Jan 2024 21:55:16 -0500 Subject: [PATCH] make the symbol importer script faster --- .gitignore | 3 + tools/batch-demangle/.gitignore | 1 + tools/batch-demangle/Cargo.lock | 283 + tools/batch-demangle/Cargo.toml | 10 + tools/batch-demangle/src/main.rs | 29 + tools/batch-demangle/symbols.txt | 85894 ++++++++++++++++++ tools/ghidra-scripts/dtk_symbol_importer.py | 36 +- 7 files changed, 86234 insertions(+), 22 deletions(-) create mode 100644 tools/batch-demangle/.gitignore create mode 100644 tools/batch-demangle/Cargo.lock create mode 100644 tools/batch-demangle/Cargo.toml create mode 100644 tools/batch-demangle/src/main.rs create mode 100644 tools/batch-demangle/symbols.txt diff --git a/.gitignore b/.gitignore index b093d44e..514873f0 100644 --- a/.gitignore +++ b/.gitignore @@ -36,3 +36,6 @@ ignore/ ignored/ *.ignore.* *.ignored.* + +# rust target folders +tools/*/target/ diff --git a/tools/batch-demangle/.gitignore b/tools/batch-demangle/.gitignore new file mode 100644 index 00000000..ea8c4bf7 --- /dev/null +++ b/tools/batch-demangle/.gitignore @@ -0,0 +1 @@ +/target diff --git a/tools/batch-demangle/Cargo.lock b/tools/batch-demangle/Cargo.lock new file mode 100644 index 00000000..0b1420d0 --- /dev/null +++ b/tools/batch-demangle/Cargo.lock @@ -0,0 +1,283 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "anstream" +version = "0.6.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e2e1ebcb11de5c03c67de28a7df593d32191b44939c482e97702baaaa6ab6a5" +dependencies = [ + "anstyle", + "anstyle-parse", + "anstyle-query", + "anstyle-wincon", + "colorchoice", + "utf8parse", +] + +[[package]] +name = "anstyle" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87" + +[[package]] +name = "anstyle-parse" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" +dependencies = [ + "utf8parse", +] + +[[package]] +name = "anstyle-query" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648" +dependencies = [ + "windows-sys", +] + +[[package]] +name = "anstyle-wincon" +version = "3.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" +dependencies = [ + "anstyle", + "windows-sys", +] + +[[package]] +name = "argh" +version = "0.1.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7af5ba06967ff7214ce4c7419c7d185be7ecd6cc4965a8f6e1d8ce0398aad219" +dependencies = [ + "argh_derive", + "argh_shared", +] + +[[package]] +name = "argh_derive" +version = "0.1.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56df0aeedf6b7a2fc67d06db35b09684c3e8da0c95f8f27685cb17e08413d87a" +dependencies = [ + "argh_shared", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "argh_shared" +version = "0.1.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5693f39141bda5760ecc4111ab08da40565d1771038c4a0250f03457ec707531" +dependencies = [ + "serde", +] + +[[package]] +name = "clap" +version = "4.4.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e578d6ec4194633722ccf9544794b71b1385c3c027efe0c55db226fc880865c" +dependencies = [ + "clap_builder", + "clap_derive", +] + +[[package]] +name = "clap_builder" +version = "4.4.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4df4df40ec50c46000231c914968278b1eb05098cf8f1b3a518a95030e71d1c7" +dependencies = [ + "anstream", + "anstyle", + "clap_lex", + "strsim", +] + +[[package]] +name = "clap_derive" +version = "4.4.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "clap_lex" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1" + +[[package]] +name = "colorchoice" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" + +[[package]] +name = "cwdemangle" +version = "0.1.7" +source = "git+https://github.com/encounter/cwdemangle#ad2154fc66e3cf0c86308a2587c9b91ec473f95d" +dependencies = [ + "argh", +] + +[[package]] +name = "heck" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" + +[[package]] +name = "proc-macro2" +version = "1.0.76" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95fc56cda0b5c3325f5fbbd7ff9fda9e02bb00bb3dac51252d2f1bfa1cb8cc8c" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quote" +version = "1.0.35" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "rb3-batch-demangle" +version = "0.1.0" +dependencies = [ + "clap", + "cwdemangle", +] + +[[package]] +name = "serde" +version = "1.0.195" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63261df402c67811e9ac6def069e4786148c4563f4b50fd4bf30aa370d626b02" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.195" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "46fe8f8603d81ba86327b23a2e9cdf49e1255fb94a4c5f297f6ee0547178ea2c" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "strsim" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" + +[[package]] +name = "syn" +version = "2.0.48" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "unicode-ident" +version = "1.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" + +[[package]] +name = "utf8parse" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" + +[[package]] +name = "windows-sys" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" +dependencies = [ + "windows-targets", +] + +[[package]] +name = "windows-targets" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" +dependencies = [ + "windows_aarch64_gnullvm", + "windows_aarch64_msvc", + "windows_i686_gnu", + "windows_i686_msvc", + "windows_x86_64_gnu", + "windows_x86_64_gnullvm", + "windows_x86_64_msvc", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" + +[[package]] +name = "windows_i686_gnu" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" + +[[package]] +name = "windows_i686_msvc" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" diff --git a/tools/batch-demangle/Cargo.toml b/tools/batch-demangle/Cargo.toml new file mode 100644 index 00000000..99ffda50 --- /dev/null +++ b/tools/batch-demangle/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "rb3-batch-demangle" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +clap = { version = "4.4.18", features = ["derive"] } +cwdemangle = { git = "https://github.com/encounter/cwdemangle", version = "0.1.7" } diff --git a/tools/batch-demangle/src/main.rs b/tools/batch-demangle/src/main.rs new file mode 100644 index 00000000..d34ccaaa --- /dev/null +++ b/tools/batch-demangle/src/main.rs @@ -0,0 +1,29 @@ +use clap::Parser; +use cwdemangle::*; +use std::fs::read_to_string; + +#[derive(Parser)] +struct Args { + input: String, +} + +fn main() { + let args = Args::parse(); + let f = read_to_string(args.input).unwrap(); + + for line in f.lines() { + let parts = line.split(" ").collect::>(); + let sym = parts[0]; + let demangled = match demangle(parts[0], &DemangleOptions { + omit_empty_parameters: false + }) { + Some(x) => x, + None => "@@@@@".into() + }; + + let addr_idx = parts[2].find("0x").unwrap(); + let addr = &parts[2][addr_idx..addr_idx + 10]; + + println!("{sym}|||{demangled}|||{addr}"); + } +} diff --git a/tools/batch-demangle/symbols.txt b/tools/batch-demangle/symbols.txt new file mode 100644 index 00000000..55693e1d --- /dev/null +++ b/tools/batch-demangle/symbols.txt @@ -0,0 +1,85894 @@ +memcpy = .init:0x80004000; // type:function size:0x29C scope:global +__fill_mem = .init:0x8000429C; // type:function size:0xB4 scope:global +memset = .init:0x80004350; // type:function size:0x30 scope:global +gTRKInterruptVectorTable = .init:0x80004380; // type:label scope:global +gTRKInterruptVectorTableEnd = .init:0x800062B4; // type:label scope:global +__check_pad3 = .init:0x800062C0; // type:function size:0x28 scope:local +__set_debug_bba = .init:0x800062F0; // type:function size:0xC scope:local +__get_debug_bba = .init:0x80006300; // type:function size:0x8 scope:local +__start = .init:0x80006310; // type:function size:0x168 scope:weak +__my_flush_cache = .init:0x80006480; // type:function size:0x44 scope:local +__init_registers = .init:0x800064D0; // type:function size:0x90 scope:local +__init_data = .init:0x80006560; // type:function size:0xBC scope:local +__init_hardware = .init:0x80006620; // type:function size:0x24 scope:global +__flush_cache = .init:0x80006650; // type:function size:0x34 scope:global +_rom_copy_info = .init:0x80006684; // type:object size:0x84 scope:global data:4byte +_bss_init_info = .init:0x80006708; // type:object size:0x20 scope:global data:4byte +@etb_80006740 = extab:0x80006740; // type:object size:0x8 scope:local hidden +@etb_80006748 = extab:0x80006748; // type:object size:0x8 scope:local hidden +@etb_80006750 = extab:0x80006750; // type:object size:0x28 scope:local hidden +@etb_80006778 = extab:0x80006778; // type:object size:0x28 scope:local hidden +@etb_800067A0 = extab:0x800067A0; // type:object size:0x8 scope:local hidden +@etb_800067A8 = extab:0x800067A8; // type:object size:0x18 scope:local hidden +@etb_800067C0 = extab:0x800067C0; // type:object size:0x8 scope:local hidden +@etb_800067C8 = extab:0x800067C8; // type:object size:0x18 scope:local hidden +@etb_800067E0 = extab:0x800067E0; // type:object size:0x8 scope:local hidden +@etb_800067E8 = extab:0x800067E8; // type:object size:0x8 scope:local hidden +@etb_800067F0 = extab:0x800067F0; // type:object size:0x8 scope:local hidden +@etb_800067F8 = extab:0x800067F8; // type:object size:0x8 scope:local hidden +@etb_80006800 = extab:0x80006800; // type:object size:0x8 scope:local hidden +@etb_80006808 = extab:0x80006808; // type:object size:0x8 scope:local hidden +@etb_80006810 = extab:0x80006810; // type:object size:0x8 scope:local hidden +@etb_80006818 = extab:0x80006818; // type:object size:0x14 scope:local hidden +@etb_8000682C = extab:0x8000682C; // type:object size:0x2C scope:local hidden +@etb_80006858 = extab:0x80006858; // type:object size:0x14 scope:local hidden +@etb_8000686C = extab:0x8000686C; // type:object size:0x7C scope:local hidden +@etb_800068E8 = extab:0x800068E8; // type:object size:0x178 scope:local hidden +@etb_80006A60 = extab:0x80006A60; // type:object size:0x8 scope:local hidden +@etb_80006A68 = extab:0x80006A68; // type:object size:0x8 scope:local hidden +@etb_80006A70 = extab:0x80006A70; // type:object size:0x8 scope:local hidden +@etb_80006A78 = extab:0x80006A78; // type:object size:0x8 scope:local hidden +@etb_80006A80 = extab:0x80006A80; // type:object size:0x8 scope:local hidden +@etb_80006A88 = extab:0x80006A88; // type:object size:0x8 scope:local hidden +@etb_80006A90 = extab:0x80006A90; // type:object size:0x8 scope:local hidden +@etb_80006A98 = extab:0x80006A98; // type:object size:0x8 scope:local hidden +@etb_80006AA0 = extab:0x80006AA0; // type:object size:0x8 scope:local hidden +@etb_80006AA8 = extab:0x80006AA8; // type:object size:0x8 scope:local hidden +@etb_80006AB0 = extab:0x80006AB0; // type:object size:0x16C4 scope:local hidden +@etb_80008174 = extab:0x80008174; // type:object size:0x3C scope:local hidden +@etb_800081B0 = extab:0x800081B0; // type:object size:0x8 scope:local hidden +@etb_800081B8 = extab:0x800081B8; // type:object size:0x8 scope:local hidden +@etb_800081C0 = extab:0x800081C0; // type:object size:0x8 scope:local hidden +@etb_800081C8 = extab:0x800081C8; // type:object size:0x8 scope:local hidden +@etb_800081D0 = extab:0x800081D0; // type:object size:0x8 scope:local hidden +@etb_800081D8 = extab:0x800081D8; // type:object size:0x3C scope:local hidden +@etb_80008214 = extab:0x80008214; // type:object size:0x8 scope:local hidden +@etb_8000821C = extab:0x8000821C; // type:object size:0x3C scope:local hidden +@etb_80008258 = extab:0x80008258; // type:object size:0x8 scope:local hidden +@etb_80008260 = extab:0x80008260; // type:object size:0x8 scope:local hidden +@etb_80008268 = extab:0x80008268; // type:object size:0x8 scope:local hidden +@etb_80008270 = extab:0x80008270; // type:object size:0x28 scope:local hidden +@etb_80008298 = extab:0x80008298; // type:object size:0x18 scope:local hidden +@etb_800082B0 = extab:0x800082B0; // type:object size:0x8 scope:local hidden +@etb_800082B8 = extab:0x800082B8; // type:object size:0x8 scope:local hidden +@etb_800082C0 = extab:0x800082C0; // type:object size:0x44 scope:local hidden +@etb_80008304 = extab:0x80008304; // type:object size:0x1C scope:local hidden +@etb_80008320 = extab:0x80008320; // type:object size:0x30 scope:local hidden +@etb_80008350 = extab:0x80008350; // type:object size:0x8 scope:local hidden +@etb_80008358 = extab:0x80008358; // type:object size:0x20 scope:local hidden +@etb_80008378 = extab:0x80008378; // type:object size:0x8 scope:local hidden +@etb_80008380 = extab:0x80008380; // type:object size:0x18 scope:local hidden +@etb_80008398 = extab:0x80008398; // type:object size:0x18 scope:local hidden +@etb_800083B0 = extab:0x800083B0; // type:object size:0x100 scope:local hidden +@etb_800084B0 = extab:0x800084B0; // type:object size:0x18 scope:local hidden +@etb_800084C8 = extab:0x800084C8; // type:object size:0x18 scope:local hidden +@etb_800084E0 = extab:0x800084E0; // type:object size:0xE4 scope:local hidden +@etb_800085C4 = extab:0x800085C4; // type:object size:0x8 scope:local hidden +@etb_800085CC = extab:0x800085CC; // type:object size:0x8 scope:local hidden +@etb_800085D4 = extab:0x800085D4; // type:object size:0x8 scope:local hidden +@etb_800085DC = extab:0x800085DC; // type:object size:0x8 scope:local hidden +@etb_800085E4 = extab:0x800085E4; // type:object size:0x8 scope:local hidden +@etb_800085EC = extab:0x800085EC; // type:object size:0x18 scope:local hidden +@etb_80008604 = extab:0x80008604; // type:object size:0x8 scope:local hidden +@etb_8000860C = extab:0x8000860C; // type:object size:0x8 scope:local hidden +@etb_80008614 = extab:0x80008614; // type:object size:0x8 scope:local hidden +@etb_8000861C = extab:0x8000861C; // type:object size:0x8 scope:local hidden +@etb_80008624 = extab:0x80008624; // type:object size:0x8 scope:local hidden +@etb_8000862C = extab:0x8000862C; // type:object size:0x8 scope:local hidden +@etb_80008634 = extab:0x80008634; // type:object size:0x8 scope:local hidden +@etb_8000863C = extab:0x8000863C; // type:object size:0x8 scope:local hidden +@etb_80008644 = extab:0x80008644; // type:object size:0x8 scope:local hidden +@etb_8000864C = extab:0x8000864C; // type:object size:0x8 scope:local hidden +@etb_80008654 = extab:0x80008654; // type:object size:0x8 scope:local hidden +@etb_8000865C = extab:0x8000865C; // type:object size:0x8 scope:local hidden +@etb_80008664 = extab:0x80008664; // type:object size:0x8 scope:local hidden +@etb_8000866C = extab:0x8000866C; // type:object size:0x8 scope:local hidden +@etb_80008674 = extab:0x80008674; // type:object size:0x40 scope:local hidden +@etb_800086B4 = extab:0x800086B4; // type:object size:0x1C scope:local hidden +@etb_800086D0 = extab:0x800086D0; // type:object size:0x1C scope:local hidden +@etb_800086EC = extab:0x800086EC; // type:object size:0x1C scope:local hidden +@etb_80008708 = extab:0x80008708; // type:object size:0x1C scope:local hidden +@etb_80008724 = extab:0x80008724; // type:object size:0x1C scope:local hidden +@etb_80008740 = extab:0x80008740; // type:object size:0x20 scope:local hidden +@etb_80008760 = extab:0x80008760; // type:object size:0x8 scope:local hidden +@etb_80008768 = extab:0x80008768; // type:object size:0x2C scope:local hidden +@etb_80008794 = extab:0x80008794; // type:object size:0x8 scope:local hidden +@etb_8000879C = extab:0x8000879C; // type:object size:0x8 scope:local hidden +@etb_800087A4 = extab:0x800087A4; // type:object size:0x18 scope:local hidden +@etb_800087BC = extab:0x800087BC; // type:object size:0x8 scope:local hidden +@etb_800087C4 = extab:0x800087C4; // type:object size:0x8 scope:local hidden +@etb_800087CC = extab:0x800087CC; // type:object size:0x28 scope:local hidden +@etb_800087F4 = extab:0x800087F4; // type:object size:0x8 scope:local hidden +@etb_800087FC = extab:0x800087FC; // type:object size:0x94 scope:local hidden +@etb_80008890 = extab:0x80008890; // type:object size:0x1C scope:local hidden +@etb_800088AC = extab:0x800088AC; // type:object size:0x8 scope:local hidden +@etb_800088B4 = extab:0x800088B4; // type:object size:0x8 scope:local hidden +@etb_800088BC = extab:0x800088BC; // type:object size:0x8 scope:local hidden +@etb_800088C4 = extab:0x800088C4; // type:object size:0x8 scope:local hidden +@etb_800088CC = extab:0x800088CC; // type:object size:0x8 scope:local hidden +@etb_800088D4 = extab:0x800088D4; // type:object size:0x8 scope:local hidden +@etb_800088DC = extab:0x800088DC; // type:object size:0x8 scope:local hidden +@etb_800088E4 = extab:0x800088E4; // type:object size:0x8 scope:local hidden +@etb_800088EC = extab:0x800088EC; // type:object size:0x8 scope:local hidden +@etb_800088F4 = extab:0x800088F4; // type:object size:0x8 scope:local hidden +@etb_800088FC = extab:0x800088FC; // type:object size:0x8 scope:local hidden +@etb_80008904 = extab:0x80008904; // type:object size:0x8 scope:local hidden +@etb_8000890C = extab:0x8000890C; // type:object size:0x54 scope:local hidden +@etb_80008960 = extab:0x80008960; // type:object size:0x8 scope:local hidden +@etb_80008968 = extab:0x80008968; // type:object size:0x8 scope:local hidden +@etb_80008970 = extab:0x80008970; // type:object size:0x88 scope:local hidden +@etb_800089F8 = extab:0x800089F8; // type:object size:0x8 scope:local hidden +@etb_80008A00 = extab:0x80008A00; // type:object size:0x1C scope:local hidden +@etb_80008A1C = extab:0x80008A1C; // type:object size:0x3C scope:local hidden +@etb_80008A58 = extab:0x80008A58; // type:object size:0x88 scope:local hidden +@etb_80008AE0 = extab:0x80008AE0; // type:object size:0x8 scope:local hidden +@etb_80008AE8 = extab:0x80008AE8; // type:object size:0x8 scope:local hidden +@etb_80008AF0 = extab:0x80008AF0; // type:object size:0x8 scope:local hidden +@etb_80008AF8 = extab:0x80008AF8; // type:object size:0x90 scope:local hidden +@etb_80008B88 = extab:0x80008B88; // type:object size:0x8 scope:local hidden +@etb_80008B90 = extab:0x80008B90; // type:object size:0xF8 scope:local hidden +@etb_80008C88 = extab:0x80008C88; // type:object size:0x8 scope:local hidden +@etb_80008C90 = extab:0x80008C90; // type:object size:0x8 scope:local hidden +@etb_80008C98 = extab:0x80008C98; // type:object size:0x8 scope:local hidden +@etb_80008CA0 = extab:0x80008CA0; // type:object size:0x8 scope:local hidden +@etb_80008CA8 = extab:0x80008CA8; // type:object size:0x8 scope:local hidden +@etb_80008CB0 = extab:0x80008CB0; // type:object size:0x8 scope:local hidden +@etb_80008CB8 = extab:0x80008CB8; // type:object size:0x410 scope:local hidden +@etb_800090C8 = extab:0x800090C8; // type:object size:0x18 scope:local hidden +@etb_800090E0 = extab:0x800090E0; // type:object size:0x8 scope:local hidden +@etb_800090E8 = extab:0x800090E8; // type:object size:0x54 scope:local hidden +@etb_8000913C = extab:0x8000913C; // type:object size:0x68 scope:local hidden +@etb_800091A4 = extab:0x800091A4; // type:object size:0xA0 scope:local hidden +@etb_80009244 = extab:0x80009244; // type:object size:0x1C scope:local hidden +@etb_80009260 = extab:0x80009260; // type:object size:0x1C scope:local hidden +@etb_8000927C = extab:0x8000927C; // type:object size:0x1F8 scope:local hidden +@etb_80009474 = extab:0x80009474; // type:object size:0xF8 scope:local hidden +@etb_8000956C = extab:0x8000956C; // type:object size:0x5C scope:local hidden +@etb_800095C8 = extab:0x800095C8; // type:object size:0x8 scope:local hidden +@etb_800095D0 = extab:0x800095D0; // type:object size:0x8 scope:local hidden +@etb_800095D8 = extab:0x800095D8; // type:object size:0x8 scope:local hidden +@etb_800095E0 = extab:0x800095E0; // type:object size:0x3C scope:local hidden +@etb_8000961C = extab:0x8000961C; // type:object size:0x8 scope:local hidden +@etb_80009624 = extab:0x80009624; // type:object size:0x8 scope:local hidden +@etb_8000962C = extab:0x8000962C; // type:object size:0x8 scope:local hidden +@etb_80009634 = extab:0x80009634; // type:object size:0x114 scope:local hidden +@etb_80009748 = extab:0x80009748; // type:object size:0x1C scope:local hidden +@etb_80009764 = extab:0x80009764; // type:object size:0x18 scope:local hidden +@etb_8000977C = extab:0x8000977C; // type:object size:0x18 scope:local hidden +@etb_80009794 = extab:0x80009794; // type:object size:0x28 scope:local hidden +@etb_800097BC = extab:0x800097BC; // type:object size:0x30 scope:local hidden +@etb_800097EC = extab:0x800097EC; // type:object size:0x18 scope:local hidden +@etb_80009804 = extab:0x80009804; // type:object size:0x18 scope:local hidden +@etb_8000981C = extab:0x8000981C; // type:object size:0x64 scope:local hidden +@etb_80009880 = extab:0x80009880; // type:object size:0x9C scope:local hidden +@etb_8000991C = extab:0x8000991C; // type:object size:0x18 scope:local hidden +@etb_80009934 = extab:0x80009934; // type:object size:0x8 scope:local hidden +@etb_8000993C = extab:0x8000993C; // type:object size:0x48 scope:local hidden +@etb_80009984 = extab:0x80009984; // type:object size:0x18 scope:local hidden +@etb_8000999C = extab:0x8000999C; // type:object size:0x18 scope:local hidden +@etb_800099B4 = extab:0x800099B4; // type:object size:0x48 scope:local hidden +@etb_800099FC = extab:0x800099FC; // type:object size:0x18 scope:local hidden +@etb_80009A14 = extab:0x80009A14; // type:object size:0x8 scope:local hidden +@etb_80009A1C = extab:0x80009A1C; // type:object size:0xB4 scope:local hidden +@etb_80009AD0 = extab:0x80009AD0; // type:object size:0xFC scope:local hidden +@etb_80009BCC = extab:0x80009BCC; // type:object size:0x50 scope:local hidden +@etb_80009C1C = extab:0x80009C1C; // type:object size:0x30 scope:local hidden +@etb_80009C4C = extab:0x80009C4C; // type:object size:0x30 scope:local hidden +@etb_80009C7C = extab:0x80009C7C; // type:object size:0x8 scope:local hidden +@etb_80009C84 = extab:0x80009C84; // type:object size:0x8 scope:local hidden +@etb_80009C8C = extab:0x80009C8C; // type:object size:0x8 scope:local hidden +@etb_80009C94 = extab:0x80009C94; // type:object size:0xA8 scope:local hidden +@etb_80009D3C = extab:0x80009D3C; // type:object size:0x8 scope:local hidden +@etb_80009D44 = extab:0x80009D44; // type:object size:0x8 scope:local hidden +@etb_80009D4C = extab:0x80009D4C; // type:object size:0x8 scope:local hidden +@etb_80009D54 = extab:0x80009D54; // type:object size:0x12C scope:local hidden +@etb_80009E80 = extab:0x80009E80; // type:object size:0x8 scope:local hidden +@etb_80009E88 = extab:0x80009E88; // type:object size:0x8 scope:local hidden +@etb_80009E90 = extab:0x80009E90; // type:object size:0x8 scope:local hidden +@etb_80009E98 = extab:0x80009E98; // type:object size:0x124 scope:local hidden +@etb_80009FBC = extab:0x80009FBC; // type:object size:0x8 scope:local hidden +@etb_80009FC4 = extab:0x80009FC4; // type:object size:0x198 scope:local hidden +@etb_8000A15C = extab:0x8000A15C; // type:object size:0x8 scope:local hidden +@etb_8000A164 = extab:0x8000A164; // type:object size:0xA4 scope:local hidden +@etb_8000A208 = extab:0x8000A208; // type:object size:0x2C scope:local hidden +@etb_8000A234 = extab:0x8000A234; // type:object size:0x2C scope:local hidden +@etb_8000A260 = extab:0x8000A260; // type:object size:0x1C scope:local hidden +@etb_8000A27C = extab:0x8000A27C; // type:object size:0x1C scope:local hidden +@etb_8000A298 = extab:0x8000A298; // type:object size:0x1C scope:local hidden +@etb_8000A2B4 = extab:0x8000A2B4; // type:object size:0x8 scope:local hidden +@etb_8000A2BC = extab:0x8000A2BC; // type:object size:0x8 scope:local hidden +@etb_8000A2C4 = extab:0x8000A2C4; // type:object size:0x8 scope:local hidden +@etb_8000A2CC = extab:0x8000A2CC; // type:object size:0x8 scope:local hidden +@etb_8000A2D4 = extab:0x8000A2D4; // type:object size:0x8 scope:local hidden +@etb_8000A2DC = extab:0x8000A2DC; // type:object size:0x8 scope:local hidden +@etb_8000A2E4 = extab:0x8000A2E4; // type:object size:0x8 scope:local hidden +@etb_8000A2EC = extab:0x8000A2EC; // type:object size:0x8 scope:local hidden +@etb_8000A2F4 = extab:0x8000A2F4; // type:object size:0x8 scope:local hidden +@etb_8000A2FC = extab:0x8000A2FC; // type:object size:0x8 scope:local hidden +@etb_8000A304 = extab:0x8000A304; // type:object size:0x8 scope:local hidden +@etb_8000A30C = extab:0x8000A30C; // type:object size:0x8 scope:local hidden +@etb_8000A314 = extab:0x8000A314; // type:object size:0x8 scope:local hidden +@etb_8000A31C = extab:0x8000A31C; // type:object size:0x28 scope:local hidden +@etb_8000A344 = extab:0x8000A344; // type:object size:0x8 scope:local hidden +@etb_8000A34C = extab:0x8000A34C; // type:object size:0x28 scope:local hidden +@etb_8000A374 = extab:0x8000A374; // type:object size:0x8 scope:local hidden +@etb_8000A37C = extab:0x8000A37C; // type:object size:0x8 scope:local hidden +@etb_8000A384 = extab:0x8000A384; // type:object size:0x8 scope:local hidden +@etb_8000A38C = extab:0x8000A38C; // type:object size:0x8 scope:local hidden +@etb_8000A394 = extab:0x8000A394; // type:object size:0x8 scope:local hidden +@etb_8000A39C = extab:0x8000A39C; // type:object size:0x8 scope:local hidden +@etb_8000A3A4 = extab:0x8000A3A4; // type:object size:0x8 scope:local hidden +@etb_8000A3AC = extab:0x8000A3AC; // type:object size:0x8 scope:local hidden +@etb_8000A3B4 = extab:0x8000A3B4; // type:object size:0x8 scope:local hidden +@etb_8000A3BC = extab:0x8000A3BC; // type:object size:0x8 scope:local hidden +@etb_8000A3C4 = extab:0x8000A3C4; // type:object size:0x8 scope:local hidden +@etb_8000A3CC = extab:0x8000A3CC; // type:object size:0x8 scope:local hidden +@etb_8000A3D4 = extab:0x8000A3D4; // type:object size:0x8 scope:local hidden +@etb_8000A3DC = extab:0x8000A3DC; // type:object size:0x8 scope:local hidden +@etb_8000A3E4 = extab:0x8000A3E4; // type:object size:0x18 scope:local hidden +@etb_8000A3FC = extab:0x8000A3FC; // type:object size:0x18 scope:local hidden +@etb_8000A414 = extab:0x8000A414; // type:object size:0x18 scope:local hidden +@etb_8000A42C = extab:0x8000A42C; // type:object size:0x18 scope:local hidden +@etb_8000A444 = extab:0x8000A444; // type:object size:0x18 scope:local hidden +@etb_8000A45C = extab:0x8000A45C; // type:object size:0x1C scope:local hidden +@etb_8000A478 = extab:0x8000A478; // type:object size:0x8 scope:local hidden +@etb_8000A480 = extab:0x8000A480; // type:object size:0x8 scope:local hidden +@etb_8000A488 = extab:0x8000A488; // type:object size:0x18 scope:local hidden +@etb_8000A4A0 = extab:0x8000A4A0; // type:object size:0x8 scope:local hidden +@etb_8000A4A8 = extab:0x8000A4A8; // type:object size:0x8 scope:local hidden +@etb_8000A4B0 = extab:0x8000A4B0; // type:object size:0x8 scope:local hidden +@etb_8000A4B8 = extab:0x8000A4B8; // type:object size:0x8 scope:local hidden +@etb_8000A4C0 = extab:0x8000A4C0; // type:object size:0x8 scope:local hidden +@etb_8000A4C8 = extab:0x8000A4C8; // type:object size:0x68 scope:local hidden +@etb_8000A530 = extab:0x8000A530; // type:object size:0x1C scope:local hidden +@etb_8000A54C = extab:0x8000A54C; // type:object size:0x8 scope:local hidden +@etb_8000A554 = extab:0x8000A554; // type:object size:0x8 scope:local hidden +@etb_8000A55C = extab:0x8000A55C; // type:object size:0x8 scope:local hidden +@etb_8000A564 = extab:0x8000A564; // type:object size:0x8 scope:local hidden +@etb_8000A56C = extab:0x8000A56C; // type:object size:0x8 scope:local hidden +@etb_8000A574 = extab:0x8000A574; // type:object size:0x130 scope:local hidden +@etb_8000A6A4 = extab:0x8000A6A4; // type:object size:0x8 scope:local hidden +@etb_8000A6AC = extab:0x8000A6AC; // type:object size:0x8 scope:local hidden +@etb_8000A6B4 = extab:0x8000A6B4; // type:object size:0x8 scope:local hidden +@etb_8000A6BC = extab:0x8000A6BC; // type:object size:0x8 scope:local hidden +@etb_8000A6C4 = extab:0x8000A6C4; // type:object size:0x8 scope:local hidden +@etb_8000A6CC = extab:0x8000A6CC; // type:object size:0x8 scope:local hidden +@etb_8000A6D4 = extab:0x8000A6D4; // type:object size:0x164 scope:local hidden +@etb_8000A838 = extab:0x8000A838; // type:object size:0x8 scope:local hidden +@etb_8000A840 = extab:0x8000A840; // type:object size:0x8 scope:local hidden +@etb_8000A848 = extab:0x8000A848; // type:object size:0x8 scope:local hidden +@etb_8000A850 = extab:0x8000A850; // type:object size:0x8 scope:local hidden +@etb_8000A858 = extab:0x8000A858; // type:object size:0x8 scope:local hidden +@etb_8000A860 = extab:0x8000A860; // type:object size:0x8 scope:local hidden +@etb_8000A868 = extab:0x8000A868; // type:object size:0x20 scope:local hidden +@etb_8000A888 = extab:0x8000A888; // type:object size:0x30 scope:local hidden +@etb_8000A8B8 = extab:0x8000A8B8; // type:object size:0x8 scope:local hidden +@etb_8000A8C0 = extab:0x8000A8C0; // type:object size:0x8 scope:local hidden +@etb_8000A8C8 = extab:0x8000A8C8; // type:object size:0xF8 scope:local hidden +@etb_8000A9C0 = extab:0x8000A9C0; // type:object size:0xFC scope:local hidden +@etb_8000AABC = extab:0x8000AABC; // type:object size:0x8 scope:local hidden +@etb_8000AAC4 = extab:0x8000AAC4; // type:object size:0x2C scope:local hidden +@etb_8000AAF0 = extab:0x8000AAF0; // type:object size:0x8 scope:local hidden +@etb_8000AAF8 = extab:0x8000AAF8; // type:object size:0x8 scope:local hidden +@etb_8000AB00 = extab:0x8000AB00; // type:object size:0x30 scope:local hidden +@etb_8000AB30 = extab:0x8000AB30; // type:object size:0xE8 scope:local hidden +@etb_8000AC18 = extab:0x8000AC18; // type:object size:0x2D0 scope:local hidden +@etb_8000AEE8 = extab:0x8000AEE8; // type:object size:0x8 scope:local hidden +@etb_8000AEF0 = extab:0x8000AEF0; // type:object size:0x68 scope:local hidden +@etb_8000AF58 = extab:0x8000AF58; // type:object size:0x8 scope:local hidden +@etb_8000AF60 = extab:0x8000AF60; // type:object size:0xA0 scope:local hidden +@etb_8000B000 = extab:0x8000B000; // type:object size:0xA0 scope:local hidden +@etb_8000B0A0 = extab:0x8000B0A0; // type:object size:0x1DC scope:local hidden +@etb_8000B27C = extab:0x8000B27C; // type:object size:0x3C scope:local hidden +@etb_8000B2B8 = extab:0x8000B2B8; // type:object size:0x3C scope:local hidden +@etb_8000B2F4 = extab:0x8000B2F4; // type:object size:0x3C scope:local hidden +@etb_8000B330 = extab:0x8000B330; // type:object size:0x3C scope:local hidden +@etb_8000B36C = extab:0x8000B36C; // type:object size:0x3C scope:local hidden +@etb_8000B3A8 = extab:0x8000B3A8; // type:object size:0x8 scope:local hidden +@etb_8000B3B0 = extab:0x8000B3B0; // type:object size:0x8 scope:local hidden +@etb_8000B3B8 = extab:0x8000B3B8; // type:object size:0x3C scope:local hidden +@etb_8000B3F4 = extab:0x8000B3F4; // type:object size:0x3C scope:local hidden +@etb_8000B430 = extab:0x8000B430; // type:object size:0x88 scope:local hidden +@etb_8000B4B8 = extab:0x8000B4B8; // type:object size:0x3C scope:local hidden +@etb_8000B4F4 = extab:0x8000B4F4; // type:object size:0x8 scope:local hidden +@etb_8000B4FC = extab:0x8000B4FC; // type:object size:0x138 scope:local hidden +@etb_8000B634 = extab:0x8000B634; // type:object size:0x8 scope:local hidden +@etb_8000B63C = extab:0x8000B63C; // type:object size:0x3C scope:local hidden +@etb_8000B678 = extab:0x8000B678; // type:object size:0x8 scope:local hidden +@etb_8000B680 = extab:0x8000B680; // type:object size:0x8 scope:local hidden +@etb_8000B688 = extab:0x8000B688; // type:object size:0x8 scope:local hidden +@etb_8000B690 = extab:0x8000B690; // type:object size:0x8 scope:local hidden +@etb_8000B698 = extab:0x8000B698; // type:object size:0x8 scope:local hidden +@etb_8000B6A0 = extab:0x8000B6A0; // type:object size:0x8 scope:local hidden +@etb_8000B6A8 = extab:0x8000B6A8; // type:object size:0x58 scope:local hidden +@etb_8000B700 = extab:0x8000B700; // type:object size:0x8 scope:local hidden +@etb_8000B708 = extab:0x8000B708; // type:object size:0x8 scope:local hidden +@etb_8000B710 = extab:0x8000B710; // type:object size:0x8 scope:local hidden +@etb_8000B718 = extab:0x8000B718; // type:object size:0x1C scope:local hidden +@etb_8000B734 = extab:0x8000B734; // type:object size:0x54 scope:local hidden +@etb_8000B788 = extab:0x8000B788; // type:object size:0x3C scope:local hidden +@etb_8000B7C4 = extab:0x8000B7C4; // type:object size:0x2C scope:local hidden +@etb_8000B7F0 = extab:0x8000B7F0; // type:object size:0x8 scope:local hidden +@etb_8000B7F8 = extab:0x8000B7F8; // type:object size:0x4C scope:local hidden +@etb_8000B844 = extab:0x8000B844; // type:object size:0x18 scope:local hidden +@etb_8000B85C = extab:0x8000B85C; // type:object size:0x54 scope:local hidden +@etb_8000B8B0 = extab:0x8000B8B0; // type:object size:0x8 scope:local hidden +@etb_8000B8B8 = extab:0x8000B8B8; // type:object size:0x8 scope:local hidden +@etb_8000B8C0 = extab:0x8000B8C0; // type:object size:0x8 scope:local hidden +@etb_8000B8C8 = extab:0x8000B8C8; // type:object size:0x8 scope:local hidden +@etb_8000B8D0 = extab:0x8000B8D0; // type:object size:0x150 scope:local hidden +@etb_8000BA20 = extab:0x8000BA20; // type:object size:0x50 scope:local hidden +@etb_8000BA70 = extab:0x8000BA70; // type:object size:0x8 scope:local hidden +@etb_8000BA78 = extab:0x8000BA78; // type:object size:0x8 scope:local hidden +@etb_8000BA80 = extab:0x8000BA80; // type:object size:0x3C scope:local hidden +@etb_8000BABC = extab:0x8000BABC; // type:object size:0x58 scope:local hidden +@etb_8000BB14 = extab:0x8000BB14; // type:object size:0x8 scope:local hidden +@etb_8000BB1C = extab:0x8000BB1C; // type:object size:0x8 scope:local hidden +@etb_8000BB24 = extab:0x8000BB24; // type:object size:0x54 scope:local hidden +@etb_8000BB78 = extab:0x8000BB78; // type:object size:0x8 scope:local hidden +@etb_8000BB80 = extab:0x8000BB80; // type:object size:0x8 scope:local hidden +@etb_8000BB88 = extab:0x8000BB88; // type:object size:0x8 scope:local hidden +@etb_8000BB90 = extab:0x8000BB90; // type:object size:0x54 scope:local hidden +@etb_8000BBE4 = extab:0x8000BBE4; // type:object size:0x8 scope:local hidden +@etb_8000BBEC = extab:0x8000BBEC; // type:object size:0x8 scope:local hidden +@etb_8000BBF4 = extab:0x8000BBF4; // type:object size:0x8 scope:local hidden +@etb_8000BBFC = extab:0x8000BBFC; // type:object size:0x3C scope:local hidden +@etb_8000BC38 = extab:0x8000BC38; // type:object size:0x8 scope:local hidden +@etb_8000BC40 = extab:0x8000BC40; // type:object size:0x170 scope:local hidden +@etb_8000BDB0 = extab:0x8000BDB0; // type:object size:0x2A8 scope:local hidden +@etb_8000C058 = extab:0x8000C058; // type:object size:0x3C scope:local hidden +@etb_8000C094 = extab:0x8000C094; // type:object size:0x8 scope:local hidden +@etb_8000C09C = extab:0x8000C09C; // type:object size:0x8 scope:local hidden +@etb_8000C0A4 = extab:0x8000C0A4; // type:object size:0x170 scope:local hidden +@etb_8000C214 = extab:0x8000C214; // type:object size:0xB4 scope:local hidden +@etb_8000C2C8 = extab:0x8000C2C8; // type:object size:0x8 scope:local hidden +@etb_8000C2D0 = extab:0x8000C2D0; // type:object size:0x3C scope:local hidden +@etb_8000C30C = extab:0x8000C30C; // type:object size:0x8 scope:local hidden +@etb_8000C314 = extab:0x8000C314; // type:object size:0x8 scope:local hidden +@etb_8000C31C = extab:0x8000C31C; // type:object size:0x8 scope:local hidden +@etb_8000C324 = extab:0x8000C324; // type:object size:0xF8 scope:local hidden +@etb_8000C41C = extab:0x8000C41C; // type:object size:0x18 scope:local hidden +@etb_8000C434 = extab:0x8000C434; // type:object size:0x8 scope:local hidden +@etb_8000C43C = extab:0x8000C43C; // type:object size:0x8 scope:local hidden +@etb_8000C444 = extab:0x8000C444; // type:object size:0x8 scope:local hidden +@etb_8000C44C = extab:0x8000C44C; // type:object size:0x8 scope:local hidden +@etb_8000C454 = extab:0x8000C454; // type:object size:0x8 scope:local hidden +@etb_8000C45C = extab:0x8000C45C; // type:object size:0x8 scope:local hidden +@etb_8000C464 = extab:0x8000C464; // type:object size:0x8 scope:local hidden +@etb_8000C46C = extab:0x8000C46C; // type:object size:0x8 scope:local hidden +@etb_8000C474 = extab:0x8000C474; // type:object size:0x8 scope:local hidden +@etb_8000C47C = extab:0x8000C47C; // type:object size:0x8 scope:local hidden +@etb_8000C484 = extab:0x8000C484; // type:object size:0x8 scope:local hidden +@etb_8000C48C = extab:0x8000C48C; // type:object size:0x8 scope:local hidden +@etb_8000C494 = extab:0x8000C494; // type:object size:0x8 scope:local hidden +@etb_8000C49C = extab:0x8000C49C; // type:object size:0x8 scope:local hidden +@etb_8000C4A4 = extab:0x8000C4A4; // type:object size:0x8 scope:local hidden +@etb_8000C4AC = extab:0x8000C4AC; // type:object size:0x8 scope:local hidden +@etb_8000C4B4 = extab:0x8000C4B4; // type:object size:0x8 scope:local hidden +@etb_8000C4BC = extab:0x8000C4BC; // type:object size:0x8 scope:local hidden +@etb_8000C4C4 = extab:0x8000C4C4; // type:object size:0x8 scope:local hidden +@etb_8000C4CC = extab:0x8000C4CC; // type:object size:0x8 scope:local hidden +@etb_8000C4D4 = extab:0x8000C4D4; // type:object size:0x8 scope:local hidden +@etb_8000C4DC = extab:0x8000C4DC; // type:object size:0x8 scope:local hidden +@etb_8000C4E4 = extab:0x8000C4E4; // type:object size:0x8 scope:local hidden +@etb_8000C4EC = extab:0x8000C4EC; // type:object size:0x8 scope:local hidden +@etb_8000C4F4 = extab:0x8000C4F4; // type:object size:0x8 scope:local hidden +@etb_8000C4FC = extab:0x8000C4FC; // type:object size:0x8 scope:local hidden +@etb_8000C504 = extab:0x8000C504; // type:object size:0x8 scope:local hidden +@etb_8000C50C = extab:0x8000C50C; // type:object size:0x8 scope:local hidden +@etb_8000C514 = extab:0x8000C514; // type:object size:0x8 scope:local hidden +@etb_8000C51C = extab:0x8000C51C; // type:object size:0x8 scope:local hidden +@etb_8000C524 = extab:0x8000C524; // type:object size:0x8 scope:local hidden +@etb_8000C52C = extab:0x8000C52C; // type:object size:0x8 scope:local hidden +@etb_8000C534 = extab:0x8000C534; // type:object size:0x8 scope:local hidden +@etb_8000C53C = extab:0x8000C53C; // type:object size:0x8 scope:local hidden +@etb_8000C544 = extab:0x8000C544; // type:object size:0x8 scope:local hidden +@etb_8000C54C = extab:0x8000C54C; // type:object size:0x8 scope:local hidden +@etb_8000C554 = extab:0x8000C554; // type:object size:0x8 scope:local hidden +@etb_8000C55C = extab:0x8000C55C; // type:object size:0x8 scope:local hidden +@etb_8000C564 = extab:0x8000C564; // type:object size:0x18 scope:local hidden +@etb_8000C57C = extab:0x8000C57C; // type:object size:0x8 scope:local hidden +@etb_8000C584 = extab:0x8000C584; // type:object size:0x3C scope:local hidden +@etb_8000C5C0 = extab:0x8000C5C0; // type:object size:0x3C scope:local hidden +@etb_8000C5FC = extab:0x8000C5FC; // type:object size:0x2C scope:local hidden +@etb_8000C628 = extab:0x8000C628; // type:object size:0x8 scope:local hidden +@etb_8000C630 = extab:0x8000C630; // type:object size:0x8 scope:local hidden +@etb_8000C638 = extab:0x8000C638; // type:object size:0x8 scope:local hidden +@etb_8000C640 = extab:0x8000C640; // type:object size:0x8 scope:local hidden +@etb_8000C648 = extab:0x8000C648; // type:object size:0x30 scope:local hidden +@etb_8000C678 = extab:0x8000C678; // type:object size:0x18 scope:local hidden +@etb_8000C690 = extab:0x8000C690; // type:object size:0x18 scope:local hidden +@etb_8000C6A8 = extab:0x8000C6A8; // type:object size:0x18 scope:local hidden +@eti_8000C6C0 = extabindex:0x8000C6C0; // type:object size:0xC scope:local hidden +@eti_8000C6CC = extabindex:0x8000C6CC; // type:object size:0xC scope:local hidden +@eti_8000C6D8 = extabindex:0x8000C6D8; // type:object size:0xC scope:local hidden +@eti_8000C6E4 = extabindex:0x8000C6E4; // type:object size:0xC scope:local hidden +@eti_8000C6F0 = extabindex:0x8000C6F0; // type:object size:0xC scope:local hidden +@eti_8000C6FC = extabindex:0x8000C6FC; // type:object size:0xC scope:local hidden +@eti_8000C708 = extabindex:0x8000C708; // type:object size:0xC scope:local hidden +@eti_8000C714 = extabindex:0x8000C714; // type:object size:0xC scope:local hidden +@eti_8000C720 = extabindex:0x8000C720; // type:object size:0xC scope:local hidden +@eti_8000C72C = extabindex:0x8000C72C; // type:object size:0xC scope:local hidden +@eti_8000C738 = extabindex:0x8000C738; // type:object size:0xC scope:local hidden +@eti_8000C744 = extabindex:0x8000C744; // type:object size:0xC scope:local hidden +@eti_8000C750 = extabindex:0x8000C750; // type:object size:0xC scope:local hidden +@eti_8000C75C = extabindex:0x8000C75C; // type:object size:0xC scope:local hidden +@eti_8000C768 = extabindex:0x8000C768; // type:object size:0xC scope:local hidden +@eti_8000C774 = extabindex:0x8000C774; // type:object size:0xC scope:local hidden +@eti_8000C780 = extabindex:0x8000C780; // type:object size:0xC scope:local hidden +@eti_8000C78C = extabindex:0x8000C78C; // type:object size:0xC scope:local hidden +@eti_8000C798 = extabindex:0x8000C798; // type:object size:0xC scope:local hidden +@eti_8000C7A4 = extabindex:0x8000C7A4; // type:object size:0xC scope:local hidden +@eti_8000C7B0 = extabindex:0x8000C7B0; // type:object size:0xC scope:local hidden +@eti_8000C7BC = extabindex:0x8000C7BC; // type:object size:0xC scope:local hidden +@eti_8000C7C8 = extabindex:0x8000C7C8; // type:object size:0xC scope:local hidden +@eti_8000C7D4 = extabindex:0x8000C7D4; // type:object size:0xC scope:local hidden +@eti_8000C7E0 = extabindex:0x8000C7E0; // type:object size:0xC scope:local hidden +@eti_8000C7EC = extabindex:0x8000C7EC; // type:object size:0xC scope:local hidden +@eti_8000C7F8 = extabindex:0x8000C7F8; // type:object size:0xC scope:local hidden +@eti_8000C804 = extabindex:0x8000C804; // type:object size:0xC scope:local hidden +@eti_8000C810 = extabindex:0x8000C810; // type:object size:0xC scope:local hidden +@eti_8000C81C = extabindex:0x8000C81C; // type:object size:0xC scope:local hidden +@eti_8000C828 = extabindex:0x8000C828; // type:object size:0xC scope:local hidden +@eti_8000C834 = extabindex:0x8000C834; // type:object size:0xC scope:local hidden +@eti_8000C840 = extabindex:0x8000C840; // type:object size:0xC scope:local hidden +@eti_8000C84C = extabindex:0x8000C84C; // type:object size:0xC scope:local hidden +@eti_8000C858 = extabindex:0x8000C858; // type:object size:0xC scope:local hidden +@eti_8000C864 = extabindex:0x8000C864; // type:object size:0xC scope:local hidden +@eti_8000C870 = extabindex:0x8000C870; // type:object size:0xC scope:local hidden +@eti_8000C87C = extabindex:0x8000C87C; // type:object size:0xC scope:local hidden +@eti_8000C888 = extabindex:0x8000C888; // type:object size:0xC scope:local hidden +@eti_8000C894 = extabindex:0x8000C894; // type:object size:0xC scope:local hidden +@eti_8000C8A0 = extabindex:0x8000C8A0; // type:object size:0xC scope:local hidden +@eti_8000C8AC = extabindex:0x8000C8AC; // type:object size:0xC scope:local hidden +@eti_8000C8B8 = extabindex:0x8000C8B8; // type:object size:0xC scope:local hidden +@eti_8000C8C4 = extabindex:0x8000C8C4; // type:object size:0xC scope:local hidden +@eti_8000C8D0 = extabindex:0x8000C8D0; // type:object size:0xC scope:local hidden +@eti_8000C8DC = extabindex:0x8000C8DC; // type:object size:0xC scope:local hidden +@eti_8000C8E8 = extabindex:0x8000C8E8; // type:object size:0xC scope:local hidden +@eti_8000C8F4 = extabindex:0x8000C8F4; // type:object size:0xC scope:local hidden +@eti_8000C900 = extabindex:0x8000C900; // type:object size:0xC scope:local hidden +@eti_8000C90C = extabindex:0x8000C90C; // type:object size:0xC scope:local hidden +@eti_8000C918 = extabindex:0x8000C918; // type:object size:0xC scope:local hidden +@eti_8000C924 = extabindex:0x8000C924; // type:object size:0xC scope:local hidden +@eti_8000C930 = extabindex:0x8000C930; // type:object size:0xC scope:local hidden +@eti_8000C93C = extabindex:0x8000C93C; // type:object size:0xC scope:local hidden +@eti_8000C948 = extabindex:0x8000C948; // type:object size:0xC scope:local hidden +@eti_8000C954 = extabindex:0x8000C954; // type:object size:0xC scope:local hidden +@eti_8000C960 = extabindex:0x8000C960; // type:object size:0xC scope:local hidden +@eti_8000C96C = extabindex:0x8000C96C; // type:object size:0xC scope:local hidden +@eti_8000C978 = extabindex:0x8000C978; // type:object size:0xC scope:local hidden +@eti_8000C984 = extabindex:0x8000C984; // type:object size:0xC scope:local hidden +@eti_8000C990 = extabindex:0x8000C990; // type:object size:0xC scope:local hidden +@eti_8000C99C = extabindex:0x8000C99C; // type:object size:0xC scope:local hidden +@eti_8000C9A8 = extabindex:0x8000C9A8; // type:object size:0xC scope:local hidden +@eti_8000C9B4 = extabindex:0x8000C9B4; // type:object size:0xC scope:local hidden +@eti_8000C9C0 = extabindex:0x8000C9C0; // type:object size:0xC scope:local hidden +@eti_8000C9CC = extabindex:0x8000C9CC; // type:object size:0xC scope:local hidden +@eti_8000C9D8 = extabindex:0x8000C9D8; // type:object size:0xC scope:local hidden +@eti_8000C9E4 = extabindex:0x8000C9E4; // type:object size:0xC scope:local hidden +@eti_8000C9F0 = extabindex:0x8000C9F0; // type:object size:0xC scope:local hidden +@eti_8000C9FC = extabindex:0x8000C9FC; // type:object size:0xC scope:local hidden +@eti_8000CA08 = extabindex:0x8000CA08; // type:object size:0xC scope:local hidden +@eti_8000CA14 = extabindex:0x8000CA14; // type:object size:0xC scope:local hidden +@eti_8000CA20 = extabindex:0x8000CA20; // type:object size:0xC scope:local hidden +@eti_8000CA2C = extabindex:0x8000CA2C; // type:object size:0xC scope:local hidden +@eti_8000CA38 = extabindex:0x8000CA38; // type:object size:0xC scope:local hidden +@eti_8000CA44 = extabindex:0x8000CA44; // type:object size:0xC scope:local hidden +@eti_8000CA50 = extabindex:0x8000CA50; // type:object size:0xC scope:local hidden +@eti_8000CA5C = extabindex:0x8000CA5C; // type:object size:0xC scope:local hidden +@eti_8000CA68 = extabindex:0x8000CA68; // type:object size:0xC scope:local hidden +@eti_8000CA74 = extabindex:0x8000CA74; // type:object size:0xC scope:local hidden +@eti_8000CA80 = extabindex:0x8000CA80; // type:object size:0xC scope:local hidden +@eti_8000CA8C = extabindex:0x8000CA8C; // type:object size:0xC scope:local hidden +@eti_8000CA98 = extabindex:0x8000CA98; // type:object size:0xC scope:local hidden +@eti_8000CAA4 = extabindex:0x8000CAA4; // type:object size:0xC scope:local hidden +@eti_8000CAB0 = extabindex:0x8000CAB0; // type:object size:0xC scope:local hidden +@eti_8000CABC = extabindex:0x8000CABC; // type:object size:0xC scope:local hidden +@eti_8000CAC8 = extabindex:0x8000CAC8; // type:object size:0xC scope:local hidden +@eti_8000CAD4 = extabindex:0x8000CAD4; // type:object size:0xC scope:local hidden +@eti_8000CAE0 = extabindex:0x8000CAE0; // type:object size:0xC scope:local hidden +@eti_8000CAEC = extabindex:0x8000CAEC; // type:object size:0xC scope:local hidden +@eti_8000CAF8 = extabindex:0x8000CAF8; // type:object size:0xC scope:local hidden +@eti_8000CB04 = extabindex:0x8000CB04; // type:object size:0xC scope:local hidden +@eti_8000CB10 = extabindex:0x8000CB10; // type:object size:0xC scope:local hidden +@eti_8000CB1C = extabindex:0x8000CB1C; // type:object size:0xC scope:local hidden +@eti_8000CB28 = extabindex:0x8000CB28; // type:object size:0xC scope:local hidden +@eti_8000CB34 = extabindex:0x8000CB34; // type:object size:0xC scope:local hidden +@eti_8000CB40 = extabindex:0x8000CB40; // type:object size:0xC scope:local hidden +@eti_8000CB4C = extabindex:0x8000CB4C; // type:object size:0xC scope:local hidden +@eti_8000CB58 = extabindex:0x8000CB58; // type:object size:0xC scope:local hidden +@eti_8000CB64 = extabindex:0x8000CB64; // type:object size:0xC scope:local hidden +@eti_8000CB70 = extabindex:0x8000CB70; // type:object size:0xC scope:local hidden +@eti_8000CB7C = extabindex:0x8000CB7C; // type:object size:0xC scope:local hidden +@eti_8000CB88 = extabindex:0x8000CB88; // type:object size:0xC scope:local hidden +@eti_8000CB94 = extabindex:0x8000CB94; // type:object size:0xC scope:local hidden +@eti_8000CBA0 = extabindex:0x8000CBA0; // type:object size:0xC scope:local hidden +@eti_8000CBAC = extabindex:0x8000CBAC; // type:object size:0xC scope:local hidden +@eti_8000CBB8 = extabindex:0x8000CBB8; // type:object size:0xC scope:local hidden +@eti_8000CBC4 = extabindex:0x8000CBC4; // type:object size:0xC scope:local hidden +@eti_8000CBD0 = extabindex:0x8000CBD0; // type:object size:0xC scope:local hidden +@eti_8000CBDC = extabindex:0x8000CBDC; // type:object size:0xC scope:local hidden +@eti_8000CBE8 = extabindex:0x8000CBE8; // type:object size:0xC scope:local hidden +@eti_8000CBF4 = extabindex:0x8000CBF4; // type:object size:0xC scope:local hidden +@eti_8000CC00 = extabindex:0x8000CC00; // type:object size:0xC scope:local hidden +@eti_8000CC0C = extabindex:0x8000CC0C; // type:object size:0xC scope:local hidden +@eti_8000CC18 = extabindex:0x8000CC18; // type:object size:0xC scope:local hidden +@eti_8000CC24 = extabindex:0x8000CC24; // type:object size:0xC scope:local hidden +@eti_8000CC30 = extabindex:0x8000CC30; // type:object size:0xC scope:local hidden +@eti_8000CC3C = extabindex:0x8000CC3C; // type:object size:0xC scope:local hidden +@eti_8000CC48 = extabindex:0x8000CC48; // type:object size:0xC scope:local hidden +@eti_8000CC54 = extabindex:0x8000CC54; // type:object size:0xC scope:local hidden +@eti_8000CC60 = extabindex:0x8000CC60; // type:object size:0xC scope:local hidden +@eti_8000CC6C = extabindex:0x8000CC6C; // type:object size:0xC scope:local hidden +@eti_8000CC78 = extabindex:0x8000CC78; // type:object size:0xC scope:local hidden +@eti_8000CC84 = extabindex:0x8000CC84; // type:object size:0xC scope:local hidden +@eti_8000CC90 = extabindex:0x8000CC90; // type:object size:0xC scope:local hidden +@eti_8000CC9C = extabindex:0x8000CC9C; // type:object size:0xC scope:local hidden +@eti_8000CCA8 = extabindex:0x8000CCA8; // type:object size:0xC scope:local hidden +@eti_8000CCB4 = extabindex:0x8000CCB4; // type:object size:0xC scope:local hidden +@eti_8000CCC0 = extabindex:0x8000CCC0; // type:object size:0xC scope:local hidden +@eti_8000CCCC = extabindex:0x8000CCCC; // type:object size:0xC scope:local hidden +@eti_8000CCD8 = extabindex:0x8000CCD8; // type:object size:0xC scope:local hidden +@eti_8000CCE4 = extabindex:0x8000CCE4; // type:object size:0xC scope:local hidden +@eti_8000CCF0 = extabindex:0x8000CCF0; // type:object size:0xC scope:local hidden +@eti_8000CCFC = extabindex:0x8000CCFC; // type:object size:0xC scope:local hidden +@eti_8000CD08 = extabindex:0x8000CD08; // type:object size:0xC scope:local hidden +@eti_8000CD14 = extabindex:0x8000CD14; // type:object size:0xC scope:local hidden +@eti_8000CD20 = extabindex:0x8000CD20; // type:object size:0xC scope:local hidden +@eti_8000CD2C = extabindex:0x8000CD2C; // type:object size:0xC scope:local hidden +@eti_8000CD38 = extabindex:0x8000CD38; // type:object size:0xC scope:local hidden +@eti_8000CD44 = extabindex:0x8000CD44; // type:object size:0xC scope:local hidden +@eti_8000CD50 = extabindex:0x8000CD50; // type:object size:0xC scope:local hidden +@eti_8000CD5C = extabindex:0x8000CD5C; // type:object size:0xC scope:local hidden +@eti_8000CD68 = extabindex:0x8000CD68; // type:object size:0xC scope:local hidden +@eti_8000CD74 = extabindex:0x8000CD74; // type:object size:0xC scope:local hidden +@eti_8000CD80 = extabindex:0x8000CD80; // type:object size:0xC scope:local hidden +@eti_8000CD8C = extabindex:0x8000CD8C; // type:object size:0xC scope:local hidden +@eti_8000CD98 = extabindex:0x8000CD98; // type:object size:0xC scope:local hidden +@eti_8000CDA4 = extabindex:0x8000CDA4; // type:object size:0xC scope:local hidden +@eti_8000CDB0 = extabindex:0x8000CDB0; // type:object size:0xC scope:local hidden +@eti_8000CDBC = extabindex:0x8000CDBC; // type:object size:0xC scope:local hidden +@eti_8000CDC8 = extabindex:0x8000CDC8; // type:object size:0xC scope:local hidden +@eti_8000CDD4 = extabindex:0x8000CDD4; // type:object size:0xC scope:local hidden +@eti_8000CDE0 = extabindex:0x8000CDE0; // type:object size:0xC scope:local hidden +@eti_8000CDEC = extabindex:0x8000CDEC; // type:object size:0xC scope:local hidden +@eti_8000CDF8 = extabindex:0x8000CDF8; // type:object size:0xC scope:local hidden +@eti_8000CE04 = extabindex:0x8000CE04; // type:object size:0xC scope:local hidden +@eti_8000CE10 = extabindex:0x8000CE10; // type:object size:0xC scope:local hidden +@eti_8000CE1C = extabindex:0x8000CE1C; // type:object size:0xC scope:local hidden +@eti_8000CE28 = extabindex:0x8000CE28; // type:object size:0xC scope:local hidden +@eti_8000CE34 = extabindex:0x8000CE34; // type:object size:0xC scope:local hidden +@eti_8000CE40 = extabindex:0x8000CE40; // type:object size:0xC scope:local hidden +@eti_8000CE4C = extabindex:0x8000CE4C; // type:object size:0xC scope:local hidden +@eti_8000CE58 = extabindex:0x8000CE58; // type:object size:0xC scope:local hidden +@eti_8000CE64 = extabindex:0x8000CE64; // type:object size:0xC scope:local hidden +@eti_8000CE70 = extabindex:0x8000CE70; // type:object size:0xC scope:local hidden +@eti_8000CE7C = extabindex:0x8000CE7C; // type:object size:0xC scope:local hidden +@eti_8000CE88 = extabindex:0x8000CE88; // type:object size:0xC scope:local hidden +@eti_8000CE94 = extabindex:0x8000CE94; // type:object size:0xC scope:local hidden +@eti_8000CEA0 = extabindex:0x8000CEA0; // type:object size:0xC scope:local hidden +@eti_8000CEAC = extabindex:0x8000CEAC; // type:object size:0xC scope:local hidden +@eti_8000CEB8 = extabindex:0x8000CEB8; // type:object size:0xC scope:local hidden +@eti_8000CEC4 = extabindex:0x8000CEC4; // type:object size:0xC scope:local hidden +@eti_8000CED0 = extabindex:0x8000CED0; // type:object size:0xC scope:local hidden +@eti_8000CEDC = extabindex:0x8000CEDC; // type:object size:0xC scope:local hidden +@eti_8000CEE8 = extabindex:0x8000CEE8; // type:object size:0xC scope:local hidden +@eti_8000CEF4 = extabindex:0x8000CEF4; // type:object size:0xC scope:local hidden +@eti_8000CF00 = extabindex:0x8000CF00; // type:object size:0xC scope:local hidden +@eti_8000CF0C = extabindex:0x8000CF0C; // type:object size:0xC scope:local hidden +@eti_8000CF18 = extabindex:0x8000CF18; // type:object size:0xC scope:local hidden +@eti_8000CF24 = extabindex:0x8000CF24; // type:object size:0xC scope:local hidden +@eti_8000CF30 = extabindex:0x8000CF30; // type:object size:0xC scope:local hidden +@eti_8000CF3C = extabindex:0x8000CF3C; // type:object size:0xC scope:local hidden +@eti_8000CF48 = extabindex:0x8000CF48; // type:object size:0xC scope:local hidden +@eti_8000CF54 = extabindex:0x8000CF54; // type:object size:0xC scope:local hidden +@eti_8000CF60 = extabindex:0x8000CF60; // type:object size:0xC scope:local hidden +@eti_8000CF6C = extabindex:0x8000CF6C; // type:object size:0xC scope:local hidden +@eti_8000CF78 = extabindex:0x8000CF78; // type:object size:0xC scope:local hidden +@eti_8000CF84 = extabindex:0x8000CF84; // type:object size:0xC scope:local hidden +@eti_8000CF90 = extabindex:0x8000CF90; // type:object size:0xC scope:local hidden +@eti_8000CF9C = extabindex:0x8000CF9C; // type:object size:0xC scope:local hidden +@eti_8000CFA8 = extabindex:0x8000CFA8; // type:object size:0xC scope:local hidden +@eti_8000CFB4 = extabindex:0x8000CFB4; // type:object size:0xC scope:local hidden +@eti_8000CFC0 = extabindex:0x8000CFC0; // type:object size:0xC scope:local hidden +@eti_8000CFCC = extabindex:0x8000CFCC; // type:object size:0xC scope:local hidden +@eti_8000CFD8 = extabindex:0x8000CFD8; // type:object size:0xC scope:local hidden +@eti_8000CFE4 = extabindex:0x8000CFE4; // type:object size:0xC scope:local hidden +@eti_8000CFF0 = extabindex:0x8000CFF0; // type:object size:0xC scope:local hidden +@eti_8000CFFC = extabindex:0x8000CFFC; // type:object size:0xC scope:local hidden +@eti_8000D008 = extabindex:0x8000D008; // type:object size:0xC scope:local hidden +@eti_8000D014 = extabindex:0x8000D014; // type:object size:0xC scope:local hidden +@eti_8000D020 = extabindex:0x8000D020; // type:object size:0xC scope:local hidden +@eti_8000D02C = extabindex:0x8000D02C; // type:object size:0xC scope:local hidden +@eti_8000D038 = extabindex:0x8000D038; // type:object size:0xC scope:local hidden +@eti_8000D044 = extabindex:0x8000D044; // type:object size:0xC scope:local hidden +@eti_8000D050 = extabindex:0x8000D050; // type:object size:0xC scope:local hidden +@eti_8000D05C = extabindex:0x8000D05C; // type:object size:0xC scope:local hidden +@eti_8000D068 = extabindex:0x8000D068; // type:object size:0xC scope:local hidden +@eti_8000D074 = extabindex:0x8000D074; // type:object size:0xC scope:local hidden +@eti_8000D080 = extabindex:0x8000D080; // type:object size:0xC scope:local hidden +@eti_8000D08C = extabindex:0x8000D08C; // type:object size:0xC scope:local hidden +@eti_8000D098 = extabindex:0x8000D098; // type:object size:0xC scope:local hidden +@eti_8000D0A4 = extabindex:0x8000D0A4; // type:object size:0xC scope:local hidden +@eti_8000D0B0 = extabindex:0x8000D0B0; // type:object size:0xC scope:local hidden +@eti_8000D0BC = extabindex:0x8000D0BC; // type:object size:0xC scope:local hidden +@eti_8000D0C8 = extabindex:0x8000D0C8; // type:object size:0xC scope:local hidden +@eti_8000D0D4 = extabindex:0x8000D0D4; // type:object size:0xC scope:local hidden +@eti_8000D0E0 = extabindex:0x8000D0E0; // type:object size:0xC scope:local hidden +@eti_8000D0EC = extabindex:0x8000D0EC; // type:object size:0xC scope:local hidden +@eti_8000D0F8 = extabindex:0x8000D0F8; // type:object size:0xC scope:local hidden +@eti_8000D104 = extabindex:0x8000D104; // type:object size:0xC scope:local hidden +@eti_8000D110 = extabindex:0x8000D110; // type:object size:0xC scope:local hidden +@eti_8000D11C = extabindex:0x8000D11C; // type:object size:0xC scope:local hidden +@eti_8000D128 = extabindex:0x8000D128; // type:object size:0xC scope:local hidden +@eti_8000D134 = extabindex:0x8000D134; // type:object size:0xC scope:local hidden +@eti_8000D140 = extabindex:0x8000D140; // type:object size:0xC scope:local hidden +@eti_8000D14C = extabindex:0x8000D14C; // type:object size:0xC scope:local hidden +@eti_8000D158 = extabindex:0x8000D158; // type:object size:0xC scope:local hidden +@eti_8000D164 = extabindex:0x8000D164; // type:object size:0xC scope:local hidden +@eti_8000D170 = extabindex:0x8000D170; // type:object size:0xC scope:local hidden +@eti_8000D17C = extabindex:0x8000D17C; // type:object size:0xC scope:local hidden +@eti_8000D188 = extabindex:0x8000D188; // type:object size:0xC scope:local hidden +@eti_8000D194 = extabindex:0x8000D194; // type:object size:0xC scope:local hidden +@eti_8000D1A0 = extabindex:0x8000D1A0; // type:object size:0xC scope:local hidden +@eti_8000D1AC = extabindex:0x8000D1AC; // type:object size:0xC scope:local hidden +@eti_8000D1B8 = extabindex:0x8000D1B8; // type:object size:0xC scope:local hidden +@eti_8000D1C4 = extabindex:0x8000D1C4; // type:object size:0xC scope:local hidden +@eti_8000D1D0 = extabindex:0x8000D1D0; // type:object size:0xC scope:local hidden +@eti_8000D1DC = extabindex:0x8000D1DC; // type:object size:0xC scope:local hidden +@eti_8000D1E8 = extabindex:0x8000D1E8; // type:object size:0xC scope:local hidden +@eti_8000D1F4 = extabindex:0x8000D1F4; // type:object size:0xC scope:local hidden +@eti_8000D200 = extabindex:0x8000D200; // type:object size:0xC scope:local hidden +@eti_8000D20C = extabindex:0x8000D20C; // type:object size:0xC scope:local hidden +@eti_8000D218 = extabindex:0x8000D218; // type:object size:0xC scope:local hidden +@eti_8000D224 = extabindex:0x8000D224; // type:object size:0xC scope:local hidden +@eti_8000D230 = extabindex:0x8000D230; // type:object size:0xC scope:local hidden +@eti_8000D23C = extabindex:0x8000D23C; // type:object size:0xC scope:local hidden +@eti_8000D248 = extabindex:0x8000D248; // type:object size:0xC scope:local hidden +@eti_8000D254 = extabindex:0x8000D254; // type:object size:0xC scope:local hidden +@eti_8000D260 = extabindex:0x8000D260; // type:object size:0xC scope:local hidden +@eti_8000D26C = extabindex:0x8000D26C; // type:object size:0xC scope:local hidden +@eti_8000D278 = extabindex:0x8000D278; // type:object size:0xC scope:local hidden +@eti_8000D284 = extabindex:0x8000D284; // type:object size:0xC scope:local hidden +@eti_8000D290 = extabindex:0x8000D290; // type:object size:0xC scope:local hidden +@eti_8000D29C = extabindex:0x8000D29C; // type:object size:0xC scope:local hidden +@eti_8000D2A8 = extabindex:0x8000D2A8; // type:object size:0xC scope:local hidden +@eti_8000D2B4 = extabindex:0x8000D2B4; // type:object size:0xC scope:local hidden +@eti_8000D2C0 = extabindex:0x8000D2C0; // type:object size:0xC scope:local hidden +@eti_8000D2CC = extabindex:0x8000D2CC; // type:object size:0xC scope:local hidden +@eti_8000D2D8 = extabindex:0x8000D2D8; // type:object size:0xC scope:local hidden +@eti_8000D2E4 = extabindex:0x8000D2E4; // type:object size:0xC scope:local hidden +@eti_8000D2F0 = extabindex:0x8000D2F0; // type:object size:0xC scope:local hidden +@eti_8000D2FC = extabindex:0x8000D2FC; // type:object size:0xC scope:local hidden +@eti_8000D308 = extabindex:0x8000D308; // type:object size:0xC scope:local hidden +@eti_8000D314 = extabindex:0x8000D314; // type:object size:0xC scope:local hidden +@eti_8000D320 = extabindex:0x8000D320; // type:object size:0xC scope:local hidden +@eti_8000D32C = extabindex:0x8000D32C; // type:object size:0xC scope:local hidden +@eti_8000D338 = extabindex:0x8000D338; // type:object size:0xC scope:local hidden +@eti_8000D344 = extabindex:0x8000D344; // type:object size:0xC scope:local hidden +@eti_8000D350 = extabindex:0x8000D350; // type:object size:0xC scope:local hidden +@eti_8000D35C = extabindex:0x8000D35C; // type:object size:0xC scope:local hidden +@eti_8000D368 = extabindex:0x8000D368; // type:object size:0xC scope:local hidden +@eti_8000D374 = extabindex:0x8000D374; // type:object size:0xC scope:local hidden +@eti_8000D380 = extabindex:0x8000D380; // type:object size:0xC scope:local hidden +@eti_8000D38C = extabindex:0x8000D38C; // type:object size:0xC scope:local hidden +@eti_8000D398 = extabindex:0x8000D398; // type:object size:0xC scope:local hidden +@eti_8000D3A4 = extabindex:0x8000D3A4; // type:object size:0xC scope:local hidden +@eti_8000D3B0 = extabindex:0x8000D3B0; // type:object size:0xC scope:local hidden +@eti_8000D3BC = extabindex:0x8000D3BC; // type:object size:0xC scope:local hidden +@eti_8000D3C8 = extabindex:0x8000D3C8; // type:object size:0xC scope:local hidden +@eti_8000D3D4 = extabindex:0x8000D3D4; // type:object size:0xC scope:local hidden +@eti_8000D3E0 = extabindex:0x8000D3E0; // type:object size:0xC scope:local hidden +@eti_8000D3EC = extabindex:0x8000D3EC; // type:object size:0xC scope:local hidden +@eti_8000D3F8 = extabindex:0x8000D3F8; // type:object size:0xC scope:local hidden +@eti_8000D404 = extabindex:0x8000D404; // type:object size:0xC scope:local hidden +@eti_8000D410 = extabindex:0x8000D410; // type:object size:0xC scope:local hidden +@eti_8000D41C = extabindex:0x8000D41C; // type:object size:0xC scope:local hidden +@eti_8000D428 = extabindex:0x8000D428; // type:object size:0xC scope:local hidden +@eti_8000D434 = extabindex:0x8000D434; // type:object size:0xC scope:local hidden +@eti_8000D440 = extabindex:0x8000D440; // type:object size:0xC scope:local hidden +@eti_8000D44C = extabindex:0x8000D44C; // type:object size:0xC scope:local hidden +@eti_8000D458 = extabindex:0x8000D458; // type:object size:0xC scope:local hidden +@eti_8000D464 = extabindex:0x8000D464; // type:object size:0xC scope:local hidden +@eti_8000D470 = extabindex:0x8000D470; // type:object size:0xC scope:local hidden +@eti_8000D47C = extabindex:0x8000D47C; // type:object size:0xC scope:local hidden +@eti_8000D488 = extabindex:0x8000D488; // type:object size:0xC scope:local hidden +@eti_8000D494 = extabindex:0x8000D494; // type:object size:0xC scope:local hidden +@eti_8000D4A0 = extabindex:0x8000D4A0; // type:object size:0xC scope:local hidden +@eti_8000D4AC = extabindex:0x8000D4AC; // type:object size:0xC scope:local hidden +@eti_8000D4B8 = extabindex:0x8000D4B8; // type:object size:0xC scope:local hidden +@eti_8000D4C4 = extabindex:0x8000D4C4; // type:object size:0xC scope:local hidden +@eti_8000D4D0 = extabindex:0x8000D4D0; // type:object size:0xC scope:local hidden +@eti_8000D4DC = extabindex:0x8000D4DC; // type:object size:0xC scope:local hidden +@eti_8000D4E8 = extabindex:0x8000D4E8; // type:object size:0xC scope:local hidden +@eti_8000D4F4 = extabindex:0x8000D4F4; // type:object size:0xC scope:local hidden +@eti_8000D500 = extabindex:0x8000D500; // type:object size:0xC scope:local hidden +@eti_8000D50C = extabindex:0x8000D50C; // type:object size:0xC scope:local hidden +@eti_8000D518 = extabindex:0x8000D518; // type:object size:0xC scope:local hidden +@eti_8000D524 = extabindex:0x8000D524; // type:object size:0xC scope:local hidden +@eti_8000D530 = extabindex:0x8000D530; // type:object size:0xC scope:local hidden +@eti_8000D53C = extabindex:0x8000D53C; // type:object size:0xC scope:local hidden +@eti_8000D548 = extabindex:0x8000D548; // type:object size:0xC scope:local hidden +@eti_8000D554 = extabindex:0x8000D554; // type:object size:0xC scope:local hidden +@eti_8000D560 = extabindex:0x8000D560; // type:object size:0xC scope:local hidden +@eti_8000D56C = extabindex:0x8000D56C; // type:object size:0xC scope:local hidden +@eti_8000D578 = extabindex:0x8000D578; // type:object size:0xC scope:local hidden +@eti_8000D584 = extabindex:0x8000D584; // type:object size:0xC scope:local hidden +@eti_8000D590 = extabindex:0x8000D590; // type:object size:0xC scope:local hidden +@eti_8000D59C = extabindex:0x8000D59C; // type:object size:0xC scope:local hidden +@eti_8000D5A8 = extabindex:0x8000D5A8; // type:object size:0xC scope:local hidden +@eti_8000D5B4 = extabindex:0x8000D5B4; // type:object size:0xC scope:local hidden +@eti_8000D5C0 = extabindex:0x8000D5C0; // type:object size:0xC scope:local hidden +@eti_8000D5CC = extabindex:0x8000D5CC; // type:object size:0xC scope:local hidden +@eti_8000D5D8 = extabindex:0x8000D5D8; // type:object size:0xC scope:local hidden +@eti_8000D5E4 = extabindex:0x8000D5E4; // type:object size:0xC scope:local hidden +@eti_8000D5F0 = extabindex:0x8000D5F0; // type:object size:0xC scope:local hidden +@eti_8000D5FC = extabindex:0x8000D5FC; // type:object size:0xC scope:local hidden +@eti_8000D608 = extabindex:0x8000D608; // type:object size:0xC scope:local hidden +@eti_8000D614 = extabindex:0x8000D614; // type:object size:0xC scope:local hidden +@eti_8000D620 = extabindex:0x8000D620; // type:object size:0xC scope:local hidden +@eti_8000D62C = extabindex:0x8000D62C; // type:object size:0xC scope:local hidden +@eti_8000D638 = extabindex:0x8000D638; // type:object size:0xC scope:local hidden +@eti_8000D644 = extabindex:0x8000D644; // type:object size:0xC scope:local hidden +@eti_8000D650 = extabindex:0x8000D650; // type:object size:0xC scope:local hidden +@eti_8000D65C = extabindex:0x8000D65C; // type:object size:0xC scope:local hidden +@eti_8000D668 = extabindex:0x8000D668; // type:object size:0xC scope:local hidden +@eti_8000D674 = extabindex:0x8000D674; // type:object size:0xC scope:local hidden +@eti_8000D680 = extabindex:0x8000D680; // type:object size:0xC scope:local hidden +@eti_8000D68C = extabindex:0x8000D68C; // type:object size:0xC scope:local hidden +@eti_8000D698 = extabindex:0x8000D698; // type:object size:0xC scope:local hidden +@eti_8000D6A4 = extabindex:0x8000D6A4; // type:object size:0xC scope:local hidden +@eti_8000D6B0 = extabindex:0x8000D6B0; // type:object size:0xC scope:local hidden +@eti_8000D6BC = extabindex:0x8000D6BC; // type:object size:0xC scope:local hidden +@eti_8000D6C8 = extabindex:0x8000D6C8; // type:object size:0xC scope:local hidden +@eti_8000D6D4 = extabindex:0x8000D6D4; // type:object size:0xC scope:local hidden +@eti_8000D6E0 = extabindex:0x8000D6E0; // type:object size:0xC scope:local hidden +@eti_8000D6EC = extabindex:0x8000D6EC; // type:object size:0xC scope:local hidden +@eti_8000D6F8 = extabindex:0x8000D6F8; // type:object size:0xC scope:local hidden +@eti_8000D704 = extabindex:0x8000D704; // type:object size:0xC scope:local hidden +@eti_8000D710 = extabindex:0x8000D710; // type:object size:0xC scope:local hidden +@eti_8000D71C = extabindex:0x8000D71C; // type:object size:0xC scope:local hidden +@eti_8000D728 = extabindex:0x8000D728; // type:object size:0xC scope:local hidden +@eti_8000D734 = extabindex:0x8000D734; // type:object size:0xC scope:local hidden +@eti_8000D740 = extabindex:0x8000D740; // type:object size:0xC scope:local hidden +@eti_8000D74C = extabindex:0x8000D74C; // type:object size:0xC scope:local hidden +@eti_8000D758 = extabindex:0x8000D758; // type:object size:0xC scope:local hidden +@eti_8000D764 = extabindex:0x8000D764; // type:object size:0xC scope:local hidden +@eti_8000D770 = extabindex:0x8000D770; // type:object size:0xC scope:local hidden +@eti_8000D77C = extabindex:0x8000D77C; // type:object size:0xC scope:local hidden +@eti_8000D788 = extabindex:0x8000D788; // type:object size:0xC scope:local hidden +@eti_8000D794 = extabindex:0x8000D794; // type:object size:0xC scope:local hidden +@eti_8000D7A0 = extabindex:0x8000D7A0; // type:object size:0xC scope:local hidden +@eti_8000D7AC = extabindex:0x8000D7AC; // type:object size:0xC scope:local hidden +@eti_8000D7B8 = extabindex:0x8000D7B8; // type:object size:0xC scope:local hidden +@eti_8000D7C4 = extabindex:0x8000D7C4; // type:object size:0xC scope:local hidden +@eti_8000D7D0 = extabindex:0x8000D7D0; // type:object size:0xC scope:local hidden +@eti_8000D7DC = extabindex:0x8000D7DC; // type:object size:0xC scope:local hidden +@eti_8000D7E8 = extabindex:0x8000D7E8; // type:object size:0xC scope:local hidden +@eti_8000D7F4 = extabindex:0x8000D7F4; // type:object size:0xC scope:local hidden +@eti_8000D800 = extabindex:0x8000D800; // type:object size:0xC scope:local hidden +@eti_8000D80C = extabindex:0x8000D80C; // type:object size:0xC scope:local hidden +@eti_8000D818 = extabindex:0x8000D818; // type:object size:0xC scope:local hidden +@eti_8000D824 = extabindex:0x8000D824; // type:object size:0xC scope:local hidden +@eti_8000D830 = extabindex:0x8000D830; // type:object size:0xC scope:local hidden +@eti_8000D83C = extabindex:0x8000D83C; // type:object size:0xC scope:local hidden +@eti_8000D848 = extabindex:0x8000D848; // type:object size:0xC scope:local hidden +@eti_8000D854 = extabindex:0x8000D854; // type:object size:0xC scope:local hidden +@eti_8000D860 = extabindex:0x8000D860; // type:object size:0xC scope:local hidden +@eti_8000D86C = extabindex:0x8000D86C; // type:object size:0xC scope:local hidden +@eti_8000D878 = extabindex:0x8000D878; // type:object size:0xC scope:local hidden +@eti_8000D884 = extabindex:0x8000D884; // type:object size:0xC scope:local hidden +@eti_8000D890 = extabindex:0x8000D890; // type:object size:0xC scope:local hidden +@eti_8000D89C = extabindex:0x8000D89C; // type:object size:0xC scope:local hidden +@eti_8000D8A8 = extabindex:0x8000D8A8; // type:object size:0xC scope:local hidden +@eti_8000D8B4 = extabindex:0x8000D8B4; // type:object size:0xC scope:local hidden +@eti_8000D8C0 = extabindex:0x8000D8C0; // type:object size:0xC scope:local hidden +@eti_8000D8CC = extabindex:0x8000D8CC; // type:object size:0xC scope:local hidden +@eti_8000D8D8 = extabindex:0x8000D8D8; // type:object size:0xC scope:local hidden +@eti_8000D8E4 = extabindex:0x8000D8E4; // type:object size:0xC scope:local hidden +@eti_8000D8F0 = extabindex:0x8000D8F0; // type:object size:0xC scope:local hidden +@eti_8000D8FC = extabindex:0x8000D8FC; // type:object size:0xC scope:local hidden +@eti_8000D908 = extabindex:0x8000D908; // type:object size:0xC scope:local hidden +@eti_8000D914 = extabindex:0x8000D914; // type:object size:0xC scope:local hidden +@eti_8000D920 = extabindex:0x8000D920; // type:object size:0xC scope:local hidden +@eti_8000D92C = extabindex:0x8000D92C; // type:object size:0xC scope:local hidden +@eti_8000D938 = extabindex:0x8000D938; // type:object size:0xC scope:local hidden +_eti_init_info = extabindex:0x8000D944; // type:object size:0x20 scope:global +fn_8000D980 = .text:0x8000D980; // type:function size:0x4 +fn_8000D984 = .text:0x8000D984; // type:function size:0x54 +fn_8000D9D8 = .text:0x8000D9D8; // type:function size:0x64 +fn_8000DA3C = .text:0x8000DA3C; // type:function size:0x30 +fn_8000DA6C = .text:0x8000DA6C; // type:function size:0x8 +fn_8000DA74 = .text:0x8000DA74; // type:function size:0x50 +fn_8000DAC4 = .text:0x8000DAC4; // type:function size:0x10 +fn_8000DAD4 = .text:0x8000DAD4; // type:function size:0xC +fn_8000DAE0 = .text:0x8000DAE0; // type:function size:0x4 +fn_8000DAE4 = .text:0x8000DAE4; // type:function size:0x18 +fn_8000DAFC = .text:0x8000DAFC; // type:function size:0x34 +fn_8000DB30 = .text:0x8000DB30; // type:function size:0x4 +fn_8000DB34 = .text:0x8000DB34; // type:function size:0x30 +fn_8000DB64 = .text:0x8000DB64; // type:function size:0x10 +fn_8000DB74 = .text:0x8000DB74; // type:function size:0x28 +c_str__6StringCFv = .text:0x8000DB9C; // type:function size:0x8 +fn_8000DBA4 = .text:0x8000DBA4; // type:function size:0xC +fn_8000DBB0 = .text:0x8000DBB0; // type:function size:0x4 +fn_8000DBB4 = .text:0x8000DBB4; // type:function size:0x8 +fn_8000DBBC = .text:0x8000DBBC; // type:function size:0x4C +fn_8000DC08 = .text:0x8000DC08; // type:function size:0x70 +fn_8000DC78 = .text:0x8000DC78; // type:function size:0x30 +__as__6SymbolFRC6Symbol = .text:0x8000DCA8; // type:function size:0xC +fn_8000DCB4 = .text:0x8000DCB4; // type:function size:0x30 +fn_8000DCE4 = .text:0x8000DCE4; // type:function size:0x2C +fn_8000DD10 = .text:0x8000DD10; // type:function size:0x40 scope:weak noexport +fn_8000DD50 = .text:0x8000DD50; // type:function size:0x1EC +GetJsonObjectStruct__10JsonObjectFv = .text:0x8000DF3C; // type:function size:0x8 +fn_8000DF44 = .text:0x8000DF44; // type:function size:0xC +GetNodeAtIndex__9DataArrayCFi = .text:0x8000DF50; // type:function size:0x10 +__dt__7MessageFv = .text:0x8000DF60; // type:function size:0x64 +DecRefCount__9DataArrayFv = .text:0x8000DFC4; // type:function size:0x20 +__dt__8DataNodeFv = .text:0x8000DFE4; // type:function size:0x64 +__ct__7MessageF6SymbolRC8DataNodeRC8DataNode = .text:0x8000E048; // type:function size:0xCC +__ct__8DataNodeF6Symbol = .text:0x8000E114; // type:function size:0x14 +__ct__8DataNodeFi = .text:0x8000E128; // type:function size:0x10 +Find__9ObjectDirFPCcb_PQ23Hmx6Object = .text:0x8000E138; // type:function size:0x84 +__ct__3AppFiPPc = .text:0x8000E1BC; // type:function size:0x688 +__dt__21ObjDirPtr<9ObjectDir>Fv = .text:0x8000E844; // type:function size:0x70 +__as__21ObjDirPtr<9ObjectDir>FP9ObjectDir = .text:0x8000E8B4; // type:function size:0x108 +PostLoad__21ObjDirPtr<9ObjectDir>Fv = .text:0x8000E9BC; // type:function size:0x64 +fn_8000EA20 = .text:0x8000EA20; // type:function size:0x8 +__dt__8FilePathFv = .text:0x8000EA28; // type:function size:0x58 +fn_8000EA80 = .text:0x8000EA80; // type:function size:0x180 +__ct__8FilePathFRC8FilePath = .text:0x8000EC00; // type:function size:0x3C +empty__6StringCFv = .text:0x8000EC3C; // type:function size:0x18 +fn_8000EC54 = .text:0x8000EC54; // type:function size:0x8 +__ct__8FilePathFPCc = .text:0x8000EC5C; // type:function size:0x64 +GetStrAtIndex__9DataArrayCFi = .text:0x8000ECC0; // type:function size:0x34 +__ct__21ObjDirPtr<9ObjectDir>Fv = .text:0x8000ECF4; // type:function size:0x48 +__ct__6ObjRefFv = .text:0x8000ED3C; // type:function size:0x10 +fn_8000ED4C = .text:0x8000ED4C; // type:function size:0x18 +SplitMs__5TimerFv = .text:0x8000ED64; // type:function size:0x34 +fn_8000ED98 = .text:0x8000ED98; // type:function size:0x10 +fn_8000EDA8 = .text:0x8000EDA8; // type:function size:0x5C +fn_8000EE04 = .text:0x8000EE04; // type:function size:0x3C +fn_8000EE40 = .text:0x8000EE40; // type:function size:0x8 +fn_8000EE48 = .text:0x8000EE48; // type:function size:0x8 +fn_8000EE50 = .text:0x8000EE50; // type:function size:0x8 +fn_8000EE58 = .text:0x8000EE58; // type:function size:0x8 +__as__Q23Hmx4QuatFRCQ23Hmx4Quat = .text:0x8000EE60; // type:function size:0x24 +__ct__Q23Hmx5ColorFfff = .text:0x8000EE84; // type:function size:0x1C +fn_8000EEA0 = .text:0x8000EEA0; // type:function size:0x18 +Start__5TimerFv = .text:0x8000EEB8; // type:function size:0x20 +__dt__3AppFv = .text:0x8000EED8; // type:function size:0x64 +fn_8000EF3C = .text:0x8000EF3C; // type:function size:0x98 +fn_8000EFD4 = .text:0x8000EFD4; // type:function size:0xC +fn_8000EFE0 = .text:0x8000EFE0; // type:function size:0x8 +fn_8000EFE8 = .text:0x8000EFE8; // type:function size:0x8 +fn_8000EFF0 = .text:0x8000EFF0; // type:function size:0x4 +fn_8000EFF4 = .text:0x8000EFF4; // type:function size:0x354 +fn_8000F348 = .text:0x8000F348; // type:function size:0x10 +fn_8000F358 = .text:0x8000F358; // type:function size:0xC +Run__3AppFv = .text:0x8000F364; // type:function size:0x4 +fn_8000F368 = .text:0x8000F368; // type:function size:0x128 +fn_8000F490 = .text:0x8000F490; // type:function size:0x4 +fn_8000F494 = .text:0x8000F494; // type:function size:0x4 +fn_8000F498 = .text:0x8000F498; // type:function size:0x50 +fn_8000F4E8 = .text:0x8000F4E8; // type:function size:0x6C +fn_8000F554 = .text:0x8000F554; // type:function size:0x10 +fn_8000F564 = .text:0x8000F564; // type:function size:0x2C +fn_8000F590 = .text:0x8000F590; // type:function size:0x8 +__dt__12DataArrayPtrFv = .text:0x8000F598; // type:function size:0x58 +fn_8000F5F0 = .text:0x8000F5F0; // type:function size:0x30 +fn_8000F620 = .text:0x8000F620; // type:function size:0xC +fn_8000F62C = .text:0x8000F62C; // type:function size:0x34 +fn_8000F660 = .text:0x8000F660; // type:function size:0x14 +RunWithoutDebugging__3AppFv = .text:0x8000F674; // type:function size:0x190 +fn_8000F804 = .text:0x8000F804; // type:function size:0x8 +fn_8000F80C = .text:0x8000F80C; // type:function size:0x5C +fn_8000F868 = .text:0x8000F868; // type:function size:0x38 +Replace__21ObjDirPtr<9ObjectDir>FPQ23Hmx6ObjectPQ23Hmx6Object = .text:0x8000F8A0; // type:function size:0x6C +fn_8000F90C = .text:0x8000F90C; // type:function size:0x8 +fn_8000F914 = .text:0x8000F914; // type:function size:0x4C +fn_8000F960 = .text:0x8000F960; // type:function size:0xC +main = .text:0x8000F96C; // type:function size:0x44 scope:global +fn_8000F9B0 = .text:0x8000F9B0; // type:function size:0x20 +__dt__14TextFileStreamFv = .text:0x8000F9D0; // type:function size:0x68 +fn_8000FA38 = .text:0x8000FA38; // type:function size:0x34 +fn_8000FA6C = .text:0x8000FA6C; // type:function size:0x8 +fn_8000FA74 = .text:0x8000FA74; // type:function size:0x30 +fn_8000FAA4 = .text:0x8000FAA4; // type:function size:0x38 +fn_8000FADC = .text:0x8000FADC; // type:function size:0x100 +fn_8000FBDC = .text:0x8000FBDC; // type:function size:0x30 +fn_8000FC0C = .text:0x8000FC0C; // type:function size:0x58 +fn_8000FC64 = .text:0x8000FC64; // type:function size:0x14 +fn_8000FC78 = .text:0x8000FC78; // type:function size:0x20 +fn_8000FC98 = .text:0x8000FC98; // type:function size:0xC +__eq__6SymbolFRC6Symbol = .text:0x8000FCA4; // type:function size:0x18 +fn_8000FCBC = .text:0x8000FCBC; // type:function size:0x4 +fn_8000FCC0 = .text:0x8000FCC0; // type:function size:0x40 +fn_8000FD00 = .text:0x8000FD00; // type:function size:0x80 +fn_8000FD80 = .text:0x8000FD80; // type:function size:0x8 +fn_8000FD88 = .text:0x8000FD88; // type:function size:0xC +fn_8000FD94 = .text:0x8000FD94; // type:function size:0x4 +fn_8000FD98 = .text:0x8000FD98; // type:function size:0x8 +GetNodeCount__9DataArrayCFv = .text:0x8000FDA0; // type:function size:0x8 +fn_8000FDA8 = .text:0x8000FDA8; // type:function size:0x58 +fn_8000FE00 = .text:0x8000FE00; // type:function size:0x60 +fn_8000FE60 = .text:0x8000FE60; // type:function size:0x58 +fn_8000FEB8 = .text:0x8000FEB8; // type:function size:0x58 +fn_8000FF10 = .text:0x8000FF10; // type:function size:0x50 +fn_8000FF60 = .text:0x8000FF60; // type:function size:0x24 +fn_8000FF84 = .text:0x8000FF84; // type:function size:0x44 +Name__Q23Hmx6ObjectCFv = .text:0x8000FFC8; // type:function size:0x8 +fn_8000FFD0 = .text:0x8000FFD0; // type:function size:0x8 +fn_8000FFD8 = .text:0x8000FFD8; // type:function size:0x8 +__ct__7MessageF6Symbol = .text:0x8000FFE0; // type:function size:0x9C +fn_8001007C = .text:0x8001007C; // type:function size:0x10 +__ct__7MessageF6SymbolRC8DataNode = .text:0x8001008C; // type:function size:0xB4 +GetSymAtIndex__9DataArrayCFi = .text:0x80010140; // type:function size:0x34 +fn_80010174 = .text:0x80010174; // type:function size:0x44 +fn_800101B8 = .text:0x800101B8; // type:function size:0x3C +fn_800101F4 = .text:0x800101F4; // type:function size:0x70 +fn_80010264 = .text:0x80010264; // type:function size:0x18 +fn_8001027C = .text:0x8001027C; // type:function size:0x24 +SetType__Q23Hmx6ObjectF6Symbol = .text:0x800102A0; // type:function size:0x128 +ClassName__Q23Hmx6ObjectCFv = .text:0x800103C8; // type:function size:0x4 +IsNull__6SymbolFv = .text:0x800103CC; // type:function size:0x1C +StaticClassName__Q23Hmx6ObjectFv = .text:0x800103E8; // type:function size:0x4C +fn_80010434 = .text:0x80010434; // type:function size:0x2C +FirstFrom__35KeylessHashFPQ29ObjectDir5Entry = .text:0x80010460; // type:function size:0x90 +fn_800104F0 = .text:0x800104F0; // type:function size:0x18 +fn_80010508 = .text:0x80010508; // type:function size:0x44 +fn_8001054C = .text:0x8001054C; // type:function size:0x18 +fn_80010564 = .text:0x80010564; // type:function size:0x3B8 +fn_8001091C = .text:0x8001091C; // type:function size:0x38 +fn_80010954 = .text:0x80010954; // type:function size:0x10 +fn_80010964 = .text:0x80010964; // type:function size:0x6C +fn_800109D0 = .text:0x800109D0; // type:function size:0x10 +fn_800109E0 = .text:0x800109E0; // type:function size:0x2C +fn_80010A0C = .text:0x80010A0C; // type:function size:0x5C +fn_80010A68 = .text:0x80010A68; // type:function size:0x18 +fn_80010A80 = .text:0x80010A80; // type:function size:0x15C +fn_80010BDC = .text:0x80010BDC; // type:function size:0x44 +fn_80010C20 = .text:0x80010C20; // type:function size:0x108 +fn_80010D28 = .text:0x80010D28; // type:function size:0x5C +fn_80010D84 = .text:0x80010D84; // type:function size:0x10 +fn_80010D94 = .text:0x80010D94; // type:function size:0x14 +fn_80010DA8 = .text:0x80010DA8; // type:function size:0xC +fn_80010DB4 = .text:0x80010DB4; // type:function size:0x164 +fn_80010F18 = .text:0x80010F18; // type:function size:0x60 +fn_80010F78 = .text:0x80010F78; // type:function size:0x60 +fn_80010FD8 = .text:0x80010FD8; // type:function size:0x10 +asciiDigitToHex__Fc = .text:0x80010FE8; // type:function size:0x4C +parseHex16__FPCcPUc = .text:0x80011034; // type:function size:0x88 +random__Fl = .text:0x800110BC; // type:function size:0x2C +getMasher__8KeyChainFPUc = .text:0x800110E8; // type:function size:0xAC +mash__FPUcPUc = .text:0x80011194; // type:function size:0x2C +roll__Fi = .text:0x800111C0; // type:function size:0x1C +swap__FRcRc = .text:0x800111DC; // type:function size:0x14 +shuffle1__FPc = .text:0x800111F0; // type:function size:0x80 +shuffle2__FPc = .text:0x80011270; // type:function size:0x84 +shuffle3__FPc = .text:0x800112F4; // type:function size:0x88 +shuffle4__FPc = .text:0x8001137C; // type:function size:0x8C +shuffle5__FPc = .text:0x80011408; // type:function size:0x8C +shuffle6__FPc = .text:0x80011494; // type:function size:0x8C +supershuffle__FPc = .text:0x80011520; // type:function size:0x54 +opaquePredicate__Fv = .text:0x80011574; // type:function size:0x10 +memcpy_cs__FPUcPCUci = .text:0x80011584; // type:function size:0x68 +revealKey__FPlPUc = .text:0x800115EC; // type:function size:0x64 +getKeyImpl__FPUcPcPUc = .text:0x80011650; // type:function size:0x4C +getKey__8KeyChainFiPUcPUc = .text:0x8001169C; // type:function size:0x70 +getNumKeys__8KeyChainFv = .text:0x8001170C; // type:function size:0x8 +__dt__Q26Quazal12PluginObjectFv = .text:0x80011714; // type:function size:0x40 +Signal__Q26Quazal9BadEventsFQ36Quazal9BadEvents3_ID = .text:0x80011754; // type:function size:0x24 +__dt__Q26Quazal8ScopedCSFv = .text:0x80011778; // type:function size:0x54 +fn_800117CC = .text:0x800117CC; // type:function size:0x50 +__ct__Q26Quazal8ScopedCSFRQ26Quazal15CriticalSection = .text:0x8001181C; // type:function size:0x4C +__ct__Q26Quazal16BandwidthCounterFRCQ26Quazal6String = .text:0x80011868; // type:function size:0x84 +fn_800118EC = .text:0x800118EC; // type:function size:0x4C +fn_80011938 = .text:0x80011938; // type:function size:0xCC +fn_80011A04 = .text:0x80011A04; // type:function size:0x3C +fn_80011A40 = .text:0x80011A40; // type:function size:0x34 +fn_80011A74 = .text:0x80011A74; // type:function size:0x3C +fn_80011AB0 = .text:0x80011AB0; // type:function size:0x38 +fn_80011AE8 = .text:0x80011AE8; // type:function size:0x5C +fn_80011B44 = .text:0x80011B44; // type:function size:0x50 +fn_80011B94 = .text:0x80011B94; // type:function size:0x70 +fn_80011C04 = .text:0x80011C04; // type:function size:0x9C +fn_80011CA0 = .text:0x80011CA0; // type:function size:0x68 +fn_80011D08 = .text:0x80011D08; // type:function size:0xC4 +fn_80011DCC = .text:0x80011DCC; // type:function size:0x90 +fn_80011E5C = .text:0x80011E5C; // type:function size:0x34 +find__Q211stlpmtx_std142map,Q26Quazal69MemAllocator>>FRCUi = .text:0x80011E90; // type:function size:0x58 +fn_80011EE8 = .text:0x80011EE8; // type:function size:0x8C +fn_80011F74 = .text:0x80011F74; // type:function size:0x84 +fn_80011FF8 = .text:0x80011FF8; // type:function size:0x2D4 +fn_800122CC = .text:0x800122CC; // type:function size:0x64 +fn_80012330 = .text:0x80012330; // type:function size:0x118 +fn_80012448 = .text:0x80012448; // type:function size:0xEC +fn_80012534 = .text:0x80012534; // type:function size:0x74 +fn_800125A8 = .text:0x800125A8; // type:function size:0x68 +fn_80012610 = .text:0x80012610; // type:function size:0x74 +fn_80012684 = .text:0x80012684; // type:function size:0x70 +fn_800126F4 = .text:0x800126F4; // type:function size:0x18 +__ct__Q26Quazal15CriticalSectionFUi = .text:0x8001270C; // type:function size:0x48 +__dt__Q26Quazal15CriticalSectionFv = .text:0x80012754; // type:function size:0x68 +EnterImpl__Q26Quazal15CriticalSectionFv = .text:0x800127BC; // type:function size:0x14 +LeaveImpl__Q26Quazal15CriticalSectionFv = .text:0x800127D0; // type:function size:0x14 +__ct__Q26Quazal8DateTimeFv = .text:0x800127E4; // type:function size:0x10 +__ct__Q26Quazal8DateTimeFRCQ26Quazal8DateTime = .text:0x800127F4; // type:function size:0x14 +__as__Q26Quazal8DateTimeFRCQ26Quazal8DateTime = .text:0x80012808; // type:function size:0x14 +__opUx__Q26Quazal8DateTimeCFv = .text:0x8001281C; // type:function size:0x10 +fn_8001282C = .text:0x8001282C; // type:function size:0x24 +GetYear__Q26Quazal8DateTimeCFv = .text:0x80012850; // type:function size:0x20 +fn_80012870 = .text:0x80012870; // type:function size:0xC +fn_8001287C = .text:0x8001287C; // type:function size:0xC +GetHour__Q26Quazal8DateTimeCFv = .text:0x80012888; // type:function size:0x18 +fn_800128A0 = .text:0x800128A0; // type:function size:0xC +GetSecond__Q26Quazal8DateTimeCFv = .text:0x800128AC; // type:function size:0xC +GetSystemTime__Q26Quazal8DateTimeFRQ26Quazal8DateTime = .text:0x800128B8; // type:function size:0x13C +fn_800129F4 = .text:0x800129F4; // type:function size:0x44 +__ct__Q26Quazal4TimeFUx = .text:0x80012A38; // type:function size:0xC +__ct__Q26Quazal5EventFPQ26Quazal12EventHandlerUiUi = .text:0x80012A44; // type:function size:0x10 +__dt__Q26Quazal5EventFv = .text:0x80012A54; // type:function size:0x40 +Set__Q26Quazal5EventFv = .text:0x80012A94; // type:function size:0xC +Reset__Q26Quazal5EventFv = .text:0x80012AA0; // type:function size:0xC +__ct__Q26Quazal12EventHandlerFUs = .text:0x80012AAC; // type:function size:0xC8 +SpecialNewArray__6QuazalFUiPcUi_Pc = .text:0x80012B74; // type:function size:0x58 +fn_80012BCC = .text:0x80012BCC; // type:function size:0x5C +fn_80012C28 = .text:0x80012C28; // type:function size:0x7C +SpecialDeleteArray__6QuazalFPc_v = .text:0x80012CA4; // type:function size:0x38 +CreateEventObject__Q26Quazal12EventHandlerFUiUi = .text:0x80012CDC; // type:function size:0xEC +DeleteEventObject__Q26Quazal12EventHandlerFPQ26Quazal5Event = .text:0x80012DC8; // type:function size:0x80 +GetEventIndex__Q26Quazal12EventHandlerCFPQ26Quazal5Event = .text:0x80012E48; // type:function size:0xA4 +SetEvent__Q26Quazal12EventHandlerFPQ26Quazal5Event = .text:0x80012EEC; // type:function size:0x48 +ResetEvent__Q26Quazal12EventHandlerFPQ26Quazal5Event = .text:0x80012F34; // type:function size:0x48 +GetSignaledEvent__Q26Quazal12EventHandlerCFv = .text:0x80012F7C; // type:function size:0xEC +WaitForEvent__Q26Quazal12EventHandlerCFUiPPQ26Quazal5Event = .text:0x80013068; // type:function size:0x4 +WaitForBoolEvent__Q26Quazal12EventHandlerCFUiPPQ26Quazal5Event = .text:0x8001306C; // type:function size:0x110 +__ct__Q26Quazal8EventLogFv = .text:0x8001317C; // type:function size:0x4C +__dt__Q26Quazal8EventLogFv = .text:0x800131C8; // type:function size:0x58 +LogLevelToString__Q26Quazal8EventLogFQ36Quazal8EventLog8LogLevel = .text:0x80013220; // type:function size:0x98 +fn_800132B8 = .text:0x800132B8; // type:function size:0xC +OutputImpl__Q26Quazal8EventLogFQ36Quazal8EventLog8LogLevelPCcP16__va_list_struct = .text:0x800132C4; // type:function size:0xF0 +AddCustomPrefix__Q26Quazal8EventLogFPciPv = .text:0x800133B4; // type:function size:0x68 +_QLOG__6QuazalFQ36Quazal8EventLog8LogLevelPCce = .text:0x8001341C; // type:function size:0xA8 +fn_800134C4 = .text:0x800134C4; // type:function size:0x1C +fn_800134E0 = .text:0x800134E0; // type:function size:0x110 +CheckCrtExceptions__Q26Quazal16ExceptionHandlerFv = .text:0x800135F0; // type:function size:0x4 +Initialize__Q26Quazal16ExceptionHandlerFv = .text:0x800135F4; // type:function size:0x4 +__ct__Q26Quazal20HighResolutionChronoFv = .text:0x800135F8; // type:function size:0x3C +__ct__Q26Quazal4TimeFv = .text:0x80013634; // type:function size:0x10 +__dt__Q26Quazal20HighResolutionChronoFv = .text:0x80013644; // type:function size:0x40 +Reset__Q26Quazal20HighResolutionChronoFv = .text:0x80013684; // type:function size:0x48 +GetElapsed__Q26Quazal20HighResolutionChronoFb = .text:0x800136CC; // type:function size:0x118 +GetLowResolutionTime__Q26Quazal19HighResolutionClockFv = .text:0x800137E4; // type:function size:0x4 +DefaultToHighResolution__Q26Quazal19HighResolutionClockFv = .text:0x800137E8; // type:function size:0x8 +GetHighResolutionTime__Q26Quazal19HighResolutionClockFv = .text:0x800137F0; // type:function size:0x58 +GetTime__Q26Quazal19HighResolutionClockFv = .text:0x80013848; // type:function size:0x64 +__ct__Q26Quazal11LockCheckerFUi = .text:0x800138AC; // type:function size:0x18 +__dt__Q26Quazal11LockCheckerFv = .text:0x800138C4; // type:function size:0x40 +__ct__Q26Quazal3LogFv = .text:0x80013904; // type:function size:0x88 +__ct__Q26Quazal20LogDeviceDebugOutputFv = .text:0x8001398C; // type:function size:0x3C +__ct__Q26Quazal9LogDeviceFv = .text:0x800139C8; // type:function size:0x10 +__dt__Q26Quazal3LogFv = .text:0x800139D8; // type:function size:0xC8 +Output__Q26Quazal3LogFPCce = .text:0x80013AA0; // type:function size:0x90 +OutputString__Q26Quazal3LogFPCce = .text:0x80013B30; // type:function size:0x90 +OutputImpl__Q26Quazal3LogFPCcP16__va_list_structPv = .text:0x80013BC0; // type:function size:0x10C +__dt__Q26Quazal8LogEntryFv = .text:0x80013CCC; // type:function size:0x58 +PrepareOutput__Q26Quazal3LogFPcUiPv = .text:0x80013D24; // type:function size:0xE4 +GetOutputFormat__Q26Quazal3LogFv = .text:0x80013E08; // type:function size:0x8 +Output__Q26Quazal20LogDeviceDebugOutputFRCQ26Quazal8LogEntry = .text:0x80013E10; // type:function size:0x14 +__ct__Q26Quazal13MemoryManagerFPc = .text:0x80013E24; // type:function size:0xB8 +__dt__Q26Quazal13MemoryManagerFv = .text:0x80013EDC; // type:function size:0x40 +GetHeaderSize__Q26Quazal13MemoryManagerFv = .text:0x80013F1C; // type:function size:0x1C +Allocate__Q26Quazal13MemoryManagerFPQ26Quazal13MemoryManagerUlPCcUiQ36Quazal13MemoryManager16_InstructionType = .text:0x80013F38; // type:function size:0xA0 +EndProtection__Q26Quazal13MemoryManagerFv = .text:0x80013FD8; // type:function size:0x18 +BeginProtection__Q26Quazal13MemoryManagerFv = .text:0x80013FF0; // type:function size:0x18 +Free__Q26Quazal13MemoryManagerFPQ26Quazal13MemoryManagerPvQ36Quazal13MemoryManager16_InstructionType = .text:0x80014008; // type:function size:0xA8 +GenericMalloc__Q26Quazal13MemoryManagerFUl = .text:0x800140B0; // type:function size:0x1C +fn_800140CC = .text:0x800140CC; // type:function size:0x20 +GetDefaultMemoryManager__Q26Quazal13MemoryManagerFv = .text:0x800140EC; // type:function size:0x84 +QuazalCRTAlloc = .text:0x80014170; // type:function size:0x88 +QuazalCRTCalloc = .text:0x800141F8; // type:function size:0x6C +QuazalCRTFree = .text:0x80014264; // type:function size:0x40 +__ct__Q26Quazal14MutexPrimitiveFv = .text:0x800142A4; // type:function size:0x44 +fn_800142E8 = .text:0x800142E8; // type:function size:0x4C +fn_80014334 = .text:0x80014334; // type:function size:0x60 +fn_80014394 = .text:0x80014394; // type:function size:0x38 +EnterImpl__Q26Quazal14MutexPrimitiveFv = .text:0x800143CC; // type:function size:0x8 +LeaveImpl__Q26Quazal14MutexPrimitiveFv = .text:0x800143D4; // type:function size:0x8 +__ct__Q26Quazal16ObjectThreadRootFRCQ26Quazal6String = .text:0x800143DC; // type:function size:0x7C +fn_80014458 = .text:0x80014458; // type:function size:0x14 +__dt__Q26Quazal16ObjectThreadRootFv = .text:0x8001446C; // type:function size:0x7C +fn_800144E8 = .text:0x800144E8; // type:function size:0xAC +GetInstance__Q26Quazal16ObjectThreadRootFv = .text:0x80014594; // type:function size:0xB8 +__vc__Q211stlpmtx_std142map,Q26Quazal69MemAllocator>>FRCUi = .text:0x8001464C; // type:function size:0x90 +fn_800146DC = .text:0x800146DC; // type:function size:0xC +fn_800146E8 = .text:0x800146E8; // type:function size:0x4 +fn_800146EC = .text:0x800146EC; // type:function size:0x3C +fn_80014728 = .text:0x80014728; // type:function size:0x6C +fn_80014794 = .text:0x80014794; // type:function size:0x88 +fn_8001481C = .text:0x8001481C; // type:function size:0x140 +fn_8001495C = .text:0x8001495C; // type:function size:0x4C +fn_800149A8 = .text:0x800149A8; // type:function size:0xF8 +fn_80014AA0 = .text:0x80014AA0; // type:function size:0x10 +fn_80014AB0 = .text:0x80014AB0; // type:function size:0x1BC +fn_80014C6C = .text:0x80014C6C; // type:function size:0x10 +ReadyToRun__Q26Quazal16ObjectThreadRootFv = .text:0x80014C7C; // type:function size:0xC +GetThreadName__6QuazalFv = .text:0x80014C88; // type:function size:0x54 +fn_80014CDC = .text:0x80014CDC; // type:function size:0x2D4 +fn_80014FB0 = .text:0x80014FB0; // type:function size:0x118 +fn_800150C8 = .text:0x800150C8; // type:function size:0xEC +fn_800151B4 = .text:0x800151B4; // type:function size:0x74 +fn_80015228 = .text:0x80015228; // type:function size:0x70 +fn_80015298 = .text:0x80015298; // type:function size:0x8C +fn_80015324 = .text:0x80015324; // type:function size:0x5C +fn_80015380 = .text:0x80015380; // type:function size:0x50 +fn_800153D0 = .text:0x800153D0; // type:function size:0x64 +fn_80015434 = .text:0x80015434; // type:function size:0x64 +fn_80015498 = .text:0x80015498; // type:function size:0x80 +fn_80015518 = .text:0x80015518; // type:function size:0x70 +fn_80015588 = .text:0x80015588; // type:function size:0x5C +fn_800155E4 = .text:0x800155E4; // type:function size:0x40 +fn_80015624 = .text:0x80015624; // type:function size:0x3B0 +fn_800159D4 = .text:0x800159D4; // type:function size:0x64 +fn_80015A38 = .text:0x80015A38; // type:function size:0x70 +fn_80015AA8 = .text:0x80015AA8; // type:function size:0x2C +__ct__Q26Quazal12OutputFormatFv = .text:0x80015AD4; // type:function size:0x8C +StartString__Q26Quazal12OutputFormatFPcUi = .text:0x80015B60; // type:function size:0xC +StartPrefixes__Q26Quazal12OutputFormatFPcUi = .text:0x80015B6C; // type:function size:0x10 +PreparePrefix__Q26Quazal12OutputFormatFPcUiPCce = .text:0x80015B7C; // type:function size:0x9C +AddPrefixes__Q26Quazal12OutputFormatFPcUi = .text:0x80015C18; // type:function size:0x46C +EndPrefixes__Q26Quazal12OutputFormatFPcUi = .text:0x80016084; // type:function size:0x84 +AddIndent__Q26Quazal12OutputFormatFPcUi = .text:0x80016108; // type:function size:0x78 +AddMessage__Q26Quazal12OutputFormatFPcUiPCcP16__va_list_struct = .text:0x80016180; // type:function size:0x14 +AddMessageImpl__Q26Quazal12OutputFormatFPcUiPCcP16__va_list_struct = .text:0x80016194; // type:function size:0x6C +EndString__Q26Quazal12OutputFormatFPcUi = .text:0x80016200; // type:function size:0x4 +ShowLocalStationHandle__Q26Quazal12OutputFormatFb = .text:0x80016204; // type:function size:0x8 +IncreaseIndent__Q26Quazal12OutputFormatFUi = .text:0x8001620C; // type:function size:0x10 +DecreaseIndent__Q26Quazal12OutputFormatFUi = .text:0x8001621C; // type:function size:0x24 +AppendToString__Q26Quazal12OutputFormatFPcPCcUi = .text:0x80016240; // type:function size:0x80 +__ct__Q26Quazal11PerfCounterFPCcQ26Quazal4Timebb = .text:0x800162C0; // type:function size:0x108 +__ct__Q26Quazal4TimeFRCQ26Quazal4Time = .text:0x800163C8; // type:function size:0x14 +__dt__Q26Quazal11PerfCounterFv = .text:0x800163DC; // type:function size:0xD8 +fn_800164B4 = .text:0x800164B4; // type:function size:0x3C +fn_800164F0 = .text:0x800164F0; // type:function size:0xC +GetList__Q26Quazal11PerfCounterFv = .text:0x800164FC; // type:function size:0x64 +fn_80016560 = .text:0x80016560; // type:function size:0x74 +fn_800165D4 = .text:0x800165D4; // type:function size:0x70 +SetName__Q26Quazal11PerfCounterFPCc = .text:0x80016644; // type:function size:0x8 +Reset__Q26Quazal11PerfCounterFQ26Quazal4Time = .text:0x8001664C; // type:function size:0x78 +Inc__Q26Quazal11PerfCounterFUiQ26Quazal4Time = .text:0x800166C4; // type:function size:0x50 +Update__Q26Quazal11PerfCounterFQ26Quazal4Timei = .text:0x80016714; // type:function size:0x2C0 +GetTotal__Q26Quazal11PerfCounterFQ26Quazal4Time = .text:0x800169D4; // type:function size:0x44 +fn_80016A18 = .text:0x80016A18; // type:function size:0x60 +fn_80016A78 = .text:0x80016A78; // type:function size:0x80 +fn_80016AF8 = .text:0x80016AF8; // type:function size:0x28 +fn_80016B20 = .text:0x80016B20; // type:function size:0x60 +fn_80016B80 = .text:0x80016B80; // type:function size:0x4C +__ct__Q26Quazal8PlatformFv = .text:0x80016BCC; // type:function size:0x4C +__dt__Q26Quazal8PlatformFv = .text:0x80016C18; // type:function size:0x40 +CreateInstance__Q26Quazal8PlatformFv = .text:0x80016C58; // type:function size:0x48 +DeleteInstance__Q26Quazal8PlatformFv = .text:0x80016CA0; // type:function size:0x10 +SetRandomNumberSeed__Q26Quazal8PlatformFUi = .text:0x80016CB0; // type:function size:0x10 +GetRandomNumber__Q26Quazal8PlatformFUi = .text:0x80016CC0; // type:function size:0x10 +GetRealRandomNumber__Q26Quazal8PlatformFf = .text:0x80016CD0; // type:function size:0xC +Breakpoint__Q26Quazal8PlatformFv = .text:0x80016CDC; // type:function size:0x4 +Sleep__Q26Quazal8PlatformFUi = .text:0x80016CE0; // type:function size:0x44 +fn_80016D24 = .text:0x80016D24; // type:function size:0x70 +__ct__Q26Quazal13ProfilingUnitFPCcUi = .text:0x80016D94; // type:function size:0xE0 +__dt__Q26Quazal13ProfilingUnitFv = .text:0x80016E74; // type:function size:0xB8 +fn_80016F2C = .text:0x80016F2C; // type:function size:0x70 +fn_80016F9C = .text:0x80016F9C; // type:function size:0x58 +IncTime__Q26Quazal13ProfilingUnitFUx = .text:0x80016FF4; // type:function size:0x154 +Log__Q26Quazal13ProfilingUnitFv = .text:0x80017148; // type:function size:0x178 +Reset__Q26Quazal13ProfilingUnitFQ26Quazal4Time = .text:0x800172C0; // type:function size:0x3C +fn_800172FC = .text:0x800172FC; // type:function size:0x48 +fn_80017344 = .text:0x80017344; // type:function size:0x68 +__dt__Q26Quazal34qListFv = .text:0x800173AC; // type:function size:0x60 +fn_8001740C = .text:0x8001740C; // type:function size:0x3C +__ct__Q26Quazal21RandomNumberGeneratorFv = .text:0x80017448; // type:function size:0x50 +__dt__Q26Quazal21RandomNumberGeneratorFv = .text:0x80017498; // type:function size:0x40 scope:global +SetRandomNumberSeed__Q26Quazal21RandomNumberGeneratorFUi = .text:0x800174D8; // type:function size:0x48 +GetRandomNumber__Q26Quazal21RandomNumberGeneratorFUi = .text:0x80017520; // type:function size:0x178 +GetRealRandomNumber__Q26Quazal21RandomNumberGeneratorFf = .text:0x80017698; // type:function size:0x64 +__ct__Q26Quazal16RefCountedObjectFv = .text:0x800176FC; // type:function size:0x18 +__dt__Q26Quazal16RefCountedObjectFv = .text:0x80017714; // type:function size:0x48 +AcquireRef__Q26Quazal16RefCountedObjectFv = .text:0x8001775C; // type:function size:0x54 +ReleaseRef__Q26Quazal16RefCountedObjectFv = .text:0x800177B0; // type:function size:0x94 +GetRefCount__Q26Quazal16RefCountedObjectCFv = .text:0x80017844; // type:function size:0x8 +fn_8001784C = .text:0x8001784C; // type:function size:0x4C +__ct__Q26Quazal7qResultFv = .text:0x80017898; // type:function size:0x24 +__ct__Q26Quazal7qResultFRCi = .text:0x800178BC; // type:function size:0x20 +Equals__Q26Quazal7qResultCFRCi = .text:0x800178DC; // type:function size:0x18 +Equals__Q26Quazal7qResultCFRCb = .text:0x800178F4; // type:function size:0x20 +__opb__Q26Quazal7qResultCFv = .text:0x80017914; // type:function size:0x10 +__as__Q26Quazal7qResultFRCi = .text:0x80017924; // type:function size:0x20 +__as__Q26Quazal7qResultFRCQ26Quazal7qResult = .text:0x80017944; // type:function size:0x1C +Trace__Q26Quazal7qResultCFUi = .text:0x80017960; // type:function size:0x4 +__nw__Q26Quazal10RootObjectFUl = .text:0x80017964; // type:function size:0x44 +__nw__Q26Quazal10RootObjectFUlPCcUi = .text:0x800179A8; // type:function size:0x50 +__nwa__Q26Quazal10RootObjectFUl = .text:0x800179F8; // type:function size:0x44 +__nwa__Q26Quazal10RootObjectFUlPCcUi = .text:0x80017A3C; // type:function size:0x50 +__dl__Q26Quazal10RootObjectFPv = .text:0x80017A8C; // type:function size:0x38 +__dla__Q26Quazal10RootObjectFPv = .text:0x80017AC4; // type:function size:0x38 +__ct__Q26Quazal8SpinTestFUiUi = .text:0x80017AFC; // type:function size:0x90 +__dt__Q26Quazal8SpinTestFv = .text:0x80017B8C; // type:function size:0x40 +SpinOnce__Q26Quazal8SpinTestFPcUiPc = .text:0x80017BCC; // type:function size:0x98 +LeaveOnTimeout__Q26Quazal8SpinTestFv = .text:0x80017C64; // type:function size:0xC +GetRemainingTime__Q26Quazal8SpinTestFv = .text:0x80017C70; // type:function size:0x6C +__ct__Q26Quazal11StackTracerFv = .text:0x80017CDC; // type:function size:0x4C +__dt__Q26Quazal25qVectorFv = .text:0x80017D28; // type:function size:0x5C +__dt__Q211stlpmtx_std66vector>Fv = .text:0x80017D84; // type:function size:0x8C +fn_80017E10 = .text:0x80017E10; // type:function size:0x7C +fn_80017E8C = .text:0x80017E8C; // type:function size:0x64 +fn_80017EF0 = .text:0x80017EF0; // type:function size:0x60 +fn_80017F50 = .text:0x80017F50; // type:function size:0x74 +fn_80017FC4 = .text:0x80017FC4; // type:function size:0x64 +fn_80018028 = .text:0x80018028; // type:function size:0x6C +__dt__Q26Quazal11StackTracerFv = .text:0x80018094; // type:function size:0x68 +Instance__Q26Quazal11StackTracerFv = .text:0x800180FC; // type:function size:0xC +Trace__Q26Quazal11StackTracerFPCc = .text:0x80018108; // type:function size:0x4 +Trace__Q26Quazal11StackTracerFPCcPUiUi = .text:0x8001810C; // type:function size:0x4 +TraceException__Q26Quazal11StackTracerFPCcPvb = .text:0x80018110; // type:function size:0x4 +GetSourceInfoFromAddress__Q26Quazal11StackTracerFUiPc = .text:0x80018114; // type:function size:0x8 +GetFunctionInfoFromAddresses__Q26Quazal11StackTracerFUiUiPc = .text:0x8001811C; // type:function size:0x8 +AddActivity__Q26Quazal11StackTracerFRCQ26Quazal6String = .text:0x80018124; // type:function size:0xEC +fn_80018210 = .text:0x80018210; // type:function size:0x68 +__ct__Q26Quazal6StringFv = .text:0x80018278; // type:function size:0x38 +CopyString__FPPcPCc = .text:0x800182B0; // type:function size:0x70 +__ct__Q26Quazal6StringFPCc = .text:0x80018320; // type:function size:0x30 +__ct__Q26Quazal6StringFRCQ26Quazal6String = .text:0x80018350; // type:function size:0x34 +__dt__Q26Quazal6StringFv = .text:0x80018384; // type:function size:0x60 +__as__Q26Quazal6StringFPCc = .text:0x800183E4; // type:function size:0x64 +__as__Q26Quazal6StringFRCQ26Quazal6String = .text:0x80018448; // type:function size:0x64 +IsEqual__Q26Quazal6StringFPCcPCc = .text:0x800184AC; // type:function size:0x68 +__lt__Q26Quazal6StringCFRCQ26Quazal6String = .text:0x80018514; // type:function size:0xD0 +Reserve__Q26Quazal6StringFi = .text:0x800185E4; // type:function size:0x6C +GetLength__Q26Quazal6StringCFv = .text:0x80018650; // type:function size:0x1C +CreateCopy__Q26Quazal6StringCFPPc = .text:0x8001866C; // type:function size:0x10 +ReleaseCopy__Q26Quazal6StringFPc = .text:0x8001867C; // type:function size:0x10 +Format__Q26Quazal6StringFPCce = .text:0x8001868C; // type:function size:0xA8 +fn_80018734__Fc = .text:0x80018734; // type:function size:0x30 +fn_80018764__Fc = .text:0x80018764; // type:function size:0x30 +_Copy__20@unnamed@String_cpp@FPCcUiPCcUi = .text:0x80018794; // type:function size:0x74 +GetDataNodeVal__8DataNodeCFv = .text:0x80018808; // type:function size:0x8 +__pl__6QuazalFRCQ26Quazal6StringRCQ26Quazal6String = .text:0x80018810; // type:function size:0xAC +__pl__6QuazalFRCQ26Quazal6StringPCc = .text:0x800188BC; // type:function size:0xAC +__ls__6QuazalFRQ26Quazal12StringStreamRCQ26Quazal6String = .text:0x80018968; // type:function size:0x8 +Latin1ToUtf8__30@unnamed@StringConversion_cpp@FPCcPcUi = .text:0x80018970; // type:function size:0x64 +fn_800189D4 = .text:0x800189D4; // type:function size:0x88 +Char8_2T__Q26Quazal16StringConversionFPCcPcUi = .text:0x80018A5C; // type:function size:0x10 +T2Char8__Q26Quazal16StringConversionFPCcPcUi = .text:0x80018A6C; // type:function size:0x10 +Utf8ToT__Q26Quazal16StringConversionFPCcPcUi = .text:0x80018A7C; // type:function size:0x4 +TToUtf8__Q26Quazal16StringConversionFPCcPcUi = .text:0x80018A80; // type:function size:0x4 +GetTToUtf8BufferSize__Q26Quazal16StringConversionFPCc = .text:0x80018A84; // type:function size:0x28 +__ct__Q26Quazal15StringConverterFi = .text:0x80018AAC; // type:function size:0x5C +__dt__Q26Quazal15StringConverterFv = .text:0x80018B08; // type:function size:0x60 +Encode__Q26Quazal15StringConverterFPCcb = .text:0x80018B68; // type:function size:0x98 +Decode__Q26Quazal15StringConverterFPcUsb = .text:0x80018C00; // type:function size:0x54 +GetBuffer__Q26Quazal15StringConverterFv = .text:0x80018C54; // type:function size:0x8 +GetBufferSize__Q26Quazal15StringConverterFv = .text:0x80018C5C; // type:function size:0x8 +__ct__Q26Quazal12StringStreamFv = .text:0x80018C64; // type:function size:0x30 +__dt__Q26Quazal12StringStreamFv = .text:0x80018C94; // type:function size:0x54 +FreeBuffer__Q26Quazal12StringStreamFv = .text:0x80018CE8; // type:function size:0x20 +ResizeBuffer__Q26Quazal12StringStreamFUi = .text:0x80018D08; // type:function size:0x88 +TestFreeRoom__Q26Quazal12StringStreamFUi = .text:0x80018D90; // type:function size:0x3C +StreamNumber__Q26Quazal12StringStreamFUi = .text:0x80018DCC; // type:function size:0x8C +StreamNumber__Q26Quazal12StringStreamFi = .text:0x80018E58; // type:function size:0x8C +AddBaseIfRequired__Q26Quazal12StringStreamFv = .text:0x80018EE4; // type:function size:0x54 +__ls__Q26Quazal12StringStreamFPCc = .text:0x80018F38; // type:function size:0x84 +__ls__Q26Quazal12StringStreamFPCv = .text:0x80018FBC; // type:function size:0x70 +__ls__Q26Quazal12StringStreamFUx = .text:0x8001902C; // type:function size:0x94 +__ls__Q26Quazal12StringStreamFRCQ26Quazal12StringStream = .text:0x800190C0; // type:function size:0x8 +hex__6QuazalFRQ26Quazal12StringStream = .text:0x800190C8; // type:function size:0xC +dec__6QuazalFRQ26Quazal12StringStream = .text:0x800190D4; // type:function size:0xC +ProtectedGetTime__Q26Quazal11SystemClockFv = .text:0x800190E0; // type:function size:0x50 +GetTimeImpl__Q26Quazal11SystemClockFb = .text:0x80019130; // type:function size:0x280 +GetUncorrectedTime__Q26Quazal11SystemClockFv = .text:0x800193B0; // type:function size:0x34 +fn_800193E4 = .text:0x800193E4; // type:function size:0x54 +fn_80019438 = .text:0x80019438; // type:function size:0x1C +fn_80019454 = .text:0x80019454; // type:function size:0x5C +fn_800194B0 = .text:0x800194B0; // type:function size:0xC +fn_800194BC = .text:0x800194BC; // type:function size:0xC0 +SignalError__Q26Quazal11SystemErrorFPcUiUiUi = .text:0x8001957C; // type:function size:0x44 +fn_800195C0 = .text:0x800195C0; // type:function size:0x6C +fn_8001962C = .text:0x8001962C; // type:function size:0x94 +fn_800196C0 = .text:0x800196C0; // type:function size:0x48 +fn_80019708 = .text:0x80019708; // type:function size:0x2C +fn_80019734 = .text:0x80019734; // type:function size:0xB8 +fn_800197EC = .text:0x800197EC; // type:function size:0x68 +fn_80019854 = .text:0x80019854; // type:function size:0x2D4 +fn_80019B28 = .text:0x80019B28; // type:function size:0x118 +fn_80019C40 = .text:0x80019C40; // type:function size:0xEC +fn_80019D2C = .text:0x80019D2C; // type:function size:0x74 +fn_80019DA0 = .text:0x80019DA0; // type:function size:0x78 +fn_80019E18 = .text:0x80019E18; // type:function size:0x8C +fn_80019EA4 = .text:0x80019EA4; // type:function size:0x5C +fn_80019F00 = .text:0x80019F00; // type:function size:0x50 +fn_80019F50 = .text:0x80019F50; // type:function size:0x64 +fn_80019FB4 = .text:0x80019FB4; // type:function size:0x80 +fn_8001A034 = .text:0x8001A034; // type:function size:0x70 +fn_8001A0A4 = .text:0x8001A0A4; // type:function size:0x64 +fn_8001A108 = .text:0x8001A108; // type:function size:0x70 +fn_8001A178 = .text:0x8001A178; // type:function size:0x2C +fn_8001A1A4 = .text:0x8001A1A4; // type:function size:0x44 +fn_8001A1E8 = .text:0x8001A1E8; // type:function size:0x74 +fn_8001A25C = .text:0x8001A25C; // type:function size:0x70 +fn_8001A2CC = .text:0x8001A2CC; // type:function size:0x74 +GetInstanceRef__Q26Quazal18ThreadVariableListFv = .text:0x8001A340; // type:function size:0x64 +fn_8001A3A4 = .text:0x8001A3A4; // type:function size:0x80 +fn_8001A424 = .text:0x8001A424; // type:function size:0x80 +AddVariable__Q26Quazal18ThreadVariableListFPQ26Quazal18ThreadVariableRoot = .text:0x8001A4A4; // type:function size:0x5C +fn_8001A500 = .text:0x8001A500; // type:function size:0x4C +fn_8001A54C = .text:0x8001A54C; // type:function size:0x5C +fn_8001A5A8 = .text:0x8001A5A8; // type:function size:0x8C +fn_8001A634 = .text:0x8001A634; // type:function size:0x3C +fn_8001A670 = .text:0x8001A670; // type:function size:0x34 +__ct__Q26Quazal18ThreadVariableRootFv = .text:0x8001A6A4; // type:function size:0x50 +__dt__Q26Quazal18ThreadVariableRootFv = .text:0x8001A6F4; // type:function size:0x68 +GetThreadID__Q26Quazal18ThreadVariableRootFv = .text:0x8001A75C; // type:function size:0x4 +erase__Q26Quazal100qChain>FQ36Quazal100qChain>8iterator = .text:0x8001A760; // type:function size:0x84 +GetTime__Q26Quazal4TimeFv = .text:0x8001A7E4; // type:function size:0x8 +GetFrequency__Q26Quazal4TimeFPQ26Quazal4Time = .text:0x8001A7EC; // type:function size:0xC +__as__Q26Quazal4TimeFRCQ26Quazal4Time = .text:0x8001A7F8; // type:function size:0x14 +__as__Q26Quazal4TimeFUx = .text:0x8001A80C; // type:function size:0xC +__opUx__Q26Quazal4TimeFv = .text:0x8001A818; // type:function size:0x10 +__opUx__Q26Quazal4TimeCFv = .text:0x8001A828; // type:function size:0x10 +__mi__Q26Quazal4TimeCFRCQ26Quazal4Time = .text:0x8001A838; // type:function size:0x44 +__apl__Q26Quazal4TimeFi = .text:0x8001A87C; // type:function size:0x20 +__pl__Q26Quazal4TimeCFi = .text:0x8001A89C; // type:function size:0x3C +__pl__Q26Quazal4TimeCFx = .text:0x8001A8D8; // type:function size:0x14 +Multiply__Q26Quazal4TimeCFf = .text:0x8001A8EC; // type:function size:0xD0 +Divide__Q26Quazal4TimeCFf = .text:0x8001A9BC; // type:function size:0xDC +Scale__Q26Quazal4TimeCFf = .text:0x8001AA98; // type:function size:0x44 +ConvertTimeoutToDeadline__Q26Quazal4TimeFUi = .text:0x8001AADC; // type:function size:0x6C +ConvertDeadlineToTimeout__Q26Quazal4TimeFQ26Quazal4Time = .text:0x8001AB48; // type:function size:0xA8 +__ls__6QuazalFRQ26Quazal12StringStreamRCQ26Quazal4Time = .text:0x8001ABF0; // type:function size:0xC +__ct__Q26Quazal8TraceLogFv = .text:0x8001ABFC; // type:function size:0x44 +__dt__Q26Quazal8TraceLogFv = .text:0x8001AC40; // type:function size:0x58 +GetInstance__Q26Quazal8TraceLogFv = .text:0x8001AC98; // type:function size:0xC +__ct__Q36Quazal8TraceLog12ScopedIndentFUi = .text:0x8001ACA4; // type:function size:0x4C +__dt__Q36Quazal8TraceLog12ScopedIndentFv = .text:0x8001ACF0; // type:function size:0x6C +fn_8001AD5C = .text:0x8001AD5C; // type:function size:0x48 +fn_8001ADA4 = .text:0x8001ADA4; // type:function size:0x50 +fn_8001ADF4 = .text:0x8001ADF4; // type:function size:0x38 +__ct__Q26Quazal9WaterMarkFPCcbUi = .text:0x8001AE2C; // type:function size:0x78 +__dt__Q26Quazal9WaterMarkFv = .text:0x8001AEA4; // type:function size:0x60 +Reset__Q26Quazal9WaterMarkFUiUi = .text:0x8001AF04; // type:function size:0x48 +Reset__Q26Quazal9WaterMarkFv = .text:0x8001AF4C; // type:function size:0x48 +SetCurrent__Q26Quazal9WaterMarkFUi = .text:0x8001AF94; // type:function size:0x44 +Inc__Q26Quazal9WaterMarkFUi = .text:0x8001AFD8; // type:function size:0x38 +Dec__Q26Quazal9WaterMarkFUi = .text:0x8001B010; // type:function size:0x38 +GetCurrent__Q26Quazal9WaterMarkCFv = .text:0x8001B048; // type:function size:0x8 +fn_8001B050 = .text:0x8001B050; // type:function size:0x60 +fn_8001B0B0 = .text:0x8001B0B0; // type:function size:0x88 +Register__Q26Quazal9WaterMarkFPQ26Quazal9WaterMark = .text:0x8001B138; // type:function size:0x34 +Unregister__Q26Quazal9WaterMarkFPQ26Quazal9WaterMark = .text:0x8001B16C; // type:function size:0x80 +fn_8001B1EC = .text:0x8001B1EC; // type:function size:0x3C +fn_8001B228 = .text:0x8001B228; // type:function size:0x78 +fn_8001B2A0 = .text:0x8001B2A0; // type:function size:0x60 +fn_8001B300 = .text:0x8001B300; // type:function size:0x74 +fn_8001B374 = .text:0x8001B374; // type:function size:0x70 +fn_8001B3E4 = .text:0x8001B3E4; // type:function size:0x38 +fn_8001B41C = .text:0x8001B41C; // type:function size:0x6C +__ct__Q36Quazal20BerkeleySocketDriver14BerkeleySocketFv = .text:0x8001B488; // type:function size:0x50 +__ct__Q36Quazal12SocketDriver6SocketFv = .text:0x8001B4D8; // type:function size:0x10 +fn_8001B4E8 = .text:0x8001B4E8; // type:function size:0x5C +Open__Q36Quazal20BerkeleySocketDriver14BerkeleySocketFQ36Quazal12SocketDriver12_TrafficType = .text:0x8001B544; // type:function size:0xD0 +Bind__Q36Quazal20BerkeleySocketDriver14BerkeleySocketFUs = .text:0x8001B614; // type:function size:0x98 +__ct__Q234@unnamed@BerkeleySocketDriver_cpp@8SockAddrFv = .text:0x8001B6AC; // type:function size:0x48 +RecvFrom__Q36Quazal20BerkeleySocketDriver14BerkeleySocketFPUcUiPQ36Quazal12SocketDriver11InetAddressPUi = .text:0x8001B6F4; // type:function size:0xF0 +SendTo__Q36Quazal20BerkeleySocketDriver14BerkeleySocketFPUcUiRCQ36Quazal12SocketDriver11InetAddressPUi = .text:0x8001B7E4; // type:function size:0xD8 +Connect__Q36Quazal20BerkeleySocketDriver14BerkeleySocketFRCQ36Quazal12SocketDriver11InetAddress = .text:0x8001B8BC; // type:function size:0xB4 +Recv__Q36Quazal20BerkeleySocketDriver14BerkeleySocketFPUcUiPUi = .text:0x8001B970; // type:function size:0xAC +Send__Q36Quazal20BerkeleySocketDriver14BerkeleySocketFPUcUiPUi = .text:0x8001BA1C; // type:function size:0xAC +Close__Q36Quazal20BerkeleySocketDriver14BerkeleySocketFv = .text:0x8001BAC8; // type:function size:0x50 +SetMulticastAddress__Q36Quazal20BerkeleySocketDriver14BerkeleySocketFUi = .text:0x8001BB18; // type:function size:0x3C +SetAsync__Q36Quazal20BerkeleySocketDriver14BerkeleySocketFb = .text:0x8001BB54; // type:function size:0x8C +SetBroadcastMode__Q36Quazal20BerkeleySocketDriver14BerkeleySocketFb = .text:0x8001BBE0; // type:function size:0x88 +fn_8001BC68 = .text:0x8001BC68; // type:function size:0x4 +Create__Q26Quazal20BerkeleySocketDriverFv = .text:0x8001BC6C; // type:function size:0x3C +Delete__Q26Quazal20BerkeleySocketDriverFPQ36Quazal12SocketDriver6Socket = .text:0x8001BCA8; // type:function size:0x24 +Poll__Q26Quazal20BerkeleySocketDriverFPQ36Quazal12SocketDriver8PollInfoUiUi = .text:0x8001BCCC; // type:function size:0x124 +Initialize__Q26Quazal4InetFv = .text:0x8001BDF0; // type:function size:0x8 +Terminate__Q26Quazal4InetFv = .text:0x8001BDF8; // type:function size:0x8 +__ct__Q26Quazal11InetAddressFv = .text:0x8001BE00; // type:function size:0x30 +__ct__Q26Quazal11InetAddressFRCQ26Quazal11InetAddress = .text:0x8001BE30; // type:function size:0x30 +__ct__Q26Quazal11InetAddressFPCcUs = .text:0x8001BE60; // type:function size:0x58 +__dt__Q26Quazal11InetAddressFv = .text:0x8001BEB8; // type:function size:0x40 +Init__Q26Quazal11InetAddressFv = .text:0x8001BEF8; // type:function size:0x3C +String2Address__Q26Quazal11InetAddressFPCc = .text:0x8001BF34; // type:function size:0x40 +SetAddress__Q26Quazal11InetAddressFPCc = .text:0x8001BF74; // type:function size:0xE4 +SetAddress__Q26Quazal11InetAddressFUi = .text:0x8001C058; // type:function size:0x34 +SetNetworkAddress__Q26Quazal11InetAddressFUi = .text:0x8001C08C; // type:function size:0x8 +GetAddress__Q26Quazal11InetAddressCFv = .text:0x8001C094; // type:function size:0x8 +GetAddress__Q26Quazal11InetAddressCFPcUi = .text:0x8001C09C; // type:function size:0x6C +SetPortNumber__Q26Quazal11InetAddressFUs = .text:0x8001C108; // type:function size:0x34 +GetPortNumber__Q26Quazal11InetAddressCFv = .text:0x8001C13C; // type:function size:0x8 +GetKey__Q26Quazal11InetAddressCFv = .text:0x8001C144; // type:function size:0x38 +__lt__Q26Quazal11InetAddressCFRCQ26Quazal11InetAddress = .text:0x8001C17C; // type:function size:0x60 +__eq__Q26Quazal11InetAddressCFRCQ26Quazal11InetAddress = .text:0x8001C1DC; // type:function size:0x5C +__as__Q26Quazal11InetAddressFRCQ26Quazal11InetAddress = .text:0x8001C238; // type:function size:0x34 +__ct__Q26Quazal13InterfaceInfoFv = .text:0x8001C26C; // type:function size:0x48 +__dt__Q26Quazal13InterfaceInfoFv = .text:0x8001C2B4; // type:function size:0x5C +SetAddress__Q26Quazal13InterfaceInfoFUi = .text:0x8001C310; // type:function size:0x8 +SetBroadcastAddress__Q26Quazal13InterfaceInfoFUi = .text:0x8001C318; // type:function size:0x8 +SetMask__Q26Quazal13InterfaceInfoFUi = .text:0x8001C320; // type:function size:0x8 +GetAddress__Q26Quazal13InterfaceInfoFv = .text:0x8001C328; // type:function size:0x8 +GetFlags__Q26Quazal13InterfaceInfoFv = .text:0x8001C330; // type:function size:0x8 +__ct__Q26Quazal14InterfaceTableFv = .text:0x8001C338; // type:function size:0x10 +__dt__Q26Quazal14InterfaceTableFv = .text:0x8001C348; // type:function size:0x54 +cleanup__Q26Quazal14InterfaceTableFv = .text:0x8001C39C; // type:function size:0x64 +Query__Q26Quazal14InterfaceTableFv = .text:0x8001C400; // type:function size:0x17C +fn_8001C57C = .text:0x8001C57C; // type:function size:0x5C +GetNbInterface__Q26Quazal14InterfaceTableFv = .text:0x8001C5D8; // type:function size:0x8 +__vc__Q26Quazal14InterfaceTableFUi = .text:0x8001C5E0; // type:function size:0x10 +Reset__Q26Quazal19IOCompletionContextFv = .text:0x8001C5F0; // type:function size:0x2C +__ct__Q26Quazal20IOCompletionNotifierFv = .text:0x8001C61C; // type:function size:0x54 +__dt__Q26Quazal20IOCompletionNotifierFv = .text:0x8001C670; // type:function size:0x58 +CreateIOCompletionContext__Q26Quazal20IOCompletionNotifierFv = .text:0x8001C6C8; // type:function size:0xAC +fn_8001C774 = .text:0x8001C774; // type:function size:0x40 +fn_8001C7B4 = .text:0x8001C7B4; // type:function size:0x94 +fn_8001C848 = .text:0x8001C848; // type:function size:0x8 +fn_8001C850 = .text:0x8001C850; // type:function size:0x280 +fn_8001CAD0 = .text:0x8001CAD0; // type:function size:0xB4 +fn_8001CB84 = .text:0x8001CB84; // type:function size:0x90 +fn_8001CC14 = .text:0x8001CC14; // type:function size:0x84 +fn_8001CC98 = .text:0x8001CC98; // type:function size:0x78 +fn_8001CD10 = .text:0x8001CD10; // type:function size:0xFC +fn_8001CE0C = .text:0x8001CE0C; // type:function size:0x74 +fn_8001CE80 = .text:0x8001CE80; // type:function size:0x8 +fn_8001CE88 = .text:0x8001CE88; // type:function size:0x58 +fn_8001CEE0 = .text:0x8001CEE0; // type:function size:0x108 +fn_8001CFE8 = .text:0x8001CFE8; // type:function size:0x128 +fn_8001D110 = .text:0x8001D110; // type:function size:0x1C +fn_8001D12C = .text:0x8001D12C; // type:function size:0xC +__ct__Q26Quazal20BerkeleySocketDriverFv = .text:0x8001D138; // type:function size:0x3C +__ct__Q26Quazal12SocketDriverFv = .text:0x8001D174; // type:function size:0x10 +htonl__FUi = .text:0x8001D184; // type:function size:0x4 +htons__FUs = .text:0x8001D188; // type:function size:0x4 +ntohl__FUi = .text:0x8001D18C; // type:function size:0x4 +ntohs__FUs = .text:0x8001D190; // type:function size:0x4 +poll__FP8SOPollFDUii = .text:0x8001D194; // type:function size:0x80 +bind__FiPC8sockaddrUi = .text:0x8001D214; // type:function size:0x4 +connect__FiPC8sockaddrUi = .text:0x8001D218; // type:function size:0x4 +recv__FiPvUli = .text:0x8001D21C; // type:function size:0x4 +recvfrom__FiPvUliP8sockaddrPUi = .text:0x8001D220; // type:function size:0x4 +send__FiPCvUli = .text:0x8001D224; // type:function size:0x4 +sendto__FiPCvUliPC8sockaddrUi = .text:0x8001D228; // type:function size:0x4 +setsockopt__FiiiPCvUi = .text:0x8001D22C; // type:function size:0x4 +socket__Fiii = .text:0x8001D230; // type:function size:0x4 +closesocket__Fi = .text:0x8001D234; // type:function size:0x4 +InvokeCallbackOnSuccess__6QuazalFPQ26Quazal11CallContextPCQ26Quazal11UserContext = .text:0x8001D238; // type:function size:0x68 +Call__Q26Quazal12CallbackRootFv = .text:0x8001D2A0; // type:function size:0x10 +InvokeCallbackOnCompletion__6QuazalFPQ26Quazal11CallContextPCQ26Quazal11UserContext = .text:0x8001D2B0; // type:function size:0x5C +__ct__Q26Quazal11CallContextFv = .text:0x8001D30C; // type:function size:0xA8 +fn_8001D3B4 = .text:0x8001D3B4; // type:function size:0x5C +fn_8001D410 = .text:0x8001D410; // type:function size:0x8C +fn_8001D49C = .text:0x8001D49C; // type:function size:0x24 +fn_8001D4C0 = .text:0x8001D4C0; // type:function size:0x60 +__ct__Q26Quazal11qVectorFv = .text:0x8001D520; // type:function size:0x14 +__dt__Q26Quazal11CallContextFv = .text:0x8001D534; // type:function size:0x118 +GetInstance__Q26Quazal9SchedulerFv = .text:0x8001D64C; // type:function size:0x34 +fn_8001D680 = .text:0x8001D680; // type:function size:0x48 +fn_8001D6C8 = .text:0x8001D6C8; // type:function size:0x6C +fn_8001D734 = .text:0x8001D734; // type:function size:0xC +fn_8001D740 = .text:0x8001D740; // type:function size:0x44 +fn_8001D784 = .text:0x8001D784; // type:function size:0x44 +fn_8001D7C8 = .text:0x8001D7C8; // type:function size:0x4 +fn_8001D7CC = .text:0x8001D7CC; // type:function size:0xB0 +fn_8001D87C = .text:0x8001D87C; // type:function size:0x1C0 +fn_8001DA3C = .text:0x8001DA3C; // type:function size:0x28 +fn_8001DA64 = .text:0x8001DA64; // type:function size:0x40 +fn_8001DAA4 = .text:0x8001DAA4; // type:function size:0x40 +fn_8001DAE4 = .text:0x8001DAE4; // type:function size:0x10 +fn_8001DAF4 = .text:0x8001DAF4; // type:function size:0xB4 +fn_8001DBA8 = .text:0x8001DBA8; // type:function size:0x70 +fn_8001DC18 = .text:0x8001DC18; // type:function size:0x84 +fn_8001DC9C = .text:0x8001DC9C; // type:function size:0x4 +fn_8001DCA0 = .text:0x8001DCA0; // type:function size:0x8C +RegisterCompletionCallback__Q26Quazal11CallContextFPFPQ26Quazal11CallContextPCQ26Quazal11UserContext_vRCQ26Quazal11UserContextb = .text:0x8001DD2C; // type:function size:0x84 +fn_8001DDB0 = .text:0x8001DDB0; // type:function size:0x88 +fn_8001DE38 = .text:0x8001DE38; // type:function size:0x40 +RegisterCompletionCallback__Q26Quazal11CallContextFPQ26Quazal12CallbackRootbb = .text:0x8001DE78; // type:function size:0x80 +RegisterCancellationCallback__Q26Quazal11CallContextFPQ26Quazal12CallbackRoot = .text:0x8001DEF8; // type:function size:0x8 +Cancel__Q26Quazal11CallContextFQ36Quazal11CallContext6_State = .text:0x8001DF00; // type:function size:0x100 +Wait__Q26Quazal11CallContextCFUi = .text:0x8001E000; // type:function size:0x1AC +SetFlag__Q26Quazal11CallContextFUi = .text:0x8001E1AC; // type:function size:0x10 +FlagsAreValid__Q26Quazal11CallContextCFv = .text:0x8001E1BC; // type:function size:0x58 +ClearFlag__Q26Quazal11CallContextFUi = .text:0x8001E214; // type:function size:0x10 +FlagIsSet__Q26Quazal11CallContextCFUi = .text:0x8001E224; // type:function size:0x18 +Trace__Q26Quazal11CallContextFUi = .text:0x8001E23C; // type:function size:0x4 +fn_8001E240 = .text:0x8001E240; // type:function size:0x6C +__ct__Q26Quazal19CallContextRegisterFv = .text:0x8001E2AC; // type:function size:0x78 +fn_8001E324 = .text:0x8001E324; // type:function size:0x5C +fn_8001E380 = .text:0x8001E380; // type:function size:0x50 +fn_8001E3D0 = .text:0x8001E3D0; // type:function size:0x70 +__dt__Q26Quazal19CallContextRegisterFv = .text:0x8001E440; // type:function size:0xF0 +fn_8001E530 = .text:0x8001E530; // type:function size:0x24 +fn_8001E554 = .text:0x8001E554; // type:function size:0x24 +fn_8001E578 = .text:0x8001E578; // type:function size:0xE8 +fn_8001E660 = .text:0x8001E660; // type:function size:0x74 +fn_8001E6D4 = .text:0x8001E6D4; // type:function size:0x58 +fn_8001E72C = .text:0x8001E72C; // type:function size:0x4 +fn_8001E730 = .text:0x8001E730; // type:function size:0xD8 +fn_8001E808 = .text:0x8001E808; // type:function size:0x84 +fn_8001E88C = .text:0x8001E88C; // type:function size:0x60 +fn_8001E8EC = .text:0x8001E8EC; // type:function size:0x4C +fn_8001E938 = .text:0x8001E938; // type:function size:0x90 +fn_8001E9C8 = .text:0x8001E9C8; // type:function size:0x48 +fn_8001EA10 = .text:0x8001EA10; // type:function size:0x50 +fn_8001EA60 = .text:0x8001EA60; // type:function size:0xCC +fn_8001EB2C = .text:0x8001EB2C; // type:function size:0x5C +fn_8001EB88 = .text:0x8001EB88; // type:function size:0x94 +fn_8001EC1C = .text:0x8001EC1C; // type:function size:0x4C +fn_8001EC68 = .text:0x8001EC68; // type:function size:0x64 +fn_8001ECCC = .text:0x8001ECCC; // type:function size:0x2D4 +fn_8001EFA0 = .text:0x8001EFA0; // type:function size:0xC +fn_8001EFAC = .text:0x8001EFAC; // type:function size:0x2C +fn_8001EFD8 = .text:0x8001EFD8; // type:function size:0x10 +DecoratedExecute__Q26Quazal3JobFv = .text:0x8001EFE8; // type:function size:0x10 +fn_8001EFF8 = .text:0x8001EFF8; // type:function size:0x118 +fn_8001F110 = .text:0x8001F110; // type:function size:0xEC +fn_8001F1FC = .text:0x8001F1FC; // type:function size:0x74 +fn_8001F270 = .text:0x8001F270; // type:function size:0x1DC +fn_8001F44C = .text:0x8001F44C; // type:function size:0x144 +fn_8001F590 = .text:0x8001F590; // type:function size:0x7C +fn_8001F60C = .text:0x8001F60C; // type:function size:0x4 +fn_8001F610 = .text:0x8001F610; // type:function size:0x4 +fn_8001F614 = .text:0x8001F614; // type:function size:0x4C +fn_8001F660 = .text:0x8001F660; // type:function size:0x70 +fn_8001F6D0 = .text:0x8001F6D0; // type:function size:0xB4 +fn_8001F784 = .text:0x8001F784; // type:function size:0x9C +fn_8001F820 = .text:0x8001F820; // type:function size:0x54 +fn_8001F874 = .text:0x8001F874; // type:function size:0x54 +fn_8001F8C8 = .text:0x8001F8C8; // type:function size:0x5C +fn_8001F924 = .text:0x8001F924; // type:function size:0x44 +fn_8001F968 = .text:0x8001F968; // type:function size:0x48 +fn_8001F9B0 = .text:0x8001F9B0; // type:function size:0x38 +fn_8001F9E8 = .text:0x8001F9E8; // type:function size:0x58 +fn_8001FA40 = .text:0x8001FA40; // type:function size:0x58 +fn_8001FA98 = .text:0x8001FA98; // type:function size:0x68 +fn_8001FB00 = .text:0x8001FB00; // type:function size:0x20 +fn_8001FB20 = .text:0x8001FB20; // type:function size:0x88 +fn_8001FBA8 = .text:0x8001FBA8; // type:function size:0x20 +fn_8001FBC8 = .text:0x8001FBC8; // type:function size:0x50 +fn_8001FC18 = .text:0x8001FC18; // type:function size:0x90 +fn_8001FCA8 = .text:0x8001FCA8; // type:function size:0x10 +fn_8001FCB8 = .text:0x8001FCB8; // type:function size:0x38 +fn_8001FCF0 = .text:0x8001FCF0; // type:function size:0x40 +fn_8001FD30 = .text:0x8001FD30; // type:function size:0x20 +fn_8001FD50 = .text:0x8001FD50; // type:function size:0x54 +fn_8001FDA4 = .text:0x8001FDA4; // type:function size:0x7C +fn_8001FE20 = .text:0x8001FE20; // type:function size:0x54 +fn_8001FE74 = .text:0x8001FE74; // type:function size:0x4C +__ct__Q26Quazal3JobFRCQ26Quazal11DebugString = .text:0x8001FEC0; // type:function size:0x7C +__dt__Q26Quazal3JobFv = .text:0x8001FF3C; // type:function size:0x58 +fn_8001FF94 = .text:0x8001FF94; // type:function size:0x70 +SetDefaultPostExecutionState__Q26Quazal3JobFv = .text:0x80020004; // type:function size:0x8 +GetTraceInfo__Q26Quazal3JobCFv = .text:0x8002000C; // type:function size:0xC +AddActivity__Q26Quazal3JobFPCc = .text:0x80020018; // type:function size:0xF0 +fn_80020108 = .text:0x80020108; // type:function size:0x18C +SetState__Q26Quazal3JobFQ36Quazal3Job5State = .text:0x80020294; // type:function size:0x68 +Resume__Q26Quazal3JobFv = .text:0x800202FC; // type:function size:0x8 +SetToWaiting__Q26Quazal3JobFi = .text:0x80020304; // type:function size:0x40 +SetToSuspended__Q26Quazal3JobFv = .text:0x80020344; // type:function size:0x8 +SetToReady__Q26Quazal3JobFv = .text:0x8002034C; // type:function size:0x8 +SetToRunning__Q26Quazal3JobFv = .text:0x80020354; // type:function size:0x8 +SetToComplete__Q26Quazal3JobFv = .text:0x8002035C; // type:function size:0x8 +SetToCancel__Q26Quazal3JobFv = .text:0x80020364; // type:function size:0x8 +SetToInitial__Q26Quazal3JobFv = .text:0x8002036C; // type:function size:0x8 +ValidateTransition__Q26Quazal3JobFQ36Quazal3Job5StateQ36Quazal3Job5State = .text:0x80020374; // type:function size:0x100 +fn_80020474 = .text:0x80020474; // type:function size:0x38 +fn_800204AC = .text:0x800204AC; // type:function size:0x24 +fn_800204D0 = .text:0x800204D0; // type:function size:0x84 +fn_80020554 = .text:0x80020554; // type:function size:0x38 +fn_8002058C = .text:0x8002058C; // type:function size:0x5C +fn_800205E8 = .text:0x800205E8; // type:function size:0x58 +fn_80020640 = .text:0x80020640; // type:function size:0x68 +fn_800206A8 = .text:0x800206A8; // type:function size:0x14C +fn_800207F4 = .text:0x800207F4; // type:function size:0x30 +fn_80020824 = .text:0x80020824; // type:function size:0x100 +fn_80020924 = .text:0x80020924; // type:function size:0x38 +__ct__Q26Quazal9OperationFUi = .text:0x8002095C; // type:function size:0x60 +__ct__Q36Quazal12StateMachine6QEventFv = .text:0x800209BC; // type:function size:0x18 +fn_800209D4 = .text:0x800209D4; // type:function size:0x8 +fn_800209DC = .text:0x800209DC; // type:function size:0xC +fn_800209E8 = .text:0x800209E8; // type:function size:0x88 +fn_80020A70 = .text:0x80020A70; // type:function size:0x18 +fn_80020A88 = .text:0x80020A88; // type:function size:0x30 +fn_80020AB8 = .text:0x80020AB8; // type:function size:0x38 +fn_80020AF0 = .text:0x80020AF0; // type:function size:0x68 +fn_80020B58 = .text:0x80020B58; // type:function size:0x20 +fn_80020B78 = .text:0x80020B78; // type:function size:0xC4 +fn_80020C3C = .text:0x80020C3C; // type:function size:0xA4 +fn_80020CE0 = .text:0x80020CE0; // type:function size:0x3C +fn_80020D1C = .text:0x80020D1C; // type:function size:0x34 +fn_80020D50 = .text:0x80020D50; // type:function size:0x84 +fn_80020DD4 = .text:0x80020DD4; // type:function size:0x68 +fn_80020E3C = .text:0x80020E3C; // type:function size:0x50 +fn_80020E8C = .text:0x80020E8C; // type:function size:0x34 +__ct__Q26Quazal11PeriodicJobFRCQ26Quazal11DebugString = .text:0x80020EC0; // type:function size:0x50 +fn_80020F10 = .text:0x80020F10; // type:function size:0x14 +fn_80020F24 = .text:0x80020F24; // type:function size:0x10 +fn_80020F34 = .text:0x80020F34; // type:function size:0x20 +fn_80020F54 = .text:0x80020F54; // type:function size:0x10 +fn_80020F64 = .text:0x80020F64; // type:function size:0x40 +fn_80020FA4 = .text:0x80020FA4; // type:function size:0xB4 +fn_80021058 = .text:0x80021058; // type:function size:0x100 +__ct__Q26Quazal24PseudoGlobalVariableRootFv = .text:0x80021158; // type:function size:0x18 +fn_80021170 = .text:0x80021170; // type:function size:0x40 +fn_800211B0 = .text:0x800211B0; // type:function size:0x48 +fn_800211F8 = .text:0x800211F8; // type:function size:0x58 +fn_80021250 = .text:0x80021250; // type:function size:0x58 +fn_800212A8 = .text:0x800212A8; // type:function size:0x4C +fn_800212F4 = .text:0x800212F4; // type:function size:0x14 +fn_80021308 = .text:0x80021308; // type:function size:0x8 +fn_80021310 = .text:0x80021310; // type:function size:0x8 +fn_80021318 = .text:0x80021318; // type:function size:0x1C4 +fn_800214DC = .text:0x800214DC; // type:function size:0x50 +fn_8002152C = .text:0x8002152C; // type:function size:0x74 +fn_800215A0 = .text:0x800215A0; // type:function size:0x70 +fn_80021610 = .text:0x80021610; // type:function size:0x44 +fn_80021654 = .text:0x80021654; // type:function size:0x144 +fn_80021798 = .text:0x80021798; // type:function size:0x58 +fn_800217F0 = .text:0x800217F0; // type:function size:0xC +fn_800217FC = .text:0x800217FC; // type:function size:0x120 +fn_8002191C = .text:0x8002191C; // type:function size:0x44 +fn_80021960 = .text:0x80021960; // type:function size:0x48 +fn_800219A8 = .text:0x800219A8; // type:function size:0x4C +fn_800219F4 = .text:0x800219F4; // type:function size:0x19C +fn_80021B90 = .text:0x80021B90; // type:function size:0x3C +fn_80021BCC = .text:0x80021BCC; // type:function size:0x34 +fn_80021C00 = .text:0x80021C00; // type:function size:0x1D0 +fn_80021DD0 = .text:0x80021DD0; // type:function size:0xA0 +fn_80021E70 = .text:0x80021E70; // type:function size:0x58 +fn_80021EC8 = .text:0x80021EC8; // type:function size:0x40 +fn_80021F08 = .text:0x80021F08; // type:function size:0x40 +fn_80021F48 = .text:0x80021F48; // type:function size:0x90 +fn_80021FD8 = .text:0x80021FD8; // type:function size:0x1E4 +fn_800221BC = .text:0x800221BC; // type:function size:0x44 +fn_80022200 = .text:0x80022200; // type:function size:0x6C +fn_8002226C = .text:0x8002226C; // type:function size:0x128 +__dt__Q36Quazal13ProfilingUnit5ScopeFv = .text:0x80022394; // type:function size:0x6C +fn_80022400 = .text:0x80022400; // type:function size:0x64 +__ct__Q36Quazal13ProfilingUnit5ScopeFRQ26Quazal13ProfilingUnit = .text:0x80022464; // type:function size:0x4C +fn_800224B0 = .text:0x800224B0; // type:function size:0xA0 +fn_80022550 = .text:0x80022550; // type:function size:0xE4 +fn_80022634 = .text:0x80022634; // type:function size:0x3C +fn_80022670 = .text:0x80022670; // type:function size:0xD4 +fn_80022744 = .text:0x80022744; // type:function size:0x90 +fn_800227D4 = .text:0x800227D4; // type:function size:0x60 +fn_80022834 = .text:0x80022834; // type:function size:0x88 +fn_800228BC = .text:0x800228BC; // type:function size:0xA8 +fn_80022964 = .text:0x80022964; // type:function size:0x14 +fn_80022978 = .text:0x80022978; // type:function size:0xA4 +fn_80022A1C = .text:0x80022A1C; // type:function size:0x4C +fn_80022A68 = .text:0x80022A68; // type:function size:0x2C +fn_80022A94 = .text:0x80022A94; // type:function size:0x80 +fn_80022B14 = .text:0x80022B14; // type:function size:0x80 +fn_80022B94 = .text:0x80022B94; // type:function size:0x84 +fn_80022C18 = .text:0x80022C18; // type:function size:0x60 +fn_80022C78 = .text:0x80022C78; // type:function size:0x64 +fn_80022CDC = .text:0x80022CDC; // type:function size:0xC +fn_80022CE8 = .text:0x80022CE8; // type:function size:0x10 +fn_80022CF8 = .text:0x80022CF8; // type:function size:0x100 +fn_80022DF8 = .text:0x80022DF8; // type:function size:0x74 +fn_80022E6C = .text:0x80022E6C; // type:function size:0x44 +fn_80022EB0 = .text:0x80022EB0; // type:function size:0x4C +fn_80022EFC = .text:0x80022EFC; // type:function size:0x4C +fn_80022F48 = .text:0x80022F48; // type:function size:0x98 +fn_80022FE0 = .text:0x80022FE0; // type:function size:0x5C +fn_8002303C = .text:0x8002303C; // type:function size:0x50 +fn_8002308C = .text:0x8002308C; // type:function size:0x64 +fn_800230F0 = .text:0x800230F0; // type:function size:0x2C +fn_8002311C = .text:0x8002311C; // type:function size:0x70 +fn_8002318C = .text:0x8002318C; // type:function size:0x5C +fn_800231E8 = .text:0x800231E8; // type:function size:0x60 +fn_80023248 = .text:0x80023248; // type:function size:0x84 +fn_800232CC = .text:0x800232CC; // type:function size:0xB4 +fn_80023380 = .text:0x80023380; // type:function size:0x40 +fn_800233C0 = .text:0x800233C0; // type:function size:0x70 +fn_80023430 = .text:0x80023430; // type:function size:0x30 +fn_80023460 = .text:0x80023460; // type:function size:0x30 +fn_80023490 = .text:0x80023490; // type:function size:0x70 +fn_80023500 = .text:0x80023500; // type:function size:0x78 +fn_80023578 = .text:0x80023578; // type:function size:0x88 +fn_80023600 = .text:0x80023600; // type:function size:0x58 +fn_80023658 = .text:0x80023658; // type:function size:0x34 +fn_8002368C = .text:0x8002368C; // type:function size:0x54 +fn_800236E0 = .text:0x800236E0; // type:function size:0xB8 +fn_80023798 = .text:0x80023798; // type:function size:0x38 +fn_800237D0 = .text:0x800237D0; // type:function size:0x34 +fn_80023804 = .text:0x80023804; // type:function size:0x34 +fn_80023838 = .text:0x80023838; // type:function size:0x50 +fn_80023888 = .text:0x80023888; // type:function size:0x50 +fn_800238D8 = .text:0x800238D8; // type:function size:0x2D4 +fn_80023BAC = .text:0x80023BAC; // type:function size:0x70 +fn_80023C1C = .text:0x80023C1C; // type:function size:0x70 +fn_80023C8C = .text:0x80023C8C; // type:function size:0xCC +fn_80023D58 = .text:0x80023D58; // type:function size:0x50 +fn_80023DA8 = .text:0x80023DA8; // type:function size:0x70 +fn_80023E18 = .text:0x80023E18; // type:function size:0x74 +fn_80023E8C = .text:0x80023E8C; // type:function size:0x74 +fn_80023F00 = .text:0x80023F00; // type:function size:0x3C +fn_80023F3C = .text:0x80023F3C; // type:function size:0x118 +fn_80024054 = .text:0x80024054; // type:function size:0xEC +fn_80024140 = .text:0x80024140; // type:function size:0x6C +fn_800241AC = .text:0x800241AC; // type:function size:0x10 +fn_800241BC = .text:0x800241BC; // type:function size:0x40 +__ct__Q26Quazal22SingleThreadCallPolicyFv = .text:0x800241FC; // type:function size:0x54 +__ct__Q26Quazal10CallPolicyFv = .text:0x80024250; // type:function size:0x10 +fn_80024260 = .text:0x80024260; // type:function size:0x8 +fn_80024268 = .text:0x80024268; // type:function size:0x48 +fn_800242B0 = .text:0x800242B0; // type:function size:0x24 +fn_800242D4 = .text:0x800242D4; // type:function size:0x3C +__ct__Q26Quazal12StateMachineFMQ26Quazal12StateMachineFPCvPvRCQ36Quazal12StateMachine6QEvent_v = .text:0x80024310; // type:function size:0x44 +fn_80024354 = .text:0x80024354; // type:function size:0x40 +fn_80024394 = .text:0x80024394; // type:function size:0x20 +fn_800243B4 = .text:0x800243B4; // type:function size:0xF8 +__ct__Q36Quazal12StateMachine12QSimpleEventFUs = .text:0x800244AC; // type:function size:0x4C +fn_800244F8 = .text:0x800244F8; // type:function size:0x80 +fn_80024578 = .text:0x80024578; // type:function size:0x1E0 +fn_80024758 = .text:0x80024758; // type:function size:0xAC +fn_80024804 = .text:0x80024804; // type:function size:0x8D0 +GetSignal__Q36Quazal12StateMachine12QSimpleEventCFv = .text:0x800250D4; // type:function size:0x8 +__ct__Q26Quazal15StepSequenceJobFRCQ26Quazal11DebugString = .text:0x800250DC; // type:function size:0x58 +fn_80025134 = .text:0x80025134; // type:function size:0x28 +fn_8002515C = .text:0x8002515C; // type:function size:0x58 +fn_800251B4 = .text:0x800251B4; // type:function size:0x88 +fn_8002523C = .text:0x8002523C; // type:function size:0x70 +__ct__Q26Quazal12CallbackRootFv = .text:0x800252AC; // type:function size:0x10 +fn_800252BC = .text:0x800252BC; // type:function size:0xA8 +fn_80025364 = .text:0x80025364; // type:function size:0x54 +fn_800253B8 = .text:0x800253B8; // type:function size:0x64 +fn_8002541C = .text:0x8002541C; // type:function size:0x4 +fn_80025420 = .text:0x80025420; // type:function size:0x4C +fn_8002546C = .text:0x8002546C; // type:function size:0x10 +fn_8002547C = .text:0x8002547C; // type:function size:0x68 +fn_800254E4 = .text:0x800254E4; // type:function size:0x4C +__ct__Q26Quazal15SystemComponentFRCQ26Quazal6String = .text:0x80025530; // type:function size:0x68 +__dt__Q26Quazal15SystemComponentFv = .text:0x80025598; // type:function size:0x7C +SetName__Q26Quazal15SystemComponentFRCQ26Quazal6String = .text:0x80025614; // type:function size:0x8 +SetState__Q26Quazal15SystemComponentFQ36Quazal15SystemComponent6_Stateb = .text:0x8002561C; // type:function size:0x7C +SetParent__Q26Quazal15SystemComponentFPQ26Quazal15SystemComponent = .text:0x80025698; // type:function size:0x24 +IncrementInUseCount__Q26Quazal15SystemComponentFPCc = .text:0x800256BC; // type:function size:0x74 +DecrementInUseCount__Q26Quazal15SystemComponentFPCc = .text:0x80025730; // type:function size:0x38 +ValidTransition__Q26Quazal15SystemComponentFQ36Quazal15SystemComponent6_State = .text:0x80025768; // type:function size:0x160 +UseIsAllowed__Q26Quazal15SystemComponentFv = .text:0x800258C8; // type:function size:0x20 +Trace__Q26Quazal15SystemComponentCFUib = .text:0x800258E8; // type:function size:0x6C +Initialize__Q26Quazal15SystemComponentFv = .text:0x80025954; // type:function size:0x118 +Terminate__Q26Quazal15SystemComponentFv = .text:0x80025A6C; // type:function size:0x1C0 +__ct__Q36Quazal15SystemComponent3UseFPQ26Quazal15SystemComponentPCc = .text:0x80025C2C; // type:function size:0x48 +__dt__Q36Quazal15SystemComponent3UseFv = .text:0x80025C74; // type:function size:0x68 +WaitForTerminatedState__Q26Quazal15SystemComponentFUi = .text:0x80025CDC; // type:function size:0x224 +fn_80025F00 = .text:0x80025F00; // type:function size:0xC +fn_80025F0C = .text:0x80025F0C; // type:function size:0x18 +__ct__Q26Quazal20SystemComponentGroupFRCQ26Quazal6String = .text:0x80025F24; // type:function size:0x44 +__dt__Q26Quazal20SystemComponentGroupFv = .text:0x80025F68; // type:function size:0x78 +TraceImpl__Q26Quazal20SystemComponentGroupCFUi = .text:0x80025FE0; // type:function size:0x70 +TestState__Q26Quazal20SystemComponentGroupFv = .text:0x80026050; // type:function size:0x3C +GetComponentsStates__Q26Quazal20SystemComponentGroupCFv = .text:0x8002608C; // type:function size:0x64 +GetComponentsState__Q26Quazal20SystemComponentGroupCFv = .text:0x800260F0; // type:function size:0x48 +ApplyOwnUse__Q26Quazal20SystemComponentGroupFQ36Quazal15SystemComponent6_State = .text:0x80026138; // type:function size:0x38 +ComputeGroupState__Q26Quazal20SystemComponentGroupFUi = .text:0x80026170; // type:function size:0x80 +BeginInitialization__Q26Quazal20SystemComponentGroupFv = .text:0x800261F0; // type:function size:0x4C +EndInitialization__Q26Quazal20SystemComponentGroupFv = .text:0x8002623C; // type:function size:0x4C +BeginTermination__Q26Quazal20SystemComponentGroupFv = .text:0x80026288; // type:function size:0x4C +EndTermination__Q26Quazal20SystemComponentGroupFv = .text:0x800262D4; // type:function size:0x4C +DoWork__Q26Quazal20SystemComponentGroupFv = .text:0x80026320; // type:function size:0xF4 +RegisterComponent__Q26Quazal20SystemComponentGroupFPQ26Quazal15SystemComponent = .text:0x80026414; // type:function size:0x78 +UnregisterComponent__Q26Quazal20SystemComponentGroupFPQ26Quazal15SystemComponent = .text:0x8002648C; // type:function size:0x90 +fn_8002651C = .text:0x8002651C; // type:function size:0x3C +UnregisterAllComponents__Q26Quazal20SystemComponentGroupFv = .text:0x80026558; // type:function size:0x54 +fn_800265AC = .text:0x800265AC; // type:function size:0xC +fn_800265B8 = .text:0x800265B8; // type:function size:0x2C +__ct__Q26Quazal16SystemComponentsFv = .text:0x800265E4; // type:function size:0xE0 +__dt__Q26Quazal16SystemComponentsFv = .text:0x800266C4; // type:function size:0x58 +GetList__Q26Quazal13SystemSettingFv = .text:0x8002671C; // type:function size:0x64 +fn_80026780 = .text:0x80026780; // type:function size:0x74 +fn_800267F4 = .text:0x800267F4; // type:function size:0x70 +__ct__Q26Quazal13SystemSettingFRCQ26Quazal6StringUi = .text:0x80026864; // type:function size:0x64 +__dt__Q26Quazal13SystemSettingFv = .text:0x800268C8; // type:function size:0xA8 +fn_80026970 = .text:0x80026970; // type:function size:0x3C +__ct__Q26Quazal11TimedSignalFv = .text:0x800269AC; // type:function size:0x78 +__dt__Q26Quazal11TimedSignalFv = .text:0x80026A24; // type:function size:0x5C +SetOn__Q26Quazal11TimedSignalFi = .text:0x80026A80; // type:function size:0x8 +SetPulse__Q26Quazal11TimedSignalFi = .text:0x80026A88; // type:function size:0x8 +IsSignaled__Q26Quazal11TimedSignalFv = .text:0x80026A90; // type:function size:0x7C +Reset__Q26Quazal11TimedSignalFv = .text:0x80026B0C; // type:function size:0x58 +IsDeadline__Q26Quazal11TimedSignalFv = .text:0x80026B64; // type:function size:0x60 +SetSignal__Q26Quazal11TimedSignalFiQ36Quazal11TimedSignal6Signal = .text:0x80026BC4; // type:function size:0x58 +__ct__Q26Quazal13WorkerThreadsFv = .text:0x80026C1C; // type:function size:0x54 +__dt__Q26Quazal61qVector>Fv = .text:0x80026C70; // type:function size:0x5C +__dt__Q26Quazal13WorkerThreadsFv = .text:0x80026CCC; // type:function size:0x78 +fn_80026D44 = .text:0x80026D44; // type:function size:0x12C +fn_80026E70 = .text:0x80026E70; // type:function size:0x7C +fn_80026EEC = .text:0x80026EEC; // type:function size:0x28 +fn_80026F14 = .text:0x80026F14; // type:function size:0x60 +Stop__Q26Quazal13WorkerThreadsFv = .text:0x80026F74; // type:function size:0x100 +fn_80027074 = .text:0x80027074; // type:function size:0x58 +fn_800270CC = .text:0x800270CC; // type:function size:0x8 +fn_800270D4 = .text:0x800270D4; // type:function size:0x70 +fn_80027144 = .text:0x80027144; // type:function size:0x64 +fn_800271A8 = .text:0x800271A8; // type:function size:0x104 +__ct__Q26Quazal7qBufferFUiUi = .text:0x800272AC; // type:function size:0x7C +__ct__Q26Quazal7qBufferFRCQ26Quazal7qBuffer = .text:0x80027328; // type:function size:0x80 +__dt__Q26Quazal7qBufferFv = .text:0x800273A8; // type:function size:0x78 +initialize__Q26Quazal7qBufferFUi = .text:0x80027420; // type:function size:0x64 +fn_80027484 = .text:0x80027484; // type:function size:0x18 +resize__Q26Quazal7qBufferFUiPCUcUi = .text:0x8002749C; // type:function size:0xA0 +push_back__Q26Quazal7qBufferFPCUcUi = .text:0x8002753C; // type:function size:0x94 +copy__Q26Quazal7qBufferCFRCQ36Quazal7qBuffer8iteratorUiPUc = .text:0x800275D0; // type:function size:0xC +__as__Q26Quazal7qBufferFRCQ26Quazal7qBuffer = .text:0x800275DC; // type:function size:0x58 +fn_80027634 = .text:0x80027634; // type:function size:0x18 +fn_8002764C = .text:0x8002764C; // type:function size:0x48 +__ct__Q26Quazal12HMACChecksumFv = .text:0x80027694; // type:function size:0x44 +__dt__Q26Quazal12HMACChecksumFv = .text:0x800276D8; // type:function size:0x58 +KeyHasChanged__Q26Quazal12HMACChecksumFv = .text:0x80027730; // type:function size:0xE8 +ComputeChecksum__Q26Quazal12HMACChecksumFRCQ26Quazal6BufferPQ26Quazal6Buffer = .text:0x80027818; // type:function size:0xC4 +GetChecksumLength__Q26Quazal12HMACChecksumFv = .text:0x800278DC; // type:function size:0x8 +__ct__Q26Quazal17ChecksumAlgorithmFv = .text:0x800278E4; // type:function size:0x44 +__ct__Q26Quazal12PluginObjectFv = .text:0x80027928; // type:function size:0x18 +__dt__Q26Quazal17ChecksumAlgorithmFv = .text:0x80027940; // type:function size:0x40 +AppendChecksum__Q26Quazal17ChecksumAlgorithmFPQ26Quazal6Buffer = .text:0x80027980; // type:function size:0x11C +RemoveChecksum__Q26Quazal17ChecksumAlgorithmFPQ26Quazal6Buffer = .text:0x80027A9C; // type:function size:0x1A0 +CompressChecksum__Q26Quazal17ChecksumAlgorithmFPQ26Quazal6Buffer = .text:0x80027C3C; // type:function size:0x94 +DeriveKey__Q26Quazal17ChecksumAlgorithmFRCQ26Quazal6BufferUi = .text:0x80027CD0; // type:function size:0xE4 +DeriveKey__Q26Quazal17ChecksumAlgorithmFPCcUi = .text:0x80027DB4; // type:function size:0x84 +DeriveKey__Q26Quazal17ChecksumAlgorithmFPQ26Quazal11CallContextPQ26Quazal17ChecksumAlgorithmRCQ26Quazal6BufferUiPQ26Quazal3KeyPQ26Quazal8KeyCache = .text:0x80027E38; // type:function size:0xF4 +DeriveKey__Q26Quazal17ChecksumAlgorithmFPQ26Quazal11CallContextPQ26Quazal17ChecksumAlgorithmPCcUiPQ26Quazal3KeyPQ26Quazal8KeyCache = .text:0x80027F2C; // type:function size:0x9C +__ct__Q26Quazal12JobDeriveKeyFUiPQ26Quazal17ChecksumAlgorithmPCQ26Quazal6BufferUiPQ26Quazal3Key = .text:0x80027FC8; // type:function size:0xA8 +__dt__Q26Quazal12JobDeriveKeyFv = .text:0x80028070; // type:function size:0xA4 +Execute__Q26Quazal12JobDeriveKeyFv = .text:0x80028114; // type:function size:0x1A8 +fn_800282BC = .text:0x800282BC; // type:function size:0x3C +fn_800282F8 = .text:0x800282F8; // type:function size:0xA0 +fn_80028398 = .text:0x80028398; // type:function size:0xB0 +fn_80028448 = .text:0x80028448; // type:function size:0x7C +fn_800284C4 = .text:0x800284C4; // type:function size:0xB4 +fn_80028578 = .text:0x80028578; // type:function size:0x5C +fn_800285D4 = .text:0x800285D4; // type:function size:0x40 +fn_80028614 = .text:0x80028614; // type:function size:0xB8 +fn_800286CC = .text:0x800286CC; // type:function size:0x5C +fn_80028728 = .text:0x80028728; // type:function size:0x40 +fn_80028768 = .text:0x80028768; // type:function size:0x2D4 +fn_80028A3C = .text:0x80028A3C; // type:function size:0x2D4 +fn_80028D10 = .text:0x80028D10; // type:function size:0x118 +fn_80028E28 = .text:0x80028E28; // type:function size:0xEC +fn_80028F14 = .text:0x80028F14; // type:function size:0x74 +fn_80028F88 = .text:0x80028F88; // type:function size:0x40 +fn_80028FC8 = .text:0x80028FC8; // type:function size:0x118 +fn_800290E0 = .text:0x800290E0; // type:function size:0xEC +fn_800291CC = .text:0x800291CC; // type:function size:0x74 +fn_80029240 = .text:0x80029240; // type:function size:0x40 +__ct__Q26Quazal22KeyedChecksumAlgorithmFUiUi = .text:0x80029280; // type:function size:0x5C +__dt__Q26Quazal22KeyedChecksumAlgorithmFv = .text:0x800292DC; // type:function size:0x68 +SetKey__Q26Quazal22KeyedChecksumAlgorithmFRCQ26Quazal3Key = .text:0x80029344; // type:function size:0x88 +IsReady__Q26Quazal22KeyedChecksumAlgorithmCFv = .text:0x800293CC; // type:function size:0x64 +__ct__Q26Quazal3MD5Fv = .text:0x80029430; // type:function size:0x30 +update__Q26Quazal3MD5FPCUcUi = .text:0x80029460; // type:function size:0xE8 +finalize__Q26Quazal3MD5Fv = .text:0x80029548; // type:function size:0xA4 +init__Q26Quazal3MD5Fv = .text:0x800295EC; // type:function size:0x44 +transform__Q26Quazal3MD5FPCUc = .text:0x80029630; // type:function size:0x9A4 +encode__Q26Quazal3MD5FPUcPUiUi = .text:0x80029FD4; // type:function size:0x5C +decode__Q26Quazal3MD5FPUiPCUcUi = .text:0x8002A030; // type:function size:0x50 +FF__Q26Quazal3MD5FRUiUiUiUiUiUiUi = .text:0x8002A080; // type:function size:0x2C +GG__Q26Quazal3MD5FRUiUiUiUiUiUiUi = .text:0x8002A0AC; // type:function size:0x2C +HH__Q26Quazal3MD5FRUiUiUiUiUiUiUi = .text:0x8002A0D8; // type:function size:0x28 +II__Q26Quazal3MD5FRUiUiUiUiUiUiUi = .text:0x8002A100; // type:function size:0x28 +__ct__Q26Quazal11MD5ChecksumFv = .text:0x8002A128; // type:function size:0x3C +__dt__Q26Quazal11MD5ChecksumFv = .text:0x8002A164; // type:function size:0x58 +ComputeChecksum__Q26Quazal11MD5ChecksumFRCQ26Quazal6BufferPQ26Quazal6Buffer = .text:0x8002A1BC; // type:function size:0x80 +GetChecksumLength__Q26Quazal11MD5ChecksumFv = .text:0x8002A23C; // type:function size:0x8 +__ct__Q26Quazal20CompressionAlgorithmFv = .text:0x8002A244; // type:function size:0x84 +__dt__Q26Quazal20CompressionAlgorithmFv = .text:0x8002A2C8; // type:function size:0x74 +Compress__Q26Quazal20CompressionAlgorithmFRCQ26Quazal6BufferPQ26Quazal6Buffer = .text:0x8002A33C; // type:function size:0xB4 +Decompress__Q26Quazal20CompressionAlgorithmFPQ26Quazal6Buffer = .text:0x8002A3F0; // type:function size:0xAC +QuazalCZlibAlloc = .text:0x8002A49C; // type:function size:0xC +QuazalCZlibFree = .text:0x8002A4A8; // type:function size:0x8 +__ct__Q26Quazal15ZLibCompressionFv = .text:0x8002A4B0; // type:function size:0xC8 +__dt__Q26Quazal15ZLibCompressionFv = .text:0x8002A578; // type:function size:0x90 +CompressImpl__Q26Quazal15ZLibCompressionFRCQ26Quazal6BufferPQ26Quazal6Buffer = .text:0x8002A608; // type:function size:0x240 +DecompressImpl__Q26Quazal15ZLibCompressionFRCQ26Quazal6BufferPQ26Quazal6Buffer = .text:0x8002A848; // type:function size:0x1AC +__ct__Q26Quazal9BitStreamFv = .text:0x8002A9F4; // type:function size:0x5C +__ct__Q26Quazal9BitStreamFPQ26Quazal6Buffer = .text:0x8002AA50; // type:function size:0x54 +__dt__Q26Quazal9BitStreamFv = .text:0x8002AAA4; // type:function size:0x6C +Init__Q26Quazal9BitStreamFv = .text:0x8002AB10; // type:function size:0x1C +AdjustLength__Q26Quazal9BitStreamFv = .text:0x8002AB2C; // type:function size:0x38 +SetPosition__Q26Quazal9BitStreamFUi = .text:0x8002AB64; // type:function size:0x18 +AppendByteImpl__Q26Quazal9BitStreamFUc = .text:0x8002AB7C; // type:function size:0xC4 +AppendBitImpl__Q26Quazal9BitStreamFb = .text:0x8002AC40; // type:function size:0xD4 +ExtractByteImpl__Q26Quazal9BitStreamFRUc = .text:0x8002AD14; // type:function size:0xAC +ExtractBitImpl__Q26Quazal9BitStreamFRb = .text:0x8002ADC0; // type:function size:0xB0 +AppendRaw__Q26Quazal9BitStreamFPCUcUi = .text:0x8002AE70; // type:function size:0xF4 +ExtractRaw__Q26Quazal9BitStreamFPUcUi = .text:0x8002AF64; // type:function size:0x104 +Append__Q26Quazal9BitStreamFPCUcUiUi = .text:0x8002B068; // type:function size:0x7C +Extract__Q26Quazal9BitStreamFPUcUiUi = .text:0x8002B0E4; // type:function size:0x7C +CanExtract__Q26Quazal9BitStreamCFUi = .text:0x8002B160; // type:function size:0x2C +PrepareAppend__Q26Quazal9BitStreamFUi = .text:0x8002B18C; // type:function size:0xA0 +__ls__Q26Quazal9BitStreamFRCQ26Quazal6Buffer = .text:0x8002B22C; // type:function size:0x8C +__rs__Q26Quazal9BitStreamFRQ26Quazal6Buffer = .text:0x8002B2B8; // type:function size:0x98 +__rs__Q26Quazal9BitStreamFRQ26Quazal9BitStream = .text:0x8002B350; // type:function size:0x50 +__ct__Q26Quazal6BufferFUi = .text:0x8002B3A0; // type:function size:0x64 +__ct__Q26Quazal6BufferFRCQ26Quazal6Buffer = .text:0x8002B404; // type:function size:0x70 +__dt__Q26Quazal6BufferFv = .text:0x8002B474; // type:function size:0x74 +AppendData__Q26Quazal6BufferFPCvUiUi = .text:0x8002B4E8; // type:function size:0xA8 +CopyContent__Q26Quazal6BufferCFPvUiUi = .text:0x8002B590; // type:function size:0x60 +Clear__Q26Quazal6BufferFv = .text:0x8002B5F0; // type:function size:0xC +__vc__Q26Quazal6BufferFUi = .text:0x8002B5FC; // type:function size:0x6C +__as__Q26Quazal6BufferFRCQ26Quazal6Buffer = .text:0x8002B668; // type:function size:0x78 +__apl__Q26Quazal6BufferFRCQ26Quazal6Buffer = .text:0x8002B6E0; // type:function size:0x40 +__eq__Q26Quazal6BufferCFRCQ26Quazal6Buffer = .text:0x8002B720; // type:function size:0x4C +GetContentPtr__Q26Quazal6BufferCFv = .text:0x8002B76C; // type:function size:0x8 +GetContentSize__Q26Quazal6BufferCFv = .text:0x8002B774; // type:function size:0x1C +SetContentSize__Q26Quazal6BufferFUi = .text:0x8002B790; // type:function size:0x8 +GetSize__Q26Quazal6BufferCFv = .text:0x8002B798; // type:function size:0x8 +Resize__Q26Quazal6BufferFUi = .text:0x8002B7A0; // type:function size:0x84 +ComputeCheckSum__Q26Quazal6BufferFUiUc = .text:0x8002B824; // type:function size:0xA8 +GetCheckSum__Q26Quazal6BufferFv = .text:0x8002B8CC; // type:function size:0x60 +AppendCheckSum__Q26Quazal6BufferFUc = .text:0x8002B92C; // type:function size:0x60 +StripCheckSum__Q26Quazal6BufferFv = .text:0x8002B98C; // type:function size:0x34 +IsCheckSumValid__Q26Quazal6BufferFUc = .text:0x8002B9C0; // type:function size:0x80 +fn_8002BA40 = .text:0x8002BA40; // type:function size:0x44 +fn_8002BA84 = .text:0x8002BA84; // type:function size:0x38 +__ct__Q26Quazal10ByteStreamFv = .text:0x8002BABC; // type:function size:0x5C +__ct__Q26Quazal10ByteStreamFPQ26Quazal6Buffer = .text:0x8002BB18; // type:function size:0x4C +__dt__Q26Quazal10ByteStreamFv = .text:0x8002BB64; // type:function size:0x6C +fn_8002BBD0 = .text:0x8002BBD0; // type:function size:0x10 +Clear__Q26Quazal10ByteStreamFv = .text:0x8002BBE0; // type:function size:0x3C +SetLength__Q26Quazal10ByteStreamFUi = .text:0x8002BC1C; // type:function size:0x5C +AppendRaw__Q26Quazal10ByteStreamFPCUcUi = .text:0x8002BC78; // type:function size:0x2C +ExtractRaw__Q26Quazal10ByteStreamFPUcUi = .text:0x8002BCA4; // type:function size:0x8C +ValidateBufferLimit__Q26Quazal10ByteStreamFUi = .text:0x8002BD30; // type:function size:0x30 +Append__Q26Quazal10ByteStreamFPCUcUiUi = .text:0x8002BD60; // type:function size:0x84 +Extract__Q26Quazal10ByteStreamFPUcUiUi = .text:0x8002BDE4; // type:function size:0x90 +Append__Q26Quazal10ByteStreamFPCQ26Quazal4Time = .text:0x8002BE74; // type:function size:0x4C +Extract__Q26Quazal10ByteStreamFPQ26Quazal4Time = .text:0x8002BEC0; // type:function size:0x60 +AppendString__Q26Quazal10ByteStreamFPCc = .text:0x8002BF20; // type:function size:0x60 +AppendString__Q26Quazal10ByteStreamFPCcUi = .text:0x8002BF80; // type:function size:0x54 +AppendString__Q26Quazal10ByteStreamFPCcUiUl = .text:0x8002BFD4; // type:function size:0xA0 +ExtractString__Q26Quazal10ByteStreamFPcUs = .text:0x8002C074; // type:function size:0xDC +SetPosition__Q26Quazal10ByteStreamFUi = .text:0x8002C150; // type:function size:0x54 +__ls__Q26Quazal10ByteStreamFRCQ26Quazal6Buffer = .text:0x8002C1A4; // type:function size:0x60 +__rs__Q26Quazal10ByteStreamFRQ26Quazal6Buffer = .text:0x8002C204; // type:function size:0x78 +__ls__Q26Quazal10ByteStreamFRCb = .text:0x8002C27C; // type:function size:0x44 +__rs__Q26Quazal10ByteStreamFRb = .text:0x8002C2C0; // type:function size:0x5C +__ct__Q26Quazal3KeyFv = .text:0x8002C31C; // type:function size:0x44 +__ct__Q26Quazal3KeyFPUcUi = .text:0x8002C360; // type:function size:0x80 +__ct__Q26Quazal11qVectorFi = .text:0x8002C3E0; // type:function size:0x38 +fn_8002C418 = .text:0x8002C418; // type:function size:0x68 +fn_8002C480 = .text:0x8002C480; // type:function size:0x6C +__ct__Q26Quazal3KeyFRCQ26Quazal3Key = .text:0x8002C4EC; // type:function size:0x54 +fn_8002C540 = .text:0x8002C540; // type:function size:0x30 +fn_8002C570 = .text:0x8002C570; // type:function size:0x88 +__dt__Q26Quazal3KeyFv = .text:0x8002C5F8; // type:function size:0x68 +__as__Q26Quazal3KeyFRCQ26Quazal3Key = .text:0x8002C660; // type:function size:0x38 +GetLength__Q26Quazal3KeyCFv = .text:0x8002C698; // type:function size:0x8 +GetContentPtr__Q26Quazal3KeyCFv = .text:0x8002C6A0; // type:function size:0x1C +PrepareContentPtr__Q26Quazal3KeyFUi = .text:0x8002C6BC; // type:function size:0x38 +ToString__Q26Quazal3KeyCFv = .text:0x8002C6F4; // type:function size:0x44 +ExtractToString__Q26Quazal3KeyCFPQ26Quazal6String = .text:0x8002C738; // type:function size:0xD8 +fn_8002C810 = .text:0x8002C810; // type:function size:0x128 +__ct__Q26Quazal19EncryptionAlgorithmFUiUi = .text:0x8002C938; // type:function size:0x5C +fn_8002C994 = .text:0x8002C994; // type:function size:0x5C +SetKey__Q26Quazal19EncryptionAlgorithmFRCQ26Quazal3Key = .text:0x8002C9F0; // type:function size:0x88 +Encrypt__Q26Quazal19EncryptionAlgorithmFPQ26Quazal6Buffer = .text:0x8002CA78; // type:function size:0x84 +Decrypt__Q26Quazal19EncryptionAlgorithmFPQ26Quazal6Buffer = .text:0x8002CAFC; // type:function size:0x84 +GetErrorString__Q26Quazal19EncryptionAlgorithmFUiPcUi = .text:0x8002CB80; // type:function size:0x60 +__ct__Q26Quazal13RC4EncryptionFv = .text:0x8002CBE0; // type:function size:0x8C +__dt__Q26Quazal13RC4EncryptionFv = .text:0x8002CC6C; // type:function size:0x74 +GetDefaultKey__Q26Quazal13RC4EncryptionFv = .text:0x8002CCE0; // type:function size:0x50 +KeyHasChanged__Q26Quazal13RC4EncryptionFv = .text:0x8002CD30; // type:function size:0x4 +EncryptDecrypt__Q26Quazal13RC4EncryptionFPUcUi = .text:0x8002CD34; // type:function size:0x124 +SwapByte__Q26Quazal13RC4EncryptionFPUcPUc = .text:0x8002CE58; // type:function size:0x14 +ReinitStateArray__Q26Quazal13RC4EncryptionFv = .text:0x8002CE6C; // type:function size:0x1C +PrepareEncryption__Q26Quazal13RC4EncryptionFv = .text:0x8002CE88; // type:function size:0xD8 +Encrypt__Q26Quazal13RC4EncryptionFPQ26Quazal6Buffer = .text:0x8002CF60; // type:function size:0x5C +Encrypt__Q26Quazal13RC4EncryptionFRCQ26Quazal6BufferPQ26Quazal6Buffer = .text:0x8002CFBC; // type:function size:0x58 +Decrypt__Q26Quazal13RC4EncryptionFPQ26Quazal6Buffer = .text:0x8002D014; // type:function size:0x5C +Decrypt__Q26Quazal13RC4EncryptionFRCQ26Quazal6BufferPQ26Quazal6Buffer = .text:0x8002D070; // type:function size:0x58 +__ct__Q26Quazal18SessionDescriptionFv = .text:0x8002D0C8; // type:function size:0x74 +__dt__Q26Quazal39qMapFv = .text:0x8002D13C; // type:function size:0x5C +__dt__Q211stlpmtx_std161map,Q26Quazal71MemAllocator>>Fv = .text:0x8002D198; // type:function size:0x50 +fn_8002D1E8 = .text:0x8002D1E8; // type:function size:0x70 +__dt__Q26Quazal18SessionDescriptionFv = .text:0x8002D258; // type:function size:0x98 +SetApplicationTitle__Q26Quazal18SessionDescriptionFPCc = .text:0x8002D2F0; // type:function size:0x20 +SetSessionName__Q26Quazal18SessionDescriptionFPCc = .text:0x8002D310; // type:function size:0x20 +SetStationURL__Q26Quazal18SessionDescriptionFPCc = .text:0x8002D330; // type:function size:0x20 +SetSessionDiscoveryType__Q26Quazal18SessionDescriptionFPCc = .text:0x8002D350; // type:function size:0x18 +SetSessionDiscoveryContext__Q26Quazal18SessionDescriptionFPc = .text:0x8002D368; // type:function size:0x20 +StreamAttributesOut__Q26Quazal18SessionDescriptionCFPcUi = .text:0x8002D388; // type:function size:0x110 +StreamAttributesIn__Q26Quazal18SessionDescriptionFPc = .text:0x8002D498; // type:function size:0xD0 +AddString__Q26Quazal18SessionDescriptionCFPQ26Quazal10ByteStreamRCQ26Quazal6String = .text:0x8002D568; // type:function size:0x90 +ExtractString__Q26Quazal18SessionDescriptionCFPQ26Quazal10ByteStreamPQ26Quazal6String = .text:0x8002D5F8; // type:function size:0x7C +AddSourceTo__Q26Quazal18SessionDescriptionCFPQ26Quazal10ByteStream = .text:0x8002D674; // type:function size:0x104 +ExtractFrom__Q26Quazal18SessionDescriptionFPQ26Quazal10ByteStream = .text:0x8002D778; // type:function size:0x11C +fn_8002D894 = .text:0x8002D894; // type:function size:0x90 +fn_8002D924 = .text:0x8002D924; // type:function size:0xC8 +fn_8002D9EC = .text:0x8002D9EC; // type:function size:0xC0 +fn_8002DAAC = .text:0x8002DAAC; // type:function size:0x68 +fn_8002DB14 = .text:0x8002DB14; // type:function size:0x6C +fn_8002DB80 = .text:0x8002DB80; // type:function size:0x50 +fn_8002DBD0 = .text:0x8002DBD0; // type:function size:0x70 +fn_8002DC40 = .text:0x8002DC40; // type:function size:0x44 +fn_8002DC84 = .text:0x8002DC84; // type:function size:0x70 +fn_8002DCF4 = .text:0x8002DCF4; // type:function size:0x330 +fn_8002E024 = .text:0x8002E024; // type:function size:0x120 +fn_8002E144 = .text:0x8002E144; // type:function size:0xF4 +fn_8002E238 = .text:0x8002E238; // type:function size:0x74 +fn_8002E2AC = .text:0x8002E2AC; // type:function size:0x48 +__ct__Q26Quazal24SessionDiscoveryProtocolFv = .text:0x8002E2F4; // type:function size:0x44 +fn_8002E338 = .text:0x8002E338; // type:function size:0x40 +fn_8002E378 = .text:0x8002E378; // type:function size:0x8 +fn_8002E380 = .text:0x8002E380; // type:function size:0x8 +fn_8002E388 = .text:0x8002E388; // type:function size:0x8 +fn_8002E390 = .text:0x8002E390; // type:function size:0x68 +fn_8002E3F8 = .text:0x8002E3F8; // type:function size:0xAC +fn_8002E4A4 = .text:0x8002E4A4; // type:function size:0x90 +fn_8002E534 = .text:0x8002E534; // type:function size:0x54 +fn_8002E588 = .text:0x8002E588; // type:function size:0x88 +fn_8002E610 = .text:0x8002E610; // type:function size:0x60 +fn_8002E670 = .text:0x8002E670; // type:function size:0xA0 +fn_8002E710 = .text:0x8002E710; // type:function size:0x80 +fn_8002E790 = .text:0x8002E790; // type:function size:0x80 +fn_8002E810 = .text:0x8002E810; // type:function size:0x6C +fn_8002E87C = .text:0x8002E87C; // type:function size:0xD8 +fn_8002E954 = .text:0x8002E954; // type:function size:0x4 +fn_8002E958 = .text:0x8002E958; // type:function size:0x38 +fn_8002E990 = .text:0x8002E990; // type:function size:0x5C +fn_8002E9EC = .text:0x8002E9EC; // type:function size:0x68 +fn_8002EA54 = .text:0x8002EA54; // type:function size:0xA8 +fn_8002EAFC = .text:0x8002EAFC; // type:function size:0x30 +fn_8002EB2C = .text:0x8002EB2C; // type:function size:0xB0 +fn_8002EBDC = .text:0x8002EBDC; // type:function size:0x8 +fn_8002EBE4 = .text:0x8002EBE4; // type:function size:0xC0 +fn_8002ECA4 = .text:0x8002ECA4; // type:function size:0xC8 +fn_8002ED6C = .text:0x8002ED6C; // type:function size:0xD8 +fn_8002EE44 = .text:0x8002EE44; // type:function size:0x60 +fn_8002EEA4 = .text:0x8002EEA4; // type:function size:0x4 +fn_8002EEA8 = .text:0x8002EEA8; // type:function size:0xCC +fn_8002EF74 = .text:0x8002EF74; // type:function size:0x10 +fn_8002EF84 = .text:0x8002EF84; // type:function size:0x68 +fn_8002EFEC = .text:0x8002EFEC; // type:function size:0x130 +fn_8002F11C = .text:0x8002F11C; // type:function size:0x58 +fn_8002F174 = .text:0x8002F174; // type:function size:0x50 +fn_8002F1C4 = .text:0x8002F1C4; // type:function size:0x48 +fn_8002F20C = .text:0x8002F20C; // type:function size:0x94 +fn_8002F2A0 = .text:0x8002F2A0; // type:function size:0x68 +fn_8002F308 = .text:0x8002F308; // type:function size:0x54 +fn_8002F35C = .text:0x8002F35C; // type:function size:0xE4 +fn_8002F440 = .text:0x8002F440; // type:function size:0x94 +fn_8002F4D4 = .text:0x8002F4D4; // type:function size:0x84 +fn_8002F558 = .text:0x8002F558; // type:function size:0x11C +fn_8002F674 = .text:0x8002F674; // type:function size:0x84 +fn_8002F6F8 = .text:0x8002F6F8; // type:function size:0xF0 +fn_8002F7E8 = .text:0x8002F7E8; // type:function size:0xA0 +fn_8002F888 = .text:0x8002F888; // type:function size:0x110 +fn_8002F998 = .text:0x8002F998; // type:function size:0xC +fn_8002F9A4 = .text:0x8002F9A4; // type:function size:0xA8 +fn_8002FA4C = .text:0x8002FA4C; // type:function size:0x54 +__ct__Q26Quazal17ConnectionManagerFPQ26Quazal20EndPointEventHandlerbb = .text:0x8002FAA0; // type:function size:0xE4 +fn_8002FB84 = .text:0x8002FB84; // type:function size:0x58 +fn_8002FBDC = .text:0x8002FBDC; // type:function size:0x34 +fn_8002FC10 = .text:0x8002FC10; // type:function size:0x3C +fn_8002FC4C = .text:0x8002FC4C; // type:function size:0x84 +fn_8002FCD0 = .text:0x8002FCD0; // type:function size:0x18 +fn_8002FCE8 = .text:0x8002FCE8; // type:function size:0xA4 +fn_8002FD8C = .text:0x8002FD8C; // type:function size:0x14 +fn_8002FDA0 = .text:0x8002FDA0; // type:function size:0x8 +fn_8002FDA8 = .text:0x8002FDA8; // type:function size:0x14 +fn_8002FDBC = .text:0x8002FDBC; // type:function size:0x20 +fn_8002FDDC = .text:0x8002FDDC; // type:function size:0x68 +fn_8002FE44 = .text:0x8002FE44; // type:function size:0x10 +fn_8002FE54 = .text:0x8002FE54; // type:function size:0x8C +fn_8002FEE0 = .text:0x8002FEE0; // type:function size:0xF8 +fn_8002FFD8 = .text:0x8002FFD8; // type:function size:0xE0 +fn_800300B8 = .text:0x800300B8; // type:function size:0xD8 +fn_80030190 = .text:0x80030190; // type:function size:0xA4 +fn_80030234 = .text:0x80030234; // type:function size:0xB0 +fn_800302E4 = .text:0x800302E4; // type:function size:0xC4 +fn_800303A8 = .text:0x800303A8; // type:function size:0xC +fn_800303B4 = .text:0x800303B4; // type:function size:0x2C +fn_800303E0 = .text:0x800303E0; // type:function size:0x5C +fn_8003043C = .text:0x8003043C; // type:function size:0x6C +fn_800304A8 = .text:0x800304A8; // type:function size:0xC +fn_800304B4 = .text:0x800304B4; // type:function size:0xC +fn_800304C0 = .text:0x800304C0; // type:function size:0x74 +fn_80030534 = .text:0x80030534; // type:function size:0x58 +fn_8003058C = .text:0x8003058C; // type:function size:0x4 +fn_80030590 = .text:0x80030590; // type:function size:0x8 +fn_80030598 = .text:0x80030598; // type:function size:0x8 +fn_800305A0 = .text:0x800305A0; // type:function size:0x4 +fn_800305A4 = .text:0x800305A4; // type:function size:0x8 +fn_800305AC = .text:0x800305AC; // type:function size:0x8 +fn_800305B4 = .text:0x800305B4; // type:function size:0x8 +fn_800305BC = .text:0x800305BC; // type:function size:0x4 +fn_800305C0 = .text:0x800305C0; // type:function size:0x4 +fn_800305C4 = .text:0x800305C4; // type:function size:0x4 +fn_800305C8 = .text:0x800305C8; // type:function size:0x28 +fn_800305F0 = .text:0x800305F0; // type:function size:0x8 +fn_800305F8 = .text:0x800305F8; // type:function size:0xC +fn_80030604 = .text:0x80030604; // type:function size:0xC +fn_80030610 = .text:0x80030610; // type:function size:0xC +fn_8003061C = .text:0x8003061C; // type:function size:0xC +fn_80030628 = .text:0x80030628; // type:function size:0xC +fn_80030634 = .text:0x80030634; // type:function size:0x40 +fn_80030674 = .text:0x80030674; // type:function size:0x20 +fn_80030694 = .text:0x80030694; // type:function size:0x24 +fn_800306B8 = .text:0x800306B8; // type:function size:0xAC +fn_80030764 = .text:0x80030764; // type:function size:0x60 +fn_800307C4 = .text:0x800307C4; // type:function size:0x80 +fn_80030844 = .text:0x80030844; // type:function size:0x24 +fn_80030868 = .text:0x80030868; // type:function size:0x6C +__ct__Q26Quazal15EmulationDeviceFv = .text:0x800308D4; // type:function size:0x38 +__dt__Q26Quazal15EmulationDeviceFv = .text:0x8003090C; // type:function size:0x40 +SetLatency__Q26Quazal15EmulationDeviceFUi = .text:0x8003094C; // type:function size:0x8 +SetJitter__Q26Quazal15EmulationDeviceFUi = .text:0x80030954; // type:function size:0x8 +SetBandwidth__Q26Quazal15EmulationDeviceFUi = .text:0x8003095C; // type:function size:0x8 +SetPacketDropProbability__Q26Quazal15EmulationDeviceFf = .text:0x80030964; // type:function size:0x8 +GetLatency__Q26Quazal15EmulationDeviceFv = .text:0x8003096C; // type:function size:0x8 +GetJitter__Q26Quazal15EmulationDeviceFv = .text:0x80030974; // type:function size:0x8 +GetBandwidth__Q26Quazal15EmulationDeviceFv = .text:0x8003097C; // type:function size:0x8 +GetPacketDropProbability__Q26Quazal15EmulationDeviceFv = .text:0x80030984; // type:function size:0x8 +Enable__Q26Quazal15EmulationDeviceFv = .text:0x8003098C; // type:function size:0xC +__ct__Q26Quazal8EndPointFPQ26Quazal24ConnectionOrientedStreamPCQ26Quazal10StationURL = .text:0x80030998; // type:function size:0x74 +__dt__Q26Quazal8EndPointFv = .text:0x80030A0C; // type:function size:0x98 +Open__Q26Quazal8EndPointFv = .text:0x80030AA4; // type:function size:0x18 +_Open__Q26Quazal8EndPointFv = .text:0x80030ABC; // type:function size:0x10 +Close__Q26Quazal8EndPointFv = .text:0x80030ACC; // type:function size:0x18 +_Close__Q26Quazal8EndPointFv = .text:0x80030AE4; // type:function size:0x10 +Trace__Q26Quazal8EndPointFUi = .text:0x80030AF4; // type:function size:0x4 +RegisterEventHandler__Q26Quazal8EndPointFPQ26Quazal20EndPointEventHandler = .text:0x80030AF8; // type:function size:0x28 +SetConnectionID__Q26Quazal8EndPointFUi = .text:0x80030B20; // type:function size:0x90 +SetPrincipalID__Q26Quazal8EndPointFUi = .text:0x80030BB0; // type:function size:0x90 +__ct__Q26Quazal15HighLevelStreamFQ36Quazal6Stream4TypeUcPQ26Quazal13RootTransport = .text:0x80030C40; // type:function size:0x7C +__dt__Q26Quazal15HighLevelStreamFv = .text:0x80030CBC; // type:function size:0x7C +ReceiveIncomingPacket__Q26Quazal15HighLevelStreamFUsUcPQ26Quazal6Packet = .text:0x80030D38; // type:function size:0xBC +fn_80030DF4 = .text:0x80030DF4; // type:function size:0x8 +fn_80030DFC = .text:0x80030DFC; // type:function size:0x4 +fn_80030E00 = .text:0x80030E00; // type:function size:0x120 +fn_80030F20 = .text:0x80030F20; // type:function size:0x10 +fn_80030F30 = .text:0x80030F30; // type:function size:0x4C +fn_80030F7C = .text:0x80030F7C; // type:function size:0x48 +fn_80030FC4 = .text:0x80030FC4; // type:function size:0x8 +fn_80030FCC = .text:0x80030FCC; // type:function size:0x2E8 +fn_800312B4 = .text:0x800312B4; // type:function size:0x60 +fn_80031314 = .text:0x80031314; // type:function size:0x38 +fn_8003134C = .text:0x8003134C; // type:function size:0x38 +fn_80031384 = .text:0x80031384; // type:function size:0x88 +fn_8003140C = .text:0x8003140C; // type:function size:0x30 +fn_8003143C = .text:0x8003143C; // type:function size:0x70 +fn_800314AC = .text:0x800314AC; // type:function size:0x78 +fn_80031524 = .text:0x80031524; // type:function size:0x88 +fn_800315AC = .text:0x800315AC; // type:function size:0xE0 +fn_8003168C = .text:0x8003168C; // type:function size:0x14 +fn_800316A0 = .text:0x800316A0; // type:function size:0x50 +fn_800316F0 = .text:0x800316F0; // type:function size:0x68 +fn_80031758 = .text:0x80031758; // type:function size:0x74 +fn_800317CC = .text:0x800317CC; // type:function size:0x84 +fn_80031850 = .text:0x80031850; // type:function size:0x68 +fn_800318B8 = .text:0x800318B8; // type:function size:0x70 +fn_80031928 = .text:0x80031928; // type:function size:0x68 +fn_80031990 = .text:0x80031990; // type:function size:0x9C +fn_80031A2C = .text:0x80031A2C; // type:function size:0xC8 +fn_80031AF4 = .text:0x80031AF4; // type:function size:0x78 +fn_80031B6C = .text:0x80031B6C; // type:function size:0x7C +fn_80031BE8 = .text:0x80031BE8; // type:function size:0x24C +fn_80031E34 = .text:0x80031E34; // type:function size:0x88 +fn_80031EBC = .text:0x80031EBC; // type:function size:0xAC +fn_80031F68 = .text:0x80031F68; // type:function size:0xE0 +fn_80032048 = .text:0x80032048; // type:function size:0x1D4 +fn_8003221C = .text:0x8003221C; // type:function size:0x148 +fn_80032364 = .text:0x80032364; // type:function size:0xD8 +fn_8003243C = .text:0x8003243C; // type:function size:0xD4 +fn_80032510 = .text:0x80032510; // type:function size:0x98 +fn_800325A8 = .text:0x800325A8; // type:function size:0x78 +fn_80032620 = .text:0x80032620; // type:function size:0x68 +fn_80032688 = .text:0x80032688; // type:function size:0x68 +fn_800326F0 = .text:0x800326F0; // type:function size:0xA8 +fn_80032798 = .text:0x80032798; // type:function size:0x1C +__ct__Q26Quazal7MessageFv = .text:0x800327B4; // type:function size:0x6C +__ct__Q26Quazal7MessageFPQ26Quazal6Buffer = .text:0x80032820; // type:function size:0x74 +fn_80032894 = .text:0x80032894; // type:function size:0x6C +SetSourceEndPoint__Q26Quazal7MessageFPQ26Quazal8EndPoint = .text:0x80032900; // type:function size:0x18 +fn_80032918 = .text:0x80032918; // type:function size:0x6C +SetToBeginning__Q26Quazal7MessageFv = .text:0x80032984; // type:function size:0x58 +fn_800329DC = .text:0x800329DC; // type:function size:0x4C +SetIOTime__Q26Quazal7MessageFRQ26Quazal4Time = .text:0x80032A28; // type:function size:0x8 +fn_80032A30 = .text:0x80032A30; // type:function size:0x8 +fn_80032A38 = .text:0x80032A38; // type:function size:0x4 +GetBuffer__Q26Quazal7MessageFv = .text:0x80032A3C; // type:function size:0x30 +GetHeaderSize__Q26Quazal7MessageCFv = .text:0x80032A6C; // type:function size:0x8 +SetSize__Q26Quazal7MessageFv = .text:0x80032A74; // type:function size:0x70 +GetSize__Q26Quazal7MessageFv = .text:0x80032AE4; // type:function size:0x68 +GetPayloadSize__Q26Quazal7MessageCFv = .text:0x80032B4C; // type:function size:0x28 +GetLastError__Q26Quazal7MessageFv = .text:0x80032B74; // type:function size:0x68 +AddDataFromMessage__Q26Quazal7MessageFRCQ26Quazal7Message = .text:0x80032BDC; // type:function size:0x5C +AppendMessage__Q26Quazal7MessageFRQ26Quazal7Message = .text:0x80032C38; // type:function size:0x74 +ExtractMessage__Q26Quazal7MessageFRQ26Quazal7Message = .text:0x80032CAC; // type:function size:0x84 +__ct__Q26Quazal17NATRelayInterfaceFv = .text:0x80032D30; // type:function size:0x18 +__dt__Q26Quazal17NATRelayInterfaceFv = .text:0x80032D48; // type:function size:0x48 +RequestProbe__Q26Quazal17NATRelayInterfaceFRCQ26Quazal10StationURL = .text:0x80032D90; // type:function size:0x18 +__ct__Q26Quazal18NATTraversalEngineFv = .text:0x80032DA8; // type:function size:0x64 +__dt__Q26Quazal18NATTraversalEngineFv = .text:0x80032E0C; // type:function size:0x84 +fn_80032E90 = .text:0x80032E90; // type:function size:0x58 +fn_80032EE8 = .text:0x80032EE8; // type:function size:0x58 +fn_80032F40 = .text:0x80032F40; // type:function size:0x70 +fn_80032FB0 = .text:0x80032FB0; // type:function size:0x5C +Initialize__Q26Quazal18NATTraversalEngineFv = .text:0x8003300C; // type:function size:0x8 +Terminate__Q26Quazal18NATTraversalEngineFv = .text:0x80033014; // type:function size:0x8 +SetLocalCID__Q26Quazal18NATTraversalEngineFUi = .text:0x8003301C; // type:function size:0x8 +GetLocalCID__Q26Quazal18NATTraversalEngineCFv = .text:0x80033024; // type:function size:0x8 +StartNATStream__Q26Quazal18NATTraversalEngineFPQ26Quazal13RootTransport = .text:0x8003302C; // type:function size:0x8C +PrepareNATTraversal__Q26Quazal18NATTraversalEngineFRCQ26Quazal10StationURL = .text:0x800330B8; // type:function size:0xA0 +PrepareNATTraversal__Q26Quazal18NATTraversalEngineFRCQ26Quazal28qList = .text:0x80033158; // type:function size:0xA4 +AddURLToProbe__Q26Quazal18NATTraversalEngineFRCQ26Quazal10StationURLb = .text:0x800331FC; // type:function size:0xF8 +fn_800332F4 = .text:0x800332F4; // type:function size:0x58 +fn_8003334C = .text:0x8003334C; // type:function size:0x64 +fn_800333B0 = .text:0x800333B0; // type:function size:0x88 +__ct__Q26Quazal8URLProbeFRCQ26Quazal10StationURLib = .text:0x80033438; // type:function size:0x80 +fn_800334B8 = .text:0x800334B8; // type:function size:0x270 +fn_80033728 = .text:0x80033728; // type:function size:0x1A8 +fn_800338D0 = .text:0x800338D0; // type:function size:0x1C4 +fn_80033A94 = .text:0x80033A94; // type:function size:0x11C +fn_80033BB0 = .text:0x80033BB0; // type:function size:0xA0 +fn_80033C50 = .text:0x80033C50; // type:function size:0x7C +fn_80033CCC = .text:0x80033CCC; // type:function size:0x8C +fn_80033D58 = .text:0x80033D58; // type:function size:0x9C +fn_80033DF4 = .text:0x80033DF4; // type:function size:0x7C +fn_80033E70 = .text:0x80033E70; // type:function size:0x74 +__ct__Q26Quazal18NATTraversalStreamFPQ26Quazal18NATTraversalEnginePQ26Quazal13RootTransport = .text:0x80033EE4; // type:function size:0x60 +fn_80033F44 = .text:0x80033F44; // type:function size:0x58 +fn_80033F9C = .text:0x80033F9C; // type:function size:0x14 +fn_80033FB0 = .text:0x80033FB0; // type:function size:0x80 +fn_80034030 = .text:0x80034030; // type:function size:0x78 +fn_800340A8 = .text:0x800340A8; // type:function size:0x124 +fn_800341CC = .text:0x800341CC; // type:function size:0x68 +fn_80034234 = .text:0x80034234; // type:function size:0xC +fn_80034240 = .text:0x80034240; // type:function size:0x3C +fn_8003427C = .text:0x8003427C; // type:function size:0x150 +fn_800343CC = .text:0x800343CC; // type:function size:0x60 +fn_8003442C = .text:0x8003442C; // type:function size:0x30 +fn_8003445C = .text:0x8003445C; // type:function size:0x8 +fn_80034464 = .text:0x80034464; // type:function size:0x8 +fn_8003446C = .text:0x8003446C; // type:function size:0xB0 +fn_8003451C = .text:0x8003451C; // type:function size:0x3C +fn_80034558 = .text:0x80034558; // type:function size:0x78 +fn_800345D0 = .text:0x800345D0; // type:function size:0x128 +fn_800346F8 = .text:0x800346F8; // type:function size:0x64 +fn_8003475C = .text:0x8003475C; // type:function size:0x8 +fn_80034764 = .text:0x80034764; // type:function size:0x58 +fn_800347BC = .text:0x800347BC; // type:function size:0x4C +fn_80034808 = .text:0x80034808; // type:function size:0x68 +fn_80034870 = .text:0x80034870; // type:function size:0x20 +InitCompression__Q26Quazal7NetworkFQ36Quazal7Network9ECompAlgo = .text:0x80034890; // type:function size:0xC8 +fn_80034958 = .text:0x80034958; // type:function size:0xCC +fn_80034A24 = .text:0x80034A24; // type:function size:0x50 +fn_80034A74 = .text:0x80034A74; // type:function size:0x70 +fn_80034AE4 = .text:0x80034AE4; // type:function size:0x74 +fn_80034B58 = .text:0x80034B58; // type:function size:0x74 +fn_80034BCC = .text:0x80034BCC; // type:function size:0x48 +fn_80034C14 = .text:0x80034C14; // type:function size:0x80 +fn_80034C94 = .text:0x80034C94; // type:function size:0x58 +fn_80034CEC = .text:0x80034CEC; // type:function size:0x3C +fn_80034D28 = .text:0x80034D28; // type:function size:0x3C +fn_80034D64 = .text:0x80034D64; // type:function size:0x94 +fn_80034DF8 = .text:0x80034DF8; // type:function size:0x8 +fn_80034E00 = .text:0x80034E00; // type:function size:0x50 +fn_80034E50 = .text:0x80034E50; // type:function size:0x34 +fn_80034E84 = .text:0x80034E84; // type:function size:0x20 +fn_80034EA4 = .text:0x80034EA4; // type:function size:0x24 +fn_80034EC8 = .text:0x80034EC8; // type:function size:0xE0 +fn_80034FA8 = .text:0x80034FA8; // type:function size:0xC +fn_80034FB4 = .text:0x80034FB4; // type:function size:0x4C +fn_80035000 = .text:0x80035000; // type:function size:0x8C +fn_8003508C = .text:0x8003508C; // type:function size:0x54 +fn_800350E0 = .text:0x800350E0; // type:function size:0x90 +fn_80035170 = .text:0x80035170; // type:function size:0xA8 +fn_80035218 = .text:0x80035218; // type:function size:0x14 +SetMidiReader__12MidiReceiverFP10MidiReader = .text:0x8003522C; // type:function size:0x8 +fn_80035234 = .text:0x80035234; // type:function size:0x3C +fn_80035270 = .text:0x80035270; // type:function size:0x68 +fn_800352D8 = .text:0x800352D8; // type:function size:0x64 +fn_8003533C = .text:0x8003533C; // type:function size:0x28 +fn_80035364 = .text:0x80035364; // type:function size:0xA4 +fn_80035408 = .text:0x80035408; // type:function size:0x1B0 +fn_800355B8 = .text:0x800355B8; // type:function size:0x74 +fn_8003562C = .text:0x8003562C; // type:function size:0x6C +fn_80035698 = .text:0x80035698; // type:function size:0x68 +fn_80035700 = .text:0x80035700; // type:function size:0xA4 +fn_800357A4 = .text:0x800357A4; // type:function size:0x60 +fn_80035804 = .text:0x80035804; // type:function size:0x30 +fn_80035834 = .text:0x80035834; // type:function size:0x60 +fn_80035894 = .text:0x80035894; // type:function size:0x4 +fn_80035898 = .text:0x80035898; // type:function size:0x38 +fn_800358D0 = .text:0x800358D0; // type:function size:0x5C +fn_8003592C = .text:0x8003592C; // type:function size:0x60 +fn_8003598C = .text:0x8003598C; // type:function size:0x10 +fn_8003599C = .text:0x8003599C; // type:function size:0x5C +fn_800359F8 = .text:0x800359F8; // type:function size:0x40 +fn_80035A38 = .text:0x80035A38; // type:function size:0x58 +fn_80035A90 = .text:0x80035A90; // type:function size:0x64 +fn_80035AF4 = .text:0x80035AF4; // type:function size:0x84 +fn_80035B78 = .text:0x80035B78; // type:function size:0x54 +fn_80035BCC = .text:0x80035BCC; // type:function size:0x174 +fn_80035D40 = .text:0x80035D40; // type:function size:0x88 +fn_80035DC8 = .text:0x80035DC8; // type:function size:0xE8 +fn_80035EB0 = .text:0x80035EB0; // type:function size:0x30 +fn_80035EE0 = .text:0x80035EE0; // type:function size:0xBC +fn_80035F9C = .text:0x80035F9C; // type:function size:0x34 +fn_80035FD0 = .text:0x80035FD0; // type:function size:0x8C +fn_8003605C = .text:0x8003605C; // type:function size:0x9C +fn_800360F8 = .text:0x800360F8; // type:function size:0x50 +fn_80036148 = .text:0x80036148; // type:function size:0x6C +fn_800361B4 = .text:0x800361B4; // type:function size:0x4C +fn_80036200 = .text:0x80036200; // type:function size:0x88 +fn_80036288 = .text:0x80036288; // type:function size:0x44 +fn_800362CC = .text:0x800362CC; // type:function size:0x58 +fn_80036324 = .text:0x80036324; // type:function size:0x98 +fn_800363BC = .text:0x800363BC; // type:function size:0x60 +fn_8003641C = .text:0x8003641C; // type:function size:0x2C +fn_80036448 = .text:0x80036448; // type:function size:0x70 +fn_800364B8 = .text:0x800364B8; // type:function size:0x80 +fn_80036538 = .text:0x80036538; // type:function size:0x5C +fn_80036594 = .text:0x80036594; // type:function size:0x58 +fn_800365EC = .text:0x800365EC; // type:function size:0x18 +fn_80036604 = .text:0x80036604; // type:function size:0x7C +fn_80036680 = .text:0x80036680; // type:function size:0x38 +fn_800366B8 = .text:0x800366B8; // type:function size:0x64 +fn_8003671C = .text:0x8003671C; // type:function size:0x54 +fn_80036770 = .text:0x80036770; // type:function size:0x6C +fn_800367DC = .text:0x800367DC; // type:function size:0x104 +__ct__Q26Quazal10StationURLFv = .text:0x800368E0; // type:function size:0x8C +fn_8003696C = .text:0x8003696C; // type:function size:0x5C +fn_800369C8 = .text:0x800369C8; // type:function size:0x50 +fn_80036A18 = .text:0x80036A18; // type:function size:0x70 +fn_80036A88 = .text:0x80036A88; // type:function size:0x98 +fn_80036B20 = .text:0x80036B20; // type:function size:0x98 +fn_80036BB8 = .text:0x80036BB8; // type:function size:0x30 +fn_80036BE8 = .text:0x80036BE8; // type:function size:0xBC +__dt__Q26Quazal10StationURLFv = .text:0x80036CA4; // type:function size:0x88 +fn_80036D2C = .text:0x80036D2C; // type:function size:0x14 +fn_80036D40 = .text:0x80036D40; // type:function size:0x31C +fn_8003705C = .text:0x8003705C; // type:function size:0x50 +fn_800370AC = .text:0x800370AC; // type:function size:0x3C +fn_800370E8 = .text:0x800370E8; // type:function size:0x58 +fn_80037140 = .text:0x80037140; // type:function size:0x70 +SetInetAddress__Q26Quazal10StationURLFPCQ26Quazal11InetAddress = .text:0x800371B0; // type:function size:0x5C +fn_8003720C = .text:0x8003720C; // type:function size:0x3C +fn_80037248 = .text:0x80037248; // type:function size:0x58 +fn_800372A0 = .text:0x800372A0; // type:function size:0x40 +fn_800372E0 = .text:0x800372E0; // type:function size:0x38 +fn_80037318 = .text:0x80037318; // type:function size:0x10 +fn_80037328 = .text:0x80037328; // type:function size:0x38 +fn_80037360 = .text:0x80037360; // type:function size:0x30 +fn_80037390 = .text:0x80037390; // type:function size:0x38 +fn_800373C8 = .text:0x800373C8; // type:function size:0x10 +fn_800373D8 = .text:0x800373D8; // type:function size:0x38 +fn_80037410 = .text:0x80037410; // type:function size:0x10 +fn_80037420 = .text:0x80037420; // type:function size:0x38 +GetRVConnectionID__Q26Quazal10StationURLCFv = .text:0x80037458; // type:function size:0x10 +fn_80037468 = .text:0x80037468; // type:function size:0x10 +fn_80037478 = .text:0x80037478; // type:function size:0x34 +fn_800374AC = .text:0x800374AC; // type:function size:0x54 +fn_80037500 = .text:0x80037500; // type:function size:0x54 +fn_80037554 = .text:0x80037554; // type:function size:0x8C +SetURL__Q26Quazal10StationURLFPCc = .text:0x800375E0; // type:function size:0x98 +GetURL__Q26Quazal10StationURLCFv = .text:0x80037678; // type:function size:0x3C +fn_800376B4 = .text:0x800376B4; // type:function size:0x154 +fn_80037808 = .text:0x80037808; // type:function size:0x84 +fn_8003788C = .text:0x8003788C; // type:function size:0xA8 +fn_80037934 = .text:0x80037934; // type:function size:0x44 +fn_80037978 = .text:0x80037978; // type:function size:0xA4 +fn_80037A1C = .text:0x80037A1C; // type:function size:0x3C +fn_80037A58 = .text:0x80037A58; // type:function size:0x90 +fn_80037AE8 = .text:0x80037AE8; // type:function size:0xAC +fn_80037B94 = .text:0x80037B94; // type:function size:0xD8 +fn_80037C6C = .text:0x80037C6C; // type:function size:0x1D8 +fn_80037E44 = .text:0x80037E44; // type:function size:0x124 +fn_80037F68 = .text:0x80037F68; // type:function size:0x4 +fn_80037F6C = .text:0x80037F6C; // type:function size:0x54 +fn_80037FC0 = .text:0x80037FC0; // type:function size:0x74 +fn_80038034 = .text:0x80038034; // type:function size:0x94 +fn_800380C8 = .text:0x800380C8; // type:function size:0x330 +fn_800383F8 = .text:0x800383F8; // type:function size:0x94 +fn_8003848C = .text:0x8003848C; // type:function size:0x120 +fn_800385AC = .text:0x800385AC; // type:function size:0xC8 +fn_80038674 = .text:0x80038674; // type:function size:0x74 +fn_800386E8 = .text:0x800386E8; // type:function size:0x44 +fn_8003872C = .text:0x8003872C; // type:function size:0xF4 +fn_80038820 = .text:0x80038820; // type:function size:0x104 +__ct__Q26Quazal6StreamFQ36Quazal6Stream4Type = .text:0x80038924; // type:function size:0x14 +__dt__Q26Quazal6StreamFv = .text:0x80038938; // type:function size:0x40 +fn_80038978 = .text:0x80038978; // type:function size:0x58 +fn_800389D0 = .text:0x800389D0; // type:function size:0x1C +fn_800389EC = .text:0x800389EC; // type:function size:0xA4 +fn_80038A90 = .text:0x80038A90; // type:function size:0x88 +fn_80038B18 = .text:0x80038B18; // type:function size:0x50 +fn_80038B68 = .text:0x80038B68; // type:function size:0xAC +fn_80038C14 = .text:0x80038C14; // type:function size:0xC8 +fn_80038CDC = .text:0x80038CDC; // type:function size:0xBC +fn_80038D98 = .text:0x80038D98; // type:function size:0x54 +fn_80038DEC = .text:0x80038DEC; // type:function size:0xBC +fn_80038EA8 = .text:0x80038EA8; // type:function size:0x48 +fn_80038EF0 = .text:0x80038EF0; // type:function size:0x14 +fn_80038F04 = .text:0x80038F04; // type:function size:0x5C +fn_80038F60 = .text:0x80038F60; // type:function size:0x40 +fn_80038FA0 = .text:0x80038FA0; // type:function size:0x74 +fn_80039014 = .text:0x80039014; // type:function size:0x5C +fn_80039070 = .text:0x80039070; // type:function size:0x8C +fn_800390FC = .text:0x800390FC; // type:function size:0x68 +fn_80039164 = .text:0x80039164; // type:function size:0x9C +fn_80039200 = .text:0x80039200; // type:function size:0x5C +fn_8003925C = .text:0x8003925C; // type:function size:0x6C +fn_800392C8 = .text:0x800392C8; // type:function size:0x8 +fn_800392D0 = .text:0x800392D0; // type:function size:0x8 +fn_800392D8 = .text:0x800392D8; // type:function size:0x10 +fn_800392E8 = .text:0x800392E8; // type:function size:0x8 +fn_800392F0 = .text:0x800392F0; // type:function size:0x10 +fn_80039300 = .text:0x80039300; // type:function size:0x8 +fn_80039308 = .text:0x80039308; // type:function size:0x8 +fn_80039310 = .text:0x80039310; // type:function size:0x8 +fn_80039318 = .text:0x80039318; // type:function size:0x8 +fn_80039320 = .text:0x80039320; // type:function size:0x8 +fn_80039328 = .text:0x80039328; // type:function size:0x8 +fn_80039330 = .text:0x80039330; // type:function size:0x8 +fn_80039338 = .text:0x80039338; // type:function size:0x40 +fn_80039378 = .text:0x80039378; // type:function size:0x5C +fn_800393D4 = .text:0x800393D4; // type:function size:0x74 +fn_80039448 = .text:0x80039448; // type:function size:0x78 +fn_800394C0 = .text:0x800394C0; // type:function size:0x18 +fn_800394D8 = .text:0x800394D8; // type:function size:0x40 +fn_80039518 = .text:0x80039518; // type:function size:0x19C +fn_800396B4 = .text:0x800396B4; // type:function size:0x64 +fn_80039718 = .text:0x80039718; // type:function size:0x4 +fn_8003971C = .text:0x8003971C; // type:function size:0x8 +fn_80039724 = .text:0x80039724; // type:function size:0xC4 +fn_800397E8 = .text:0x800397E8; // type:function size:0x70 +fn_80039858 = .text:0x80039858; // type:function size:0x10 +fn_80039868 = .text:0x80039868; // type:function size:0x40 +fn_800398A8 = .text:0x800398A8; // type:function size:0x4 +fn_800398AC = .text:0x800398AC; // type:function size:0x4 +fn_800398B0 = .text:0x800398B0; // type:function size:0x4 +fn_800398B4 = .text:0x800398B4; // type:function size:0x8 +fn_800398BC = .text:0x800398BC; // type:function size:0xE8 +fn_800399A4 = .text:0x800399A4; // type:function size:0x58 +fn_800399FC = .text:0x800399FC; // type:function size:0x50 +fn_80039A4C = .text:0x80039A4C; // type:function size:0x64 +fn_80039AB0 = .text:0x80039AB0; // type:function size:0x5C +fn_80039B0C = .text:0x80039B0C; // type:function size:0x140 +fn_80039C4C = .text:0x80039C4C; // type:function size:0x74 +fn_80039CC0 = .text:0x80039CC0; // type:function size:0x64 +fn_80039D24 = .text:0x80039D24; // type:function size:0x58 +fn_80039D7C = .text:0x80039D7C; // type:function size:0xF0 +fn_80039E6C = .text:0x80039E6C; // type:function size:0x34 +fn_80039EA0 = .text:0x80039EA0; // type:function size:0x58 +fn_80039EF8 = .text:0x80039EF8; // type:function size:0x58 +fn_80039F50 = .text:0x80039F50; // type:function size:0x58 +fn_80039FA8 = .text:0x80039FA8; // type:function size:0x8C +fn_8003A034 = .text:0x8003A034; // type:function size:0x24 +fn_8003A058 = .text:0x8003A058; // type:function size:0x48 +fn_8003A0A0 = .text:0x8003A0A0; // type:function size:0x8C +fn_8003A12C = .text:0x8003A12C; // type:function size:0xC +RegisterStream__Q26Quazal22TransportStreamManagerFPQ26Quazal6StreamUcPUc = .text:0x8003A138; // type:function size:0x174 +fn_8003A2AC = .text:0x8003A2AC; // type:function size:0x44 +fn_8003A2F0 = .text:0x8003A2F0; // type:function size:0xC +UnregisterStream__Q26Quazal22TransportStreamManagerFQ36Quazal6Stream4TypeUc = .text:0x8003A2FC; // type:function size:0xAC +fn_8003A3A8 = .text:0x8003A3A8; // type:function size:0x94 +fn_8003A43C = .text:0x8003A43C; // type:function size:0x8C +fn_8003A4C8 = .text:0x8003A4C8; // type:function size:0x4C +fn_8003A514 = .text:0x8003A514; // type:function size:0x1BC +fn_8003A6D0 = .text:0x8003A6D0; // type:function size:0x88 +fn_8003A758 = .text:0x8003A758; // type:function size:0x100 +fn_8003A858 = .text:0x8003A858; // type:function size:0x68 +fn_8003A8C0 = .text:0x8003A8C0; // type:function size:0x64 +fn_8003A924 = .text:0x8003A924; // type:function size:0x44 +fn_8003A968 = .text:0x8003A968; // type:function size:0x68 +fn_8003A9D0 = .text:0x8003A9D0; // type:function size:0x74 +fn_8003AA44 = .text:0x8003AA44; // type:function size:0x38 +fn_8003AA7C = .text:0x8003AA7C; // type:function size:0xA8 +fn_8003AB24 = .text:0x8003AB24; // type:function size:0x58 +fn_8003AB7C = .text:0x8003AB7C; // type:function size:0x2C +fn_8003ABA8 = .text:0x8003ABA8; // type:function size:0x68 +fn_8003AC10 = .text:0x8003AC10; // type:function size:0x184 +fn_8003AD94 = .text:0x8003AD94; // type:function size:0x64 +fn_8003ADF8 = .text:0x8003ADF8; // type:function size:0x38 +fn_8003AE30 = .text:0x8003AE30; // type:function size:0x38 +fn_8003AE68 = .text:0x8003AE68; // type:function size:0x138 +fn_8003AFA0 = .text:0x8003AFA0; // type:function size:0x90 +fn_8003B030 = .text:0x8003B030; // type:function size:0xEC +fn_8003B11C = .text:0x8003B11C; // type:function size:0x78 +fn_8003B194 = .text:0x8003B194; // type:function size:0x4 +__ct__Q26Quazal12URLProbeListFv = .text:0x8003B198; // type:function size:0x3C +fn_8003B1D4 = .text:0x8003B1D4; // type:function size:0x68 +fn_8003B23C = .text:0x8003B23C; // type:function size:0x60 +fn_8003B29C = .text:0x8003B29C; // type:function size:0x3C +fn_8003B2D8 = .text:0x8003B2D8; // type:function size:0x58 +fn_8003B330 = .text:0x8003B330; // type:function size:0x9C +fn_8003B3CC = .text:0x8003B3CC; // type:function size:0xF0 +fn_8003B4BC = .text:0x8003B4BC; // type:function size:0x78 +fn_8003B534 = .text:0x8003B534; // type:function size:0x4C +fn_8003B580 = .text:0x8003B580; // type:function size:0x5C +fn_8003B5DC = .text:0x8003B5DC; // type:function size:0x50 +fn_8003B62C = .text:0x8003B62C; // type:function size:0x8 +fn_8003B634 = .text:0x8003B634; // type:function size:0xC +fn_8003B640 = .text:0x8003B640; // type:function size:0x70 +fn_8003B6B0 = .text:0x8003B6B0; // type:function size:0x60 +fn_8003B710 = .text:0x8003B710; // type:function size:0xD8 +fn_8003B7E8 = .text:0x8003B7E8; // type:function size:0xA8 +fn_8003B890 = .text:0x8003B890; // type:function size:0x44 +fn_8003B8D4 = .text:0x8003B8D4; // type:function size:0xC +fn_8003B8E0 = .text:0x8003B8E0; // type:function size:0x74 +fn_8003B954 = .text:0x8003B954; // type:function size:0xA0 +fn_8003B9F4 = .text:0x8003B9F4; // type:function size:0x70 +fn_8003BA64 = .text:0x8003BA64; // type:function size:0x8 +fn_8003BA6C = .text:0x8003BA6C; // type:function size:0x58 +fn_8003BAC4 = .text:0x8003BAC4; // type:function size:0x6C +fn_8003BB30 = .text:0x8003BB30; // type:function size:0x4 +fn_8003BB34 = .text:0x8003BB34; // type:function size:0x50 +fn_8003BB84 = .text:0x8003BB84; // type:function size:0x80 +fn_8003BC04 = .text:0x8003BC04; // type:function size:0x8 +fn_8003BC0C = .text:0x8003BC0C; // type:function size:0x64 +fn_8003BC70 = .text:0x8003BC70; // type:function size:0x36C +fn_8003BFDC = .text:0x8003BFDC; // type:function size:0x130 +fn_8003C10C = .text:0x8003C10C; // type:function size:0xFC +fn_8003C208 = .text:0x8003C208; // type:function size:0x74 +fn_8003C27C = .text:0x8003C27C; // type:function size:0x44 +fn_8003C2C0 = .text:0x8003C2C0; // type:function size:0x5C +fn_8003C31C = .text:0x8003C31C; // type:function size:0x74 +fn_8003C390 = .text:0x8003C390; // type:function size:0x258 +fn_8003C5E8 = .text:0x8003C5E8; // type:function size:0x54 +fn_8003C63C = .text:0x8003C63C; // type:function size:0x58 +fn_8003C694 = .text:0x8003C694; // type:function size:0x1C +fn_8003C6B0 = .text:0x8003C6B0; // type:function size:0x48 +fn_8003C6F8 = .text:0x8003C6F8; // type:function size:0x178 +fn_8003C870 = .text:0x8003C870; // type:function size:0x228 +fn_8003CA98 = .text:0x8003CA98; // type:function size:0x78 +fn_8003CB10 = .text:0x8003CB10; // type:function size:0x14 +fn_8003CB24 = .text:0x8003CB24; // type:function size:0x14 +fn_8003CB38 = .text:0x8003CB38; // type:function size:0x8 +fn_8003CB40 = .text:0x8003CB40; // type:function size:0x230 +fn_8003CD70 = .text:0x8003CD70; // type:function size:0x10 +fn_8003CD80 = .text:0x8003CD80; // type:function size:0x14 +fn_8003CD94 = .text:0x8003CD94; // type:function size:0x1C4 +fn_8003CF58 = .text:0x8003CF58; // type:function size:0x1C4 +fn_8003D11C = .text:0x8003D11C; // type:function size:0x144 +fn_8003D260 = .text:0x8003D260; // type:function size:0xC +fn_8003D26C = .text:0x8003D26C; // type:function size:0x64 +fn_8003D2D0 = .text:0x8003D2D0; // type:function size:0x154 +fn_8003D424 = .text:0x8003D424; // type:function size:0x58 +fn_8003D47C = .text:0x8003D47C; // type:function size:0xE4 +fn_8003D560 = .text:0x8003D560; // type:function size:0xB0 +fn_8003D610 = .text:0x8003D610; // type:function size:0x14 +fn_8003D624 = .text:0x8003D624; // type:function size:0x100 +fn_8003D724 = .text:0x8003D724; // type:function size:0x5F8 +fn_8003DD1C = .text:0x8003DD1C; // type:function size:0x1C +fn_8003DD38 = .text:0x8003DD38; // type:function size:0xE4 +fn_8003DE1C = .text:0x8003DE1C; // type:function size:0x164 +fn_8003DF80 = .text:0x8003DF80; // type:function size:0x8 +fn_8003DF88 = .text:0x8003DF88; // type:function size:0xC +fn_8003DF94 = .text:0x8003DF94; // type:function size:0xFC +fn_8003E090 = .text:0x8003E090; // type:function size:0x8 +fn_8003E098 = .text:0x8003E098; // type:function size:0x5C +fn_8003E0F4 = .text:0x8003E0F4; // type:function size:0x1A4 +fn_8003E298 = .text:0x8003E298; // type:function size:0x8 +fn_8003E2A0 = .text:0x8003E2A0; // type:function size:0x13C +fn_8003E3DC = .text:0x8003E3DC; // type:function size:0x70 +fn_8003E44C = .text:0x8003E44C; // type:function size:0x8 +fn_8003E454 = .text:0x8003E454; // type:function size:0xC +fn_8003E460 = .text:0x8003E460; // type:function size:0x14 +fn_8003E474 = .text:0x8003E474; // type:function size:0x10 +fn_8003E484 = .text:0x8003E484; // type:function size:0x8 +fn_8003E48C = .text:0x8003E48C; // type:function size:0xAC +fn_8003E538 = .text:0x8003E538; // type:function size:0x68 +fn_8003E5A0 = .text:0x8003E5A0; // type:function size:0x158 +fn_8003E6F8 = .text:0x8003E6F8; // type:function size:0x50 +fn_8003E748 = .text:0x8003E748; // type:function size:0x5C +fn_8003E7A4 = .text:0x8003E7A4; // type:function size:0x50 +fn_8003E7F4 = .text:0x8003E7F4; // type:function size:0x70 +fn_8003E864 = .text:0x8003E864; // type:function size:0x170 +fn_8003E9D4 = .text:0x8003E9D4; // type:function size:0x20 +fn_8003E9F4 = .text:0x8003E9F4; // type:function size:0x60 +fn_8003EA54 = .text:0x8003EA54; // type:function size:0x4 +fn_8003EA58 = .text:0x8003EA58; // type:function size:0x98 +fn_8003EAF0 = .text:0x8003EAF0; // type:function size:0x30 +fn_8003EB20 = .text:0x8003EB20; // type:function size:0x10 +fn_8003EB30 = .text:0x8003EB30; // type:function size:0x12C +fn_8003EC5C = .text:0x8003EC5C; // type:function size:0xA4 +fn_8003ED00 = .text:0x8003ED00; // type:function size:0x44 +fn_8003ED44 = .text:0x8003ED44; // type:function size:0x44 +fn_8003ED88 = .text:0x8003ED88; // type:function size:0x50 +fn_8003EDD8 = .text:0x8003EDD8; // type:function size:0x94 +fn_8003EE6C = .text:0x8003EE6C; // type:function size:0x90 +fn_8003EEFC = .text:0x8003EEFC; // type:function size:0x70 +fn_8003EF6C = .text:0x8003EF6C; // type:function size:0x88 +fn_8003EFF4 = .text:0x8003EFF4; // type:function size:0x84 +fn_8003F078 = .text:0x8003F078; // type:function size:0x54 +fn_8003F0CC = .text:0x8003F0CC; // type:function size:0x68 +fn_8003F134 = .text:0x8003F134; // type:function size:0x104 +fn_8003F238 = .text:0x8003F238; // type:function size:0x98 +fn_8003F2D0 = .text:0x8003F2D0; // type:function size:0x7C +fn_8003F34C = .text:0x8003F34C; // type:function size:0x70 +fn_8003F3BC = .text:0x8003F3BC; // type:function size:0xBC +fn_8003F478 = .text:0x8003F478; // type:function size:0x80 +fn_8003F4F8 = .text:0x8003F4F8; // type:function size:0x70 +fn_8003F568 = .text:0x8003F568; // type:function size:0xBC +fn_8003F624 = .text:0x8003F624; // type:function size:0x80 +fn_8003F6A4 = .text:0x8003F6A4; // type:function size:0x8 +fn_8003F6AC = .text:0x8003F6AC; // type:function size:0x104 +fn_8003F7B0 = .text:0x8003F7B0; // type:function size:0x12C +fn_8003F8DC = .text:0x8003F8DC; // type:function size:0x2C +fn_8003F908 = .text:0x8003F908; // type:function size:0x6C +fn_8003F974 = .text:0x8003F974; // type:function size:0x124 +fn_8003FA98 = .text:0x8003FA98; // type:function size:0xB8 +fn_8003FB50 = .text:0x8003FB50; // type:function size:0x2F8 +fn_8003FE48 = .text:0x8003FE48; // type:function size:0x9C +fn_8003FEE4 = .text:0x8003FEE4; // type:function size:0x34 +fn_8003FF18 = .text:0x8003FF18; // type:function size:0xC4 +fn_8003FFDC = .text:0x8003FFDC; // type:function size:0x60 +fn_8004003C = .text:0x8004003C; // type:function size:0x7C +fn_800400B8 = .text:0x800400B8; // type:function size:0x64 +fn_8004011C = .text:0x8004011C; // type:function size:0x4C +fn_80040168 = .text:0x80040168; // type:function size:0x78 +fn_800401E0 = .text:0x800401E0; // type:function size:0x120 +fn_80040300 = .text:0x80040300; // type:function size:0xF4 +fn_800403F4 = .text:0x800403F4; // type:function size:0x74 +fn_80040468 = .text:0x80040468; // type:function size:0x44 +fn_800404AC = .text:0x800404AC; // type:function size:0xEC +fn_80040598 = .text:0x80040598; // type:function size:0x74 +fn_8004060C = .text:0x8004060C; // type:function size:0x18 +fn_80040624 = .text:0x80040624; // type:function size:0x40 +fn_80040664 = .text:0x80040664; // type:function size:0x3C +fn_800406A0 = .text:0x800406A0; // type:function size:0xF4 +fn_80040794 = .text:0x80040794; // type:function size:0x5C +fn_800407F0 = .text:0x800407F0; // type:function size:0x50 +fn_80040840 = .text:0x80040840; // type:function size:0x90 +fn_800408D0 = .text:0x800408D0; // type:function size:0x20 +fn_800408F0 = .text:0x800408F0; // type:function size:0x20 +fn_80040910 = .text:0x80040910; // type:function size:0x70 +fn_80040980 = .text:0x80040980; // type:function size:0xC0 +fn_80040A40 = .text:0x80040A40; // type:function size:0x50 +fn_80040A90 = .text:0x80040A90; // type:function size:0x1AC +fn_80040C3C = .text:0x80040C3C; // type:function size:0x8 +fn_80040C44 = .text:0x80040C44; // type:function size:0xC0 +fn_80040D04 = .text:0x80040D04; // type:function size:0x104 +fn_80040E08 = .text:0x80040E08; // type:function size:0xA8 +fn_80040EB0 = .text:0x80040EB0; // type:function size:0x104 +fn_80040FB4 = .text:0x80040FB4; // type:function size:0x94 +fn_80041048 = .text:0x80041048; // type:function size:0x94 +fn_800410DC = .text:0x800410DC; // type:function size:0x54 +fn_80041130 = .text:0x80041130; // type:function size:0x1C +fn_8004114C = .text:0x8004114C; // type:function size:0x34 +fn_80041180 = .text:0x80041180; // type:function size:0x58 +fn_800411D8 = .text:0x800411D8; // type:function size:0x36C +fn_80041544 = .text:0x80041544; // type:function size:0x64 +fn_800415A8 = .text:0x800415A8; // type:function size:0x2D4 +fn_8004187C = .text:0x8004187C; // type:function size:0x130 +fn_800419AC = .text:0x800419AC; // type:function size:0xFC +fn_80041AA8 = .text:0x80041AA8; // type:function size:0x74 +fn_80041B1C = .text:0x80041B1C; // type:function size:0x118 +fn_80041C34 = .text:0x80041C34; // type:function size:0xEC +fn_80041D20 = .text:0x80041D20; // type:function size:0x74 +fn_80041D94 = .text:0x80041D94; // type:function size:0xE0 +fn_80041E74 = .text:0x80041E74; // type:function size:0xA4 +fn_80041F18 = .text:0x80041F18; // type:function size:0x88 +fn_80041FA0 = .text:0x80041FA0; // type:function size:0x5C +fn_80041FFC = .text:0x80041FFC; // type:function size:0x50 +fn_8004204C = .text:0x8004204C; // type:function size:0xAC +fn_800420F8 = .text:0x800420F8; // type:function size:0xC8 +fn_800421C0 = .text:0x800421C0; // type:function size:0x30 +fn_800421F0 = .text:0x800421F0; // type:function size:0xB0 +fn_800422A0 = .text:0x800422A0; // type:function size:0x70 +fn_80042310 = .text:0x80042310; // type:function size:0x8C +fn_8004239C = .text:0x8004239C; // type:function size:0x90 +fn_8004242C = .text:0x8004242C; // type:function size:0xA8 +fn_800424D4 = .text:0x800424D4; // type:function size:0x14 +fn_800424E8 = .text:0x800424E8; // type:function size:0x14 +fn_800424FC = .text:0x800424FC; // type:function size:0x94 +fn_80042590 = .text:0x80042590; // type:function size:0x64 +fn_800425F4 = .text:0x800425F4; // type:function size:0xC8 +fn_800426BC = .text:0x800426BC; // type:function size:0xCC +fn_80042788 = .text:0x80042788; // type:function size:0x50 +fn_800427D8 = .text:0x800427D8; // type:function size:0x50 +fn_80042828 = .text:0x80042828; // type:function size:0x88 +fn_800428B0 = .text:0x800428B0; // type:function size:0x150 +fn_80042A00 = .text:0x80042A00; // type:function size:0x50 +fn_80042A50 = .text:0x80042A50; // type:function size:0xF4 +fn_80042B44 = .text:0x80042B44; // type:function size:0x48 +fn_80042B8C = .text:0x80042B8C; // type:function size:0x48 +fn_80042BD4 = .text:0x80042BD4; // type:function size:0xF4 +fn_80042CC8 = .text:0x80042CC8; // type:function size:0x64 +fn_80042D2C = .text:0x80042D2C; // type:function size:0x60 +fn_80042D8C = .text:0x80042D8C; // type:function size:0x64 +fn_80042DF0 = .text:0x80042DF0; // type:function size:0x110 +fn_80042F00 = .text:0x80042F00; // type:function size:0xEC +fn_80042FEC = .text:0x80042FEC; // type:function size:0x60 +fn_8004304C = .text:0x8004304C; // type:function size:0x100 +fn_8004314C = .text:0x8004314C; // type:function size:0x74 +fn_800431C0 = .text:0x800431C0; // type:function size:0x44 +fn_80043204 = .text:0x80043204; // type:function size:0x68 +fn_8004326C = .text:0x8004326C; // type:function size:0x58 +fn_800432C4 = .text:0x800432C4; // type:function size:0x5C +fn_80043320 = .text:0x80043320; // type:function size:0x50 +fn_80043370 = .text:0x80043370; // type:function size:0x68 +fn_800433D8 = .text:0x800433D8; // type:function size:0x5C +fn_80043434 = .text:0x80043434; // type:function size:0x50 +fn_80043484 = .text:0x80043484; // type:function size:0x5C +fn_800434E0 = .text:0x800434E0; // type:function size:0x50 +fn_80043530 = .text:0x80043530; // type:function size:0x38 +fn_80043568 = .text:0x80043568; // type:function size:0x70 +fn_800435D8 = .text:0x800435D8; // type:function size:0x70 +fn_80043648 = .text:0x80043648; // type:function size:0x6C +fn_800436B4 = .text:0x800436B4; // type:function size:0x5C +fn_80043710 = .text:0x80043710; // type:function size:0x60 +fn_80043770 = .text:0x80043770; // type:function size:0x60 +fn_800437D0 = .text:0x800437D0; // type:function size:0xC +fn_800437DC = .text:0x800437DC; // type:function size:0xC0 +fn_8004389C = .text:0x8004389C; // type:function size:0x114 +fn_800439B0 = .text:0x800439B0; // type:function size:0x5C +fn_80043A0C = .text:0x80043A0C; // type:function size:0x74 +fn_80043A80 = .text:0x80043A80; // type:function size:0x70 +fn_80043AF0 = .text:0x80043AF0; // type:function size:0x6C +fn_80043B5C = .text:0x80043B5C; // type:function size:0x70 +fn_80043BCC = .text:0x80043BCC; // type:function size:0x5C +fn_80043C28 = .text:0x80043C28; // type:function size:0x74 +fn_80043C9C = .text:0x80043C9C; // type:function size:0x5C +fn_80043CF8 = .text:0x80043CF8; // type:function size:0xA4 +fn_80043D9C = .text:0x80043D9C; // type:function size:0x44 +fn_80043DE0 = .text:0x80043DE0; // type:function size:0x6C +fn_80043E4C = .text:0x80043E4C; // type:function size:0xB4 +fn_80043F00 = .text:0x80043F00; // type:function size:0x40 +fn_80043F40 = .text:0x80043F40; // type:function size:0x34 +fn_80043F74 = .text:0x80043F74; // type:function size:0x90 +fn_80044004 = .text:0x80044004; // type:function size:0x58 +fn_8004405C = .text:0x8004405C; // type:function size:0x5C +fn_800440B8 = .text:0x800440B8; // type:function size:0x64 +fn_8004411C = .text:0x8004411C; // type:function size:0x2CC +fn_800443E8 = .text:0x800443E8; // type:function size:0x330 +fn_80044718 = .text:0x80044718; // type:function size:0x114 +fn_8004482C = .text:0x8004482C; // type:function size:0xEC +fn_80044918 = .text:0x80044918; // type:function size:0x74 +fn_8004498C = .text:0x8004498C; // type:function size:0x40 +fn_800449CC = .text:0x800449CC; // type:function size:0x120 +fn_80044AEC = .text:0x80044AEC; // type:function size:0xF4 +fn_80044BE0 = .text:0x80044BE0; // type:function size:0x74 +fn_80044C54 = .text:0x80044C54; // type:function size:0x44 +fn_80044C98 = .text:0x80044C98; // type:function size:0x88 +fn_80044D20 = .text:0x80044D20; // type:function size:0xD4 +fn_80044DF4 = .text:0x80044DF4; // type:function size:0x2CC +fn_800450C0 = .text:0x800450C0; // type:function size:0xC8 +fn_80045188 = .text:0x80045188; // type:function size:0x4 +fn_8004518C = .text:0x8004518C; // type:function size:0x54 +fn_800451E0 = .text:0x800451E0; // type:function size:0x70 +fn_80045250 = .text:0x80045250; // type:function size:0x60 +fn_800452B0 = .text:0x800452B0; // type:function size:0x118 +fn_800453C8 = .text:0x800453C8; // type:function size:0x48 +fn_80045410 = .text:0x80045410; // type:function size:0x44 +fn_80045454 = .text:0x80045454; // type:function size:0x44 +fn_80045498 = .text:0x80045498; // type:function size:0x40 +fn_800454D8 = .text:0x800454D8; // type:function size:0x2C +fn_80045504 = .text:0x80045504; // type:function size:0x50 +fn_80045554 = .text:0x80045554; // type:function size:0x70 +fn_800455C4 = .text:0x800455C4; // type:function size:0x120 +fn_800456E4 = .text:0x800456E4; // type:function size:0xF4 +fn_800457D8 = .text:0x800457D8; // type:function size:0x74 +fn_8004584C = .text:0x8004584C; // type:function size:0x5C +fn_800458A8 = .text:0x800458A8; // type:function size:0x58 +fn_80045900 = .text:0x80045900; // type:function size:0x90 +fn_80045990 = .text:0x80045990; // type:function size:0x60 +fn_800459F0 = .text:0x800459F0; // type:function size:0x64 +fn_80045A54 = .text:0x80045A54; // type:function size:0x58 +fn_80045AAC = .text:0x80045AAC; // type:function size:0x70 +fn_80045B1C = .text:0x80045B1C; // type:function size:0x4C +fn_80045B68 = .text:0x80045B68; // type:function size:0x40 +fn_80045BA8 = .text:0x80045BA8; // type:function size:0x64 +fn_80045C0C = .text:0x80045C0C; // type:function size:0x60 +fn_80045C6C = .text:0x80045C6C; // type:function size:0xCC +fn_80045D38 = .text:0x80045D38; // type:function size:0xD0 +fn_80045E08 = .text:0x80045E08; // type:function size:0x88 +fn_80045E90 = .text:0x80045E90; // type:function size:0x48 +fn_80045ED8 = .text:0x80045ED8; // type:function size:0x64 +fn_80045F3C = .text:0x80045F3C; // type:function size:0x50 +fn_80045F8C = .text:0x80045F8C; // type:function size:0x68 +fn_80045FF4 = .text:0x80045FF4; // type:function size:0x1A8 +fn_8004619C = .text:0x8004619C; // type:function size:0x70 +fn_8004620C = .text:0x8004620C; // type:function size:0x38 +fn_80046244 = .text:0x80046244; // type:function size:0xE4 +fn_80046328 = .text:0x80046328; // type:function size:0xC +fn_80046334 = .text:0x80046334; // type:function size:0x70 +fn_800463A4 = .text:0x800463A4; // type:function size:0x6C +fn_80046410 = .text:0x80046410; // type:function size:0xBC +fn_800464CC = .text:0x800464CC; // type:function size:0xA4 +fn_80046570 = .text:0x80046570; // type:function size:0x68 +fn_800465D8 = .text:0x800465D8; // type:function size:0x8 +fn_800465E0 = .text:0x800465E0; // type:function size:0x2F4 +fn_800468D4 = .text:0x800468D4; // type:function size:0x60 +fn_80046934 = .text:0x80046934; // type:function size:0x64 +fn_80046998 = .text:0x80046998; // type:function size:0x378 +fn_80046D10 = .text:0x80046D10; // type:function size:0x58 +fn_80046D68 = .text:0x80046D68; // type:function size:0xE4 +fn_80046E4C = .text:0x80046E4C; // type:function size:0x88 +fn_80046ED4 = .text:0x80046ED4; // type:function size:0x348 +fn_8004721C = .text:0x8004721C; // type:function size:0x74 +fn_80047290 = .text:0x80047290; // type:function size:0x74 +fn_80047304 = .text:0x80047304; // type:function size:0xC4 +fn_800473C8 = .text:0x800473C8; // type:function size:0x6C +fn_80047434 = .text:0x80047434; // type:function size:0x74 +fn_800474A8 = .text:0x800474A8; // type:function size:0x70 +fn_80047518 = .text:0x80047518; // type:function size:0x54 +fn_8004756C = .text:0x8004756C; // type:function size:0x94 +fn_80047600 = .text:0x80047600; // type:function size:0x98 +fn_80047698 = .text:0x80047698; // type:function size:0x94 +fn_8004772C = .text:0x8004772C; // type:function size:0x68 +fn_80047794 = .text:0x80047794; // type:function size:0x9C +fn_80047830 = .text:0x80047830; // type:function size:0x34 +fn_80047864 = .text:0x80047864; // type:function size:0x70 +fn_800478D4 = .text:0x800478D4; // type:function size:0x58 +fn_8004792C = .text:0x8004792C; // type:function size:0x60 +fn_8004798C = .text:0x8004798C; // type:function size:0x58 +fn_800479E4 = .text:0x800479E4; // type:function size:0xA0 +fn_80047A84 = .text:0x80047A84; // type:function size:0xC0 +fn_80047B44 = .text:0x80047B44; // type:function size:0x2B8 +fn_80047DFC = .text:0x80047DFC; // type:function size:0x8C +fn_80047E88 = .text:0x80047E88; // type:function size:0xC4 +fn_80047F4C = .text:0x80047F4C; // type:function size:0xF8 +fn_80048044 = .text:0x80048044; // type:function size:0x134 +fn_80048178 = .text:0x80048178; // type:function size:0xF4 +fn_8004826C = .text:0x8004826C; // type:function size:0x64 +fn_800482D0 = .text:0x800482D0; // type:function size:0x40 +fn_80048310 = .text:0x80048310; // type:function size:0x8 +fn_80048318 = .text:0x80048318; // type:function size:0x58 +fn_80048370 = .text:0x80048370; // type:function size:0xAC +fn_8004841C = .text:0x8004841C; // type:function size:0x68 +fn_80048484 = .text:0x80048484; // type:function size:0x8 +fn_8004848C = .text:0x8004848C; // type:function size:0x4C +fn_800484D8 = .text:0x800484D8; // type:function size:0x8 +fn_800484E0 = .text:0x800484E0; // type:function size:0xCC +fn_800485AC = .text:0x800485AC; // type:function size:0x60 +fn_8004860C = .text:0x8004860C; // type:function size:0x48 +fn_80048654 = .text:0x80048654; // type:function size:0x58 +fn_800486AC = .text:0x800486AC; // type:function size:0x5C +fn_80048708 = .text:0x80048708; // type:function size:0x8C +fn_80048794 = .text:0x80048794; // type:function size:0x40 +fn_800487D4 = .text:0x800487D4; // type:function size:0x54 +fn_80048828 = .text:0x80048828; // type:function size:0x48 +fn_80048870 = .text:0x80048870; // type:function size:0x180 +fn_800489F0 = .text:0x800489F0; // type:function size:0x6C +fn_80048A5C = .text:0x80048A5C; // type:function size:0x17C +fn_80048BD8 = .text:0x80048BD8; // type:function size:0x50 +fn_80048C28 = .text:0x80048C28; // type:function size:0x60 +fn_80048C88 = .text:0x80048C88; // type:function size:0x138 +fn_80048DC0 = .text:0x80048DC0; // type:function size:0x1A8 +fn_80048F68 = .text:0x80048F68; // type:function size:0x94 +fn_80048FFC = .text:0x80048FFC; // type:function size:0x160 +fn_8004915C = .text:0x8004915C; // type:function size:0x50 +fn_800491AC = .text:0x800491AC; // type:function size:0x180 +fn_8004932C = .text:0x8004932C; // type:function size:0x58 +fn_80049384 = .text:0x80049384; // type:function size:0x13C +fn_800494C0 = .text:0x800494C0; // type:function size:0x8C +fn_8004954C = .text:0x8004954C; // type:function size:0x64 +fn_800495B0 = .text:0x800495B0; // type:function size:0x8 +fn_800495B8 = .text:0x800495B8; // type:function size:0x180 +fn_80049738 = .text:0x80049738; // type:function size:0xE8 +fn_80049820 = .text:0x80049820; // type:function size:0xD4 +fn_800498F4 = .text:0x800498F4; // type:function size:0x1B8 +fn_80049AAC = .text:0x80049AAC; // type:function size:0x68 +fn_80049B14 = .text:0x80049B14; // type:function size:0x7C +fn_80049B90 = .text:0x80049B90; // type:function size:0x8C +fn_80049C1C = .text:0x80049C1C; // type:function size:0x8C +fn_80049CA8 = .text:0x80049CA8; // type:function size:0x4C +fn_80049CF4 = .text:0x80049CF4; // type:function size:0xC +fn_80049D00 = .text:0x80049D00; // type:function size:0x2C +fn_80049D2C = .text:0x80049D2C; // type:function size:0x100 +fn_80049E2C = .text:0x80049E2C; // type:function size:0x68 +fn_80049E94 = .text:0x80049E94; // type:function size:0x64 +fn_80049EF8 = .text:0x80049EF8; // type:function size:0x14 +fn_80049F0C = .text:0x80049F0C; // type:function size:0x68 +fn_80049F74 = .text:0x80049F74; // type:function size:0x74 +fn_80049FE8 = .text:0x80049FE8; // type:function size:0x38 +fn_8004A020 = .text:0x8004A020; // type:function size:0xA8 +fn_8004A0C8 = .text:0x8004A0C8; // type:function size:0xC +fn_8004A0D4 = .text:0x8004A0D4; // type:function size:0x8 +fn_8004A0DC = .text:0x8004A0DC; // type:function size:0x58 +fn_8004A134 = .text:0x8004A134; // type:function size:0x30 +fn_8004A164 = .text:0x8004A164; // type:function size:0x68 +fn_8004A1CC = .text:0x8004A1CC; // type:function size:0x188 +fn_8004A354 = .text:0x8004A354; // type:function size:0x64 +fn_8004A3B8 = .text:0x8004A3B8; // type:function size:0x68 +fn_8004A420 = .text:0x8004A420; // type:function size:0x138 +fn_8004A558 = .text:0x8004A558; // type:function size:0x64 +fn_8004A5BC = .text:0x8004A5BC; // type:function size:0x58 +fn_8004A614 = .text:0x8004A614; // type:function size:0x4 +fn_8004A618 = .text:0x8004A618; // type:function size:0x58 +fn_8004A670 = .text:0x8004A670; // type:function size:0x8 +fn_8004A678 = .text:0x8004A678; // type:function size:0xC +fn_8004A684 = .text:0x8004A684; // type:function size:0x4 +fn_8004A688 = .text:0x8004A688; // type:function size:0x140 +fn_8004A7C8 = .text:0x8004A7C8; // type:function size:0x1D4 +fn_8004A99C = .text:0x8004A99C; // type:function size:0x108 +fn_8004AAA4 = .text:0x8004AAA4; // type:function size:0x80 +fn_8004AB24 = .text:0x8004AB24; // type:function size:0xC +fn_8004AB30 = .text:0x8004AB30; // type:function size:0x3C +fn_8004AB6C = .text:0x8004AB6C; // type:function size:0x78 +fn_8004ABE4 = .text:0x8004ABE4; // type:function size:0x70 +fn_8004AC54 = .text:0x8004AC54; // type:function size:0x80 +fn_8004ACD4 = .text:0x8004ACD4; // type:function size:0x98 +fn_8004AD6C = .text:0x8004AD6C; // type:function size:0x60 +fn_8004ADCC = .text:0x8004ADCC; // type:function size:0x60 +fn_8004AE2C = .text:0x8004AE2C; // type:function size:0x5C +fn_8004AE88 = .text:0x8004AE88; // type:function size:0x94 +__ct__Q26Quazal8ProtocolFUi = .text:0x8004AF1C; // type:function size:0x90 +__dt__Q26Quazal8ProtocolFv = .text:0x8004AFAC; // type:function size:0x58 +SetProtocolID__Q26Quazal8ProtocolFUc = .text:0x8004B004; // type:function size:0x8 +AssociateProtocolRequestBroker__Q26Quazal8ProtocolFPQ26Quazal21ProtocolRequestBroker = .text:0x8004B00C; // type:function size:0x8 +TraceImpl__Q26Quazal8ProtocolCFUi = .text:0x8004B014; // type:function size:0x4 +FlagIsSet__Q26Quazal8ProtocolCFUi = .text:0x8004B018; // type:function size:0x18 +SetFlag__Q26Quazal8ProtocolFUi = .text:0x8004B030; // type:function size:0x10 +BeginInitialization__Q26Quazal8ProtocolFv = .text:0x8004B040; // type:function size:0x3C +BeginTermination__Q26Quazal8ProtocolFv = .text:0x8004B07C; // type:function size:0x3C +AddCallOutcome__Q26Quazal8ProtocolFPQ26Quazal7MessageQ26Quazal7qResult = .text:0x8004B0B8; // type:function size:0x8C +ExtractCallOutcome__Q26Quazal8ProtocolFPQ26Quazal7MessagePQ26Quazal7qResult = .text:0x8004B144; // type:function size:0x9C +ExtractCallContextID__Q26Quazal8ProtocolFPQ26Quazal7Message = .text:0x8004B1E0; // type:function size:0x30 +fn_8004B210 = .text:0x8004B210; // type:function size:0x5C +fn_8004B26C = .text:0x8004B26C; // type:function size:0x90 +fn_8004B2FC = .text:0x8004B2FC; // type:function size:0x30 +fn_8004B32C = .text:0x8004B32C; // type:function size:0x30 +fn_8004B35C = .text:0x8004B35C; // type:function size:0x30 +fn_8004B38C = .text:0x8004B38C; // type:function size:0x30 +fn_8004B3BC = .text:0x8004B3BC; // type:function size:0x48 +fn_8004B404 = .text:0x8004B404; // type:function size:0x8 +fn_8004B40C = .text:0x8004B40C; // type:function size:0x48 +fn_8004B454 = .text:0x8004B454; // type:function size:0x1C +fn_8004B470 = .text:0x8004B470; // type:function size:0x8 +fn_8004B478 = .text:0x8004B478; // type:function size:0x8 +fn_8004B480 = .text:0x8004B480; // type:function size:0x8 +fn_8004B488 = .text:0x8004B488; // type:function size:0xC +fn_8004B494 = .text:0x8004B494; // type:function size:0xC +fn_8004B4A0 = .text:0x8004B4A0; // type:function size:0x2C +__ct__Q26Quazal19ProtocolCallContextFv = .text:0x8004B4CC; // type:function size:0x50 +__dt__Q26Quazal19ProtocolCallContextFv = .text:0x8004B51C; // type:function size:0xB8 +BeginTransition__Q26Quazal19ProtocolCallContextFQ36Quazal11CallContext6_StateQ26Quazal7qResultb = .text:0x8004B5D4; // type:function size:0x90 +fn_8004B664 = .text:0x8004B664; // type:function size:0x2C +fn_8004B690 = .text:0x8004B690; // type:function size:0x1C +fn_8004B6AC = .text:0x8004B6AC; // type:function size:0x44 +fn_8004B6F0 = .text:0x8004B6F0; // type:function size:0x68 +fn_8004B758 = .text:0x8004B758; // type:function size:0x15C +fn_8004B8B4 = .text:0x8004B8B4; // type:function size:0x1C +fn_8004B8D0 = .text:0x8004B8D0; // type:function size:0x38 +fn_8004B908 = .text:0x8004B908; // type:function size:0xD0 +fn_8004B9D8 = .text:0x8004B9D8; // type:function size:0x5C +fn_8004BA34 = .text:0x8004BA34; // type:function size:0x50 +fn_8004BA84 = .text:0x8004BA84; // type:function size:0x70 +fn_8004BAF4 = .text:0x8004BAF4; // type:function size:0x74 +fn_8004BB68 = .text:0x8004BB68; // type:function size:0x120 +fn_8004BC88 = .text:0x8004BC88; // type:function size:0x58 +fn_8004BCE0 = .text:0x8004BCE0; // type:function size:0x80 +fn_8004BD60 = .text:0x8004BD60; // type:function size:0x38 +fn_8004BD98 = .text:0x8004BD98; // type:function size:0x294 +fn_8004C02C = .text:0x8004C02C; // type:function size:0x5C +fn_8004C088 = .text:0x8004C088; // type:function size:0x48 +fn_8004C0D0 = .text:0x8004C0D0; // type:function size:0xA4 +fn_8004C174 = .text:0x8004C174; // type:function size:0x98 +fn_8004C20C = .text:0x8004C20C; // type:function size:0x15C +fn_8004C368 = .text:0x8004C368; // type:function size:0x8 +fn_8004C370 = .text:0x8004C370; // type:function size:0x128 +fn_8004C498 = .text:0x8004C498; // type:function size:0x170 +fn_8004C608 = .text:0x8004C608; // type:function size:0x4C +fn_8004C654 = .text:0x8004C654; // type:function size:0xF8 +fn_8004C74C = .text:0x8004C74C; // type:function size:0x124 +RegisterProtocol__Q26Quazal21ProtocolRequestBrokerFPQ26Quazal8Protocol = .text:0x8004C870; // type:function size:0xE4 +fn_8004C954 = .text:0x8004C954; // type:function size:0x90 +fn_8004C9E4 = .text:0x8004C9E4; // type:function size:0x34 +UnregisterProtocol__Q26Quazal21ProtocolRequestBrokerFPQ26Quazal8Protocol = .text:0x8004CA18; // type:function size:0xB8 +fn_8004CAD0 = .text:0x8004CAD0; // type:function size:0x4C +fn_8004CB1C = .text:0x8004CB1C; // type:function size:0x10 +fn_8004CB2C = .text:0x8004CB2C; // type:function size:0x8 +fn_8004CB34 = .text:0x8004CB34; // type:function size:0x8 +fn_8004CB3C = .text:0x8004CB3C; // type:function size:0x8 +fn_8004CB44 = .text:0x8004CB44; // type:function size:0x64 +fn_8004CBA8 = .text:0x8004CBA8; // type:function size:0x2CC +fn_8004CE74 = .text:0x8004CE74; // type:function size:0x114 +fn_8004CF88 = .text:0x8004CF88; // type:function size:0xEC +fn_8004D074 = .text:0x8004D074; // type:function size:0x74 +fn_8004D0E8 = .text:0x8004D0E8; // type:function size:0x14 +__ct__Q26Quazal14ServerProtocolFUi = .text:0x8004D0FC; // type:function size:0xA8 +fn_8004D1A4 = .text:0x8004D1A4; // type:function size:0x44 +fn_8004D1E8 = .text:0x8004D1E8; // type:function size:0x3AC +fn_8004D594 = .text:0x8004D594; // type:function size:0x130 +__ct__Q26Quazal19ActiveDOCallContextFQ26Quazal8DOHandleb = .text:0x8004D6C4; // type:function size:0x64 +__dt__Q26Quazal19ActiveDOCallContextFv = .text:0x8004D728; // type:function size:0x88 +fn_8004D7B0 = .text:0x8004D7B0; // type:function size:0x8 +fn_8004D7B8 = .text:0x8004D7B8; // type:function size:0xB0 +fn_8004D868 = .text:0x8004D868; // type:function size:0x184 +fn_8004D9EC = .text:0x8004D9EC; // type:function size:0x8 +fn_8004D9F4 = .text:0x8004D9F4; // type:function size:0xC4 +fn_8004DAB8 = .text:0x8004DAB8; // type:function size:0x40 +fn_8004DAF8 = .text:0x8004DAF8; // type:function size:0xA4 +fn_8004DB9C = .text:0x8004DB9C; // type:function size:0x10 +fn_8004DBAC = .text:0x8004DBAC; // type:function size:0x40 +fn_8004DBEC = .text:0x8004DBEC; // type:function size:0x328 +fn_8004DF14 = .text:0x8004DF14; // type:function size:0x58 +fn_8004DF6C = .text:0x8004DF6C; // type:function size:0x4C +fn_8004DFB8 = .text:0x8004DFB8; // type:function size:0xA4 +fn_8004E05C = .text:0x8004E05C; // type:function size:0x60 +fn_8004E0BC = .text:0x8004E0BC; // type:function size:0x70 +fn_8004E12C = .text:0x8004E12C; // type:function size:0x84 +fn_8004E1B0 = .text:0x8004E1B0; // type:function size:0x44 +fn_8004E1F4 = .text:0x8004E1F4; // type:function size:0x6C +fn_8004E260 = .text:0x8004E260; // type:function size:0x58 +fn_8004E2B8 = .text:0x8004E2B8; // type:function size:0x4 +fn_8004E2BC = .text:0x8004E2BC; // type:function size:0x8 +fn_8004E2C4 = .text:0x8004E2C4; // type:function size:0xC +fn_8004E2D0 = .text:0x8004E2D0; // type:function size:0x8 +__ct__Q26Quazal21ProcessAuthenticationFPQ26Quazal11ProductInfo = .text:0x8004E2D8; // type:function size:0xA8 +__dt__Q26Quazal21ProcessAuthenticationFv = .text:0x8004E380; // type:function size:0x40 +fn_8004E3C0 = .text:0x8004E3C0; // type:function size:0xC +AddSourceTo__Q26Quazal21ProcessAuthenticationFPQ26Quazal7Message = .text:0x8004E3CC; // type:function size:0xC4 +ExtractFrom__Q26Quazal21ProcessAuthenticationFPQ26Quazal7MessagebPQ26Quazal6String = .text:0x8004E490; // type:function size:0x100 +Authenticate__Q26Quazal21ProcessAuthenticationFRCQ26Quazal21ProcessAuthentication = .text:0x8004E590; // type:function size:0xF8 +SetTitle__Q26Quazal21ProcessAuthenticationFPCc = .text:0x8004E688; // type:function size:0xC +GetTitle__Q26Quazal21ProcessAuthenticationFv = .text:0x8004E694; // type:function size:0xC +ComputeTitleChecksum__Q26Quazal21ProcessAuthenticationFv = .text:0x8004E6A0; // type:function size:0x38 +ComputeTitleChecksum__Q26Quazal21ProcessAuthenticationFPCc = .text:0x8004E6D8; // type:function size:0x38 +TransmitParseTree__Q26Quazal21ProcessAuthenticationCFv = .text:0x8004E710; // type:function size:0xC +__ct__Q26Quazal14BundlingPolicyFv = .text:0x8004E71C; // type:function size:0x24 +__dt__Q26Quazal14BundlingPolicyFv = .text:0x8004E740; // type:function size:0x40 +fn_8004E780 = .text:0x8004E780; // type:function size:0x18 +fn_8004E798 = .text:0x8004E798; // type:function size:0x64 +fn_8004E7FC = .text:0x8004E7FC; // type:function size:0xA4 +fn_8004E8A0 = .text:0x8004E8A0; // type:function size:0x10 +__ct__Q26Quazal19CallMethodOperationFUsQ26Quazal8DOHandleUiQ26Quazal8DOHandleUsPQ26Quazal7Message = .text:0x8004E8B0; // type:function size:0xD0 +fn_8004E980 = .text:0x8004E980; // type:function size:0x58 +fn_8004E9D8 = .text:0x8004E9D8; // type:function size:0x138 +fn_8004EB10 = .text:0x8004EB10; // type:function size:0x98 +fn_8004EBA8 = .text:0x8004EBA8; // type:function size:0x8 +fn_8004EBB0 = .text:0x8004EBB0; // type:function size:0x38 +fn_8004EBE8 = .text:0x8004EBE8; // type:function size:0x38 +fn_8004EC20 = .text:0x8004EC20; // type:function size:0x7C +fn_8004EC9C = .text:0x8004EC9C; // type:function size:0x4 +fn_8004ECA0 = .text:0x8004ECA0; // type:function size:0x84 +fn_8004ED24 = .text:0x8004ED24; // type:function size:0x3C +fn_8004ED60 = .text:0x8004ED60; // type:function size:0x4 +fn_8004ED64 = .text:0x8004ED64; // type:function size:0x5C +fn_8004EDC0 = .text:0x8004EDC0; // type:function size:0x8 +fn_8004EDC8 = .text:0x8004EDC8; // type:function size:0x8 +fn_8004EDD0 = .text:0x8004EDD0; // type:function size:0x8 +fn_8004EDD8 = .text:0x8004EDD8; // type:function size:0xC +fn_8004EDE4 = .text:0x8004EDE4; // type:function size:0x4C +fn_8004EE30 = .text:0x8004EE30; // type:function size:0x5C +fn_8004EE8C = .text:0x8004EE8C; // type:function size:0x5C +fn_8004EEE8 = .text:0x8004EEE8; // type:function size:0x50 +fn_8004EF38 = .text:0x8004EF38; // type:function size:0x40 +fn_8004EF78 = .text:0x8004EF78; // type:function size:0x70 +fn_8004EFE8 = .text:0x8004EFE8; // type:function size:0x6C +fn_8004F054 = .text:0x8004F054; // type:function size:0x74 +fn_8004F0C8 = .text:0x8004F0C8; // type:function size:0x8C +fn_8004F154 = .text:0x8004F154; // type:function size:0x24 +fn_8004F178 = .text:0x8004F178; // type:function size:0xE8 +fn_8004F260 = .text:0x8004F260; // type:function size:0x74 +fn_8004F2D4 = .text:0x8004F2D4; // type:function size:0x4 +fn_8004F2D8 = .text:0x8004F2D8; // type:function size:0x70 +fn_8004F348 = .text:0x8004F348; // type:function size:0x50 +fn_8004F398 = .text:0x8004F398; // type:function size:0x78 +fn_8004F410 = .text:0x8004F410; // type:function size:0x80 +fn_8004F490 = .text:0x8004F490; // type:function size:0x90 +fn_8004F520 = .text:0x8004F520; // type:function size:0x6C +fn_8004F58C = .text:0x8004F58C; // type:function size:0x6C +fn_8004F5F8 = .text:0x8004F5F8; // type:function size:0x6C +fn_8004F664 = .text:0x8004F664; // type:function size:0x30 +fn_8004F694 = .text:0x8004F694; // type:function size:0xB0 +fn_8004F744 = .text:0x8004F744; // type:function size:0x70 +fn_8004F7B4 = .text:0x8004F7B4; // type:function size:0x50 +fn_8004F804 = .text:0x8004F804; // type:function size:0x34 +fn_8004F838 = .text:0x8004F838; // type:function size:0x3C +fn_8004F874 = .text:0x8004F874; // type:function size:0xAC +fn_8004F920 = .text:0x8004F920; // type:function size:0x20 +fn_8004F940 = .text:0x8004F940; // type:function size:0x94 +fn_8004F9D4 = .text:0x8004F9D4; // type:function size:0xD4 +fn_8004FAA8 = .text:0x8004FAA8; // type:function size:0x84 +fn_8004FB2C = .text:0x8004FB2C; // type:function size:0x64 +fn_8004FB90 = .text:0x8004FB90; // type:function size:0x54 +fn_8004FBE4 = .text:0x8004FBE4; // type:function size:0xB8 +fn_8004FC9C = .text:0x8004FC9C; // type:function size:0xB8 +fn_8004FD54 = .text:0x8004FD54; // type:function size:0x110 +fn_8004FE64 = .text:0x8004FE64; // type:function size:0x110 +fn_8004FF74 = .text:0x8004FF74; // type:function size:0x90 +fn_80050004 = .text:0x80050004; // type:function size:0x60 +fn_80050064 = .text:0x80050064; // type:function size:0x94 +fn_800500F8 = .text:0x800500F8; // type:function size:0x64 +fn_8005015C = .text:0x8005015C; // type:function size:0x2CC +fn_80050428 = .text:0x80050428; // type:function size:0x114 +fn_8005053C = .text:0x8005053C; // type:function size:0xEC +fn_80050628 = .text:0x80050628; // type:function size:0x74 +fn_8005069C = .text:0x8005069C; // type:function size:0x98 +fn_80050734 = .text:0x80050734; // type:function size:0x6C +fn_800507A0 = .text:0x800507A0; // type:function size:0x8 +fn_800507A8 = .text:0x800507A8; // type:function size:0x1C +fn_800507C4 = .text:0x800507C4; // type:function size:0xA0 +fn_80050864 = .text:0x80050864; // type:function size:0x4 +fn_80050868 = .text:0x80050868; // type:function size:0x8 +fn_80050870 = .text:0x80050870; // type:function size:0xC +fn_8005087C = .text:0x8005087C; // type:function size:0x98 +fn_80050914 = .text:0x80050914; // type:function size:0x78 +fn_8005098C = .text:0x8005098C; // type:function size:0xA4 +fn_80050A30 = .text:0x80050A30; // type:function size:0x94 +fn_80050AC4 = .text:0x80050AC4; // type:function size:0x4 +fn_80050AC8 = .text:0x80050AC8; // type:function size:0x8 +fn_80050AD0 = .text:0x80050AD0; // type:function size:0xC +fn_80050ADC = .text:0x80050ADC; // type:function size:0x48 +fn_80050B24 = .text:0x80050B24; // type:function size:0x98 +fn_80050BBC = .text:0x80050BBC; // type:function size:0x58 +fn_80050C14 = .text:0x80050C14; // type:function size:0x58 +fn_80050C6C = .text:0x80050C6C; // type:function size:0x6C +fn_80050CD8 = .text:0x80050CD8; // type:function size:0x6C +fn_80050D44 = .text:0x80050D44; // type:function size:0x48 +fn_80050D8C = .text:0x80050D8C; // type:function size:0xE0 +FormatVariableValue__Q26Quazal18_DS_ConnectionInfoCFPQ26Quazal8VariablePQ26Quazal6String = .text:0x80050E6C; // type:function size:0x29C +AddSourceTo__Q26Quazal18_DS_ConnectionInfoFPQ26Quazal7MessageQ26Quazal4Timeb = .text:0x80051108; // type:function size:0xCC +CallOperationOnVars__Q26Quazal18_DS_ConnectionInfoFQ36Quazal9Operation6_EventPv = .text:0x800511D4; // type:function size:0x4 +__ct__Q26Quazal21CreateMasterOperationFPQ26Quazal16DuplicatedObjectQ26Quazal8DOHandleQ26Quazal4DOID = .text:0x800511D8; // type:function size:0x94 +fn_8005126C = .text:0x8005126C; // type:function size:0x68 +fn_800512D4 = .text:0x800512D4; // type:function size:0x4 +fn_800512D8 = .text:0x800512D8; // type:function size:0x8 +fn_800512E0 = .text:0x800512E0; // type:function size:0xC +__ct__Q26Quazal15DDLDeclarationsFb = .text:0x800512EC; // type:function size:0x24 +__dt__Q26Quazal15DDLDeclarationsFv = .text:0x80051310; // type:function size:0x40 +RegisterIfRequired__Q26Quazal15DDLDeclarationsFv = .text:0x80051350; // type:function size:0x28 +LoadAll__Q26Quazal15DDLDeclarationsFv = .text:0x80051378; // type:function size:0x44 +UnloadAll__Q26Quazal15DDLDeclarationsFv = .text:0x800513BC; // type:function size:0x44 +ResetDOClassIDs__Q26Quazal15DDLDeclarationsFv = .text:0x80051400; // type:function size:0x10 +Load__Q26Quazal15DDLDeclarationsFv = .text:0x80051410; // type:function size:0x68 +fn_80051478 = .text:0x80051478; // type:function size:0x10 +__ct__Q26Quazal13DOCallContextFQ26Quazal8DOHandleb = .text:0x80051488; // type:function size:0xCC +fn_80051554 = .text:0x80051554; // type:function size:0xB4 +fn_80051608 = .text:0x80051608; // type:function size:0x1C0 +fn_800517C8 = .text:0x800517C8; // type:function size:0x8 +fn_800517D0 = .text:0x800517D0; // type:function size:0x78 +fn_80051848 = .text:0x80051848; // type:function size:0xB8 +fn_80051900 = .text:0x80051900; // type:function size:0x10C +fn_80051A0C = .text:0x80051A0C; // type:function size:0x160 +fn_80051B6C = .text:0x80051B6C; // type:function size:0xA8 +fn_80051C14 = .text:0x80051C14; // type:function size:0x18 +fn_80051C2C = .text:0x80051C2C; // type:function size:0xB0 +fn_80051CDC = .text:0x80051CDC; // type:function size:0x10 +fn_80051CEC = .text:0x80051CEC; // type:function size:0x120 +fn_80051E0C = .text:0x80051E0C; // type:function size:0x54 +fn_80051E60 = .text:0x80051E60; // type:function size:0x5C +fn_80051EBC = .text:0x80051EBC; // type:function size:0x5C +fn_80051F18 = .text:0x80051F18; // type:function size:0xA4 +fn_80051FBC = .text:0x80051FBC; // type:function size:0x30 +fn_80051FEC = .text:0x80051FEC; // type:function size:0x4 +fn_80051FF0 = .text:0x80051FF0; // type:function size:0x68 +fn_80052058 = .text:0x80052058; // type:function size:0x5C +fn_800520B4 = .text:0x800520B4; // type:function size:0x50 +fn_80052104 = .text:0x80052104; // type:function size:0x5C +fn_80052160 = .text:0x80052160; // type:function size:0x70 +fn_800521D0 = .text:0x800521D0; // type:function size:0x9C +fn_8005226C = .text:0x8005226C; // type:function size:0x54 +fn_800522C0 = .text:0x800522C0; // type:function size:0x14 +fn_800522D4 = .text:0x800522D4; // type:function size:0x8 +fn_800522DC = .text:0x800522DC; // type:function size:0x4 +fn_800522E0 = .text:0x800522E0; // type:function size:0x14 +fn_800522F4 = .text:0x800522F4; // type:function size:0x4 +fn_800522F8 = .text:0x800522F8; // type:function size:0x4 +fn_800522FC = .text:0x800522FC; // type:function size:0x34 +fn_80052330 = .text:0x80052330; // type:function size:0x5C +fn_8005238C = .text:0x8005238C; // type:function size:0xA4 +fn_80052430 = .text:0x80052430; // type:function size:0x40 +fn_80052470 = .text:0x80052470; // type:function size:0xA4 +fn_80052514 = .text:0x80052514; // type:function size:0x44 +fn_80052558 = .text:0x80052558; // type:function size:0x22C +fn_80052784 = .text:0x80052784; // type:function size:0x9C +fn_80052820 = .text:0x80052820; // type:function size:0x40 +fn_80052860 = .text:0x80052860; // type:function size:0x60 +fn_800528C0 = .text:0x800528C0; // type:function size:0xB8 +fn_80052978 = .text:0x80052978; // type:function size:0x84 +fn_800529FC = .text:0x800529FC; // type:function size:0x90 +fn_80052A8C = .text:0x80052A8C; // type:function size:0x5C +fn_80052AE8 = .text:0x80052AE8; // type:function size:0x8 +fn_80052AF0 = .text:0x80052AF0; // type:function size:0x64 +fn_80052B54 = .text:0x80052B54; // type:function size:0x2CC +fn_80052E20 = .text:0x80052E20; // type:function size:0xC +fn_80052E2C = .text:0x80052E2C; // type:function size:0x114 +fn_80052F40 = .text:0x80052F40; // type:function size:0xEC +fn_8005302C = .text:0x8005302C; // type:function size:0x74 +fn_800530A0 = .text:0x800530A0; // type:function size:0x10 +fn_800530B0 = .text:0x800530B0; // type:function size:0xE8 +fn_80053198 = .text:0x80053198; // type:function size:0x44 +fn_800531DC = .text:0x800531DC; // type:function size:0x34 +fn_80053210 = .text:0x80053210; // type:function size:0x90 +fn_800532A0 = .text:0x800532A0; // type:function size:0x44 +fn_800532E4 = .text:0x800532E4; // type:function size:0xF8 +fn_800533DC = .text:0x800533DC; // type:function size:0x24 +fn_80053400 = .text:0x80053400; // type:function size:0x4AC +fn_800538AC = .text:0x800538AC; // type:function size:0x3C +fn_800538E8 = .text:0x800538E8; // type:function size:0x74 +fn_8005395C = .text:0x8005395C; // type:function size:0x40 +fn_8005399C = .text:0x8005399C; // type:function size:0x3C +fn_800539D8 = .text:0x800539D8; // type:function size:0x284 +fn_80053C5C = .text:0x80053C5C; // type:function size:0x58 +fn_80053CB4 = .text:0x80053CB4; // type:function size:0x4 +fn_80053CB8 = .text:0x80053CB8; // type:function size:0x4 +fn_80053CBC = .text:0x80053CBC; // type:function size:0x80 +fn_80053D3C = .text:0x80053D3C; // type:function size:0x24 +fn_80053D60 = .text:0x80053D60; // type:function size:0x24 +fn_80053D84 = .text:0x80053D84; // type:function size:0x8 +fn_80053D8C = .text:0x80053D8C; // type:function size:0x8 +fn_80053D94 = .text:0x80053D94; // type:function size:0x10 +fn_80053DA4 = .text:0x80053DA4; // type:function size:0x10 +fn_80053DB4 = .text:0x80053DB4; // type:function size:0x54 +fn_80053E08 = .text:0x80053E08; // type:function size:0x18 +fn_80053E20 = .text:0x80053E20; // type:function size:0x18 +fn_80053E38 = .text:0x80053E38; // type:function size:0x3C +fn_80053E74 = .text:0x80053E74; // type:function size:0x54 +fn_80053EC8 = .text:0x80053EC8; // type:function size:0xC +fn_80053ED4 = .text:0x80053ED4; // type:function size:0xA4 +fn_80053F78 = .text:0x80053F78; // type:function size:0x58 +fn_80053FD0 = .text:0x80053FD0; // type:function size:0x84 +__ct__Q26Quazal21DOCoreDDLDeclarationsFv = .text:0x80054054; // type:function size:0x40 +Add__Q26Quazal12_Type_stringFPQ26Quazal7MessageRCQ26Quazal6String = .text:0x80054094; // type:function size:0x1D0 +Extract__Q26Quazal12_Type_stringFPQ26Quazal7MessagePQ26Quazal6String = .text:0x80054264; // type:function size:0x1E8 +Extract__Q26Quazal13_Type_qresultFPQ26Quazal7MessagePQ26Quazal7qResult = .text:0x8005444C; // type:function size:0x50 +Add__Q26Quazal16_Type_stationurlFPQ26Quazal7MessageRCQ26Quazal10StationURL = .text:0x8005449C; // type:function size:0x54 +Extract__Q26Quazal16_Type_stationurlFPQ26Quazal7MessagePQ26Quazal10StationURL = .text:0x800544F0; // type:function size:0x80 +Add__Q26Quazal13_Type_qBufferFPQ26Quazal7MessageRCQ26Quazal7qBuffer = .text:0x80054570; // type:function size:0x74 +Extract__Q26Quazal13_Type_qBufferFPQ26Quazal7MessagePQ26Quazal7qBuffer = .text:0x800545E4; // type:function size:0xA4 +Add__Q26Quazal16_Type_buffertailFPQ26Quazal7MessageRCQ26Quazal6Buffer = .text:0x80054688; // type:function size:0x74 +Extract__Q26Quazal16_Type_buffertailFPQ26Quazal7MessagePQ26Quazal6Buffer = .text:0x800546FC; // type:function size:0x8C +__ct__Q26Quazal8DOFilterFv = .text:0x80054788; // type:function size:0x3C +__dt__Q26Quazal8DOFilterFv = .text:0x800547C4; // type:function size:0x58 +GetMinimumValidHandle__Q26Quazal8DOFilterFv = .text:0x8005481C; // type:function size:0x8 +GetMaximumValidHandle__Q26Quazal8DOFilterFv = .text:0x80054824; // type:function size:0x8 +Filter__Q26Quazal12CoreDOFilterFPQ26Quazal16DuplicatedObject = .text:0x8005482C; // type:function size:0x14 +Filter__Q26Quazal12CoreDOFilterFQ26Quazal8DOHandle = .text:0x80054840; // type:function size:0x8 +Filter__Q26Quazal12UserDOFilterFPQ26Quazal16DuplicatedObject = .text:0x80054848; // type:function size:0x38 +Filter__Q26Quazal12UserDOFilterFQ26Quazal8DOHandle = .text:0x80054880; // type:function size:0x8 +__ct__Q26Quazal11IsADOFilterFUi = .text:0x80054888; // type:function size:0x4C +Filter__Q26Quazal11IsADOFilterFPQ26Quazal16DuplicatedObject = .text:0x800548D4; // type:function size:0x1C +Filter__Q26Quazal11IsADOFilterFQ26Quazal8DOHandle = .text:0x800548F0; // type:function size:0x1C +GetMinimumValidHandle__Q26Quazal11IsADOFilterFv = .text:0x8005490C; // type:function size:0x5C +GetMaximumValidHandle__Q26Quazal11IsADOFilterFv = .text:0x80054968; // type:function size:0x6C +__ct__Q26Quazal17IsAKindOfDOFilterFUi = .text:0x800549D4; // type:function size:0x54 +Filter__Q26Quazal17IsAKindOfDOFilterFPQ26Quazal16DuplicatedObject = .text:0x80054A28; // type:function size:0x5C +Filter__Q26Quazal17IsAKindOfDOFilterFQ26Quazal8DOHandle = .text:0x80054A84; // type:function size:0x5C +GetMinimumValidHandle__Q26Quazal17IsAKindOfDOFilterFv = .text:0x80054AE0; // type:function size:0xD8 +GetMaximumValidHandle__Q26Quazal17IsAKindOfDOFilterFv = .text:0x80054BB8; // type:function size:0xE0 +__ct__Q26Quazal10OrDOFilterFPQ26Quazal8DOFilterPQ26Quazal8DOFilter = .text:0x80054C98; // type:function size:0x54 +__dt__Q26Quazal10OrDOFilterFv = .text:0x80054CEC; // type:function size:0xC4 +Filter__Q26Quazal10OrDOFilterFPQ26Quazal16DuplicatedObject = .text:0x80054DB0; // type:function size:0x7C +Filter__Q26Quazal10OrDOFilterFQ26Quazal8DOHandle = .text:0x80054E2C; // type:function size:0x80 +GetMinimumValidHandle__Q26Quazal10OrDOFilterFv = .text:0x80054EAC; // type:function size:0x90 +GetMaximumValidHandle__Q26Quazal10OrDOFilterFv = .text:0x80054F3C; // type:function size:0x90 +fn_80054FCC = .text:0x80054FCC; // type:function size:0x54 +fn_80055020 = .text:0x80055020; // type:function size:0xC4 +fn_800550E4 = .text:0x800550E4; // type:function size:0x7C +fn_80055160 = .text:0x80055160; // type:function size:0x80 +fn_800551E0 = .text:0x800551E0; // type:function size:0x90 +fn_80055270 = .text:0x80055270; // type:function size:0x90 +fn_80055300 = .text:0x80055300; // type:function size:0x4C +fn_8005534C = .text:0x8005534C; // type:function size:0x98 +fn_800553E4 = .text:0x800553E4; // type:function size:0x38 +fn_8005541C = .text:0x8005541C; // type:function size:0x50 +fn_8005546C = .text:0x8005546C; // type:function size:0x3C +fn_800554A8 = .text:0x800554A8; // type:function size:0x58 +fn_80055500 = .text:0x80055500; // type:function size:0x1C +fn_8005551C = .text:0x8005551C; // type:function size:0x7C +fn_80055598 = .text:0x80055598; // type:function size:0x40 +fn_800555D8 = .text:0x800555D8; // type:function size:0xA4 +fn_8005567C = .text:0x8005567C; // type:function size:0x4C +fn_800556C8 = .text:0x800556C8; // type:function size:0x58 +fn_80055720 = .text:0x80055720; // type:function size:0x54 +fn_80055774 = .text:0x80055774; // type:function size:0xA4 +__dt__Q26Quazal11IsADOFilterFv = .text:0x80055818; // type:function size:0x58 +SetDOID__Q26Quazal8DOHandleFQ26Quazal4DOID = .text:0x80055870; // type:function size:0x18 +SetDOClassID__Q26Quazal8DOHandleFUi = .text:0x80055888; // type:function size:0x14 +fn_8005589C = .text:0x8005589C; // type:function size:0x18 +fn_800558B4 = .text:0x800558B4; // type:function size:0x30 +IsACoreDO__Q26Quazal8DOHandleFv = .text:0x800558E4; // type:function size:0x20 +IsAUserDO__Q26Quazal8DOHandleFv = .text:0x80055904; // type:function size:0x20 +fn_80055924 = .text:0x80055924; // type:function size:0x5C +fn_80055980 = .text:0x80055980; // type:function size:0x6C +IsAKindOf__Q26Quazal16DuplicatedObjectCFUi = .text:0x800559EC; // type:function size:0x68 +fn_80055A54 = .text:0x80055A54; // type:function size:0x18 +fn_80055A6C = .text:0x80055A6C; // type:function size:0x90 +fn_80055AFC = .text:0x80055AFC; // type:function size:0x44 +fn_80055B40 = .text:0x80055B40; // type:function size:0x50 +fn_80055B90 = .text:0x80055B90; // type:function size:0x8C +fn_80055C1C = .text:0x80055C1C; // type:function size:0x98 +__ct__Q26Quazal11DOOperationFQ26Quazal8DOHandlePQ26Quazal16DuplicatedObject = .text:0x80055CB4; // type:function size:0x84 +fn_80055D38 = .text:0x80055D38; // type:function size:0x6C +fn_80055DA4 = .text:0x80055DA4; // type:function size:0x4 +fn_80055DA8 = .text:0x80055DA8; // type:function size:0x40 +DecodeBuffer__Q26Quazal10DOProtocolCFPQ26Quazal6Buffer = .text:0x80055DE8; // type:function size:0x50 +EncodeBuffer__Q26Quazal10DOProtocolCFPQ26Quazal6Buffer = .text:0x80055E38; // type:function size:0xC +fn_80055E44 = .text:0x80055E44; // type:function size:0x12C +fn_80055F70 = .text:0x80055F70; // type:function size:0x84 +fn_80055FF4 = .text:0x80055FF4; // type:function size:0x38 +fn_8005602C = .text:0x8005602C; // type:function size:0x130 +fn_8005615C = .text:0x8005615C; // type:function size:0x158 +fn_800562B4 = .text:0x800562B4; // type:function size:0xEC +fn_800563A0 = .text:0x800563A0; // type:function size:0x10C +fn_800564AC = .text:0x800564AC; // type:function size:0x60 +fn_8005650C = .text:0x8005650C; // type:function size:0x98 +fn_800565A4 = .text:0x800565A4; // type:function size:0x88 +fn_8005662C = .text:0x8005662C; // type:function size:0xB4 +fn_800566E0 = .text:0x800566E0; // type:function size:0xD4 +fn_800567B4 = .text:0x800567B4; // type:function size:0x100 +fn_800568B4 = .text:0x800568B4; // type:function size:0x58 +fn_8005690C = .text:0x8005690C; // type:function size:0x58 +fn_80056964 = .text:0x80056964; // type:function size:0xC +fn_80056970 = .text:0x80056970; // type:function size:0x3C +__ct__Q26Quazal16DOProtocolServerFv = .text:0x800569AC; // type:function size:0x3C +__ct__Q26Quazal23_Proto_DOProtocolServerFv = .text:0x800569E8; // type:function size:0x40 +fn_80056A28 = .text:0x80056A28; // type:function size:0x5C +fn_80056A84 = .text:0x80056A84; // type:function size:0x64 +fn_80056AE8 = .text:0x80056AE8; // type:function size:0x188 +fn_80056C70 = .text:0x80056C70; // type:function size:0x348 +fn_80056FB8 = .text:0x80056FB8; // type:function size:0x98 +fn_80057050 = .text:0x80057050; // type:function size:0x40 +fn_80057090 = .text:0x80057090; // type:function size:0x94 +fn_80057124 = .text:0x80057124; // type:function size:0x64 +fn_80057188 = .text:0x80057188; // type:function size:0xA0 +fn_80057228 = .text:0x80057228; // type:function size:0x4C +fn_80057274 = .text:0x80057274; // type:function size:0x40 +fn_800572B4 = .text:0x800572B4; // type:function size:0x5C +fn_80057310 = .text:0x80057310; // type:function size:0x64 +fn_80057374 = .text:0x80057374; // type:function size:0x64 +fn_800573D8 = .text:0x800573D8; // type:function size:0x50 +fn_80057428 = .text:0x80057428; // type:function size:0x5C +fn_80057484 = .text:0x80057484; // type:function size:0x74 +fn_800574F8 = .text:0x800574F8; // type:function size:0x64 +fn_8005755C = .text:0x8005755C; // type:function size:0x74 +fn_800575D0 = .text:0x800575D0; // type:function size:0x54 +fn_80057624 = .text:0x80057624; // type:function size:0x2C +fn_80057650 = .text:0x80057650; // type:function size:0x50 +fn_800576A0 = .text:0x800576A0; // type:function size:0x2C +fn_800576CC = .text:0x800576CC; // type:function size:0x50 +fn_8005771C = .text:0x8005771C; // type:function size:0xBC +fn_800577D8 = .text:0x800577D8; // type:function size:0x68 +fn_80057840 = .text:0x80057840; // type:function size:0x64 +fn_800578A4 = .text:0x800578A4; // type:function size:0x64 +fn_80057908 = .text:0x80057908; // type:function size:0x14 +fn_8005791C = .text:0x8005791C; // type:function size:0x4C +fn_80057968 = .text:0x80057968; // type:function size:0x74 +fn_800579DC = .text:0x800579DC; // type:function size:0x64 +fn_80057A40 = .text:0x80057A40; // type:function size:0x100 +fn_80057B40 = .text:0x80057B40; // type:function size:0x58 +fn_80057B98 = .text:0x80057B98; // type:function size:0x98 +fn_80057C30 = .text:0x80057C30; // type:function size:0x3C +fn_80057C6C = .text:0x80057C6C; // type:function size:0x78 +fn_80057CE4 = .text:0x80057CE4; // type:function size:0x74 +fn_80057D58 = .text:0x80057D58; // type:function size:0x3C +fn_80057D94 = .text:0x80057D94; // type:function size:0x80 +fn_80057E14 = .text:0x80057E14; // type:function size:0x88 +fn_80057E9C = .text:0x80057E9C; // type:function size:0x2C +fn_80057EC8 = .text:0x80057EC8; // type:function size:0x23C +fn_80058104 = .text:0x80058104; // type:function size:0xC +fn_80058110 = .text:0x80058110; // type:function size:0x2C +fn_8005813C = .text:0x8005813C; // type:function size:0x4 +fn_80058140 = .text:0x80058140; // type:function size:0x40 +fn_80058180 = .text:0x80058180; // type:function size:0x8 +fn_80058188 = .text:0x80058188; // type:function size:0x58 +fn_800581E0 = .text:0x800581E0; // type:function size:0x40 +fn_80058220 = .text:0x80058220; // type:function size:0x14 +fn_80058234 = .text:0x80058234; // type:function size:0xD4 +fn_80058308 = .text:0x80058308; // type:function size:0x80 +fn_80058388 = .text:0x80058388; // type:function size:0x3C +fn_800583C4 = .text:0x800583C4; // type:function size:0x58 +fn_8005841C = .text:0x8005841C; // type:function size:0xF0 +fn_8005850C = .text:0x8005850C; // type:function size:0xC4 +fn_800585D0 = .text:0x800585D0; // type:function size:0x8 +fn_800585D8 = .text:0x800585D8; // type:function size:0x48 +fn_80058620 = .text:0x80058620; // type:function size:0x48 +fn_80058668 = .text:0x80058668; // type:function size:0x50 +fn_800586B8 = .text:0x800586B8; // type:function size:0x68 +fn_80058720 = .text:0x80058720; // type:function size:0x1A8 +fn_800588C8 = .text:0x800588C8; // type:function size:0x4 +fn_800588CC = .text:0x800588CC; // type:function size:0x44 +fn_80058910 = .text:0x80058910; // type:function size:0x160 +fn_80058A70 = .text:0x80058A70; // type:function size:0x78 +fn_80058AE8 = .text:0x80058AE8; // type:function size:0x74 +fn_80058B5C = .text:0x80058B5C; // type:function size:0x68 +fn_80058BC4 = .text:0x80058BC4; // type:function size:0xF0 +fn_80058CB4 = .text:0x80058CB4; // type:function size:0x134 +fn_80058DE8 = .text:0x80058DE8; // type:function size:0x68 +fn_80058E50 = .text:0x80058E50; // type:function size:0xEC +fn_80058F3C = .text:0x80058F3C; // type:function size:0x3C +fn_80058F78 = .text:0x80058F78; // type:function size:0x64 +fn_80058FDC = .text:0x80058FDC; // type:function size:0x4 +fn_80058FE0 = .text:0x80058FE0; // type:function size:0x310 +fn_800592F0 = .text:0x800592F0; // type:function size:0xA8 +fn_80059398 = .text:0x80059398; // type:function size:0x104 +fn_8005949C = .text:0x8005949C; // type:function size:0x40 +fn_800594DC = .text:0x800594DC; // type:function size:0xA4 +fn_80059580 = .text:0x80059580; // type:function size:0x120 +fn_800596A0 = .text:0x800596A0; // type:function size:0x50 +fn_800596F0 = .text:0x800596F0; // type:function size:0x40 +fn_80059730 = .text:0x80059730; // type:function size:0x3EC +fn_80059B1C = .text:0x80059B1C; // type:function size:0x8 +fn_80059B24 = .text:0x80059B24; // type:function size:0x218 +fn_80059D3C = .text:0x80059D3C; // type:function size:0x19C +fn_80059ED8 = .text:0x80059ED8; // type:function size:0x54 +fn_80059F2C = .text:0x80059F2C; // type:function size:0x98 +fn_80059FC4 = .text:0x80059FC4; // type:function size:0x3C +fn_8005A000 = .text:0x8005A000; // type:function size:0x94 +fn_8005A094 = .text:0x8005A094; // type:function size:0x10 +fn_8005A0A4 = .text:0x8005A0A4; // type:function size:0xE0 +fn_8005A184 = .text:0x8005A184; // type:function size:0x80 +fn_8005A204 = .text:0x8005A204; // type:function size:0x60 +fn_8005A264 = .text:0x8005A264; // type:function size:0x44 +fn_8005A2A8 = .text:0x8005A2A8; // type:function size:0x8C +fn_8005A334 = .text:0x8005A334; // type:function size:0x10C +fn_8005A440 = .text:0x8005A440; // type:function size:0xF8 +fn_8005A538 = .text:0x8005A538; // type:function size:0x68 +fn_8005A5A0 = .text:0x8005A5A0; // type:function size:0xAC +fn_8005A64C = .text:0x8005A64C; // type:function size:0x8 +fn_8005A654 = .text:0x8005A654; // type:function size:0x34 +fn_8005A688 = .text:0x8005A688; // type:function size:0x50 +fn_8005A6D8 = .text:0x8005A6D8; // type:function size:0x78 +fn_8005A750 = .text:0x8005A750; // type:function size:0x60 +fn_8005A7B0 = .text:0x8005A7B0; // type:function size:0x10 +fn_8005A7C0 = .text:0x8005A7C0; // type:function size:0x14 +fn_8005A7D4 = .text:0x8005A7D4; // type:function size:0x90 +fn_8005A864 = .text:0x8005A864; // type:function size:0x58 +fn_8005A8BC = .text:0x8005A8BC; // type:function size:0xB8 +fn_8005A974 = .text:0x8005A974; // type:function size:0x38 +fn_8005A9AC = .text:0x8005A9AC; // type:function size:0x8 +fn_8005A9B4 = .text:0x8005A9B4; // type:function size:0x1A8 +fn_8005AB5C = .text:0x8005AB5C; // type:function size:0x8 +fn_8005AB64 = .text:0x8005AB64; // type:function size:0x8 +fn_8005AB6C = .text:0x8005AB6C; // type:function size:0x204 +fn_8005AD70 = .text:0x8005AD70; // type:function size:0x8C +fn_8005ADFC = .text:0x8005ADFC; // type:function size:0xB8 +fn_8005AEB4 = .text:0x8005AEB4; // type:function size:0xCC +fn_8005AF80 = .text:0x8005AF80; // type:function size:0x54 +fn_8005AFD4 = .text:0x8005AFD4; // type:function size:0x130 +fn_8005B104 = .text:0x8005B104; // type:function size:0x98 +fn_8005B19C = .text:0x8005B19C; // type:function size:0x4 +fn_8005B1A0 = .text:0x8005B1A0; // type:function size:0xD0 +fn_8005B270 = .text:0x8005B270; // type:function size:0x48 +fn_8005B2B8 = .text:0x8005B2B8; // type:function size:0x54 +fn_8005B30C = .text:0x8005B30C; // type:function size:0x4 +fn_8005B310 = .text:0x8005B310; // type:function size:0x4 +fn_8005B314 = .text:0x8005B314; // type:function size:0xC +fn_8005B320 = .text:0x8005B320; // type:function size:0x8 +fn_8005B328 = .text:0x8005B328; // type:function size:0x8 +fn_8005B330 = .text:0x8005B330; // type:function size:0xC0 +fn_8005B3F0 = .text:0x8005B3F0; // type:function size:0x4C +fn_8005B43C = .text:0x8005B43C; // type:function size:0x3C +fn_8005B478 = .text:0x8005B478; // type:function size:0x3C +fn_8005B4B4 = .text:0x8005B4B4; // type:function size:0x4C +fn_8005B500 = .text:0x8005B500; // type:function size:0x8 +fn_8005B508 = .text:0x8005B508; // type:function size:0x3C +fn_8005B544 = .text:0x8005B544; // type:function size:0x120 +fn_8005B664 = .text:0x8005B664; // type:function size:0x20 +fn_8005B684 = .text:0x8005B684; // type:function size:0x20 +fn_8005B6A4 = .text:0x8005B6A4; // type:function size:0x150 +fn_8005B7F4 = .text:0x8005B7F4; // type:function size:0x230 +fn_8005BA24 = .text:0x8005BA24; // type:function size:0x184 +fn_8005BBA8 = .text:0x8005BBA8; // type:function size:0x130 +fn_8005BCD8 = .text:0x8005BCD8; // type:function size:0xD8 +fn_8005BDB0 = .text:0x8005BDB0; // type:function size:0x1E0 +fn_8005BF90 = .text:0x8005BF90; // type:function size:0x48 +fn_8005BFD8 = .text:0x8005BFD8; // type:function size:0xB0 +fn_8005C088 = .text:0x8005C088; // type:function size:0x1B8 +fn_8005C240 = .text:0x8005C240; // type:function size:0x23C +fn_8005C47C = .text:0x8005C47C; // type:function size:0x1EC +fn_8005C668 = .text:0x8005C668; // type:function size:0x20 +fn_8005C688 = .text:0x8005C688; // type:function size:0x124 +fn_8005C7AC = .text:0x8005C7AC; // type:function size:0xC +fn_8005C7B8 = .text:0x8005C7B8; // type:function size:0x4C +fn_8005C804 = .text:0x8005C804; // type:function size:0x54 +fn_8005C858 = .text:0x8005C858; // type:function size:0x8C +fn_8005C8E4 = .text:0x8005C8E4; // type:function size:0x90 +fn_8005C974 = .text:0x8005C974; // type:function size:0xA8 +fn_8005CA1C = .text:0x8005CA1C; // type:function size:0x30 +fn_8005CA4C = .text:0x8005CA4C; // type:function size:0x5C +fn_8005CAA8 = .text:0x8005CAA8; // type:function size:0x50 +fn_8005CAF8 = .text:0x8005CAF8; // type:function size:0x70 +fn_8005CB68 = .text:0x8005CB68; // type:function size:0x60 +fn_8005CBC8 = .text:0x8005CBC8; // type:function size:0x38 +fn_8005CC00 = .text:0x8005CC00; // type:function size:0x74 +fn_8005CC74 = .text:0x8005CC74; // type:function size:0x48 +fn_8005CCBC = .text:0x8005CCBC; // type:function size:0x58 +fn_8005CD14 = .text:0x8005CD14; // type:function size:0x5C +fn_8005CD70 = .text:0x8005CD70; // type:function size:0x54 +fn_8005CDC4 = .text:0x8005CDC4; // type:function size:0x5C +fn_8005CE20 = .text:0x8005CE20; // type:function size:0x50 +fn_8005CE70 = .text:0x8005CE70; // type:function size:0x64 +fn_8005CED4 = .text:0x8005CED4; // type:function size:0xA4 +fn_8005CF78 = .text:0x8005CF78; // type:function size:0x5C +fn_8005CFD4 = .text:0x8005CFD4; // type:function size:0x58 +fn_8005D02C = .text:0x8005D02C; // type:function size:0x21C +fn_8005D248 = .text:0x8005D248; // type:function size:0x68 +fn_8005D2B0 = .text:0x8005D2B0; // type:function size:0x48 +fn_8005D2F8 = .text:0x8005D2F8; // type:function size:0x78 +fn_8005D370 = .text:0x8005D370; // type:function size:0xA8 +fn_8005D418 = .text:0x8005D418; // type:function size:0x7C +fn_8005D494 = .text:0x8005D494; // type:function size:0x2C +fn_8005D4C0 = .text:0x8005D4C0; // type:function size:0x70 +fn_8005D530 = .text:0x8005D530; // type:function size:0xDC +fn_8005D60C = .text:0x8005D60C; // type:function size:0x5C +fn_8005D668 = .text:0x8005D668; // type:function size:0x7C +fn_8005D6E4 = .text:0x8005D6E4; // type:function size:0x84 +fn_8005D768 = .text:0x8005D768; // type:function size:0x80 +fn_8005D7E8 = .text:0x8005D7E8; // type:function size:0x70 +fn_8005D858 = .text:0x8005D858; // type:function size:0x160 +fn_8005D9B8 = .text:0x8005D9B8; // type:function size:0x114 +fn_8005DACC = .text:0x8005DACC; // type:function size:0x74 +fn_8005DB40 = .text:0x8005DB40; // type:function size:0x88 +fn_8005DBC8 = .text:0x8005DBC8; // type:function size:0x68 +fn_8005DC30 = .text:0x8005DC30; // type:function size:0x1A4 +fn_8005DDD4 = .text:0x8005DDD4; // type:function size:0x40 +fn_8005DE14 = .text:0x8005DE14; // type:function size:0xA4 +fn_8005DEB8 = .text:0x8005DEB8; // type:function size:0xC4 +fn_8005DF7C = .text:0x8005DF7C; // type:function size:0x34 +fn_8005DFB0 = .text:0x8005DFB0; // type:function size:0x1C0 +fn_8005E170 = .text:0x8005E170; // type:function size:0x48 +fn_8005E1B8 = .text:0x8005E1B8; // type:function size:0x14 +fn_8005E1CC = .text:0x8005E1CC; // type:function size:0x88 +fn_8005E254 = .text:0x8005E254; // type:function size:0x88 +fn_8005E2DC = .text:0x8005E2DC; // type:function size:0x6C +fn_8005E348 = .text:0x8005E348; // type:function size:0x4 +fn_8005E34C = .text:0x8005E34C; // type:function size:0x8 +fn_8005E354 = .text:0x8005E354; // type:function size:0xC +fn_8005E360 = .text:0x8005E360; // type:function size:0x64 +fn_8005E3C4 = .text:0x8005E3C4; // type:function size:0xF4 +fn_8005E4B8 = .text:0x8005E4B8; // type:function size:0xC +fn_8005E4C4 = .text:0x8005E4C4; // type:function size:0x78 +fn_8005E53C = .text:0x8005E53C; // type:function size:0x20C +fn_8005E748 = .text:0x8005E748; // type:function size:0x70 +fn_8005E7B8 = .text:0x8005E7B8; // type:function size:0x4 +fn_8005E7BC = .text:0x8005E7BC; // type:function size:0x9C +fn_8005E858 = .text:0x8005E858; // type:function size:0x68 +fn_8005E8C0 = .text:0x8005E8C0; // type:function size:0x80 +fn_8005E940 = .text:0x8005E940; // type:function size:0x120 +fn_8005EA60 = .text:0x8005EA60; // type:function size:0x74 +fn_8005EAD4 = .text:0x8005EAD4; // type:function size:0x104 +fn_8005EBD8 = .text:0x8005EBD8; // type:function size:0x90 +fn_8005EC68 = .text:0x8005EC68; // type:function size:0x70 +fn_8005ECD8 = .text:0x8005ECD8; // type:function size:0x60 +fn_8005ED38 = .text:0x8005ED38; // type:function size:0x48 +fn_8005ED80 = .text:0x8005ED80; // type:function size:0x10 +fn_8005ED90 = .text:0x8005ED90; // type:function size:0x8 +fn_8005ED98 = .text:0x8005ED98; // type:function size:0x98 +fn_8005EE30 = .text:0x8005EE30; // type:function size:0x54 +fn_8005EE84 = .text:0x8005EE84; // type:function size:0x3C +fn_8005EEC0 = .text:0x8005EEC0; // type:function size:0x24 +fn_8005EEE4 = .text:0x8005EEE4; // type:function size:0x10 +fn_8005EEF4 = .text:0x8005EEF4; // type:function size:0x14 +fn_8005EF08 = .text:0x8005EF08; // type:function size:0x18 +fn_8005EF20 = .text:0x8005EF20; // type:function size:0x18 +fn_8005EF38 = .text:0x8005EF38; // type:function size:0x68 +fn_8005EFA0 = .text:0x8005EFA0; // type:function size:0x60 +fn_8005F000 = .text:0x8005F000; // type:function size:0x58 +fn_8005F058 = .text:0x8005F058; // type:function size:0x5C +fn_8005F0B4 = .text:0x8005F0B4; // type:function size:0x3C +fn_8005F0F0 = .text:0x8005F0F0; // type:function size:0x20 +fn_8005F110 = .text:0x8005F110; // type:function size:0x88 +fn_8005F198 = .text:0x8005F198; // type:function size:0x30 +fn_8005F1C8 = .text:0x8005F1C8; // type:function size:0x3C +fn_8005F204 = .text:0x8005F204; // type:function size:0x10 +fn_8005F214 = .text:0x8005F214; // type:function size:0x88 +fn_8005F29C = .text:0x8005F29C; // type:function size:0x4 +fn_8005F2A0 = .text:0x8005F2A0; // type:function size:0x7C +fn_8005F31C = .text:0x8005F31C; // type:function size:0x40 +fn_8005F35C = .text:0x8005F35C; // type:function size:0x4 +fn_8005F360 = .text:0x8005F360; // type:function size:0x1C +fn_8005F37C = .text:0x8005F37C; // type:function size:0x5C +fn_8005F3D8 = .text:0x8005F3D8; // type:function size:0x58 +fn_8005F430 = .text:0x8005F430; // type:function size:0x34 +fn_8005F464 = .text:0x8005F464; // type:function size:0x4 +fn_8005F468 = .text:0x8005F468; // type:function size:0xBC +fn_8005F524 = .text:0x8005F524; // type:function size:0xA4 +fn_8005F5C8 = .text:0x8005F5C8; // type:function size:0x74 +fn_8005F63C = .text:0x8005F63C; // type:function size:0x70 +fn_8005F6AC = .text:0x8005F6AC; // type:function size:0xE4 +fn_8005F790 = .text:0x8005F790; // type:function size:0x90 +fn_8005F820 = .text:0x8005F820; // type:function size:0xB8 +fn_8005F8D8 = .text:0x8005F8D8; // type:function size:0x64 +fn_8005F93C = .text:0x8005F93C; // type:function size:0x1C +fn_8005F958 = .text:0x8005F958; // type:function size:0x14 +fn_8005F96C = .text:0x8005F96C; // type:function size:0x10 +fn_8005F97C = .text:0x8005F97C; // type:function size:0x68 +fn_8005F9E4 = .text:0x8005F9E4; // type:function size:0x74 +fn_8005FA58 = .text:0x8005FA58; // type:function size:0x10 +fn_8005FA68 = .text:0x8005FA68; // type:function size:0x10 +fn_8005FA78 = .text:0x8005FA78; // type:function size:0x5C +fn_8005FAD4 = .text:0x8005FAD4; // type:function size:0x58 +fn_8005FB2C = .text:0x8005FB2C; // type:function size:0x84 +fn_8005FBB0 = .text:0x8005FBB0; // type:function size:0x120 +fn_8005FCD0 = .text:0x8005FCD0; // type:function size:0x7C +fn_8005FD4C = .text:0x8005FD4C; // type:function size:0xDC +fn_8005FE28 = .text:0x8005FE28; // type:function size:0x50 +fn_8005FE78 = .text:0x8005FE78; // type:function size:0x84 +fn_8005FEFC = .text:0x8005FEFC; // type:function size:0x8C +fn_8005FF88 = .text:0x8005FF88; // type:function size:0xEC +fn_80060074 = .text:0x80060074; // type:function size:0x60 +fn_800600D4 = .text:0x800600D4; // type:function size:0x8 +fn_800600DC = .text:0x800600DC; // type:function size:0x78 +fn_80060154 = .text:0x80060154; // type:function size:0x90 +fn_800601E4 = .text:0x800601E4; // type:function size:0x3C +fn_80060220 = .text:0x80060220; // type:function size:0x4 +fn_80060224 = .text:0x80060224; // type:function size:0x310 +fn_80060534 = .text:0x80060534; // type:function size:0xA4 +fn_800605D8 = .text:0x800605D8; // type:function size:0x4 +fn_800605DC = .text:0x800605DC; // type:function size:0x100 +fn_800606DC = .text:0x800606DC; // type:function size:0x198 +fn_80060874 = .text:0x80060874; // type:function size:0x9C +fn_80060910 = .text:0x80060910; // type:function size:0x38 +fn_80060948 = .text:0x80060948; // type:function size:0x9C +fn_800609E4 = .text:0x800609E4; // type:function size:0x31C +fn_80060D00 = .text:0x80060D00; // type:function size:0x1A4 +fn_80060EA4 = .text:0x80060EA4; // type:function size:0x70 +fn_80060F14 = .text:0x80060F14; // type:function size:0x384 +fn_80061298 = .text:0x80061298; // type:function size:0x13C +fn_800613D4 = .text:0x800613D4; // type:function size:0xD0 +fn_800614A4 = .text:0x800614A4; // type:function size:0x190 +fn_80061634 = .text:0x80061634; // type:function size:0xC0 +fn_800616F4 = .text:0x800616F4; // type:function size:0xA4 +fn_80061798 = .text:0x80061798; // type:function size:0x1E0 +fn_80061978 = .text:0x80061978; // type:function size:0xB8 +fn_80061A30 = .text:0x80061A30; // type:function size:0x70 +fn_80061AA0 = .text:0x80061AA0; // type:function size:0x88 +fn_80061B28 = .text:0x80061B28; // type:function size:0x64 +fn_80061B8C = .text:0x80061B8C; // type:function size:0xA8 +fn_80061C34 = .text:0x80061C34; // type:function size:0x78 +fn_80061CAC = .text:0x80061CAC; // type:function size:0x23C +fn_80061EE8 = .text:0x80061EE8; // type:function size:0x188 +fn_80062070 = .text:0x80062070; // type:function size:0xE4 +fn_80062154 = .text:0x80062154; // type:function size:0xC +fn_80062160 = .text:0x80062160; // type:function size:0x13C +fn_8006229C = .text:0x8006229C; // type:function size:0x98 +fn_80062334 = .text:0x80062334; // type:function size:0x4 +fn_80062338 = .text:0x80062338; // type:function size:0x70 +fn_800623A8 = .text:0x800623A8; // type:function size:0x8 +fn_800623B0 = .text:0x800623B0; // type:function size:0xC8 +fn_80062478 = .text:0x80062478; // type:function size:0x80 +fn_800624F8 = .text:0x800624F8; // type:function size:0x68 +fn_80062560 = .text:0x80062560; // type:function size:0xA0 +fn_80062600 = .text:0x80062600; // type:function size:0x74 +fn_80062674 = .text:0x80062674; // type:function size:0x8C +fn_80062700 = .text:0x80062700; // type:function size:0x88 +fn_80062788 = .text:0x80062788; // type:function size:0xB0 +fn_80062838 = .text:0x80062838; // type:function size:0x74 +fn_800628AC = .text:0x800628AC; // type:function size:0x10C +fn_800629B8 = .text:0x800629B8; // type:function size:0x58 +fn_80062A10 = .text:0x80062A10; // type:function size:0xA8 +fn_80062AB8 = .text:0x80062AB8; // type:function size:0x4 +fn_80062ABC = .text:0x80062ABC; // type:function size:0x4 +fn_80062AC0 = .text:0x80062AC0; // type:function size:0x38 +fn_80062AF8 = .text:0x80062AF8; // type:function size:0x58 +fn_80062B50 = .text:0x80062B50; // type:function size:0x50 +fn_80062BA0 = .text:0x80062BA0; // type:function size:0x98 +fn_80062C38 = .text:0x80062C38; // type:function size:0x5C +fn_80062C94 = .text:0x80062C94; // type:function size:0x14 +fn_80062CA8 = .text:0x80062CA8; // type:function size:0x4C +fn_80062CF4 = .text:0x80062CF4; // type:function size:0x48 +fn_80062D3C = .text:0x80062D3C; // type:function size:0x8 +fn_80062D44 = .text:0x80062D44; // type:function size:0x16C +fn_80062EB0 = .text:0x80062EB0; // type:function size:0x80 +fn_80062F30 = .text:0x80062F30; // type:function size:0x64 +fn_80062F94 = .text:0x80062F94; // type:function size:0x6C +fn_80063000 = .text:0x80063000; // type:function size:0x22C +fn_8006322C = .text:0x8006322C; // type:function size:0xC0 +fn_800632EC = .text:0x800632EC; // type:function size:0x228 +fn_80063514 = .text:0x80063514; // type:function size:0x74 +fn_80063588 = .text:0x80063588; // type:function size:0x104 +fn_8006368C = .text:0x8006368C; // type:function size:0x288 +fn_80063914 = .text:0x80063914; // type:function size:0x40 +fn_80063954 = .text:0x80063954; // type:function size:0x68 +fn_800639BC = .text:0x800639BC; // type:function size:0x44C +fn_80063E08 = .text:0x80063E08; // type:function size:0x38 +fn_80063E40 = .text:0x80063E40; // type:function size:0x78 +fn_80063EB8 = .text:0x80063EB8; // type:function size:0x98 +fn_80063F50 = .text:0x80063F50; // type:function size:0x170 +fn_800640C0 = .text:0x800640C0; // type:function size:0xC8 +fn_80064188 = .text:0x80064188; // type:function size:0xD4 +fn_8006425C = .text:0x8006425C; // type:function size:0xD4 +fn_80064330 = .text:0x80064330; // type:function size:0xA0 +fn_800643D0 = .text:0x800643D0; // type:function size:0x4C +fn_8006441C = .text:0x8006441C; // type:function size:0x88 +fn_800644A4 = .text:0x800644A4; // type:function size:0x1C4 +fn_80064668 = .text:0x80064668; // type:function size:0xB8 +fn_80064720 = .text:0x80064720; // type:function size:0xE8 +fn_80064808 = .text:0x80064808; // type:function size:0x6C +fn_80064874 = .text:0x80064874; // type:function size:0x30 +fn_800648A4 = .text:0x800648A4; // type:function size:0x20 +fn_800648C4 = .text:0x800648C4; // type:function size:0x64 +fn_80064928 = .text:0x80064928; // type:function size:0x58 +fn_80064980 = .text:0x80064980; // type:function size:0x70 +fn_800649F0 = .text:0x800649F0; // type:function size:0x70 +fn_80064A60 = .text:0x80064A60; // type:function size:0x4 +fn_80064A64 = .text:0x80064A64; // type:function size:0xB8 +fn_80064B1C = .text:0x80064B1C; // type:function size:0x84 +fn_80064BA0 = .text:0x80064BA0; // type:function size:0xE8 +fn_80064C88 = .text:0x80064C88; // type:function size:0x158 +fn_80064DE0 = .text:0x80064DE0; // type:function size:0x4 +fn_80064DE4 = .text:0x80064DE4; // type:function size:0x258 +fn_8006503C = .text:0x8006503C; // type:function size:0xA4 +fn_800650E0 = .text:0x800650E0; // type:function size:0xB4 +fn_80065194 = .text:0x80065194; // type:function size:0xD8 +fn_8006526C = .text:0x8006526C; // type:function size:0xEC +fn_80065358 = .text:0x80065358; // type:function size:0xC8 +fn_80065420 = .text:0x80065420; // type:function size:0x80 +fn_800654A0 = .text:0x800654A0; // type:function size:0x130 +fn_800655D0 = .text:0x800655D0; // type:function size:0x68 +fn_80065638 = .text:0x80065638; // type:function size:0x1FC +fn_80065834 = .text:0x80065834; // type:function size:0x174 +fn_800659A8 = .text:0x800659A8; // type:function size:0x1EC +fn_80065B94 = .text:0x80065B94; // type:function size:0x13C +fn_80065CD0 = .text:0x80065CD0; // type:function size:0x9C +fn_80065D6C = .text:0x80065D6C; // type:function size:0x84 +fn_80065DF0 = .text:0x80065DF0; // type:function size:0x1A8 +fn_80065F98 = .text:0x80065F98; // type:function size:0x80 +fn_80066018 = .text:0x80066018; // type:function size:0x130 +fn_80066148 = .text:0x80066148; // type:function size:0x134 +fn_8006627C = .text:0x8006627C; // type:function size:0x2C +fn_800662A8 = .text:0x800662A8; // type:function size:0x180 +fn_80066428 = .text:0x80066428; // type:function size:0x78 +fn_800664A0 = .text:0x800664A0; // type:function size:0xD4 +fn_80066574 = .text:0x80066574; // type:function size:0x164 +fn_800666D8 = .text:0x800666D8; // type:function size:0xEC +fn_800667C4 = .text:0x800667C4; // type:function size:0xA4 +fn_80066868 = .text:0x80066868; // type:function size:0x94 +fn_800668FC = .text:0x800668FC; // type:function size:0xE0 +fn_800669DC = .text:0x800669DC; // type:function size:0x54 +fn_80066A30 = .text:0x80066A30; // type:function size:0x38 +fn_80066A68 = .text:0x80066A68; // type:function size:0x68 +fn_80066AD0 = .text:0x80066AD0; // type:function size:0x8C +fn_80066B5C = .text:0x80066B5C; // type:function size:0x48 +fn_80066BA4 = .text:0x80066BA4; // type:function size:0x4 +fn_80066BA8 = .text:0x80066BA8; // type:function size:0x5C +fn_80066C04 = .text:0x80066C04; // type:function size:0xC4 +fn_80066CC8 = .text:0x80066CC8; // type:function size:0x68 +fn_80066D30 = .text:0x80066D30; // type:function size:0x74 +fn_80066DA4 = .text:0x80066DA4; // type:function size:0x84 +fn_80066E28 = .text:0x80066E28; // type:function size:0x210 +fn_80067038 = .text:0x80067038; // type:function size:0x188 +fn_800671C0 = .text:0x800671C0; // type:function size:0x88 +fn_80067248 = .text:0x80067248; // type:function size:0xDC +fn_80067324 = .text:0x80067324; // type:function size:0x70 +fn_80067394 = .text:0x80067394; // type:function size:0x4C +fn_800673E0 = .text:0x800673E0; // type:function size:0x74 +fn_80067454 = .text:0x80067454; // type:function size:0x258 +fn_800676AC = .text:0x800676AC; // type:function size:0x3C +fn_800676E8 = .text:0x800676E8; // type:function size:0xB8 +fn_800677A0 = .text:0x800677A0; // type:function size:0x320 +fn_80067AC0 = .text:0x80067AC0; // type:function size:0x80 +fn_80067B40 = .text:0x80067B40; // type:function size:0xC +fn_80067B4C = .text:0x80067B4C; // type:function size:0xD8 +fn_80067C24 = .text:0x80067C24; // type:function size:0xA4 +fn_80067CC8 = .text:0x80067CC8; // type:function size:0x48 +fn_80067D10 = .text:0x80067D10; // type:function size:0x4 +fn_80067D14 = .text:0x80067D14; // type:function size:0x1A4 +fn_80067EB8 = .text:0x80067EB8; // type:function size:0x8C +fn_80067F44 = .text:0x80067F44; // type:function size:0x6C +fn_80067FB0 = .text:0x80067FB0; // type:function size:0xC +fn_80067FBC = .text:0x80067FBC; // type:function size:0x44 +fn_80068000 = .text:0x80068000; // type:function size:0x8 +fn_80068008 = .text:0x80068008; // type:function size:0xC +fn_80068014 = .text:0x80068014; // type:function size:0x6C +fn_80068080 = .text:0x80068080; // type:function size:0x6C +fn_800680EC = .text:0x800680EC; // type:function size:0x44 +fn_80068130 = .text:0x80068130; // type:function size:0x8 +fn_80068138 = .text:0x80068138; // type:function size:0xC +fn_80068144 = .text:0x80068144; // type:function size:0x58 +fn_8006819C = .text:0x8006819C; // type:function size:0x50 +fn_800681EC = .text:0x800681EC; // type:function size:0x60 +fn_8006824C = .text:0x8006824C; // type:function size:0x4 +fn_80068250 = .text:0x80068250; // type:function size:0x74 +fn_800682C4 = .text:0x800682C4; // type:function size:0x44 +fn_80068308 = .text:0x80068308; // type:function size:0x8 +fn_80068310 = .text:0x80068310; // type:function size:0x40 +fn_80068350 = .text:0x80068350; // type:function size:0x58 +fn_800683A8 = .text:0x800683A8; // type:function size:0x84 +fn_8006842C = .text:0x8006842C; // type:function size:0x5C +fn_80068488 = .text:0x80068488; // type:function size:0x94 +fn_8006851C = .text:0x8006851C; // type:function size:0x34 +fn_80068550 = .text:0x80068550; // type:function size:0x28 +fn_80068578 = .text:0x80068578; // type:function size:0x60 +fn_800685D8 = .text:0x800685D8; // type:function size:0x48 +fn_80068620 = .text:0x80068620; // type:function size:0x8C +fn_800686AC = .text:0x800686AC; // type:function size:0x40 +fn_800686EC = .text:0x800686EC; // type:function size:0x74 +fn_80068760 = .text:0x80068760; // type:function size:0x54 +fn_800687B4 = .text:0x800687B4; // type:function size:0xB4 +fn_80068868 = .text:0x80068868; // type:function size:0xA4 +fn_8006890C = .text:0x8006890C; // type:function size:0x44 +fn_80068950 = .text:0x80068950; // type:function size:0x90 +fn_800689E0 = .text:0x800689E0; // type:function size:0x38 +fn_80068A18 = .text:0x80068A18; // type:function size:0x68 +fn_80068A80 = .text:0x80068A80; // type:function size:0x50 +fn_80068AD0 = .text:0x80068AD0; // type:function size:0x330 +fn_80068E00 = .text:0x80068E00; // type:function size:0x74 +fn_80068E74 = .text:0x80068E74; // type:function size:0x120 +fn_80068F94 = .text:0x80068F94; // type:function size:0xF4 +fn_80069088 = .text:0x80069088; // type:function size:0x74 +fn_800690FC = .text:0x800690FC; // type:function size:0x44 +fn_80069140 = .text:0x80069140; // type:function size:0x68 +fn_800691A8 = .text:0x800691A8; // type:function size:0x3C +fn_800691E4 = .text:0x800691E4; // type:function size:0x58 +fn_8006923C = .text:0x8006923C; // type:function size:0x58 +fn_80069294 = .text:0x80069294; // type:function size:0x54 +fn_800692E8 = .text:0x800692E8; // type:function size:0x70 +fn_80069358 = .text:0x80069358; // type:function size:0x74 +fn_800693CC = .text:0x800693CC; // type:function size:0x6C +fn_80069438 = .text:0x80069438; // type:function size:0x8C +fn_800694C4 = .text:0x800694C4; // type:function size:0x21C +fn_800696E0 = .text:0x800696E0; // type:function size:0x1CC +fn_800698AC = .text:0x800698AC; // type:function size:0xD4 +fn_80069980 = .text:0x80069980; // type:function size:0x60 +fn_800699E0 = .text:0x800699E0; // type:function size:0x54 +fn_80069A34 = .text:0x80069A34; // type:function size:0x8C +fn_80069AC0 = .text:0x80069AC0; // type:function size:0x90 +fn_80069B50 = .text:0x80069B50; // type:function size:0xA8 +fn_80069BF8 = .text:0x80069BF8; // type:function size:0x80 +fn_80069C78 = .text:0x80069C78; // type:function size:0x10 +fn_80069C88 = .text:0x80069C88; // type:function size:0x68 +fn_80069CF0 = .text:0x80069CF0; // type:function size:0x30 +fn_80069D20 = .text:0x80069D20; // type:function size:0x8C +fn_80069DAC = .text:0x80069DAC; // type:function size:0x48 +fn_80069DF4 = .text:0x80069DF4; // type:function size:0xC +fn_80069E00 = .text:0x80069E00; // type:function size:0xF8 +fn_80069EF8 = .text:0x80069EF8; // type:function size:0xD4 +fn_80069FCC = .text:0x80069FCC; // type:function size:0xC8 +fn_8006A094 = .text:0x8006A094; // type:function size:0xA4 +fn_8006A138 = .text:0x8006A138; // type:function size:0x88 +fn_8006A1C0 = .text:0x8006A1C0; // type:function size:0xCC +fn_8006A28C = .text:0x8006A28C; // type:function size:0xE4 +fn_8006A370 = .text:0x8006A370; // type:function size:0x94 +fn_8006A404 = .text:0x8006A404; // type:function size:0xC4 +fn_8006A4C8 = .text:0x8006A4C8; // type:function size:0x6C +fn_8006A534 = .text:0x8006A534; // type:function size:0xCC +fn_8006A600 = .text:0x8006A600; // type:function size:0x6C +fn_8006A66C = .text:0x8006A66C; // type:function size:0x74 +fn_8006A6E0 = .text:0x8006A6E0; // type:function size:0xA8 +fn_8006A788 = .text:0x8006A788; // type:function size:0x6C +fn_8006A7F4 = .text:0x8006A7F4; // type:function size:0x6C +fn_8006A860 = .text:0x8006A860; // type:function size:0x5C +fn_8006A8BC = .text:0x8006A8BC; // type:function size:0xD4 +fn_8006A990 = .text:0x8006A990; // type:function size:0x16C +fn_8006AAFC = .text:0x8006AAFC; // type:function size:0x7C +fn_8006AB78 = .text:0x8006AB78; // type:function size:0xDC +fn_8006AC54 = .text:0x8006AC54; // type:function size:0x94 +fn_8006ACE8 = .text:0x8006ACE8; // type:function size:0x168 +fn_8006AE50 = .text:0x8006AE50; // type:function size:0xB0 +fn_8006AF00 = .text:0x8006AF00; // type:function size:0xE4 +fn_8006AFE4 = .text:0x8006AFE4; // type:function size:0x84 +fn_8006B068 = .text:0x8006B068; // type:function size:0xBC +fn_8006B124 = .text:0x8006B124; // type:function size:0xDC +fn_8006B200 = .text:0x8006B200; // type:function size:0xA0 +fn_8006B2A0 = .text:0x8006B2A0; // type:function size:0x100 +fn_8006B3A0 = .text:0x8006B3A0; // type:function size:0x78 +fn_8006B418 = .text:0x8006B418; // type:function size:0x12C +fn_8006B544 = .text:0x8006B544; // type:function size:0x118 +fn_8006B65C = .text:0x8006B65C; // type:function size:0x15C +fn_8006B7B8 = .text:0x8006B7B8; // type:function size:0x58 +fn_8006B810 = .text:0x8006B810; // type:function size:0x94 +fn_8006B8A4 = .text:0x8006B8A4; // type:function size:0x94 +fn_8006B938 = .text:0x8006B938; // type:function size:0x74 +fn_8006B9AC = .text:0x8006B9AC; // type:function size:0x80 +fn_8006BA2C = .text:0x8006BA2C; // type:function size:0xE0 +fn_8006BB0C = .text:0x8006BB0C; // type:function size:0xD8 +fn_8006BBE4 = .text:0x8006BBE4; // type:function size:0x160 +fn_8006BD44 = .text:0x8006BD44; // type:function size:0x110 +fn_8006BE54 = .text:0x8006BE54; // type:function size:0xA8 +fn_8006BEFC = .text:0x8006BEFC; // type:function size:0xC8 +fn_8006BFC4 = .text:0x8006BFC4; // type:function size:0x7C +fn_8006C040 = .text:0x8006C040; // type:function size:0x154 +fn_8006C194 = .text:0x8006C194; // type:function size:0xEC +fn_8006C280 = .text:0x8006C280; // type:function size:0x94 +fn_8006C314 = .text:0x8006C314; // type:function size:0x58 +fn_8006C36C = .text:0x8006C36C; // type:function size:0x150 +GetInstance__Q26Quazal14ObjDupProtocolFv = .text:0x8006C4BC; // type:function size:0x38 +fn_8006C4F4 = .text:0x8006C4F4; // type:function size:0xD8 +fn_8006C5CC = .text:0x8006C5CC; // type:function size:0x60 +fn_8006C62C = .text:0x8006C62C; // type:function size:0xE4 +fn_8006C710 = .text:0x8006C710; // type:function size:0xE0 +fn_8006C7F0 = .text:0x8006C7F0; // type:function size:0x8 +fn_8006C7F8 = .text:0x8006C7F8; // type:function size:0x60 +fn_8006C858 = .text:0x8006C858; // type:function size:0xD4 +fn_8006C92C = .text:0x8006C92C; // type:function size:0x4 +fn_8006C930 = .text:0x8006C930; // type:function size:0x78 +fn_8006C9A8 = .text:0x8006C9A8; // type:function size:0x210 +fn_8006CBB8 = .text:0x8006CBB8; // type:function size:0x8 +fn_8006CBC0 = .text:0x8006CBC0; // type:function size:0x98 +fn_8006CC58 = .text:0x8006CC58; // type:function size:0x80 +fn_8006CCD8 = .text:0x8006CCD8; // type:function size:0x40 +fn_8006CD18 = .text:0x8006CD18; // type:function size:0xA0 +fn_8006CDB8 = .text:0x8006CDB8; // type:function size:0x5C +fn_8006CE14 = .text:0x8006CE14; // type:function size:0x7C +fn_8006CE90 = .text:0x8006CE90; // type:function size:0xD0 +fn_8006CF60 = .text:0x8006CF60; // type:function size:0xA0 +fn_8006D000 = .text:0x8006D000; // type:function size:0x90 +fn_8006D090 = .text:0x8006D090; // type:function size:0x34 +fn_8006D0C4 = .text:0x8006D0C4; // type:function size:0x80 +fn_8006D144 = .text:0x8006D144; // type:function size:0x44 +fn_8006D188 = .text:0x8006D188; // type:function size:0x58 +fn_8006D1E0 = .text:0x8006D1E0; // type:function size:0x70 +fn_8006D250 = .text:0x8006D250; // type:function size:0x120 +fn_8006D370 = .text:0x8006D370; // type:function size:0x164 +fn_8006D4D4 = .text:0x8006D4D4; // type:function size:0x80 +fn_8006D554 = .text:0x8006D554; // type:function size:0xA4 +fn_8006D5F8 = .text:0x8006D5F8; // type:function size:0x8 +fn_8006D600 = .text:0x8006D600; // type:function size:0x50 +fn_8006D650 = .text:0x8006D650; // type:function size:0x1B0 +fn_8006D800 = .text:0x8006D800; // type:function size:0xB0 +fn_8006D8B0 = .text:0x8006D8B0; // type:function size:0x94 +fn_8006D944 = .text:0x8006D944; // type:function size:0x80 +fn_8006D9C4 = .text:0x8006D9C4; // type:function size:0x12C +fn_8006DAF0 = .text:0x8006DAF0; // type:function size:0x54 +fn_8006DB44 = .text:0x8006DB44; // type:function size:0x3C +fn_8006DB80 = .text:0x8006DB80; // type:function size:0x24 +fn_8006DBA4 = .text:0x8006DBA4; // type:function size:0x10 +fn_8006DBB4 = .text:0x8006DBB4; // type:function size:0x14 +fn_8006DBC8 = .text:0x8006DBC8; // type:function size:0x18 +fn_8006DBE0 = .text:0x8006DBE0; // type:function size:0x18 +fn_8006DBF8 = .text:0x8006DBF8; // type:function size:0xB8 +fn_8006DCB0 = .text:0x8006DCB0; // type:function size:0x3C +fn_8006DCEC = .text:0x8006DCEC; // type:function size:0x20 +fn_8006DD0C = .text:0x8006DD0C; // type:function size:0x4 +fn_8006DD10 = .text:0x8006DD10; // type:function size:0x4 +fn_8006DD14 = .text:0x8006DD14; // type:function size:0x4 +fn_8006DD18 = .text:0x8006DD18; // type:function size:0x118 +fn_8006DE30 = .text:0x8006DE30; // type:function size:0x78 +fn_8006DEA8 = .text:0x8006DEA8; // type:function size:0x4 +fn_8006DEAC = .text:0x8006DEAC; // type:function size:0x4 +fn_8006DEB0 = .text:0x8006DEB0; // type:function size:0x54 +fn_8006DF04 = .text:0x8006DF04; // type:function size:0x58 +fn_8006DF5C = .text:0x8006DF5C; // type:function size:0x64 +fn_8006DFC0 = .text:0x8006DFC0; // type:function size:0x4 +fn_8006DFC4 = .text:0x8006DFC4; // type:function size:0x4 +fn_8006DFC8 = .text:0x8006DFC8; // type:function size:0x100 +fn_8006E0C8 = .text:0x8006E0C8; // type:function size:0xC8 +fn_8006E190 = .text:0x8006E190; // type:function size:0x4 +fn_8006E194 = .text:0x8006E194; // type:function size:0xE0 +fn_8006E274 = .text:0x8006E274; // type:function size:0xA0 +fn_8006E314 = .text:0x8006E314; // type:function size:0x4 +fn_8006E318 = .text:0x8006E318; // type:function size:0x178 +fn_8006E490 = .text:0x8006E490; // type:function size:0x158 +fn_8006E5E8 = .text:0x8006E5E8; // type:function size:0xB4 +fn_8006E69C = .text:0x8006E69C; // type:function size:0x10 +fn_8006E6AC = .text:0x8006E6AC; // type:function size:0xC +fn_8006E6B8 = .text:0x8006E6B8; // type:function size:0xC +fn_8006E6C4 = .text:0x8006E6C4; // type:function size:0x10 +fn_8006E6D4 = .text:0x8006E6D4; // type:function size:0x10 +fn_8006E6E4 = .text:0x8006E6E4; // type:function size:0x8C +fn_8006E770 = .text:0x8006E770; // type:function size:0x94 +fn_8006E804 = .text:0x8006E804; // type:function size:0xAC +fn_8006E8B0 = .text:0x8006E8B0; // type:function size:0x188 +fn_8006EA38 = .text:0x8006EA38; // type:function size:0x8 +fn_8006EA40 = .text:0x8006EA40; // type:function size:0x2C +fn_8006EA6C = .text:0x8006EA6C; // type:function size:0xA0 +fn_8006EB0C = .text:0x8006EB0C; // type:function size:0x34 +fn_8006EB40 = .text:0x8006EB40; // type:function size:0x4 +fn_8006EB44 = .text:0x8006EB44; // type:function size:0x30 +fn_8006EB74 = .text:0x8006EB74; // type:function size:0x30 +fn_8006EBA4 = .text:0x8006EBA4; // type:function size:0x5C +fn_8006EC00 = .text:0x8006EC00; // type:function size:0xAC +fn_8006ECAC = .text:0x8006ECAC; // type:function size:0x5C +fn_8006ED08 = .text:0x8006ED08; // type:function size:0x4 +fn_8006ED0C = .text:0x8006ED0C; // type:function size:0x6C +fn_8006ED78 = .text:0x8006ED78; // type:function size:0x58 +fn_8006EDD0 = .text:0x8006EDD0; // type:function size:0x4 +fn_8006EDD4 = .text:0x8006EDD4; // type:function size:0x8 +fn_8006EDDC = .text:0x8006EDDC; // type:function size:0xC +fn_8006EDE8 = .text:0x8006EDE8; // type:function size:0x3C +fn_8006EE24 = .text:0x8006EE24; // type:function size:0x58 +fn_8006EE7C = .text:0x8006EE7C; // type:function size:0x5C +fn_8006EED8 = .text:0x8006EED8; // type:function size:0x1A8 +fn_8006F080 = .text:0x8006F080; // type:function size:0x3C +fn_8006F0BC = .text:0x8006F0BC; // type:function size:0xBC +fn_8006F178 = .text:0x8006F178; // type:function size:0x58 +fn_8006F1D0 = .text:0x8006F1D0; // type:function size:0x3C +fn_8006F20C = .text:0x8006F20C; // type:function size:0x24 +fn_8006F230 = .text:0x8006F230; // type:function size:0x10 +fn_8006F240 = .text:0x8006F240; // type:function size:0x14 +fn_8006F254 = .text:0x8006F254; // type:function size:0x18 +fn_8006F26C = .text:0x8006F26C; // type:function size:0x18 +fn_8006F284 = .text:0x8006F284; // type:function size:0xB8 +fn_8006F33C = .text:0x8006F33C; // type:function size:0x3C +fn_8006F378 = .text:0x8006F378; // type:function size:0x28 +fn_8006F3A0 = .text:0x8006F3A0; // type:function size:0x4 +fn_8006F3A4 = .text:0x8006F3A4; // type:function size:0x8 +fn_8006F3AC = .text:0x8006F3AC; // type:function size:0x80 +fn_8006F42C = .text:0x8006F42C; // type:function size:0x4 +fn_8006F430 = .text:0x8006F430; // type:function size:0x4 +fn_8006F434 = .text:0x8006F434; // type:function size:0x4 +fn_8006F438 = .text:0x8006F438; // type:function size:0xC +fn_8006F444 = .text:0x8006F444; // type:function size:0x54 +fn_8006F498 = .text:0x8006F498; // type:function size:0x58 +fn_8006F4F0 = .text:0x8006F4F0; // type:function size:0x4 +fn_8006F4F4 = .text:0x8006F4F4; // type:function size:0x4 +fn_8006F4F8 = .text:0x8006F4F8; // type:function size:0x4 +fn_8006F4FC = .text:0x8006F4FC; // type:function size:0x4 +fn_8006F500 = .text:0x8006F500; // type:function size:0x50 +fn_8006F550 = .text:0x8006F550; // type:function size:0x4 +fn_8006F554 = .text:0x8006F554; // type:function size:0x4 +fn_8006F558 = .text:0x8006F558; // type:function size:0xE8 +fn_8006F640 = .text:0x8006F640; // type:function size:0xC4 +fn_8006F704 = .text:0x8006F704; // type:function size:0x98 +fn_8006F79C = .text:0x8006F79C; // type:function size:0x64 +fn_8006F800 = .text:0x8006F800; // type:function size:0x98 +fn_8006F898 = .text:0x8006F898; // type:function size:0x64 +fn_8006F8FC = .text:0x8006F8FC; // type:function size:0x10 +fn_8006F90C = .text:0x8006F90C; // type:function size:0x10 +fn_8006F91C = .text:0x8006F91C; // type:function size:0x18 +fn_8006F934 = .text:0x8006F934; // type:function size:0x40 +fn_8006F974 = .text:0x8006F974; // type:function size:0x38 +fn_8006F9AC = .text:0x8006F9AC; // type:function size:0x70 +fn_8006FA1C = .text:0x8006FA1C; // type:function size:0x9C +fn_8006FAB8 = .text:0x8006FAB8; // type:function size:0x60 +fn_8006FB18 = .text:0x8006FB18; // type:function size:0x5C +fn_8006FB74 = .text:0x8006FB74; // type:function size:0x50 +fn_8006FBC4 = .text:0x8006FBC4; // type:function size:0x70 +fn_8006FC34 = .text:0x8006FC34; // type:function size:0x78 +fn_8006FCAC = .text:0x8006FCAC; // type:function size:0x8 +fn_8006FCB4 = .text:0x8006FCB4; // type:function size:0x60 +fn_8006FD14 = .text:0x8006FD14; // type:function size:0x8 +fn_8006FD1C = .text:0x8006FD1C; // type:function size:0x70 +fn_8006FD8C = .text:0x8006FD8C; // type:function size:0xCC +fn_8006FE58 = .text:0x8006FE58; // type:function size:0x44 +fn_8006FE9C = .text:0x8006FE9C; // type:function size:0x44 +fn_8006FEE0 = .text:0x8006FEE0; // type:function size:0x94 +fn_8006FF74 = .text:0x8006FF74; // type:function size:0x3C +fn_8006FFB0 = .text:0x8006FFB0; // type:function size:0x60 +fn_80070010 = .text:0x80070010; // type:function size:0x5C +fn_8007006C = .text:0x8007006C; // type:function size:0x64 +fn_800700D0 = .text:0x800700D0; // type:function size:0x2D4 +fn_800703A4 = .text:0x800703A4; // type:function size:0x118 +fn_800704BC = .text:0x800704BC; // type:function size:0xEC +fn_800705A8 = .text:0x800705A8; // type:function size:0x74 +fn_8007061C = .text:0x8007061C; // type:function size:0x8C +fn_800706A8 = .text:0x800706A8; // type:function size:0x9C +fn_80070744 = .text:0x80070744; // type:function size:0x84 +fn_800707C8 = .text:0x800707C8; // type:function size:0xC +fn_800707D4 = .text:0x800707D4; // type:function size:0x5C +fn_80070830 = .text:0x80070830; // type:function size:0x94 +fn_800708C4 = .text:0x800708C4; // type:function size:0x74 +fn_80070938 = .text:0x80070938; // type:function size:0x11C +fn_80070A54 = .text:0x80070A54; // type:function size:0x1E0 +fn_80070C34 = .text:0x80070C34; // type:function size:0x2FC +fn_80070F30 = .text:0x80070F30; // type:function size:0x20 +fn_80070F50 = .text:0x80070F50; // type:function size:0x8 +fn_80070F58 = .text:0x80070F58; // type:function size:0x50 +fn_80070FA8 = .text:0x80070FA8; // type:function size:0x1C0 +fn_80071168 = .text:0x80071168; // type:function size:0xA4 +fn_8007120C = .text:0x8007120C; // type:function size:0x8 +fn_80071214 = .text:0x80071214; // type:function size:0x320 +fn_80071534 = .text:0x80071534; // type:function size:0x18 +fn_8007154C = .text:0x8007154C; // type:function size:0x84 +fn_800715D0 = .text:0x800715D0; // type:function size:0x54 +fn_80071624 = .text:0x80071624; // type:function size:0x1C +fn_80071640 = .text:0x80071640; // type:function size:0x1C +fn_8007165C = .text:0x8007165C; // type:function size:0x3C +fn_80071698 = .text:0x80071698; // type:function size:0x8 +fn_800716A0 = .text:0x800716A0; // type:function size:0x5C +fn_800716FC = .text:0x800716FC; // type:function size:0x4C +fn_80071748 = .text:0x80071748; // type:function size:0x58 +fn_800717A0 = .text:0x800717A0; // type:function size:0xA0 +fn_80071840 = .text:0x80071840; // type:function size:0x84 +fn_800718C4 = .text:0x800718C4; // type:function size:0x154 +fn_80071A18 = .text:0x80071A18; // type:function size:0x50 +fn_80071A68 = .text:0x80071A68; // type:function size:0x3C +fn_80071AA4 = .text:0x80071AA4; // type:function size:0x33C +fn_80071DE0 = .text:0x80071DE0; // type:function size:0x68 +fn_80071E48 = .text:0x80071E48; // type:function size:0x140 +fn_80071F88 = .text:0x80071F88; // type:function size:0x8C +fn_80072014 = .text:0x80072014; // type:function size:0x70 +fn_80072084 = .text:0x80072084; // type:function size:0xA4 +fn_80072128 = .text:0x80072128; // type:function size:0x88 +fn_800721B0 = .text:0x800721B0; // type:function size:0xAC +fn_8007225C = .text:0x8007225C; // type:function size:0xC8 +fn_80072324 = .text:0x80072324; // type:function size:0x30 +fn_80072354 = .text:0x80072354; // type:function size:0x70 +fn_800723C4 = .text:0x800723C4; // type:function size:0x78 +fn_8007243C = .text:0x8007243C; // type:function size:0x18 +fn_80072454 = .text:0x80072454; // type:function size:0x30 +fn_80072484 = .text:0x80072484; // type:function size:0x30 +fn_800724B4 = .text:0x800724B4; // type:function size:0xC0 +fn_80072574 = .text:0x80072574; // type:function size:0x50 +fn_800725C4 = .text:0x800725C4; // type:function size:0x70 +fn_80072634 = .text:0x80072634; // type:function size:0x74 +fn_800726A8 = .text:0x800726A8; // type:function size:0x74 +fn_8007271C = .text:0x8007271C; // type:function size:0x3C +fn_80072758 = .text:0x80072758; // type:function size:0x24 +fn_8007277C = .text:0x8007277C; // type:function size:0x10 +fn_8007278C = .text:0x8007278C; // type:function size:0x14 +fn_800727A0 = .text:0x800727A0; // type:function size:0x18 +fn_800727B8 = .text:0x800727B8; // type:function size:0x18 +fn_800727D0 = .text:0x800727D0; // type:function size:0x94 +fn_80072864 = .text:0x80072864; // type:function size:0x3C +fn_800728A0 = .text:0x800728A0; // type:function size:0x20 +fn_800728C0 = .text:0x800728C0; // type:function size:0x178 +fn_80072A38 = .text:0x80072A38; // type:function size:0x3C +fn_80072A74 = .text:0x80072A74; // type:function size:0x3C +fn_80072AB0 = .text:0x80072AB0; // type:function size:0x3C +fn_80072AEC = .text:0x80072AEC; // type:function size:0x3C +fn_80072B28 = .text:0x80072B28; // type:function size:0x100 +fn_80072C28 = .text:0x80072C28; // type:function size:0x4 +fn_80072C2C = .text:0x80072C2C; // type:function size:0xC8 +fn_80072CF4 = .text:0x80072CF4; // type:function size:0x5C +fn_80072D50 = .text:0x80072D50; // type:function size:0x4 +fn_80072D54 = .text:0x80072D54; // type:function size:0x58 +fn_80072DAC = .text:0x80072DAC; // type:function size:0x4 +fn_80072DB0 = .text:0x80072DB0; // type:function size:0x74 +fn_80072E24 = .text:0x80072E24; // type:function size:0x58 +fn_80072E7C = .text:0x80072E7C; // type:function size:0x64 +fn_80072EE0 = .text:0x80072EE0; // type:function size:0x4 +fn_80072EE4 = .text:0x80072EE4; // type:function size:0xF8 +fn_80072FDC = .text:0x80072FDC; // type:function size:0xE0 +fn_800730BC = .text:0x800730BC; // type:function size:0x230 +fn_800732EC = .text:0x800732EC; // type:function size:0x1B8 +fn_800734A4 = .text:0x800734A4; // type:function size:0xF8 +fn_8007359C = .text:0x8007359C; // type:function size:0x11C +fn_800736B8 = .text:0x800736B8; // type:function size:0xD4 +fn_8007378C = .text:0x8007378C; // type:function size:0x98 +fn_80073824 = .text:0x80073824; // type:function size:0x7C +fn_800738A0 = .text:0x800738A0; // type:function size:0xDC +fn_8007397C = .text:0x8007397C; // type:function size:0x84 +fn_80073A00 = .text:0x80073A00; // type:function size:0x68 +fn_80073A68 = .text:0x80073A68; // type:function size:0x10 +fn_80073A78 = .text:0x80073A78; // type:function size:0xC +fn_80073A84 = .text:0x80073A84; // type:function size:0xC +fn_80073A90 = .text:0x80073A90; // type:function size:0x10 +fn_80073AA0 = .text:0x80073AA0; // type:function size:0x10 +fn_80073AB0 = .text:0x80073AB0; // type:function size:0x64 +fn_80073B14 = .text:0x80073B14; // type:function size:0x58 +fn_80073B6C = .text:0x80073B6C; // type:function size:0x64 +fn_80073BD0 = .text:0x80073BD0; // type:function size:0x58 +fn_80073C28 = .text:0x80073C28; // type:function size:0x14 +fn_80073C3C = .text:0x80073C3C; // type:function size:0x58 +fn_80073C94 = .text:0x80073C94; // type:function size:0x14 +fn_80073CA8 = .text:0x80073CA8; // type:function size:0x58 +fn_80073D00 = .text:0x80073D00; // type:function size:0x50 +fn_80073D50 = .text:0x80073D50; // type:function size:0x58 +fn_80073DA8 = .text:0x80073DA8; // type:function size:0x44 +fn_80073DEC = .text:0x80073DEC; // type:function size:0x58 +fn_80073E44 = .text:0x80073E44; // type:function size:0x50 +fn_80073E94 = .text:0x80073E94; // type:function size:0x44 +fn_80073ED8 = .text:0x80073ED8; // type:function size:0x34 +fn_80073F0C = .text:0x80073F0C; // type:function size:0x8 +fn_80073F14 = .text:0x80073F14; // type:function size:0x8 +fn_80073F1C = .text:0x80073F1C; // type:function size:0xC4 +fn_80073FE0 = .text:0x80073FE0; // type:function size:0x74 +fn_80074054 = .text:0x80074054; // type:function size:0x4 +fn_80074058 = .text:0x80074058; // type:function size:0x40 +fn_80074098 = .text:0x80074098; // type:function size:0x58 +fn_800740F0 = .text:0x800740F0; // type:function size:0x38 +fn_80074128 = .text:0x80074128; // type:function size:0x38 +fn_80074160 = .text:0x80074160; // type:function size:0x54 +fn_800741B4 = .text:0x800741B4; // type:function size:0x28 +fn_800741DC = .text:0x800741DC; // type:function size:0x3C +fn_80074218 = .text:0x80074218; // type:function size:0x8 +fn_80074220 = .text:0x80074220; // type:function size:0x8C +fn_800742AC = .text:0x800742AC; // type:function size:0x34 +fn_800742E0 = .text:0x800742E0; // type:function size:0x50 +fn_80074330 = .text:0x80074330; // type:function size:0x74 +fn_800743A4 = .text:0x800743A4; // type:function size:0x18 +fn_800743BC = .text:0x800743BC; // type:function size:0x4 +fn_800743C0 = .text:0x800743C0; // type:function size:0x40 +fn_80074400 = .text:0x80074400; // type:function size:0x38 +fn_80074438 = .text:0x80074438; // type:function size:0x14 +fn_8007444C = .text:0x8007444C; // type:function size:0x5C +fn_800744A8 = .text:0x800744A8; // type:function size:0x7C +fn_80074524 = .text:0x80074524; // type:function size:0x4C +fn_80074570 = .text:0x80074570; // type:function size:0x74 +fn_800745E4 = .text:0x800745E4; // type:function size:0x8 +fn_800745EC = .text:0x800745EC; // type:function size:0x64 +fn_80074650 = .text:0x80074650; // type:function size:0x4 +fn_80074654 = .text:0x80074654; // type:function size:0x9C +fn_800746F0 = .text:0x800746F0; // type:function size:0x90 +fn_80074780 = .text:0x80074780; // type:function size:0x158 +fn_800748D8 = .text:0x800748D8; // type:function size:0x4 +fn_800748DC = .text:0x800748DC; // type:function size:0x4 +fn_800748E0 = .text:0x800748E0; // type:function size:0x120 +fn_80074A00 = .text:0x80074A00; // type:function size:0x84 +fn_80074A84 = .text:0x80074A84; // type:function size:0xC +fn_80074A90 = .text:0x80074A90; // type:function size:0xC +fn_80074A9C = .text:0x80074A9C; // type:function size:0x8 +fn_80074AA4 = .text:0x80074AA4; // type:function size:0x8 +fn_80074AAC = .text:0x80074AAC; // type:function size:0x28 +fn_80074AD4 = .text:0x80074AD4; // type:function size:0x50 +fn_80074B24 = .text:0x80074B24; // type:function size:0x90 +fn_80074BB4 = .text:0x80074BB4; // type:function size:0x84 +fn_80074C38 = .text:0x80074C38; // type:function size:0x84 +fn_80074CBC = .text:0x80074CBC; // type:function size:0x44 +fn_80074D00 = .text:0x80074D00; // type:function size:0x8 +fn_80074D08 = .text:0x80074D08; // type:function size:0x8 +fn_80074D10 = .text:0x80074D10; // type:function size:0x8 +fn_80074D18 = .text:0x80074D18; // type:function size:0x8 +fn_80074D20 = .text:0x80074D20; // type:function size:0xD0 +fn_80074DF0 = .text:0x80074DF0; // type:function size:0x54 +fn_80074E44 = .text:0x80074E44; // type:function size:0x198 +fn_80074FDC = .text:0x80074FDC; // type:function size:0xA0 +fn_8007507C = .text:0x8007507C; // type:function size:0x8 +fn_80075084 = .text:0x80075084; // type:function size:0x8 +fn_8007508C = .text:0x8007508C; // type:function size:0x40 +fn_800750CC = .text:0x800750CC; // type:function size:0x48 +fn_80075114 = .text:0x80075114; // type:function size:0x6C +fn_80075180 = .text:0x80075180; // type:function size:0x8 +fn_80075188 = .text:0x80075188; // type:function size:0x54 +fn_800751DC = .text:0x800751DC; // type:function size:0x5C +fn_80075238 = .text:0x80075238; // type:function size:0x30 +fn_80075268 = .text:0x80075268; // type:function size:0xC +fn_80075274 = .text:0x80075274; // type:function size:0x68 +fn_800752DC = .text:0x800752DC; // type:function size:0x68 +fn_80075344 = .text:0x80075344; // type:function size:0x8 +fn_8007534C = .text:0x8007534C; // type:function size:0xAC +fn_800753F8 = .text:0x800753F8; // type:function size:0x94 +fn_8007548C = .text:0x8007548C; // type:function size:0x50 +fn_800754DC = .text:0x800754DC; // type:function size:0x154 +fn_80075630 = .text:0x80075630; // type:function size:0x3C +fn_8007566C = .text:0x8007566C; // type:function size:0x8 +fn_80075674 = .text:0x80075674; // type:function size:0x8 +fn_8007567C = .text:0x8007567C; // type:function size:0xA8 +fn_80075724 = .text:0x80075724; // type:function size:0x114 +fn_80075838 = .text:0x80075838; // type:function size:0xAC +fn_800758E4 = .text:0x800758E4; // type:function size:0x4 +fn_800758E8 = .text:0x800758E8; // type:function size:0x4C +fn_80075934 = .text:0x80075934; // type:function size:0x24 +fn_80075958 = .text:0x80075958; // type:function size:0x27C +fn_80075BD4 = .text:0x80075BD4; // type:function size:0x40 +fn_80075C14 = .text:0x80075C14; // type:function size:0x64 +fn_80075C78 = .text:0x80075C78; // type:function size:0x8C +fn_80075D04 = .text:0x80075D04; // type:function size:0xA8 +fn_80075DAC = .text:0x80075DAC; // type:function size:0xC8 +fn_80075E74 = .text:0x80075E74; // type:function size:0xF0 +fn_80075F64 = .text:0x80075F64; // type:function size:0x90 +fn_80075FF4 = .text:0x80075FF4; // type:function size:0x6C +fn_80076060 = .text:0x80076060; // type:function size:0x38 +fn_80076098 = .text:0x80076098; // type:function size:0x6C +fn_80076104 = .text:0x80076104; // type:function size:0x1C4 +fn_800762C8 = .text:0x800762C8; // type:function size:0x28 +fn_800762F0 = .text:0x800762F0; // type:function size:0xC +fn_800762FC = .text:0x800762FC; // type:function size:0xC +fn_80076308 = .text:0x80076308; // type:function size:0xC +fn_80076314 = .text:0x80076314; // type:function size:0x8 +fn_8007631C = .text:0x8007631C; // type:function size:0x8 +fn_80076324 = .text:0x80076324; // type:function size:0x3C +fn_80076360 = .text:0x80076360; // type:function size:0x24 +fn_80076384 = .text:0x80076384; // type:function size:0x10 +fn_80076394 = .text:0x80076394; // type:function size:0x14 +fn_800763A8 = .text:0x800763A8; // type:function size:0x18 +fn_800763C0 = .text:0x800763C0; // type:function size:0x18 +fn_800763D8 = .text:0x800763D8; // type:function size:0x68 +fn_80076440 = .text:0x80076440; // type:function size:0x3C +fn_8007647C = .text:0x8007647C; // type:function size:0x20 +fn_8007649C = .text:0x8007649C; // type:function size:0x1BC +fn_80076658 = .text:0x80076658; // type:function size:0x3C +fn_80076694 = .text:0x80076694; // type:function size:0x3C +fn_800766D0 = .text:0x800766D0; // type:function size:0x3C +fn_8007670C = .text:0x8007670C; // type:function size:0x10 +fn_8007671C = .text:0x8007671C; // type:function size:0x3C +fn_80076758 = .text:0x80076758; // type:function size:0x3C +fn_80076794 = .text:0x80076794; // type:function size:0x100 +fn_80076894 = .text:0x80076894; // type:function size:0x4 +fn_80076898 = .text:0x80076898; // type:function size:0x7C +fn_80076914 = .text:0x80076914; // type:function size:0x40 +fn_80076954 = .text:0x80076954; // type:function size:0x4 +fn_80076958 = .text:0x80076958; // type:function size:0x58 +fn_800769B0 = .text:0x800769B0; // type:function size:0x4 +fn_800769B4 = .text:0x800769B4; // type:function size:0x74 +fn_80076A28 = .text:0x80076A28; // type:function size:0x58 +fn_80076A80 = .text:0x80076A80; // type:function size:0x10 +fn_80076A90 = .text:0x80076A90; // type:function size:0x40 +fn_80076AD0 = .text:0x80076AD0; // type:function size:0x4 +fn_80076AD4 = .text:0x80076AD4; // type:function size:0xF8 +fn_80076BCC = .text:0x80076BCC; // type:function size:0xE0 +fn_80076CAC = .text:0x80076CAC; // type:function size:0x230 +fn_80076EDC = .text:0x80076EDC; // type:function size:0x1B8 +fn_80077094 = .text:0x80077094; // type:function size:0xF8 +fn_8007718C = .text:0x8007718C; // type:function size:0x11C +fn_800772A8 = .text:0x800772A8; // type:function size:0xB8 +fn_80077360 = .text:0x80077360; // type:function size:0x60 +fn_800773C0 = .text:0x800773C0; // type:function size:0x4 +fn_800773C4 = .text:0x800773C4; // type:function size:0x10 +fn_800773D4 = .text:0x800773D4; // type:function size:0xC +fn_800773E0 = .text:0x800773E0; // type:function size:0xC +fn_800773EC = .text:0x800773EC; // type:function size:0x10 +fn_800773FC = .text:0x800773FC; // type:function size:0x10 +fn_8007740C = .text:0x8007740C; // type:function size:0xC +fn_80077418 = .text:0x80077418; // type:function size:0xCC +fn_800774E4 = .text:0x800774E4; // type:function size:0x58 +fn_8007753C = .text:0x8007753C; // type:function size:0x74 +fn_800775B0 = .text:0x800775B0; // type:function size:0x58 +fn_80077608 = .text:0x80077608; // type:function size:0x54 +fn_8007765C = .text:0x8007765C; // type:function size:0x58 +fn_800776B4 = .text:0x800776B4; // type:function size:0x14 +fn_800776C8 = .text:0x800776C8; // type:function size:0x58 +fn_80077720 = .text:0x80077720; // type:function size:0x134 +fn_80077854 = .text:0x80077854; // type:function size:0x74 +fn_800778C8 = .text:0x800778C8; // type:function size:0x4 +fn_800778CC = .text:0x800778CC; // type:function size:0x38 +fn_80077904 = .text:0x80077904; // type:function size:0x3C +fn_80077940 = .text:0x80077940; // type:function size:0x58 +fn_80077998 = .text:0x80077998; // type:function size:0x9C +fn_80077A34 = .text:0x80077A34; // type:function size:0x8 +fn_80077A3C = .text:0x80077A3C; // type:function size:0xC4 +fn_80077B00 = .text:0x80077B00; // type:function size:0x64 +fn_80077B64 = .text:0x80077B64; // type:function size:0x4 +fn_80077B68 = .text:0x80077B68; // type:function size:0x94 +fn_80077BFC = .text:0x80077BFC; // type:function size:0x5C +fn_80077C58 = .text:0x80077C58; // type:function size:0x50 +fn_80077CA8 = .text:0x80077CA8; // type:function size:0x5C +fn_80077D04 = .text:0x80077D04; // type:function size:0x50 +fn_80077D54 = .text:0x80077D54; // type:function size:0x70 +fn_80077DC4 = .text:0x80077DC4; // type:function size:0x70 +fn_80077E34 = .text:0x80077E34; // type:function size:0x80 +fn_80077EB4 = .text:0x80077EB4; // type:function size:0x38 +fn_80077EEC = .text:0x80077EEC; // type:function size:0x38 +fn_80077F24 = .text:0x80077F24; // type:function size:0xB4 +fn_80077FD8 = .text:0x80077FD8; // type:function size:0x5C +fn_80078034 = .text:0x80078034; // type:function size:0x48 +fn_8007807C = .text:0x8007807C; // type:function size:0x64 +fn_800780E0 = .text:0x800780E0; // type:function size:0xE0 +fn_800781C0 = .text:0x800781C0; // type:function size:0xC8 +fn_80078288 = .text:0x80078288; // type:function size:0x38 +fn_800782C0 = .text:0x800782C0; // type:function size:0x60 +fn_80078320 = .text:0x80078320; // type:function size:0x3C +fn_8007835C = .text:0x8007835C; // type:function size:0x10 +fn_8007836C = .text:0x8007836C; // type:function size:0xC +fn_80078378 = .text:0x80078378; // type:function size:0xB8 +fn_80078430 = .text:0x80078430; // type:function size:0xF0 +fn_80078520 = .text:0x80078520; // type:function size:0x9C +fn_800785BC = .text:0x800785BC; // type:function size:0x10 +fn_800785CC = .text:0x800785CC; // type:function size:0x3C +fn_80078608 = .text:0x80078608; // type:function size:0x5C +fn_80078664 = .text:0x80078664; // type:function size:0x104 +fn_80078768 = .text:0x80078768; // type:function size:0x110 +fn_80078878 = .text:0x80078878; // type:function size:0xC8 +fn_80078940 = .text:0x80078940; // type:function size:0xB4 +fn_800789F4 = .text:0x800789F4; // type:function size:0x208 +fn_80078BFC = .text:0x80078BFC; // type:function size:0x94 +fn_80078C90 = .text:0x80078C90; // type:function size:0x2D4 +fn_80078F64 = .text:0x80078F64; // type:function size:0x70 +fn_80078FD4 = .text:0x80078FD4; // type:function size:0x2D4 +fn_800792A8 = .text:0x800792A8; // type:function size:0x64 +fn_8007930C = .text:0x8007930C; // type:function size:0xC +fn_80079318 = .text:0x80079318; // type:function size:0x2C +fn_80079344 = .text:0x80079344; // type:function size:0x118 +fn_8007945C = .text:0x8007945C; // type:function size:0xEC +fn_80079548 = .text:0x80079548; // type:function size:0x6C +fn_800795B4 = .text:0x800795B4; // type:function size:0x10 +fn_800795C4 = .text:0x800795C4; // type:function size:0x48 +fn_8007960C = .text:0x8007960C; // type:function size:0x118 +fn_80079724 = .text:0x80079724; // type:function size:0xEC +fn_80079810 = .text:0x80079810; // type:function size:0x74 +fn_80079884 = .text:0x80079884; // type:function size:0x3C +fn_800798C0 = .text:0x800798C0; // type:function size:0x5C +fn_8007991C = .text:0x8007991C; // type:function size:0x44 +fn_80079960 = .text:0x80079960; // type:function size:0x68 +fn_800799C8 = .text:0x800799C8; // type:function size:0x94 +fn_80079A5C = .text:0x80079A5C; // type:function size:0x78 +fn_80079AD4 = .text:0x80079AD4; // type:function size:0x74 +fn_80079B48 = .text:0x80079B48; // type:function size:0x18 +fn_80079B60 = .text:0x80079B60; // type:function size:0x4 +fn_80079B64 = .text:0x80079B64; // type:function size:0x30 +fn_80079B94 = .text:0x80079B94; // type:function size:0x5C +fn_80079BF0 = .text:0x80079BF0; // type:function size:0x50 +fn_80079C40 = .text:0x80079C40; // type:function size:0x70 +fn_80079CB0 = .text:0x80079CB0; // type:function size:0xA4 +fn_80079D54 = .text:0x80079D54; // type:function size:0x64 +fn_80079DB8 = .text:0x80079DB8; // type:function size:0x74 +fn_80079E2C = .text:0x80079E2C; // type:function size:0x74 +fn_80079EA0 = .text:0x80079EA0; // type:function size:0x58 +fn_80079EF8 = .text:0x80079EF8; // type:function size:0x4 +fn_80079EFC = .text:0x80079EFC; // type:function size:0x8 +fn_80079F04 = .text:0x80079F04; // type:function size:0xC +fn_80079F10 = .text:0x80079F10; // type:function size:0x14 +fn_80079F24 = .text:0x80079F24; // type:function size:0x44 +fn_80079F68 = .text:0x80079F68; // type:function size:0x120 +fn_8007A088 = .text:0x8007A088; // type:function size:0x314 +fn_8007A39C = .text:0x8007A39C; // type:function size:0x154 +fn_8007A4F0 = .text:0x8007A4F0; // type:function size:0x88 +fn_8007A578 = .text:0x8007A578; // type:function size:0x18 +fn_8007A590 = .text:0x8007A590; // type:function size:0x38 +fn_8007A5C8 = .text:0x8007A5C8; // type:function size:0x60 +fn_8007A628 = .text:0x8007A628; // type:function size:0xB0 +fn_8007A6D8 = .text:0x8007A6D8; // type:function size:0x38 +fn_8007A710 = .text:0x8007A710; // type:function size:0x74 +fn_8007A784 = .text:0x8007A784; // type:function size:0x18 +fn_8007A79C = .text:0x8007A79C; // type:function size:0x4 +fn_8007A7A0 = .text:0x8007A7A0; // type:function size:0x40 +fn_8007A7E0 = .text:0x8007A7E0; // type:function size:0x40 +fn_8007A820 = .text:0x8007A820; // type:function size:0x64 +fn_8007A884 = .text:0x8007A884; // type:function size:0x40 +fn_8007A8C4 = .text:0x8007A8C4; // type:function size:0x84 +fn_8007A948 = .text:0x8007A948; // type:function size:0xA8 +fn_8007A9F0 = .text:0x8007A9F0; // type:function size:0x78 +fn_8007AA68 = .text:0x8007AA68; // type:function size:0x68 +fn_8007AAD0 = .text:0x8007AAD0; // type:function size:0x50 +fn_8007AB20 = .text:0x8007AB20; // type:function size:0x5C +fn_8007AB7C = .text:0x8007AB7C; // type:function size:0x14 +fn_8007AB90 = .text:0x8007AB90; // type:function size:0x8C +fn_8007AC1C = .text:0x8007AC1C; // type:function size:0x4 +fn_8007AC20 = .text:0x8007AC20; // type:function size:0x68 +fn_8007AC88 = .text:0x8007AC88; // type:function size:0x5C +fn_8007ACE4 = .text:0x8007ACE4; // type:function size:0x50 +fn_8007AD34 = .text:0x8007AD34; // type:function size:0x44 +fn_8007AD78 = .text:0x8007AD78; // type:function size:0x40 +fn_8007ADB8 = .text:0x8007ADB8; // type:function size:0x5C +fn_8007AE14 = .text:0x8007AE14; // type:function size:0x44 +fn_8007AE58 = .text:0x8007AE58; // type:function size:0x38 +fn_8007AE90 = .text:0x8007AE90; // type:function size:0x58 +fn_8007AEE8 = .text:0x8007AEE8; // type:function size:0x44 +fn_8007AF2C = .text:0x8007AF2C; // type:function size:0x18 +fn_8007AF44 = .text:0x8007AF44; // type:function size:0x40 +fn_8007AF84 = .text:0x8007AF84; // type:function size:0x28 +fn_8007AFAC = .text:0x8007AFAC; // type:function size:0x3C +fn_8007AFE8 = .text:0x8007AFE8; // type:function size:0x58 +fn_8007B040 = .text:0x8007B040; // type:function size:0x6C +fn_8007B0AC = .text:0x8007B0AC; // type:function size:0x58 +fn_8007B104 = .text:0x8007B104; // type:function size:0x10 +fn_8007B114 = .text:0x8007B114; // type:function size:0x48 +fn_8007B15C = .text:0x8007B15C; // type:function size:0xA0 +fn_8007B1FC = .text:0x8007B1FC; // type:function size:0x6C +fn_8007B268 = .text:0x8007B268; // type:function size:0x7C +fn_8007B2E4 = .text:0x8007B2E4; // type:function size:0x48 +fn_8007B32C = .text:0x8007B32C; // type:function size:0x38 +fn_8007B364 = .text:0x8007B364; // type:function size:0x24 +fn_8007B388 = .text:0x8007B388; // type:function size:0x30 +fn_8007B3B8 = .text:0x8007B3B8; // type:function size:0x10 +SetVersionInfo__Q26Quazal11ProductInfoFPCc = .text:0x8007B3C8; // type:function size:0xB8 +fn_8007B480 = .text:0x8007B480; // type:function size:0x8 +fn_8007B488 = .text:0x8007B488; // type:function size:0x8 +fn_8007B490 = .text:0x8007B490; // type:function size:0x64 +fn_8007B4F4 = .text:0x8007B4F4; // type:function size:0x74 +fn_8007B568 = .text:0x8007B568; // type:function size:0x70 +fn_8007B5D8 = .text:0x8007B5D8; // type:function size:0x98 +fn_8007B670 = .text:0x8007B670; // type:function size:0x48 +fn_8007B6B8 = .text:0x8007B6B8; // type:function size:0x38 +fn_8007B6F0 = .text:0x8007B6F0; // type:function size:0x4C +fn_8007B73C = .text:0x8007B73C; // type:function size:0x88 +fn_8007B7C4 = .text:0x8007B7C4; // type:function size:0x78 +fn_8007B83C = .text:0x8007B83C; // type:function size:0x3C +fn_8007B878 = .text:0x8007B878; // type:function size:0x34 +fn_8007B8AC = .text:0x8007B8AC; // type:function size:0x4 +fn_8007B8B0 = .text:0x8007B8B0; // type:function size:0x84 +fn_8007B934 = .text:0x8007B934; // type:function size:0xC +fn_8007B940 = .text:0x8007B940; // type:function size:0x10 +fn_8007B950 = .text:0x8007B950; // type:function size:0x48 +__ct__Q26Quazal21AnyExtDDLDeclarationsFv = .text:0x8007B998; // type:function size:0x40 +fn_8007B9D8 = .text:0x8007B9D8; // type:function size:0xA4 +fn_8007BA7C = .text:0x8007BA7C; // type:function size:0x98 +__ct__Q26Quazal10SpeexCodecFi = .text:0x8007BB14; // type:function size:0x74 +__dt__Q26Quazal10SpeexCodecFv = .text:0x8007BB88; // type:function size:0x58 +GetName__Q26Quazal10SpeexCodecFv = .text:0x8007BBE0; // type:function size:0xC +GetNbBytesPerEncodedFrame__Q26Quazal10SpeexCodecFv = .text:0x8007BBEC; // type:function size:0xC +GetNbSamplesPerFrame__Q26Quazal10SpeexCodecFv = .text:0x8007BBF8; // type:function size:0xC +CreateEncoderState__Q26Quazal10SpeexCodecFv = .text:0x8007BC04; // type:function size:0x60 +CreateDecoderState__Q26Quazal10SpeexCodecFv = .text:0x8007BC64; // type:function size:0x60 +ReleaseEncoderState__Q26Quazal10SpeexCodecFPQ36Quazal5Codec12EncoderState = .text:0x8007BCC4; // type:function size:0x40 +ReleaseDecoderState__Q26Quazal10SpeexCodecFPQ36Quazal5Codec12DecoderState = .text:0x8007BD04; // type:function size:0x40 +ResetState__Q26Quazal10SpeexCodecFPQ36Quazal5Codec12EncoderState = .text:0x8007BD44; // type:function size:0x9C +ResetState__Q26Quazal10SpeexCodecFPQ36Quazal5Codec12DecoderState = .text:0x8007BDE0; // type:function size:0x4C +Encode__Q26Quazal10SpeexCodecFPQ36Quazal5Codec12EncoderStatePsPUc = .text:0x8007BE2C; // type:function size:0x78 +Decode__Q26Quazal10SpeexCodecFPQ36Quazal5Codec12DecoderStatePUcPs = .text:0x8007BEA4; // type:function size:0x7C +fn_8007BF20 = .text:0x8007BF20; // type:function size:0xC +fn_8007BF2C = .text:0x8007BF2C; // type:function size:0x10 +fn_8007BF3C = .text:0x8007BF3C; // type:function size:0x48 +__ct__Q26Quazal24AVStreamsDDLDeclarationsFv = .text:0x8007BF84; // type:function size:0x40 +__ct__Q26Quazal5CodecFv = .text:0x8007BFC4; // type:function size:0x40 +__ct__Q26Quazal17AudioStreamFormatFv = .text:0x8007C004; // type:function size:0x54 +Init__Q26Quazal17AudioStreamFormatFiiii = .text:0x8007C058; // type:function size:0x14 +__ct__Q26Quazal22_DDL_AudioStreamFormatFv = .text:0x8007C06C; // type:function size:0x10 +__dt__Q26Quazal5CodecFv = .text:0x8007C07C; // type:function size:0x40 +GetCompressionRatio__Q26Quazal5CodecFv = .text:0x8007C0BC; // type:function size:0x9C +Trace__Q26Quazal5CodecFUi = .text:0x8007C158; // type:function size:0x4 +fn_8007C15C = .text:0x8007C15C; // type:function size:0x30 +fn_8007C18C = .text:0x8007C18C; // type:function size:0x5C +fn_8007C1E8 = .text:0x8007C1E8; // type:function size:0x50 +fn_8007C238 = .text:0x8007C238; // type:function size:0x70 +fn_8007C2A8 = .text:0x8007C2A8; // type:function size:0x74 +fn_8007C31C = .text:0x8007C31C; // type:function size:0x8C +fn_8007C3A8 = .text:0x8007C3A8; // type:function size:0x64 +fn_8007C40C = .text:0x8007C40C; // type:function size:0x90 +fn_8007C49C = .text:0x8007C49C; // type:function size:0x54 +fn_8007C4F0 = .text:0x8007C4F0; // type:function size:0x64 +fn_8007C554 = .text:0x8007C554; // type:function size:0x2CC +fn_8007C820 = .text:0x8007C820; // type:function size:0x114 +fn_8007C934 = .text:0x8007C934; // type:function size:0xEC +fn_8007CA20 = .text:0x8007CA20; // type:function size:0x74 +fn_8007CA94 = .text:0x8007CA94; // type:function size:0x48 +__ct__Q26Quazal17StreamingProtocolFPQ26Quazal5Codeci = .text:0x8007CADC; // type:function size:0xE0 +fn_8007CBBC = .text:0x8007CBBC; // type:function size:0x6C +fn_8007CC28 = .text:0x8007CC28; // type:function size:0x74 +__dt__Q26Quazal17StreamingProtocolFv = .text:0x8007CC9C; // type:function size:0x108 +fn_8007CDA4 = .text:0x8007CDA4; // type:function size:0x58 +fn_8007CDFC = .text:0x8007CDFC; // type:function size:0x5C +fn_8007CE58 = .text:0x8007CE58; // type:function size:0x94 +fn_8007CEEC = .text:0x8007CEEC; // type:function size:0xBC +fn_8007CFA8 = .text:0x8007CFA8; // type:function size:0xE4 +fn_8007D08C = .text:0x8007D08C; // type:function size:0xE4 +fn_8007D170 = .text:0x8007D170; // type:function size:0xDC +fn_8007D24C = .text:0x8007D24C; // type:function size:0x138 +fn_8007D384 = .text:0x8007D384; // type:function size:0x24 +fn_8007D3A8 = .text:0x8007D3A8; // type:function size:0x28 +fn_8007D3D0 = .text:0x8007D3D0; // type:function size:0x20 +fn_8007D3F0 = .text:0x8007D3F0; // type:function size:0x48 +fn_8007D438 = .text:0x8007D438; // type:function size:0x1F8 +__ct__Q26Quazal11VoicePacketFv = .text:0x8007D630; // type:function size:0x3C +__ct__Q26Quazal16_DDL_VoicePacketFv = .text:0x8007D66C; // type:function size:0x44 +fn_8007D6B0 = .text:0x8007D6B0; // type:function size:0xB8 +fn_8007D768 = .text:0x8007D768; // type:function size:0x7C +fn_8007D7E4 = .text:0x8007D7E4; // type:function size:0x3C +__ct__Q26Quazal11DefaultCellFv = .text:0x8007D820; // type:function size:0x3C +fn_8007D85C = .text:0x8007D85C; // type:function size:0x70 +fn_8007D8CC = .text:0x8007D8CC; // type:function size:0x24 +fn_8007D8F0 = .text:0x8007D8F0; // type:function size:0x58 +fn_8007D948 = .text:0x8007D948; // type:function size:0x10 +fn_8007D958 = .text:0x8007D958; // type:function size:0x14 +fn_8007D96C = .text:0x8007D96C; // type:function size:0x18 +fn_8007D984 = .text:0x8007D984; // type:function size:0x18 +__ct__Q26Quazal16_DOC_DefaultCellFv = .text:0x8007D99C; // type:function size:0x3C +__ct__Q26Quazal66DOClassTemplateFv = .text:0x8007D9D8; // type:function size:0x3C +fn_8007DA14 = .text:0x8007DA14; // type:function size:0x20 +fn_8007DA34 = .text:0x8007DA34; // type:function size:0x88 +fn_8007DABC = .text:0x8007DABC; // type:function size:0x3C +fn_8007DAF8 = .text:0x8007DAF8; // type:function size:0x88 +fn_8007DB80 = .text:0x8007DB80; // type:function size:0x4 +fn_8007DB84 = .text:0x8007DB84; // type:function size:0x4 +fn_8007DB88 = .text:0x8007DB88; // type:function size:0x4 +fn_8007DB8C = .text:0x8007DB8C; // type:function size:0x4 +fn_8007DB90 = .text:0x8007DB90; // type:function size:0x1C +__ct__Q26Quazal15_DO_DefaultCellFv = .text:0x8007DBAC; // type:function size:0x5C +fn_8007DC08 = .text:0x8007DC08; // type:function size:0x58 +fn_8007DC60 = .text:0x8007DC60; // type:function size:0x10 +fn_8007DC70 = .text:0x8007DC70; // type:function size:0x4 +fn_8007DC74 = .text:0x8007DC74; // type:function size:0xBC +fn_8007DD30 = .text:0x8007DD30; // type:function size:0xA4 +fn_8007DDD4 = .text:0x8007DDD4; // type:function size:0x74 +fn_8007DE48 = .text:0x8007DE48; // type:function size:0x70 +fn_8007DEB8 = .text:0x8007DEB8; // type:function size:0x10 +fn_8007DEC8 = .text:0x8007DEC8; // type:function size:0x10 +fn_8007DED8 = .text:0x8007DED8; // type:function size:0x10 +fn_8007DEE8 = .text:0x8007DEE8; // type:function size:0x58 +fn_8007DF40 = .text:0x8007DF40; // type:function size:0x74 +fn_8007DFB4 = .text:0x8007DFB4; // type:function size:0x18 +fn_8007DFCC = .text:0x8007DFCC; // type:function size:0x4 +Register__Q26Quazal26DupSpaceExtDDLDeclarationsFv = .text:0x8007DFD0; // type:function size:0xC +fn_8007DFDC = .text:0x8007DFDC; // type:function size:0x58 +fn_8007E034 = .text:0x8007E034; // type:function size:0x48 +fn_8007E07C = .text:0x8007E07C; // type:function size:0x40 +fn_8007E0BC = .text:0x8007E0BC; // type:function size:0x70 +fn_8007E12C = .text:0x8007E12C; // type:function size:0x68 +fn_8007E194 = .text:0x8007E194; // type:function size:0x40 +fn_8007E1D4 = .text:0x8007E1D4; // type:function size:0x14 +fn_8007E1E8 = .text:0x8007E1E8; // type:function size:0x34 +fn_8007E21C = .text:0x8007E21C; // type:function size:0x58 +fn_8007E274 = .text:0x8007E274; // type:function size:0xD8 +fn_8007E34C = .text:0x8007E34C; // type:function size:0x74 +Register__Q26Quazal17DupSpaceExtensionFv = .text:0x8007E3C0; // type:function size:0x68 +fn_8007E428 = .text:0x8007E428; // type:function size:0x94 +fn_8007E4BC = .text:0x8007E4BC; // type:function size:0xC +fn_8007E4C8 = .text:0x8007E4C8; // type:function size:0x2C +fn_8007E4F4 = .text:0x8007E4F4; // type:function size:0x5C +fn_8007E550 = .text:0x8007E550; // type:function size:0x58 +fn_8007E5A8 = .text:0x8007E5A8; // type:function size:0x58 +fn_8007E600 = .text:0x8007E600; // type:function size:0x58 +fn_8007E658 = .text:0x8007E658; // type:function size:0xA8 +fn_8007E700 = .text:0x8007E700; // type:function size:0x5C +fn_8007E75C = .text:0x8007E75C; // type:function size:0x1C +fn_8007E778 = .text:0x8007E778; // type:function size:0x10 +fn_8007E788 = .text:0x8007E788; // type:function size:0x30 +fn_8007E7B8 = .text:0x8007E7B8; // type:function size:0x20 +fn_8007E7D8 = .text:0x8007E7D8; // type:function size:0x40 +fn_8007E818 = .text:0x8007E818; // type:function size:0x18 +fn_8007E830 = .text:0x8007E830; // type:function size:0x18 +fn_8007E848 = .text:0x8007E848; // type:function size:0x8 +fn_8007E850 = .text:0x8007E850; // type:function size:0x98 +fn_8007E8E8 = .text:0x8007E8E8; // type:function size:0x100 +fn_8007E9E8 = .text:0x8007E9E8; // type:function size:0x74 +fn_8007EA5C = .text:0x8007EA5C; // type:function size:0xC +fn_8007EA68 = .text:0x8007EA68; // type:function size:0xEC +fn_8007EB54 = .text:0x8007EB54; // type:function size:0x328 +fn_8007EE7C = .text:0x8007EE7C; // type:function size:0x84 +fn_8007EF00 = .text:0x8007EF00; // type:function size:0x1C0 +fn_8007F0C0 = .text:0x8007F0C0; // type:function size:0x5C +fn_8007F11C = .text:0x8007F11C; // type:function size:0x8C +fn_8007F1A8 = .text:0x8007F1A8; // type:function size:0x64 +fn_8007F20C = .text:0x8007F20C; // type:function size:0xB4 +fn_8007F2C0 = .text:0x8007F2C0; // type:function size:0x68 +fn_8007F328 = .text:0x8007F328; // type:function size:0x158 +fn_8007F480 = .text:0x8007F480; // type:function size:0x124 +fn_8007F5A4 = .text:0x8007F5A4; // type:function size:0xE8 +fn_8007F68C = .text:0x8007F68C; // type:function size:0xD0 +fn_8007F75C = .text:0x8007F75C; // type:function size:0xD0 +fn_8007F82C = .text:0x8007F82C; // type:function size:0xCC +fn_8007F8F8 = .text:0x8007F8F8; // type:function size:0xD0 +fn_8007F9C8 = .text:0x8007F9C8; // type:function size:0x1D4 +fn_8007FB9C = .text:0x8007FB9C; // type:function size:0x1D8 +fn_8007FD74 = .text:0x8007FD74; // type:function size:0x2C +fn_8007FDA0 = .text:0x8007FDA0; // type:function size:0x84 +fn_8007FE24 = .text:0x8007FE24; // type:function size:0xC4 +fn_8007FEE8 = .text:0x8007FEE8; // type:function size:0x15C +fn_80080044 = .text:0x80080044; // type:function size:0x5C +fn_800800A0 = .text:0x800800A0; // type:function size:0x5C +fn_800800FC = .text:0x800800FC; // type:function size:0xD8 +fn_800801D4 = .text:0x800801D4; // type:function size:0x184 +fn_80080358 = .text:0x80080358; // type:function size:0xB0 +fn_80080408 = .text:0x80080408; // type:function size:0x60 +fn_80080468 = .text:0x80080468; // type:function size:0x88 +fn_800804F0 = .text:0x800804F0; // type:function size:0x78 +fn_80080568 = .text:0x80080568; // type:function size:0x88 +fn_800805F0 = .text:0x800805F0; // type:function size:0x88 +fn_80080678 = .text:0x80080678; // type:function size:0x88 +fn_80080700 = .text:0x80080700; // type:function size:0xC +fn_8008070C = .text:0x8008070C; // type:function size:0xE0 +fn_800807EC = .text:0x800807EC; // type:function size:0xE0 +fn_800808CC = .text:0x800808CC; // type:function size:0xE0 +fn_800809AC = .text:0x800809AC; // type:function size:0xE0 +fn_80080A8C = .text:0x80080A8C; // type:function size:0x58 +fn_80080AE4 = .text:0x80080AE4; // type:function size:0xFC +fn_80080BE0 = .text:0x80080BE0; // type:function size:0x68 +fn_80080C48 = .text:0x80080C48; // type:function size:0x64 +fn_80080CAC = .text:0x80080CAC; // type:function size:0x134 +fn_80080DE0 = .text:0x80080DE0; // type:function size:0x64 +fn_80080E44 = .text:0x80080E44; // type:function size:0x30 +fn_80080E74 = .text:0x80080E74; // type:function size:0x84 +fn_80080EF8 = .text:0x80080EF8; // type:function size:0xA4 +fn_80080F9C = .text:0x80080F9C; // type:function size:0x88 +fn_80081024 = .text:0x80081024; // type:function size:0xAC +fn_800810D0 = .text:0x800810D0; // type:function size:0xC8 +fn_80081198 = .text:0x80081198; // type:function size:0x50 +fn_800811E8 = .text:0x800811E8; // type:function size:0x50 +fn_80081238 = .text:0x80081238; // type:function size:0x18 +fn_80081250 = .text:0x80081250; // type:function size:0x54 +fn_800812A4 = .text:0x800812A4; // type:function size:0x5C +fn_80081300 = .text:0x80081300; // type:function size:0x50 +fn_80081350 = .text:0x80081350; // type:function size:0x70 +fn_800813C0 = .text:0x800813C0; // type:function size:0x68 +fn_80081428 = .text:0x80081428; // type:function size:0x34 +fn_8008145C = .text:0x8008145C; // type:function size:0x60 +fn_800814BC = .text:0x800814BC; // type:function size:0x5C +fn_80081518 = .text:0x80081518; // type:function size:0x80 +fn_80081598 = .text:0x80081598; // type:function size:0xF4 +fn_8008168C = .text:0x8008168C; // type:function size:0x4C +fn_800816D8 = .text:0x800816D8; // type:function size:0x64 +fn_8008173C = .text:0x8008173C; // type:function size:0x40 +fn_8008177C = .text:0x8008177C; // type:function size:0x90 +fn_8008180C = .text:0x8008180C; // type:function size:0x64 +fn_80081870 = .text:0x80081870; // type:function size:0x1E0 +fn_80081A50 = .text:0x80081A50; // type:function size:0x218 +fn_80081C68 = .text:0x80081C68; // type:function size:0xF4 +fn_80081D5C = .text:0x80081D5C; // type:function size:0x74 +fn_80081DD0 = .text:0x80081DD0; // type:function size:0x94 +fn_80081E64 = .text:0x80081E64; // type:function size:0x4C +fn_80081EB0 = .text:0x80081EB0; // type:function size:0x64 +fn_80081F14 = .text:0x80081F14; // type:function size:0x2D4 +fn_800821E8 = .text:0x800821E8; // type:function size:0x118 +fn_80082300 = .text:0x80082300; // type:function size:0xEC +fn_800823EC = .text:0x800823EC; // type:function size:0x74 +fn_80082460 = .text:0x80082460; // type:function size:0x64 +fn_800824C4 = .text:0x800824C4; // type:function size:0x58 +fn_8008251C = .text:0x8008251C; // type:function size:0x4 +fn_80082520 = .text:0x80082520; // type:function size:0x6C +fn_8008258C = .text:0x8008258C; // type:function size:0x134 +fn_800826C0 = .text:0x800826C0; // type:function size:0x94 +fn_80082754 = .text:0x80082754; // type:function size:0x8 +fn_8008275C = .text:0x8008275C; // type:function size:0xC +fn_80082768 = .text:0x80082768; // type:function size:0x58 +fn_800827C0 = .text:0x800827C0; // type:function size:0x40 +fn_80082800 = .text:0x80082800; // type:function size:0xC +fn_8008280C = .text:0x8008280C; // type:function size:0x10 +fn_8008281C = .text:0x8008281C; // type:function size:0xC +fn_80082828 = .text:0x80082828; // type:function size:0xD4 +fn_800828FC = .text:0x800828FC; // type:function size:0x10 +fn_8008290C = .text:0x8008290C; // type:function size:0x58 +fn_80082964 = .text:0x80082964; // type:function size:0x58 +fn_800829BC = .text:0x800829BC; // type:function size:0x3C +fn_800829F8 = .text:0x800829F8; // type:function size:0x5C +fn_80082A54 = .text:0x80082A54; // type:function size:0x6C +fn_80082AC0 = .text:0x80082AC0; // type:function size:0x8 +fn_80082AC8 = .text:0x80082AC8; // type:function size:0x4C +fn_80082B14 = .text:0x80082B14; // type:function size:0xC +fn_80082B20 = .text:0x80082B20; // type:function size:0xC +fn_80082B2C = .text:0x80082B2C; // type:function size:0x4 +fn_80082B30 = .text:0x80082B30; // type:function size:0x4 +fn_80082B34 = .text:0x80082B34; // type:function size:0x48 +fn_80082B7C = .text:0x80082B7C; // type:function size:0x40 +fn_80082BBC = .text:0x80082BBC; // type:function size:0x14C +fn_80082D08 = .text:0x80082D08; // type:function size:0xBC +fn_80082DC4 = .text:0x80082DC4; // type:function size:0x84 +fn_80082E48 = .text:0x80082E48; // type:function size:0x174 +fn_80082FBC = .text:0x80082FBC; // type:function size:0xC0 +fn_8008307C = .text:0x8008307C; // type:function size:0x68 +fn_800830E4 = .text:0x800830E4; // type:function size:0x58 +fn_8008313C = .text:0x8008313C; // type:function size:0x38 +Register__Q26Quazal24GlobalDiscoveryExtensionFv = .text:0x80083174; // type:function size:0x64 +fn_800831D8 = .text:0x800831D8; // type:function size:0xC +fn_800831E4 = .text:0x800831E4; // type:function size:0x2C +fn_80083210 = .text:0x80083210; // type:function size:0x60 +fn_80083270 = .text:0x80083270; // type:function size:0x80 +fn_800832F0 = .text:0x800832F0; // type:function size:0x60 +fn_80083350 = .text:0x80083350; // type:function size:0x38 +fn_80083388 = .text:0x80083388; // type:function size:0x98 +__ct__Q26Quazal14ClientProtocolFUi = .text:0x80083420; // type:function size:0x3C +fn_8008345C = .text:0x8008345C; // type:function size:0x70 +fn_800834CC = .text:0x800834CC; // type:function size:0xA0 +fn_8008356C = .text:0x8008356C; // type:function size:0x80 +fn_800835EC = .text:0x800835EC; // type:function size:0x6C +fn_80083658 = .text:0x80083658; // type:function size:0x40 +fn_80083698 = .text:0x80083698; // type:function size:0x7C +fn_80083714 = .text:0x80083714; // type:function size:0x20 +Register__Q26Quazal30SessionClockExtDDLDeclarationsFv = .text:0x80083734; // type:function size:0xC +fn_80083740 = .text:0x80083740; // type:function size:0x64 +fn_800837A4 = .text:0x800837A4; // type:function size:0x64 +fn_80083808 = .text:0x80083808; // type:function size:0x40 +fn_80083848 = .text:0x80083848; // type:function size:0x3C +fn_80083884 = .text:0x80083884; // type:function size:0x24 +fn_800838A8 = .text:0x800838A8; // type:function size:0x10 +fn_800838B8 = .text:0x800838B8; // type:function size:0x14 +fn_800838CC = .text:0x800838CC; // type:function size:0x18 +fn_800838E4 = .text:0x800838E4; // type:function size:0x18 +fn_800838FC = .text:0x800838FC; // type:function size:0xB8 +fn_800839B4 = .text:0x800839B4; // type:function size:0x3C +fn_800839F0 = .text:0x800839F0; // type:function size:0x20 +fn_80083A10 = .text:0x80083A10; // type:function size:0x4 +fn_80083A14 = .text:0x80083A14; // type:function size:0x4 +fn_80083A18 = .text:0x80083A18; // type:function size:0x4 +fn_80083A1C = .text:0x80083A1C; // type:function size:0x118 +fn_80083B34 = .text:0x80083B34; // type:function size:0x78 +fn_80083BAC = .text:0x80083BAC; // type:function size:0x4 +fn_80083BB0 = .text:0x80083BB0; // type:function size:0x4 +fn_80083BB4 = .text:0x80083BB4; // type:function size:0x54 +fn_80083C08 = .text:0x80083C08; // type:function size:0x58 +fn_80083C60 = .text:0x80083C60; // type:function size:0x64 +fn_80083CC4 = .text:0x80083CC4; // type:function size:0x4 +fn_80083CC8 = .text:0x80083CC8; // type:function size:0x4 +fn_80083CCC = .text:0x80083CCC; // type:function size:0x64 +fn_80083D30 = .text:0x80083D30; // type:function size:0x4 +fn_80083D34 = .text:0x80083D34; // type:function size:0xB8 +fn_80083DEC = .text:0x80083DEC; // type:function size:0x70 +fn_80083E5C = .text:0x80083E5C; // type:function size:0x4 +fn_80083E60 = .text:0x80083E60; // type:function size:0xE8 +fn_80083F48 = .text:0x80083F48; // type:function size:0xB4 +fn_80083FFC = .text:0x80083FFC; // type:function size:0x4 +fn_80084000 = .text:0x80084000; // type:function size:0x30 +fn_80084030 = .text:0x80084030; // type:function size:0x44 +fn_80084074 = .text:0x80084074; // type:function size:0x60 +fn_800840D4 = .text:0x800840D4; // type:function size:0x58 +fn_8008412C = .text:0x8008412C; // type:function size:0x4 +fn_80084130 = .text:0x80084130; // type:function size:0x4 +fn_80084134 = .text:0x80084134; // type:function size:0x2C +Register__Q26Quazal21SessionClockExtensionFv = .text:0x80084160; // type:function size:0x90 +fn_800841F0 = .text:0x800841F0; // type:function size:0xC +fn_800841FC = .text:0x800841FC; // type:function size:0x2C +fn_80084228 = .text:0x80084228; // type:function size:0xEC +fn_80084314 = .text:0x80084314; // type:function size:0x90 +fn_800843A4 = .text:0x800843A4; // type:function size:0x34 +fn_800843D8 = .text:0x800843D8; // type:function size:0x64 +fn_8008443C = .text:0x8008443C; // type:function size:0x60 +fn_8008449C = .text:0x8008449C; // type:function size:0x48 +fn_800844E4 = .text:0x800844E4; // type:function size:0xBC +fn_800845A0 = .text:0x800845A0; // type:function size:0x60 +fn_80084600 = .text:0x80084600; // type:function size:0x68 +fn_80084668 = .text:0x80084668; // type:function size:0x60 +fn_800846C8 = .text:0x800846C8; // type:function size:0x64 +fn_8008472C = .text:0x8008472C; // type:function size:0x124 +fn_80084850 = .text:0x80084850; // type:function size:0x120 +fn_80084970 = .text:0x80084970; // type:function size:0xAC +fn_80084A1C = .text:0x80084A1C; // type:function size:0xD8 +fn_80084AF4 = .text:0x80084AF4; // type:function size:0x78 +fn_80084B6C = .text:0x80084B6C; // type:function size:0x40 +fn_80084BAC = .text:0x80084BAC; // type:function size:0x64 +fn_80084C10 = .text:0x80084C10; // type:function size:0x100 +fn_80084D10 = .text:0x80084D10; // type:function size:0x1F0 +fn_80084F00 = .text:0x80084F00; // type:function size:0xBC +fn_80084FBC = .text:0x80084FBC; // type:function size:0x6C +fn_80085028 = .text:0x80085028; // type:function size:0x30 +fn_80085058 = .text:0x80085058; // type:function size:0x98 +fn_800850F0 = .text:0x800850F0; // type:function size:0x54 +fn_80085144 = .text:0x80085144; // type:function size:0x8C +fn_800851D0 = .text:0x800851D0; // type:function size:0x90 +fn_80085260 = .text:0x80085260; // type:function size:0xA8 +fn_80085308 = .text:0x80085308; // type:function size:0xC +fn_80085314 = .text:0x80085314; // type:function size:0x10 +fn_80085324 = .text:0x80085324; // type:function size:0x48 +fn_8008536C = .text:0x8008536C; // type:function size:0x40 +fn_800853AC = .text:0x800853AC; // type:function size:0x30 +fn_800853DC = .text:0x800853DC; // type:function size:0x68 +fn_80085444 = .text:0x80085444; // type:function size:0x38 +fn_8008547C = .text:0x8008547C; // type:function size:0x58 +fn_800854D4 = .text:0x800854D4; // type:function size:0x158 +fn_8008562C = .text:0x8008562C; // type:function size:0x90 +fn_800856BC = .text:0x800856BC; // type:function size:0x4 +fn_800856C0 = .text:0x800856C0; // type:function size:0x38 +fn_800856F8 = .text:0x800856F8; // type:function size:0x64 +fn_8008575C = .text:0x8008575C; // type:function size:0x60 +fn_800857BC = .text:0x800857BC; // type:function size:0x38 +fn_800857F4 = .text:0x800857F4; // type:function size:0x58 +fn_8008584C = .text:0x8008584C; // type:function size:0x54 +fn_800858A0 = .text:0x800858A0; // type:function size:0x58 +fn_800858F8 = .text:0x800858F8; // type:function size:0x50 +fn_80085948 = .text:0x80085948; // type:function size:0x34 +fn_8008597C = .text:0x8008597C; // type:function size:0x10 +fn_8008598C = .text:0x8008598C; // type:function size:0x74 +fn_80085A00 = .text:0x80085A00; // type:function size:0x38 +fn_80085A38 = .text:0x80085A38; // type:function size:0x4 +fn_80085A3C = .text:0x80085A3C; // type:function size:0x74 +fn_80085AB0 = .text:0x80085AB0; // type:function size:0x40 +fn_80085AF0 = .text:0x80085AF0; // type:function size:0x5C +fn_80085B4C = .text:0x80085B4C; // type:function size:0x10 +fn_80085B5C = .text:0x80085B5C; // type:function size:0x50 +fn_80085BAC = .text:0x80085BAC; // type:function size:0xF4 +fn_80085CA0 = .text:0x80085CA0; // type:function size:0x84 +fn_80085D24 = .text:0x80085D24; // type:function size:0x8 +fn_80085D2C = .text:0x80085D2C; // type:function size:0xCC +fn_80085DF8 = .text:0x80085DF8; // type:function size:0x74 +fn_80085E6C = .text:0x80085E6C; // type:function size:0x110 +fn_80085F7C = .text:0x80085F7C; // type:function size:0xD0 +fn_8008604C = .text:0x8008604C; // type:function size:0x58 +fn_800860A4 = .text:0x800860A4; // type:function size:0xA4 +fn_80086148 = .text:0x80086148; // type:function size:0x54 +fn_8008619C = .text:0x8008619C; // type:function size:0x20 +fn_800861BC = .text:0x800861BC; // type:function size:0x80 +fn_8008623C = .text:0x8008623C; // type:function size:0x78 +fn_800862B4 = .text:0x800862B4; // type:function size:0x120 +fn_800863D4 = .text:0x800863D4; // type:function size:0x14C +fn_80086520 = .text:0x80086520; // type:function size:0x88 +fn_800865A8 = .text:0x800865A8; // type:function size:0x50 +fn_800865F8 = .text:0x800865F8; // type:function size:0x5C +fn_80086654 = .text:0x80086654; // type:function size:0xA4 +fn_800866F8 = .text:0x800866F8; // type:function size:0x64 +fn_8008675C = .text:0x8008675C; // type:function size:0xB0 +fn_8008680C = .text:0x8008680C; // type:function size:0x17C +fn_80086988 = .text:0x80086988; // type:function size:0x5C +fn_800869E4 = .text:0x800869E4; // type:function size:0x2C +fn_80086A10 = .text:0x80086A10; // type:function size:0xD8 +fn_80086AE8 = .text:0x80086AE8; // type:function size:0xB0 +fn_80086B98 = .text:0x80086B98; // type:function size:0x8 +fn_80086BA0 = .text:0x80086BA0; // type:function size:0x1D0 +fn_80086D70 = .text:0x80086D70; // type:function size:0x180 +fn_80086EF0 = .text:0x80086EF0; // type:function size:0x50 +fn_80086F40 = .text:0x80086F40; // type:function size:0x8 +fn_80086F48 = .text:0x80086F48; // type:function size:0xB8 +fn_80087000 = .text:0x80087000; // type:function size:0x2C +fn_8008702C = .text:0x8008702C; // type:function size:0x44 +fn_80087070 = .text:0x80087070; // type:function size:0x3C +fn_800870AC = .text:0x800870AC; // type:function size:0x24 +fn_800870D0 = .text:0x800870D0; // type:function size:0x10 +fn_800870E0 = .text:0x800870E0; // type:function size:0x14 +fn_800870F4 = .text:0x800870F4; // type:function size:0x18 +fn_8008710C = .text:0x8008710C; // type:function size:0x18 +fn_80087124 = .text:0x80087124; // type:function size:0x16C +fn_80087290 = .text:0x80087290; // type:function size:0x3C +fn_800872CC = .text:0x800872CC; // type:function size:0x20 +fn_800872EC = .text:0x800872EC; // type:function size:0x11C +fn_80087408 = .text:0x80087408; // type:function size:0x3C +fn_80087444 = .text:0x80087444; // type:function size:0x3C +fn_80087480 = .text:0x80087480; // type:function size:0xB0 +fn_80087530 = .text:0x80087530; // type:function size:0x4 +fn_80087534 = .text:0x80087534; // type:function size:0x280 +fn_800877B4 = .text:0x800877B4; // type:function size:0x104 +fn_800878B8 = .text:0x800878B8; // type:function size:0x4 +fn_800878BC = .text:0x800878BC; // type:function size:0x30 +fn_800878EC = .text:0x800878EC; // type:function size:0x4 +fn_800878F0 = .text:0x800878F0; // type:function size:0x64 +fn_80087954 = .text:0x80087954; // type:function size:0x58 +fn_800879AC = .text:0x800879AC; // type:function size:0x64 +fn_80087A10 = .text:0x80087A10; // type:function size:0x4 +fn_80087A14 = .text:0x80087A14; // type:function size:0x90 +fn_80087AA4 = .text:0x80087AA4; // type:function size:0x13C +fn_80087BE0 = .text:0x80087BE0; // type:function size:0x100 +fn_80087CE0 = .text:0x80087CE0; // type:function size:0xA0 +fn_80087D80 = .text:0x80087D80; // type:function size:0xAC +fn_80087E2C = .text:0x80087E2C; // type:function size:0x60 +fn_80087E8C = .text:0x80087E8C; // type:function size:0x4 +fn_80087E90 = .text:0x80087E90; // type:function size:0x8C +fn_80087F1C = .text:0x80087F1C; // type:function size:0x78 +fn_80087F94 = .text:0x80087F94; // type:function size:0x78 +fn_8008800C = .text:0x8008800C; // type:function size:0x68 +fn_80088074 = .text:0x80088074; // type:function size:0x6C +fn_800880E0 = .text:0x800880E0; // type:function size:0x4 +fn_800880E4 = .text:0x800880E4; // type:function size:0x104 +fn_800881E8 = .text:0x800881E8; // type:function size:0x8C +fn_80088274 = .text:0x80088274; // type:function size:0x4 +fn_80088278 = .text:0x80088278; // type:function size:0x8C +fn_80088304 = .text:0x80088304; // type:function size:0x4 +fn_80088308 = .text:0x80088308; // type:function size:0xD8 +fn_800883E0 = .text:0x800883E0; // type:function size:0x90 +fn_80088470 = .text:0x80088470; // type:function size:0x4 +fn_80088474 = .text:0x80088474; // type:function size:0x60 +fn_800884D4 = .text:0x800884D4; // type:function size:0x4 +fn_800884D8 = .text:0x800884D8; // type:function size:0x10 +fn_800884E8 = .text:0x800884E8; // type:function size:0xC +fn_800884F4 = .text:0x800884F4; // type:function size:0xA0 +fn_80088594 = .text:0x80088594; // type:function size:0x10 +fn_800885A4 = .text:0x800885A4; // type:function size:0x10 +fn_800885B4 = .text:0x800885B4; // type:function size:0xC +fn_800885C0 = .text:0x800885C0; // type:function size:0x90 +fn_80088650 = .text:0x80088650; // type:function size:0x58 +fn_800886A8 = .text:0x800886A8; // type:function size:0x1C +fn_800886C4 = .text:0x800886C4; // type:function size:0x94 +fn_80088758 = .text:0x80088758; // type:function size:0x38 +fn_80088790 = .text:0x80088790; // type:function size:0x58 +fn_800887E8 = .text:0x800887E8; // type:function size:0x58 +fn_80088840 = .text:0x80088840; // type:function size:0x50 +fn_80088890 = .text:0x80088890; // type:function size:0x64 +fn_800888F4 = .text:0x800888F4; // type:function size:0x58 +fn_8008894C = .text:0x8008894C; // type:function size:0x4 +fn_80088950 = .text:0x80088950; // type:function size:0x68 +fn_800889B8 = .text:0x800889B8; // type:function size:0x48 +fn_80088A00 = .text:0x80088A00; // type:function size:0xC +fn_80088A0C = .text:0x80088A0C; // type:function size:0x50 +fn_80088A5C = .text:0x80088A5C; // type:function size:0x48 +fn_80088AA4 = .text:0x80088AA4; // type:function size:0x40 +fn_80088AE4 = .text:0x80088AE4; // type:function size:0x90 +fn_80088B74 = .text:0x80088B74; // type:function size:0x5C +fn_80088BD0 = .text:0x80088BD0; // type:function size:0x6C +fn_80088C3C = .text:0x80088C3C; // type:function size:0x48 +fn_80088C84 = .text:0x80088C84; // type:function size:0x58 +fn_80088CDC = .text:0x80088CDC; // type:function size:0x5C +fn_80088D38 = .text:0x80088D38; // type:function size:0x40 +fn_80088D78 = .text:0x80088D78; // type:function size:0x80 +fn_80088DF8 = .text:0x80088DF8; // type:function size:0x8 +fn_80088E00 = .text:0x80088E00; // type:function size:0xFC +fn_80088EFC = .text:0x80088EFC; // type:function size:0x140 +fn_8008903C = .text:0x8008903C; // type:function size:0x14C +fn_80089188 = .text:0x80089188; // type:function size:0x104 +fn_8008928C = .text:0x8008928C; // type:function size:0x104 +fn_80089390 = .text:0x80089390; // type:function size:0x120 +fn_800894B0 = .text:0x800894B0; // type:function size:0xF8 +fn_800895A8 = .text:0x800895A8; // type:function size:0x2C +fn_800895D4 = .text:0x800895D4; // type:function size:0x2C +fn_80089600 = .text:0x80089600; // type:function size:0x8 +fn_80089608 = .text:0x80089608; // type:function size:0x2C +fn_80089634 = .text:0x80089634; // type:function size:0x4C +fn_80089680 = .text:0x80089680; // type:function size:0x68 +fn_800896E8 = .text:0x800896E8; // type:function size:0x10 +fn_800896F8 = .text:0x800896F8; // type:function size:0x80 +fn_80089778 = .text:0x80089778; // type:function size:0x54 +fn_800897CC = .text:0x800897CC; // type:function size:0x74 +fn_80089840 = .text:0x80089840; // type:function size:0x5C +fn_8008989C = .text:0x8008989C; // type:function size:0x80 +fn_8008991C = .text:0x8008991C; // type:function size:0xB0 +fn_800899CC = .text:0x800899CC; // type:function size:0x54 +fn_80089A20 = .text:0x80089A20; // type:function size:0x58 +fn_80089A78 = .text:0x80089A78; // type:function size:0xC0 +fn_80089B38 = .text:0x80089B38; // type:function size:0x2E0 +fn_80089E18 = .text:0x80089E18; // type:function size:0x58 +fn_80089E70 = .text:0x80089E70; // type:function size:0x14 +fn_80089E84 = .text:0x80089E84; // type:function size:0x150 +fn_80089FD4 = .text:0x80089FD4; // type:function size:0xF4 +fn_8008A0C8 = .text:0x8008A0C8; // type:function size:0x1A4 +fn_8008A26C = .text:0x8008A26C; // type:function size:0x144 +fn_8008A3B0 = .text:0x8008A3B0; // type:function size:0x150 +fn_8008A500 = .text:0x8008A500; // type:function size:0x148 +fn_8008A648 = .text:0x8008A648; // type:function size:0x144 +fn_8008A78C = .text:0x8008A78C; // type:function size:0x100 +fn_8008A88C = .text:0x8008A88C; // type:function size:0xE0 +fn_8008A96C = .text:0x8008A96C; // type:function size:0x60 +fn_8008A9CC = .text:0x8008A9CC; // type:function size:0x114 +fn_8008AAE0 = .text:0x8008AAE0; // type:function size:0x110 +fn_8008ABF0 = .text:0x8008ABF0; // type:function size:0xD8 +fn_8008ACC8 = .text:0x8008ACC8; // type:function size:0x8 +fn_8008ACD0 = .text:0x8008ACD0; // type:function size:0x17C +fn_8008AE4C = .text:0x8008AE4C; // type:function size:0x114 +fn_8008AF60 = .text:0x8008AF60; // type:function size:0xC8 +fn_8008B028 = .text:0x8008B028; // type:function size:0x98 +fn_8008B0C0 = .text:0x8008B0C0; // type:function size:0xB8 +fn_8008B178 = .text:0x8008B178; // type:function size:0x1B0 +fn_8008B328 = .text:0x8008B328; // type:function size:0xF4 +fn_8008B41C = .text:0x8008B41C; // type:function size:0xE4 +fn_8008B500 = .text:0x8008B500; // type:function size:0x158 +fn_8008B658 = .text:0x8008B658; // type:function size:0x2F0 +fn_8008B948 = .text:0x8008B948; // type:function size:0x194 +fn_8008BADC = .text:0x8008BADC; // type:function size:0x190 +fn_8008BC6C = .text:0x8008BC6C; // type:function size:0x190 +fn_8008BDFC = .text:0x8008BDFC; // type:function size:0x188 +fn_8008BF84 = .text:0x8008BF84; // type:function size:0x188 +fn_8008C10C = .text:0x8008C10C; // type:function size:0x184 +fn_8008C290 = .text:0x8008C290; // type:function size:0x15C +fn_8008C3EC = .text:0x8008C3EC; // type:function size:0xC4 +fn_8008C4B0 = .text:0x8008C4B0; // type:function size:0x7C +fn_8008C52C = .text:0x8008C52C; // type:function size:0xBC +fn_8008C5E8 = .text:0x8008C5E8; // type:function size:0x34 +fn_8008C61C = .text:0x8008C61C; // type:function size:0xB0 +fn_8008C6CC = .text:0x8008C6CC; // type:function size:0x84 +fn_8008C750 = .text:0x8008C750; // type:function size:0x24 +fn_8008C774 = .text:0x8008C774; // type:function size:0xAC +fn_8008C820 = .text:0x8008C820; // type:function size:0x54 +fn_8008C874 = .text:0x8008C874; // type:function size:0x7C +fn_8008C8F0 = .text:0x8008C8F0; // type:function size:0x38 +fn_8008C928 = .text:0x8008C928; // type:function size:0x15C +fn_8008CA84 = .text:0x8008CA84; // type:function size:0x114 +fn_8008CB98 = .text:0x8008CB98; // type:function size:0x124 +fn_8008CCBC = .text:0x8008CCBC; // type:function size:0x10C +fn_8008CDC8 = .text:0x8008CDC8; // type:function size:0x12C +fn_8008CEF4 = .text:0x8008CEF4; // type:function size:0x188 +fn_8008D07C = .text:0x8008D07C; // type:function size:0x160 +fn_8008D1DC = .text:0x8008D1DC; // type:function size:0x12C +fn_8008D308 = .text:0x8008D308; // type:function size:0x14C +fn_8008D454 = .text:0x8008D454; // type:function size:0x180 +fn_8008D5D4 = .text:0x8008D5D4; // type:function size:0x180 +fn_8008D754 = .text:0x8008D754; // type:function size:0x60 +fn_8008D7B4 = .text:0x8008D7B4; // type:function size:0x54 +fn_8008D808 = .text:0x8008D808; // type:function size:0x10 +fn_8008D818 = .text:0x8008D818; // type:function size:0x58 +fn_8008D870 = .text:0x8008D870; // type:function size:0x80 +fn_8008D8F0 = .text:0x8008D8F0; // type:function size:0x3C +fn_8008D92C = .text:0x8008D92C; // type:function size:0x70 +fn_8008D99C = .text:0x8008D99C; // type:function size:0x60 +fn_8008D9FC = .text:0x8008D9FC; // type:function size:0x9C +fn_8008DA98 = .text:0x8008DA98; // type:function size:0x1F4 +fn_8008DC8C = .text:0x8008DC8C; // type:function size:0x68 +fn_8008DCF4 = .text:0x8008DCF4; // type:function size:0x6C +fn_8008DD60 = .text:0x8008DD60; // type:function size:0xB8 +fn_8008DE18 = .text:0x8008DE18; // type:function size:0x58 +fn_8008DE70 = .text:0x8008DE70; // type:function size:0x5C +fn_8008DECC = .text:0x8008DECC; // type:function size:0x88 +fn_8008DF54 = .text:0x8008DF54; // type:function size:0x3C +fn_8008DF90 = .text:0x8008DF90; // type:function size:0x4C +fn_8008DFDC = .text:0x8008DFDC; // type:function size:0x3C +fn_8008E018 = .text:0x8008E018; // type:function size:0x40 +fn_8008E058 = .text:0x8008E058; // type:function size:0x190 +fn_8008E1E8 = .text:0x8008E1E8; // type:function size:0x58 +fn_8008E240 = .text:0x8008E240; // type:function size:0xDC +fn_8008E31C = .text:0x8008E31C; // type:function size:0x6C +fn_8008E388 = .text:0x8008E388; // type:function size:0x60 +fn_8008E3E8 = .text:0x8008E3E8; // type:function size:0xA8 +fn_8008E490 = .text:0x8008E490; // type:function size:0xDC +fn_8008E56C = .text:0x8008E56C; // type:function size:0x88 +fn_8008E5F4 = .text:0x8008E5F4; // type:function size:0x20 +fn_8008E614 = .text:0x8008E614; // type:function size:0xF0 +fn_8008E704 = .text:0x8008E704; // type:function size:0xB0 +fn_8008E7B4 = .text:0x8008E7B4; // type:function size:0x78 +fn_8008E82C = .text:0x8008E82C; // type:function size:0x50 +fn_8008E87C = .text:0x8008E87C; // type:function size:0xC8 +fn_8008E944 = .text:0x8008E944; // type:function size:0xB0 +fn_8008E9F4 = .text:0x8008E9F4; // type:function size:0x78 +fn_8008EA6C = .text:0x8008EA6C; // type:function size:0x9C +fn_8008EB08 = .text:0x8008EB08; // type:function size:0x40 +fn_8008EB48 = .text:0x8008EB48; // type:function size:0xAC +fn_8008EBF4 = .text:0x8008EBF4; // type:function size:0xC +fn_8008EC00 = .text:0x8008EC00; // type:function size:0xD0 +fn_8008ECD0 = .text:0x8008ECD0; // type:function size:0x74 +fn_8008ED44 = .text:0x8008ED44; // type:function size:0x1C8 +fn_8008EF0C = .text:0x8008EF0C; // type:function size:0x8 +fn_8008EF14 = .text:0x8008EF14; // type:function size:0x188 +fn_8008F09C = .text:0x8008F09C; // type:function size:0x84 +fn_8008F120 = .text:0x8008F120; // type:function size:0x12C +fn_8008F24C = .text:0x8008F24C; // type:function size:0xB8 +fn_8008F304 = .text:0x8008F304; // type:function size:0x24C +fn_8008F550 = .text:0x8008F550; // type:function size:0x104 +fn_8008F654 = .text:0x8008F654; // type:function size:0x164 +fn_8008F7B8 = .text:0x8008F7B8; // type:function size:0x158 +fn_8008F910 = .text:0x8008F910; // type:function size:0x7C +fn_8008F98C = .text:0x8008F98C; // type:function size:0x110 +fn_8008FA9C = .text:0x8008FA9C; // type:function size:0x268 +fn_8008FD04 = .text:0x8008FD04; // type:function size:0xD0 +fn_8008FDD4 = .text:0x8008FDD4; // type:function size:0x40 +fn_8008FE14 = .text:0x8008FE14; // type:function size:0x5C +fn_8008FE70 = .text:0x8008FE70; // type:function size:0x50 +fn_8008FEC0 = .text:0x8008FEC0; // type:function size:0x70 +fn_8008FF30 = .text:0x8008FF30; // type:function size:0x58 +fn_8008FF88 = .text:0x8008FF88; // type:function size:0xF4 +fn_8009007C = .text:0x8009007C; // type:function size:0xF0 +fn_8009016C = .text:0x8009016C; // type:function size:0x48 +fn_800901B4 = .text:0x800901B4; // type:function size:0x38 +fn_800901EC = .text:0x800901EC; // type:function size:0x90 +fn_8009027C = .text:0x8009027C; // type:function size:0x84 +fn_80090300 = .text:0x80090300; // type:function size:0x50 +fn_80090350 = .text:0x80090350; // type:function size:0x64 +fn_800903B4 = .text:0x800903B4; // type:function size:0x2D4 +fn_80090688 = .text:0x80090688; // type:function size:0x118 +fn_800907A0 = .text:0x800907A0; // type:function size:0xEC +fn_8009088C = .text:0x8009088C; // type:function size:0x74 +fn_80090900 = .text:0x80090900; // type:function size:0x54 +fn_80090954 = .text:0x80090954; // type:function size:0x9C +fn_800909F0 = .text:0x800909F0; // type:function size:0x80 +fn_80090A70 = .text:0x80090A70; // type:function size:0xC0 +fn_80090B30 = .text:0x80090B30; // type:function size:0x50 +fn_80090B80 = .text:0x80090B80; // type:function size:0x70 +fn_80090BF0 = .text:0x80090BF0; // type:function size:0x74 +fn_80090C64 = .text:0x80090C64; // type:function size:0x78 +fn_80090CDC = .text:0x80090CDC; // type:function size:0x74 +fn_80090D50 = .text:0x80090D50; // type:function size:0x6C +fn_80090DBC = .text:0x80090DBC; // type:function size:0x7C +fn_80090E38 = .text:0x80090E38; // type:function size:0x74 +fn_80090EAC = .text:0x80090EAC; // type:function size:0xB0 +fn_80090F5C = .text:0x80090F5C; // type:function size:0x8 +fn_80090F64 = .text:0x80090F64; // type:function size:0xEC +fn_80091050 = .text:0x80091050; // type:function size:0x184 +fn_800911D4 = .text:0x800911D4; // type:function size:0x1A8 +fn_8009137C = .text:0x8009137C; // type:function size:0x58 +fn_800913D4 = .text:0x800913D4; // type:function size:0x74 +fn_80091448 = .text:0x80091448; // type:function size:0x60 +fn_800914A8 = .text:0x800914A8; // type:function size:0x3C +fn_800914E4 = .text:0x800914E4; // type:function size:0x50 +fn_80091534 = .text:0x80091534; // type:function size:0xF0 +fn_80091624 = .text:0x80091624; // type:function size:0xB4 +fn_800916D8 = .text:0x800916D8; // type:function size:0x17C +fn_80091854 = .text:0x80091854; // type:function size:0x174 +fn_800919C8 = .text:0x800919C8; // type:function size:0x3C +fn_80091A04 = .text:0x80091A04; // type:function size:0x58 +fn_80091A5C = .text:0x80091A5C; // type:function size:0x3C +fn_80091A98 = .text:0x80091A98; // type:function size:0x3C +fn_80091AD4 = .text:0x80091AD4; // type:function size:0x3C +fn_80091B10 = .text:0x80091B10; // type:function size:0x40 +fn_80091B50 = .text:0x80091B50; // type:function size:0x80 +fn_80091BD0 = .text:0x80091BD0; // type:function size:0x8 +fn_80091BD8 = .text:0x80091BD8; // type:function size:0x5C +fn_80091C34 = .text:0x80091C34; // type:function size:0x3C +fn_80091C70 = .text:0x80091C70; // type:function size:0x74 +fn_80091CE4 = .text:0x80091CE4; // type:function size:0x60 +fn_80091D44 = .text:0x80091D44; // type:function size:0x4C +fn_80091D90 = .text:0x80091D90; // type:function size:0x58 +fn_80091DE8 = .text:0x80091DE8; // type:function size:0x58 +fn_80091E40 = .text:0x80091E40; // type:function size:0x50 +fn_80091E90 = .text:0x80091E90; // type:function size:0x88 +fn_80091F18 = .text:0x80091F18; // type:function size:0x38 +fn_80091F50 = .text:0x80091F50; // type:function size:0x50 +fn_80091FA0 = .text:0x80091FA0; // type:function size:0xDC +fn_8009207C = .text:0x8009207C; // type:function size:0x88 +fn_80092104 = .text:0x80092104; // type:function size:0x20 +fn_80092124 = .text:0x80092124; // type:function size:0x14 +fn_80092138 = .text:0x80092138; // type:function size:0x3C +fn_80092174 = .text:0x80092174; // type:function size:0x10 +fn_80092184 = .text:0x80092184; // type:function size:0x14 +fn_80092198 = .text:0x80092198; // type:function size:0x70 +fn_80092208 = .text:0x80092208; // type:function size:0x58 +fn_80092260 = .text:0x80092260; // type:function size:0x10 +fn_80092270 = .text:0x80092270; // type:function size:0xD8 +fn_80092348 = .text:0x80092348; // type:function size:0x6C +fn_800923B4 = .text:0x800923B4; // type:function size:0xA8 +fn_8009245C = .text:0x8009245C; // type:function size:0xA8 +fn_80092504 = .text:0x80092504; // type:function size:0x3C +fn_80092540 = .text:0x80092540; // type:function size:0x10 +fn_80092550 = .text:0x80092550; // type:function size:0x14 +fn_80092564 = .text:0x80092564; // type:function size:0x70 +fn_800925D4 = .text:0x800925D4; // type:function size:0x10 +fn_800925E4 = .text:0x800925E4; // type:function size:0x10 +fn_800925F4 = .text:0x800925F4; // type:function size:0x3C +fn_80092630 = .text:0x80092630; // type:function size:0x10 +fn_80092640 = .text:0x80092640; // type:function size:0x14 +fn_80092654 = .text:0x80092654; // type:function size:0x70 +fn_800926C4 = .text:0x800926C4; // type:function size:0x10 +fn_800926D4 = .text:0x800926D4; // type:function size:0x10 +fn_800926E4 = .text:0x800926E4; // type:function size:0x58 +fn_8009273C = .text:0x8009273C; // type:function size:0x58 +fn_80092794 = .text:0x80092794; // type:function size:0x7C +fn_80092810 = .text:0x80092810; // type:function size:0x14 +fn_80092824 = .text:0x80092824; // type:function size:0x14 +fn_80092838 = .text:0x80092838; // type:function size:0x88 +fn_800928C0 = .text:0x800928C0; // type:function size:0x90 +fn_80092950 = .text:0x80092950; // type:function size:0x80 +fn_800929D0 = .text:0x800929D0; // type:function size:0x8 +fn_800929D8 = .text:0x800929D8; // type:function size:0x8 +fn_800929E0 = .text:0x800929E0; // type:function size:0x8 +fn_800929E8 = .text:0x800929E8; // type:function size:0x8 +fn_800929F0 = .text:0x800929F0; // type:function size:0x14 +fn_80092A04 = .text:0x80092A04; // type:function size:0x90 +fn_80092A94 = .text:0x80092A94; // type:function size:0x3C +fn_80092AD0 = .text:0x80092AD0; // type:function size:0x44 +fn_80092B14 = .text:0x80092B14; // type:function size:0x64 +fn_80092B78 = .text:0x80092B78; // type:function size:0x70 +fn_80092BE8 = .text:0x80092BE8; // type:function size:0x7C +fn_80092C64 = .text:0x80092C64; // type:function size:0x90 +fn_80092CF4 = .text:0x80092CF4; // type:function size:0x94 +fn_80092D88 = .text:0x80092D88; // type:function size:0x74 +fn_80092DFC = .text:0x80092DFC; // type:function size:0x28 +fn_80092E24 = .text:0x80092E24; // type:function size:0xB4 +fn_80092ED8 = .text:0x80092ED8; // type:function size:0xB4 +fn_80092F8C = .text:0x80092F8C; // type:function size:0x58 +fn_80092FE4 = .text:0x80092FE4; // type:function size:0x70 +fn_80093054 = .text:0x80093054; // type:function size:0xD8 +fn_8009312C = .text:0x8009312C; // type:function size:0x3C +fn_80093168 = .text:0x80093168; // type:function size:0x98 +fn_80093200 = .text:0x80093200; // type:function size:0x84 +fn_80093284 = .text:0x80093284; // type:function size:0x74 +fn_800932F8 = .text:0x800932F8; // type:function size:0x5C +fn_80093354 = .text:0x80093354; // type:function size:0x40 +fn_80093394 = .text:0x80093394; // type:function size:0x14 +fn_800933A8 = .text:0x800933A8; // type:function size:0xB8 +fn_80093460 = .text:0x80093460; // type:function size:0xE0 +fn_80093540 = .text:0x80093540; // type:function size:0xBC +fn_800935FC = .text:0x800935FC; // type:function size:0x12C +fn_80093728 = .text:0x80093728; // type:function size:0xC8 +fn_800937F0 = .text:0x800937F0; // type:function size:0x90 +fn_80093880 = .text:0x80093880; // type:function size:0x5C +fn_800938DC = .text:0x800938DC; // type:function size:0x48 +fn_80093924 = .text:0x80093924; // type:function size:0x3C +fn_80093960 = .text:0x80093960; // type:function size:0x10 +fn_80093970 = .text:0x80093970; // type:function size:0x40 +fn_800939B0 = .text:0x800939B0; // type:function size:0x4 +fn_800939B4 = .text:0x800939B4; // type:function size:0x4 +fn_800939B8 = .text:0x800939B8; // type:function size:0x4 +fn_800939BC = .text:0x800939BC; // type:function size:0x3C +fn_800939F8 = .text:0x800939F8; // type:function size:0x10 +fn_80093A08 = .text:0x80093A08; // type:function size:0x14 +fn_80093A1C = .text:0x80093A1C; // type:function size:0x14 +fn_80093A30 = .text:0x80093A30; // type:function size:0x4 +fn_80093A34 = .text:0x80093A34; // type:function size:0x4 +fn_80093A38 = .text:0x80093A38; // type:function size:0x58 +fn_80093A90 = .text:0x80093A90; // type:function size:0x8C +fn_80093B1C = .text:0x80093B1C; // type:function size:0xB8 +fn_80093BD4 = .text:0x80093BD4; // type:function size:0x50 +fn_80093C24 = .text:0x80093C24; // type:function size:0x40 +fn_80093C64 = .text:0x80093C64; // type:function size:0x8C +fn_80093CF0 = .text:0x80093CF0; // type:function size:0x50 +fn_80093D40 = .text:0x80093D40; // type:function size:0x8C +fn_80093DCC = .text:0x80093DCC; // type:function size:0x64 +fn_80093E30 = .text:0x80093E30; // type:function size:0xA0 +fn_80093ED0 = .text:0x80093ED0; // type:function size:0x80 +fn_80093F50 = .text:0x80093F50; // type:function size:0x58 +fn_80093FA8 = .text:0x80093FA8; // type:function size:0x5C +fn_80094004 = .text:0x80094004; // type:function size:0x50 +fn_80094054 = .text:0x80094054; // type:function size:0x40 +fn_80094094 = .text:0x80094094; // type:function size:0xC +fn_800940A0 = .text:0x800940A0; // type:function size:0x3C +fn_800940DC = .text:0x800940DC; // type:function size:0x48 +fn_80094124 = .text:0x80094124; // type:function size:0x40 +fn_80094164 = .text:0x80094164; // type:function size:0x58 +fn_800941BC = .text:0x800941BC; // type:function size:0x98 +fn_80094254 = .text:0x80094254; // type:function size:0x100 +fn_80094354 = .text:0x80094354; // type:function size:0xE8 +fn_8009443C = .text:0x8009443C; // type:function size:0x68 +fn_800944A4 = .text:0x800944A4; // type:function size:0x44 +fn_800944E8 = .text:0x800944E8; // type:function size:0x74 +fn_8009455C = .text:0x8009455C; // type:function size:0x6C +fn_800945C8 = .text:0x800945C8; // type:function size:0x54 +fn_8009461C = .text:0x8009461C; // type:function size:0x10 +fn_8009462C = .text:0x8009462C; // type:function size:0x14 +fn_80094640 = .text:0x80094640; // type:function size:0x70 +fn_800946B0 = .text:0x800946B0; // type:function size:0x10 +fn_800946C0 = .text:0x800946C0; // type:function size:0x10 +fn_800946D0 = .text:0x800946D0; // type:function size:0x58 +fn_80094728 = .text:0x80094728; // type:function size:0x38 +fn_80094760 = .text:0x80094760; // type:function size:0x68 +fn_800947C8 = .text:0x800947C8; // type:function size:0x44 +fn_8009480C = .text:0x8009480C; // type:function size:0x98 +fn_800948A4 = .text:0x800948A4; // type:function size:0x114 +fn_800949B8 = .text:0x800949B8; // type:function size:0x130 +fn_80094AE8 = .text:0x80094AE8; // type:function size:0x3C +fn_80094B24 = .text:0x80094B24; // type:function size:0x40 +fn_80094B64 = .text:0x80094B64; // type:function size:0x48 +fn_80094BAC = .text:0x80094BAC; // type:function size:0x50 +fn_80094BFC = .text:0x80094BFC; // type:function size:0x10 +fn_80094C0C = .text:0x80094C0C; // type:function size:0x40 +fn_80094C4C = .text:0x80094C4C; // type:function size:0x24 +fn_80094C70 = .text:0x80094C70; // type:function size:0x10 +fn_80094C80 = .text:0x80094C80; // type:function size:0x98 +fn_80094D18 = .text:0x80094D18; // type:function size:0x60 +fn_80094D78 = .text:0x80094D78; // type:function size:0x4 +fn_80094D7C = .text:0x80094D7C; // type:function size:0x94 +fn_80094E10 = .text:0x80094E10; // type:function size:0x7C +fn_80094E8C = .text:0x80094E8C; // type:function size:0xD8 +fn_80094F64 = .text:0x80094F64; // type:function size:0x15C +fn_800950C0 = .text:0x800950C0; // type:function size:0x158 +fn_80095218 = .text:0x80095218; // type:function size:0xE8 +fn_80095300 = .text:0x80095300; // type:function size:0x2AC +fn_800955AC = .text:0x800955AC; // type:function size:0x8 +fn_800955B4 = .text:0x800955B4; // type:function size:0x8 +fn_800955BC = .text:0x800955BC; // type:function size:0x64 +fn_80095620 = .text:0x80095620; // type:function size:0x18 +fn_80095638 = .text:0x80095638; // type:function size:0x70 +__ct__Q26Quazal15BackEndServicesFv = .text:0x800956A8; // type:function size:0xA0 +fn_80095748 = .text:0x80095748; // type:function size:0x48 +fn_80095790 = .text:0x80095790; // type:function size:0x40 +fn_800957D0 = .text:0x800957D0; // type:function size:0x118 +SetSandboxAccessKey__Q26Quazal15BackEndServicesFRCQ26Quazal6String = .text:0x800958E8; // type:function size:0x4 +fn_800958EC = .text:0x800958EC; // type:function size:0xC +fn_800958F8 = .text:0x800958F8; // type:function size:0xF0 +fn_800959E8 = .text:0x800959E8; // type:function size:0x68 +fn_80095A50 = .text:0x80095A50; // type:function size:0xD4 +fn_80095B24 = .text:0x80095B24; // type:function size:0x2C8 +fn_80095DEC = .text:0x80095DEC; // type:function size:0x8 +fn_80095DF4 = .text:0x80095DF4; // type:function size:0xC0 +fn_80095EB4 = .text:0x80095EB4; // type:function size:0x6C +fn_80095F20 = .text:0x80095F20; // type:function size:0x50 +fn_80095F70 = .text:0x80095F70; // type:function size:0x4 +fn_80095F74 = .text:0x80095F74; // type:function size:0xF8 +fn_8009606C = .text:0x8009606C; // type:function size:0x130 +fn_8009619C = .text:0x8009619C; // type:function size:0x8 +fn_800961A4 = .text:0x800961A4; // type:function size:0x10 +fn_800961B4 = .text:0x800961B4; // type:function size:0x1C +fn_800961D0 = .text:0x800961D0; // type:function size:0x2C +fn_800961FC = .text:0x800961FC; // type:function size:0xAC +fn_800962A8 = .text:0x800962A8; // type:function size:0x8 +fn_800962B0 = .text:0x800962B0; // type:function size:0xE4 +fn_80096394 = .text:0x80096394; // type:function size:0x24 +fn_800963B8 = .text:0x800963B8; // type:function size:0x24 +fn_800963DC = .text:0x800963DC; // type:function size:0x24 +fn_80096400 = .text:0x80096400; // type:function size:0x1C +fn_8009641C = .text:0x8009641C; // type:function size:0x30 +fn_8009644C = .text:0x8009644C; // type:function size:0x44 +fn_80096490 = .text:0x80096490; // type:function size:0x44 +fn_800964D4 = .text:0x800964D4; // type:function size:0x43C +fn_80096910 = .text:0x80096910; // type:function size:0x4 +fn_80096914 = .text:0x80096914; // type:function size:0xC +fn_80096920 = .text:0x80096920; // type:function size:0x54 +fn_80096974 = .text:0x80096974; // type:function size:0x1B4 +fn_80096B28 = .text:0x80096B28; // type:function size:0xD4 +fn_80096BFC = .text:0x80096BFC; // type:function size:0xFC +fn_80096CF8 = .text:0x80096CF8; // type:function size:0x194 +fn_80096E8C = .text:0x80096E8C; // type:function size:0x98 +fn_80096F24 = .text:0x80096F24; // type:function size:0xEC +fn_80097010 = .text:0x80097010; // type:function size:0x1CC +fn_800971DC = .text:0x800971DC; // type:function size:0xE0 +fn_800972BC = .text:0x800972BC; // type:function size:0x270 +fn_8009752C = .text:0x8009752C; // type:function size:0xEC +fn_80097618 = .text:0x80097618; // type:function size:0x188 +fn_800977A0 = .text:0x800977A0; // type:function size:0xE0 +fn_80097880 = .text:0x80097880; // type:function size:0x114 +fn_80097994 = .text:0x80097994; // type:function size:0x128 +fn_80097ABC = .text:0x80097ABC; // type:function size:0x114 +fn_80097BD0 = .text:0x80097BD0; // type:function size:0x94 +fn_80097C64 = .text:0x80097C64; // type:function size:0x184 +fn_80097DE8 = .text:0x80097DE8; // type:function size:0x3C +fn_80097E24 = .text:0x80097E24; // type:function size:0xB4 +fn_80097ED8 = .text:0x80097ED8; // type:function size:0x68 +fn_80097F40 = .text:0x80097F40; // type:function size:0xE4 +fn_80098024 = .text:0x80098024; // type:function size:0x280 +fn_800982A4 = .text:0x800982A4; // type:function size:0x4 +fn_800982A8 = .text:0x800982A8; // type:function size:0xD0 +fn_80098378 = .text:0x80098378; // type:function size:0x1D4 +fn_8009854C = .text:0x8009854C; // type:function size:0x8C +fn_800985D8 = .text:0x800985D8; // type:function size:0x70 +fn_80098648 = .text:0x80098648; // type:function size:0xFC +fn_80098744 = .text:0x80098744; // type:function size:0x70 +fn_800987B4 = .text:0x800987B4; // type:function size:0xB0 +fn_80098864 = .text:0x80098864; // type:function size:0x9C +fn_80098900 = .text:0x80098900; // type:function size:0xA4 +fn_800989A4 = .text:0x800989A4; // type:function size:0xA4 +fn_80098A48 = .text:0x80098A48; // type:function size:0x68 +fn_80098AB0 = .text:0x80098AB0; // type:function size:0x98 +fn_80098B48 = .text:0x80098B48; // type:function size:0xD4 +fn_80098C1C = .text:0x80098C1C; // type:function size:0x58 +fn_80098C74 = .text:0x80098C74; // type:function size:0x80 +fn_80098CF4 = .text:0x80098CF4; // type:function size:0x3C +fn_80098D30 = .text:0x80098D30; // type:function size:0x58 +fn_80098D88 = .text:0x80098D88; // type:function size:0x58 +fn_80098DE0 = .text:0x80098DE0; // type:function size:0x4 +fn_80098DE4 = .text:0x80098DE4; // type:function size:0x60 +fn_80098E44 = .text:0x80098E44; // type:function size:0x64 +fn_80098EA8 = .text:0x80098EA8; // type:function size:0x70 +fn_80098F18 = .text:0x80098F18; // type:function size:0x74 +fn_80098F8C = .text:0x80098F8C; // type:function size:0x8 +fn_80098F94 = .text:0x80098F94; // type:function size:0x4 +fn_80098F98 = .text:0x80098F98; // type:function size:0x54 +fn_80098FEC = .text:0x80098FEC; // type:function size:0x40 +fn_8009902C = .text:0x8009902C; // type:function size:0x80 +fn_800990AC = .text:0x800990AC; // type:function size:0x8 +fn_800990B4 = .text:0x800990B4; // type:function size:0x84 +fn_80099138 = .text:0x80099138; // type:function size:0x60 +fn_80099198 = .text:0x80099198; // type:function size:0x138 +fn_800992D0 = .text:0x800992D0; // type:function size:0x6C +fn_8009933C = .text:0x8009933C; // type:function size:0xB8 +fn_800993F4 = .text:0x800993F4; // type:function size:0x58 +fn_8009944C = .text:0x8009944C; // type:function size:0x68 +fn_800994B4 = .text:0x800994B4; // type:function size:0x88 +fn_8009953C = .text:0x8009953C; // type:function size:0x3C +fn_80099578 = .text:0x80099578; // type:function size:0x74 +fn_800995EC = .text:0x800995EC; // type:function size:0x3C +fn_80099628 = .text:0x80099628; // type:function size:0x48 +fn_80099670 = .text:0x80099670; // type:function size:0x6C +fn_800996DC = .text:0x800996DC; // type:function size:0x1B0 +fn_8009988C = .text:0x8009988C; // type:function size:0x5C +fn_800998E8 = .text:0x800998E8; // type:function size:0x58 +fn_80099940 = .text:0x80099940; // type:function size:0x3C +fn_8009997C = .text:0x8009997C; // type:function size:0x3C +fn_800999B8 = .text:0x800999B8; // type:function size:0x4C +fn_80099A04 = .text:0x80099A04; // type:function size:0x68 +fn_80099A6C = .text:0x80099A6C; // type:function size:0x48 +fn_80099AB4 = .text:0x80099AB4; // type:function size:0x40 +fn_80099AF4 = .text:0x80099AF4; // type:function size:0x40 +fn_80099B34 = .text:0x80099B34; // type:function size:0x98 +fn_80099BCC = .text:0x80099BCC; // type:function size:0xC +fn_80099BD8 = .text:0x80099BD8; // type:function size:0x54 +fn_80099C2C = .text:0x80099C2C; // type:function size:0xE0 +fn_80099D0C = .text:0x80099D0C; // type:function size:0x30 +fn_80099D3C = .text:0x80099D3C; // type:function size:0x28 +fn_80099D64 = .text:0x80099D64; // type:function size:0x70 +fn_80099DD4 = .text:0x80099DD4; // type:function size:0x44 +fn_80099E18 = .text:0x80099E18; // type:function size:0x44 +fn_80099E5C = .text:0x80099E5C; // type:function size:0x44 +fn_80099EA0 = .text:0x80099EA0; // type:function size:0x6C +fn_80099F0C = .text:0x80099F0C; // type:function size:0x58 +fn_80099F64 = .text:0x80099F64; // type:function size:0x60 +fn_80099FC4 = .text:0x80099FC4; // type:function size:0x5C +fn_8009A020 = .text:0x8009A020; // type:function size:0x4 +fn_8009A024 = .text:0x8009A024; // type:function size:0x38 +fn_8009A05C = .text:0x8009A05C; // type:function size:0x5C +fn_8009A0B8 = .text:0x8009A0B8; // type:function size:0x60 +fn_8009A118 = .text:0x8009A118; // type:function size:0x10 +fn_8009A128 = .text:0x8009A128; // type:function size:0x3C +fn_8009A164 = .text:0x8009A164; // type:function size:0x54 +fn_8009A1B8 = .text:0x8009A1B8; // type:function size:0x30 +fn_8009A1E8 = .text:0x8009A1E8; // type:function size:0x70 +fn_8009A258 = .text:0x8009A258; // type:function size:0x78 +fn_8009A2D0 = .text:0x8009A2D0; // type:function size:0x3C +fn_8009A30C = .text:0x8009A30C; // type:function size:0x40 +fn_8009A34C = .text:0x8009A34C; // type:function size:0x48 +fn_8009A394 = .text:0x8009A394; // type:function size:0x68 +fn_8009A3FC = .text:0x8009A3FC; // type:function size:0x2C +fn_8009A428 = .text:0x8009A428; // type:function size:0x14 +fn_8009A43C = .text:0x8009A43C; // type:function size:0x68 +fn_8009A4A4 = .text:0x8009A4A4; // type:function size:0x8 +fn_8009A4AC = .text:0x8009A4AC; // type:function size:0x48 +fn_8009A4F4 = .text:0x8009A4F4; // type:function size:0x60 +fn_8009A554 = .text:0x8009A554; // type:function size:0x78 +fn_8009A5CC = .text:0x8009A5CC; // type:function size:0xB8 +fn_8009A684 = .text:0x8009A684; // type:function size:0xE0 +fn_8009A764 = .text:0x8009A764; // type:function size:0xBC +fn_8009A820 = .text:0x8009A820; // type:function size:0x158 +fn_8009A978 = .text:0x8009A978; // type:function size:0xF0 +fn_8009AA68 = .text:0x8009AA68; // type:function size:0x90 +fn_8009AAF8 = .text:0x8009AAF8; // type:function size:0xC0 +fn_8009ABB8 = .text:0x8009ABB8; // type:function size:0x5C +fn_8009AC14 = .text:0x8009AC14; // type:function size:0x68 +fn_8009AC7C = .text:0x8009AC7C; // type:function size:0x6C +fn_8009ACE8 = .text:0x8009ACE8; // type:function size:0x3C +fn_8009AD24 = .text:0x8009AD24; // type:function size:0x10 +fn_8009AD34 = .text:0x8009AD34; // type:function size:0x14 +fn_8009AD48 = .text:0x8009AD48; // type:function size:0x70 +fn_8009ADB8 = .text:0x8009ADB8; // type:function size:0x4C +fn_8009AE04 = .text:0x8009AE04; // type:function size:0x4C +fn_8009AE50 = .text:0x8009AE50; // type:function size:0x3C +fn_8009AE8C = .text:0x8009AE8C; // type:function size:0x10 +fn_8009AE9C = .text:0x8009AE9C; // type:function size:0x14 +fn_8009AEB0 = .text:0x8009AEB0; // type:function size:0x70 +fn_8009AF20 = .text:0x8009AF20; // type:function size:0x10 +fn_8009AF30 = .text:0x8009AF30; // type:function size:0x10 +fn_8009AF40 = .text:0x8009AF40; // type:function size:0x44 +fn_8009AF84 = .text:0x8009AF84; // type:function size:0x5C +fn_8009AFE0 = .text:0x8009AFE0; // type:function size:0x40 +fn_8009B020 = .text:0x8009B020; // type:function size:0x30 +fn_8009B050 = .text:0x8009B050; // type:function size:0x58 +fn_8009B0A8 = .text:0x8009B0A8; // type:function size:0x4 +fn_8009B0AC = .text:0x8009B0AC; // type:function size:0xF0 +fn_8009B19C = .text:0x8009B19C; // type:function size:0xF0 +fn_8009B28C = .text:0x8009B28C; // type:function size:0x3C +fn_8009B2C8 = .text:0x8009B2C8; // type:function size:0x10 +fn_8009B2D8 = .text:0x8009B2D8; // type:function size:0x14 +fn_8009B2EC = .text:0x8009B2EC; // type:function size:0x14 +fn_8009B300 = .text:0x8009B300; // type:function size:0x10 +fn_8009B310 = .text:0x8009B310; // type:function size:0x10 +fn_8009B320 = .text:0x8009B320; // type:function size:0x64 +fn_8009B384 = .text:0x8009B384; // type:function size:0x9C +fn_8009B420 = .text:0x8009B420; // type:function size:0x50 +fn_8009B470 = .text:0x8009B470; // type:function size:0xA8 +fn_8009B518 = .text:0x8009B518; // type:function size:0x64 +fn_8009B57C = .text:0x8009B57C; // type:function size:0x138 +fn_8009B6B4 = .text:0x8009B6B4; // type:function size:0x12C +fn_8009B7E0 = .text:0x8009B7E0; // type:function size:0x138 +fn_8009B918 = .text:0x8009B918; // type:function size:0x13C +fn_8009BA54 = .text:0x8009BA54; // type:function size:0x13C +fn_8009BB90 = .text:0x8009BB90; // type:function size:0x144 +fn_8009BCD4 = .text:0x8009BCD4; // type:function size:0x13C +fn_8009BE10 = .text:0x8009BE10; // type:function size:0x144 +fn_8009BF54 = .text:0x8009BF54; // type:function size:0x60 +fn_8009BFB4 = .text:0x8009BFB4; // type:function size:0xAC +fn_8009C060 = .text:0x8009C060; // type:function size:0x60 +fn_8009C0C0 = .text:0x8009C0C0; // type:function size:0x60 +fn_8009C120 = .text:0x8009C120; // type:function size:0x304 +fn_8009C424 = .text:0x8009C424; // type:function size:0x6C +fn_8009C490 = .text:0x8009C490; // type:function size:0x6C +fn_8009C4FC = .text:0x8009C4FC; // type:function size:0xA8 +fn_8009C5A4 = .text:0x8009C5A4; // type:function size:0x9C +fn_8009C640 = .text:0x8009C640; // type:function size:0x88 +fn_8009C6C8 = .text:0x8009C6C8; // type:function size:0x3C +fn_8009C704 = .text:0x8009C704; // type:function size:0x28 +fn_8009C72C = .text:0x8009C72C; // type:function size:0x3C +fn_8009C768 = .text:0x8009C768; // type:function size:0x10 +fn_8009C778 = .text:0x8009C778; // type:function size:0xA8 +fn_8009C820 = .text:0x8009C820; // type:function size:0xA4 +fn_8009C8C4 = .text:0x8009C8C4; // type:function size:0xA8 +fn_8009C96C = .text:0x8009C96C; // type:function size:0xF0 +fn_8009CA5C = .text:0x8009CA5C; // type:function size:0x6C +fn_8009CAC8 = .text:0x8009CAC8; // type:function size:0xB8 +fn_8009CB80 = .text:0x8009CB80; // type:function size:0x58 +fn_8009CBD8 = .text:0x8009CBD8; // type:function size:0x68 +fn_8009CC40 = .text:0x8009CC40; // type:function size:0x88 +fn_8009CCC8 = .text:0x8009CCC8; // type:function size:0x3C +fn_8009CD04 = .text:0x8009CD04; // type:function size:0x64 +fn_8009CD68 = .text:0x8009CD68; // type:function size:0x3C +fn_8009CDA4 = .text:0x8009CDA4; // type:function size:0x48 +fn_8009CDEC = .text:0x8009CDEC; // type:function size:0x6C +fn_8009CE58 = .text:0x8009CE58; // type:function size:0xB8 +fn_8009CF10 = .text:0x8009CF10; // type:function size:0x58 +fn_8009CF68 = .text:0x8009CF68; // type:function size:0x5C +fn_8009CFC4 = .text:0x8009CFC4; // type:function size:0x88 +fn_8009D04C = .text:0x8009D04C; // type:function size:0x3C +fn_8009D088 = .text:0x8009D088; // type:function size:0x54 +fn_8009D0DC = .text:0x8009D0DC; // type:function size:0x3C +fn_8009D118 = .text:0x8009D118; // type:function size:0x40 +fn_8009D158 = .text:0x8009D158; // type:function size:0x60 +fn_8009D1B8 = .text:0x8009D1B8; // type:function size:0xFC +fn_8009D2B4 = .text:0x8009D2B4; // type:function size:0x6C +fn_8009D320 = .text:0x8009D320; // type:function size:0xAC +fn_8009D3CC = .text:0x8009D3CC; // type:function size:0x58 +fn_8009D424 = .text:0x8009D424; // type:function size:0x5C +fn_8009D480 = .text:0x8009D480; // type:function size:0x4 +fn_8009D484 = .text:0x8009D484; // type:function size:0x38 +fn_8009D4BC = .text:0x8009D4BC; // type:function size:0x5C +fn_8009D518 = .text:0x8009D518; // type:function size:0x60 +fn_8009D578 = .text:0x8009D578; // type:function size:0x10 +fn_8009D588 = .text:0x8009D588; // type:function size:0x3C +fn_8009D5C4 = .text:0x8009D5C4; // type:function size:0x4C +fn_8009D610 = .text:0x8009D610; // type:function size:0x3C +fn_8009D64C = .text:0x8009D64C; // type:function size:0x40 +fn_8009D68C = .text:0x8009D68C; // type:function size:0x68 +fn_8009D6F4 = .text:0x8009D6F4; // type:function size:0x2C +fn_8009D720 = .text:0x8009D720; // type:function size:0xC +fn_8009D72C = .text:0x8009D72C; // type:function size:0x3C +fn_8009D768 = .text:0x8009D768; // type:function size:0x48 +fn_8009D7B0 = .text:0x8009D7B0; // type:function size:0x40 +fn_8009D7F0 = .text:0x8009D7F0; // type:function size:0x5C +fn_8009D84C = .text:0x8009D84C; // type:function size:0x44 +fn_8009D890 = .text:0x8009D890; // type:function size:0x40 +fn_8009D8D0 = .text:0x8009D8D0; // type:function size:0x78 +fn_8009D948 = .text:0x8009D948; // type:function size:0x74 +fn_8009D9BC = .text:0x8009D9BC; // type:function size:0x58 +fn_8009DA14 = .text:0x8009DA14; // type:function size:0x3C +fn_8009DA50 = .text:0x8009DA50; // type:function size:0x104 +fn_8009DB54 = .text:0x8009DB54; // type:function size:0x3C +fn_8009DB90 = .text:0x8009DB90; // type:function size:0x70 +fn_8009DC00 = .text:0x8009DC00; // type:function size:0x44 +fn_8009DC44 = .text:0x8009DC44; // type:function size:0x40 +fn_8009DC84 = .text:0x8009DC84; // type:function size:0x40 +fn_8009DCC4 = .text:0x8009DCC4; // type:function size:0x100 +fn_8009DDC4 = .text:0x8009DDC4; // type:function size:0x88 +fn_8009DE4C = .text:0x8009DE4C; // type:function size:0xC +fn_8009DE58 = .text:0x8009DE58; // type:function size:0x68 +fn_8009DEC0 = .text:0x8009DEC0; // type:function size:0x14 +fn_8009DED4 = .text:0x8009DED4; // type:function size:0x48 +fn_8009DF1C = .text:0x8009DF1C; // type:function size:0x10 +fn_8009DF2C = .text:0x8009DF2C; // type:function size:0x78 +fn_8009DFA4 = .text:0x8009DFA4; // type:function size:0x70 +fn_8009E014 = .text:0x8009E014; // type:function size:0x68 +fn_8009E07C = .text:0x8009E07C; // type:function size:0x58 +fn_8009E0D4 = .text:0x8009E0D4; // type:function size:0x120 +fn_8009E1F4 = .text:0x8009E1F4; // type:function size:0xA0 +fn_8009E294 = .text:0x8009E294; // type:function size:0xA4 +fn_8009E338 = .text:0x8009E338; // type:function size:0x64 +fn_8009E39C = .text:0x8009E39C; // type:function size:0x134 +fn_8009E4D0 = .text:0x8009E4D0; // type:function size:0x144 +fn_8009E614 = .text:0x8009E614; // type:function size:0x11C +fn_8009E730 = .text:0x8009E730; // type:function size:0x60 +fn_8009E790 = .text:0x8009E790; // type:function size:0x38 +fn_8009E7C8 = .text:0x8009E7C8; // type:function size:0x114 +fn_8009E8DC = .text:0x8009E8DC; // type:function size:0x6C +fn_8009E948 = .text:0x8009E948; // type:function size:0x6C +fn_8009E9B4 = .text:0x8009E9B4; // type:function size:0xAC +fn_8009EA60 = .text:0x8009EA60; // type:function size:0x4 +fn_8009EA64 = .text:0x8009EA64; // type:function size:0x38 +fn_8009EA9C = .text:0x8009EA9C; // type:function size:0x88 +fn_8009EB24 = .text:0x8009EB24; // type:function size:0x3C +fn_8009EB60 = .text:0x8009EB60; // type:function size:0xA4 +fn_8009EC04 = .text:0x8009EC04; // type:function size:0x3C +fn_8009EC40 = .text:0x8009EC40; // type:function size:0x104 +fn_8009ED44 = .text:0x8009ED44; // type:function size:0x74 +fn_8009EDB8 = .text:0x8009EDB8; // type:function size:0x10 +fn_8009EDC8 = .text:0x8009EDC8; // type:function size:0x14 +fn_8009EDDC = .text:0x8009EDDC; // type:function size:0x70 +fn_8009EE4C = .text:0x8009EE4C; // type:function size:0x4C +fn_8009EE98 = .text:0x8009EE98; // type:function size:0x4C +fn_8009EEE4 = .text:0x8009EEE4; // type:function size:0x7C +fn_8009EF60 = .text:0x8009EF60; // type:function size:0x58 +fn_8009EFB8 = .text:0x8009EFB8; // type:function size:0x130 +fn_8009F0E8 = .text:0x8009F0E8; // type:function size:0x58 +fn_8009F140 = .text:0x8009F140; // type:function size:0x44 +fn_8009F184 = .text:0x8009F184; // type:function size:0x10 +fn_8009F194 = .text:0x8009F194; // type:function size:0xCC +fn_8009F260 = .text:0x8009F260; // type:function size:0xD4 +fn_8009F334 = .text:0x8009F334; // type:function size:0x30 +fn_8009F364 = .text:0x8009F364; // type:function size:0x58 +fn_8009F3BC = .text:0x8009F3BC; // type:function size:0x50 +fn_8009F40C = .text:0x8009F40C; // type:function size:0x68 +fn_8009F474 = .text:0x8009F474; // type:function size:0x8 +fn_8009F47C = .text:0x8009F47C; // type:function size:0x8 +fn_8009F484 = .text:0x8009F484; // type:function size:0x8 +fn_8009F48C = .text:0x8009F48C; // type:function size:0x3C +fn_8009F4C8 = .text:0x8009F4C8; // type:function size:0x10 +fn_8009F4D8 = .text:0x8009F4D8; // type:function size:0x40 +fn_8009F518 = .text:0x8009F518; // type:function size:0xE8 +fn_8009F600 = .text:0x8009F600; // type:function size:0x50 +fn_8009F650 = .text:0x8009F650; // type:function size:0x54 +fn_8009F6A4 = .text:0x8009F6A4; // type:function size:0x44 +fn_8009F6E8 = .text:0x8009F6E8; // type:function size:0x60 +fn_8009F748 = .text:0x8009F748; // type:function size:0x8 +fn_8009F750 = .text:0x8009F750; // type:function size:0x58 +fn_8009F7A8 = .text:0x8009F7A8; // type:function size:0x60 +fn_8009F808 = .text:0x8009F808; // type:function size:0xDC +fn_8009F8E4 = .text:0x8009F8E4; // type:function size:0x10C +fn_8009F9F0 = .text:0x8009F9F0; // type:function size:0x11C +fn_8009FB0C = .text:0x8009FB0C; // type:function size:0xEC +fn_8009FBF8 = .text:0x8009FBF8; // type:function size:0xA4 +fn_8009FC9C = .text:0x8009FC9C; // type:function size:0x80 +fn_8009FD1C = .text:0x8009FD1C; // type:function size:0x80 +fn_8009FD9C = .text:0x8009FD9C; // type:function size:0x84 +fn_8009FE20 = .text:0x8009FE20; // type:function size:0x44 +fn_8009FE64 = .text:0x8009FE64; // type:function size:0x40 +fn_8009FEA4 = .text:0x8009FEA4; // type:function size:0x5C +fn_8009FF00 = .text:0x8009FF00; // type:function size:0x80 +fn_8009FF80 = .text:0x8009FF80; // type:function size:0x40 +fn_8009FFC0 = .text:0x8009FFC0; // type:function size:0x74 +fn_800A0034 = .text:0x800A0034; // type:function size:0x8 +fn_800A003C = .text:0x800A003C; // type:function size:0x58 +fn_800A0094 = .text:0x800A0094; // type:function size:0x40 +fn_800A00D4 = .text:0x800A00D4; // type:function size:0x80 +fn_800A0154 = .text:0x800A0154; // type:function size:0x8 +fn_800A015C = .text:0x800A015C; // type:function size:0x114 +fn_800A0270 = .text:0x800A0270; // type:function size:0xBC +fn_800A032C = .text:0x800A032C; // type:function size:0xAC +fn_800A03D8 = .text:0x800A03D8; // type:function size:0x58 +fn_800A0430 = .text:0x800A0430; // type:function size:0x40 +fn_800A0470 = .text:0x800A0470; // type:function size:0x80 +fn_800A04F0 = .text:0x800A04F0; // type:function size:0x8 +fn_800A04F8 = .text:0x800A04F8; // type:function size:0x7C +fn_800A0574 = .text:0x800A0574; // type:function size:0xD0 +fn_800A0644 = .text:0x800A0644; // type:function size:0x3C +fn_800A0680 = .text:0x800A0680; // type:function size:0x40 +fn_800A06C0 = .text:0x800A06C0; // type:function size:0x50 +fn_800A0710 = .text:0x800A0710; // type:function size:0x154 +fn_800A0864 = .text:0x800A0864; // type:function size:0x15C +fn_800A09C0 = .text:0x800A09C0; // type:function size:0x15C +fn_800A0B1C = .text:0x800A0B1C; // type:function size:0x178 +fn_800A0C94 = .text:0x800A0C94; // type:function size:0x60 +fn_800A0CF4 = .text:0x800A0CF4; // type:function size:0xD8 +fn_800A0DCC = .text:0x800A0DCC; // type:function size:0xF0 +fn_800A0EBC = .text:0x800A0EBC; // type:function size:0xA8 +fn_800A0F64 = .text:0x800A0F64; // type:function size:0xA8 +fn_800A100C = .text:0x800A100C; // type:function size:0xB8 +fn_800A10C4 = .text:0x800A10C4; // type:function size:0x58 +fn_800A111C = .text:0x800A111C; // type:function size:0x88 +fn_800A11A4 = .text:0x800A11A4; // type:function size:0x3C +fn_800A11E0 = .text:0x800A11E0; // type:function size:0x58 +fn_800A1238 = .text:0x800A1238; // type:function size:0x3C +fn_800A1274 = .text:0x800A1274; // type:function size:0x40 +fn_800A12B4 = .text:0x800A12B4; // type:function size:0x110 +fn_800A13C4 = .text:0x800A13C4; // type:function size:0x130 +fn_800A14F4 = .text:0x800A14F4; // type:function size:0xA8 +fn_800A159C = .text:0x800A159C; // type:function size:0x84 +fn_800A1620 = .text:0x800A1620; // type:function size:0x164 +fn_800A1784 = .text:0x800A1784; // type:function size:0x5C +fn_800A17E0 = .text:0x800A17E0; // type:function size:0x48 +fn_800A1828 = .text:0x800A1828; // type:function size:0x1C0 +fn_800A19E8 = .text:0x800A19E8; // type:function size:0x3C +fn_800A1A24 = .text:0x800A1A24; // type:function size:0x88 +fn_800A1AAC = .text:0x800A1AAC; // type:function size:0x84 +fn_800A1B30 = .text:0x800A1B30; // type:function size:0x18C +fn_800A1CBC = .text:0x800A1CBC; // type:function size:0x10 +fn_800A1CCC = .text:0x800A1CCC; // type:function size:0xBC +fn_800A1D88 = .text:0x800A1D88; // type:function size:0x84 +fn_800A1E0C = .text:0x800A1E0C; // type:function size:0x54 +fn_800A1E60 = .text:0x800A1E60; // type:function size:0x54 +fn_800A1EB4 = .text:0x800A1EB4; // type:function size:0x58 +fn_800A1F0C = .text:0x800A1F0C; // type:function size:0x68 +fn_800A1F74 = .text:0x800A1F74; // type:function size:0x8C +fn_800A2000 = .text:0x800A2000; // type:function size:0x15C +fn_800A215C = .text:0x800A215C; // type:function size:0xDC +fn_800A2238 = .text:0x800A2238; // type:function size:0xB0 +fn_800A22E8 = .text:0x800A22E8; // type:function size:0x80 +fn_800A2368 = .text:0x800A2368; // type:function size:0x14 +fn_800A237C = .text:0x800A237C; // type:function size:0x24 +fn_800A23A0 = .text:0x800A23A0; // type:function size:0x24 +fn_800A23C4 = .text:0x800A23C4; // type:function size:0x24 +fn_800A23E8 = .text:0x800A23E8; // type:function size:0x24 +fn_800A240C = .text:0x800A240C; // type:function size:0x24 +fn_800A2430 = .text:0x800A2430; // type:function size:0x24 +fn_800A2454 = .text:0x800A2454; // type:function size:0x24 +fn_800A2478 = .text:0x800A2478; // type:function size:0x24 +fn_800A249C = .text:0x800A249C; // type:function size:0x24 +fn_800A24C0 = .text:0x800A24C0; // type:function size:0x20 +fn_800A24E0 = .text:0x800A24E0; // type:function size:0x20 +fn_800A2500 = .text:0x800A2500; // type:function size:0x24 +fn_800A2524 = .text:0x800A2524; // type:function size:0x4 +fn_800A2528 = .text:0x800A2528; // type:function size:0x24 +fn_800A254C = .text:0x800A254C; // type:function size:0x4 +fn_800A2550 = .text:0x800A2550; // type:function size:0x20 +fn_800A2570 = .text:0x800A2570; // type:function size:0x24 +fn_800A2594 = .text:0x800A2594; // type:function size:0x20 +fn_800A25B4 = .text:0x800A25B4; // type:function size:0x24 +fn_800A25D8 = .text:0x800A25D8; // type:function size:0x34 +fn_800A260C = .text:0x800A260C; // type:function size:0x8 +fn_800A2614 = .text:0x800A2614; // type:function size:0x98 +fn_800A26AC = .text:0x800A26AC; // type:function size:0xAC +fn_800A2758 = .text:0x800A2758; // type:function size:0x8 +fn_800A2760 = .text:0x800A2760; // type:function size:0x30 +fn_800A2790 = .text:0x800A2790; // type:function size:0x10 +fn_800A27A0 = .text:0x800A27A0; // type:function size:0x5C +fn_800A27FC = .text:0x800A27FC; // type:function size:0x24 +fn_800A2820 = .text:0x800A2820; // type:function size:0x10 +fn_800A2830 = .text:0x800A2830; // type:function size:0x8 +fn_800A2838 = .text:0x800A2838; // type:function size:0x14 +fn_800A284C = .text:0x800A284C; // type:function size:0x14 +fn_800A2860 = .text:0x800A2860; // type:function size:0x14 +fn_800A2874 = .text:0x800A2874; // type:function size:0x14 +fn_800A2888 = .text:0x800A2888; // type:function size:0x14 +fn_800A289C = .text:0x800A289C; // type:function size:0x8 +fn_800A28A4 = .text:0x800A28A4; // type:function size:0x4 +fn_800A28A8 = .text:0x800A28A8; // type:function size:0x34 +fn_800A28DC = .text:0x800A28DC; // type:function size:0x3C +fn_800A2918 = .text:0x800A2918; // type:function size:0xC +fn_800A2924 = .text:0x800A2924; // type:function size:0x84 +fn_800A29A8 = .text:0x800A29A8; // type:function size:0xF4 +fn_800A2A9C = .text:0x800A2A9C; // type:function size:0xC +fn_800A2AA8 = .text:0x800A2AA8; // type:function size:0xC +fn_800A2AB4 = .text:0x800A2AB4; // type:function size:0xC +fn_800A2AC0 = .text:0x800A2AC0; // type:function size:0xC +fn_800A2ACC = .text:0x800A2ACC; // type:function size:0x1B8 +fn_800A2C84 = .text:0x800A2C84; // type:function size:0x5C +fn_800A2CE0 = .text:0x800A2CE0; // type:function size:0x3C +fn_800A2D1C = .text:0x800A2D1C; // type:function size:0x68 +fn_800A2D84 = .text:0x800A2D84; // type:function size:0x44 +fn_800A2DC8 = .text:0x800A2DC8; // type:function size:0x3C +fn_800A2E04 = .text:0x800A2E04; // type:function size:0xBC +fn_800A2EC0 = .text:0x800A2EC0; // type:function size:0xA0 +fn_800A2F60 = .text:0x800A2F60; // type:function size:0x130 +fn_800A3090 = .text:0x800A3090; // type:function size:0x50 +fn_800A30E0 = .text:0x800A30E0; // type:function size:0xA8 +fn_800A3188 = .text:0x800A3188; // type:function size:0xE8 +fn_800A3270 = .text:0x800A3270; // type:function size:0x1B8 +fn_800A3428 = .text:0x800A3428; // type:function size:0x8 +fn_800A3430 = .text:0x800A3430; // type:function size:0x8 +fn_800A3438 = .text:0x800A3438; // type:function size:0x8 +fn_800A3440 = .text:0x800A3440; // type:function size:0x44 +fn_800A3484 = .text:0x800A3484; // type:function size:0x44 +fn_800A34C8 = .text:0x800A34C8; // type:function size:0x58 +fn_800A3520 = .text:0x800A3520; // type:function size:0x9C +fn_800A35BC = .text:0x800A35BC; // type:function size:0x58 +fn_800A3614 = .text:0x800A3614; // type:function size:0x64 +fn_800A3678 = .text:0x800A3678; // type:function size:0xB8 +fn_800A3730 = .text:0x800A3730; // type:function size:0x40 +__ct__Q26Quazal14NintendoClientFv = .text:0x800A3770; // type:function size:0x88 +fn_800A37F8 = .text:0x800A37F8; // type:function size:0xF0 +fn_800A38E8 = .text:0x800A38E8; // type:function size:0x24 +fn_800A390C = .text:0x800A390C; // type:function size:0x24 +fn_800A3930 = .text:0x800A3930; // type:function size:0x10 +fn_800A3940 = .text:0x800A3940; // type:function size:0x104 +fn_800A3A44 = .text:0x800A3A44; // type:function size:0x1AC +fn_800A3BF0 = .text:0x800A3BF0; // type:function size:0x94 +fn_800A3C84 = .text:0x800A3C84; // type:function size:0x80 +fn_800A3D04 = .text:0x800A3D04; // type:function size:0x84 +fn_800A3D88 = .text:0x800A3D88; // type:function size:0x78 +fn_800A3E00 = .text:0x800A3E00; // type:function size:0x8 +fn_800A3E08 = .text:0x800A3E08; // type:function size:0x8 +fn_800A3E10 = .text:0x800A3E10; // type:function size:0x54 +fn_800A3E64 = .text:0x800A3E64; // type:function size:0x74 +fn_800A3ED8 = .text:0x800A3ED8; // type:function size:0x10 +fn_800A3EE8 = .text:0x800A3EE8; // type:function size:0x14 +fn_800A3EFC = .text:0x800A3EFC; // type:function size:0x70 +fn_800A3F6C = .text:0x800A3F6C; // type:function size:0x4C +fn_800A3FB8 = .text:0x800A3FB8; // type:function size:0x4C +fn_800A4004 = .text:0x800A4004; // type:function size:0x12C +fn_800A4130 = .text:0x800A4130; // type:function size:0x9C +__ct__Q26Quazal18JobTerminateFacadeFPQ26Quazal13ProductFacadeUi = .text:0x800A41CC; // type:function size:0xC4 +__dt__Q26Quazal18JobTerminateFacadeFv = .text:0x800A4290; // type:function size:0x68 +fn_800A42F8 = .text:0x800A42F8; // type:function size:0x68 +fn_800A4360 = .text:0x800A4360; // type:function size:0x74 +fn_800A43D4 = .text:0x800A43D4; // type:function size:0x74 +fn_800A4448 = .text:0x800A4448; // type:function size:0xB0 +fn_800A44F8 = .text:0x800A44F8; // type:function size:0xF4 +fn_800A45EC = .text:0x800A45EC; // type:function size:0x70 +fn_800A465C = .text:0x800A465C; // type:function size:0x80 +fn_800A46DC = .text:0x800A46DC; // type:function size:0xE4 +fn_800A47C0 = .text:0x800A47C0; // type:function size:0x90 +fn_800A4850 = .text:0x800A4850; // type:function size:0x9C +fn_800A48EC = .text:0x800A48EC; // type:function size:0xB0 +fn_800A499C = .text:0x800A499C; // type:function size:0x4 +__ct__Q26Quazal13ProductFacadeFPQ26Quazal16ProductSpecifics = .text:0x800A49A0; // type:function size:0x1AC +fn_800A4B4C = .text:0x800A4B4C; // type:function size:0x9C +fn_800A4BE8 = .text:0x800A4BE8; // type:function size:0x9C +__dt__Q26Quazal13ProductFacadeFv = .text:0x800A4C84; // type:function size:0x16C +fn_800A4DF0 = .text:0x800A4DF0; // type:function size:0x68 +fn_800A4E58 = .text:0x800A4E58; // type:function size:0x19C +fn_800A4FF4 = .text:0x800A4FF4; // type:function size:0x5C +fn_800A5050 = .text:0x800A5050; // type:function size:0x84 +fn_800A50D4 = .text:0x800A50D4; // type:function size:0x3C +fn_800A5110 = .text:0x800A5110; // type:function size:0x4C +__ct__Q26Quazal16ProductSpecificsFv = .text:0x800A515C; // type:function size:0x10 +__dt__Q26Quazal16ProductSpecificsFv = .text:0x800A516C; // type:function size:0x40 +__ct__Q26Quazal4NetZFv = .text:0x800A51AC; // type:function size:0x68 +__dt__Q26Quazal4NetZFv = .text:0x800A5214; // type:function size:0x64 +__ct__Q26Quazal13NetZSpecificsFv = .text:0x800A5278; // type:function size:0x3C +__dt__Q26Quazal13NetZSpecificsFv = .text:0x800A52B4; // type:function size:0x58 +GetProductID__Q26Quazal13NetZSpecificsFv = .text:0x800A530C; // type:function size:0x8 +RegisterSpecificDDLs__Q26Quazal13NetZSpecificsFv = .text:0x800A5314; // type:function size:0x24 +RegisterSpecificComponents__Q26Quazal13NetZSpecificsFv = .text:0x800A5338; // type:function size:0x30 +fn_800A5368 = .text:0x800A5368; // type:function size:0x48 +fn_800A53B0 = .text:0x800A53B0; // type:function size:0x6C +fn_800A541C = .text:0x800A541C; // type:function size:0x58 +fn_800A5474 = .text:0x800A5474; // type:function size:0x10 +fn_800A5484 = .text:0x800A5484; // type:function size:0x6C +fn_800A54F0 = .text:0x800A54F0; // type:function size:0x58 +fn_800A5548 = .text:0x800A5548; // type:function size:0x10 +fn_800A5558 = .text:0x800A5558; // type:function size:0x64 +fn_800A55BC = .text:0x800A55BC; // type:function size:0x54 +fn_800A5610 = .text:0x800A5610; // type:function size:0x8C +fn_800A569C = .text:0x800A569C; // type:function size:0x68 +fn_800A5704 = .text:0x800A5704; // type:function size:0x14 +fn_800A5718 = .text:0x800A5718; // type:function size:0x8 +fn_800A5720 = .text:0x800A5720; // type:function size:0x54 +fn_800A5774 = .text:0x800A5774; // type:function size:0x74 +fn_800A57E8 = .text:0x800A57E8; // type:function size:0x8C +fn_800A5874 = .text:0x800A5874; // type:function size:0xA4 +fn_800A5918 = .text:0x800A5918; // type:function size:0x1B8 +fn_800A5AD0 = .text:0x800A5AD0; // type:function size:0x64 +fn_800A5B34 = .text:0x800A5B34; // type:function size:0x1C +fn_800A5B50 = .text:0x800A5B50; // type:function size:0x6C +fn_800A5BBC = .text:0x800A5BBC; // type:function size:0x8C +fn_800A5C48 = .text:0x800A5C48; // type:function size:0xC8 +fn_800A5D10 = .text:0x800A5D10; // type:function size:0x1A8 +fn_800A5EB8 = .text:0x800A5EB8; // type:function size:0x4 +fn_800A5EBC = .text:0x800A5EBC; // type:function size:0x70 +fn_800A5F2C = .text:0x800A5F2C; // type:function size:0x1C +fn_800A5F48 = .text:0x800A5F48; // type:function size:0x4C +fn_800A5F94 = .text:0x800A5F94; // type:function size:0x8C +fn_800A6020 = .text:0x800A6020; // type:function size:0x104 +fn_800A6124 = .text:0x800A6124; // type:function size:0x114 +fn_800A6238 = .text:0x800A6238; // type:function size:0x54 +fn_800A628C = .text:0x800A628C; // type:function size:0x7C +fn_800A6308 = .text:0x800A6308; // type:function size:0x58 +__ct__10JsonObjectFv = .text:0x800A6360; // type:function size:0x18 +__dt__10JsonObjectFv = .text:0x800A6378; // type:function size:0x64 +GetString__10JsonObjectFv = .text:0x800A63DC; // type:function size:0x8 +Type__10JsonObjectFv = .text:0x800A63E4; // type:function size:0x8 +__ct__9JsonArrayFv = .text:0x800A63EC; // type:function size:0x44 +__dt__9JsonArrayFv = .text:0x800A6430; // type:function size:0x94 +Append__9JsonArrayFP10JsonObject = .text:0x800A64C4; // type:function size:0x54 +Length__9JsonArrayFv = .text:0x800A6518; // type:function size:0x8 +__ct__10JsonStringFPCc = .text:0x800A6520; // type:function size:0x54 +__dt__10JsonStringFv = .text:0x800A6574; // type:function size:0x58 +GetString__10JsonStringFv = .text:0x800A65CC; // type:function size:0x8 +__ct__7JsonIntFi = .text:0x800A65D4; // type:function size:0x54 +__dt__7JsonIntFv = .text:0x800A6628; // type:function size:0x58 +GetInt__7JsonIntFv = .text:0x800A6680; // type:function size:0x8 +__ct__10JsonDoubleFd = .text:0x800A6688; // type:function size:0x54 +__dt__10JsonDoubleFv = .text:0x800A66DC; // type:function size:0x58 +GetDouble__10JsonDoubleFv = .text:0x800A6734; // type:function size:0x8 +__ct__13JsonConverterFv = .text:0x800A673C; // type:function size:0x54 +__dt__Q211stlpmtx_std46vector>Fv = .text:0x800A6790; // type:function size:0x58 +fn_800A67E8 = .text:0x800A67E8; // type:function size:0x80 +fn_800A6868 = .text:0x800A6868; // type:function size:0x80 +fn_800A68E8 = .text:0x800A68E8; // type:function size:0x58 +fn_800A6940 = .text:0x800A6940; // type:function size:0x10 +fn_800A6950 = .text:0x800A6950; // type:function size:0x54 +fn_800A69A4 = .text:0x800A69A4; // type:function size:0x3C +fn_800A69E0 = .text:0x800A69E0; // type:function size:0x8 +fn_800A69E8 = .text:0x800A69E8; // type:function size:0x3C +fn_800A6A24__26UnknownJsonConverterMemberFv = .text:0x800A6A24; // type:function size:0x14 +__ct__Q211stlpmtx_std46vector>FRCQ211stlpmtx_std17StlNodeAlloc = .text:0x800A6A38; // type:function size:0x40 +fn_800A6A78 = .text:0x800A6A78; // type:function size:0x30 +fn_800A6AA8 = .text:0x800A6AA8; // type:function size:0x40 +fn_800A6AE8 = .text:0x800A6AE8; // type:function size:0x8 +__dt__13JsonConverterFv = .text:0x800A6AF0; // type:function size:0xCC +fn_800A6BBC = .text:0x800A6BBC; // type:function size:0x4 +fn_800A6BC0 = .text:0x800A6BC0; // type:function size:0x10 +GetUnk4__26UnknownJsonConverterMemberFv = .text:0x800A6BD0; // type:function size:0x8 +ToJsonArray__13JsonConverterFv = .text:0x800A6BD8; // type:function size:0x5C +ToJsonString__13JsonConverterFPCc = .text:0x800A6C34; // type:function size:0x64 +ToJsonInt__13JsonConverterFi = .text:0x800A6C98; // type:function size:0x64 +ToJsonDouble__13JsonConverterFd = .text:0x800A6CFC; // type:function size:0x6C +fn_800A6D68 = .text:0x800A6D68; // type:function size:0xB0 +length__6StringCFv = .text:0x800A6E18; // type:function size:0x8 +fn_800A6E20 = .text:0x800A6E20; // type:function size:0x88 +fn_800A6EA8 = .text:0x800A6EA8; // type:function size:0x4C +push_back__Q211stlpmtx_std86vector>FRCPFP9DataArray_8DataNode = .text:0x800A6EF4; // type:function size:0x28 +fn_800A6F1C = .text:0x800A6F1C; // type:function size:0x88 +fn_800A6FA4__26UnknownJsonConverterMemberFUs = .text:0x800A6FA4; // type:function size:0x10 +fn_800A6FB4 = .text:0x800A6FB4; // type:function size:0x14 +fn_800A6FC8 = .text:0x800A6FC8; // type:function size:0xD8 +fn_800A70A0 = .text:0x800A70A0; // type:function size:0x60 +fn_800A7100 = .text:0x800A7100; // type:function size:0x8 +fn_800A7108 = .text:0x800A7108; // type:function size:0x8 +fn_800A7110 = .text:0x800A7110; // type:function size:0x5C +fn_800A716C = .text:0x800A716C; // type:function size:0x44 +fn_800A71B0 = .text:0x800A71B0; // type:function size:0xC +SetMode__19MatchmakingSettingsF6Symboli = .text:0x800A71BC; // type:function size:0x40 +AddCustomSetting__19MatchmakingSettingsFii = .text:0x800A71FC; // type:function size:0x48 +fn_800A7244 = .text:0x800A7244; // type:function size:0x4 +fn_800A7248 = .text:0x800A7248; // type:function size:0x88 +fn_800A72D0 = .text:0x800A72D0; // type:function size:0x38 +fn_800A7308 = .text:0x800A7308; // type:function size:0x4 +fn_800A730C = .text:0x800A730C; // type:function size:0x3C +fn_800A7348 = .text:0x800A7348; // type:function size:0x40 +fn_800A7388 = .text:0x800A7388; // type:function size:0x80 +fn_800A7408 = .text:0x800A7408; // type:function size:0x8 +fn_800A7410 = .text:0x800A7410; // type:function size:0x8 +fn_800A7418 = .text:0x800A7418; // type:function size:0x54 +fn_800A746C = .text:0x800A746C; // type:function size:0x54 +fn_800A74C0 = .text:0x800A74C0; // type:function size:0x78 +Save__19MatchmakingSettingsCFR9BinStream = .text:0x800A7538; // type:function size:0xC4 +__ls__9BinStreamFc = .text:0x800A75FC; // type:function size:0x3C +__ls__9BinStreamFUi = .text:0x800A7638; // type:function size:0x3C +Load__19MatchmakingSettingsFR9BinStream = .text:0x800A7674; // type:function size:0xBC +__rs__9BinStreamFRUc = .text:0x800A7730; // type:function size:0x34 +__rs__9BinStreamFRb = .text:0x800A7764; // type:function size:0x50 +__rs__9BinStreamFRUi = .text:0x800A77B4; // type:function size:0x34 +fn_800A77E8 = .text:0x800A77E8; // type:function size:0x5C +__dt__19MatchmakingSettingsFv = .text:0x800A7844; // type:function size:0x68 +fn_800A78AC = .text:0x800A78AC; // type:function size:0x58 +fn_800A7904 = .text:0x800A7904; // type:function size:0x80 +fn_800A7984 = .text:0x800A7984; // type:function size:0x80 +fn_800A7A04 = .text:0x800A7A04; // type:function size:0x58 +fn_800A7A5C = .text:0x800A7A5C; // type:function size:0x54 +fn_800A7AB0 = .text:0x800A7AB0; // type:function size:0x3C +fn_800A7AEC = .text:0x800A7AEC; // type:function size:0x8 +fn_800A7AF4 = .text:0x800A7AF4; // type:function size:0x3C +__ct__19MatchmakingSettingsFv = .text:0x800A7B30; // type:function size:0x70 +fn_800A7BA0 = .text:0x800A7BA0; // type:function size:0x30 +fn_800A7BD0 = .text:0x800A7BD0; // type:function size:0x30 +fn_800A7C00 = .text:0x800A7C00; // type:function size:0x40 +__ct__6SymbolFv = .text:0x800A7C40; // type:function size:0x10 +fn_800A7C50 = .text:0x800A7C50; // type:function size:0x3C +fn_800A7C8C = .text:0x800A7C8C; // type:function size:0x6C +fn_800A7CF8 = .text:0x800A7CF8; // type:function size:0x80 +fn_800A7D78 = .text:0x800A7D78; // type:function size:0x68 +SetRanked__19MatchmakingSettingsFb = .text:0x800A7DE0; // type:function size:0x8 +Fail__9MemStreamFv = .text:0x800A7DE8; // type:function size:0x8 +fn_800A7DF0 = .text:0x800A7DF0; // type:function size:0x3C +fn_800A7E2C = .text:0x800A7E2C; // type:function size:0x44 +fn_800A7E70 = .text:0x800A7E70; // type:function size:0x44 +fn_800A7EB4 = .text:0x800A7EB4; // type:function size:0x5C +fn_800A7F10 = .text:0x800A7F10; // type:function size:0x4C +fn_800A7F5C = .text:0x800A7F5C; // type:function size:0x98 +fn_800A7FF4_MessageDtor = .text:0x800A7FF4; // type:function size:0x58 +fn_800A804C = .text:0x800A804C; // type:function size:0x4C +fn_800A8098 = .text:0x800A8098; // type:function size:0x4C +fn_800A80E4 = .text:0x800A80E4; // type:function size:0x5C +fn_800A8140 = .text:0x800A8140; // type:function size:0x58 +fn_800A8198 = .text:0x800A8198; // type:function size:0x68 +fn_800A8200 = .text:0x800A8200; // type:function size:0xD8 +fn_800A82D8 = .text:0x800A82D8; // type:function size:0x60 +fn_800A8338 = .text:0x800A8338; // type:function size:0x5C +fn_800A8394 = .text:0x800A8394; // type:function size:0x8 +fn_800A839C = .text:0x800A839C; // type:function size:0x8 +fn_800A83A4 = .text:0x800A83A4; // type:function size:0x8 +fn_800A83AC = .text:0x800A83AC; // type:function size:0x8 +fn_800A83B4 = .text:0x800A83B4; // type:function size:0x8 +fn_800A83BC = .text:0x800A83BC; // type:function size:0x8 +fn_800A83C4 = .text:0x800A83C4; // type:function size:0x4C +GetIntAtIndex__9DataArrayCFi = .text:0x800A8410; // type:function size:0x34 +fn_800A8444 = .text:0x800A8444; // type:function size:0xDC +fn_800A8520 = .text:0x800A8520; // type:function size:0x58 +fn_800A8578 = .text:0x800A8578; // type:function size:0x80 +fn_800A85F8 = .text:0x800A85F8; // type:function size:0x80 +fn_800A8678 = .text:0x800A8678; // type:function size:0x58 +fn_800A86D0 = .text:0x800A86D0; // type:function size:0x10 +fn_800A86E0 = .text:0x800A86E0; // type:function size:0x54 +fn_800A8734 = .text:0x800A8734; // type:function size:0x5C +fn_800A8790 = .text:0x800A8790; // type:function size:0x6C +fn_800A87FC = .text:0x800A87FC; // type:function size:0x28 +fn_800A8824 = .text:0x800A8824; // type:function size:0x10 +fn_800A8834 = .text:0x800A8834; // type:function size:0xC +fn_800A8840 = .text:0x800A8840; // type:function size:0x8 +fn_800A8848 = .text:0x800A8848; // type:function size:0x3C +fn_800A8884 = .text:0x800A8884; // type:function size:0x14 +fn_800A8898 = .text:0x800A8898; // type:function size:0x48 +fn_800A88E0 = .text:0x800A88E0; // type:function size:0x14 +fn_800A88F4 = .text:0x800A88F4; // type:function size:0x4 +fn_800A88F8 = .text:0x800A88F8; // type:function size:0x3C +fn_800A8934 = .text:0x800A8934; // type:function size:0x40 +fn_800A8974 = .text:0x800A8974; // type:function size:0x8C +fn_800A8A00 = .text:0x800A8A00; // type:function size:0x8 +fn_800A8A08 = .text:0x800A8A08; // type:function size:0x2C +fn_800A8A34 = .text:0x800A8A34; // type:function size:0x58 +fn_800A8A8C = .text:0x800A8A8C; // type:function size:0x28 +fn_800A8AB4 = .text:0x800A8AB4; // type:function size:0x68 +fn_800A8B1C = .text:0x800A8B1C; // type:function size:0x4 +fn_800A8B20 = .text:0x800A8B20; // type:function size:0x3C +fn_800A8B5C = .text:0x800A8B5C; // type:function size:0x40 +fn_800A8B9C = .text:0x800A8B9C; // type:function size:0x8C +fn_800A8C28 = .text:0x800A8C28; // type:function size:0x8 +fn_800A8C30 = .text:0x800A8C30; // type:function size:0x2C +fn_800A8C5C = .text:0x800A8C5C; // type:function size:0x58 +fn_800A8CB4 = .text:0x800A8CB4; // type:function size:0x8 +fn_800A8CBC = .text:0x800A8CBC; // type:function size:0x5C +fn_800A8D18 = .text:0x800A8D18; // type:function size:0x28 +fn_800A8D40 = .text:0x800A8D40; // type:function size:0x68 +fn_800A8DA8 = .text:0x800A8DA8; // type:function size:0x40 +fn_800A8DE8 = .text:0x800A8DE8; // type:function size:0x14 +fn_800A8DFC = .text:0x800A8DFC; // type:function size:0x30 +fn_800A8E2C = .text:0x800A8E2C; // type:function size:0x30 +fn_800A8E5C = .text:0x800A8E5C; // type:function size:0x40 +fn_800A8E9C = .text:0x800A8E9C; // type:function size:0x80 +fn_800A8F1C = .text:0x800A8F1C; // type:function size:0x38 +fn_800A8F54 = .text:0x800A8F54; // type:function size:0x110 +fn_800A9064 = .text:0x800A9064; // type:function size:0x4 +fn_800A9068 = .text:0x800A9068; // type:function size:0x88 +fn_800A90F0 = .text:0x800A90F0; // type:function size:0x2C +fn_800A911C = .text:0x800A911C; // type:function size:0x10 +fn_800A912C = .text:0x800A912C; // type:function size:0x40 +fn_800A916C = .text:0x800A916C; // type:function size:0x3C +fn_800A91A8 = .text:0x800A91A8; // type:function size:0x4 +fn_800A91AC = .text:0x800A91AC; // type:function size:0x88 +fn_800A9234 = .text:0x800A9234; // type:function size:0x2C +fn_800A9260 = .text:0x800A9260; // type:function size:0x1C +fn_800A927C = .text:0x800A927C; // type:function size:0x204 +fn_800A9480 = .text:0x800A9480; // type:function size:0x58 +fn_800A94D8 = .text:0x800A94D8; // type:function size:0x40 +fn_800A9518 = .text:0x800A9518; // type:function size:0x90 +fn_800A95A8 = .text:0x800A95A8; // type:function size:0x24 +fn_800A95CC = .text:0x800A95CC; // type:function size:0x8 +fn_800A95D4 = .text:0x800A95D4; // type:function size:0x24 +fn_800A95F8 = .text:0x800A95F8; // type:function size:0xC +fn_800A9604 = .text:0x800A9604; // type:function size:0x4C +fn_800A9650 = .text:0x800A9650; // type:function size:0x40 +fn_800A9690 = .text:0x800A9690; // type:function size:0x10 +fn_800A96A0 = .text:0x800A96A0; // type:function size:0x26C +fn_800A990C = .text:0x800A990C; // type:function size:0x58 +fn_800A9964 = .text:0x800A9964; // type:function size:0x80 +fn_800A99E4 = .text:0x800A99E4; // type:function size:0x80 +fn_800A9A64 = .text:0x800A9A64; // type:function size:0x58 +fn_800A9ABC = .text:0x800A9ABC; // type:function size:0x10 +fn_800A9ACC = .text:0x800A9ACC; // type:function size:0x54 +fn_800A9B20 = .text:0x800A9B20; // type:function size:0x5C +fn_800A9B7C = .text:0x800A9B7C; // type:function size:0x6C +fn_800A9BE8 = .text:0x800A9BE8; // type:function size:0x28 +fn_800A9C10 = .text:0x800A9C10; // type:function size:0x10 +fn_800A9C20 = .text:0x800A9C20; // type:function size:0xC +fn_800A9C2C = .text:0x800A9C2C; // type:function size:0x8 +fn_800A9C34 = .text:0x800A9C34; // type:function size:0x3C +Tell__9BufStreamFv = .text:0x800A9C70; // type:function size:0x8 +fn_800A9C78 = .text:0x800A9C78; // type:function size:0x8 +fn_800A9C80 = .text:0x800A9C80; // type:function size:0xC +fn_800A9C8C = .text:0x800A9C8C; // type:function size:0x4 +fn_800A9C90 = .text:0x800A9C90; // type:function size:0x8C +fn_800A9D1C = .text:0x800A9D1C; // type:function size:0x4 +fn_800A9D20 = .text:0x800A9D20; // type:function size:0x40 +fn_800A9D60 = .text:0x800A9D60; // type:function size:0x6C +fn_800A9DCC = .text:0x800A9DCC; // type:function size:0x10 +fn_800A9DDC = .text:0x800A9DDC; // type:function size:0x30 +fn_800A9E0C = .text:0x800A9E0C; // type:function size:0x38 +fn_800A9E44 = .text:0x800A9E44; // type:function size:0x10 +fn_800A9E54 = .text:0x800A9E54; // type:function size:0x34 +fn_800A9E88 = .text:0x800A9E88; // type:function size:0x54 +__dt__9MemStreamFv = .text:0x800A9EDC; // type:function size:0x68 +fn_800A9F44 = .text:0x800A9F44; // type:function size:0x58 +fn_800A9F9C = .text:0x800A9F9C; // type:function size:0x80 +fn_800AA01C = .text:0x800AA01C; // type:function size:0x80 +fn_800AA09C = .text:0x800AA09C; // type:function size:0x58 +fn_800AA0F4 = .text:0x800AA0F4; // type:function size:0x10 +fn_800AA104 = .text:0x800AA104; // type:function size:0x54 +fn_800AA158 = .text:0x800AA158; // type:function size:0x3C +fn_800AA194 = .text:0x800AA194; // type:function size:0x8 +fn_800AA19C = .text:0x800AA19C; // type:function size:0x3C +fn_800AA1D8 = .text:0x800AA1D8; // type:function size:0x30 +fn_800AA208 = .text:0x800AA208; // type:function size:0x30 +fn_800AA238 = .text:0x800AA238; // type:function size:0x40 +fn_800AA278 = .text:0x800AA278; // type:function size:0x3C +fn_800AA2B4 = .text:0x800AA2B4; // type:function size:0xC +fn_800AA2C0 = .text:0x800AA2C0; // type:function size:0x68 +fn_800AA328 = .text:0x800AA328; // type:function size:0x114 +fn_800AA43C = .text:0x800AA43C; // type:function size:0x60 +fn_800AA49C = .text:0x800AA49C; // type:function size:0x5C +fn_800AA4F8 = .text:0x800AA4F8; // type:function size:0x54 +fn_800AA54C = .text:0x800AA54C; // type:function size:0x5C +fn_800AA5A8 = .text:0x800AA5A8; // type:function size:0x5C +fn_800AA604 = .text:0x800AA604; // type:function size:0xC +fn_800AA610 = .text:0x800AA610; // type:function size:0x114 +fn_800AA724 = .text:0x800AA724; // type:function size:0x60 +fn_800AA784 = .text:0x800AA784; // type:function size:0x5C +fn_800AA7E0 = .text:0x800AA7E0; // type:function size:0x54 +fn_800AA834 = .text:0x800AA834; // type:function size:0x5C +fn_800AA890 = .text:0x800AA890; // type:function size:0x5C +fn_800AA8EC = .text:0x800AA8EC; // type:function size:0xC +fn_800AA8F8 = .text:0x800AA8F8; // type:function size:0x16C +fn_800AAA64 = .text:0x800AAA64; // type:function size:0x34 +fn_800AAA98 = .text:0x800AAA98; // type:function size:0x10 +fn_800AAAA8 = .text:0x800AAAA8; // type:function size:0x20 +fn_800AAAC8 = .text:0x800AAAC8; // type:function size:0x10 +fn_800AAAD8 = .text:0x800AAAD8; // type:function size:0x58 +fn_800AAB30 = .text:0x800AAB30; // type:function size:0x58 +fn_800AAB88 = .text:0x800AAB88; // type:function size:0x50 +fn_800AABD8 = .text:0x800AABD8; // type:function size:0x2C +fn_800AAC04 = .text:0x800AAC04; // type:function size:0xD4 +fn_800AACD8 = .text:0x800AACD8; // type:function size:0x50 +fn_800AAD28 = .text:0x800AAD28; // type:function size:0x8 +fn_800AAD30 = .text:0x800AAD30; // type:function size:0x5C +fn_800AAD8C = .text:0x800AAD8C; // type:function size:0xC +fn_800AAD98 = .text:0x800AAD98; // type:function size:0x84 +NewNetMessage__10SyncObjMsgFv = .text:0x800AAE1C; // type:function size:0x30 +__ct__10SyncObjMsgFv = .text:0x800AAE4C; // type:function size:0x50 +__ct__10NetMessageFv = .text:0x800AAE9C; // type:function size:0x10 +NewNetMessage__11SyncUserMsgFv = .text:0x800AAEAC; // type:function size:0x30 +__ct__11SyncUserMsgFv = .text:0x800AAEDC; // type:function size:0x44 +__ct__8UserGuidFv = .text:0x800AAF20; // type:function size:0x30 +NewNetMessage__10SyncAllMsgFv = .text:0x800AAF50; // type:function size:0x30 +__ct__10SyncAllMsgFv = .text:0x800AAF80; // type:function size:0x3C +fn_800AAFBC = .text:0x800AAFBC; // type:function size:0x18 +fn_800AAFD4 = .text:0x800AAFD4; // type:function size:0x80 +fn_800AB054 = .text:0x800AB054; // type:function size:0xC +fn_800AB060 = .text:0x800AB060; // type:function size:0x50 +fn_800AB0B0 = .text:0x800AB0B0; // type:function size:0x48 +fn_800AB0F8 = .text:0x800AB0F8; // type:function size:0x48 +fn_800AB140 = .text:0x800AB140; // type:function size:0x19C +fn_800AB2DC = .text:0x800AB2DC; // type:function size:0x8 +fn_800AB2E4 = .text:0x800AB2E4; // type:function size:0x28 +fn_800AB30C = .text:0x800AB30C; // type:function size:0x54 +fn_800AB360 = .text:0x800AB360; // type:function size:0x64 +fn_800AB3C4 = .text:0x800AB3C4; // type:function size:0x50 +fn_800AB414 = .text:0x800AB414; // type:function size:0xC +fn_800AB420 = .text:0x800AB420; // type:function size:0x8 +fn_800AB428 = .text:0x800AB428; // type:function size:0xC +fn_800AB434 = .text:0x800AB434; // type:function size:0x1C +fn_800AB450 = .text:0x800AB450; // type:function size:0x8 +fn_800AB458 = .text:0x800AB458; // type:function size:0xC +fn_800AB464 = .text:0x800AB464; // type:function size:0x12C +fn_800AB590 = .text:0x800AB590; // type:function size:0x58 +fn_800AB5E8ObjDtor = .text:0x800AB5E8; // type:function size:0x58 +fn_800AB640 = .text:0x800AB640; // type:function size:0x98 +fn_800AB6D8 = .text:0x800AB6D8; // type:function size:0x8 +fn_800AB6E0 = .text:0x800AB6E0; // type:function size:0xC +fn_800AB6EC = .text:0x800AB6EC; // type:function size:0x40 +fn_800AB72C = .text:0x800AB72C; // type:function size:0x8 +fn_800AB734 = .text:0x800AB734; // type:function size:0x8 +fn_800AB73C = .text:0x800AB73C; // type:function size:0x4 +Handle__3NetFP9DataArrayb = .text:0x800AB740; // type:function size:0x168 +__ct__8DataNodeF8DataTypePv = .text:0x800AB8A8; // type:function size:0xC +PreLoad__Q23Hmx6ObjectFR9BinStream = .text:0x800AB8B4; // type:function size:0x10 +fn_800AB8C4 = .text:0x800AB8C4; // type:function size:0x50 +__ct__Q215DiscErrorMgrWii30WiiDiscErrorSessionTerminatiorFv = .text:0x800AB914; // type:function size:0x3C +__ct__Q215DiscErrorMgrWii8CallbackFv = .text:0x800AB950; // type:function size:0x10 +fn_800AB960 = .text:0x800AB960; // type:function size:0x50 +RegisterNetMessage__17NetMessageFactoryF6StringPFv_P10NetMessage = .text:0x800AB9B0; // type:function size:0x70 +fn_800ABA20 = .text:0x800ABA20; // type:function size:0x58 +fn_800ABA78 = .text:0x800ABA78; // type:function size:0x4 +fn_800ABA7C = .text:0x800ABA7C; // type:function size:0x88 +fn_800ABB04 = .text:0x800ABB04; // type:function size:0x2C +fn_800ABB30 = .text:0x800ABB30; // type:function size:0x10 +fn_800ABB40 = .text:0x800ABB40; // type:function size:0x44 +fn_800ABB84 = .text:0x800ABB84; // type:function size:0x14 +fn_800ABB98 = .text:0x800ABB98; // type:function size:0x30 +GetNetMessageByteCode__17NetMessageFactoryCF6String = .text:0x800ABBC8; // type:function size:0xA0 +fn_800ABC68 = .text:0x800ABC68; // type:function size:0x10 +fn_800ABC78 = .text:0x800ABC78; // type:function size:0x50 +fn_800ABCC8 = .text:0x800ABCC8; // type:function size:0x114 +fn_800ABDDC = .text:0x800ABDDC; // type:function size:0x60 +fn_800ABE3C = .text:0x800ABE3C; // type:function size:0x5C +fn_800ABE98 = .text:0x800ABE98; // type:function size:0x10 +fn_800ABEA8 = .text:0x800ABEA8; // type:function size:0x54 +fn_800ABEFC = .text:0x800ABEFC; // type:function size:0x5C +fn_800ABF58 = .text:0x800ABF58; // type:function size:0x6C +fn_800ABFC4 = .text:0x800ABFC4; // type:function size:0x28 +fn_800ABFEC = .text:0x800ABFEC; // type:function size:0x10 +fn_800ABFFC = .text:0x800ABFFC; // type:function size:0x8 +fn_800AC004 = .text:0x800AC004; // type:function size:0xC +fn_800AC010 = .text:0x800AC010; // type:function size:0x8 +fn_800AC018 = .text:0x800AC018; // type:function size:0x3C +fn_800AC054 = .text:0x800AC054; // type:function size:0x5C +fn_800AC0B0 = .text:0x800AC0B0; // type:function size:0x5C +fn_800AC10C = .text:0x800AC10C; // type:function size:0xC +fn_800AC118 = .text:0x800AC118; // type:function size:0x48 +fn_800AC160 = .text:0x800AC160; // type:function size:0x58 +fn_800AC1B8 = .text:0x800AC1B8; // type:function size:0x58 +fn_800AC210 = .text:0x800AC210; // type:function size:0x80 +fn_800AC290 = .text:0x800AC290; // type:function size:0x80 +fn_800AC310 = .text:0x800AC310; // type:function size:0x58 +fn_800AC368 = .text:0x800AC368; // type:function size:0x54 +fn_800AC3BC = .text:0x800AC3BC; // type:function size:0x40 +fn_800AC3FC = .text:0x800AC3FC; // type:function size:0x30 +fn_800AC42C = .text:0x800AC42C; // type:function size:0x30 +fn_800AC45C = .text:0x800AC45C; // type:function size:0x40 +fn_800AC49C = .text:0x800AC49C; // type:function size:0xC +fn_800AC4A8 = .text:0x800AC4A8; // type:function size:0x30 +fn_800AC4D8 = .text:0x800AC4D8; // type:function size:0x2C +fn_800AC504 = .text:0x800AC504; // type:function size:0x40 +fn_800AC544 = .text:0x800AC544; // type:function size:0x1D4 +fn_800AC718 = .text:0x800AC718; // type:function size:0x94 +fn_800AC7AC = .text:0x800AC7AC; // type:function size:0x4 +fn_800AC7B0 = .text:0x800AC7B0; // type:function size:0x4 +fn_800AC7B4 = .text:0x800AC7B4; // type:function size:0x8 +fn_800AC7BC = .text:0x800AC7BC; // type:function size:0x48 +New__15NetSearchResultFv = .text:0x800AC804; // type:function size:0x30 +__ct__15NetSearchResultFv = .text:0x800AC834; // type:function size:0xC0 +fn_800AC8F4 = .text:0x800AC8F4; // type:function size:0x8 +__dt__15NetSearchResultFv = .text:0x800AC8FC; // type:function size:0xB8 +Save__15NetSearchResultCFR9BinStream = .text:0x800AC9B4; // type:function size:0x70 +Load__15NetSearchResultFR9BinStream = .text:0x800ACA24; // type:function size:0x74 +Equals__15NetSearchResultCFPC15NetSearchResult = .text:0x800ACA98; // type:function size:0x84 +Handle__15NetSearchResultFP9DataArrayb = .text:0x800ACB1C; // type:function size:0xA8 +NewNetMessage__14JoinRequestMsgFv = .text:0x800ACBC4; // type:function size:0x30 +__ct__14JoinRequestMsgFv = .text:0x800ACBF4; // type:function size:0x78 +fn_800ACC6C = .text:0x800ACC6C; // type:function size:0x58 +fn_800ACCC4 = .text:0x800ACCC4; // type:function size:0x80 +fn_800ACD44 = .text:0x800ACD44; // type:function size:0x80 +fn_800ACDC4 = .text:0x800ACDC4; // type:function size:0x58 +fn_800ACE1C = .text:0x800ACE1C; // type:function size:0x54 +fn_800ACE70 = .text:0x800ACE70; // type:function size:0x5C +fn_800ACECC = .text:0x800ACECC; // type:function size:0x6C +fn_800ACF38 = .text:0x800ACF38; // type:function size:0x28 +fn_800ACF60 = .text:0x800ACF60; // type:function size:0x8 +fn_800ACF68 = .text:0x800ACF68; // type:function size:0x3C +fn_800ACFA4 = .text:0x800ACFA4; // type:function size:0x58 +fn_800ACFFC = .text:0x800ACFFC; // type:function size:0x80 +fn_800AD07C = .text:0x800AD07C; // type:function size:0x80 +fn_800AD0FC = .text:0x800AD0FC; // type:function size:0x58 +fn_800AD154 = .text:0x800AD154; // type:function size:0x54 +fn_800AD1A8 = .text:0x800AD1A8; // type:function size:0x5C +fn_800AD204 = .text:0x800AD204; // type:function size:0x6C +fn_800AD270 = .text:0x800AD270; // type:function size:0x28 +fn_800AD298 = .text:0x800AD298; // type:function size:0x8 +fn_800AD2A0 = .text:0x800AD2A0; // type:function size:0x3C +__dt__11SyncUserMsgFv = .text:0x800AD2DC; // type:function size:0x58 +fn_800AD334 = .text:0x800AD334; // type:function size:0x30 +fn_800AD364 = .text:0x800AD364; // type:function size:0x30 +fn_800AD394 = .text:0x800AD394; // type:function size:0x40 +fn_800AD3D4 = .text:0x800AD3D4; // type:function size:0x30 +fn_800AD404 = .text:0x800AD404; // type:function size:0x30 +fn_800AD434 = .text:0x800AD434; // type:function size:0x40 +__ct__10SessionMsgFv = .text:0x800AD474; // type:function size:0x3C +NewNetMessage__15JoinResponseMsgFv = .text:0x800AD4B0; // type:function size:0x38 +NewNetMessage__10NewUserMsgFv = .text:0x800AD4E8; // type:function size:0x30 +__ct__10NewUserMsgFv = .text:0x800AD518; // type:function size:0x50 +NewNetMessage__11UserLeftMsgFv = .text:0x800AD568; // type:function size:0x30 +__ct__11UserLeftMsgFv = .text:0x800AD598; // type:function size:0x44 +NewNetMessage__17AddUserRequestMsgFv = .text:0x800AD5DC; // type:function size:0x30 +__ct__17AddUserRequestMsgFv = .text:0x800AD60C; // type:function size:0x5C +NewNetMessage__18AddUserResponseMsgFv = .text:0x800AD668; // type:function size:0x30 +__ct__18AddUserResponseMsgFv = .text:0x800AD698; // type:function size:0x44 +NewNetMessage__17UpdateUserDataMsgFv = .text:0x800AD6DC; // type:function size:0x30 +__ct__17UpdateUserDataMsgFv = .text:0x800AD70C; // type:function size:0x50 +NewNetMessage__19BeginArbitrationMsgFv = .text:0x800AD75C; // type:function size:0x30 +__ct__19BeginArbitrationMsgFv = .text:0x800AD78C; // type:function size:0x3C +NewNetMessage__22FinishedArbitrationMsgFv = .text:0x800AD7C8; // type:function size:0x30 +__ct__22FinishedArbitrationMsgFv = .text:0x800AD7F8; // type:function size:0x3C +NewNetMessage__18StartGameOnTimeMsgFv = .text:0x800AD834; // type:function size:0x30 +__ct__18StartGameOnTimeMsgFv = .text:0x800AD864; // type:function size:0x3C +NewNetMessage__10EndGameMsgFv = .text:0x800AD8A0; // type:function size:0x30 +__ct__10EndGameMsgFv = .text:0x800AD8D0; // type:function size:0x3C +NewNetMessage__12VoiceDataMsgFv = .text:0x800AD90C; // type:function size:0x30 +__ct__12VoiceDataMsgFv = .text:0x800AD93C; // type:function size:0x50 +NewNetMessage__12DataArrayMsgFv = .text:0x800AD98C; // type:function size:0x30 +__ct__12DataArrayMsgFv = .text:0x800AD9BC; // type:function size:0x48 +RegisterSessionMessages__24@unnamed@NetSession_cpp@Fv = .text:0x800ADA04; // type:function size:0x50 +Register__12DataArrayMsgFv = .text:0x800ADA54; // type:function size:0x50 +Register__12VoiceDataMsgFv = .text:0x800ADAA4; // type:function size:0x50 +Register__10EndGameMsgFv = .text:0x800ADAF4; // type:function size:0x50 +Register__18StartGameOnTimeMsgFv = .text:0x800ADB44; // type:function size:0x50 +Register__22FinishedArbitrationMsgFv = .text:0x800ADB94; // type:function size:0x50 +Register__19BeginArbitrationMsgFv = .text:0x800ADBE4; // type:function size:0x50 +Register__17UpdateUserDataMsgFv = .text:0x800ADC34; // type:function size:0x50 +Register__11UserLeftMsgFv = .text:0x800ADC84; // type:function size:0x50 +Register__18AddUserResponseMsgFv = .text:0x800ADCD4; // type:function size:0x50 +Register__17AddUserRequestMsgFv = .text:0x800ADD24; // type:function size:0x50 +Register__10NewUserMsgFv = .text:0x800ADD74; // type:function size:0x50 +Register__15JoinResponseMsgFv = .text:0x800ADDC4; // type:function size:0x50 +Register__14JoinRequestMsgFv = .text:0x800ADE14; // type:function size:0x50 +DisconnectOnFail__24@unnamed@NetSession_cpp@Fv = .text:0x800ADE64; // type:function size:0x4 +__ct__10NetSessionFv = .text:0x800ADE68; // type:function size:0x1F4 +fn_800AE05C = .text:0x800AE05C; // type:function size:0x8 +fn_800AE064 = .text:0x800AE064; // type:function size:0x14 +fn_800AE078 = .text:0x800AE078; // type:function size:0x38 +fn_800AE0B0 = .text:0x800AE0B0; // type:function size:0xC +FindInt__9DataArrayCF6Symbol = .text:0x800AE0BC; // type:function size:0x38 +fn_800AE0F4 = .text:0x800AE0F4; // type:function size:0x184 +fn_800AE278 = .text:0x800AE278; // type:function size:0x4 +fn_800AE27C = .text:0x800AE27C; // type:function size:0x3C +fn_800AE2B8 = .text:0x800AE2B8; // type:function size:0x40 +fn_800AE2F8 = .text:0x800AE2F8; // type:function size:0x80 +fn_800AE378 = .text:0x800AE378; // type:function size:0x8 +fn_800AE380 = .text:0x800AE380; // type:function size:0x94 +fn_800AE414 = .text:0x800AE414; // type:function size:0x7C +__dt__18AddUserResponseMsgFv = .text:0x800AE490; // type:function size:0x58 +fn_800AE4E8 = .text:0x800AE4E8; // type:function size:0x1F0 +__ct__13JoinResultMsgFP9DataArray = .text:0x800AE6D8; // type:function size:0x3C +__ct__7MessageFP9DataArray = .text:0x800AE714; // type:function size:0x44 +IncRefCount__9DataArrayFv = .text:0x800AE758; // type:function size:0x10 +__ct__15SessionReadyMsgFb = .text:0x800AE768; // type:function size:0x64 +Type__15SessionReadyMsgFv = .text:0x800AE7CC; // type:function size:0x4C +fn_800AE818 = .text:0x800AE818; // type:function size:0x184 +fn_800AE99C = .text:0x800AE99C; // type:function size:0x134 +__dt__14JoinRequestMsgFv = .text:0x800AEAD0; // type:function size:0x80 +fn_800AEB50 = .text:0x800AEB50; // type:function size:0xB8 +fn_800AEC08 = .text:0x800AEC08; // type:function size:0x3A0 +__ct__22SessionDisconnectedMsgFv = .text:0x800AEFA8; // type:function size:0x4C +Type__22SessionDisconnectedMsgFv = .text:0x800AEFF4; // type:function size:0x4C +__ct__16AddUserResultMsgFb = .text:0x800AF040; // type:function size:0x64 +Type__16AddUserResultMsgFv = .text:0x800AF0A4; // type:function size:0x4C +fn_800AF0F0 = .text:0x800AF0F0; // type:function size:0x19C +fn_800AF28C = .text:0x800AF28C; // type:function size:0x28 +fn_800AF2B4 = .text:0x800AF2B4; // type:function size:0xC4 +fn_800AF378 = .text:0x800AF378; // type:function size:0x4 +fn_800AF37C = .text:0x800AF37C; // type:function size:0x8 +fn_800AF384 = .text:0x800AF384; // type:function size:0x21C +__ct__13JoinResultMsgFii = .text:0x800AF5A0; // type:function size:0x8C +Type__13JoinResultMsgFv = .text:0x800AF62C; // type:function size:0x4C +fn_800AF678 = .text:0x800AF678; // type:function size:0x8 +fn_800AF680 = .text:0x800AF680; // type:function size:0xA4 +fn_800AF724 = .text:0x800AF724; // type:function size:0x8 +__ct__23ProcessedJoinRequestMsgFb = .text:0x800AF72C; // type:function size:0x64 +Type__23ProcessedJoinRequestMsgFv = .text:0x800AF790; // type:function size:0x4C +fn_800AF7DC = .text:0x800AF7DC; // type:function size:0x164 +fn_800AF940 = .text:0x800AF940; // type:function size:0x94 +OnMsg__10NetSessionFRC14JoinRequestMsg = .text:0x800AF9D4; // type:function size:0x48C +fn_800AFE60__26UnknownJsonConverterMemberFv = .text:0x800AFE60; // type:function size:0x10 +fn_800AFE70 = .text:0x800AFE70; // type:function size:0x4 +__dt__10NewUserMsgFv = .text:0x800AFE74; // type:function size:0x68 +__ct__16NewRemoteUserMsgFP10RemoteUser = .text:0x800AFEDC; // type:function size:0x70 +Type__16NewRemoteUserMsgFv = .text:0x800AFF4C; // type:function size:0x4C +__ct__8DataNodeFPQ23Hmx6Object = .text:0x800AFF98; // type:function size:0x10 +fn_800AFFA8 = .text:0x800AFFA8; // type:function size:0x8 +fn_800AFFB0 = .text:0x800AFFB0; // type:function size:0x30 +fn_800AFFE0 = .text:0x800AFFE0; // type:function size:0x98 +fn_800B0078 = .text:0x800B0078; // type:function size:0x5C +fn_800B00D4 = .text:0x800B00D4; // type:function size:0x10 +fn_800B00E4 = .text:0x800B00E4; // type:function size:0x30 +fn_800B0114 = .text:0x800B0114; // type:function size:0x70 +fn_800B0184 = .text:0x800B0184; // type:function size:0x4 +fn_800B0188 = .text:0x800B0188; // type:function size:0x88 +fn_800B0210 = .text:0x800B0210; // type:function size:0x2C +fn_800B023C = .text:0x800B023C; // type:function size:0x8 +OnMsg__10NetSessionFRC15JoinResponseMsg = .text:0x800B0244; // type:function size:0x394 +fn_800B05D8 = .text:0x800B05D8; // type:function size:0x184 +__dt__17AddUserRequestMsgFv = .text:0x800B075C; // type:function size:0x74 +OnMsg__10NetSessionFRC17AddUserRequestMsg = .text:0x800B07D0; // type:function size:0x270 +OnMsg__10NetSessionFRC18AddUserResponseMsg = .text:0x800B0A40; // type:function size:0x134 +fn_800B0B74 = .text:0x800B0B74; // type:function size:0x8 +OnMsg__10NetSessionFRC10NewUserMsg = .text:0x800B0B7C; // type:function size:0x120 +fn_800B0C9C = .text:0x800B0C9C; // type:function size:0x164 +fn_800B0E00 = .text:0x800B0E00; // type:function size:0x70 +Type__16LocalUserLeftMsgFv = .text:0x800B0E70; // type:function size:0x4C +OnMsg__10NetSessionFRC11UserLeftMsg = .text:0x800B0EBC; // type:function size:0x24 +ProcessUserLeftMsg__10NetSessionFRC11UserLeftMsg = .text:0x800B0EE0; // type:function size:0x158 +fn_800B1038 = .text:0x800B1038; // type:function size:0x70 +Type__17RemoteUserLeftMsgFv = .text:0x800B10A8; // type:function size:0x4C +fn_800B10F4 = .text:0x800B10F4; // type:function size:0x70 +Type__21RemovingRemoteUserMsgFv = .text:0x800B1164; // type:function size:0x4C +fn_800B11B0 = .text:0x800B11B0; // type:function size:0x50 +fn_800B1200 = .text:0x800B1200; // type:function size:0x110 +fn_800B1310 = .text:0x800B1310; // type:function size:0x24 +fn_800B1334 = .text:0x800B1334; // type:function size:0xD4 +OnMsg__10NetSessionFRC19BeginArbitrationMsg = .text:0x800B1408; // type:function size:0x64 +OnMsg__10NetSessionFRC22FinishedArbitrationMsg = .text:0x800B146C; // type:function size:0x40 +SetDoneArbitrating__10NetSessionFi = .text:0x800B14AC; // type:function size:0xB0 +fn_800B155C = .text:0x800B155C; // type:function size:0x24 +fn_800B1580 = .text:0x800B1580; // type:function size:0xD4 +fn_800B1654 = .text:0x800B1654; // type:function size:0x2C +fn_800B1680 = .text:0x800B1680; // type:function size:0x78 +fn_800B16F8 = .text:0x800B16F8; // type:function size:0x110 +OnMsg__10NetSessionFRC18StartGameOnTimeMsg = .text:0x800B1808; // type:function size:0x84 +fn_800B188C = .text:0x800B188C; // type:function size:0x10 +fn_800B189C = .text:0x800B189C; // type:function size:0xD8 +OnMsg__10NetSessionFRC10EndGameMsg = .text:0x800B1974; // type:function size:0xC8 +fn_800B1A3C = .text:0x800B1A3C; // type:function size:0x8 +fn_800B1A44 = .text:0x800B1A44; // type:function size:0x8 +fn_800B1A4C = .text:0x800B1A4C; // type:function size:0x8 +fn_800B1A54 = .text:0x800B1A54; // type:function size:0x6C +fn_800B1AC0 = .text:0x800B1AC0; // type:function size:0x24 +fn_800B1AE4 = .text:0x800B1AE4; // type:function size:0x4 +fn_800B1AE8 = .text:0x800B1AE8; // type:function size:0xA4 +fn_800B1B8C = .text:0x800B1B8C; // type:function size:0xA4 +fn_800B1C30 = .text:0x800B1C30; // type:function size:0x6C +fn_800B1C9C = .text:0x800B1C9C; // type:function size:0x5C +fn_800B1CF8 = .text:0x800B1CF8; // type:function size:0x8 +fn_800B1D00 = .text:0x800B1D00; // type:function size:0xD4 +fn_800B1DD4 = .text:0x800B1DD4; // type:function size:0xD8 +fn_800B1EAC = .text:0x800B1EAC; // type:function size:0x68 +OnMsg__10NetSessionFRC17UpdateUserDataMsg = .text:0x800B1F14; // type:function size:0x134 +fn_800B2048 = .text:0x800B2048; // type:function size:0x70 +Type__20RemoteUserUpdatedMsgFv = .text:0x800B20B8; // type:function size:0x4C +fn_800B2104 = .text:0x800B2104; // type:function size:0x94 +fn_800B2198 = .text:0x800B2198; // type:function size:0x114 +fn_800B22AC = .text:0x800B22AC; // type:function size:0x24 +fn_800B22D0 = .text:0x800B22D0; // type:function size:0x58 +fn_800B2328 = .text:0x800B2328; // type:function size:0x80 +fn_800B23A8 = .text:0x800B23A8; // type:function size:0x80 +fn_800B2428 = .text:0x800B2428; // type:function size:0x58 +fn_800B2480 = .text:0x800B2480; // type:function size:0x54 +fn_800B24D4 = .text:0x800B24D4; // type:function size:0x3C +fn_800B2510 = .text:0x800B2510; // type:function size:0x8 +fn_800B2518 = .text:0x800B2518; // type:function size:0x3C +fn_800B2554 = .text:0x800B2554; // type:function size:0x4 +fn_800B2558 = .text:0x800B2558; // type:function size:0x88 +fn_800B25E0 = .text:0x800B25E0; // type:function size:0x30 +fn_800B2610 = .text:0x800B2610; // type:function size:0x30 +fn_800B2640 = .text:0x800B2640; // type:function size:0x40 +fn_800B2680 = .text:0x800B2680; // type:function size:0x68 +fn_800B26E8 = .text:0x800B26E8; // type:function size:0xA0 +__dt__12DataArrayMsgFv = .text:0x800B2788; // type:function size:0x68 +GetArrayAtIndex__9DataArrayCFi = .text:0x800B27F0; // type:function size:0x34 +GetUserAtIndex__FP9DataArrayi = .text:0x800B2824; // type:function size:0x34 +GetUser__FP8DataNodeP9DataArray = .text:0x800B2858; // type:function size:0x3C +fn_800B2894 = .text:0x800B2894; // type:function size:0x8C +fn_800B2920 = .text:0x800B2920; // type:function size:0x11C +fn_800B2A3C = .text:0x800B2A3C; // type:function size:0x78 +fn_800B2AB4 = .text:0x800B2AB4; // type:function size:0x14 +fn_800B2AC8 = .text:0x800B2AC8; // type:function size:0x60 +fn_800B2B28 = .text:0x800B2B28; // type:function size:0x24 +fn_800B2B4C = .text:0x800B2B4C; // type:function size:0x134 +fn_800B2C80 = .text:0x800B2C80; // type:function size:0x4 +fn_800B2C84 = .text:0x800B2C84; // type:function size:0x2C +fn_800B2CB0 = .text:0x800B2CB0; // type:function size:0x78 +fn_800B2D28 = .text:0x800B2D28; // type:function size:0x60 +fn_800B2D88 = .text:0x800B2D88; // type:function size:0x24 +fn_800B2DAC = .text:0x800B2DAC; // type:function size:0xD4 +__ct__16SyncStartGameMsgFv = .text:0x800B2E80; // type:function size:0x4C +Type__16SyncStartGameMsgFv = .text:0x800B2ECC; // type:function size:0x4C +EndGame__10NetSessionFib = .text:0x800B2F18; // type:function size:0xC8 +__ct__12GameEndedMsgFfi = .text:0x800B2FE0; // type:function size:0x8C +Type__12GameEndedMsgFv = .text:0x800B306C; // type:function size:0x4C +__ct__8DataNodeFf = .text:0x800B30B8; // type:function size:0x10 +RemoveClient__10NetSessionFUi = .text:0x800B30C8; // type:function size:0xD0 +fn_800B3198 = .text:0x800B3198; // type:function size:0x7C +fn_800B3214 = .text:0x800B3214; // type:function size:0x40 +fn_800B3254 = .text:0x800B3254; // type:function size:0x1C +fn_800B3270 = .text:0x800B3270; // type:function size:0x20 +fn_800B3290 = .text:0x800B3290; // type:function size:0x14 +fn_800B32A4 = .text:0x800B32A4; // type:function size:0xBC +__ct__14SessionBusyMsgFv = .text:0x800B3360; // type:function size:0x4C +Type__14SessionBusyMsgFv = .text:0x800B33AC; // type:function size:0x4C +HandleSessionMsg__10NetSessionFP10SessionMsg = .text:0x800B33F8; // type:function size:0x354 +StaticByteCode__12VoiceDataMsgFv = .text:0x800B374C; // type:function size:0x58 +StaticByteCode__10EndGameMsgFv = .text:0x800B37A4; // type:function size:0x58 +StaticByteCode__18StartGameOnTimeMsgFv = .text:0x800B37FC; // type:function size:0x58 +StaticByteCode__22FinishedArbitrationMsgFv = .text:0x800B3854; // type:function size:0x58 +StaticByteCode__19BeginArbitrationMsgFv = .text:0x800B38AC; // type:function size:0x58 +StaticByteCode__17UpdateUserDataMsgFv = .text:0x800B3904; // type:function size:0x58 +StaticByteCode__11UserLeftMsgFv = .text:0x800B395C; // type:function size:0x58 +StaticByteCode__18AddUserResponseMsgFv = .text:0x800B39B4; // type:function size:0x58 +StaticByteCode__17AddUserRequestMsgFv = .text:0x800B3A0C; // type:function size:0x58 +StaticByteCode__10NewUserMsgFv = .text:0x800B3A64; // type:function size:0x58 +StaticByteCode__15JoinResponseMsgFv = .text:0x800B3ABC; // type:function size:0x58 +StaticByteCode__14JoinRequestMsgFv = .text:0x800B3B14; // type:function size:0x58 +Handle__10NetSessionFP9DataArrayb = .text:0x800B3B6C; // type:function size:0x41C +fn_800B3F88 = .text:0x800B3F88; // type:function size:0x34 +fn_800B3FBC = .text:0x800B3FBC; // type:function size:0x3C +fn_800B3FF8 = .text:0x800B3FF8; // type:function size:0x114 +fn_800B410C = .text:0x800B410C; // type:function size:0x60 +fn_800B416C = .text:0x800B416C; // type:function size:0x5C +fn_800B41C8 = .text:0x800B41C8; // type:function size:0x54 +fn_800B421C = .text:0x800B421C; // type:function size:0x5C +fn_800B4278 = .text:0x800B4278; // type:function size:0xD8 +fn_800B4350 = .text:0x800B4350; // type:function size:0x60 +fn_800B43B0 = .text:0x800B43B0; // type:function size:0x5C +fn_800B440C = .text:0x800B440C; // type:function size:0x4 +fn_800B4410 = .text:0x800B4410; // type:function size:0xC +MakeString__FPCc = .text:0x800B441C; // type:function size:0x30 +SetType__9MsgSourceF6Symbol = .text:0x800B444C; // type:function size:0x134 +StaticClassName__9MsgSourceFv = .text:0x800B4580; // type:function size:0x4C +ClassName__9MsgSourceCFv = .text:0x800B45CC; // type:function size:0x4 +fn_800B45D0 = .text:0x800B45D0; // type:function size:0x60 +fn_800B4630 = .text:0x800B4630; // type:function size:0x14 +fn_800B4644 = .text:0x800B4644; // type:function size:0x14 +fn_800B4658 = .text:0x800B4658; // type:function size:0x14 +fn_800B466C = .text:0x800B466C; // type:function size:0x14 +fn_800B4680 = .text:0x800B4680; // type:function size:0x14 +fn_800B4694 = .text:0x800B4694; // type:function size:0x14 +fn_800B46A8 = .text:0x800B46A8; // type:function size:0x14 +fn_800B46BC = .text:0x800B46BC; // type:function size:0x90 +fn_800B474C = .text:0x800B474C; // type:function size:0x34 +fn_800B4780 = .text:0x800B4780; // type:function size:0xD8 +fn_800B4858 = .text:0x800B4858; // type:function size:0xE0 +fn_800B4938 = .text:0x800B4938; // type:function size:0xC8 +fn_800B4A00 = .text:0x800B4A00; // type:function size:0x12C +fn_800B4B2C = .text:0x800B4B2C; // type:function size:0x30 +fn_800B4B5C = .text:0x800B4B5C; // type:function size:0x278 +fn_800B4DD4 = .text:0x800B4DD4; // type:function size:0x8 +fn_800B4DDC = .text:0x800B4DDC; // type:function size:0x8 +fn_800B4DE4 = .text:0x800B4DE4; // type:function size:0x8 +fn_800B4DEC = .text:0x800B4DEC; // type:function size:0x3C +fn_800B4E28 = .text:0x800B4E28; // type:function size:0x68 +fn_800B4E90 = .text:0x800B4E90; // type:function size:0x48 +fn_800B4ED8 = .text:0x800B4ED8; // type:function size:0x60 +fn_800B4F38 = .text:0x800B4F38; // type:function size:0x9C +fn_800B4FD4 = .text:0x800B4FD4; // type:function size:0x238 +fn_800B520C = .text:0x800B520C; // type:function size:0x10 +fn_800B521C = .text:0x800B521C; // type:function size:0x84 +fn_800B52A0 = .text:0x800B52A0; // type:function size:0x84 +fn_800B5324 = .text:0x800B5324; // type:function size:0x54 +fn_800B5378 = .text:0x800B5378; // type:function size:0x9C +fn_800B5414 = .text:0x800B5414; // type:function size:0x8 +Handle__9RVSessionFP9DataArrayb = .text:0x800B541C; // type:function size:0x1B4 +__ct__16SigninChangedMsgFP9DataArray = .text:0x800B55D0; // type:function size:0x3C +Type__16SigninChangedMsgFv = .text:0x800B560C; // type:function size:0x4C +New__11SessionDataFv = .text:0x800B5658; // type:function size:0x30 +__ct__13RVSessionDataFv = .text:0x800B5688; // type:function size:0x48 +__ct__11SessionDataFv = .text:0x800B56D0; // type:function size:0x10 +CopyInto__13RVSessionDataFP11SessionData = .text:0x800B56E0; // type:function size:0x58 +Save__13RVSessionDataCFR9BinStream = .text:0x800B5738; // type:function size:0x4C +Load__13RVSessionDataFR9BinStream = .text:0x800B5784; // type:function size:0x4C +Equals__13RVSessionDataCFPC11SessionData = .text:0x800B57D0; // type:function size:0x74 +fn_800B5844 = .text:0x800B5844; // type:function size:0x58 +fn_800B589C = .text:0x800B589C; // type:function size:0x58 +fn_800B58F4 = .text:0x800B58F4; // type:function size:0x14 +fn_800B5908 = .text:0x800B5908; // type:function size:0x14 +fn_800B591C = .text:0x800B591C; // type:function size:0x14 +fn_800B5930 = .text:0x800B5930; // type:function size:0x14 +fn_800B5944 = .text:0x800B5944; // type:function size:0x14 +fn_800B5958 = .text:0x800B5958; // type:function size:0x14 +fn_800B596C = .text:0x800B596C; // type:function size:0x14 +__ct__15NetworkEmulatorFv = .text:0x800B5980; // type:function size:0x1C8 +Enable__15NetworkEmulatorFv = .text:0x800B5B48; // type:function size:0x11C +Disable__15NetworkEmulatorFv = .text:0x800B5C64; // type:function size:0x9C +SetBandwidth__15NetworkEmulatorFii = .text:0x800B5D00; // type:function size:0x50 +SetJitter__15NetworkEmulatorFii = .text:0x800B5D50; // type:function size:0x50 +SetLatency__15NetworkEmulatorFii = .text:0x800B5DA0; // type:function size:0x50 +SetPacketDropProbability__15NetworkEmulatorFii = .text:0x800B5DF0; // type:function size:0xA4 +Handle__15NetworkEmulatorFP9DataArrayb = .text:0x800B5E94; // type:function size:0x228 +__ct__6ServerFv = .text:0x800B60BC; // type:function size:0x90 +Init__6ServerFv = .text:0x800B614C; // type:function size:0xFC +fn_800B6248 = .text:0x800B6248; // type:function size:0x38 +Handle__6ServerFP9DataArrayb = .text:0x800B6280; // type:function size:0x184 +fn_800B6404 = .text:0x800B6404; // type:function size:0x14 +fn_800B6418 = .text:0x800B6418; // type:function size:0x68 +fn_800B6480 = .text:0x800B6480; // type:function size:0x98 +fn_800B6518 = .text:0x800B6518; // type:function size:0x14 +fn_800B652C = .text:0x800B652C; // type:function size:0x14 +fn_800B6540 = .text:0x800B6540; // type:function size:0x14 +fn_800B6554 = .text:0x800B6554; // type:function size:0x14 +fn_800B6568 = .text:0x800B6568; // type:function size:0x14 +fn_800B657C = .text:0x800B657C; // type:function size:0x14 +fn_800B6590 = .text:0x800B6590; // type:function size:0x14 +fn_800B65A4 = .text:0x800B65A4; // type:function size:0x58 +fn_800B65FC = .text:0x800B65FC; // type:function size:0x8 +__ct__15SessionSearcherFv = .text:0x800B6604; // type:function size:0x110 +AllocateNetSearchResults__15SessionSearcherFv = .text:0x800B6714; // type:function size:0x30 +__dt__15SessionSearcherFv = .text:0x800B6744; // type:function size:0xFC +fn_800B6840 = .text:0x800B6840; // type:function size:0x5C +fn_800B689C = .text:0x800B689C; // type:function size:0x5C +fn_800B68F8 = .text:0x800B68F8; // type:function size:0x24 +fn_800B691C = .text:0x800B691C; // type:function size:0x4 +fn_800B6920 = .text:0x800B6920; // type:function size:0x38 +fn_800B6958 = .text:0x800B6958; // type:function size:0x98 +fn_800B69F0 = .text:0x800B69F0; // type:function size:0x78 +fn_800B6A68 = .text:0x800B6A68; // type:function size:0xCC +fn_800B6B34 = .text:0x800B6B34; // type:function size:0xC +fn_800B6B40 = .text:0x800B6B40; // type:function size:0xA0 +fn_800B6BE0 = .text:0x800B6BE0; // type:function size:0xC +fn_800B6BEC = .text:0x800B6BEC; // type:function size:0x84 +fn_800B6C70 = .text:0x800B6C70; // type:function size:0xD0 +fn_800B6D40 = .text:0x800B6D40; // type:function size:0x9C +fn_800B6DDC = .text:0x800B6DDC; // type:function size:0x64 +fn_800B6E40 = .text:0x800B6E40; // type:function size:0x20 +fn_800B6E60 = .text:0x800B6E60; // type:function size:0x1C +fn_800B6E7C = .text:0x800B6E7C; // type:function size:0xAC +fn_800B6F28 = .text:0x800B6F28; // type:function size:0x6C +fn_800B6F94 = .text:0x800B6F94; // type:function size:0xC +fn_800B6FA0 = .text:0x800B6FA0; // type:function size:0xF4 +fn_800B7094 = .text:0x800B7094; // type:function size:0x7C +fn_800B7110 = .text:0x800B7110; // type:function size:0x68 +fn_800B7178 = .text:0x800B7178; // type:function size:0x80 +fn_800B71F8 = .text:0x800B71F8; // type:function size:0x70 +fn_800B7268 = .text:0x800B7268; // type:function size:0x58 +fn_800B72C0 = .text:0x800B72C0; // type:function size:0x58 +fn_800B7318 = .text:0x800B7318; // type:function size:0xC +fn_800B7324 = .text:0x800B7324; // type:function size:0x58 +fn_800B737C = .text:0x800B737C; // type:function size:0x64 +fn_800B73E0 = .text:0x800B73E0; // type:function size:0x58 +fn_800B7438 = .text:0x800B7438; // type:function size:0x8 +fn_800B7440 = .text:0x800B7440; // type:function size:0x8 +fn_800B7448 = .text:0x800B7448; // type:function size:0x8 +Handle__15SessionSearcherFP9DataArrayb = .text:0x800B7450; // type:function size:0x1FC +__ct__17InviteAcceptedMsgFP9DataArray = .text:0x800B764C; // type:function size:0x3C +Type__17InviteAcceptedMsgFv = .text:0x800B7688; // type:function size:0x4C +fn_800B76D4 = .text:0x800B76D4; // type:function size:0x14 +fn_800B76E8 = .text:0x800B76E8; // type:function size:0x14 +fn_800B76FC = .text:0x800B76FC; // type:function size:0x14 +fn_800B7710 = .text:0x800B7710; // type:function size:0x14 +fn_800B7724 = .text:0x800B7724; // type:function size:0x14 +fn_800B7738 = .text:0x800B7738; // type:function size:0x14 +fn_800B774C = .text:0x800B774C; // type:function size:0x14 +fn_800B7760 = .text:0x800B7760; // type:function size:0x34 +fn_800B7794 = .text:0x800B7794; // type:function size:0xA0 +fn_800B7834 = .text:0x800B7834; // type:function size:0xD0 +fn_800B7904 = .text:0x800B7904; // type:function size:0x3E8 +__ct__17InviteAcceptedMsgFiUib = .text:0x800B7CEC; // type:function size:0xAC +__ct__7MessageF6SymbolRC8DataNodeRC8DataNodeRC8DataNode = .text:0x800B7D98; // type:function size:0xE4 +fn_800B7E7C = .text:0x800B7E7C; // type:function size:0x8 +fn_800B7E84 = .text:0x800B7E84; // type:function size:0xC +fn_800B7E90 = .text:0x800B7E90; // type:function size:0x1C4 +fn_800B8054 = .text:0x800B8054; // type:function size:0x4 +fn_800B8058 = .text:0x800B8058; // type:function size:0x4 +fn_800B805C = .text:0x800B805C; // type:function size:0x4 +fn_800B8060 = .text:0x800B8060; // type:function size:0x8 +fn_800B8068 = .text:0x800B8068; // type:function size:0x4 +fn_800B806C = .text:0x800B806C; // type:function size:0x54 +fn_800B80C0 = .text:0x800B80C0; // type:function size:0x4 +fn_800B80C4 = .text:0x800B80C4; // type:function size:0x4 +fn_800B80C8 = .text:0x800B80C8; // type:function size:0x54 +fn_800B811C = .text:0x800B811C; // type:function size:0x34 +fn_800B8150 = .text:0x800B8150; // type:function size:0xF8 +fn_800B8248 = .text:0x800B8248; // type:function size:0xC +fn_800B8254 = .text:0x800B8254; // type:function size:0xC +fn_800B8260 = .text:0x800B8260; // type:function size:0x14 +fn_800B8274 = .text:0x800B8274; // type:function size:0x14 +fn_800B8288 = .text:0x800B8288; // type:function size:0x14 +fn_800B829C = .text:0x800B829C; // type:function size:0x14 +fn_800B82B0 = .text:0x800B82B0; // type:function size:0x14 +fn_800B82C4 = .text:0x800B82C4; // type:function size:0x14 +fn_800B82D8 = .text:0x800B82D8; // type:function size:0x14 +Dispatch__10SessionMsgFv = .text:0x800B82EC; // type:function size:0x3C +__ct__14JoinRequestMsgFRCQ211stlpmtx_std52vector>i = .text:0x800B8328; // type:function size:0x134 +fn_800B845C = .text:0x800B845C; // type:function size:0x4 +fn_800B8460 = .text:0x800B8460; // type:function size:0x88 +fn_800B84E8 = .text:0x800B84E8; // type:function size:0x2C +fn_800B8514 = .text:0x800B8514; // type:function size:0x10 +__ct__9MemStreamFRC9MemStream = .text:0x800B8524; // type:function size:0x64 +fn_800B8588 = .text:0x800B8588; // type:function size:0x30 +fn_800B85B8 = .text:0x800B85B8; // type:function size:0x90 +fn_800B8648 = .text:0x800B8648; // type:function size:0x58 +fn_800B86A0 = .text:0x800B86A0; // type:function size:0x70 +fn_800B8710 = .text:0x800B8710; // type:function size:0x20 +fn_800B8730 = .text:0x800B8730; // type:function size:0x80 +fn_800B87B0 = .text:0x800B87B0; // type:function size:0x10 +fn_800B87C0 = .text:0x800B87C0; // type:function size:0x44 +fn_800B8804 = .text:0x800B8804; // type:function size:0x58 +Save__14JoinRequestMsgCFR9BinStream = .text:0x800B885C; // type:function size:0xD4 +Load__14JoinRequestMsgFR9BinStream = .text:0x800B8930; // type:function size:0x130 +__ct__15JoinResponseMsgF17JoinResponseErrori = .text:0x800B8A60; // type:function size:0x54 +fn_800B8AB4 = .text:0x800B8AB4; // type:function size:0x10 +Save__15JoinResponseMsgCFR9BinStream = .text:0x800B8AC4; // type:function size:0x4C +Load__15JoinResponseMsgFR9BinStream = .text:0x800B8B10; // type:function size:0x54 +Print__15JoinResponseMsgCFR10TextStream = .text:0x800B8B64; // type:function size:0x78 +MakeString__FPCcii_PCc = .text:0x800B8BDC; // type:function size:0x60 +__ct__10NewUserMsgFPC4User = .text:0x800B8C3C; // type:function size:0x84 +fn_800B8CC0 = .text:0x800B8CC0; // type:function size:0x30 +fn_800B8CF0 = .text:0x800B8CF0; // type:function size:0x58 +Save__10NewUserMsgCFR9BinStream = .text:0x800B8D48; // type:function size:0x60 +Load__10NewUserMsgFR9BinStream = .text:0x800B8DA8; // type:function size:0x70 +__ct__11UserLeftMsgFP4User = .text:0x800B8E18; // type:function size:0x54 +Save__11UserLeftMsgCFR9BinStream = .text:0x800B8E6C; // type:function size:0x10 +Load__11UserLeftMsgFR9BinStream = .text:0x800B8E7C; // type:function size:0x10 +__ct__17AddUserRequestMsgFPC4User = .text:0x800B8E8C; // type:function size:0xB4 +fn_800B8F40 = .text:0x800B8F40; // type:function size:0x58 +fn_800B8F98 = .text:0x800B8F98; // type:function size:0x58 +Save__17AddUserRequestMsgCFR9BinStream = .text:0x800B8FF0; // type:function size:0x80 +Load__17AddUserRequestMsgFR9BinStream = .text:0x800B9070; // type:function size:0xA0 +__ct__18AddUserResponseMsgFP4User = .text:0x800B9110; // type:function size:0x70 +Save__18AddUserResponseMsgCFR9BinStream = .text:0x800B9180; // type:function size:0x58 +Load__18AddUserResponseMsgFR9BinStream = .text:0x800B91D8; // type:function size:0x58 +__ct__17UpdateUserDataMsgFPC4UserUi = .text:0x800B9230; // type:function size:0x8C +fn_800B92BC = .text:0x800B92BC; // type:function size:0x58 +Save__17UpdateUserDataMsgCFR9BinStream = .text:0x800B9314; // type:function size:0x6C +Load__17UpdateUserDataMsgFR9BinStream = .text:0x800B9380; // type:function size:0x7C +Save__22FinishedArbitrationMsgCFR9BinStream = .text:0x800B93FC; // type:function size:0x10 +Load__22FinishedArbitrationMsgFR9BinStream = .text:0x800B940C; // type:function size:0x10 +__ct__18StartGameOnTimeMsgFUx = .text:0x800B941C; // type:function size:0x54 +Save__18StartGameOnTimeMsgCFR9BinStream = .text:0x800B9470; // type:function size:0x14 +fn_800B9484 = .text:0x800B9484; // type:function size:0x40 +Load__18StartGameOnTimeMsgFR9BinStream = .text:0x800B94C4; // type:function size:0x10 +fn_800B94D4 = .text:0x800B94D4; // type:function size:0x34 +__ct__10EndGameMsgFfib = .text:0x800B9508; // type:function size:0x64 +Save__10EndGameMsgCFR9BinStream = .text:0x800B956C; // type:function size:0x58 +__ls__9BinStreamFf = .text:0x800B95C4; // type:function size:0x3C +Load__10EndGameMsgFR9BinStream = .text:0x800B9600; // type:function size:0x58 +fn_800B9658 = .text:0x800B9658; // type:function size:0x58 +Save__12VoiceDataMsgCFR9BinStream = .text:0x800B96B0; // type:function size:0x60 +Load__12VoiceDataMsgFR9BinStream = .text:0x800B9710; // type:function size:0x70 +__ct__12DataArrayMsgFP9DataArray = .text:0x800B9780; // type:function size:0x70 +Save__12DataArrayMsgCFR9BinStream = .text:0x800B97F0; // type:function size:0x6C +Load__12DataArrayMsgFR9BinStream = .text:0x800B985C; // type:function size:0x64 +Dispatch__12DataArrayMsgFv = .text:0x800B98C0; // type:function size:0x48 +Print__12DataArrayMsgCFR10TextStream = .text:0x800B9908; // type:function size:0xAC +fn_800B99B4 = .text:0x800B99B4; // type:function size:0x114 +fn_800B9AC8 = .text:0x800B9AC8; // type:function size:0x60 +fn_800B9B28 = .text:0x800B9B28; // type:function size:0x5C +fn_800B9B84 = .text:0x800B9B84; // type:function size:0x54 +fn_800B9BD8 = .text:0x800B9BD8; // type:function size:0x5C +fn_800B9C34 = .text:0x800B9C34; // type:function size:0x5C +ByteCode__14JoinRequestMsgCFv = .text:0x800B9C90; // type:function size:0x4 +Name__14JoinRequestMsgCFv = .text:0x800B9C94; // type:function size:0xC +ByteCode__15JoinResponseMsgCFv = .text:0x800B9CA0; // type:function size:0x4 +Name__15JoinResponseMsgCFv = .text:0x800B9CA4; // type:function size:0xC +ByteCode__10NewUserMsgCFv = .text:0x800B9CB0; // type:function size:0x4 +Name__10NewUserMsgCFv = .text:0x800B9CB4; // type:function size:0xC +ByteCode__11UserLeftMsgCFv = .text:0x800B9CC0; // type:function size:0x4 +Name__11UserLeftMsgCFv = .text:0x800B9CC4; // type:function size:0xC +ByteCode__17AddUserRequestMsgCFv = .text:0x800B9CD0; // type:function size:0x4 +Name__17AddUserRequestMsgCFv = .text:0x800B9CD4; // type:function size:0xC +ByteCode__18AddUserResponseMsgCFv = .text:0x800B9CE0; // type:function size:0x4 +Name__18AddUserResponseMsgCFv = .text:0x800B9CE4; // type:function size:0xC +ByteCode__17UpdateUserDataMsgCFv = .text:0x800B9CF0; // type:function size:0x4 +Name__17UpdateUserDataMsgCFv = .text:0x800B9CF4; // type:function size:0xC +ByteCode__22FinishedArbitrationMsgCFv = .text:0x800B9D00; // type:function size:0x4 +Name__22FinishedArbitrationMsgCFv = .text:0x800B9D04; // type:function size:0xC +ByteCode__18StartGameOnTimeMsgCFv = .text:0x800B9D10; // type:function size:0x4 +Name__18StartGameOnTimeMsgCFv = .text:0x800B9D14; // type:function size:0xC +ByteCode__10EndGameMsgCFv = .text:0x800B9D20; // type:function size:0x4 +Name__10EndGameMsgCFv = .text:0x800B9D24; // type:function size:0xC +ByteCode__12VoiceDataMsgCFv = .text:0x800B9D30; // type:function size:0x4 +Name__12VoiceDataMsgCFv = .text:0x800B9D34; // type:function size:0xC +ByteCode__12DataArrayMsgCFv = .text:0x800B9D40; // type:function size:0x4 +StaticByteCode__12DataArrayMsgFv = .text:0x800B9D44; // type:function size:0x58 +Name__12DataArrayMsgCFv = .text:0x800B9D9C; // type:function size:0xC +__ct__14SynchronizableFPCc = .text:0x800B9DA8; // type:function size:0x90 +__dt__14SynchronizableFv = .text:0x800B9E38; // type:function size:0x8C +Publish__14SynchronizableFPCc = .text:0x800B9EC4; // type:function size:0x64 +Unpublish__14SynchronizableFv = .text:0x800B9F28; // type:function size:0x50 +SetSyncDirty__14SynchronizableFUi = .text:0x800B9F78; // type:function size:0x9C +SynchronizeIfDirty__14SynchronizableFv = .text:0x800BA014; // type:function size:0x16C +fn_800BA180 = .text:0x800BA180; // type:function size:0x4 +fn_800BA184 = .text:0x800BA184; // type:function size:0x3C +fn_800BA1C0 = .text:0x800BA1C0; // type:function size:0x2C +__dt__10SyncObjMsgFv = .text:0x800BA1EC; // type:function size:0x74 +fn_800BA260 = .text:0x800BA260; // type:function size:0x24 +fn_800BA284 = .text:0x800BA284; // type:function size:0x8 +fn_800BA28C = .text:0x800BA28C; // type:function size:0x38 +__ct__9SyncStoreFv = .text:0x800BA2C4; // type:function size:0x54 +Register__10SyncAllMsgFv = .text:0x800BA318; // type:function size:0x50 +Register__11SyncUserMsgFv = .text:0x800BA368; // type:function size:0x50 +Register__10SyncObjMsgFv = .text:0x800BA3B8; // type:function size:0x50 +fn_800BA408 = .text:0x800BA408; // type:function size:0x60 +AddSyncObj__9SyncStoreFP14SynchronizableR6String = .text:0x800BA468; // type:function size:0x4 +RemoveSyncObj__9SyncStoreFR6String = .text:0x800BA46C; // type:function size:0xA8 +fn_800BA514 = .text:0x800BA514; // type:function size:0xBC +fn_800BA5D0 = .text:0x800BA5D0; // type:function size:0x90 +SyncAllUsers__9SyncStoreFv = .text:0x800BA660; // type:function size:0x90 +__ct__10SyncObjMsgFR6StringUiP14Synchronizable = .text:0x800BA6F0; // type:function size:0x98 +GetObjData__10SyncObjMsgCFR9BinStream = .text:0x800BA788; // type:function size:0x58 +Save__10SyncObjMsgCFR9BinStream = .text:0x800BA7E0; // type:function size:0x6C +Load__10SyncObjMsgFR9BinStream = .text:0x800BA84C; // type:function size:0x7C +Dispatch__10SyncObjMsgFv = .text:0x800BA8C8; // type:function size:0xF4 +Print__10SyncObjMsgCFR10TextStream = .text:0x800BA9BC; // type:function size:0x70 +MakeString<6String,Ui>__FPCc6StringUi_PCc = .text:0x800BAA2C; // type:function size:0x60 +__ct__11SyncUserMsgFPC4User = .text:0x800BAA8C; // type:function size:0x5C +Save__11SyncUserMsgCFR9BinStream = .text:0x800BAAE8; // type:function size:0x10 +Load__11SyncUserMsgFR9BinStream = .text:0x800BAAF8; // type:function size:0x10 +Dispatch__11SyncUserMsgFv = .text:0x800BAB08; // type:function size:0x6C +Dispatch__10SyncAllMsgFv = .text:0x800BAB74; // type:function size:0xC +ByteCode__10SyncObjMsgCFv = .text:0x800BAB80; // type:function size:0x4 +StaticByteCode__10SyncObjMsgFv = .text:0x800BAB84; // type:function size:0x58 +Name__10SyncObjMsgCFv = .text:0x800BABDC; // type:function size:0xC +ByteCode__11SyncUserMsgCFv = .text:0x800BABE8; // type:function size:0x4 +StaticByteCode__11SyncUserMsgFv = .text:0x800BABEC; // type:function size:0x58 +Name__11SyncUserMsgCFv = .text:0x800BAC44; // type:function size:0xC +ByteCode__10SyncAllMsgCFv = .text:0x800BAC50; // type:function size:0x4 +StaticByteCode__10SyncAllMsgFv = .text:0x800BAC54; // type:function size:0x58 +Name__10SyncAllMsgCFv = .text:0x800BACAC; // type:function size:0xC +fn_800BACB8 = .text:0x800BACB8; // type:function size:0x128 +fn_800BADE0 = .text:0x800BADE0; // type:function size:0x68 +fn_800BAE48 = .text:0x800BAE48; // type:function size:0x8 +fn_800BAE50 = .text:0x800BAE50; // type:function size:0xC8 +fn_800BAF18 = .text:0x800BAF18; // type:function size:0x74 +fn_800BAF8C = .text:0x800BAF8C; // type:function size:0x9C +fn_800BB028 = .text:0x800BB028; // type:function size:0x14 +fn_800BB03C = .text:0x800BB03C; // type:function size:0x7C +fn_800BB0B8 = .text:0x800BB0B8; // type:function size:0x70 +fn_800BB128 = .text:0x800BB128; // type:function size:0xB0 +fn_800BB1D8 = .text:0x800BB1D8; // type:function size:0x98 +fn_800BB270 = .text:0x800BB270; // type:function size:0x34 +__ct__20MakeQuazalSessionJobFPP13QuazalSessionb = .text:0x800BB2A4; // type:function size:0x54 +fn_800BB2F8 = .text:0x800BB2F8; // type:function size:0x68 +fn_800BB360 = .text:0x800BB360; // type:function size:0x10 +fn_800BB370 = .text:0x800BB370; // type:function size:0x10 +fn_800BB380 = .text:0x800BB380; // type:function size:0x58 +fn_800BB3D8 = .text:0x800BB3D8; // type:function size:0x104 +fn_800BB4DC = .text:0x800BB4DC; // type:function size:0x3C +Tell__9MemStreamFv = .text:0x800BB518; // type:function size:0x8 +fn_800BB520 = .text:0x800BB520; // type:function size:0x5C +fn_800BB57C = .text:0x800BB57C; // type:function size:0x17C +fn_800BB6F8 = .text:0x800BB6F8; // type:function size:0x3C +fn_800BB734 = .text:0x800BB734; // type:function size:0x140 +fn_800BB874 = .text:0x800BB874; // type:function size:0x4 +fn_800BB878 = .text:0x800BB878; // type:function size:0x4 +fn_800BB87C = .text:0x800BB87C; // type:function size:0x4 +fn_800BB880 = .text:0x800BB880; // type:function size:0xA4 +fn_800BB924 = .text:0x800BB924; // type:function size:0x24 +fn_800BB948 = .text:0x800BB948; // type:function size:0x88 +fn_800BB9D0 = .text:0x800BB9D0; // type:function size:0x88 +fn_800BBA58 = .text:0x800BBA58; // type:function size:0x24 +fn_800BBA7C = .text:0x800BBA7C; // type:function size:0xC +fn_800BBA88 = .text:0x800BBA88; // type:function size:0xA8 +fn_800BBB30 = .text:0x800BBB30; // type:function size:0x98 +fn_800BBBC8 = .text:0x800BBBC8; // type:function size:0x78 +fn_800BBC40 = .text:0x800BBC40; // type:function size:0xC +fn_800BBC4C = .text:0x800BBC4C; // type:function size:0x34 +fn_800BBC80 = .text:0x800BBC80; // type:function size:0x3C +Handle__12VoiceChatMgrFP9DataArrayb = .text:0x800BBCBC; // type:function size:0x14C +__ct__17RemoteUserLeftMsgFP9DataArray = .text:0x800BBE08; // type:function size:0x3C +fn_800BBE44 = .text:0x800BBE44; // type:function size:0x58 +fn_800BBE9C = .text:0x800BBE9C; // type:function size:0x74 +fn_800BBF10 = .text:0x800BBF10; // type:function size:0x64 +fn_800BBF74 = .text:0x800BBF74; // type:function size:0x64 +fn_800BBFD8 = .text:0x800BBFD8; // type:function size:0x14 +fn_800BBFEC = .text:0x800BBFEC; // type:function size:0x14 +fn_800BC000 = .text:0x800BC000; // type:function size:0x14 +fn_800BC014 = .text:0x800BC014; // type:function size:0x14 +fn_800BC028 = .text:0x800BC028; // type:function size:0x14 +fn_800BC03C = .text:0x800BC03C; // type:function size:0x14 +fn_800BC050 = .text:0x800BC050; // type:function size:0x14 +fn_800BC064 = .text:0x800BC064; // type:function size:0x4 +fn_800BC068 = .text:0x800BC068; // type:function size:0xC4 +fn_800BC12C = .text:0x800BC12C; // type:function size:0x40 +fn_800BC16C = .text:0x800BC16C; // type:function size:0x30 +fn_800BC19C = .text:0x800BC19C; // type:function size:0x2C +fn_800BC1C8 = .text:0x800BC1C8; // type:function size:0x38 +fn_800BC200 = .text:0x800BC200; // type:function size:0x4 +fn_800BC204 = .text:0x800BC204; // type:function size:0x15C +fn_800BC360 = .text:0x800BC360; // type:function size:0x8 +fn_800BC368 = .text:0x800BC368; // type:function size:0x38 +fn_800BC3A0 = .text:0x800BC3A0; // type:function size:0x4 +fn_800BC3A4 = .text:0x800BC3A4; // type:function size:0x8C +fn_800BC430 = .text:0x800BC430; // type:function size:0x58 +fn_800BC488 = .text:0x800BC488; // type:function size:0xC +fn_800BC494 = .text:0x800BC494; // type:function size:0x78 +fn_800BC50C = .text:0x800BC50C; // type:function size:0x84 +__ct__Q26Quazal27HarmonixGameDDLDeclarationsFv = .text:0x800BC590; // type:function size:0x40 +fn_800BC5D0 = .text:0x800BC5D0; // type:function size:0xD4 +fn_800BC6A4 = .text:0x800BC6A4; // type:function size:0x4 +fn_800BC6A8 = .text:0x800BC6A8; // type:function size:0xD4 +fn_800BC77C = .text:0x800BC77C; // type:function size:0x4 +fn_800BC780 = .text:0x800BC780; // type:function size:0x3C +fn_800BC7BC = .text:0x800BC7BC; // type:function size:0x10 +fn_800BC7CC = .text:0x800BC7CC; // type:function size:0x1C +fn_800BC7E8 = .text:0x800BC7E8; // type:function size:0x70 +fn_800BC858 = .text:0x800BC858; // type:function size:0x10 +fn_800BC868 = .text:0x800BC868; // type:function size:0x10 +fn_800BC878 = .text:0x800BC878; // type:function size:0x3C +fn_800BC8B4 = .text:0x800BC8B4; // type:function size:0x24 +fn_800BC8D8 = .text:0x800BC8D8; // type:function size:0x10 +fn_800BC8E8 = .text:0x800BC8E8; // type:function size:0x14 +fn_800BC8FC = .text:0x800BC8FC; // type:function size:0x18 +fn_800BC914 = .text:0x800BC914; // type:function size:0x18 +fn_800BC92C = .text:0x800BC92C; // type:function size:0x68 +fn_800BC994 = .text:0x800BC994; // type:function size:0x58 +fn_800BC9EC = .text:0x800BC9EC; // type:function size:0x3C +fn_800BCA28 = .text:0x800BCA28; // type:function size:0x20 +fn_800BCA48 = .text:0x800BCA48; // type:function size:0x4 +fn_800BCA4C = .text:0x800BCA4C; // type:function size:0x4 +fn_800BCA50 = .text:0x800BCA50; // type:function size:0x4 +fn_800BCA54 = .text:0x800BCA54; // type:function size:0xA0 +fn_800BCAF4 = .text:0x800BCAF4; // type:function size:0x8 +fn_800BCAFC = .text:0x800BCAFC; // type:function size:0x8 +fn_800BCB04 = .text:0x800BCB04; // type:function size:0x68 +fn_800BCB6C = .text:0x800BCB6C; // type:function size:0x8 +fn_800BCB74 = .text:0x800BCB74; // type:function size:0x4 +fn_800BCB78 = .text:0x800BCB78; // type:function size:0x4 +fn_800BCB7C = .text:0x800BCB7C; // type:function size:0x54 +fn_800BCBD0 = .text:0x800BCBD0; // type:function size:0x8 +fn_800BCBD8 = .text:0x800BCBD8; // type:function size:0x58 +fn_800BCC30 = .text:0x800BCC30; // type:function size:0x64 +fn_800BCC94 = .text:0x800BCC94; // type:function size:0x4 +fn_800BCC98 = .text:0x800BCC98; // type:function size:0x4 +fn_800BCC9C = .text:0x800BCC9C; // type:function size:0x4 +fn_800BCCA0 = .text:0x800BCCA0; // type:function size:0x4 +fn_800BCCA4 = .text:0x800BCCA4; // type:function size:0xDC +fn_800BCD80 = .text:0x800BCD80; // type:function size:0x4 +fn_800BCD84 = .text:0x800BCD84; // type:function size:0x98 +fn_800BCE1C = .text:0x800BCE1C; // type:function size:0x4 +fn_800BCE20 = .text:0x800BCE20; // type:function size:0x4 +fn_800BCE24 = .text:0x800BCE24; // type:function size:0x58 +fn_800BCE7C = .text:0x800BCE7C; // type:function size:0x54 +fn_800BCED0 = .text:0x800BCED0; // type:function size:0xC +fn_800BCEDC = .text:0x800BCEDC; // type:function size:0xC +fn_800BCEE8 = .text:0x800BCEE8; // type:function size:0x2C +__ct__9WiiServerFv = .text:0x800BCF14; // type:function size:0xD8 +Init__9WiiServerFv = .text:0x800BCFEC; // type:function size:0x150 +fn_800BD13C = .text:0x800BD13C; // type:function size:0x4C +fn_800BD188 = .text:0x800BD188; // type:function size:0xC +fn_800BD194 = .text:0x800BD194; // type:function size:0x10C +fn_800BD2A0 = .text:0x800BD2A0; // type:function size:0x738 +__ct__12UserLoginMsgFi = .text:0x800BD9D8; // type:function size:0x64 +Type__12UserLoginMsgFv = .text:0x800BDA3C; // type:function size:0x4C +fn_800BDA88 = .text:0x800BDA88; // type:function size:0xC +fn_800BDA94 = .text:0x800BDA94; // type:function size:0x8 +__ct__22ServerStatusChangedMsgFb = .text:0x800BDA9C; // type:function size:0x64 +Type__22ServerStatusChangedMsgFv = .text:0x800BDB00; // type:function size:0x4C +__ct__Q26Quazal23CustomMatchMakingClientFv = .text:0x800BDB4C; // type:function size:0x40 +fn_800BDB8C = .text:0x800BDB8C; // type:function size:0x48 +fn_800BDBD4 = .text:0x800BDBD4; // type:function size:0x58 +fn_800BDC2C = .text:0x800BDC2C; // type:function size:0xC0 +fn_800BDCEC = .text:0x800BDCEC; // type:function size:0x348 +fn_800BE034 = .text:0x800BE034; // type:function size:0xC +fn_800BE040 = .text:0x800BE040; // type:function size:0x8 +fn_800BE048 = .text:0x800BE048; // type:function size:0x30C +fn_800BE354 = .text:0x800BE354; // type:function size:0x60 +fn_800BE3B4 = .text:0x800BE3B4; // type:function size:0x8 +fn_800BE3BC = .text:0x800BE3BC; // type:function size:0x14 +fn_800BE3D0 = .text:0x800BE3D0; // type:function size:0x98 +fn_800BE468 = .text:0x800BE468; // type:function size:0xC0 +fn_800BE528 = .text:0x800BE528; // type:function size:0xD4 +fn_800BE5FC = .text:0x800BE5FC; // type:function size:0xD4 +__ct__15NamingResultMsgFii = .text:0x800BE6D0; // type:function size:0x8C +Type__15NamingResultMsgFv = .text:0x800BE75C; // type:function size:0x4C +fn_800BE7A8 = .text:0x800BE7A8; // type:function size:0x8 +fn_800BE7B0 = .text:0x800BE7B0; // type:function size:0x8 +fn_800BE7B8 = .text:0x800BE7B8; // type:function size:0xD4 +__ct__21DeleteUserCompleteMsgFii = .text:0x800BE88C; // type:function size:0x8C +Type__21DeleteUserCompleteMsgFv = .text:0x800BE918; // type:function size:0x4C +fn_800BE964 = .text:0x800BE964; // type:function size:0x8 +fn_800BE96C = .text:0x800BE96C; // type:function size:0x8 +fn_800BE974 = .text:0x800BE974; // type:function size:0xD0 +fn_800BEA44 = .text:0x800BEA44; // type:function size:0xC8 +fn_800BEB0C = .text:0x800BEB0C; // type:function size:0x3C +fn_800BEB48 = .text:0x800BEB48; // type:function size:0xEC +__ct__23UserNameNewlyProfaneMsgFi = .text:0x800BEC34; // type:function size:0x64 +Type__23UserNameNewlyProfaneMsgFv = .text:0x800BEC98; // type:function size:0x4C +fn_800BECE4 = .text:0x800BECE4; // type:function size:0x30 +fn_800BED14 = .text:0x800BED14; // type:function size:0x30 +Handle__9WiiServerFP9DataArrayb = .text:0x800BED44; // type:function size:0x29C +__ct__21DWCProfanityResultMsgFP9DataArray = .text:0x800BEFE0; // type:function size:0x3C +Type__21DWCProfanityResultMsgFv = .text:0x800BF01C; // type:function size:0x4C +__ct__17UserRegisteredMsgFP9DataArray = .text:0x800BF068; // type:function size:0x3C +fn_800BF0A4 = .text:0x800BF0A4; // type:function size:0x7C +fn_800BF120 = .text:0x800BF120; // type:function size:0x8 +fn_800BF128 = .text:0x800BF128; // type:function size:0x8 +fn_800BF130 = .text:0x800BF130; // type:function size:0x8 +fn_800BF138 = .text:0x800BF138; // type:function size:0x14 +fn_800BF14C = .text:0x800BF14C; // type:function size:0x5C +fn_800BF1A8 = .text:0x800BF1A8; // type:function size:0x14 +fn_800BF1BC = .text:0x800BF1BC; // type:function size:0x14 +fn_800BF1D0 = .text:0x800BF1D0; // type:function size:0x14 +fn_800BF1E4 = .text:0x800BF1E4; // type:function size:0x14 +fn_800BF1F8 = .text:0x800BF1F8; // type:function size:0x14 +fn_800BF20C = .text:0x800BF20C; // type:function size:0x14 +fn_800BF220 = .text:0x800BF220; // type:function size:0x14 +fn_800BF234 = .text:0x800BF234; // type:function size:0x58 +fn_800BF28C = .text:0x800BF28C; // type:function size:0x68 +fn_800BF2F4 = .text:0x800BF2F4; // type:function size:0x58 +fn_800BF34C = .text:0x800BF34C; // type:function size:0x6C +fn_800BF3B8 = .text:0x800BF3B8; // type:function size:0x8C +fn_800BF444 = .text:0x800BF444; // type:function size:0x5C +fn_800BF4A0 = .text:0x800BF4A0; // type:function size:0x5C +fn_800BF4FC = .text:0x800BF4FC; // type:function size:0xC +fn_800BF508 = .text:0x800BF508; // type:function size:0x60 +fn_800BF568 = .text:0x800BF568; // type:function size:0x8 +fn_800BF570 = .text:0x800BF570; // type:function size:0x70 +fn_800BF5E0 = .text:0x800BF5E0; // type:function size:0x80 +fn_800BF660 = .text:0x800BF660; // type:function size:0x8 +fn_800BF668 = .text:0x800BF668; // type:function size:0xE8 +fn_800BF750 = .text:0x800BF750; // type:function size:0x54 +fn_800BF7A4 = .text:0x800BF7A4; // type:function size:0x78 +fn_800BF81C = .text:0x800BF81C; // type:function size:0xCC +fn_800BF8E8 = .text:0x800BF8E8; // type:function size:0xC +fn_800BF8F4 = .text:0x800BF8F4; // type:function size:0xA0 +fn_800BF994 = .text:0x800BF994; // type:function size:0xC +fn_800BF9A0 = .text:0x800BF9A0; // type:function size:0x84 +fn_800BFA24 = .text:0x800BFA24; // type:function size:0xD0 +fn_800BFAF4 = .text:0x800BFAF4; // type:function size:0x64 +fn_800BFB58 = .text:0x800BFB58; // type:function size:0x20 +fn_800BFB78 = .text:0x800BFB78; // type:function size:0x1C +fn_800BFB94 = .text:0x800BFB94; // type:function size:0xAC +fn_800BFC40 = .text:0x800BFC40; // type:function size:0x6C +fn_800BFCAC = .text:0x800BFCAC; // type:function size:0xC +fn_800BFCB8 = .text:0x800BFCB8; // type:function size:0x7C +fn_800BFD34 = .text:0x800BFD34; // type:function size:0x68 +fn_800BFD9C = .text:0x800BFD9C; // type:function size:0x80 +fn_800BFE1C = .text:0x800BFE1C; // type:function size:0x58 +fn_800BFE74 = .text:0x800BFE74; // type:function size:0x58 +fn_800BFECC = .text:0x800BFECC; // type:function size:0xC +fn_800BFED8 = .text:0x800BFED8; // type:function size:0x58 +fn_800BFF30 = .text:0x800BFF30; // type:function size:0x78 +fn_800BFFA8 = .text:0x800BFFA8; // type:function size:0x14 +fn_800BFFBC = .text:0x800BFFBC; // type:function size:0x8 +fn_800BFFC4 = .text:0x800BFFC4; // type:function size:0xC4 +fn_800C0088 = .text:0x800C0088; // type:function size:0x10 +fn_800C0098 = .text:0x800C0098; // type:function size:0x40 +fn_800C00D8 = .text:0x800C00D8; // type:function size:0x60 +fn_800C0138 = .text:0x800C0138; // type:function size:0x4 +fn_800C013C = .text:0x800C013C; // type:function size:0x5C +fn_800C0198 = .text:0x800C0198; // type:function size:0x5C +fn_800C01F4 = .text:0x800C01F4; // type:function size:0xC +fn_800C0200 = .text:0x800C0200; // type:function size:0xA0 +fn_800C02A0 = .text:0x800C02A0; // type:function size:0x60 +fn_800C0300 = .text:0x800C0300; // type:function size:0x80 +fn_800C0380 = .text:0x800C0380; // type:function size:0x80 +fn_800C0400 = .text:0x800C0400; // type:function size:0x74 +fn_800C0474 = .text:0x800C0474; // type:function size:0x50 +fn_800C04C4 = .text:0x800C04C4; // type:function size:0x78 +fn_800C053C = .text:0x800C053C; // type:function size:0xCC +fn_800C0608 = .text:0x800C0608; // type:function size:0xC +fn_800C0614 = .text:0x800C0614; // type:function size:0xA0 +fn_800C06B4 = .text:0x800C06B4; // type:function size:0xC +fn_800C06C0 = .text:0x800C06C0; // type:function size:0x84 +fn_800C0744 = .text:0x800C0744; // type:function size:0xD0 +fn_800C0814 = .text:0x800C0814; // type:function size:0x64 +fn_800C0878 = .text:0x800C0878; // type:function size:0x20 +fn_800C0898 = .text:0x800C0898; // type:function size:0x1C +fn_800C08B4 = .text:0x800C08B4; // type:function size:0xAC +fn_800C0960 = .text:0x800C0960; // type:function size:0x6C +fn_800C09CC = .text:0x800C09CC; // type:function size:0xC +fn_800C09D8 = .text:0x800C09D8; // type:function size:0x7C +fn_800C0A54 = .text:0x800C0A54; // type:function size:0x68 +fn_800C0ABC = .text:0x800C0ABC; // type:function size:0x80 +fn_800C0B3C = .text:0x800C0B3C; // type:function size:0x58 +fn_800C0B94 = .text:0x800C0B94; // type:function size:0x58 +fn_800C0BEC = .text:0x800C0BEC; // type:function size:0xC +fn_800C0BF8 = .text:0x800C0BF8; // type:function size:0x58 +fn_800C0C50 = .text:0x800C0C50; // type:function size:0xD4 +fn_800C0D24 = .text:0x800C0D24; // type:function size:0x94 +fn_800C0DB8 = .text:0x800C0DB8; // type:function size:0x88 +fn_800C0E40 = .text:0x800C0E40; // type:function size:0x138 +fn_800C0F78 = .text:0x800C0F78; // type:function size:0xBC +fn_800C1034 = .text:0x800C1034; // type:function size:0x9C +fn_800C10D0 = .text:0x800C10D0; // type:function size:0x128 +fn_800C11F8 = .text:0x800C11F8; // type:function size:0xBC +fn_800C12B4 = .text:0x800C12B4; // type:function size:0x8 +fn_800C12BC = .text:0x800C12BC; // type:function size:0x1A4 +fn_800C1460 = .text:0x800C1460; // type:function size:0x64 +fn_800C14C4 = .text:0x800C14C4; // type:function size:0x4C +fn_800C1510 = .text:0x800C1510; // type:function size:0x10 +fn_800C1520 = .text:0x800C1520; // type:function size:0xB8 +fn_800C15D8 = .text:0x800C15D8; // type:function size:0x8 +fn_800C15E0 = .text:0x800C15E0; // type:function size:0xA0 +fn_800C1680 = .text:0x800C1680; // type:function size:0x48 +fn_800C16C8 = .text:0x800C16C8; // type:function size:0x18 +fn_800C16E0 = .text:0x800C16E0; // type:function size:0x168 +fn_800C1848 = .text:0x800C1848; // type:function size:0x70 +fn_800C18B8 = .text:0x800C18B8; // type:function size:0xA4 +fn_800C195C = .text:0x800C195C; // type:function size:0x244 +fn_800C1BA0 = .text:0x800C1BA0; // type:function size:0x64 +fn_800C1C04 = .text:0x800C1C04; // type:function size:0x4C +fn_800C1C50 = .text:0x800C1C50; // type:function size:0x8 +fn_800C1C58 = .text:0x800C1C58; // type:function size:0x284 +fn_800C1EDC = .text:0x800C1EDC; // type:function size:0x220 +Name__10FileStreamCFv = .text:0x800C20FC; // type:function size:0x8 +fn_800C2104 = .text:0x800C2104; // type:function size:0x80 +Handle__12WiiFriendMgrFP9DataArrayb = .text:0x800C2184; // type:function size:0x1DC +__ct__22ServerStatusChangedMsgFP9DataArray = .text:0x800C2360; // type:function size:0x3C +fn_800C239C = .text:0x800C239C; // type:function size:0x4C +fn_800C23E8 = .text:0x800C23E8; // type:function size:0x14 +fn_800C23FC = .text:0x800C23FC; // type:function size:0x14 +fn_800C2410 = .text:0x800C2410; // type:function size:0x14 +fn_800C2424 = .text:0x800C2424; // type:function size:0x14 +fn_800C2438 = .text:0x800C2438; // type:function size:0x14 +fn_800C244C = .text:0x800C244C; // type:function size:0x14 +fn_800C2460 = .text:0x800C2460; // type:function size:0x14 +fn_800C2474 = .text:0x800C2474; // type:function size:0x210 +fn_800C2684 = .text:0x800C2684; // type:function size:0x8C +fn_800C2710 = .text:0x800C2710; // type:function size:0xA8 +fn_800C27B8 = .text:0x800C27B8; // type:function size:0x18C +fn_800C2944 = .text:0x800C2944; // type:function size:0x8 +fn_800C294C = .text:0x800C294C; // type:function size:0xC +fn_800C2958 = .text:0x800C2958; // type:function size:0x1D0 +fn_800C2B28 = .text:0x800C2B28; // type:function size:0xB8 +fn_800C2BE0 = .text:0x800C2BE0; // type:function size:0x214 +fn_800C2DF4 = .text:0x800C2DF4; // type:function size:0x8 +fn_800C2DFC = .text:0x800C2DFC; // type:function size:0xC +fn_800C2E08 = .text:0x800C2E08; // type:function size:0x8 +fn_800C2E10 = .text:0x800C2E10; // type:function size:0x4 +fn_800C2E14 = .text:0x800C2E14; // type:function size:0x230 +fn_800C3044 = .text:0x800C3044; // type:function size:0xC4 +fn_800C3108 = .text:0x800C3108; // type:function size:0x108 +fn_800C3210 = .text:0x800C3210; // type:function size:0x16C +fn_800C337C = .text:0x800C337C; // type:function size:0x208 +fn_800C3584 = .text:0x800C3584; // type:function size:0x264 +fn_800C37E8 = .text:0x800C37E8; // type:function size:0x258 +fn_800C3A40 = .text:0x800C3A40; // type:function size:0x12C +fn_800C3B6C = .text:0x800C3B6C; // type:function size:0x254 +fn_800C3DC0 = .text:0x800C3DC0; // type:function size:0x8 +fn_800C3DC8 = .text:0x800C3DC8; // type:function size:0x8 +fn_800C3DD0 = .text:0x800C3DD0; // type:function size:0x1DC +fn_800C3FAC = .text:0x800C3FAC; // type:function size:0x58 +fn_800C4004 = .text:0x800C4004; // type:function size:0x30 +fn_800C4034 = .text:0x800C4034; // type:function size:0x40 +fn_800C4074 = .text:0x800C4074; // type:function size:0x14 +fn_800C4088 = .text:0x800C4088; // type:function size:0x8 +fn_800C4090 = .text:0x800C4090; // type:function size:0x8 +fn_800C4098 = .text:0x800C4098; // type:function size:0x3C +fn_800C40D4 = .text:0x800C40D4; // type:function size:0x74 +fn_800C4148 = .text:0x800C4148; // type:function size:0xD0 +fn_800C4218 = .text:0x800C4218; // type:function size:0x78 +fn_800C4290 = .text:0x800C4290; // type:function size:0x54 +fn_800C42E4 = .text:0x800C42E4; // type:function size:0xF0 +fn_800C43D4 = .text:0x800C43D4; // type:function size:0x8 +fn_800C43DC = .text:0x800C43DC; // type:function size:0x8 +fn_800C43E4 = .text:0x800C43E4; // type:function size:0x144 +fn_800C4528 = .text:0x800C4528; // type:function size:0x98 +fn_800C45C0 = .text:0x800C45C0; // type:function size:0xCC +fn_800C468C = .text:0x800C468C; // type:function size:0x200 +fn_800C488C = .text:0x800C488C; // type:function size:0x4 +fn_800C4890 = .text:0x800C4890; // type:function size:0x5C +fn_800C48EC = .text:0x800C48EC; // type:function size:0x5C +fn_800C4948 = .text:0x800C4948; // type:function size:0xC +fn_800C4954 = .text:0x800C4954; // type:function size:0x8 +fn_800C495C = .text:0x800C495C; // type:function size:0x4 +fn_800C4960 = .text:0x800C4960; // type:function size:0x54 +fn_800C49B4 = .text:0x800C49B4; // type:function size:0x4 +fn_800C49B8 = .text:0x800C49B8; // type:function size:0xC +fn_800C49C4 = .text:0x800C49C4; // type:function size:0xD0 +fn_800C4A94 = .text:0x800C4A94; // type:function size:0x190 +fn_800C4C24 = .text:0x800C4C24; // type:function size:0x8 +fn_800C4C2C = .text:0x800C4C2C; // type:function size:0xC +fn_800C4C38 = .text:0x800C4C38; // type:function size:0x8 +fn_800C4C40 = .text:0x800C4C40; // type:function size:0x8 +fn_800C4C48 = .text:0x800C4C48; // type:function size:0x188 +fn_800C4DD0 = .text:0x800C4DD0; // type:function size:0x80 +fn_800C4E50 = .text:0x800C4E50; // type:function size:0xD8 +fn_800C4F28 = .text:0x800C4F28; // type:function size:0x9C +fn_800C4FC4 = .text:0x800C4FC4; // type:function size:0x244 +fn_800C5208 = .text:0x800C5208; // type:function size:0x48 +fn_800C5250 = .text:0x800C5250; // type:function size:0x8 +fn_800C5258 = .text:0x800C5258; // type:function size:0x1F8 +fn_800C5450 = .text:0x800C5450; // type:function size:0x10 +fn_800C5460 = .text:0x800C5460; // type:function size:0x8 +Handle__16JobCreateProfileFP9DataArrayb = .text:0x800C5468; // type:function size:0x100 +fn_800C5568 = .text:0x800C5568; // type:function size:0x13C +fn_800C56A4 = .text:0x800C56A4; // type:function size:0x68 +fn_800C570C = .text:0x800C570C; // type:function size:0xC8 +fn_800C57D4 = .text:0x800C57D4; // type:function size:0x9C +fn_800C5870 = .text:0x800C5870; // type:function size:0x8 +fn_800C5878 = .text:0x800C5878; // type:function size:0x8 +fn_800C5880 = .text:0x800C5880; // type:function size:0x8 +fn_800C5888 = .text:0x800C5888; // type:function size:0x8 +fn_800C5890 = .text:0x800C5890; // type:function size:0x44 +fn_800C58D4 = .text:0x800C58D4; // type:function size:0x74 +fn_800C5948 = .text:0x800C5948; // type:function size:0x60 +fn_800C59A8 = .text:0x800C59A8; // type:function size:0x40 +fn_800C59E8 = .text:0x800C59E8; // type:function size:0x60 +fn_800C5A48 = .text:0x800C5A48; // type:function size:0xA4 +fn_800C5AEC = .text:0x800C5AEC; // type:function size:0x60 +fn_800C5B4C = .text:0x800C5B4C; // type:function size:0x70 +fn_800C5BBC = .text:0x800C5BBC; // type:function size:0xC4 +fn_800C5C80 = .text:0x800C5C80; // type:function size:0x8 +fn_800C5C88 = .text:0x800C5C88; // type:function size:0x8 +fn_800C5C90 = .text:0x800C5C90; // type:function size:0x8 +fn_800C5C98 = .text:0x800C5C98; // type:function size:0x130 +fn_800C5DC8 = .text:0x800C5DC8; // type:function size:0xEC +fn_800C5EB4 = .text:0x800C5EB4; // type:function size:0x270 +fn_800C6124 = .text:0x800C6124; // type:function size:0x4 +fn_800C6128 = .text:0x800C6128; // type:function size:0x8 +fn_800C6130 = .text:0x800C6130; // type:function size:0xC0 +fn_800C61F0 = .text:0x800C61F0; // type:function size:0x168 +fn_800C6358 = .text:0x800C6358; // type:function size:0x64 +fn_800C63BC = .text:0x800C63BC; // type:function size:0x4C +fn_800C6408 = .text:0x800C6408; // type:function size:0x2C +fn_800C6434 = .text:0x800C6434; // type:function size:0x98 +fn_800C64CC = .text:0x800C64CC; // type:function size:0x64 +fn_800C6530 = .text:0x800C6530; // type:function size:0x4C +fn_800C657C = .text:0x800C657C; // type:function size:0x164 +fn_800C66E0 = .text:0x800C66E0; // type:function size:0x4C +fn_800C672C = .text:0x800C672C; // type:function size:0x4C +fn_800C6778 = .text:0x800C6778; // type:function size:0x80 +fn_800C67F8 = .text:0x800C67F8; // type:function size:0x1C +fn_800C6814 = .text:0x800C6814; // type:function size:0x68 +fn_800C687C = .text:0x800C687C; // type:function size:0x3C +fn_800C68B8 = .text:0x800C68B8; // type:function size:0x14 +fn_800C68CC = .text:0x800C68CC; // type:function size:0x14 +array_list_new = .text:0x800C68E0; // type:function size:0x90 +array_list_free = .text:0x800C6970; // type:function size:0x7C +array_list_get_idx = .text:0x800C69EC; // type:function size:0x24 +array_list_expand_internal = .text:0x800C6A10; // type:function size:0x9C +array_list_put_idx = .text:0x800C6AAC; // type:function size:0x8C +array_list_add = .text:0x800C6B38; // type:function size:0xC +array_list_length = .text:0x800C6B44; // type:function size:0x8 +json_escape_str = .text:0x800C6B4C; // type:function size:0x1E8 +json_object_get = .text:0x800C6D34; // type:function size:0x18 +json_object_put = .text:0x800C6D4C; // type:function size:0x28 +json_object_generic_delete = .text:0x800C6D74; // type:function size:0x38 +json_object_new = .text:0x800C6DAC; // type:function size:0x5C +json_object_get_type = .text:0x800C6E08; // type:function size:0x8 +json_object_to_json_string = .text:0x800C6E10; // type:function size:0x94 +json_object_object_to_json_string = .text:0x800C6EA4; // type:function size:0x118 +json_object_lh_entry_free = .text:0x800C6FBC; // type:function size:0x38 +json_object_object_delete = .text:0x800C6FF4; // type:function size:0x40 +json_object_new_object = .text:0x800C7034; // type:function size:0x74 +json_object_get_object = .text:0x800C70A8; // type:function size:0x2C +json_object_object_add = .text:0x800C70D4; // type:function size:0x58 +json_object_boolean_to_json_string = .text:0x800C712C; // type:function size:0x3C +json_object_new_boolean = .text:0x800C7168; // type:function size:0x50 +json_object_int_to_json_string = .text:0x800C71B8; // type:function size:0x1C +json_object_new_int = .text:0x800C71D4; // type:function size:0x50 +json_object_get_int = .text:0x800C7224; // type:function size:0xA8 +json_object_double_to_json_string = .text:0x800C72CC; // type:function size:0x1C +json_object_new_double = .text:0x800C72E8; // type:function size:0x50 +json_object_get_double = .text:0x800C7338; // type:function size:0xE4 +json_object_string_to_json_string = .text:0x800C741C; // type:function size:0x6C +json_object_string_delete = .text:0x800C7488; // type:function size:0x40 +json_object_new_string = .text:0x800C74C8; // type:function size:0x74 +json_object_get_string = .text:0x800C753C; // type:function size:0x2C +json_object_array_to_json_string = .text:0x800C7568; // type:function size:0xE4 +json_object_array_entry_free = .text:0x800C764C; // type:function size:0x4 +json_object_array_delete = .text:0x800C7650; // type:function size:0x40 +json_object_new_array = .text:0x800C7690; // type:function size:0x6C +json_object_array_length = .text:0x800C76FC; // type:function size:0x8 +json_object_array_add = .text:0x800C7704; // type:function size:0x8 +json_object_array_get_idx = .text:0x800C770C; // type:function size:0x8 +json_tokener_new = .text:0x800C7714; // type:function size:0x58 +json_tokener_free = .text:0x800C776C; // type:function size:0x44 +json_tokener_reset_level = .text:0x800C77B0; // type:function size:0x5C +json_tokener_reset = .text:0x800C780C; // type:function size:0x64 +json_tokener_parse = .text:0x800C7870; // type:function size:0x64 +json_tokener_parse_ex = .text:0x800C78D4; // type:function size:0x1998 +isspace = .text:0x800C926C; // type:function size:0x40 +lh_abort = .text:0x800C92AC; // type:function size:0x88 +lh_char_hash = .text:0x800C9334; // type:function size:0x38 +lh_char_equal = .text:0x800C936C; // type:function size:0x28 +lh_table_new = .text:0x800C9394; // type:function size:0xD4 +lh_kchar_table_new = .text:0x800C9468; // type:function size:0x14 +lh_table_resize = .text:0x800C947C; // type:function size:0xAC +lh_table_free = .text:0x800C9528; // type:function size:0x6C +lh_table_insert = .text:0x800C9594; // type:function size:0x190 +lh_table_lookup_entry = .text:0x800C9724; // type:function size:0xC4 +lh_table_delete_entry = .text:0x800C97E8; // type:function size:0x16C +lh_table_delete = .text:0x800C9954; // type:function size:0x48 +printbuf_new = .text:0x800C999C; // type:function size:0x7C +printbuf_memappend = .text:0x800C9A18; // type:function size:0xBC +vasprintf = .text:0x800C9AD4; // type:function size:0xB0 +sprintbuf = .text:0x800C9B84; // type:function size:0x12C +printbuf_reset = .text:0x800C9CB0; // type:function size:0x14 +printbuf_free = .text:0x800C9CC4; // type:function size:0x40 +fn_800C9D04 = .text:0x800C9D04; // type:function size:0x134 +fn_800C9E38 = .text:0x800C9E38; // type:function size:0x58 +fn_800C9E90 = .text:0x800C9E90; // type:function size:0x60 +fn_800C9EF0 = .text:0x800C9EF0; // type:function size:0x58 +fn_800C9F48 = .text:0x800C9F48; // type:function size:0x58 +fn_800C9FA0 = .text:0x800C9FA0; // type:function size:0x50 +fn_800C9FF0 = .text:0x800C9FF0; // type:function size:0x44 +fn_800CA034 = .text:0x800CA034; // type:function size:0x3C +fn_800CA070 = .text:0x800CA070; // type:function size:0x70 +fn_800CA0E0 = .text:0x800CA0E0; // type:function size:0x7C +fn_800CA15C = .text:0x800CA15C; // type:function size:0x5C +fn_800CA1B8 = .text:0x800CA1B8; // type:function size:0x5C +fn_800CA214 = .text:0x800CA214; // type:function size:0x120 +fn_800CA334 = .text:0x800CA334; // type:function size:0x30 +fn_800CA364 = .text:0x800CA364; // type:function size:0x30 +fn_800CA394 = .text:0x800CA394; // type:function size:0x68 +fn_800CA3FC = .text:0x800CA3FC; // type:function size:0x168 +fn_800CA564 = .text:0x800CA564; // type:function size:0x18 +fn_800CA57C = .text:0x800CA57C; // type:function size:0x26C +fn_800CA7E8 = .text:0x800CA7E8; // type:function size:0x7C +fn_800CA864 = .text:0x800CA864; // type:function size:0x10 +fn_800CA874 = .text:0x800CA874; // type:function size:0x20 +fn_800CA894 = .text:0x800CA894; // type:function size:0x4 +fn_800CA898 = .text:0x800CA898; // type:function size:0x24 +fn_800CA8BC = .text:0x800CA8BC; // type:function size:0x28 +__eq__6SymbolCFPCc = .text:0x800CA8E4; // type:function size:0x3C +fn_800CA920 = .text:0x800CA920; // type:function size:0x68 +fn_800CA988 = .text:0x800CA988; // type:function size:0x80 +fn_800CAA08 = .text:0x800CAA08; // type:function size:0x6C4 +MakeString__FPCcPCc_PCc = .text:0x800CB0CC; // type:function size:0x48 +fn_800CB114 = .text:0x800CB114; // type:function size:0x60 +Scale__FRC7Vector3RC7Vector3R7Vector3 = .text:0x800CB174; // type:function size:0x30 +Set__7Vector3Ffff = .text:0x800CB1A4; // type:function size:0x10 +fn_800CB1B4 = .text:0x800CB1B4; // type:function size:0x4 +Multiply__FRC7Vector3RC9TransformR7Vector3 = .text:0x800CB1B8; // type:function size:0x4C +fn_800CB204 = .text:0x800CB204; // type:function size:0x40 +fn_800CB244 = .text:0x800CB244; // type:function size:0x30 +fn_800CB274 = .text:0x800CB274; // type:function size:0xC +fn_800CB280 = .text:0x800CB280; // type:function size:0x3A0 +fn_800CB620 = .text:0x800CB620; // type:function size:0x4 +fn_800CB624 = .text:0x800CB624; // type:function size:0x90 +fn_800CB6B4 = .text:0x800CB6B4; // type:function size:0x4 +fn_800CB6B8 = .text:0x800CB6B8; // type:function size:0x248 +fn_800CB900 = .text:0x800CB900; // type:function size:0x70 +fn_800CB970 = .text:0x800CB970; // type:function size:0x68 +fn_800CB9D8 = .text:0x800CB9D8; // type:function size:0x120 +Scale__FRCQ23Hmx7Matrix3RC7Vector3RQ23Hmx7Matrix3 = .text:0x800CBAF8; // type:function size:0x5C +fn_800CBB54 = .text:0x800CBB54; // type:function size:0x34 +Zero__7Vector3Fv = .text:0x800CBB88; // type:function size:0x18 +Identity__Q23Hmx7Matrix3Fv = .text:0x800CBBA0; // type:function size:0x70 +fn_800CBC10 = .text:0x800CBC10; // type:function size:0x124 +fn_800CBD34 = .text:0x800CBD34; // type:function size:0x1E8 +fn_800CBF1C = .text:0x800CBF1C; // type:function size:0x4 +fn_800CBF20 = .text:0x800CBF20; // type:function size:0x8 +fn_800CBF28 = .text:0x800CBF28; // type:function size:0x4 +fn_800CBF2C = .text:0x800CBF2C; // type:function size:0x8 +fn_800CBF34 = .text:0x800CBF34; // type:function size:0xD0 +fn_800CC004 = .text:0x800CC004; // type:function size:0x9C +fn_800CC0A0 = .text:0x800CC0A0; // type:function size:0x1EC +fn_800CC28C = .text:0x800CC28C; // type:function size:0x8 +fn_800CC294 = .text:0x800CC294; // type:function size:0x8 +fn_800CC29C = .text:0x800CC29C; // type:function size:0x4 +fn_800CC2A0 = .text:0x800CC2A0; // type:function size:0x80 +fn_800CC320 = .text:0x800CC320; // type:function size:0x164 +fn_800CC484 = .text:0x800CC484; // type:function size:0x6C +fn_800CC4F0 = .text:0x800CC4F0; // type:function size:0x88 +fn_800CC578 = .text:0x800CC578; // type:function size:0xA8 +fn_800CC620 = .text:0x800CC620; // type:function size:0x60 +fn_800CC680 = .text:0x800CC680; // type:function size:0x28 +fn_800CC6A8 = .text:0x800CC6A8; // type:function size:0x1C +fn_800CC6C4 = .text:0x800CC6C4; // type:function size:0xE8 +fn_800CC7AC = .text:0x800CC7AC; // type:function size:0x8 +fn_800CC7B4 = .text:0x800CC7B4; // type:function size:0x54 +fn_800CC808 = .text:0x800CC808; // type:function size:0x154 +fn_800CC95C = .text:0x800CC95C; // type:function size:0x58 +fn_800CC9B4 = .text:0x800CC9B4; // type:function size:0x58 +fn_800CCA0C = .text:0x800CCA0C; // type:function size:0x60 +fn_800CCA6C = .text:0x800CCA6C; // type:function size:0x68 +fn_800CCAD4 = .text:0x800CCAD4; // type:function size:0x15C +fn_800CCC30 = .text:0x800CCC30; // type:function size:0x44 +fn_800CCC74 = .text:0x800CCC74; // type:function size:0x18 +fn_800CCC8C = .text:0x800CCC8C; // type:function size:0xB0 +fn_800CCD3C = .text:0x800CCD3C; // type:function size:0x6C +fn_800CCDA8 = .text:0x800CCDA8; // type:function size:0x10 +fn_800CCDB8 = .text:0x800CCDB8; // type:function size:0x180 +fn_800CCF38 = .text:0x800CCF38; // type:function size:0x58 +fn_800CCF90 = .text:0x800CCF90; // type:function size:0x58 +fn_800CCFE8 = .text:0x800CCFE8; // type:function size:0xB4 +fn_800CD09C = .text:0x800CD09C; // type:function size:0x38 +fn_800CD0D4 = .text:0x800CD0D4; // type:function size:0x5C +fn_800CD130 = .text:0x800CD130; // type:function size:0x108 +fn_800CD238 = .text:0x800CD238; // type:function size:0xC +fn_800CD244 = .text:0x800CD244; // type:function size:0x48 +__ct__10GemManagerFRC11TrackConfigP8TrackDir = .text:0x800CD28C; // type:function size:0x2E8 +fn_800CD574 = .text:0x800CD574; // type:function size:0x58 +fn_800CD5CC = .text:0x800CD5CC; // type:function size:0x80 +fn_800CD64C = .text:0x800CD64C; // type:function size:0x80 +fn_800CD6CC = .text:0x800CD6CC; // type:function size:0x58 +fn_800CD724 = .text:0x800CD724; // type:function size:0x54 +fn_800CD778 = .text:0x800CD778; // type:function size:0x5C +fn_800CD7D4 = .text:0x800CD7D4; // type:function size:0x6C +fn_800CD840 = .text:0x800CD840; // type:function size:0x28 +fn_800CD868 = .text:0x800CD868; // type:function size:0x10 +fn_800CD878 = .text:0x800CD878; // type:function size:0xC +fn_800CD884 = .text:0x800CD884; // type:function size:0x8 +fn_800CD88C = .text:0x800CD88C; // type:function size:0x3C +fn_800CD8C8 = .text:0x800CD8C8; // type:function size:0x14 +fn_800CD8DC = .text:0x800CD8DC; // type:function size:0x58 +fn_800CD934 = .text:0x800CD934; // type:function size:0x60 +fn_800CD994 = .text:0x800CD994; // type:function size:0x58 +fn_800CD9EC = .text:0x800CD9EC; // type:function size:0x58 +fn_800CDA44 = .text:0x800CDA44; // type:function size:0x50 +fn_800CDA94 = .text:0x800CDA94; // type:function size:0x58 +fn_800CDAEC = .text:0x800CDAEC; // type:function size:0x58 +fn_800CDB44 = .text:0x800CDB44; // type:function size:0x60 +fn_800CDBA4 = .text:0x800CDBA4; // type:function size:0x58 +fn_800CDBFC = .text:0x800CDBFC; // type:function size:0x58 +fn_800CDC54 = .text:0x800CDC54; // type:function size:0x58 +fn_800CDCAC = .text:0x800CDCAC; // type:function size:0x60 +fn_800CDD0C = .text:0x800CDD0C; // type:function size:0x58 +fn_800CDD64 = .text:0x800CDD64; // type:function size:0x58 +fn_800CDDBC = .text:0x800CDDBC; // type:function size:0x80 +fn_800CDE3C = .text:0x800CDE3C; // type:function size:0x80 +fn_800CDEBC = .text:0x800CDEBC; // type:function size:0x58 +fn_800CDF14 = .text:0x800CDF14; // type:function size:0x54 +fn_800CDF68 = .text:0x800CDF68; // type:function size:0x5C +fn_800CDFC4 = .text:0x800CDFC4; // type:function size:0x6C +fn_800CE030 = .text:0x800CE030; // type:function size:0x28 +fn_800CE058 = .text:0x800CE058; // type:function size:0x8 +fn_800CE060 = .text:0x800CE060; // type:function size:0x3C +fn_800CE09C = .text:0x800CE09C; // type:function size:0x58 +fn_800CE0F4 = .text:0x800CE0F4; // type:function size:0x80 +fn_800CE174 = .text:0x800CE174; // type:function size:0x80 +fn_800CE1F4 = .text:0x800CE1F4; // type:function size:0x58 +fn_800CE24C = .text:0x800CE24C; // type:function size:0x10 +fn_800CE25C = .text:0x800CE25C; // type:function size:0x54 +fn_800CE2B0 = .text:0x800CE2B0; // type:function size:0x5C +fn_800CE30C = .text:0x800CE30C; // type:function size:0x6C +fn_800CE378 = .text:0x800CE378; // type:function size:0x28 +fn_800CE3A0 = .text:0x800CE3A0; // type:function size:0x10 +fn_800CE3B0 = .text:0x800CE3B0; // type:function size:0x8 +fn_800CE3B8 = .text:0x800CE3B8; // type:function size:0xC +fn_800CE3C4 = .text:0x800CE3C4; // type:function size:0x8 +fn_800CE3CC = .text:0x800CE3CC; // type:function size:0x3C +fn_800CE408 = .text:0x800CE408; // type:function size:0x14 +fn_800CE41C = .text:0x800CE41C; // type:function size:0x4 +fn_800CE420 = .text:0x800CE420; // type:function size:0xA0 +fn_800CE4C0 = .text:0x800CE4C0; // type:function size:0xA0 +fn_800CE560 = .text:0x800CE560; // type:function size:0x30 +fn_800CE590 = .text:0x800CE590; // type:function size:0x30 +fn_800CE5C0 = .text:0x800CE5C0; // type:function size:0x40 +fn_800CE600 = .text:0x800CE600; // type:function size:0x44 +fn_800CE644 = .text:0x800CE644; // type:function size:0x3C +fn_800CE680 = .text:0x800CE680; // type:function size:0x70 +fn_800CE6F0 = .text:0x800CE6F0; // type:function size:0x30 +fn_800CE720 = .text:0x800CE720; // type:function size:0x30 +fn_800CE750 = .text:0x800CE750; // type:function size:0x60 +fn_800CE7B0 = .text:0x800CE7B0; // type:function size:0xC +fn_800CE7BC = .text:0x800CE7BC; // type:function size:0x14 +fn_800CE7D0 = .text:0x800CE7D0; // type:function size:0x8 +fn_800CE7D8 = .text:0x800CE7D8; // type:function size:0x30 +fn_800CE808 = .text:0x800CE808; // type:function size:0x30 +fn_800CE838 = .text:0x800CE838; // type:function size:0x60 +fn_800CE898 = .text:0x800CE898; // type:function size:0x30 +fn_800CE8C8 = .text:0x800CE8C8; // type:function size:0x30 +fn_800CE8F8 = .text:0x800CE8F8; // type:function size:0x40 +fn_800CE938 = .text:0x800CE938; // type:function size:0x30 +fn_800CE968 = .text:0x800CE968; // type:function size:0x30 +fn_800CE998 = .text:0x800CE998; // type:function size:0x40 +fn_800CE9D8 = .text:0x800CE9D8; // type:function size:0xEC +fn_800CEAC4 = .text:0x800CEAC4; // type:function size:0x4 +fn_800CEAC8 = .text:0x800CEAC8; // type:function size:0x3C +fn_800CEB04 = .text:0x800CEB04; // type:function size:0x40 +fn_800CEB44 = .text:0x800CEB44; // type:function size:0x8C +fn_800CEBD0 = .text:0x800CEBD0; // type:function size:0x8 +fn_800CEBD8 = .text:0x800CEBD8; // type:function size:0x2C +fn_800CEC04 = .text:0x800CEC04; // type:function size:0x58 +fn_800CEC5C = .text:0x800CEC5C; // type:function size:0x28 +fn_800CEC84 = .text:0x800CEC84; // type:function size:0x68 +fn_800CECEC = .text:0x800CECEC; // type:function size:0x188 +fn_800CEE74 = .text:0x800CEE74; // type:function size:0x4 +fn_800CEE78 = .text:0x800CEE78; // type:function size:0x4F0 +fn_800CF368 = .text:0x800CF368; // type:function size:0x8 +Minimum__Fii = .text:0x800CF370; // type:function size:0x10 +fn_800CF380 = .text:0x800CF380; // type:function size:0x10 +fn_800CF390 = .text:0x800CF390; // type:function size:0x10 +fn_800CF3A0 = .text:0x800CF3A0; // type:function size:0x8 +fn_800CF3A8 = .text:0x800CF3A8; // type:function size:0xB0 +fn_800CF458 = .text:0x800CF458; // type:function size:0x4 +fn_800CF45C = .text:0x800CF45C; // type:function size:0x3C +fn_800CF498 = .text:0x800CF498; // type:function size:0x8C +fn_800CF524 = .text:0x800CF524; // type:function size:0x2C +fn_800CF550 = .text:0x800CF550; // type:function size:0x1C0 +fn_800CF710 = .text:0x800CF710; // type:function size:0x40 +fn_800CF750 = .text:0x800CF750; // type:function size:0xE4 +fn_800CF834 = .text:0x800CF834; // type:function size:0x2E0 +fn_800CFB14 = .text:0x800CFB14; // type:function size:0x58 +fn_800CFB6C = .text:0x800CFB6C; // type:function size:0x80 +fn_800CFBEC = .text:0x800CFBEC; // type:function size:0x80 +fn_800CFC6C = .text:0x800CFC6C; // type:function size:0x58 +fn_800CFCC4 = .text:0x800CFCC4; // type:function size:0x10 +fn_800CFCD4 = .text:0x800CFCD4; // type:function size:0x54 +fn_800CFD28 = .text:0x800CFD28; // type:function size:0x5C +fn_800CFD84 = .text:0x800CFD84; // type:function size:0x6C +fn_800CFDF0 = .text:0x800CFDF0; // type:function size:0x28 +fn_800CFE18 = .text:0x800CFE18; // type:function size:0x10 +fn_800CFE28 = .text:0x800CFE28; // type:function size:0x8 +fn_800CFE30 = .text:0x800CFE30; // type:function size:0xC +fn_800CFE3C = .text:0x800CFE3C; // type:function size:0x8 +fn_800CFE44 = .text:0x800CFE44; // type:function size:0x3C +fn_800CFE80 = .text:0x800CFE80; // type:function size:0x14 +fn_800CFE94 = .text:0x800CFE94; // type:function size:0x24 +fn_800CFEB8 = .text:0x800CFEB8; // type:function size:0x4 +fn_800CFEBC = .text:0x800CFEBC; // type:function size:0x88 +fn_800CFF44 = .text:0x800CFF44; // type:function size:0x2C +fn_800CFF70 = .text:0x800CFF70; // type:function size:0x10 +fn_800CFF80 = .text:0x800CFF80; // type:function size:0xD4 +fn_800D0054 = .text:0x800D0054; // type:function size:0x30 +fn_800D0084 = .text:0x800D0084; // type:function size:0x30 +fn_800D00B4 = .text:0x800D00B4; // type:function size:0x40 +fn_800D00F4 = .text:0x800D00F4; // type:function size:0x38C +fn_800D0480 = .text:0x800D0480; // type:function size:0x4 +fn_800D0484 = .text:0x800D0484; // type:function size:0x3C +fn_800D04C0 = .text:0x800D04C0; // type:function size:0x40 +fn_800D0500 = .text:0x800D0500; // type:function size:0x8C +fn_800D058C = .text:0x800D058C; // type:function size:0x8 +fn_800D0594 = .text:0x800D0594; // type:function size:0x2C +fn_800D05C0 = .text:0x800D05C0; // type:function size:0x58 +fn_800D0618 = .text:0x800D0618; // type:function size:0x28 +fn_800D0640 = .text:0x800D0640; // type:function size:0x68 +fn_800D06A8 = .text:0x800D06A8; // type:function size:0x18 +fn_800D06C0 = .text:0x800D06C0; // type:function size:0x18 +fn_800D06D8 = .text:0x800D06D8; // type:function size:0x348 +fn_800D0A20 = .text:0x800D0A20; // type:function size:0x14C +fn_800D0B6C = .text:0x800D0B6C; // type:function size:0x10 +fn_800D0B7C = .text:0x800D0B7C; // type:function size:0x10 +fn_800D0B8C = .text:0x800D0B8C; // type:function size:0xE0C +fn_800D1998 = .text:0x800D1998; // type:function size:0x4 +fn_800D199C = .text:0x800D199C; // type:function size:0x88 +fn_800D1A24 = .text:0x800D1A24; // type:function size:0x2C +fn_800D1A50 = .text:0x800D1A50; // type:function size:0x10 +fn_800D1A60 = .text:0x800D1A60; // type:function size:0xEC +fn_800D1B4C = .text:0x800D1B4C; // type:function size:0x30 +fn_800D1B7C = .text:0x800D1B7C; // type:function size:0x98 +fn_800D1C14 = .text:0x800D1C14; // type:function size:0x70 +fn_800D1C84 = .text:0x800D1C84; // type:function size:0x30 +fn_800D1CB4 = .text:0x800D1CB4; // type:function size:0xAC +fn_800D1D60 = .text:0x800D1D60; // type:function size:0xC +fn_800D1D6C = .text:0x800D1D6C; // type:function size:0x10 +fn_800D1D7C = .text:0x800D1D7C; // type:function size:0x8 +fn_800D1D84 = .text:0x800D1D84; // type:function size:0x8 +fn_800D1D8C = .text:0x800D1D8C; // type:function size:0x10 +fn_800D1D9C = .text:0x800D1D9C; // type:function size:0x4 +fn_800D1DA0 = .text:0x800D1DA0; // type:function size:0x88 +fn_800D1E28 = .text:0x800D1E28; // type:function size:0x2C +fn_800D1E54 = .text:0x800D1E54; // type:function size:0x10 +fn_800D1E64 = .text:0x800D1E64; // type:function size:0x2C +fn_800D1E90 = .text:0x800D1E90; // type:function size:0x1C +fn_800D1EAC = .text:0x800D1EAC; // type:function size:0x10 +fn_800D1EBC = .text:0x800D1EBC; // type:function size:0x10 +fn_800D1ECC = .text:0x800D1ECC; // type:function size:0x24 +fn_800D1EF0 = .text:0x800D1EF0; // type:function size:0x18 +fn_800D1F08 = .text:0x800D1F08; // type:function size:0x8 +fn_800D1F10 = .text:0x800D1F10; // type:function size:0x10 +fn_800D1F20 = .text:0x800D1F20; // type:function size:0x8 +fn_800D1F28 = .text:0x800D1F28; // type:function size:0x14 +fn_800D1F3C = .text:0x800D1F3C; // type:function size:0x10 +fn_800D1F4C = .text:0x800D1F4C; // type:function size:0x38 +fn_800D1F84 = .text:0x800D1F84; // type:function size:0x14 +fn_800D1F98 = .text:0x800D1F98; // type:function size:0x8 +fn_800D1FA0 = .text:0x800D1FA0; // type:function size:0x14 +fn_800D1FB4 = .text:0x800D1FB4; // type:function size:0x2C +fn_800D1FE0 = .text:0x800D1FE0; // type:function size:0x14 +fn_800D1FF4 = .text:0x800D1FF4; // type:function size:0x4 +fn_800D1FF8 = .text:0x800D1FF8; // type:function size:0x3C +fn_800D2034 = .text:0x800D2034; // type:function size:0x40 +fn_800D2074 = .text:0x800D2074; // type:function size:0x8C +fn_800D2100 = .text:0x800D2100; // type:function size:0x8 +fn_800D2108 = .text:0x800D2108; // type:function size:0x2C +fn_800D2134 = .text:0x800D2134; // type:function size:0x58 +fn_800D218C = .text:0x800D218C; // type:function size:0x28 +fn_800D21B4 = .text:0x800D21B4; // type:function size:0x68 +fn_800D221C = .text:0x800D221C; // type:function size:0x4 +fn_800D2220 = .text:0x800D2220; // type:function size:0x4 +fn_800D2224 = .text:0x800D2224; // type:function size:0x3C +fn_800D2260 = .text:0x800D2260; // type:function size:0x40 +fn_800D22A0 = .text:0x800D22A0; // type:function size:0x8C +fn_800D232C = .text:0x800D232C; // type:function size:0x8 +fn_800D2334 = .text:0x800D2334; // type:function size:0x2C +fn_800D2360 = .text:0x800D2360; // type:function size:0x58 +fn_800D23B8 = .text:0x800D23B8; // type:function size:0x28 +fn_800D23E0 = .text:0x800D23E0; // type:function size:0x68 +fn_800D2448 = .text:0x800D2448; // type:function size:0x4 +fn_800D244C = .text:0x800D244C; // type:function size:0x80 +fn_800D24CC = .text:0x800D24CC; // type:function size:0xDC +fn_800D25A8 = .text:0x800D25A8; // type:function size:0xBC +fn_800D2664 = .text:0x800D2664; // type:function size:0x8 +UpdateLeftyFlip__10GemManagerFv = .text:0x800D266C; // type:function size:0x5F8 +fn_800D2C64 = .text:0x800D2C64; // type:function size:0x2C +fn_800D2C90 = .text:0x800D2C90; // type:function size:0x8 +fn_800D2C98 = .text:0x800D2C98; // type:function size:0xA0 +fn_800D2D38 = .text:0x800D2D38; // type:function size:0x40 +fn_800D2D78 = .text:0x800D2D78; // type:function size:0xC +fn_800D2D84 = .text:0x800D2D84; // type:function size:0x8 +fn_800D2D8C = .text:0x800D2D8C; // type:function size:0x8 +fn_800D2D94 = .text:0x800D2D94; // type:function size:0xE4 +fn_800D2E78 = .text:0x800D2E78; // type:function size:0x44 +fn_800D2EBC = .text:0x800D2EBC; // type:function size:0x1C +fn_800D2ED8 = .text:0x800D2ED8; // type:function size:0xA0 +fn_800D2F78 = .text:0x800D2F78; // type:function size:0x8 +fn_800D2F80 = .text:0x800D2F80; // type:function size:0x8 +fn_800D2F88 = .text:0x800D2F88; // type:function size:0xDC +fn_800D3064 = .text:0x800D3064; // type:function size:0x14 +fn_800D3078 = .text:0x800D3078; // type:function size:0x20 +fn_800D3098 = .text:0x800D3098; // type:function size:0x1C8 +fn_800D3260 = .text:0x800D3260; // type:function size:0x18 +fn_800D3278 = .text:0x800D3278; // type:function size:0x18 +Maximum__Fii = .text:0x800D3290; // type:function size:0x10 +fn_800D32A0 = .text:0x800D32A0; // type:function size:0xD8 +fn_800D3378 = .text:0x800D3378; // type:function size:0x44 +fn_800D33BC = .text:0x800D33BC; // type:function size:0x1C8 +fn_800D3584 = .text:0x800D3584; // type:function size:0x8 +fn_800D358C = .text:0x800D358C; // type:function size:0xA0 +fn_800D362C = .text:0x800D362C; // type:function size:0x318 +fn_800D3944 = .text:0x800D3944; // type:function size:0x24 +fn_800D3968 = .text:0x800D3968; // type:function size:0x24 +fn_800D398C = .text:0x800D398C; // type:function size:0x8 +fn_800D3994 = .text:0x800D3994; // type:function size:0x74 +fn_800D3A08 = .text:0x800D3A08; // type:function size:0x15C +fn_800D3B64 = .text:0x800D3B64; // type:function size:0x40 +fn_800D3BA4 = .text:0x800D3BA4; // type:function size:0x90 +fn_800D3C34 = .text:0x800D3C34; // type:function size:0x154 +fn_800D3D88 = .text:0x800D3D88; // type:function size:0x4 +fn_800D3D8C = .text:0x800D3D8C; // type:function size:0x4 +fn_800D3D90 = .text:0x800D3D90; // type:function size:0x8 +fn_800D3D98 = .text:0x800D3D98; // type:function size:0x8 +fn_800D3DA0 = .text:0x800D3DA0; // type:function size:0xC +fn_800D3DAC = .text:0x800D3DAC; // type:function size:0x4 +fn_800D3DB0 = .text:0x800D3DB0; // type:function size:0x8 +fn_800D3DB8 = .text:0x800D3DB8; // type:function size:0x8 +fn_800D3DC0 = .text:0x800D3DC0; // type:function size:0x64 +fn_800D3E24 = .text:0x800D3E24; // type:function size:0xD0 +fn_800D3EF4 = .text:0x800D3EF4; // type:function size:0x78 +fn_800D3F6C = .text:0x800D3F6C; // type:function size:0x4 +fn_800D3F70 = .text:0x800D3F70; // type:function size:0x44 +fn_800D3FB4 = .text:0x800D3FB4; // type:function size:0x6C +fn_800D4020 = .text:0x800D4020; // type:function size:0x2C +fn_800D404C = .text:0x800D404C; // type:function size:0x30 +fn_800D407C = .text:0x800D407C; // type:function size:0x124 +fn_800D41A0 = .text:0x800D41A0; // type:function size:0x4 +fn_800D41A4 = .text:0x800D41A4; // type:function size:0x54 +fn_800D41F8 = .text:0x800D41F8; // type:function size:0x64 +fn_800D425C = .text:0x800D425C; // type:function size:0x50 +fn_800D42AC = .text:0x800D42AC; // type:function size:0x10 +fn_800D42BC = .text:0x800D42BC; // type:function size:0x1C +fn_800D42D8 = .text:0x800D42D8; // type:function size:0x10 +fn_800D42E8 = .text:0x800D42E8; // type:function size:0x94 +fn_800D437C = .text:0x800D437C; // type:function size:0x28 +fn_800D43A4 = .text:0x800D43A4; // type:function size:0x4 +fn_800D43A8 = .text:0x800D43A8; // type:function size:0xD0 +fn_800D4478 = .text:0x800D4478; // type:function size:0x8 +fn_800D4480 = .text:0x800D4480; // type:function size:0xD8 +fn_800D4558 = .text:0x800D4558; // type:function size:0x8 +fn_800D4560 = .text:0x800D4560; // type:function size:0x8 +fn_800D4568 = .text:0x800D4568; // type:function size:0x44 +fn_800D45AC = .text:0x800D45AC; // type:function size:0x8 +fn_800D45B4 = .text:0x800D45B4; // type:function size:0x174 +Clamp__Fiii = .text:0x800D4728; // type:function size:0x24 +fn_800D474C = .text:0x800D474C; // type:function size:0x8 +fn_800D4754 = .text:0x800D4754; // type:function size:0x8 +fn_800D475C = .text:0x800D475C; // type:function size:0x12C +fn_800D4888 = .text:0x800D4888; // type:function size:0x4 +fn_800D488C = .text:0x800D488C; // type:function size:0x88 +fn_800D4914 = .text:0x800D4914; // type:function size:0x2C +fn_800D4940 = .text:0x800D4940; // type:function size:0x10 +fn_800D4950 = .text:0x800D4950; // type:function size:0x24 +fn_800D4974 = .text:0x800D4974; // type:function size:0x94 +fn_800D4A08 = .text:0x800D4A08; // type:function size:0x9C +fn_800D4AA4 = .text:0x800D4AA4; // type:function size:0x44 +fn_800D4AE8 = .text:0x800D4AE8; // type:function size:0x64 +fn_800D4B4C = .text:0x800D4B4C; // type:function size:0x44 +fn_800D4B90 = .text:0x800D4B90; // type:function size:0x4 +fn_800D4B94 = .text:0x800D4B94; // type:function size:0xC4 +fn_800D4C58 = .text:0x800D4C58; // type:function size:0x6C +fn_800D4CC4 = .text:0x800D4CC4; // type:function size:0x44 +fn_800D4D08 = .text:0x800D4D08; // type:function size:0x4 +fn_800D4D0C = .text:0x800D4D0C; // type:function size:0x54 +fn_800D4D60 = .text:0x800D4D60; // type:function size:0x64 +fn_800D4DC4 = .text:0x800D4DC4; // type:function size:0x50 +fn_800D4E14 = .text:0x800D4E14; // type:function size:0x7C +fn_800D4E90 = .text:0x800D4E90; // type:function size:0x3C +fn_800D4ECC = .text:0x800D4ECC; // type:function size:0x8C +fn_800D4F58 = .text:0x800D4F58; // type:function size:0x238 +fn_800D5190 = .text:0x800D5190; // type:function size:0xC +fn_800D519C = .text:0x800D519C; // type:function size:0xC +fn_800D51A8 = .text:0x800D51A8; // type:function size:0x40 +fn_800D51E8 = .text:0x800D51E8; // type:function size:0x40 +fn_800D5228 = .text:0x800D5228; // type:function size:0x18 +fn_800D5240 = .text:0x800D5240; // type:function size:0xF4 +fn_800D5334 = .text:0x800D5334; // type:function size:0x40 +fn_800D5374 = .text:0x800D5374; // type:function size:0x40 +fn_800D53B4 = .text:0x800D53B4; // type:function size:0xA0 +fn_800D5454 = .text:0x800D5454; // type:function size:0xC +fn_800D5460 = .text:0x800D5460; // type:function size:0x70 +fn_800D54D0 = .text:0x800D54D0; // type:function size:0x70 +fn_800D5540 = .text:0x800D5540; // type:function size:0x44 +fn_800D5584 = .text:0x800D5584; // type:function size:0x110 +fn_800D5694 = .text:0x800D5694; // type:function size:0x8 +fn_800D569C = .text:0x800D569C; // type:function size:0x8 +fn_800D56A4 = .text:0x800D56A4; // type:function size:0xC0 +fn_800D5764 = .text:0x800D5764; // type:function size:0x84 +fn_800D57E8 = .text:0x800D57E8; // type:function size:0x10 +fn_800D57F8 = .text:0x800D57F8; // type:function size:0x74 +fn_800D586C = .text:0x800D586C; // type:function size:0x48 +fn_800D58B4 = .text:0x800D58B4; // type:function size:0xD4 +fn_800D5988 = .text:0x800D5988; // type:function size:0x28 +fn_800D59B0 = .text:0x800D59B0; // type:function size:0xA8 +fn_800D5A58 = .text:0x800D5A58; // type:function size:0xFC +fn_800D5B54 = .text:0x800D5B54; // type:function size:0x58 +fn_800D5BAC = .text:0x800D5BAC; // type:function size:0x44 +fn_800D5BF0 = .text:0x800D5BF0; // type:function size:0x18 +fn_800D5C08 = .text:0x800D5C08; // type:function size:0x4 +fn_800D5C0C = .text:0x800D5C0C; // type:function size:0x40 +fn_800D5C4C = .text:0x800D5C4C; // type:function size:0x74 +fn_800D5CC0 = .text:0x800D5CC0; // type:function size:0x8 +fn_800D5CC8 = .text:0x800D5CC8; // type:function size:0x4 +fn_800D5CCC = .text:0x800D5CCC; // type:function size:0x40 +fn_800D5D0C = .text:0x800D5D0C; // type:function size:0xA0 +fn_800D5DAC = .text:0x800D5DAC; // type:function size:0x8 +fn_800D5DB4 = .text:0x800D5DB4; // type:function size:0x70 +fn_800D5E24 = .text:0x800D5E24; // type:function size:0x68 +fn_800D5E8C = .text:0x800D5E8C; // type:function size:0x68 +fn_800D5EF4 = .text:0x800D5EF4; // type:function size:0xCC +fn_800D5FC0 = .text:0x800D5FC0; // type:function size:0x60 +fn_800D6020 = .text:0x800D6020; // type:function size:0x58 +fn_800D6078 = .text:0x800D6078; // type:function size:0xC +fn_800D6084 = .text:0x800D6084; // type:function size:0x114 +fn_800D6198 = .text:0x800D6198; // type:function size:0x60 +fn_800D61F8 = .text:0x800D61F8; // type:function size:0x5C +fn_800D6254 = .text:0x800D6254; // type:function size:0x54 +fn_800D62A8 = .text:0x800D62A8; // type:function size:0x5C +fn_800D6304 = .text:0x800D6304; // type:function size:0x5C +fn_800D6360 = .text:0x800D6360; // type:function size:0xCC +fn_800D642C = .text:0x800D642C; // type:function size:0x5C +fn_800D6488 = .text:0x800D6488; // type:function size:0xC +fn_800D6494 = .text:0x800D6494; // type:function size:0x5C +fn_800D64F0 = .text:0x800D64F0; // type:function size:0x60 +fn_800D6550 = .text:0x800D6550; // type:function size:0x5C +fn_800D65AC = .text:0x800D65AC; // type:function size:0xC +fn_800D65B8 = .text:0x800D65B8; // type:function size:0x114 +fn_800D66CC = .text:0x800D66CC; // type:function size:0x5C +fn_800D6728 = .text:0x800D6728; // type:function size:0x54 +fn_800D677C = .text:0x800D677C; // type:function size:0x5C +fn_800D67D8 = .text:0x800D67D8; // type:function size:0x114 +fn_800D68EC = .text:0x800D68EC; // type:function size:0x5C +fn_800D6948 = .text:0x800D6948; // type:function size:0x5C +fn_800D69A4 = .text:0x800D69A4; // type:function size:0x54 +fn_800D69F8 = .text:0x800D69F8; // type:function size:0x5C +fn_800D6A54 = .text:0x800D6A54; // type:function size:0x5C +fn_800D6AB0 = .text:0x800D6AB0; // type:function size:0xCC +fn_800D6B7C = .text:0x800D6B7C; // type:function size:0x60 +fn_800D6BDC = .text:0x800D6BDC; // type:function size:0x114 +fn_800D6CF0 = .text:0x800D6CF0; // type:function size:0x5C +fn_800D6D4C = .text:0x800D6D4C; // type:function size:0x5C +fn_800D6DA8 = .text:0x800D6DA8; // type:function size:0x54 +fn_800D6DFC = .text:0x800D6DFC; // type:function size:0x5C +fn_800D6E58 = .text:0x800D6E58; // type:function size:0x5C +fn_800D6EB4 = .text:0x800D6EB4; // type:function size:0xC +fn_800D6EC0 = .text:0x800D6EC0; // type:function size:0x388 +fn_800D7248 = .text:0x800D7248; // type:function size:0x6C +fn_800D72B4 = .text:0x800D72B4; // type:function size:0x2C +fn_800D72E0 = .text:0x800D72E0; // type:function size:0x10 +fn_800D72F0 = .text:0x800D72F0; // type:function size:0x24 +fn_800D7314 = .text:0x800D7314; // type:function size:0x158 +fn_800D746C = .text:0x800D746C; // type:function size:0x44 +fn_800D74B0 = .text:0x800D74B0; // type:function size:0x8 +fn_800D74B8 = .text:0x800D74B8; // type:function size:0x104 +fn_800D75BC = .text:0x800D75BC; // type:function size:0x5C +fn_800D7618 = .text:0x800D7618; // type:function size:0x10 +fn_800D7628 = .text:0x800D7628; // type:function size:0x44 +__ct__14GemRepTemplateFRC11TrackConfig = .text:0x800D766C; // type:function size:0x238 +fn_800D78A4 = .text:0x800D78A4; // type:function size:0x5C +fn_800D7900 = .text:0x800D7900; // type:function size:0xC +fn_800D790C = .text:0x800D790C; // type:function size:0x14 +__ct__7Vector2Fff = .text:0x800D7920; // type:function size:0xC +FindFloat__9DataArrayCF6Symbol = .text:0x800D792C; // type:function size:0x38 +GetFloatAtIndex__9DataArrayCFi = .text:0x800D7964; // type:function size:0x34 +fn_800D7998 = .text:0x800D7998; // type:function size:0x84 +fn_800D7A1C = .text:0x800D7A1C; // type:function size:0x5C +fn_800D7A78 = .text:0x800D7A78; // type:function size:0x5C +fn_800D7AD4 = .text:0x800D7AD4; // type:function size:0x24 +fn_800D7AF8 = .text:0x800D7AF8; // type:function size:0x1E8 +fn_800D7CE0 = .text:0x800D7CE0; // type:function size:0xA0 +fn_800D7D80 = .text:0x800D7D80; // type:function size:0x68 +fn_800D7DE8 = .text:0x800D7DE8; // type:function size:0x5C +fn_800D7E44 = .text:0x800D7E44; // type:function size:0x94 +fn_800D7ED8 = .text:0x800D7ED8; // type:function size:0x4 +fn_800D7EDC = .text:0x800D7EDC; // type:function size:0x28 +fn_800D7F04 = .text:0x800D7F04; // type:function size:0x28 +fn_800D7F2C = .text:0x800D7F2C; // type:function size:0x34 +fn_800D7F60 = .text:0x800D7F60; // type:function size:0x48 +fn_800D7FA8 = .text:0x800D7FA8; // type:function size:0x4C +fn_800D7FF4 = .text:0x800D7FF4; // type:function size:0x38 +fn_800D802C = .text:0x800D802C; // type:function size:0x3C +fn_800D8068 = .text:0x800D8068; // type:function size:0xC4 +fn_800D812C = .text:0x800D812C; // type:function size:0x80 +AbsThunk__Fd = .text:0x800D81AC; // type:function size:0x4 +FAbsFloat__Fd = .text:0x800D81B0; // type:function size:0x24 +FAbs__Fd = .text:0x800D81D4; // type:function size:0x8 +fn_800D81DC = .text:0x800D81DC; // type:function size:0x144 +fn_800D8320 = .text:0x800D8320; // type:function size:0x78 +fn_800D8398 = .text:0x800D8398; // type:function size:0xD4 +fn_800D846C = .text:0x800D846C; // type:function size:0xC +fn_800D8478 = .text:0x800D8478; // type:function size:0xAC +fn_800D8524 = .text:0x800D8524; // type:function size:0xC +fn_800D8530 = .text:0x800D8530; // type:function size:0x90 +fn_800D85C0 = .text:0x800D85C0; // type:function size:0xE8 +fn_800D86A8 = .text:0x800D86A8; // type:function size:0xAC +fn_800D8754 = .text:0x800D8754; // type:function size:0x64 +fn_800D87B8 = .text:0x800D87B8; // type:function size:0xC +fn_800D87C4 = .text:0x800D87C4; // type:function size:0x60 +fn_800D8824 = .text:0x800D8824; // type:function size:0x74 +fn_800D8898 = .text:0x800D8898; // type:function size:0xAC +fn_800D8944 = .text:0x800D8944; // type:function size:0x6C +fn_800D89B0 = .text:0x800D89B0; // type:function size:0xC +fn_800D89BC = .text:0x800D89BC; // type:function size:0x58 +fn_800D8A14 = .text:0x800D8A14; // type:function size:0x7C +__as__7Vector2FRC7Vector2 = .text:0x800D8A90; // type:function size:0x14 +fn_800D8AA4 = .text:0x800D8AA4; // type:function size:0x24 +__as__7Vector3FRC7Vector3 = .text:0x800D8AC8; // type:function size:0x1C +fn_800D8AE4 = .text:0x800D8AE4; // type:function size:0xEC +fn_800D8BD0 = .text:0x800D8BD0; // type:function size:0x7C +fn_800D8C4C = .text:0x800D8C4C; // type:function size:0x74 +fn_800D8CC0 = .text:0x800D8CC0; // type:function size:0x94 +fn_800D8D54 = .text:0x800D8D54; // type:function size:0x7C +fn_800D8DD0 = .text:0x800D8DD0; // type:function size:0x58 +fn_800D8E28 = .text:0x800D8E28; // type:function size:0x64 +fn_800D8E8C = .text:0x800D8E8C; // type:function size:0x28 +fn_800D8EB4 = .text:0x800D8EB4; // type:function size:0x68 +fn_800D8F1C = .text:0x800D8F1C; // type:function size:0xC +fn_800D8F28 = .text:0x800D8F28; // type:function size:0x64 +fn_800D8F8C = .text:0x800D8F8C; // type:function size:0x8 +fn_800D8F94 = .text:0x800D8F94; // type:function size:0xA4 +fn_800D9038 = .text:0x800D9038; // type:function size:0x10 +fn_800D9048 = .text:0x800D9048; // type:function size:0x14 +fn_800D905C = .text:0x800D905C; // type:function size:0xA0 +fn_800D90FC = .text:0x800D90FC; // type:function size:0x10 +fn_800D910C = .text:0x800D910C; // type:function size:0x10 +fn_800D911C = .text:0x800D911C; // type:function size:0x58 +fn_800D9174 = .text:0x800D9174; // type:function size:0x5C +fn_800D91D0 = .text:0x800D91D0; // type:function size:0xCC +fn_800D929C = .text:0x800D929C; // type:function size:0x5C +fn_800D92F8 = .text:0x800D92F8; // type:function size:0xC +fn_800D9304 = .text:0x800D9304; // type:function size:0x5C +fn_800D9360 = .text:0x800D9360; // type:function size:0x10 +fn_800D9370 = .text:0x800D9370; // type:function size:0x54 +fn_800D93C4 = .text:0x800D93C4; // type:function size:0x5C +fn_800D9420 = .text:0x800D9420; // type:function size:0x6C +fn_800D948C = .text:0x800D948C; // type:function size:0x28 +fn_800D94B4 = .text:0x800D94B4; // type:function size:0x10 +fn_800D94C4 = .text:0x800D94C4; // type:function size:0xC +fn_800D94D0 = .text:0x800D94D0; // type:function size:0x8 +fn_800D94D8 = .text:0x800D94D8; // type:function size:0x3C +fn_800D9514 = .text:0x800D9514; // type:function size:0x60 +fn_800D9574 = .text:0x800D9574; // type:function size:0x5C +fn_800D95D0 = .text:0x800D95D0; // type:function size:0x10 +fn_800D95E0 = .text:0x800D95E0; // type:function size:0x1C +fn_800D95FC = .text:0x800D95FC; // type:function size:0x14 +fn_800D9610 = .text:0x800D9610; // type:function size:0xC +fn_800D961C = .text:0x800D961C; // type:function size:0x10 +fn_800D962C = .text:0x800D962C; // type:function size:0x340 +fn_800D996C = .text:0x800D996C; // type:function size:0xA0 +fn_800D9A0C = .text:0x800D9A0C; // type:function size:0x5C +fn_800D9A68 = .text:0x800D9A68; // type:function size:0x10 +fn_800D9A78 = .text:0x800D9A78; // type:function size:0xA8 +fn_800D9B20 = .text:0x800D9B20; // type:function size:0x10 +fn_800D9B30 = .text:0x800D9B30; // type:function size:0x1C +fn_800D9B4C = .text:0x800D9B4C; // type:function size:0xC +fn_800D9B58 = .text:0x800D9B58; // type:function size:0x20 +fn_800D9B78 = .text:0x800D9B78; // type:function size:0x20 +fn_800D9B98 = .text:0x800D9B98; // type:function size:0x20 +fn_800D9BB8 = .text:0x800D9BB8; // type:function size:0x20 +fn_800D9BD8 = .text:0x800D9BD8; // type:function size:0x20 +fn_800D9BF8 = .text:0x800D9BF8; // type:function size:0x20 +fn_800D9C18 = .text:0x800D9C18; // type:function size:0x24 +fn_800D9C3C = .text:0x800D9C3C; // type:function size:0x24 +fn_800D9C60 = .text:0x800D9C60; // type:function size:0x24 +fn_800D9C84 = .text:0x800D9C84; // type:function size:0x24 +fn_800D9CA8 = .text:0x800D9CA8; // type:function size:0x84 +fn_800D9D2C = .text:0x800D9D2C; // type:function size:0x50 +fn_800D9D7C = .text:0x800D9D7C; // type:function size:0x58 +fn_800D9DD4 = .text:0x800D9DD4; // type:function size:0x50 +fn_800D9E24 = .text:0x800D9E24; // type:function size:0x58 +fn_800D9E7C = .text:0x800D9E7C; // type:function size:0x58 +fn_800D9ED4 = .text:0x800D9ED4; // type:function size:0x58 +fn_800D9F2C = .text:0x800D9F2C; // type:function size:0xAC +fn_800D9FD8 = .text:0x800D9FD8; // type:function size:0xAC +fn_800DA084 = .text:0x800DA084; // type:function size:0x8 +fn_800DA08C = .text:0x800DA08C; // type:function size:0x1C +__ct__8GemTrackFP8BandUser = .text:0x800DA0A8; // type:function size:0x13C +fn_800DA1E4 = .text:0x800DA1E4; // type:function size:0x6C +fn_800DA250 = .text:0x800DA250; // type:function size:0x40 +fn_800DA290 = .text:0x800DA290; // type:function size:0x44 +fn_800DA2D4 = .text:0x800DA2D4; // type:function size:0x54 +fn_800DA328 = .text:0x800DA328; // type:function size:0x10 +fn_800DA338 = .text:0x800DA338; // type:function size:0xF0 +fn_800DA428 = .text:0x800DA428; // type:function size:0x80 +fn_800DA4A8 = .text:0x800DA4A8; // type:function size:0x58 +fn_800DA500 = .text:0x800DA500; // type:function size:0x80 +fn_800DA580 = .text:0x800DA580; // type:function size:0x80 +fn_800DA600 = .text:0x800DA600; // type:function size:0x58 +fn_800DA658 = .text:0x800DA658; // type:function size:0x10 +fn_800DA668 = .text:0x800DA668; // type:function size:0x54 +fn_800DA6BC = .text:0x800DA6BC; // type:function size:0x5C +fn_800DA718 = .text:0x800DA718; // type:function size:0x6C +fn_800DA784 = .text:0x800DA784; // type:function size:0x28 +fn_800DA7AC = .text:0x800DA7AC; // type:function size:0x10 +fn_800DA7BC = .text:0x800DA7BC; // type:function size:0xC +fn_800DA7C8 = .text:0x800DA7C8; // type:function size:0x8 +fn_800DA7D0 = .text:0x800DA7D0; // type:function size:0x3C +fn_800DA80C = .text:0x800DA80C; // type:function size:0x14 +fn_800DA820 = .text:0x800DA820; // type:function size:0x80 +__dt__5TrackFv = .text:0x800DA8A0; // type:function size:0x68 +fn_800DA908 = .text:0x800DA908; // type:function size:0x5C +fn_800DA964 = .text:0x800DA964; // type:function size:0x58 +fn_800DA9BC = .text:0x800DA9BC; // type:function size:0x80 +fn_800DAA3C = .text:0x800DAA3C; // type:function size:0x80 +fn_800DAABC = .text:0x800DAABC; // type:function size:0x58 +fn_800DAB14 = .text:0x800DAB14; // type:function size:0x54 +fn_800DAB68 = .text:0x800DAB68; // type:function size:0x3C +fn_800DABA4 = .text:0x800DABA4; // type:function size:0x8 +fn_800DABAC = .text:0x800DABAC; // type:function size:0x3C +fn_800DABE8 = .text:0x800DABE8; // type:function size:0x68 +fn_800DAC50 = .text:0x800DAC50; // type:function size:0x68 +fn_800DACB8 = .text:0x800DACB8; // type:function size:0x30 +fn_800DACE8 = .text:0x800DACE8; // type:function size:0x30 +fn_800DAD18 = .text:0x800DAD18; // type:function size:0x40 +fn_800DAD58 = .text:0x800DAD58; // type:function size:0x68 +__dt__8GemTrackFv = .text:0x800DADC0; // type:function size:0xB4 +fn_800DAE74 = .text:0x800DAE74; // type:function size:0x78 +fn_800DAEEC = .text:0x800DAEEC; // type:function size:0x14 +fn_800DAF00 = .text:0x800DAF00; // type:function size:0x40 +fn_800DAF40 = .text:0x800DAF40; // type:function size:0xC +fn_800DAF4C = .text:0x800DAF4C; // type:function size:0x100 +fn_800DB04C = .text:0x800DB04C; // type:function size:0x6C +fn_800DB0B8 = .text:0x800DB0B8; // type:function size:0xA0 +Fail__9NetStreamFv = .text:0x800DB158; // type:function size:0x8 +fn_800DB160 = .text:0x800DB160; // type:function size:0xC0 +fn_800DB220 = .text:0x800DB220; // type:function size:0x60 +fn_800DB280 = .text:0x800DB280; // type:function size:0x8 +fn_800DB288 = .text:0x800DB288; // type:function size:0x7C +fn_800DB304 = .text:0x800DB304; // type:function size:0x8 +fn_800DB30C = .text:0x800DB30C; // type:function size:0x24 +fn_800DB330 = .text:0x800DB330; // type:function size:0xC0 +Minimum__Fff = .text:0x800DB3F0; // type:function size:0x10 +fn_800DB400 = .text:0x800DB400; // type:function size:0x9C +fn_800DB49C = .text:0x800DB49C; // type:function size:0xA0 +fn_800DB53C = .text:0x800DB53C; // type:function size:0x144 +fn_800DB680 = .text:0x800DB680; // type:function size:0xB0 +fn_800DB730 = .text:0x800DB730; // type:function size:0x4 +fn_800DB734 = .text:0x800DB734; // type:function size:0x8 +fn_800DB73C = .text:0x800DB73C; // type:function size:0x3C +fn_800DB778 = .text:0x800DB778; // type:function size:0x5E8 +fn_800DBD60 = .text:0x800DBD60; // type:function size:0x8 +fn_800DBD68 = .text:0x800DBD68; // type:function size:0xA0 +fn_800DBE08 = .text:0x800DBE08; // type:function size:0x8 +fn_800DBE10 = .text:0x800DBE10; // type:function size:0x258 +fn_800DC068 = .text:0x800DC068; // type:function size:0x4 +fn_800DC06C = .text:0x800DC06C; // type:function size:0x88 +fn_800DC0F4 = .text:0x800DC0F4; // type:function size:0x2C +fn_800DC120 = .text:0x800DC120; // type:function size:0x10 +fn_800DC130 = .text:0x800DC130; // type:function size:0x4C +fn_800DC17C = .text:0x800DC17C; // type:function size:0x34 +Round__Ff = .text:0x800DC1B0; // type:function size:0x50 +fn_800DC200 = .text:0x800DC200; // type:function size:0x4 +fn_800DC204 = .text:0x800DC204; // type:function size:0x3C +fn_800DC240 = .text:0x800DC240; // type:function size:0x40 +fn_800DC280 = .text:0x800DC280; // type:function size:0x8C +fn_800DC30C = .text:0x800DC30C; // type:function size:0x8 +fn_800DC314 = .text:0x800DC314; // type:function size:0x2C +fn_800DC340 = .text:0x800DC340; // type:function size:0x58 +fn_800DC398 = .text:0x800DC398; // type:function size:0x28 +fn_800DC3C0 = .text:0x800DC3C0; // type:function size:0x68 +fn_800DC428 = .text:0x800DC428; // type:function size:0x338 +FloorThunk__Fd = .text:0x800DC760; // type:function size:0x4 +Floor__Fd = .text:0x800DC764; // type:function size:0x24 +fn_800DC788 = .text:0x800DC788; // type:function size:0x1B4 +fn_800DC93C = .text:0x800DC93C; // type:function size:0x40 +fn_800DC97C = .text:0x800DC97C; // type:function size:0x2C +fn_800DC9A8 = .text:0x800DC9A8; // type:function size:0x18 +fn_800DC9C0 = .text:0x800DC9C0; // type:function size:0x1E0 +fn_800DCBA0 = .text:0x800DCBA0; // type:function size:0x8C +fn_800DCC2C = .text:0x800DCC2C; // type:function size:0x4B4 +fn_800DD0E0 = .text:0x800DD0E0; // type:function size:0x8 +fn_800DD0E8 = .text:0x800DD0E8; // type:function size:0xB8 +fn_800DD1A0 = .text:0x800DD1A0; // type:function size:0x420 +fn_800DD5C0 = .text:0x800DD5C0; // type:function size:0x24 +fn_800DD5E4 = .text:0x800DD5E4; // type:function size:0x8 +fn_800DD5EC = .text:0x800DD5EC; // type:function size:0x94 +fn_800DD680 = .text:0x800DD680; // type:function size:0x118 +fn_800DD798 = .text:0x800DD798; // type:function size:0x14 +fn_800DD7AC = .text:0x800DD7AC; // type:function size:0x10 +HandleNewSong__8GemTrackFv = .text:0x800DD7BC; // type:function size:0x98 +fn_800DD854 = .text:0x800DD854; // type:function size:0x64 +fn_800DD8B8 = .text:0x800DD8B8; // type:function size:0x5C +fn_800DD914 = .text:0x800DD914; // type:function size:0x8 +fn_800DD91C = .text:0x800DD91C; // type:function size:0x60 +fn_800DD97C = .text:0x800DD97C; // type:function size:0x8 +fn_800DD984 = .text:0x800DD984; // type:function size:0x8 +fn_800DD98C = .text:0x800DD98C; // type:function size:0x8 +fn_800DD994 = .text:0x800DD994; // type:function size:0x8 +fn_800DD99C = .text:0x800DD99C; // type:function size:0x8 +fn_800DD9A4 = .text:0x800DD9A4; // type:function size:0x9C +fn_800DDA40 = .text:0x800DDA40; // type:function size:0x8 +fn_800DDA48 = .text:0x800DDA48; // type:function size:0x70 +fn_800DDAB8 = .text:0x800DDAB8; // type:function size:0x30 +fn_800DDAE8 = .text:0x800DDAE8; // type:function size:0x100 +fn_800DDBE8 = .text:0x800DDBE8; // type:function size:0xA0 +fn_800DDC88 = .text:0x800DDC88; // type:function size:0x14 +fn_800DDC9C = .text:0x800DDC9C; // type:function size:0x38 +fn_800DDCD4 = .text:0x800DDCD4; // type:function size:0x8 +fn_800DDCDC = .text:0x800DDCDC; // type:function size:0x8 +fn_800DDCE4 = .text:0x800DDCE4; // type:function size:0x14 +fn_800DDCF8 = .text:0x800DDCF8; // type:function size:0x44 +fn_800DDD3C = .text:0x800DDD3C; // type:function size:0x8 +fn_800DDD44 = .text:0x800DDD44; // type:function size:0x44 +fn_800DDD88 = .text:0x800DDD88; // type:function size:0x18 +fn_800DDDA0 = .text:0x800DDDA0; // type:function size:0x14 +fn_800DDDB4 = .text:0x800DDDB4; // type:function size:0x14 +fn_800DDDC8 = .text:0x800DDDC8; // type:function size:0x50 +fn_800DDE18 = .text:0x800DDE18; // type:function size:0x1C0 +fn_800DDFD8 = .text:0x800DDFD8; // type:function size:0x4C +fn_800DE024 = .text:0x800DE024; // type:function size:0x78 +fn_800DE09C = .text:0x800DE09C; // type:function size:0xE8 +fn_800DE184 = .text:0x800DE184; // type:function size:0x2C +fn_800DE1B0 = .text:0x800DE1B0; // type:function size:0x8 +fn_800DE1B8 = .text:0x800DE1B8; // type:function size:0x48 +fn_800DE200 = .text:0x800DE200; // type:function size:0xAC +Handle__8GemTrackFP9DataArrayb = .text:0x800DE2AC; // type:function size:0x364 +fn_800DE610 = .text:0x800DE610; // type:function size:0x8 +fn_800DE618 = .text:0x800DE618; // type:function size:0x100 +fn_800DE718 = .text:0x800DE718; // type:function size:0x6C +fn_800DE784 = .text:0x800DE784; // type:function size:0x6C +fn_800DE7F0 = .text:0x800DE7F0; // type:function size:0x114 +fn_800DE904 = .text:0x800DE904; // type:function size:0x5C +fn_800DE960 = .text:0x800DE960; // type:function size:0x5C +fn_800DE9BC = .text:0x800DE9BC; // type:function size:0x54 +fn_800DEA10 = .text:0x800DEA10; // type:function size:0x5C +fn_800DEA6C = .text:0x800DEA6C; // type:function size:0x5C +fn_800DEAC8 = .text:0x800DEAC8; // type:function size:0xC +fn_800DEAD4 = .text:0x800DEAD4; // type:function size:0x44 +fn_800DEB18 = .text:0x800DEB18; // type:function size:0x60 +Scale__FRC7Vector3RCQ23Hmx7Matrix3RQ23Hmx7Matrix3 = .text:0x800DEB78; // type:function size:0x68 +Scale__FRC7Vector3fR7Vector3 = .text:0x800DEBE0; // type:function size:0x28 +ATan2Thunk__Fff = .text:0x800DEC08; // type:function size:0x4 +my_atan2f__Fff = .text:0x800DEC0C; // type:function size:0x24 +Set__5PlaneFRC7Vector3RC7Vector3 = .text:0x800DEC30; // type:function size:0x50 +Dot__FRC7Vector3RC7Vector3 = .text:0x800DEC80; // type:function size:0x28 +Interp__FRC7Vector3RC7Vector3fR7Vector3 = .text:0x800DECA8; // type:function size:0xF0 +Interp__Ffff = .text:0x800DED98; // type:function size:0xC +Set__8TriangleFRC7Vector3RC7Vector3RC7Vector3 = .text:0x800DEDA4; // type:function size:0x70 +Cross__FRC7Vector3RC7Vector3R7Vector3 = .text:0x800DEE14; // type:function size:0x3C +Subtract__FRC7Vector3RC7Vector3R7Vector3 = .text:0x800DEE50; // type:function size:0x30 +fn_800DEE80 = .text:0x800DEE80; // type:function size:0x3C +fn_800DEEBC = .text:0x800DEEBC; // type:function size:0x34 +fn_800DEEF0 = .text:0x800DEEF0; // type:function size:0x5C +Multiply__FRC7Vector3RCQ23Hmx7Matrix3R7Vector3 = .text:0x800DEF4C; // type:function size:0x44 +Negate__FRC7Vector3R7Vector3 = .text:0x800DEF90; // type:function size:0x24 +fn_800DEFB4 = .text:0x800DEFB4; // type:function size:0x130 +fn_800DF0E4 = .text:0x800DF0E4; // type:function size:0x74 +fn_800DF158 = .text:0x800DF158; // type:function size:0x68 +fn_800DF1C0 = .text:0x800DF1C0; // type:function size:0xC +fn_800DF1CC = .text:0x800DF1CC; // type:function size:0x1C +fn_800DF1E8 = .text:0x800DF1E8; // type:function size:0x100 +fn_800DF2E8 = .text:0x800DF2E8; // type:function size:0x8 +fn_800DF2F0 = .text:0x800DF2F0; // type:function size:0x10 +fn_800DF300 = .text:0x800DF300; // type:function size:0x18 +fn_800DF318 = .text:0x800DF318; // type:function size:0x2B8 +fn_800DF5D0 = .text:0x800DF5D0; // type:function size:0x14 +fn_800DF5E4 = .text:0x800DF5E4; // type:function size:0x38 +fn_800DF61C = .text:0x800DF61C; // type:function size:0x78 +Set__Q23Hmx4QuatFffff = .text:0x800DF694; // type:function size:0x14 +fn_800DF6A8 = .text:0x800DF6A8; // type:function size:0x44 +fn_800DF6EC = .text:0x800DF6EC; // type:function size:0xD4 +fn_800DF7C0 = .text:0x800DF7C0; // type:function size:0x5C +fn_800DF81C = .text:0x800DF81C; // type:function size:0x64 +fn_800DF880 = .text:0x800DF880; // type:function size:0x68 +fn_800DF8E8 = .text:0x800DF8E8; // type:function size:0x6C +fn_800DF954 = .text:0x800DF954; // type:function size:0x17C +fn_800DFAD0 = .text:0x800DFAD0; // type:function size:0x8 +fn_800DFAD8 = .text:0x800DFAD8; // type:function size:0x38 +fn_800DFB10 = .text:0x800DFB10; // type:function size:0x18 +fn_800DFB28 = .text:0x800DFB28; // type:function size:0x8 +fn_800DFB30 = .text:0x800DFB30; // type:function size:0x12C +fn_800DFC5C = .text:0x800DFC5C; // type:function size:0x8 +fn_800DFC64 = .text:0x800DFC64; // type:function size:0x58 +fn_800DFCBC = .text:0x800DFCBC; // type:function size:0xA8 +fn_800DFD64 = .text:0x800DFD64; // type:function size:0x104 +fn_800DFE68 = .text:0x800DFE68; // type:function size:0x3C +fn_800DFEA4 = .text:0x800DFEA4; // type:function size:0x80 +fn_800DFF24 = .text:0x800DFF24; // type:function size:0x10 +fn_800DFF34 = .text:0x800DFF34; // type:function size:0x8 +fn_800DFF3C = .text:0x800DFF3C; // type:function size:0x74 +fn_800DFFB0 = .text:0x800DFFB0; // type:function size:0x30 +fn_800DFFE0 = .text:0x800DFFE0; // type:function size:0x8 +fn_800DFFE8 = .text:0x800DFFE8; // type:function size:0x24 +fn_800E000C = .text:0x800E000C; // type:function size:0x8 +fn_800E0014 = .text:0x800E0014; // type:function size:0x34 +fn_800E0048 = .text:0x800E0048; // type:function size:0x38 +fn_800E0080 = .text:0x800E0080; // type:function size:0x8 +fn_800E0088 = .text:0x800E0088; // type:function size:0x8 +fn_800E0090 = .text:0x800E0090; // type:function size:0x8 +fn_800E0098 = .text:0x800E0098; // type:function size:0x60 +fn_800E00F8 = .text:0x800E00F8; // type:function size:0x28 +fn_800E0120 = .text:0x800E0120; // type:function size:0x50 +fn_800E0170 = .text:0x800E0170; // type:function size:0x13C +fn_800E02AC = .text:0x800E02AC; // type:function size:0x60 +fn_800E030C = .text:0x800E030C; // type:function size:0x5C +fn_800E0368 = .text:0x800E0368; // type:function size:0x5C +fn_800E03C4 = .text:0x800E03C4; // type:function size:0xC +fn_800E03D0 = .text:0x800E03D0; // type:function size:0x4 +fn_800E03D4 = .text:0x800E03D4; // type:function size:0x68 +fn_800E043C = .text:0x800E043C; // type:function size:0x2AC +fn_800E06E8 = .text:0x800E06E8; // type:function size:0xE4 +fn_800E07CC = .text:0x800E07CC; // type:function size:0x150 +fn_800E091C = .text:0x800E091C; // type:function size:0x34 +fn_800E0950 = .text:0x800E0950; // type:function size:0x90 +fn_800E09E0 = .text:0x800E09E0; // type:function size:0xC0 +fn_800E0AA0 = .text:0x800E0AA0; // type:function size:0x98 +fn_800E0B38 = .text:0x800E0B38; // type:function size:0x58 +fn_800E0B90 = .text:0x800E0B90; // type:function size:0xB4 +__ct__4TailFR14GemRepTemplate = .text:0x800E0C44; // type:function size:0x140 +__dt__16ATanInterpolatorFv = .text:0x800E0D84; // type:function size:0x68 +__dt__18LinearInterpolatorFv = .text:0x800E0DEC; // type:function size:0x58 scope:weak noexport +fn_800E0E44 = .text:0x800E0E44; // type:function size:0x40 +fn_800E0E84 = .text:0x800E0E84; // type:function size:0x48 +fn_800E0ECC = .text:0x800E0ECC; // type:function size:0x4C +__dt__4TailFv = .text:0x800E0F18; // type:function size:0x100 +fn_800E1018 = .text:0x800E1018; // type:function size:0xFC +fn_800E1114 = .text:0x800E1114; // type:function size:0x4 +__dt__16RndHighlightableFv = .text:0x800E1118; // type:function size:0x70 +fn_800E1188 = .text:0x800E1188; // type:function size:0x70 +fn_800E11F8 = .text:0x800E11F8; // type:function size:0x94 +fn_800E128C = .text:0x800E128C; // type:function size:0x6C +fn_800E12F8 = .text:0x800E12F8; // type:function size:0x40 +fn_800E1338 = .text:0x800E1338; // type:function size:0x44 +fn_800E137C = .text:0x800E137C; // type:function size:0x54 +fn_800E13D0 = .text:0x800E13D0; // type:function size:0x80 +fn_800E1450 = .text:0x800E1450; // type:function size:0x84 +fn_800E14D4 = .text:0x800E14D4; // type:function size:0x11C +fn_800E15F0 = .text:0x800E15F0; // type:function size:0x3C +fn_800E162C = .text:0x800E162C; // type:function size:0x38 +fn_800E1664 = .text:0x800E1664; // type:function size:0x24 +fn_800E1688 = .text:0x800E1688; // type:function size:0x54 +fn_800E16DC = .text:0x800E16DC; // type:function size:0x138 +fn_800E1814 = .text:0x800E1814; // type:function size:0x8 +fn_800E181C = .text:0x800E181C; // type:function size:0x8 +fn_800E1824 = .text:0x800E1824; // type:function size:0x9C +fn_800E18C0 = .text:0x800E18C0; // type:function size:0x38 +fn_800E18F8 = .text:0x800E18F8; // type:function size:0x34 +fn_800E192C = .text:0x800E192C; // type:function size:0x78 +fn_800E19A4 = .text:0x800E19A4; // type:function size:0x8C +Maximum__Fff = .text:0x800E1A30; // type:function size:0x10 +fn_800E1A40 = .text:0x800E1A40; // type:function size:0x5C +fn_800E1A9C = .text:0x800E1A9C; // type:function size:0x1C +fn_800E1AB8 = .text:0x800E1AB8; // type:function size:0x64 +fn_800E1B1C = .text:0x800E1B1C; // type:function size:0xC +fn_800E1B28 = .text:0x800E1B28; // type:function size:0x2AC +fn_800E1DD4 = .text:0x800E1DD4; // type:function size:0x30 +SinThunk__Fd = .text:0x800E1E04; // type:function size:0x4 +SinFloat__Fd = .text:0x800E1E08; // type:function size:0x24 +fn_800E1E2C = .text:0x800E1E2C; // type:function size:0x8 +fn_800E1E34 = .text:0x800E1E34; // type:function size:0x474 +fn_800E22A8 = .text:0x800E22A8; // type:function size:0x10 +fn_800E22B8 = .text:0x800E22B8; // type:function size:0x10 +fn_800E22C8 = .text:0x800E22C8; // type:function size:0x4 +fn_800E22CC = .text:0x800E22CC; // type:function size:0x90 +fn_800E235C = .text:0x800E235C; // type:function size:0x4 +fn_800E2360 = .text:0x800E2360; // type:function size:0x40 +fn_800E23A0 = .text:0x800E23A0; // type:function size:0x8C +fn_800E242C = .text:0x800E242C; // type:function size:0x8 +fn_800E2434 = .text:0x800E2434; // type:function size:0x2C +fn_800E2460 = .text:0x800E2460; // type:function size:0x58 +fn_800E24B8 = .text:0x800E24B8; // type:function size:0x28 +fn_800E24E0 = .text:0x800E24E0; // type:function size:0x68 +fn_800E2548 = .text:0x800E2548; // type:function size:0x14 +fn_800E255C = .text:0x800E255C; // type:function size:0x64 +fn_800E25C0 = .text:0x800E25C0; // type:function size:0x28 +CeilThunk__Fd = .text:0x800E25E8; // type:function size:0x4 +Ceil__Fd = .text:0x800E25EC; // type:function size:0x24 +Clamp__Ffff = .text:0x800E2610; // type:function size:0x20 +fn_800E2630 = .text:0x800E2630; // type:function size:0xE0 +fn_800E2710 = .text:0x800E2710; // type:function size:0x70 +fn_800E2780 = .text:0x800E2780; // type:function size:0x60 +fn_800E27E0 = .text:0x800E27E0; // type:function size:0x68 +fn_800E2848 = .text:0x800E2848; // type:function size:0x2C +__as__32ObjPtrFPQ23Hmx6Object = .text:0x800E2874; // type:function size:0x6C +fn_800E28E0 = .text:0x800E28E0; // type:function size:0x74 +fn_800E2954 = .text:0x800E2954; // type:function size:0x18C +fn_800E2AE0 = .text:0x800E2AE0; // type:function size:0x5C +fn_800E2B3C = .text:0x800E2B3C; // type:function size:0x54 +fn_800E2B90 = .text:0x800E2B90; // type:function size:0x28 +fn_800E2BB8 = .text:0x800E2BB8; // type:function size:0x68 +fn_800E2C20 = .text:0x800E2C20; // type:function size:0x38 +fn_800E2C58 = .text:0x800E2C58; // type:function size:0x114 +fn_800E2D6C = .text:0x800E2D6C; // type:function size:0x5C +fn_800E2DC8 = .text:0x800E2DC8; // type:function size:0x54 +NewTrack__FP8BandUser = .text:0x800E2E1C; // type:function size:0x70 +__ct__14TrackInterfaceFv = .text:0x800E2E8C; // type:function size:0x3C +__ct__5TrackFP8BandUser = .text:0x800E2EC8; // type:function size:0x8C +fn_800E2F54 = .text:0x800E2F54; // type:function size:0x26C +fn_800E31C0 = .text:0x800E31C0; // type:function size:0x14 +fn_800E31D4 = .text:0x800E31D4; // type:function size:0x30 +fn_800E3204 = .text:0x800E3204; // type:function size:0x8 +fn_800E320C = .text:0x800E320C; // type:function size:0x38 +fn_800E3244 = .text:0x800E3244; // type:function size:0x8 +fn_800E324C = .text:0x800E324C; // type:function size:0x48 +fn_800E3294 = .text:0x800E3294; // type:function size:0x54 +fn_800E32E8 = .text:0x800E32E8; // type:function size:0x8 +fn_800E32F0 = .text:0x800E32F0; // type:function size:0x28 +fn_800E3318 = .text:0x800E3318; // type:function size:0x74 +fn_800E338C = .text:0x800E338C; // type:function size:0x14 +fn_800E33A0 = .text:0x800E33A0; // type:function size:0x28 +fn_800E33C8 = .text:0x800E33C8; // type:function size:0x38 +fn_800E3400 = .text:0x800E3400; // type:function size:0x3C +fn_800E343C = .text:0x800E343C; // type:function size:0x4C +fn_800E3488 = .text:0x800E3488; // type:function size:0x40 +fn_800E34C8 = .text:0x800E34C8; // type:function size:0x8 +fn_800E34D0 = .text:0x800E34D0; // type:function size:0x34 +fn_800E3504 = .text:0x800E3504; // type:function size:0x8 +fn_800E350C = .text:0x800E350C; // type:function size:0x48 +fn_800E3554 = .text:0x800E3554; // type:function size:0x3C +fn_800E3590 = .text:0x800E3590; // type:function size:0x198 +fn_800E3728 = .text:0x800E3728; // type:function size:0x8 +fn_800E3730 = .text:0x800E3730; // type:function size:0x8 +fn_800E3738 = .text:0x800E3738; // type:function size:0x78 +fn_800E37B0 = .text:0x800E37B0; // type:function size:0x50 +fn_800E3800 = .text:0x800E3800; // type:function size:0x38 +fn_800E3838 = .text:0x800E3838; // type:function size:0x38 +fn_800E3870 = .text:0x800E3870; // type:function size:0x24 +fn_800E3894 = .text:0x800E3894; // type:function size:0xE0 +fn_800E3974 = .text:0x800E3974; // type:function size:0x8 +fn_800E397C = .text:0x800E397C; // type:function size:0x48 +fn_800E39C4 = .text:0x800E39C4; // type:function size:0x8 +fn_800E39CC = .text:0x800E39CC; // type:function size:0x48 +fn_800E3A14 = .text:0x800E3A14; // type:function size:0x24 +fn_800E3A38 = .text:0x800E3A38; // type:function size:0xC +fn_800E3A44 = .text:0x800E3A44; // type:function size:0xC +fn_800E3A50 = .text:0x800E3A50; // type:function size:0x78 +fn_800E3AC8 = .text:0x800E3AC8; // type:function size:0x94 +fn_800E3B5C = .text:0x800E3B5C; // type:function size:0xA0 +fn_800E3BFC = .text:0x800E3BFC; // type:function size:0x34 +fn_800E3C30 = .text:0x800E3C30; // type:function size:0x50 +fn_800E3C80 = .text:0x800E3C80; // type:function size:0x74 +fn_800E3CF4 = .text:0x800E3CF4; // type:function size:0x8 +Handle__5TrackFP9DataArrayb = .text:0x800E3CFC; // type:function size:0x318 +fn_800E4014 = .text:0x800E4014; // type:function size:0xC +__ct__11TrackConfigFP8BandUser = .text:0x800E4020; // type:function size:0x7C +fn_800E409C = .text:0x800E409C; // type:function size:0x30 +fn_800E40CC = .text:0x800E40CC; // type:function size:0x30 +fn_800E40FC = .text:0x800E40FC; // type:function size:0x40 +fn_800E413C = .text:0x800E413C; // type:function size:0x8 +fn_800E4144 = .text:0x800E4144; // type:function size:0x8 +fn_800E414C = .text:0x800E414C; // type:function size:0x8 +fn_800E4154 = .text:0x800E4154; // type:function size:0x8 +fn_800E415C = .text:0x800E415C; // type:function size:0x8 +fn_800E4164 = .text:0x800E4164; // type:function size:0x8 +fn_800E416C = .text:0x800E416C; // type:function size:0x8 +fn_800E4174 = .text:0x800E4174; // type:function size:0x8 +fn_800E417C = .text:0x800E417C; // type:function size:0x2C +fn_800E41A8 = .text:0x800E41A8; // type:function size:0x30 +fn_800E41D8 = .text:0x800E41D8; // type:function size:0x5C +fn_800E4234 = .text:0x800E4234; // type:function size:0x30 +fn_800E4264 = .text:0x800E4264; // type:function size:0x40 +fn_800E42A4 = .text:0x800E42A4; // type:function size:0xD4 +fn_800E4378 = .text:0x800E4378; // type:function size:0x8 +fn_800E4380 = .text:0x800E4380; // type:function size:0x8 +fn_800E4388 = .text:0x800E4388; // type:function size:0x8 +fn_800E4390 = .text:0x800E4390; // type:function size:0x8 +fn_800E4398 = .text:0x800E4398; // type:function size:0x8 +fn_800E43A0 = .text:0x800E43A0; // type:function size:0x4 +fn_800E43A4 = .text:0x800E43A4; // type:function size:0x88 +fn_800E442C = .text:0x800E442C; // type:function size:0x14 +fn_800E4440 = .text:0x800E4440; // type:function size:0x4 +fn_800E4444 = .text:0x800E4444; // type:function size:0x3C +fn_800E4480 = .text:0x800E4480; // type:function size:0x40 +fn_800E44C0 = .text:0x800E44C0; // type:function size:0x80 +fn_800E4540 = .text:0x800E4540; // type:function size:0x8 +fn_800E4548 = .text:0x800E4548; // type:function size:0x60 +fn_800E45A8 = .text:0x800E45A8; // type:function size:0x58 +fn_800E4600 = .text:0x800E4600; // type:function size:0x58 +fn_800E4658 = .text:0x800E4658; // type:function size:0x58 +fn_800E46B0 = .text:0x800E46B0; // type:function size:0x18 +fn_800E46C8 = .text:0x800E46C8; // type:function size:0xD8 +fn_800E47A0 = .text:0x800E47A0; // type:function size:0x5C +fn_800E47FC = .text:0x800E47FC; // type:function size:0x20 +fn_800E481C = .text:0x800E481C; // type:function size:0xC +fn_800E4828 = .text:0x800E4828; // type:function size:0xC +__ct__10TrackPanelFv = .text:0x800E4834; // type:function size:0x170 +fn_800E49A4 = .text:0x800E49A4; // type:function size:0x58 +fn_800E49FC = .text:0x800E49FC; // type:function size:0x60 +fn_800E4A5C = .text:0x800E4A5C; // type:function size:0x58 +fn_800E4AB4 = .text:0x800E4AB4; // type:function size:0x58 +fn_800E4B0C = .text:0x800E4B0C; // type:function size:0x50 +fn_800E4B5C = .text:0x800E4B5C; // type:function size:0x80 +fn_800E4BDC = .text:0x800E4BDC; // type:function size:0x58 +fn_800E4C34 = .text:0x800E4C34; // type:function size:0x80 +fn_800E4CB4 = .text:0x800E4CB4; // type:function size:0x80 +fn_800E4D34 = .text:0x800E4D34; // type:function size:0x58 +fn_800E4D8C = .text:0x800E4D8C; // type:function size:0x54 +fn_800E4DE0 = .text:0x800E4DE0; // type:function size:0x5C +fn_800E4E3C = .text:0x800E4E3C; // type:function size:0x6C +fn_800E4EA8 = .text:0x800E4EA8; // type:function size:0x28 +fn_800E4ED0 = .text:0x800E4ED0; // type:function size:0x8 +fn_800E4ED8 = .text:0x800E4ED8; // type:function size:0x3C +__dt__19TrackPanelInterfaceFv = .text:0x800E4F14; // type:function size:0x7C +fn_800E4F90 = .text:0x800E4F90; // type:function size:0x4 +fn_800E4F94 = .text:0x800E4F94; // type:function size:0x88 +fn_800E501C = .text:0x800E501C; // type:function size:0x2C +fn_800E5048 = .text:0x800E5048; // type:function size:0x10 +fn_800E5058 = .text:0x800E5058; // type:function size:0x14 +fn_800E506C = .text:0x800E506C; // type:function size:0x44 +fn_800E50B0 = .text:0x800E50B0; // type:function size:0x3C +fn_800E50EC = .text:0x800E50EC; // type:function size:0x70 +fn_800E515C = .text:0x800E515C; // type:function size:0x68 +fn_800E51C4 = .text:0x800E51C4; // type:function size:0x30 +fn_800E51F4 = .text:0x800E51F4; // type:function size:0x30 +fn_800E5224 = .text:0x800E5224; // type:function size:0x40 +__ct__19TrackPanelInterfaceFv = .text:0x800E5264; // type:function size:0x78 +__dt__10TrackPanelFv = .text:0x800E52DC; // type:function size:0xD8 +fn_800E53B4 = .text:0x800E53B4; // type:function size:0x40 +fn_800E53F4 = .text:0x800E53F4; // type:function size:0xAC +fn_800E54A0 = .text:0x800E54A0; // type:function size:0xC0 +fn_800E5560 = .text:0x800E5560; // type:function size:0x58 +fn_800E55B8 = .text:0x800E55B8; // type:function size:0x9C +fn_800E5654 = .text:0x800E5654; // type:function size:0xA0 +fn_800E56F4 = .text:0x800E56F4; // type:function size:0x8 +fn_800E56FC = .text:0x800E56FC; // type:function size:0x34 +fn_800E5730 = .text:0x800E5730; // type:function size:0x84 +fn_800E57B4 = .text:0x800E57B4; // type:function size:0x8C +fn_800E5840 = .text:0x800E5840; // type:function size:0x240 +MakeString__FPCci_PCc = .text:0x800E5A80; // type:function size:0x48 +fn_800E5AC8 = .text:0x800E5AC8; // type:function size:0x8 +fn_800E5AD0 = .text:0x800E5AD0; // type:function size:0x8 +fn_800E5AD8 = .text:0x800E5AD8; // type:function size:0x8 +fn_800E5AE0 = .text:0x800E5AE0; // type:function size:0x1B0 +fn_800E5C90 = .text:0x800E5C90; // type:function size:0x120 +fn_800E5DB0 = .text:0x800E5DB0; // type:function size:0x4C +fn_800E5DFC = .text:0x800E5DFC; // type:function size:0x4 +fn_800E5E00 = .text:0x800E5E00; // type:function size:0x50 +fn_800E5E50 = .text:0x800E5E50; // type:function size:0x14 +fn_800E5E64 = .text:0x800E5E64; // type:function size:0x58 +fn_800E5EBC = .text:0x800E5EBC; // type:function size:0x5C +fn_800E5F18 = .text:0x800E5F18; // type:function size:0x5C +fn_800E5F74 = .text:0x800E5F74; // type:function size:0x58 +fn_800E5FCC = .text:0x800E5FCC; // type:function size:0xE8 +fn_800E60B4 = .text:0x800E60B4; // type:function size:0xEC +fn_800E61A0 = .text:0x800E61A0; // type:function size:0x210 +fn_800E63B0 = .text:0x800E63B0; // type:function size:0x28 +fn_800E63D8 = .text:0x800E63D8; // type:function size:0x4 +fn_800E63DC = .text:0x800E63DC; // type:function size:0x8 +fn_800E63E4 = .text:0x800E63E4; // type:function size:0x3C +fn_800E6420 = .text:0x800E6420; // type:function size:0x8C +fn_800E64AC = .text:0x800E64AC; // type:function size:0x3C +fn_800E64E8 = .text:0x800E64E8; // type:function size:0x1C8 +fn_800E66B0 = .text:0x800E66B0; // type:function size:0xE8 +fn_800E6798 = .text:0x800E6798; // type:function size:0xC4 +fn_800E685C = .text:0x800E685C; // type:function size:0x24 +fn_800E6880 = .text:0x800E6880; // type:function size:0x5C +fn_800E68DC = .text:0x800E68DC; // type:function size:0x30 +fn_800E690C = .text:0x800E690C; // type:function size:0x80 +fn_800E698C = .text:0x800E698C; // type:function size:0xA0 +fn_800E6A2C = .text:0x800E6A2C; // type:function size:0x68 +fn_800E6A94 = .text:0x800E6A94; // type:function size:0x14C +fn_800E6BE0 = .text:0x800E6BE0; // type:function size:0x4 +FMod__Fff = .text:0x800E6BE4; // type:function size:0x24 +fn_800E6C08 = .text:0x800E6C08; // type:function size:0x94 +fn_800E6C9C = .text:0x800E6C9C; // type:function size:0x9C +fn_800E6D38 = .text:0x800E6D38; // type:function size:0x18 +fn_800E6D50 = .text:0x800E6D50; // type:function size:0xA0 +fn_800E6DF0 = .text:0x800E6DF0; // type:function size:0x90 +fn_800E6E80 = .text:0x800E6E80; // type:function size:0x84 +fn_800E6F04 = .text:0x800E6F04; // type:function size:0x48 +fn_800E6F4C = .text:0x800E6F4C; // type:function size:0xEC +fn_800E7038 = .text:0x800E7038; // type:function size:0xB0 +fn_800E70E8 = .text:0x800E70E8; // type:function size:0x2E0 +fn_800E73C8 = .text:0x800E73C8; // type:function size:0x10 +fn_800E73D8 = .text:0x800E73D8; // type:function size:0x8 +nextMip__9RndBitmapCFv = .text:0x800E73E0; // type:function size:0x8 +fn_800E73E8 = .text:0x800E73E8; // type:function size:0x14 +fn_800E73FC = .text:0x800E73FC; // type:function size:0x7C +fn_800E7478 = .text:0x800E7478; // type:function size:0x74 +fn_800E74EC = .text:0x800E74EC; // type:function size:0x8 +fn_800E74F4 = .text:0x800E74F4; // type:function size:0x9C +fn_800E7590 = .text:0x800E7590; // type:function size:0x4 +fn_800E7594 = .text:0x800E7594; // type:function size:0xD4 +fn_800E7668 = .text:0x800E7668; // type:function size:0x38 +fn_800E76A0 = .text:0x800E76A0; // type:function size:0x58 +fn_800E76F8 = .text:0x800E76F8; // type:function size:0x34 +fn_800E772C = .text:0x800E772C; // type:function size:0xC +fn_800E7738 = .text:0x800E7738; // type:function size:0x108 +fn_800E7840 = .text:0x800E7840; // type:function size:0x4 +GetCommandAtIndex__9DataArrayCFi = .text:0x800E7844; // type:function size:0x34 +GetVarAtIndex__9DataArrayCFi = .text:0x800E7878; // type:function size:0x34 +fn_800E78AC = .text:0x800E78AC; // type:function size:0x7C +fn_800E7928 = .text:0x800E7928; // type:function size:0x4 +fn_800E792C = .text:0x800E792C; // type:function size:0x88 +fn_800E79B4 = .text:0x800E79B4; // type:function size:0x2C +fn_800E79E0 = .text:0x800E79E0; // type:function size:0x8 +fn_800E79E8 = .text:0x800E79E8; // type:function size:0xC +fn_800E79F4 = .text:0x800E79F4; // type:function size:0xC +fn_800E7A00 = .text:0x800E7A00; // type:function size:0x14 +fn_800E7A14 = .text:0x800E7A14; // type:function size:0x80 +fn_800E7A94 = .text:0x800E7A94; // type:function size:0x44 +fn_800E7AD8 = .text:0x800E7AD8; // type:function size:0x24 +fn_800E7AFC = .text:0x800E7AFC; // type:function size:0x4C +fn_800E7B48 = .text:0x800E7B48; // type:function size:0xC0 +fn_800E7C08 = .text:0x800E7C08; // type:function size:0x7C +fn_800E7C84 = .text:0x800E7C84; // type:function size:0x7C +fn_800E7D00 = .text:0x800E7D00; // type:function size:0xA0 +fn_800E7DA0 = .text:0x800E7DA0; // type:function size:0x8C +fn_800E7E2C = .text:0x800E7E2C; // type:function size:0x24 +fn_800E7E50 = .text:0x800E7E50; // type:function size:0xC +fn_800E7E5C = .text:0x800E7E5C; // type:function size:0xA4 +CrowdRatingDefaultVal__10TrackPanelCF6Symbol = .text:0x800E7F00; // type:function size:0xC4 +fn_800E7FC4 = .text:0x800E7FC4; // type:function size:0x30 +fn_800E7FF4 = .text:0x800E7FF4; // type:function size:0x14 +fn_800E8008 = .text:0x800E8008; // type:function size:0xC +Handle__10TrackPanelFP9DataArrayb = .text:0x800E8014; // type:function size:0x464 +fn_800E8478 = .text:0x800E8478; // type:function size:0x6C +fn_800E84E4 = .text:0x800E84E4; // type:function size:0x68 +fn_800E854C = .text:0x800E854C; // type:function size:0x114 +fn_800E8660 = .text:0x800E8660; // type:function size:0x60 +fn_800E86C0 = .text:0x800E86C0; // type:function size:0x5C +fn_800E871C = .text:0x800E871C; // type:function size:0x54 +fn_800E8770 = .text:0x800E8770; // type:function size:0x5C +fn_800E87CC = .text:0x800E87CC; // type:function size:0x5C +fn_800E8828 = .text:0x800E8828; // type:function size:0x114 +fn_800E893C = .text:0x800E893C; // type:function size:0x60 +fn_800E899C = .text:0x800E899C; // type:function size:0x5C +fn_800E89F8 = .text:0x800E89F8; // type:function size:0x54 +fn_800E8A4C = .text:0x800E8A4C; // type:function size:0x5C +fn_800E8AA8 = .text:0x800E8AA8; // type:function size:0x6C +fn_800E8B14 = .text:0x800E8B14; // type:function size:0x28 +fn_800E8B3C = .text:0x800E8B3C; // type:function size:0x10 +fn_800E8B4C = .text:0x800E8B4C; // type:function size:0xC +fn_800E8B58 = .text:0x800E8B58; // type:function size:0x8 +fn_800E8B60 = .text:0x800E8B60; // type:function size:0x3C +fn_800E8B9C = .text:0x800E8B9C; // type:function size:0x5C +fn_800E8BF8 = .text:0x800E8BF8; // type:function size:0x5C +fn_800E8C54 = .text:0x800E8C54; // type:function size:0x6C +fn_800E8CC0 = .text:0x800E8CC0; // type:function size:0x2C +SetType__7UIPanelF6Symbol = .text:0x800E8CEC; // type:function size:0x134 +StaticClassName__7UIPanelFv = .text:0x800E8E20; // type:function size:0x4C +ClassName__7UIPanelCFv = .text:0x800E8E6C; // type:function size:0x4 +fn_800E8E70 = .text:0x800E8E70; // type:function size:0x8 +SetPaused__7UIPanelFb = .text:0x800E8E78; // type:function size:0x8 +Load__7UIPanelFR9BinStream = .text:0x800E8E80; // type:function size:0x8 +fn_800E8E88 = .text:0x800E8E88; // type:function size:0x134 +fn_800E8FBC = .text:0x800E8FBC; // type:function size:0x4C +fn_800E9008 = .text:0x800E9008; // type:function size:0x4 +fn_800E900C = .text:0x800E900C; // type:function size:0x180 +fn_800E918C = .text:0x800E918C; // type:function size:0x14 +fn_800E91A0 = .text:0x800E91A0; // type:function size:0x14 +fn_800E91B4 = .text:0x800E91B4; // type:function size:0x14 +fn_800E91C8 = .text:0x800E91C8; // type:function size:0x14 +fn_800E91DC = .text:0x800E91DC; // type:function size:0x14 +fn_800E91F0 = .text:0x800E91F0; // type:function size:0x14 +fn_800E9204 = .text:0x800E9204; // type:function size:0x14 +fn_800E9218 = .text:0x800E9218; // type:function size:0x14 +fn_800E922C = .text:0x800E922C; // type:function size:0x14 +fn_800E9240 = .text:0x800E9240; // type:function size:0x14 +fn_800E9254 = .text:0x800E9254; // type:function size:0x14 +fn_800E9268 = .text:0x800E9268; // type:function size:0x14 +fn_800E927C = .text:0x800E927C; // type:function size:0x14 +fn_800E9290 = .text:0x800E9290; // type:function size:0x14 +fn_800E92A4 = .text:0x800E92A4; // type:function size:0xAC +fn_800E9350 = .text:0x800E9350; // type:function size:0x40 +fn_800E9390 = .text:0x800E9390; // type:function size:0x50 +fn_800E93E0 = .text:0x800E93E0; // type:function size:0x30 +fn_800E9410 = .text:0x800E9410; // type:function size:0x30 +fn_800E9440 = .text:0x800E9440; // type:function size:0x54 +fn_800E9494 = .text:0x800E9494; // type:function size:0x30 +fn_800E94C4 = .text:0x800E94C4; // type:function size:0xB0 +fn_800E9574 = .text:0x800E9574; // type:function size:0x18 +fn_800E958C = .text:0x800E958C; // type:function size:0x68 +fn_800E95F4 = .text:0x800E95F4; // type:function size:0xC +fn_800E9600 = .text:0x800E9600; // type:function size:0x44 +fn_800E9644 = .text:0x800E9644; // type:function size:0x308 +fn_800E994C = .text:0x800E994C; // type:function size:0x30 +fn_800E997C = .text:0x800E997C; // type:function size:0x54 +fn_800E99D0 = .text:0x800E99D0; // type:function size:0x3C +fn_800E9A0C = .text:0x800E9A0C; // type:function size:0x58 +fn_800E9A64 = .text:0x800E9A64; // type:function size:0x30 +fn_800E9A94 = .text:0x800E9A94; // type:function size:0x8 +fn_800E9A9C = .text:0x800E9A9C; // type:function size:0x30 +fn_800E9ACC = .text:0x800E9ACC; // type:function size:0x3C +fn_800E9B08 = .text:0x800E9B08; // type:function size:0x8 +fn_800E9B10 = .text:0x800E9B10; // type:function size:0x10 +fn_800E9B20 = .text:0x800E9B20; // type:function size:0x28 +fn_800E9B48 = .text:0x800E9B48; // type:function size:0x58 +fn_800E9BA0 = .text:0x800E9BA0; // type:function size:0x4 +fn_800E9BA4 = .text:0x800E9BA4; // type:function size:0x38 +fn_800E9BDC = .text:0x800E9BDC; // type:function size:0x8 +fn_800E9BE4 = .text:0x800E9BE4; // type:function size:0xC +fn_800E9BF0 = .text:0x800E9BF0; // type:function size:0x148 +fn_800E9D38 = .text:0x800E9D38; // type:function size:0x10 +fn_800E9D48 = .text:0x800E9D48; // type:function size:0x58 +fn_800E9DA0 = .text:0x800E9DA0; // type:function size:0xA0 +fn_800E9E40 = .text:0x800E9E40; // type:function size:0x68 +fn_800E9EA8 = .text:0x800E9EA8; // type:function size:0xA0 +fn_800E9F48 = .text:0x800E9F48; // type:function size:0xE0 +fn_800EA028 = .text:0x800EA028; // type:function size:0x8 +fn_800EA030 = .text:0x800EA030; // type:function size:0xF4 +fn_800EA124 = .text:0x800EA124; // type:function size:0xBC +fn_800EA1E0 = .text:0x800EA1E0; // type:function size:0x4 +fn_800EA1E4 = .text:0x800EA1E4; // type:function size:0x38 +fn_800EA21C = .text:0x800EA21C; // type:function size:0x30 +fn_800EA24C = .text:0x800EA24C; // type:function size:0x58 +fn_800EA2A4 = .text:0x800EA2A4; // type:function size:0x140 +fn_800EA3E4 = .text:0x800EA3E4; // type:function size:0x8 +fn_800EA3EC = .text:0x800EA3EC; // type:function size:0x8 +fn_800EA3F4 = .text:0x800EA3F4; // type:function size:0x14 +__ct__10VocalTrackFP8BandUser = .text:0x800EA408; // type:function size:0x3B0 +fn_800EA7B8 = .text:0x800EA7B8; // type:function size:0x58 +fn_800EA810 = .text:0x800EA810; // type:function size:0x80 +fn_800EA890 = .text:0x800EA890; // type:function size:0x54 +fn_800EA8E4 = .text:0x800EA8E4; // type:function size:0x5C +fn_800EA940 = .text:0x800EA940; // type:function size:0x68 +fn_800EA9A8 = .text:0x800EA9A8; // type:function size:0x30 +fn_800EA9D8 = .text:0x800EA9D8; // type:function size:0x54 +fn_800EAA2C = .text:0x800EAA2C; // type:function size:0x18 +fn_800EAA44 = .text:0x800EAA44; // type:function size:0x30 +fn_800EAA74 = .text:0x800EAA74; // type:function size:0x58 +fn_800EAACC = .text:0x800EAACC; // type:function size:0x80 +fn_800EAB4C = .text:0x800EAB4C; // type:function size:0x54 +fn_800EABA0 = .text:0x800EABA0; // type:function size:0x5C +fn_800EABFC = .text:0x800EABFC; // type:function size:0x68 +fn_800EAC64 = .text:0x800EAC64; // type:function size:0x30 +fn_800EAC94 = .text:0x800EAC94; // type:function size:0x54 +fn_800EACE8 = .text:0x800EACE8; // type:function size:0x30 +fn_800EAD18 = .text:0x800EAD18; // type:function size:0x58 +fn_800EAD70 = .text:0x800EAD70; // type:function size:0x80 +fn_800EADF0 = .text:0x800EADF0; // type:function size:0x54 +fn_800EAE44 = .text:0x800EAE44; // type:function size:0x3C +fn_800EAE80 = .text:0x800EAE80; // type:function size:0x80 +fn_800EAF00 = .text:0x800EAF00; // type:function size:0x58 +fn_800EAF58 = .text:0x800EAF58; // type:function size:0x80 +fn_800EAFD8 = .text:0x800EAFD8; // type:function size:0x54 +fn_800EB02C = .text:0x800EB02C; // type:function size:0x5C +fn_800EB088 = .text:0x800EB088; // type:function size:0x68 +fn_800EB0F0 = .text:0x800EB0F0; // type:function size:0x30 +fn_800EB120 = .text:0x800EB120; // type:function size:0x54 +fn_800EB174 = .text:0x800EB174; // type:function size:0x58 +fn_800EB1CC = .text:0x800EB1CC; // type:function size:0x80 +fn_800EB24C = .text:0x800EB24C; // type:function size:0x80 +fn_800EB2CC = .text:0x800EB2CC; // type:function size:0x58 +fn_800EB324 = .text:0x800EB324; // type:function size:0x10 +fn_800EB334 = .text:0x800EB334; // type:function size:0x54 +fn_800EB388 = .text:0x800EB388; // type:function size:0x5C +fn_800EB3E4 = .text:0x800EB3E4; // type:function size:0x6C +fn_800EB450 = .text:0x800EB450; // type:function size:0x28 +fn_800EB478 = .text:0x800EB478; // type:function size:0x10 +fn_800EB488 = .text:0x800EB488; // type:function size:0x8 +fn_800EB490 = .text:0x800EB490; // type:function size:0xC +fn_800EB49C = .text:0x800EB49C; // type:function size:0x8 +fn_800EB4A4 = .text:0x800EB4A4; // type:function size:0x3C +fn_800EB4E0 = .text:0x800EB4E0; // type:function size:0x14 +fn_800EB4F4 = .text:0x800EB4F4; // type:function size:0x80 +fn_800EB574 = .text:0x800EB574; // type:function size:0x80 +fn_800EB5F4 = .text:0x800EB5F4; // type:function size:0x4 +fn_800EB5F8 = .text:0x800EB5F8; // type:function size:0x88 +fn_800EB680 = .text:0x800EB680; // type:function size:0x2C +fn_800EB6AC = .text:0x800EB6AC; // type:function size:0xB4 +fn_800EB760 = .text:0x800EB760; // type:function size:0x30 +fn_800EB790 = .text:0x800EB790; // type:function size:0xE8 +fn_800EB878 = .text:0x800EB878; // type:function size:0xAC +fn_800EB924 = .text:0x800EB924; // type:function size:0x94 +fn_800EB9B8 = .text:0x800EB9B8; // type:function size:0x80 +fn_800EBA38 = .text:0x800EBA38; // type:function size:0x30 +fn_800EBA68 = .text:0x800EBA68; // type:function size:0x54 +fn_800EBABC = .text:0x800EBABC; // type:function size:0x50 +fn_800EBB0C = .text:0x800EBB0C; // type:function size:0x8 +fn_800EBB14 = .text:0x800EBB14; // type:function size:0x4 +fn_800EBB18 = .text:0x800EBB18; // type:function size:0x80 +fn_800EBB98 = .text:0x800EBB98; // type:function size:0x58 +fn_800EBBF0 = .text:0x800EBBF0; // type:function size:0x30 +fn_800EBC20 = .text:0x800EBC20; // type:function size:0x40 +fn_800EBC60 = .text:0x800EBC60; // type:function size:0x38 +fn_800EBC98 = .text:0x800EBC98; // type:function size:0x10 +fn_800EBCA8 = .text:0x800EBCA8; // type:function size:0x30 +fn_800EBCD8 = .text:0x800EBCD8; // type:function size:0x34 +fn_800EBD0C = .text:0x800EBD0C; // type:function size:0x80 +fn_800EBD8C = .text:0x800EBD8C; // type:function size:0x58 +fn_800EBDE4 = .text:0x800EBDE4; // type:function size:0x58 +fn_800EBE3C = .text:0x800EBE3C; // type:function size:0x30 +fn_800EBE6C = .text:0x800EBE6C; // type:function size:0x30 +fn_800EBE9C = .text:0x800EBE9C; // type:function size:0x34 +fn_800EBED0 = .text:0x800EBED0; // type:function size:0x80 +fn_800EBF50 = .text:0x800EBF50; // type:function size:0x58 +fn_800EBFA8 = .text:0x800EBFA8; // type:function size:0x58 +fn_800EC000 = .text:0x800EC000; // type:function size:0x30 +fn_800EC030 = .text:0x800EC030; // type:function size:0x40 +fn_800EC070 = .text:0x800EC070; // type:function size:0x34 +fn_800EC0A4 = .text:0x800EC0A4; // type:function size:0x68 +fn_800EC10C = .text:0x800EC10C; // type:function size:0x30 +fn_800EC13C = .text:0x800EC13C; // type:function size:0x34 +fn_800EC170 = .text:0x800EC170; // type:function size:0x80 +fn_800EC1F0 = .text:0x800EC1F0; // type:function size:0x58 +fn_800EC248 = .text:0x800EC248; // type:function size:0x58 +fn_800EC2A0 = .text:0x800EC2A0; // type:function size:0x30 +fn_800EC2D0 = .text:0x800EC2D0; // type:function size:0x30 +fn_800EC300 = .text:0x800EC300; // type:function size:0x30 +fn_800EC330 = .text:0x800EC330; // type:function size:0x40 +fn_800EC370 = .text:0x800EC370; // type:function size:0x68 +fn_800EC3D8 = .text:0x800EC3D8; // type:function size:0x68 +__dt__10VocalTrackFv = .text:0x800EC440; // type:function size:0x184 +__dt__8NoteTubeFv = .text:0x800EC5C4; // type:function size:0x68 +fn_800EC62C = .text:0x800EC62C; // type:function size:0x58 +fn_800EC684 = .text:0x800EC684; // type:function size:0x80 +fn_800EC704 = .text:0x800EC704; // type:function size:0x80 +fn_800EC784 = .text:0x800EC784; // type:function size:0x58 +fn_800EC7DC = .text:0x800EC7DC; // type:function size:0x54 +fn_800EC830 = .text:0x800EC830; // type:function size:0x5C +fn_800EC88C = .text:0x800EC88C; // type:function size:0x6C +fn_800EC8F8 = .text:0x800EC8F8; // type:function size:0x28 +fn_800EC920 = .text:0x800EC920; // type:function size:0x10 +fn_800EC930 = .text:0x800EC930; // type:function size:0xC +fn_800EC93C = .text:0x800EC93C; // type:function size:0x8 +fn_800EC944 = .text:0x800EC944; // type:function size:0x3C +fn_800EC980 = .text:0x800EC980; // type:function size:0x14 +fn_800EC994 = .text:0x800EC994; // type:function size:0xB8 +fn_800ECA4C = .text:0x800ECA4C; // type:function size:0x4 +fn_800ECA50 = .text:0x800ECA50; // type:function size:0x30 +fn_800ECA80 = .text:0x800ECA80; // type:function size:0x54 +fn_800ECAD4 = .text:0x800ECAD4; // type:function size:0x30 +fn_800ECB04 = .text:0x800ECB04; // type:function size:0xB0 +fn_800ECBB4 = .text:0x800ECBB4; // type:function size:0x6C +fn_800ECC20 = .text:0x800ECC20; // type:function size:0xC +fn_800ECC2C = .text:0x800ECC2C; // type:function size:0x7C +fn_800ECCA8 = .text:0x800ECCA8; // type:function size:0xC8 +fn_800ECD70 = .text:0x800ECD70; // type:function size:0x204 +fn_800ECF74 = .text:0x800ECF74; // type:function size:0x8 +fn_800ECF7C = .text:0x800ECF7C; // type:function size:0x9C +fn_800ED018 = .text:0x800ED018; // type:function size:0x20 +fn_800ED038 = .text:0x800ED038; // type:function size:0x50 +fn_800ED088 = .text:0x800ED088; // type:function size:0x170 +fn_800ED1F8 = .text:0x800ED1F8; // type:function size:0x4C +fn_800ED244 = .text:0x800ED244; // type:function size:0x34C +fn_800ED590 = .text:0x800ED590; // type:function size:0x8 +fn_800ED598 = .text:0x800ED598; // type:function size:0x8 +fn_800ED5A0 = .text:0x800ED5A0; // type:function size:0x8 +fn_800ED5A8 = .text:0x800ED5A8; // type:function size:0x8 +fn_800ED5B0 = .text:0x800ED5B0; // type:function size:0x8 +fn_800ED5B8 = .text:0x800ED5B8; // type:function size:0x8 +fn_800ED5C0 = .text:0x800ED5C0; // type:function size:0x148 +fn_800ED708 = .text:0x800ED708; // type:function size:0x90 +fn_800ED798 = .text:0x800ED798; // type:function size:0x4C +fn_800ED7E4 = .text:0x800ED7E4; // type:function size:0x30 +fn_800ED814 = .text:0x800ED814; // type:function size:0x54 +fn_800ED868 = .text:0x800ED868; // type:function size:0x3C +fn_800ED8A4 = .text:0x800ED8A4; // type:function size:0x58 +fn_800ED8FC = .text:0x800ED8FC; // type:function size:0x30 +fn_800ED92C = .text:0x800ED92C; // type:function size:0x3C +fn_800ED968 = .text:0x800ED968; // type:function size:0x88 +fn_800ED9F0 = .text:0x800ED9F0; // type:function size:0x88 +fn_800EDA78 = .text:0x800EDA78; // type:function size:0x8 +fn_800EDA80 = .text:0x800EDA80; // type:function size:0x198 +fn_800EDC18 = .text:0x800EDC18; // type:function size:0x4 +fn_800EDC1C = .text:0x800EDC1C; // type:function size:0x58 +fn_800EDC74 = .text:0x800EDC74; // type:function size:0x10 +fn_800EDC84 = .text:0x800EDC84; // type:function size:0x8 +fn_800EDC8C = .text:0x800EDC8C; // type:function size:0x8 +fn_800EDC94 = .text:0x800EDC94; // type:function size:0x74 +fn_800EDD08 = .text:0x800EDD08; // type:function size:0x4 +fn_800EDD0C = .text:0x800EDD0C; // type:function size:0x38 +fn_800EDD44 = .text:0x800EDD44; // type:function size:0x2C +fn_800EDD70 = .text:0x800EDD70; // type:function size:0x68 +fn_800EDDD8 = .text:0x800EDDD8; // type:function size:0xB0 +fn_800EDE88 = .text:0x800EDE88; // type:function size:0x14 +fn_800EDE9C = .text:0x800EDE9C; // type:function size:0x8 +fn_800EDEA4 = .text:0x800EDEA4; // type:function size:0x4C +fn_800EDEF0 = .text:0x800EDEF0; // type:function size:0x8 +fn_800EDEF8 = .text:0x800EDEF8; // type:function size:0x60 +fn_800EDF58 = .text:0x800EDF58; // type:function size:0x8 +fn_800EDF60 = .text:0x800EDF60; // type:function size:0x80 +fn_800EDFE0 = .text:0x800EDFE0; // type:function size:0xC +fn_800EDFEC = .text:0x800EDFEC; // type:function size:0x30 +fn_800EE01C = .text:0x800EE01C; // type:function size:0x25C +fn_800EE278 = .text:0x800EE278; // type:function size:0x8 +fn_800EE280 = .text:0x800EE280; // type:function size:0x34 +fn_800EE2B4 = .text:0x800EE2B4; // type:function size:0x8C4 +fn_800EEB78 = .text:0x800EEB78; // type:function size:0x28 +fn_800EEBA0 = .text:0x800EEBA0; // type:function size:0xC +fn_800EEBAC = .text:0x800EEBAC; // type:function size:0x4 +fn_800EEBB0 = .text:0x800EEBB0; // type:function size:0x38 +fn_800EEBE8 = .text:0x800EEBE8; // type:function size:0x30 +fn_800EEC18 = .text:0x800EEC18; // type:function size:0x58 +fn_800EEC70 = .text:0x800EEC70; // type:function size:0x4 +fn_800EEC74 = .text:0x800EEC74; // type:function size:0x58 +fn_800EECCC = .text:0x800EECCC; // type:function size:0x44 +fn_800EED10 = .text:0x800EED10; // type:function size:0x1C +fn_800EED2C = .text:0x800EED2C; // type:function size:0x4 +fn_800EED30 = .text:0x800EED30; // type:function size:0x8 +fn_800EED38 = .text:0x800EED38; // type:function size:0x28 +fn_800EED60 = .text:0x800EED60; // type:function size:0x8 +fn_800EED68 = .text:0x800EED68; // type:function size:0x14 +fn_800EED7C = .text:0x800EED7C; // type:function size:0x30 +fn_800EEDAC = .text:0x800EEDAC; // type:function size:0x4 +fn_800EEDB0 = .text:0x800EEDB0; // type:function size:0x50 +fn_800EEE00 = .text:0x800EEE00; // type:function size:0x50 +fn_800EEE50 = .text:0x800EEE50; // type:function size:0x24 +fn_800EEE74 = .text:0x800EEE74; // type:function size:0x10 +fn_800EEE84 = .text:0x800EEE84; // type:function size:0x84 +fn_800EEF08 = .text:0x800EEF08; // type:function size:0xE0 +fn_800EEFE8 = .text:0x800EEFE8; // type:function size:0x8 +fn_800EEFF0 = .text:0x800EEFF0; // type:function size:0x2E8 +fn_800EF2D8 = .text:0x800EF2D8; // type:function size:0x8 +fn_800EF2E0 = .text:0x800EF2E0; // type:function size:0x1E4 +fn_800EF4C4 = .text:0x800EF4C4; // type:function size:0xA0 +fn_800EF564 = .text:0x800EF564; // type:function size:0x154 +fn_800EF6B8 = .text:0x800EF6B8; // type:function size:0x14C +fn_800EF804 = .text:0x800EF804; // type:function size:0x280 +fn_800EFA84 = .text:0x800EFA84; // type:function size:0x2C +fn_800EFAB0 = .text:0x800EFAB0; // type:function size:0x18 +fn_800EFAC8 = .text:0x800EFAC8; // type:function size:0x38 +fn_800EFB00 = .text:0x800EFB00; // type:function size:0x1C8 +fn_800EFCC8 = .text:0x800EFCC8; // type:function size:0x14 +fn_800EFCDC = .text:0x800EFCDC; // type:function size:0x8 +fn_800EFCE4 = .text:0x800EFCE4; // type:function size:0xD8 +fn_800EFDBC = .text:0x800EFDBC; // type:function size:0x124 +fn_800EFEE0 = .text:0x800EFEE0; // type:function size:0x2064 +fn_800F1F44 = .text:0x800F1F44; // type:function size:0x14 +fn_800F1F58 = .text:0x800F1F58; // type:function size:0x8 +fn_800F1F60 = .text:0x800F1F60; // type:function size:0x8 +fn_800F1F68 = .text:0x800F1F68; // type:function size:0x4 +fn_800F1F6C = .text:0x800F1F6C; // type:function size:0x58 +fn_800F1FC4 = .text:0x800F1FC4; // type:function size:0x2C +fn_800F1FF0 = .text:0x800F1FF0; // type:function size:0x8 +fn_800F1FF8 = .text:0x800F1FF8; // type:function size:0x8 +fn_800F2000 = .text:0x800F2000; // type:function size:0x8 +fn_800F2008 = .text:0x800F2008; // type:function size:0x10C +fn_800F2114 = .text:0x800F2114; // type:function size:0x10 +fn_800F2124 = .text:0x800F2124; // type:function size:0x8 +fn_800F212C = .text:0x800F212C; // type:function size:0x98 +fn_800F21C4 = .text:0x800F21C4; // type:function size:0x40 +fn_800F2204 = .text:0x800F2204; // type:function size:0x4C +fn_800F2250 = .text:0x800F2250; // type:function size:0x4 +fn_800F2254 = .text:0x800F2254; // type:function size:0x38 +fn_800F228C = .text:0x800F228C; // type:function size:0x2C +fn_800F22B8 = .text:0x800F22B8; // type:function size:0x40 +fn_800F22F8 = .text:0x800F22F8; // type:function size:0x4C +fn_800F2344 = .text:0x800F2344; // type:function size:0x4 +fn_800F2348 = .text:0x800F2348; // type:function size:0x38 +fn_800F2380 = .text:0x800F2380; // type:function size:0x2C +fn_800F23AC = .text:0x800F23AC; // type:function size:0x10 +fn_800F23BC = .text:0x800F23BC; // type:function size:0x318 +fn_800F26D4 = .text:0x800F26D4; // type:function size:0x17C +fn_800F2850 = .text:0x800F2850; // type:function size:0x1E0 +fn_800F2A30 = .text:0x800F2A30; // type:function size:0x4 +fn_800F2A34 = .text:0x800F2A34; // type:function size:0x54 +fn_800F2A88 = .text:0x800F2A88; // type:function size:0x64 +fn_800F2AEC = .text:0x800F2AEC; // type:function size:0x50 +fn_800F2B3C = .text:0x800F2B3C; // type:function size:0x10 +fn_800F2B4C = .text:0x800F2B4C; // type:function size:0x30 +fn_800F2B7C = .text:0x800F2B7C; // type:function size:0xC +fn_800F2B88 = .text:0x800F2B88; // type:function size:0x4 +fn_800F2B8C = .text:0x800F2B8C; // type:function size:0x4 +fn_800F2B90 = .text:0x800F2B90; // type:function size:0xA0 +fn_800F2C30 = .text:0x800F2C30; // type:function size:0x478 +fn_800F30A8 = .text:0x800F30A8; // type:function size:0x2C +fn_800F30D4 = .text:0x800F30D4; // type:function size:0x8 +fn_800F30DC = .text:0x800F30DC; // type:function size:0x8 +fn_800F30E4 = .text:0x800F30E4; // type:function size:0x8 +fn_800F30EC = .text:0x800F30EC; // type:function size:0x8 +fn_800F30F4 = .text:0x800F30F4; // type:function size:0x8 +fn_800F30FC = .text:0x800F30FC; // type:function size:0x70 +fn_800F316C = .text:0x800F316C; // type:function size:0x90 +fn_800F31FC = .text:0x800F31FC; // type:function size:0x11C +fn_800F3318 = .text:0x800F3318; // type:function size:0x1C8 +fn_800F34E0 = .text:0x800F34E0; // type:function size:0x4 +fn_800F34E4 = .text:0x800F34E4; // type:function size:0x50 +fn_800F3534 = .text:0x800F3534; // type:function size:0xA0 +fn_800F35D4 = .text:0x800F35D4; // type:function size:0x40 +fn_800F3614 = .text:0x800F3614; // type:function size:0x78 +fn_800F368C = .text:0x800F368C; // type:function size:0x100 +fn_800F378C = .text:0x800F378C; // type:function size:0x14 +fn_800F37A0 = .text:0x800F37A0; // type:function size:0x670 +fn_800F3E10 = .text:0x800F3E10; // type:function size:0x8 +fn_800F3E18 = .text:0x800F3E18; // type:function size:0x8 +fn_800F3E20 = .text:0x800F3E20; // type:function size:0x8 +fn_800F3E28 = .text:0x800F3E28; // type:function size:0x10 +fn_800F3E38 = .text:0x800F3E38; // type:function size:0x33C +fn_800F4174 = .text:0x800F4174; // type:function size:0x54 +fn_800F41C8 = .text:0x800F41C8; // type:function size:0x30 +fn_800F41F8 = .text:0x800F41F8; // type:function size:0xB0 +fn_800F42A8 = .text:0x800F42A8; // type:function size:0x30 +fn_800F42D8 = .text:0x800F42D8; // type:function size:0x3C +fn_800F4314 = .text:0x800F4314; // type:function size:0x58 +fn_800F436C = .text:0x800F436C; // type:function size:0x3C +fn_800F43A8 = .text:0x800F43A8; // type:function size:0x174 +fn_800F451C = .text:0x800F451C; // type:function size:0x40 +fn_800F455C = .text:0x800F455C; // type:function size:0x120 +fn_800F467C = .text:0x800F467C; // type:function size:0x8 +fn_800F4684 = .text:0x800F4684; // type:function size:0x8 +fn_800F468C = .text:0x800F468C; // type:function size:0x44 +fn_800F46D0 = .text:0x800F46D0; // type:function size:0x70 +fn_800F4740 = .text:0x800F4740; // type:function size:0xDC +fn_800F481C = .text:0x800F481C; // type:function size:0xD0 +fn_800F48EC = .text:0x800F48EC; // type:function size:0x4C +Handle__10VocalTrackFP9DataArrayb = .text:0x800F4938; // type:function size:0x25C +fn_800F4B94 = .text:0x800F4B94; // type:function size:0x14 +fn_800F4BA8 = .text:0x800F4BA8; // type:function size:0x10 +fn_800F4BB8 = .text:0x800F4BB8; // type:function size:0x124 +fn_800F4CDC = .text:0x800F4CDC; // type:function size:0x5C +fn_800F4D38 = .text:0x800F4D38; // type:function size:0x5C +fn_800F4D94 = .text:0x800F4D94; // type:function size:0x54 +fn_800F4DE8 = .text:0x800F4DE8; // type:function size:0x5C +fn_800F4E44 = .text:0x800F4E44; // type:function size:0x5C +fn_800F4EA0 = .text:0x800F4EA0; // type:function size:0x54 +fn_800F4EF4 = .text:0x800F4EF4; // type:function size:0x48 +fn_800F4F3C = .text:0x800F4F3C; // type:function size:0x4C +fn_800F4F88 = .text:0x800F4F88; // type:function size:0x4C +fn_800F4FD4 = .text:0x800F4FD4; // type:function size:0xB8 +fn_800F508C = .text:0x800F508C; // type:function size:0x30 +fn_800F50BC = .text:0x800F50BC; // type:function size:0x10 +fn_800F50CC = .text:0x800F50CC; // type:function size:0x2C +fn_800F50F8 = .text:0x800F50F8; // type:function size:0xC +fn_800F5104 = .text:0x800F5104; // type:function size:0x68 +fn_800F516C = .text:0x800F516C; // type:function size:0x10 +fn_800F517C = .text:0x800F517C; // type:function size:0x2C +fn_800F51A8 = .text:0x800F51A8; // type:function size:0x6C +fn_800F5214 = .text:0x800F5214; // type:function size:0x6C +fn_800F5280 = .text:0x800F5280; // type:function size:0x6C +fn_800F52EC = .text:0x800F52EC; // type:function size:0xC4 +fn_800F53B0 = .text:0x800F53B0; // type:function size:0x94 +fn_800F5444 = .text:0x800F5444; // type:function size:0xC4 +fn_800F5508 = .text:0x800F5508; // type:function size:0x94 +fn_800F559C = .text:0x800F559C; // type:function size:0xD4 +fn_800F5670 = .text:0x800F5670; // type:function size:0x94 +fn_800F5704 = .text:0x800F5704; // type:function size:0xD4 +fn_800F57D8 = .text:0x800F57D8; // type:function size:0x94 +fn_800F586C = .text:0x800F586C; // type:function size:0x70 +fn_800F58DC = .text:0x800F58DC; // type:function size:0x78 +fn_800F5954 = .text:0x800F5954; // type:function size:0x34 +fn_800F5988 = .text:0x800F5988; // type:function size:0x70 +fn_800F59F8 = .text:0x800F59F8; // type:function size:0x78 +fn_800F5A70 = .text:0x800F5A70; // type:function size:0x34 +fn_800F5AA4 = .text:0x800F5AA4; // type:function size:0x70 +fn_800F5B14 = .text:0x800F5B14; // type:function size:0x78 +fn_800F5B8C = .text:0x800F5B8C; // type:function size:0x34 +fn_800F5BC0 = .text:0x800F5BC0; // type:function size:0xB8 +fn_800F5C78 = .text:0x800F5C78; // type:function size:0x30 +fn_800F5CA8 = .text:0x800F5CA8; // type:function size:0x8 +fn_800F5CB0 = .text:0x800F5CB0; // type:function size:0x2C +fn_800F5CDC = .text:0x800F5CDC; // type:function size:0x58 +fn_800F5D34 = .text:0x800F5D34; // type:function size:0x70 +fn_800F5DA4 = .text:0x800F5DA4; // type:function size:0x78 +fn_800F5E1C = .text:0x800F5E1C; // type:function size:0x34 +fn_800F5E50 = .text:0x800F5E50; // type:function size:0xB8 +fn_800F5F08 = .text:0x800F5F08; // type:function size:0x30 +fn_800F5F38 = .text:0x800F5F38; // type:function size:0x8 +fn_800F5F40 = .text:0x800F5F40; // type:function size:0x2C +fn_800F5F6C = .text:0x800F5F6C; // type:function size:0x58 +fn_800F5FC4 = .text:0x800F5FC4; // type:function size:0x8 +fn_800F5FCC = .text:0x800F5FCC; // type:function size:0x30 +fn_800F5FFC = .text:0x800F5FFC; // type:function size:0x14 +fn_800F6010 = .text:0x800F6010; // type:function size:0x4 +fn_800F6014 = .text:0x800F6014; // type:function size:0x58 +fn_800F606C = .text:0x800F606C; // type:function size:0x5C +fn_800F60C8 = .text:0x800F60C8; // type:function size:0x58 +fn_800F6120 = .text:0x800F6120; // type:function size:0x5C +fn_800F617C = .text:0x800F617C; // type:function size:0x58 +fn_800F61D4 = .text:0x800F61D4; // type:function size:0x5C +fn_800F6230 = .text:0x800F6230; // type:function size:0x58 +fn_800F6288 = .text:0x800F6288; // type:function size:0x5C +fn_800F62E4 = .text:0x800F62E4; // type:function size:0x160 +fn_800F6444 = .text:0x800F6444; // type:function size:0x58 +fn_800F649C = .text:0x800F649C; // type:function size:0x58 +fn_800F64F4 = .text:0x800F64F4; // type:function size:0x58 +fn_800F654C = .text:0x800F654C; // type:function size:0x58 +fn_800F65A4 = .text:0x800F65A4; // type:function size:0x160 +fn_800F6704 = .text:0x800F6704; // type:function size:0x58 +fn_800F675C = .text:0x800F675C; // type:function size:0x58 +fn_800F67B4 = .text:0x800F67B4; // type:function size:0x58 +fn_800F680C = .text:0x800F680C; // type:function size:0x58 +fn_800F6864 = .text:0x800F6864; // type:function size:0x160 +fn_800F69C4 = .text:0x800F69C4; // type:function size:0x58 +fn_800F6A1C = .text:0x800F6A1C; // type:function size:0x58 +fn_800F6A74 = .text:0x800F6A74; // type:function size:0x58 +fn_800F6ACC = .text:0x800F6ACC; // type:function size:0x58 +fn_800F6B24 = .text:0x800F6B24; // type:function size:0x160 +fn_800F6C84 = .text:0x800F6C84; // type:function size:0x58 +fn_800F6CDC = .text:0x800F6CDC; // type:function size:0x58 +fn_800F6D34 = .text:0x800F6D34; // type:function size:0x58 +fn_800F6D8C = .text:0x800F6D8C; // type:function size:0x58 +fn_800F6DE4 = .text:0x800F6DE4; // type:function size:0x14 +fn_800F6DF8 = .text:0x800F6DF8; // type:function size:0x48 +fn_800F6E40 = .text:0x800F6E40; // type:function size:0x58 +fn_800F6E98 = .text:0x800F6E98; // type:function size:0x40 +fn_800F6ED8 = .text:0x800F6ED8; // type:function size:0x198 +fn_800F7070 = .text:0x800F7070; // type:function size:0x30 +fn_800F70A0 = .text:0x800F70A0; // type:function size:0x3C +fn_800F70DC = .text:0x800F70DC; // type:function size:0x44 +fn_800F7120 = .text:0x800F7120; // type:function size:0x4 +fn_800F7124 = .text:0x800F7124; // type:function size:0x58 +fn_800F717C = .text:0x800F717C; // type:function size:0x94 +fn_800F7210 = .text:0x800F7210; // type:function size:0x84 +fn_800F7294 = .text:0x800F7294; // type:function size:0x50 +fn_800F72E4 = .text:0x800F72E4; // type:function size:0xD4 +fn_800F73B8 = .text:0x800F73B8; // type:function size:0x8 +fn_800F73C0 = .text:0x800F73C0; // type:function size:0xFC +fn_800F74BC = .text:0x800F74BC; // type:function size:0x8 +fn_800F74C4 = .text:0x800F74C4; // type:function size:0x8 +fn_800F74CC = .text:0x800F74CC; // type:function size:0x4 +__ct__12DataArrayPtrFv = .text:0x800F74D0; // type:function size:0x50 +__ct__4BandFbiP8BandUserP10BeatMaster = .text:0x800F7520; // type:function size:0x390 +__dt__4BandFv = .text:0x800F78B0; // type:function size:0x13C +fn_800F79EC = .text:0x800F79EC; // type:function size:0x58 +fn_800F7A44 = .text:0x800F7A44; // type:function size:0x58 +fn_800F7A9C = .text:0x800F7A9C; // type:function size:0x80 +fn_800F7B1C = .text:0x800F7B1C; // type:function size:0x80 +fn_800F7B9C = .text:0x800F7B9C; // type:function size:0x58 +fn_800F7BF4 = .text:0x800F7BF4; // type:function size:0x54 +fn_800F7C48 = .text:0x800F7C48; // type:function size:0x5C +fn_800F7CA4 = .text:0x800F7CA4; // type:function size:0x6C +fn_800F7D10 = .text:0x800F7D10; // type:function size:0x28 +fn_800F7D38 = .text:0x800F7D38; // type:function size:0x8 +fn_800F7D40 = .text:0x800F7D40; // type:function size:0x3C +fn_800F7D7C = .text:0x800F7D7C; // type:function size:0x5C +fn_800F7DD8 = .text:0x800F7DD8; // type:function size:0x5C +fn_800F7E34 = .text:0x800F7E34; // type:function size:0x24 +fn_800F7E58 = .text:0x800F7E58; // type:function size:0x8 +fn_800F7E60 = .text:0x800F7E60; // type:function size:0x60 +fn_800F7EC0 = .text:0x800F7EC0; // type:function size:0xC +fn_800F7ECC = .text:0x800F7ECC; // type:function size:0xE4 +fn_800F7FB0 = .text:0x800F7FB0; // type:function size:0x8 +fn_800F7FB8 = .text:0x800F7FB8; // type:function size:0x54 +fn_800F800C = .text:0x800F800C; // type:function size:0x8 +fn_800F8014 = .text:0x800F8014; // type:function size:0x74 +fn_800F8088 = .text:0x800F8088; // type:function size:0x8 +fn_800F8090 = .text:0x800F8090; // type:function size:0x1B4 +fn_800F8244 = .text:0x800F8244; // type:function size:0x2C +fn_800F8270 = .text:0x800F8270; // type:function size:0x78 +fn_800F82E8 = .text:0x800F82E8; // type:function size:0x8 +fn_800F82F0 = .text:0x800F82F0; // type:function size:0x8 +fn_800F82F8 = .text:0x800F82F8; // type:function size:0x78 +fn_800F8370 = .text:0x800F8370; // type:function size:0x134 +fn_800F84A4 = .text:0x800F84A4; // type:function size:0x8 +fn_800F84AC = .text:0x800F84AC; // type:function size:0xB0 +fn_800F855C = .text:0x800F855C; // type:function size:0x74 +fn_800F85D0 = .text:0x800F85D0; // type:function size:0x8C +fn_800F865C = .text:0x800F865C; // type:function size:0x94 +fn_800F86F0 = .text:0x800F86F0; // type:function size:0xD0 +fn_800F87C0 = .text:0x800F87C0; // type:function size:0x23C +fn_800F89FC = .text:0x800F89FC; // type:function size:0x88 +fn_800F8A84 = .text:0x800F8A84; // type:function size:0x110 +fn_800F8B94 = .text:0x800F8B94; // type:function size:0xC +fn_800F8BA0 = .text:0x800F8BA0; // type:function size:0x8 +fn_800F8BA8 = .text:0x800F8BA8; // type:function size:0x70 +fn_800F8C18 = .text:0x800F8C18; // type:function size:0xE0 +fn_800F8CF8 = .text:0x800F8CF8; // type:function size:0x78 +fn_800F8D70 = .text:0x800F8D70; // type:function size:0x8 +fn_800F8D78 = .text:0x800F8D78; // type:function size:0x58 +fn_800F8DD0 = .text:0x800F8DD0; // type:function size:0x90 +fn_800F8E60 = .text:0x800F8E60; // type:function size:0xD0 +fn_800F8F30 = .text:0x800F8F30; // type:function size:0x134 +fn_800F9064 = .text:0x800F9064; // type:function size:0x4C +fn_800F90B0 = .text:0x800F90B0; // type:function size:0x8 +fn_800F90B8 = .text:0x800F90B8; // type:function size:0x2C +fn_800F90E4 = .text:0x800F90E4; // type:function size:0x74 +fn_800F9158 = .text:0x800F9158; // type:function size:0x8 +fn_800F9160 = .text:0x800F9160; // type:function size:0x34 +fn_800F9194 = .text:0x800F9194; // type:function size:0xA0 +fn_800F9234 = .text:0x800F9234; // type:function size:0xA4 +fn_800F92D8 = .text:0x800F92D8; // type:function size:0x8 +fn_800F92E0 = .text:0x800F92E0; // type:function size:0x8 +fn_800F92E8 = .text:0x800F92E8; // type:function size:0x118 +fn_800F9400 = .text:0x800F9400; // type:function size:0x24 +fn_800F9424 = .text:0x800F9424; // type:function size:0xF4 +fn_800F9518 = .text:0x800F9518; // type:function size:0x80 +Handle__4BandFP9DataArrayb = .text:0x800F9598; // type:function size:0x340 +fn_800F98D8 = .text:0x800F98D8; // type:function size:0x120 +fn_800F99F8 = .text:0x800F99F8; // type:function size:0x7C +fn_800F9A74 = .text:0x800F9A74; // type:function size:0x38 +fn_800F9AAC = .text:0x800F9AAC; // type:function size:0x3C +fn_800F9AE8 = .text:0x800F9AE8; // type:function size:0x3C +fn_800F9B24 = .text:0x800F9B24; // type:function size:0x50 +fn_800F9B74 = .text:0x800F9B74; // type:function size:0x8 +fn_800F9B7C = .text:0x800F9B7C; // type:function size:0x38 +fn_800F9BB4 = .text:0x800F9BB4; // type:function size:0x38 +fn_800F9BEC = .text:0x800F9BEC; // type:function size:0x58 +fn_800F9C44 = .text:0x800F9C44; // type:function size:0x8 +fn_800F9C4C = .text:0x800F9C4C; // type:function size:0xC +fn_800F9C58 = .text:0x800F9C58; // type:function size:0x80 +fn_800F9CD8 = .text:0x800F9CD8; // type:function size:0x80 +fn_800F9D58 = .text:0x800F9D58; // type:function size:0xCC +fn_800F9E24 = .text:0x800F9E24; // type:function size:0x88 +fn_800F9EAC = .text:0x800F9EAC; // type:function size:0x94 +fn_800F9F40 = .text:0x800F9F40; // type:function size:0xE0 +fn_800FA020 = .text:0x800FA020; // type:function size:0xE0 +fn_800FA100 = .text:0x800FA100; // type:function size:0x78 +fn_800FA178 = .text:0x800FA178; // type:function size:0x88 +fn_800FA200 = .text:0x800FA200; // type:function size:0x1EC +fn_800FA3EC = .text:0x800FA3EC; // type:function size:0x94 +fn_800FA480 = .text:0x800FA480; // type:function size:0xE4 +fn_800FA564 = .text:0x800FA564; // type:function size:0x30 +fn_800FA594 = .text:0x800FA594; // type:function size:0xB4 +fn_800FA648 = .text:0x800FA648; // type:function size:0x34 +fn_800FA67C = .text:0x800FA67C; // type:function size:0x8C +fn_800FA708 = .text:0x800FA708; // type:function size:0xE8 +fn_800FA7F0 = .text:0x800FA7F0; // type:function size:0xA0 +fn_800FA890 = .text:0x800FA890; // type:function size:0x6C +fn_800FA8FC = .text:0x800FA8FC; // type:function size:0x30 +fn_800FA92C = .text:0x800FA92C; // type:function size:0x40 +fn_800FA96C = .text:0x800FA96C; // type:function size:0x44 +fn_800FA9B0 = .text:0x800FA9B0; // type:function size:0x18 +fn_800FA9C8 = .text:0x800FA9C8; // type:function size:0xA4 +fn_800FAA6C = .text:0x800FAA6C; // type:function size:0x6C +fn_800FAAD8 = .text:0x800FAAD8; // type:function size:0xC +fn_800FAAE4 = .text:0x800FAAE4; // type:function size:0x14 +fn_800FAAF8 = .text:0x800FAAF8; // type:function size:0xE0 +fn_800FABD8 = .text:0x800FABD8; // type:function size:0x14 +fn_800FABEC = .text:0x800FABEC; // type:function size:0x94 +fn_800FAC80 = .text:0x800FAC80; // type:function size:0x70 +fn_800FACF0 = .text:0x800FACF0; // type:function size:0x88 +fn_800FAD78 = .text:0x800FAD78; // type:function size:0x70 +fn_800FADE8 = .text:0x800FADE8; // type:function size:0x58 +fn_800FAE40 = .text:0x800FAE40; // type:function size:0x58 +fn_800FAE98 = .text:0x800FAE98; // type:function size:0x30 +fn_800FAEC8 = .text:0x800FAEC8; // type:function size:0x60 +fn_800FAF28 = .text:0x800FAF28; // type:function size:0x4 +fn_800FAF2C = .text:0x800FAF2C; // type:function size:0xA4 +fn_800FAFD0 = .text:0x800FAFD0; // type:function size:0x50 +Handle__13BandPerformerFP9DataArrayb = .text:0x800FB020; // type:function size:0x14C +fn_800FB16C = .text:0x800FB16C; // type:function size:0xCC +fn_800FB238 = .text:0x800FB238; // type:function size:0x60 +fn_800FB298 = .text:0x800FB298; // type:function size:0x30 +fn_800FB2C8 = .text:0x800FB2C8; // type:function size:0x8 +fn_800FB2D0 = .text:0x800FB2D0; // type:function size:0x10 +fn_800FB2E0 = .text:0x800FB2E0; // type:function size:0x14 +fn_800FB2F4 = .text:0x800FB2F4; // type:function size:0x14 +fn_800FB308 = .text:0x800FB308; // type:function size:0x34 +fn_800FB33C = .text:0x800FB33C; // type:function size:0x4C +fn_800FB388 = .text:0x800FB388; // type:function size:0x30 +fn_800FB3B8 = .text:0x800FB3B8; // type:function size:0x3C +fn_800FB3F4 = .text:0x800FB3F4; // type:function size:0x30 +fn_800FB424 = .text:0x800FB424; // type:function size:0x30 +fn_800FB454 = .text:0x800FB454; // type:function size:0x44 +fn_800FB498 = .text:0x800FB498; // type:function size:0x30 +fn_800FB4C8 = .text:0x800FB4C8; // type:function size:0x3C +__ct__8BandUserFv = .text:0x800FB504; // type:function size:0xF8 +fn_800FB5FC = .text:0x800FB5FC; // type:function size:0x7C +fn_800FB678 = .text:0x800FB678; // type:function size:0x8C +fn_800FB704 = .text:0x800FB704; // type:function size:0x34 +fn_800FB738 = .text:0x800FB738; // type:function size:0x34 +fn_800FB76C = .text:0x800FB76C; // type:function size:0x34 +__ct__17NullLocalBandUserFv = .text:0x800FB7A0; // type:function size:0xE4 +fn_800FB884 = .text:0x800FB884; // type:function size:0xBC +fn_800FB940 = .text:0x800FB940; // type:function size:0x58 +fn_800FB998 = .text:0x800FB998; // type:function size:0x60 +fn_800FB9F8 = .text:0x800FB9F8; // type:function size:0x58 +fn_800FBA50 = .text:0x800FBA50; // type:function size:0x58 +fn_800FBAA8 = .text:0x800FBAA8; // type:function size:0x50 +fn_800FBAF8 = .text:0x800FBAF8; // type:function size:0x70 +fn_800FBB68 = .text:0x800FBB68; // type:function size:0x8C +fn_800FBBF4 = .text:0x800FBBF4; // type:function size:0x8 +fn_800FBBFC = .text:0x800FBBFC; // type:function size:0x8 +fn_800FBC04 = .text:0x800FBC04; // type:function size:0x8C +fn_800FBC90 = .text:0x800FBC90; // type:function size:0x30 +fn_800FBCC0 = .text:0x800FBCC0; // type:function size:0x44 +GetTrackType__8BandUserCFv = .text:0x800FBD04; // type:function size:0x8 +GetTrackSym__8BandUserCFv = .text:0x800FBD0C; // type:function size:0x8 +fn_800FBD14 = .text:0x800FBD14; // type:function size:0x104 +fn_800FBE18 = .text:0x800FBE18; // type:function size:0xC +fn_800FBE24 = .text:0x800FBE24; // type:function size:0x8 +fn_800FBE2C = .text:0x800FBE2C; // type:function size:0x58 +fn_800FBE84 = .text:0x800FBE84; // type:function size:0x44 +fn_800FBEC8 = .text:0x800FBEC8; // type:function size:0x8 +fn_800FBED0 = .text:0x800FBED0; // type:function size:0x58 +fn_800FBF28 = .text:0x800FBF28; // type:function size:0x8 +fn_800FBF30 = .text:0x800FBF30; // type:function size:0x8 +fn_800FBF38 = .text:0x800FBF38; // type:function size:0x58 +fn_800FBF90 = .text:0x800FBF90; // type:function size:0x44 +fn_800FBFD4 = .text:0x800FBFD4; // type:function size:0x58 +fn_800FC02C = .text:0x800FC02C; // type:function size:0x58 +fn_800FC084 = .text:0x800FC084; // type:function size:0x10 +fn_800FC094 = .text:0x800FC094; // type:function size:0x8 +fn_800FC09C = .text:0x800FC09C; // type:function size:0x5C +fn_800FC0F8 = .text:0x800FC0F8; // type:function size:0x168 +fn_800FC260 = .text:0x800FC260; // type:function size:0x4C +fn_800FC2AC = .text:0x800FC2AC; // type:function size:0x14 +fn_800FC2C0 = .text:0x800FC2C0; // type:function size:0x7C +fn_800FC33C = .text:0x800FC33C; // type:function size:0x14 +fn_800FC350 = .text:0x800FC350; // type:function size:0x8C +fn_800FC3DC = .text:0x800FC3DC; // type:function size:0x2C +fn_800FC408 = .text:0x800FC408; // type:function size:0x1C4 +fn_800FC5CC = .text:0x800FC5CC; // type:function size:0x78 +fn_800FC644 = .text:0x800FC644; // type:function size:0xEC +fn_800FC730 = .text:0x800FC730; // type:function size:0xCC +fn_800FC7FC = .text:0x800FC7FC; // type:function size:0x90 +fn_800FC88C = .text:0x800FC88C; // type:function size:0x8C +fn_800FC918 = .text:0x800FC918; // type:function size:0xCC +fn_800FC9E4 = .text:0x800FC9E4; // type:function size:0x124 +Handle__8BandUserFP9DataArrayb = .text:0x800FCB08; // type:function size:0x728 +fn_800FD230 = .text:0x800FD230; // type:function size:0x8 +fn_800FD238 = .text:0x800FD238; // type:function size:0x8 +fn_800FD240 = .text:0x800FD240; // type:function size:0xF4 +PropSync__FR6SymbolR8DataNodeP9DataArrayi6PropOp = .text:0x800FD334; // type:function size:0xA0 +PropSync__FRbR8DataNodeP9DataArrayi6PropOp = .text:0x800FD3D4; // type:function size:0x8C +__ct__13LocalBandUserFv = .text:0x800FD460; // type:function size:0xF8 +fn_800FD558 = .text:0x800FD558; // type:function size:0x44 +fn_800FD59C = .text:0x800FD59C; // type:function size:0x3C +fn_800FD5D8 = .text:0x800FD5D8; // type:function size:0x70 +fn_800FD648 = .text:0x800FD648; // type:function size:0x4 +fn_800FD64C = .text:0x800FD64C; // type:function size:0x4 +fn_800FD650 = .text:0x800FD650; // type:function size:0x8 +fn_800FD658 = .text:0x800FD658; // type:function size:0x8 +fn_800FD660 = .text:0x800FD660; // type:function size:0x2C +fn_800FD68C = .text:0x800FD68C; // type:function size:0x8 +fn_800FD694 = .text:0x800FD694; // type:function size:0x54 +fn_800FD6E8 = .text:0x800FD6E8; // type:function size:0x4 +fn_800FD6EC = .text:0x800FD6EC; // type:function size:0x14 +fn_800FD700 = .text:0x800FD700; // type:function size:0x148 +fn_800FD848 = .text:0x800FD848; // type:function size:0x8 +fn_800FD850 = .text:0x800FD850; // type:function size:0x8 +fn_800FD858 = .text:0x800FD858; // type:function size:0xC +fn_800FD864 = .text:0x800FD864; // type:function size:0x40 +fn_800FD8A4 = .text:0x800FD8A4; // type:function size:0xE8 +fn_800FD98C = .text:0x800FD98C; // type:function size:0x4C +fn_800FD9D8 = .text:0x800FD9D8; // type:function size:0xC +fn_800FD9E4 = .text:0x800FD9E4; // type:function size:0x4C +fn_800FDA30 = .text:0x800FDA30; // type:function size:0x88 +fn_800FDAB8 = .text:0x800FDAB8; // type:function size:0x6C +fn_800FDB24 = .text:0x800FDB24; // type:function size:0x2C +fn_800FDB50 = .text:0x800FDB50; // type:function size:0x4 +fn_800FDB54 = .text:0x800FDB54; // type:function size:0x40 +fn_800FDB94 = .text:0x800FDB94; // type:function size:0xAC +fn_800FDC40 = .text:0x800FDC40; // type:function size:0x4 +fn_800FDC44 = .text:0x800FDC44; // type:function size:0x54 +fn_800FDC98 = .text:0x800FDC98; // type:function size:0x2C +fn_800FDCC4 = .text:0x800FDCC4; // type:function size:0x30 +fn_800FDCF4 = .text:0x800FDCF4; // type:function size:0x8 +fn_800FDCFC = .text:0x800FDCFC; // type:function size:0x8 +Handle__13LocalBandUserFP9DataArrayb = .text:0x800FDD04; // type:function size:0x2BC +GetBandUserAtIndex__FP9DataArrayi = .text:0x800FDFC0; // type:function size:0x34 +GetBandUser__FP8DataNodeP9DataArray = .text:0x800FDFF4; // type:function size:0x3C +fn_800FE030 = .text:0x800FE030; // type:function size:0x174 +fn_800FE1A4 = .text:0x800FE1A4; // type:function size:0x58 +fn_800FE1FC = .text:0x800FE1FC; // type:function size:0x80 +fn_800FE27C = .text:0x800FE27C; // type:function size:0x80 +fn_800FE2FC = .text:0x800FE2FC; // type:function size:0x58 +fn_800FE354 = .text:0x800FE354; // type:function size:0x54 +fn_800FE3A8 = .text:0x800FE3A8; // type:function size:0x3C +fn_800FE3E4 = .text:0x800FE3E4; // type:function size:0x8 +fn_800FE3EC = .text:0x800FE3EC; // type:function size:0x3C +fn_800FE428 = .text:0x800FE428; // type:function size:0x80 +fn_800FE4A8 = .text:0x800FE4A8; // type:function size:0x30 +fn_800FE4D8 = .text:0x800FE4D8; // type:function size:0x30 +fn_800FE508 = .text:0x800FE508; // type:function size:0x40 +fn_800FE548 = .text:0x800FE548; // type:function size:0x13C +fn_800FE684 = .text:0x800FE684; // type:function size:0x8 +fn_800FE68C = .text:0x800FE68C; // type:function size:0x8 +fn_800FE694 = .text:0x800FE694; // type:function size:0x4 +fn_800FE698 = .text:0x800FE698; // type:function size:0x4 +fn_800FE69C = .text:0x800FE69C; // type:function size:0x8 +fn_800FE6A4 = .text:0x800FE6A4; // type:function size:0x8 +fn_800FE6AC = .text:0x800FE6AC; // type:function size:0x8 +fn_800FE6B4 = .text:0x800FE6B4; // type:function size:0x8 +fn_800FE6BC = .text:0x800FE6BC; // type:function size:0x40 +fn_800FE6FC = .text:0x800FE6FC; // type:function size:0x298 +fn_800FE994 = .text:0x800FE994; // type:function size:0x4 +fn_800FE998 = .text:0x800FE998; // type:function size:0x88 +fn_800FEA20 = .text:0x800FEA20; // type:function size:0x1C +fn_800FEA3C = .text:0x800FEA3C; // type:function size:0x4 +fn_800FEA40 = .text:0x800FEA40; // type:function size:0x3C +fn_800FEA7C = .text:0x800FEA7C; // type:function size:0x40 +fn_800FEABC = .text:0x800FEABC; // type:function size:0x80 +fn_800FEB3C = .text:0x800FEB3C; // type:function size:0x8 +fn_800FEB44 = .text:0x800FEB44; // type:function size:0x58 +fn_800FEB9C = .text:0x800FEB9C; // type:function size:0xB8 +fn_800FEC54 = .text:0x800FEC54; // type:function size:0x10 +fn_800FEC64 = .text:0x800FEC64; // type:function size:0x150 +__ct__24WiiFriendsListChangedMsgFP9DataArray = .text:0x800FEDB4; // type:function size:0x3C +fn_800FEDF0 = .text:0x800FEDF0; // type:function size:0x6C +fn_800FEE5C = .text:0x800FEE5C; // type:function size:0xD8 +fn_800FEF34 = .text:0x800FEF34; // type:function size:0x60 +fn_800FEF94 = .text:0x800FEF94; // type:function size:0x5C +fn_800FEFF0 = .text:0x800FEFF0; // type:function size:0x28 +fn_800FF018 = .text:0x800FF018; // type:function size:0x15C +fn_800FF174 = .text:0x800FF174; // type:function size:0x44 +fn_800FF1B8 = .text:0x800FF1B8; // type:function size:0x8 +fn_800FF1C0 = .text:0x800FF1C0; // type:function size:0x8 +fn_800FF1C8 = .text:0x800FF1C8; // type:function size:0xB8 +fn_800FF280 = .text:0x800FF280; // type:function size:0x108 +fn_800FF388 = .text:0x800FF388; // type:function size:0x5C +fn_800FF3E4 = .text:0x800FF3E4; // type:function size:0x14 +fn_800FF3F8 = .text:0x800FF3F8; // type:function size:0x14 +fn_800FF40C = .text:0x800FF40C; // type:function size:0x14 +fn_800FF420 = .text:0x800FF420; // type:function size:0x14 +fn_800FF434 = .text:0x800FF434; // type:function size:0x14 +fn_800FF448 = .text:0x800FF448; // type:function size:0x14 +fn_800FF45C = .text:0x800FF45C; // type:function size:0x14 +fn_800FF470 = .text:0x800FF470; // type:function size:0x14 +fn_800FF484 = .text:0x800FF484; // type:function size:0x14 +fn_800FF498 = .text:0x800FF498; // type:function size:0x14 +fn_800FF4AC = .text:0x800FF4AC; // type:function size:0x14 +fn_800FF4C0 = .text:0x800FF4C0; // type:function size:0x14 +fn_800FF4D4 = .text:0x800FF4D4; // type:function size:0x14 +fn_800FF4E8 = .text:0x800FF4E8; // type:function size:0x14 +fn_800FF4FC = .text:0x800FF4FC; // type:function size:0x14 +fn_800FF510 = .text:0x800FF510; // type:function size:0x14 +fn_800FF524 = .text:0x800FF524; // type:function size:0x14 +fn_800FF538 = .text:0x800FF538; // type:function size:0x14 +fn_800FF54C = .text:0x800FF54C; // type:function size:0x14 +fn_800FF560 = .text:0x800FF560; // type:function size:0x14 +fn_800FF574 = .text:0x800FF574; // type:function size:0x14 +fn_800FF588 = .text:0x800FF588; // type:function size:0x14 +fn_800FF59C = .text:0x800FF59C; // type:function size:0x14 +fn_800FF5B0 = .text:0x800FF5B0; // type:function size:0x14 +fn_800FF5C4 = .text:0x800FF5C4; // type:function size:0x14 +fn_800FF5D8 = .text:0x800FF5D8; // type:function size:0x14 +fn_800FF5EC = .text:0x800FF5EC; // type:function size:0x14 +fn_800FF600 = .text:0x800FF600; // type:function size:0x14 +fn_800FF614 = .text:0x800FF614; // type:function size:0x14 +fn_800FF628 = .text:0x800FF628; // type:function size:0x14 +fn_800FF63C = .text:0x800FF63C; // type:function size:0x14 +fn_800FF650 = .text:0x800FF650; // type:function size:0x14 +fn_800FF664 = .text:0x800FF664; // type:function size:0x14 +fn_800FF678 = .text:0x800FF678; // type:function size:0x14 +fn_800FF68C = .text:0x800FF68C; // type:function size:0x14 +fn_800FF6A0 = .text:0x800FF6A0; // type:function size:0x14 +fn_800FF6B4 = .text:0x800FF6B4; // type:function size:0x14 +fn_800FF6C8 = .text:0x800FF6C8; // type:function size:0x14 +fn_800FF6DC = .text:0x800FF6DC; // type:function size:0x14 +fn_800FF6F0 = .text:0x800FF6F0; // type:function size:0x14 +fn_800FF704 = .text:0x800FF704; // type:function size:0x14 +fn_800FF718 = .text:0x800FF718; // type:function size:0x14 +fn_800FF72C = .text:0x800FF72C; // type:function size:0x14 +fn_800FF740 = .text:0x800FF740; // type:function size:0x14 +fn_800FF754 = .text:0x800FF754; // type:function size:0x14 +fn_800FF768 = .text:0x800FF768; // type:function size:0x14 +fn_800FF77C = .text:0x800FF77C; // type:function size:0x14 +fn_800FF790 = .text:0x800FF790; // type:function size:0x14 +fn_800FF7A4 = .text:0x800FF7A4; // type:function size:0x14 +fn_800FF7B8 = .text:0x800FF7B8; // type:function size:0x14 +fn_800FF7CC = .text:0x800FF7CC; // type:function size:0x14 +fn_800FF7E0 = .text:0x800FF7E0; // type:function size:0x14 +fn_800FF7F4 = .text:0x800FF7F4; // type:function size:0x14 +fn_800FF808 = .text:0x800FF808; // type:function size:0x14 +fn_800FF81C = .text:0x800FF81C; // type:function size:0x14 +fn_800FF830 = .text:0x800FF830; // type:function size:0x14 +fn_800FF844 = .text:0x800FF844; // type:function size:0x14 +fn_800FF858 = .text:0x800FF858; // type:function size:0x14 +fn_800FF86C = .text:0x800FF86C; // type:function size:0x14 +fn_800FF880 = .text:0x800FF880; // type:function size:0x4C +fn_800FF8CC = .text:0x800FF8CC; // type:function size:0x58 +fn_800FF924 = .text:0x800FF924; // type:function size:0x200 +fn_800FFB24 = .text:0x800FFB24; // type:function size:0x118 +fn_800FFC3C = .text:0x800FFC3C; // type:function size:0x5C +fn_800FFC98 = .text:0x800FFC98; // type:function size:0x5C +fn_800FFCF4 = .text:0x800FFCF4; // type:function size:0x24 +fn_800FFD18 = .text:0x800FFD18; // type:function size:0x2C +fn_800FFD44 = .text:0x800FFD44; // type:function size:0x2C +fn_800FFD70 = .text:0x800FFD70; // type:function size:0x2C +fn_800FFD9C = .text:0x800FFD9C; // type:function size:0x1C +fn_800FFDB8 = .text:0x800FFDB8; // type:function size:0x1C +fn_800FFDD4 = .text:0x800FFDD4; // type:function size:0x1C +fn_800FFDF0 = .text:0x800FFDF0; // type:function size:0xA4 +fn_800FFE94 = .text:0x800FFE94; // type:function size:0xAC +fn_800FFF40 = .text:0x800FFF40; // type:function size:0xAC +fn_800FFFEC = .text:0x800FFFEC; // type:function size:0x8 +fn_800FFFF4 = .text:0x800FFFF4; // type:function size:0x74 +fn_80100068 = .text:0x80100068; // type:function size:0x8 +fn_80100070 = .text:0x80100070; // type:function size:0x8 +fn_80100078 = .text:0x80100078; // type:function size:0x54 +fn_801000CC = .text:0x801000CC; // type:function size:0x78 +fn_80100144 = .text:0x80100144; // type:function size:0xB8 +fn_801001FC = .text:0x801001FC; // type:function size:0x8 +fn_80100204 = .text:0x80100204; // type:function size:0x8 +fn_8010020C = .text:0x8010020C; // type:function size:0x10 +fn_8010021C = .text:0x8010021C; // type:function size:0x5C +fn_80100278 = .text:0x80100278; // type:function size:0x68 +GetNumParticipants__11BandUserMgrCFv = .text:0x801002E0; // type:function size:0x80 +fn_80100360 = .text:0x80100360; // type:function size:0x68 +IsMultiplayerGame__11BandUserMgrCFv = .text:0x801003C8; // type:function size:0x34 +fn_801003FC = .text:0x801003FC; // type:function size:0xA4 +fn_801004A0 = .text:0x801004A0; // type:function size:0xB8 +fn_80100558 = .text:0x80100558; // type:function size:0x160 +fn_801006B8 = .text:0x801006B8; // type:function size:0x33C +fn_801009F4 = .text:0x801009F4; // type:function size:0x1C +fn_80100A10 = .text:0x80100A10; // type:function size:0x220 +fn_80100C30 = .text:0x80100C30; // type:function size:0xC +fn_80100C3C = .text:0x80100C3C; // type:function size:0x8 +fn_80100C44 = .text:0x80100C44; // type:function size:0x8 +fn_80100C4C = .text:0x80100C4C; // type:function size:0x8 +fn_80100C54 = .text:0x80100C54; // type:function size:0x8 +fn_80100C5C = .text:0x80100C5C; // type:function size:0x8 +fn_80100C64 = .text:0x80100C64; // type:function size:0x8 +fn_80100C6C = .text:0x80100C6C; // type:function size:0x8 +fn_80100C74 = .text:0x80100C74; // type:function size:0x8 +fn_80100C7C = .text:0x80100C7C; // type:function size:0x84 +fn_80100D00 = .text:0x80100D00; // type:function size:0x14C +fn_80100E4C = .text:0x80100E4C; // type:function size:0x118 +fn_80100F64 = .text:0x80100F64; // type:function size:0x8 +fn_80100F6C = .text:0x80100F6C; // type:function size:0xC +fn_80100F78 = .text:0x80100F78; // type:function size:0x34 +fn_80100FAC = .text:0x80100FAC; // type:function size:0x3C +fn_80100FE8 = .text:0x80100FE8; // type:function size:0x12C +fn_80101114 = .text:0x80101114; // type:function size:0x24 +fn_80101138 = .text:0x80101138; // type:function size:0x34 +fn_8010116C = .text:0x8010116C; // type:function size:0xE0 +fn_8010124C = .text:0x8010124C; // type:function size:0xC4 +Handle__11BandUserMgrFP9DataArrayb = .text:0x80101310; // type:function size:0x470 +__ct__19ProfilePreDeleteMsgFP9DataArray = .text:0x80101780; // type:function size:0x3C +Type__19ProfilePreDeleteMsgFv = .text:0x801017BC; // type:function size:0x4C +__ct__14ChordbookPanelFv = .text:0x80101808; // type:function size:0x188 +fn_80101990 = .text:0x80101990; // type:function size:0x14 +fn_801019A4 = .text:0x801019A4; // type:function size:0x68 +fn_80101A0C = .text:0x80101A0C; // type:function size:0x60 +__ct__23BeatMatchControllerSinkFv = .text:0x80101A6C; // type:function size:0x10 +__dt__14ChordbookPanelFv = .text:0x80101A7C; // type:function size:0xD0 +fn_80101B4C = .text:0x80101B4C; // type:function size:0x9C +fn_80101BE8 = .text:0x80101BE8; // type:function size:0x4 +fn_80101BEC = .text:0x80101BEC; // type:function size:0x34 +fn_80101C20 = .text:0x80101C20; // type:function size:0x4 +fn_80101C24 = .text:0x80101C24; // type:function size:0x4 +StartChordbook__14ChordbookPanelFv = .text:0x80101C28; // type:function size:0xC +fn_80101C34 = .text:0x80101C34; // type:function size:0x30 +fn_80101C64 = .text:0x80101C64; // type:function size:0xA0 +fn_80101D04 = .text:0x80101D04; // type:function size:0x70 +fn_80101D74 = .text:0x80101D74; // type:function size:0xA0 +fn_80101E14 = .text:0x80101E14; // type:function size:0x8 +fn_80101E1C = .text:0x80101E1C; // type:function size:0xB4 +SkipPushDialog__14ChordbookPanelFv = .text:0x80101ED0; // type:function size:0x58 +fn_80101F28 = .text:0x80101F28; // type:function size:0x58 +fn_80101F80 = .text:0x80101F80; // type:function size:0x9C +fn_8010201C = .text:0x8010201C; // type:function size:0x50 +fn_8010206C = .text:0x8010206C; // type:function size:0x48 +fn_801020B4 = .text:0x801020B4; // type:function size:0xAC +fn_80102160 = .text:0x80102160; // type:function size:0xC4 +fn_80102224 = .text:0x80102224; // type:function size:0x98 +fn_801022BC = .text:0x801022BC; // type:function size:0x8 +fn_801022C4 = .text:0x801022C4; // type:function size:0x74 +fn_80102338 = .text:0x80102338; // type:function size:0x74 +fn_801023AC = .text:0x801023AC; // type:function size:0x74 +fn_80102420 = .text:0x80102420; // type:function size:0x21C +fn_8010263C = .text:0x8010263C; // type:function size:0x8 +fn_80102644 = .text:0x80102644; // type:function size:0x4C +fn_80102690 = .text:0x80102690; // type:function size:0x274 +fn_80102904 = .text:0x80102904; // type:function size:0x4C +fn_80102950 = .text:0x80102950; // type:function size:0x8 +fn_80102958 = .text:0x80102958; // type:function size:0x14 +fn_8010296C = .text:0x8010296C; // type:function size:0x60 +fn_801029CC = .text:0x801029CC; // type:function size:0x130 +fn_80102AFC = .text:0x80102AFC; // type:function size:0x124 +fn_80102C20 = .text:0x80102C20; // type:function size:0xB10 +fn_80103730 = .text:0x80103730; // type:function size:0x48 +fn_80103778 = .text:0x80103778; // type:function size:0x8 +fn_80103780 = .text:0x80103780; // type:function size:0x114 +fn_80103894 = .text:0x80103894; // type:function size:0x98 +fn_8010392C = .text:0x8010392C; // type:function size:0x44 +OnDisplayChord__14ChordbookPanelFP9DataArray = .text:0x80103970; // type:function size:0x70 +OnComplete__14ChordbookPanelFP9DataArray = .text:0x801039E0; // type:function size:0x9C +OnSkipConfirm__14ChordbookPanelFP9DataArray = .text:0x80103A7C; // type:function size:0x5C +OnSkipCancel__14ChordbookPanelFP9DataArray = .text:0x80103AD8; // type:function size:0x48 +fn_80103B20 = .text:0x80103B20; // type:function size:0x4 +Handle__14ChordbookPanelFP9DataArrayb = .text:0x80103B24; // type:function size:0x354 +SyncProperty__14ChordbookPanelFR8DataNodeP9DataArrayi6PropOp = .text:0x80103E78; // type:function size:0xC0 +SetType__14ChordbookPanelF6Symbol = .text:0x80103F38; // type:function size:0x134 +StaticClassName__14ChordbookPanelFv = .text:0x8010406C; // type:function size:0x4C +ClassName__14ChordbookPanelCFv = .text:0x801040B8; // type:function size:0x4 +fn_801040BC = .text:0x801040BC; // type:function size:0x14 +fn_801040D0 = .text:0x801040D0; // type:function size:0x14 +fn_801040E4 = .text:0x801040E4; // type:function size:0x14 +fn_801040F8 = .text:0x801040F8; // type:function size:0x14 +fn_8010410C = .text:0x8010410C; // type:function size:0x14 +fn_80104120 = .text:0x80104120; // type:function size:0x14 +fn_80104134 = .text:0x80104134; // type:function size:0x14 +fn_80104148 = .text:0x80104148; // type:function size:0x14 +fn_8010415C = .text:0x8010415C; // type:function size:0x8 +fn_80104164 = .text:0x80104164; // type:function size:0x8 +fn_8010416C = .text:0x8010416C; // type:function size:0x8 +fn_80104174 = .text:0x80104174; // type:function size:0x8 +__ct__Q210ContentMgr8CallbackFv = .text:0x8010417C; // type:function size:0x10 +New<5Fader>__Q23Hmx6ObjectFv_P5Fader = .text:0x8010418C; // type:function size:0x48 +StaticClassName__5FaderFv = .text:0x801041D4; // type:function size:0x4C +fn_80104220 = .text:0x80104220; // type:function size:0x1B0 +fn_801043D0 = .text:0x801043D0; // type:function size:0x24 +fn_801043F4 = .text:0x801043F4; // type:function size:0x2C +fn_80104420 = .text:0x80104420; // type:function size:0x94 +fn_801044B4 = .text:0x801044B4; // type:function size:0x8 +fn_801044BC = .text:0x801044BC; // type:function size:0x8 +fn_801044C4 = .text:0x801044C4; // type:function size:0x54 +fn_80104518 = .text:0x80104518; // type:function size:0x30 +fn_80104548 = .text:0x80104548; // type:function size:0x30 +fn_80104578 = .text:0x80104578; // type:function size:0x40 +fn_801045B8 = .text:0x801045B8; // type:function size:0x108 +fn_801046C0 = .text:0x801046C0; // type:function size:0x10 +fn_801046D0 = .text:0x801046D0; // type:function size:0x1CC +fn_8010489C = .text:0x8010489C; // type:function size:0xA4 +fn_80104940 = .text:0x80104940; // type:function size:0x104 +fn_80104A44 = .text:0x80104A44; // type:function size:0xDC +fn_80104B20 = .text:0x80104B20; // type:function size:0x78 +fn_80104B98 = .text:0x80104B98; // type:function size:0x9C +fn_80104C34 = .text:0x80104C34; // type:function size:0x124 +fn_80104D58 = .text:0x80104D58; // type:function size:0x164 +fn_80104EBC = .text:0x80104EBC; // type:function size:0x168 +fn_80105024 = .text:0x80105024; // type:function size:0x5C +fn_80105080 = .text:0x80105080; // type:function size:0xE8 +fn_80105168 = .text:0x80105168; // type:function size:0x3C +fn_801051A4 = .text:0x801051A4; // type:function size:0xC +fn_801051B0 = .text:0x801051B0; // type:function size:0x60 +fn_80105210 = .text:0x80105210; // type:function size:0x58 +fn_80105268 = .text:0x80105268; // type:function size:0x4 +fn_8010526C = .text:0x8010526C; // type:function size:0x90 +fn_801052FC = .text:0x801052FC; // type:function size:0x4 +fn_80105300 = .text:0x80105300; // type:function size:0x40 +fn_80105340 = .text:0x80105340; // type:function size:0x8C +fn_801053CC = .text:0x801053CC; // type:function size:0x8 +fn_801053D4 = .text:0x801053D4; // type:function size:0x2C +fn_80105400 = .text:0x80105400; // type:function size:0x58 +fn_80105458 = .text:0x80105458; // type:function size:0x28 +fn_80105480 = .text:0x80105480; // type:function size:0x68 +fn_801054E8 = .text:0x801054E8; // type:function size:0x68 +fn_80105550 = .text:0x80105550; // type:function size:0x2C +fn_8010557C = .text:0x8010557C; // type:function size:0x18C +fn_80105708 = .text:0x80105708; // type:function size:0x5C +fn_80105764 = .text:0x80105764; // type:function size:0x10 +fn_80105774 = .text:0x80105774; // type:function size:0x54 +fn_801057C8 = .text:0x801057C8; // type:function size:0x28 +fn_801057F0 = .text:0x801057F0; // type:function size:0x68 +fn_80105858 = .text:0x80105858; // type:function size:0x5C +fn_801058B4 = .text:0x801058B4; // type:function size:0x38 +fn_801058EC = .text:0x801058EC; // type:function size:0x114 +fn_80105A00 = .text:0x80105A00; // type:function size:0x5C +fn_80105A5C = .text:0x80105A5C; // type:function size:0x5C +fn_80105AB8 = .text:0x80105AB8; // type:function size:0x54 +fn_80105B0C = .text:0x80105B0C; // type:function size:0x50 +fn_80105B5C = .text:0x80105B5C; // type:function size:0x1A0 +fn_80105CFC = .text:0x80105CFC; // type:function size:0x38 +fn_80105D34 = .text:0x80105D34; // type:function size:0x50 +fn_80105D84 = .text:0x80105D84; // type:function size:0x8 +fn_80105D8C = .text:0x80105D8C; // type:function size:0x8 +fn_80105D94 = .text:0x80105D94; // type:function size:0x98 +ClampEq__FRfRCfRCf_b = .text:0x80105E2C; // type:function size:0x3C +fn_80105E68 = .text:0x80105E68; // type:function size:0x98 +fn_80105F00 = .text:0x80105F00; // type:function size:0x64 +fn_80105F64 = .text:0x80105F64; // type:function size:0xAC +fn_80106010 = .text:0x80106010; // type:function size:0xB8 +fn_801060C8 = .text:0x801060C8; // type:function size:0x18 +fn_801060E0 = .text:0x801060E0; // type:function size:0x18 +fn_801060F8 = .text:0x801060F8; // type:function size:0x34 +fn_8010612C = .text:0x8010612C; // type:function size:0x18 +fn_80106144 = .text:0x80106144; // type:function size:0x20 +fn_80106164 = .text:0x80106164; // type:function size:0x1C +fn_80106180 = .text:0x80106180; // type:function size:0x44 +fn_801061C4 = .text:0x801061C4; // type:function size:0x6C +fn_80106230 = .text:0x80106230; // type:function size:0x50 +fn_80106280 = .text:0x80106280; // type:function size:0x80 +fn_80106300 = .text:0x80106300; // type:function size:0x88 +fn_80106388 = .text:0x80106388; // type:function size:0x80 +fn_80106408 = .text:0x80106408; // type:function size:0x48 +fn_80106450 = .text:0x80106450; // type:function size:0x6C +fn_801064BC = .text:0x801064BC; // type:function size:0x6C +fn_80106528 = .text:0x80106528; // type:function size:0x5C +fn_80106584 = .text:0x80106584; // type:function size:0x48 +fn_801065CC = .text:0x801065CC; // type:function size:0x48 +fn_80106614 = .text:0x80106614; // type:function size:0x114 +fn_80106728 = .text:0x80106728; // type:function size:0x4 +fn_8010672C = .text:0x8010672C; // type:function size:0x88 +fn_801067B4 = .text:0x801067B4; // type:function size:0x2C +fn_801067E0 = .text:0x801067E0; // type:function size:0x94 +fn_80106874 = .text:0x80106874; // type:function size:0x24 +fn_80106898 = .text:0x80106898; // type:function size:0x58 +fn_801068F0 = .text:0x801068F0; // type:function size:0x80 +fn_80106970 = .text:0x80106970; // type:function size:0x80 +fn_801069F0 = .text:0x801069F0; // type:function size:0x58 +fn_80106A48 = .text:0x80106A48; // type:function size:0x54 +fn_80106A9C = .text:0x80106A9C; // type:function size:0x5C +fn_80106AF8 = .text:0x80106AF8; // type:function size:0x6C +fn_80106B64 = .text:0x80106B64; // type:function size:0x28 +fn_80106B8C = .text:0x80106B8C; // type:function size:0x8 +fn_80106B94 = .text:0x80106B94; // type:function size:0x3C +fn_80106BD0 = .text:0x80106BD0; // type:function size:0x30 +fn_80106C00 = .text:0x80106C00; // type:function size:0x30 +fn_80106C30 = .text:0x80106C30; // type:function size:0x40 +fn_80106C70 = .text:0x80106C70; // type:function size:0xC8 +fn_80106D38 = .text:0x80106D38; // type:function size:0x9C +fn_80106DD4 = .text:0x80106DD4; // type:function size:0xB8 +fn_80106E8C = .text:0x80106E8C; // type:function size:0x94 +fn_80106F20 = .text:0x80106F20; // type:function size:0x4 +fn_80106F24 = .text:0x80106F24; // type:function size:0x114 +fn_80107038 = .text:0x80107038; // type:function size:0x60 +fn_80107098 = .text:0x80107098; // type:function size:0x5C +fn_801070F4 = .text:0x801070F4; // type:function size:0x54 +fn_80107148 = .text:0x80107148; // type:function size:0x5C +fn_801071A4 = .text:0x801071A4; // type:function size:0x5C +fn_80107200 = .text:0x80107200; // type:function size:0x100 +fn_80107300 = .text:0x80107300; // type:function size:0x5C +fn_8010735C = .text:0x8010735C; // type:function size:0x60 +fn_801073BC = .text:0x801073BC; // type:function size:0x8 +fn_801073C4 = .text:0x801073C4; // type:function size:0x78 +fn_8010743C = .text:0x8010743C; // type:function size:0xC +fn_80107448 = .text:0x80107448; // type:function size:0xB0 +fn_801074F8 = .text:0x801074F8; // type:function size:0xA0 +fn_80107598 = .text:0x80107598; // type:function size:0x64 +fn_801075FC = .text:0x801075FC; // type:function size:0x10 +fn_8010760C = .text:0x8010760C; // type:function size:0x8 +fn_80107614 = .text:0x80107614; // type:function size:0x20 +fn_80107634 = .text:0x80107634; // type:function size:0xC +fn_80107640 = .text:0x80107640; // type:function size:0x1C +fn_8010765C = .text:0x8010765C; // type:function size:0x54 +fn_801076B0 = .text:0x801076B0; // type:function size:0x58 +fn_80107708 = .text:0x80107708; // type:function size:0x60 +fn_80107768 = .text:0x80107768; // type:function size:0x58 +fn_801077C0 = .text:0x801077C0; // type:function size:0x58 +fn_80107818 = .text:0x80107818; // type:function size:0x50 +fn_80107868 = .text:0x80107868; // type:function size:0x44 +fn_801078AC = .text:0x801078AC; // type:function size:0x3C +fn_801078E8 = .text:0x801078E8; // type:function size:0x70 +fn_80107958 = .text:0x80107958; // type:function size:0x68 +fn_801079C0 = .text:0x801079C0; // type:function size:0x74 +fn_80107A34 = .text:0x80107A34; // type:function size:0x11C +CountBits__Fi = .text:0x80107B50; // type:function size:0x24 +fn_80107B74 = .text:0x80107B74; // type:function size:0x4 +fn_80107B78 = .text:0x80107B78; // type:function size:0x4 +fn_80107B7C = .text:0x80107B7C; // type:function size:0xEC +MakeString__FPCcf_PCc = .text:0x80107C68; // type:function size:0x48 +fn_80107CB0 = .text:0x80107CB0; // type:function size:0x118 +fn_80107DC8 = .text:0x80107DC8; // type:function size:0x2C +fn_80107DF4 = .text:0x80107DF4; // type:function size:0x30 +fn_80107E24 = .text:0x80107E24; // type:function size:0x30 +fn_80107E54 = .text:0x80107E54; // type:function size:0xA0 +fn_80107EF4 = .text:0x80107EF4; // type:function size:0xC8 +fn_80107FBC = .text:0x80107FBC; // type:function size:0x2C +fn_80107FE8 = .text:0x80107FE8; // type:function size:0x100 +fn_801080E8 = .text:0x801080E8; // type:function size:0x58 +fn_80108140 = .text:0x80108140; // type:function size:0x4C +fn_8010818C = .text:0x8010818C; // type:function size:0x30 +fn_801081BC = .text:0x801081BC; // type:function size:0x8 +fn_801081C4 = .text:0x801081C4; // type:function size:0x4 +fn_801081C8 = .text:0x801081C8; // type:function size:0x40 +fn_80108208 = .text:0x80108208; // type:function size:0x74 +fn_8010827C = .text:0x8010827C; // type:function size:0x29C +fn_80108518 = .text:0x80108518; // type:function size:0x5C +fn_80108574 = .text:0x80108574; // type:function size:0xC8 +fn_8010863C = .text:0x8010863C; // type:function size:0x50 +fn_8010868C = .text:0x8010868C; // type:function size:0x30 +fn_801086BC = .text:0x801086BC; // type:function size:0x388 +fn_80108A44 = .text:0x80108A44; // type:function size:0x6C +fn_80108AB0 = .text:0x80108AB0; // type:function size:0x2C +fn_80108ADC = .text:0x80108ADC; // type:function size:0x158 +fn_80108C34 = .text:0x80108C34; // type:function size:0x44 +fn_80108C78 = .text:0x80108C78; // type:function size:0x8 +fn_80108C80 = .text:0x80108C80; // type:function size:0x104 +fn_80108D84 = .text:0x80108D84; // type:function size:0x5C +fn_80108DE0 = .text:0x80108DE0; // type:function size:0x10 +fn_80108DF0 = .text:0x80108DF0; // type:function size:0x4C +fn_80108E3C = .text:0x80108E3C; // type:function size:0xC4 +fn_80108F00 = .text:0x80108F00; // type:function size:0x4C +StartFade__9FadePanelFfRCQ23Hmx5Colorbb = .text:0x80108F4C; // type:function size:0xB4 +fn_80109000 = .text:0x80109000; // type:function size:0x40 +fn_80109040 = .text:0x80109040; // type:function size:0xBC +fn_801090FC = .text:0x801090FC; // type:function size:0x104 +Handle__9FadePanelFP9DataArrayb = .text:0x80109200; // type:function size:0x130 +OnStartFade__9FadePanelFP9DataArray = .text:0x80109330; // type:function size:0xF0 +fn_80109420 = .text:0x80109420; // type:function size:0x7C +fn_8010949C = .text:0x8010949C; // type:function size:0x134 +fn_801095D0 = .text:0x801095D0; // type:function size:0x4C +fn_8010961C = .text:0x8010961C; // type:function size:0x4 +fn_80109620 = .text:0x80109620; // type:function size:0x14 +fn_80109634 = .text:0x80109634; // type:function size:0x14 +fn_80109648 = .text:0x80109648; // type:function size:0x14 +fn_8010965C = .text:0x8010965C; // type:function size:0x14 +fn_80109670 = .text:0x80109670; // type:function size:0x14 +fn_80109684 = .text:0x80109684; // type:function size:0x14 +fn_80109698 = .text:0x80109698; // type:function size:0x14 +fn_801096AC = .text:0x801096AC; // type:function size:0x9C +fn_80109748 = .text:0x80109748; // type:function size:0x58 +fn_801097A0 = .text:0x801097A0; // type:function size:0x60 +fn_80109800 = .text:0x80109800; // type:function size:0x58 +fn_80109858 = .text:0x80109858; // type:function size:0x58 +fn_801098B0 = .text:0x801098B0; // type:function size:0x50 +fn_80109900 = .text:0x80109900; // type:function size:0x44 +fn_80109944 = .text:0x80109944; // type:function size:0x3C +fn_80109980 = .text:0x80109980; // type:function size:0x70 +fn_801099F0 = .text:0x801099F0; // type:function size:0x38 +fn_80109A28 = .text:0x80109A28; // type:function size:0x74 +fn_80109A9C = .text:0x80109A9C; // type:function size:0x7C +fn_80109B18 = .text:0x80109B18; // type:function size:0xF4 +fn_80109C0C = .text:0x80109C0C; // type:function size:0x4 +fn_80109C10 = .text:0x80109C10; // type:function size:0x30 +fn_80109C40 = .text:0x80109C40; // type:function size:0x54 +fn_80109C94 = .text:0x80109C94; // type:function size:0x180 +fn_80109E14 = .text:0x80109E14; // type:function size:0xF8 +fn_80109F0C = .text:0x80109F0C; // type:function size:0x58 +fn_80109F64 = .text:0x80109F64; // type:function size:0x44 +fn_80109FA8 = .text:0x80109FA8; // type:function size:0x8 +fn_80109FB0 = .text:0x80109FB0; // type:function size:0x4 +fn_80109FB4 = .text:0x80109FB4; // type:function size:0x40 +fn_80109FF4 = .text:0x80109FF4; // type:function size:0x74 +fn_8010A068 = .text:0x8010A068; // type:function size:0x4 +fn_8010A06C = .text:0x8010A06C; // type:function size:0x31C +fn_8010A388 = .text:0x8010A388; // type:function size:0x4 +fn_8010A38C = .text:0x8010A38C; // type:function size:0x50 +fn_8010A3DC = .text:0x8010A3DC; // type:function size:0x4C +fn_8010A428 = .text:0x8010A428; // type:function size:0x44 +fn_8010A46C = .text:0x8010A46C; // type:function size:0xC8 +fn_8010A534 = .text:0x8010A534; // type:function size:0xC +fn_8010A540 = .text:0x8010A540; // type:function size:0x118 +fn_8010A658 = .text:0x8010A658; // type:function size:0x2C +fn_8010A684 = .text:0x8010A684; // type:function size:0x30 +fn_8010A6B4 = .text:0x8010A6B4; // type:function size:0xA0 +fn_8010A754 = .text:0x8010A754; // type:function size:0x170 +fn_8010A8C4 = .text:0x8010A8C4; // type:function size:0x3C +fn_8010A900 = .text:0x8010A900; // type:function size:0x1C8 +fn_8010AAC8 = .text:0x8010AAC8; // type:function size:0x108 +fn_8010ABD0 = .text:0x8010ABD0; // type:function size:0x54 +fn_8010AC24 = .text:0x8010AC24; // type:function size:0xAC +fn_8010ACD0 = .text:0x8010ACD0; // type:function size:0x78 +fn_8010AD48 = .text:0x8010AD48; // type:function size:0x118 +fn_8010AE60 = .text:0x8010AE60; // type:function size:0x70 +fn_8010AED0 = .text:0x8010AED0; // type:function size:0x78 +fn_8010AF48 = .text:0x8010AF48; // type:function size:0x1B8 +fn_8010B100 = .text:0x8010B100; // type:function size:0x90 +fn_8010B190 = .text:0x8010B190; // type:function size:0x1EC +fn_8010B37C = .text:0x8010B37C; // type:function size:0x1FC +fn_8010B578 = .text:0x8010B578; // type:function size:0x8C +fn_8010B604 = .text:0x8010B604; // type:function size:0x58 +__ct__12DataArrayPtrFRC8DataNode = .text:0x8010B65C; // type:function size:0x6C +fn_8010B6C8 = .text:0x8010B6C8; // type:function size:0xAC +fn_8010B774 = .text:0x8010B774; // type:function size:0x4 +fn_8010B778 = .text:0x8010B778; // type:function size:0x58 +fn_8010B7D0 = .text:0x8010B7D0; // type:function size:0x204 +fn_8010B9D4 = .text:0x8010B9D4; // type:function size:0x120 +fn_8010BAF4 = .text:0x8010BAF4; // type:function size:0x58 +fn_8010BB4C = .text:0x8010BB4C; // type:function size:0x78 +fn_8010BBC4 = .text:0x8010BBC4; // type:function size:0xCC +fn_8010BC90 = .text:0x8010BC90; // type:function size:0x7C +fn_8010BD0C = .text:0x8010BD0C; // type:function size:0x14 +fn_8010BD20 = .text:0x8010BD20; // type:function size:0xBC +fn_8010BDDC = .text:0x8010BDDC; // type:function size:0x388 +fn_8010C164 = .text:0x8010C164; // type:function size:0x6C +fn_8010C1D0 = .text:0x8010C1D0; // type:function size:0x2C +fn_8010C1FC = .text:0x8010C1FC; // type:function size:0x68 +fn_8010C264 = .text:0x8010C264; // type:function size:0x8 +fn_8010C26C = .text:0x8010C26C; // type:function size:0x28 +fn_8010C294 = .text:0x8010C294; // type:function size:0x68 +fn_8010C2FC = .text:0x8010C2FC; // type:function size:0x8 +fn_8010C304 = .text:0x8010C304; // type:function size:0x158 +fn_8010C45C = .text:0x8010C45C; // type:function size:0x44 +fn_8010C4A0 = .text:0x8010C4A0; // type:function size:0x8 +fn_8010C4A8 = .text:0x8010C4A8; // type:function size:0x104 +fn_8010C5AC = .text:0x8010C5AC; // type:function size:0x5C +fn_8010C608 = .text:0x8010C608; // type:function size:0x10 +fn_8010C618 = .text:0x8010C618; // type:function size:0x44 +fn_8010C65C = .text:0x8010C65C; // type:function size:0xE8 +fn_8010C744 = .text:0x8010C744; // type:function size:0xCC +fn_8010C810 = .text:0x8010C810; // type:function size:0xB4 +fn_8010C8C4 = .text:0x8010C8C4; // type:function size:0xA0 +fn_8010C964 = .text:0x8010C964; // type:function size:0x74 +fn_8010C9D8 = .text:0x8010C9D8; // type:function size:0x120 +fn_8010CAF8 = .text:0x8010CAF8; // type:function size:0x1C0 +fn_8010CCB8 = .text:0x8010CCB8; // type:function size:0x188 +fn_8010CE40 = .text:0x8010CE40; // type:function size:0x3C +fn_8010CE7C = .text:0x8010CE7C; // type:function size:0x184 +fn_8010D000 = .text:0x8010D000; // type:function size:0x8 +fn_8010D008 = .text:0x8010D008; // type:function size:0x30 +fn_8010D038 = .text:0x8010D038; // type:function size:0xBC +fn_8010D0F4 = .text:0x8010D0F4; // type:function size:0x8 +fn_8010D0FC = .text:0x8010D0FC; // type:function size:0x8 +fn_8010D104 = .text:0x8010D104; // type:function size:0x8 +fn_8010D10C = .text:0x8010D10C; // type:function size:0x8 +fn_8010D114 = .text:0x8010D114; // type:function size:0x8 +Handle__14FreestylePanelFP9DataArrayb = .text:0x8010D11C; // type:function size:0x390 +__ct__19JoypadConnectionMsgFP9DataArray = .text:0x8010D4AC; // type:function size:0x3C +fn_8010D4E8 = .text:0x8010D4E8; // type:function size:0x4C +fn_8010D534 = .text:0x8010D534; // type:function size:0x134 +fn_8010D668 = .text:0x8010D668; // type:function size:0x4C +fn_8010D6B4 = .text:0x8010D6B4; // type:function size:0x4 +fn_8010D6B8 = .text:0x8010D6B8; // type:function size:0x14 +fn_8010D6CC = .text:0x8010D6CC; // type:function size:0x14 +fn_8010D6E0 = .text:0x8010D6E0; // type:function size:0x14 +fn_8010D6F4 = .text:0x8010D6F4; // type:function size:0x14 +fn_8010D708 = .text:0x8010D708; // type:function size:0x14 +fn_8010D71C = .text:0x8010D71C; // type:function size:0x14 +fn_8010D730 = .text:0x8010D730; // type:function size:0x14 +fn_8010D744 = .text:0x8010D744; // type:function size:0x8 +fn_8010D74C = .text:0x8010D74C; // type:function size:0x8 +fn_8010D754 = .text:0x8010D754; // type:function size:0x30 +fn_8010D784 = .text:0x8010D784; // type:function size:0x40 +fn_8010D7C4 = .text:0x8010D7C4; // type:function size:0x18 +fn_8010D7DC = .text:0x8010D7DC; // type:function size:0x24 +fn_8010D800 = .text:0x8010D800; // type:function size:0x58 +fn_8010D858 = .text:0x8010D858; // type:function size:0x224 +fn_8010DA7C = .text:0x8010DA7C; // type:function size:0x4C +fn_8010DAC8 = .text:0x8010DAC8; // type:function size:0x94 +fn_8010DB5C = .text:0x8010DB5C; // type:function size:0x174 +fn_8010DCD0 = .text:0x8010DCD0; // type:function size:0x30 +fn_8010DD00 = .text:0x8010DD00; // type:function size:0x44 +fn_8010DD44 = .text:0x8010DD44; // type:function size:0x30 +fn_8010DD74 = .text:0x8010DD74; // type:function size:0x44 +fn_8010DDB8 = .text:0x8010DDB8; // type:function size:0x30 +fn_8010DDE8 = .text:0x8010DDE8; // type:function size:0x30 +fn_8010DE18 = .text:0x8010DE18; // type:function size:0x4C +fn_8010DE64 = .text:0x8010DE64; // type:function size:0xEC +fn_8010DF50 = .text:0x8010DF50; // type:function size:0x58 +fn_8010DFA8 = .text:0x8010DFA8; // type:function size:0x80 +fn_8010E028 = .text:0x8010E028; // type:function size:0x80 +fn_8010E0A8 = .text:0x8010E0A8; // type:function size:0x58 +fn_8010E100 = .text:0x8010E100; // type:function size:0x54 +fn_8010E154 = .text:0x8010E154; // type:function size:0x5C +fn_8010E1B0 = .text:0x8010E1B0; // type:function size:0x6C +fn_8010E21C = .text:0x8010E21C; // type:function size:0x28 +fn_8010E244 = .text:0x8010E244; // type:function size:0x8 +fn_8010E24C = .text:0x8010E24C; // type:function size:0x58 +fn_8010E2A4 = .text:0x8010E2A4; // type:function size:0x58 +fn_8010E2FC = .text:0x8010E2FC; // type:function size:0x80 +fn_8010E37C = .text:0x8010E37C; // type:function size:0x80 +fn_8010E3FC = .text:0x8010E3FC; // type:function size:0x58 +fn_8010E454 = .text:0x8010E454; // type:function size:0x54 +fn_8010E4A8 = .text:0x8010E4A8; // type:function size:0x5C +fn_8010E504 = .text:0x8010E504; // type:function size:0x6C +fn_8010E570 = .text:0x8010E570; // type:function size:0x28 +fn_8010E598 = .text:0x8010E598; // type:function size:0x8 +fn_8010E5A0 = .text:0x8010E5A0; // type:function size:0x3C +fn_8010E5DC = .text:0x8010E5DC; // type:function size:0x8 +fn_8010E5E4 = .text:0x8010E5E4; // type:function size:0x3C +fn_8010E620 = .text:0x8010E620; // type:function size:0x58 +fn_8010E678 = .text:0x8010E678; // type:function size:0x80 +fn_8010E6F8 = .text:0x8010E6F8; // type:function size:0x80 +fn_8010E778 = .text:0x8010E778; // type:function size:0x58 +fn_8010E7D0 = .text:0x8010E7D0; // type:function size:0x54 +fn_8010E824 = .text:0x8010E824; // type:function size:0x5C +fn_8010E880 = .text:0x8010E880; // type:function size:0x6C +fn_8010E8EC = .text:0x8010E8EC; // type:function size:0x28 +fn_8010E914 = .text:0x8010E914; // type:function size:0x8 +fn_8010E91C = .text:0x8010E91C; // type:function size:0x3C +fn_8010E958 = .text:0x8010E958; // type:function size:0x58 +fn_8010E9B0 = .text:0x8010E9B0; // type:function size:0x80 +fn_8010EA30 = .text:0x8010EA30; // type:function size:0x80 +fn_8010EAB0 = .text:0x8010EAB0; // type:function size:0x58 +fn_8010EB08 = .text:0x8010EB08; // type:function size:0x54 +fn_8010EB5C = .text:0x8010EB5C; // type:function size:0x5C +fn_8010EBB8 = .text:0x8010EBB8; // type:function size:0x6C +fn_8010EC24 = .text:0x8010EC24; // type:function size:0x28 +fn_8010EC4C = .text:0x8010EC4C; // type:function size:0x8 +fn_8010EC54 = .text:0x8010EC54; // type:function size:0x3C +fn_8010EC90 = .text:0x8010EC90; // type:function size:0x58 +fn_8010ECE8 = .text:0x8010ECE8; // type:function size:0x80 +fn_8010ED68 = .text:0x8010ED68; // type:function size:0x80 +fn_8010EDE8 = .text:0x8010EDE8; // type:function size:0x58 +fn_8010EE40 = .text:0x8010EE40; // type:function size:0x54 +fn_8010EE94 = .text:0x8010EE94; // type:function size:0x5C +fn_8010EEF0 = .text:0x8010EEF0; // type:function size:0x6C +fn_8010EF5C = .text:0x8010EF5C; // type:function size:0x28 +fn_8010EF84 = .text:0x8010EF84; // type:function size:0x8 +fn_8010EF8C = .text:0x8010EF8C; // type:function size:0x3C +fn_8010EFC8 = .text:0x8010EFC8; // type:function size:0x58 +fn_8010F020 = .text:0x8010F020; // type:function size:0x80 +fn_8010F0A0 = .text:0x8010F0A0; // type:function size:0x80 +fn_8010F120 = .text:0x8010F120; // type:function size:0x58 +fn_8010F178 = .text:0x8010F178; // type:function size:0x54 +fn_8010F1CC = .text:0x8010F1CC; // type:function size:0x5C +fn_8010F228 = .text:0x8010F228; // type:function size:0x6C +fn_8010F294 = .text:0x8010F294; // type:function size:0x28 +fn_8010F2BC = .text:0x8010F2BC; // type:function size:0x8 +fn_8010F2C4 = .text:0x8010F2C4; // type:function size:0x3C +fn_8010F300 = .text:0x8010F300; // type:function size:0x30 +fn_8010F330 = .text:0x8010F330; // type:function size:0x4C +fn_8010F37C = .text:0x8010F37C; // type:function size:0x30 +fn_8010F3AC = .text:0x8010F3AC; // type:function size:0x4C +fn_8010F3F8 = .text:0x8010F3F8; // type:function size:0x30 +fn_8010F428 = .text:0x8010F428; // type:function size:0x54 +fn_8010F47C = .text:0x8010F47C; // type:function size:0x30 +fn_8010F4AC = .text:0x8010F4AC; // type:function size:0x44 +fn_8010F4F0 = .text:0x8010F4F0; // type:function size:0x30 +fn_8010F520 = .text:0x8010F520; // type:function size:0x44 +fn_8010F564 = .text:0x8010F564; // type:function size:0x30 +fn_8010F594 = .text:0x8010F594; // type:function size:0x44 +fn_8010F5D8 = .text:0x8010F5D8; // type:function size:0x30 +fn_8010F608 = .text:0x8010F608; // type:function size:0x54 +fn_8010F65C = .text:0x8010F65C; // type:function size:0x30 +fn_8010F68C = .text:0x8010F68C; // type:function size:0x30 +fn_8010F6BC = .text:0x8010F6BC; // type:function size:0x44 +fn_8010F700 = .text:0x8010F700; // type:function size:0x5C +fn_8010F75C = .text:0x8010F75C; // type:function size:0x68 +fn_8010F7C4 = .text:0x8010F7C4; // type:function size:0x58 +fn_8010F81C = .text:0x8010F81C; // type:function size:0x80 +fn_8010F89C = .text:0x8010F89C; // type:function size:0x80 +fn_8010F91C = .text:0x8010F91C; // type:function size:0x58 +fn_8010F974 = .text:0x8010F974; // type:function size:0x54 +fn_8010F9C8 = .text:0x8010F9C8; // type:function size:0x5C +fn_8010FA24 = .text:0x8010FA24; // type:function size:0x6C +fn_8010FA90 = .text:0x8010FA90; // type:function size:0x28 +fn_8010FAB8 = .text:0x8010FAB8; // type:function size:0x10 +fn_8010FAC8 = .text:0x8010FAC8; // type:function size:0x8 +fn_8010FAD0 = .text:0x8010FAD0; // type:function size:0x58 +fn_8010FB28 = .text:0x8010FB28; // type:function size:0x60 +fn_8010FB88 = .text:0x8010FB88; // type:function size:0x58 +fn_8010FBE0 = .text:0x8010FBE0; // type:function size:0x58 +fn_8010FC38 = .text:0x8010FC38; // type:function size:0x50 +fn_8010FC88 = .text:0x8010FC88; // type:function size:0xC +fn_8010FC94 = .text:0x8010FC94; // type:function size:0x8 +fn_8010FC9C = .text:0x8010FC9C; // type:function size:0x3C +fn_8010FCD8 = .text:0x8010FCD8; // type:function size:0x14 +fn_8010FCEC = .text:0x8010FCEC; // type:function size:0x30 +fn_8010FD1C = .text:0x8010FD1C; // type:function size:0x3C +fn_8010FD58 = .text:0x8010FD58; // type:function size:0x30 +fn_8010FD88 = .text:0x8010FD88; // type:function size:0x3C +fn_8010FDC4 = .text:0x8010FDC4; // type:function size:0x30 +fn_8010FDF4 = .text:0x8010FDF4; // type:function size:0x3C +fn_8010FE30 = .text:0x8010FE30; // type:function size:0x30 +fn_8010FE60 = .text:0x8010FE60; // type:function size:0x3C +fn_8010FE9C = .text:0x8010FE9C; // type:function size:0x68 +__ct__12StartLockMsgFv = .text:0x8010FF04; // type:function size:0x44 +fn_8010FF48 = .text:0x8010FF48; // type:function size:0x30 +fn_8010FF78 = .text:0x8010FF78; // type:function size:0x44 +fn_8010FFBC = .text:0x8010FFBC; // type:function size:0x30 +fn_8010FFEC = .text:0x8010FFEC; // type:function size:0x44 +fn_80110030 = .text:0x80110030; // type:function size:0xA4 +fn_801100D4 = .text:0x801100D4; // type:function size:0x34 +fn_80110108 = .text:0x80110108; // type:function size:0x40 +fn_80110148 = .text:0x80110148; // type:function size:0x34 +fn_8011017C = .text:0x8011017C; // type:function size:0x40 +fn_801101BC = .text:0x801101BC; // type:function size:0x4C +fn_80110208 = .text:0x80110208; // type:function size:0x34 +fn_8011023C = .text:0x8011023C; // type:function size:0x30 +__ct__16TrainerChallengeFv = .text:0x8011026C; // type:function size:0x3C +fn_801102A8 = .text:0x801102A8; // type:function size:0x4C +fn_801102F4 = .text:0x801102F4; // type:function size:0x34 +NewObject__14ChordbookPanelFv = .text:0x80110328; // type:function size:0x40 +fn_80110368 = .text:0x80110368; // type:function size:0x34 +fn_8011039C = .text:0x8011039C; // type:function size:0x40 +fn_801103DC = .text:0x801103DC; // type:function size:0x4C +fn_80110428 = .text:0x80110428; // type:function size:0x34 +fn_8011045C = .text:0x8011045C; // type:function size:0x40 +fn_8011049C = .text:0x8011049C; // type:function size:0x4C +fn_801104E8 = .text:0x801104E8; // type:function size:0x34 +fn_8011051C = .text:0x8011051C; // type:function size:0x40 +fn_8011055C = .text:0x8011055C; // type:function size:0x4C +fn_801105A8 = .text:0x801105A8; // type:function size:0x34 +fn_801105DC = .text:0x801105DC; // type:function size:0x40 +fn_8011061C = .text:0x8011061C; // type:function size:0x78 +fn_80110694 = .text:0x80110694; // type:function size:0x4C +fn_801106E0 = .text:0x801106E0; // type:function size:0x34 +fn_80110714 = .text:0x80110714; // type:function size:0x40 +StaticClassName__15GemTrainerPanelFv = .text:0x80110754; // type:function size:0x4C +fn_801107A0 = .text:0x801107A0; // type:function size:0x50 +fn_801107F0 = .text:0x801107F0; // type:function size:0x50 +fn_80110840 = .text:0x80110840; // type:function size:0x50 +fn_80110890 = .text:0x80110890; // type:function size:0x50 +fn_801108E0 = .text:0x801108E0; // type:function size:0x50 +fn_80110930 = .text:0x80110930; // type:function size:0x50 +fn_80110980 = .text:0x80110980; // type:function size:0x50 +fn_801109D0 = .text:0x801109D0; // type:function size:0x50 +fn_80110A20 = .text:0x80110A20; // type:function size:0x50 +fn_80110A70 = .text:0x80110A70; // type:function size:0x50 +fn_80110AC0 = .text:0x80110AC0; // type:function size:0x50 +fn_80110B10 = .text:0x80110B10; // type:function size:0x50 +fn_80110B60 = .text:0x80110B60; // type:function size:0x50 +fn_80110BB0 = .text:0x80110BB0; // type:function size:0x50 +fn_80110C00 = .text:0x80110C00; // type:function size:0x50 +fn_80110C50 = .text:0x80110C50; // type:function size:0x50 +fn_80110CA0 = .text:0x80110CA0; // type:function size:0x34 +fn_80110CD4 = .text:0x80110CD4; // type:function size:0x40 +fn_80110D14 = .text:0x80110D14; // type:function size:0x34 +fn_80110D48 = .text:0x80110D48; // type:function size:0x40 +fn_80110D88 = .text:0x80110D88; // type:function size:0x4C +fn_80110DD4 = .text:0x80110DD4; // type:function size:0x34 +fn_80110E08 = .text:0x80110E08; // type:function size:0x40 +fn_80110E48 = .text:0x80110E48; // type:function size:0x4C +fn_80110E94 = .text:0x80110E94; // type:function size:0x34 +fn_80110EC8 = .text:0x80110EC8; // type:function size:0x40 +fn_80110F08 = .text:0x80110F08; // type:function size:0x18 +__ct__4GameFv = .text:0x80110F20; // type:function size:0x5E0 +fn_80111500 = .text:0x80111500; // type:function size:0x4C +fn_8011154C = .text:0x8011154C; // type:function size:0x4C +fn_80111598 = .text:0x80111598; // type:function size:0x4C +__ct__7SongPosFv = .text:0x801115E4; // type:function size:0x20 +__ct__14BeatMasterSinkFv = .text:0x80111604; // type:function size:0x10 +fn_80111614 = .text:0x80111614; // type:function size:0x32C +fn_80111940 = .text:0x80111940; // type:function size:0x1A8 +Find<5Fader>__5SynthFPCcb_P5Fader = .text:0x80111AE8; // type:function size:0x8C +fn_80111B74 = .text:0x80111B74; // type:function size:0xA0 +fn_80111C14 = .text:0x80111C14; // type:function size:0x188 +fn_80111D9C = .text:0x80111D9C; // type:function size:0x19C +fn_80111F38 = .text:0x80111F38; // type:function size:0x8 +fn_80111F40 = .text:0x80111F40; // type:function size:0x98 +fn_80111FD8 = .text:0x80111FD8; // type:function size:0x80 +fn_80112058 = .text:0x80112058; // type:function size:0xC8 +fn_80112120 = .text:0x80112120; // type:function size:0x74 +fn_80112194 = .text:0x80112194; // type:function size:0x148 +__as__7SongPosFRC7SongPos = .text:0x801122DC; // type:function size:0x2C +fn_80112308 = .text:0x80112308; // type:function size:0x8 +fn_80112310 = .text:0x80112310; // type:function size:0x3D0 +fn_801126E0 = .text:0x801126E0; // type:function size:0x8 +fn_801126E8 = .text:0x801126E8; // type:function size:0x8 +fn_801126F0 = .text:0x801126F0; // type:function size:0xA0 +fn_80112790 = .text:0x80112790; // type:function size:0x128 +fn_801128B8 = .text:0x801128B8; // type:function size:0x34 +fn_801128EC = .text:0x801128EC; // type:function size:0x98 +fn_80112984 = .text:0x80112984; // type:function size:0x24 +fn_801129A8 = .text:0x801129A8; // type:function size:0x70 +fn_80112A18 = .text:0x80112A18; // type:function size:0x4 +fn_80112A1C = .text:0x80112A1C; // type:function size:0x58 +fn_80112A74 = .text:0x80112A74; // type:function size:0x24 +fn_80112A98 = .text:0x80112A98; // type:function size:0x10 +fn_80112AA8 = .text:0x80112AA8; // type:function size:0x68 +fn_80112B10 = .text:0x80112B10; // type:function size:0x80 +fn_80112B90 = .text:0x80112B90; // type:function size:0xC +fn_80112B9C = .text:0x80112B9C; // type:function size:0x40 +fn_80112BDC = .text:0x80112BDC; // type:function size:0x3A8 +fn_80112F84 = .text:0x80112F84; // type:function size:0x18 +fn_80112F9C = .text:0x80112F9C; // type:function size:0x8 +fn_80112FA4 = .text:0x80112FA4; // type:function size:0x8C +fn_80113030 = .text:0x80113030; // type:function size:0xA0 +fn_801130D0 = .text:0x801130D0; // type:function size:0xA0 +fn_80113170 = .text:0x80113170; // type:function size:0x40 +fn_801131B0 = .text:0x801131B0; // type:function size:0x8 +fn_801131B8 = .text:0x801131B8; // type:function size:0x58 +fn_80113210 = .text:0x80113210; // type:function size:0x80 +fn_80113290 = .text:0x80113290; // type:function size:0x8 +fn_80113298 = .text:0x80113298; // type:function size:0x78 +fn_80113310 = .text:0x80113310; // type:function size:0x84 +fn_80113394 = .text:0x80113394; // type:function size:0x8 +fn_8011339C = .text:0x8011339C; // type:function size:0x80 +fn_8011341C = .text:0x8011341C; // type:function size:0x48 +fn_80113464 = .text:0x80113464; // type:function size:0x8 +fn_8011346C = .text:0x8011346C; // type:function size:0x54 +fn_801134C0 = .text:0x801134C0; // type:function size:0xE8 +fn_801135A8 = .text:0x801135A8; // type:function size:0xC +fn_801135B4 = .text:0x801135B4; // type:function size:0xEC +fn_801136A0 = .text:0x801136A0; // type:function size:0x154 +fn_801137F4 = .text:0x801137F4; // type:function size:0xA0 +fn_80113894 = .text:0x80113894; // type:function size:0xD0 +fn_80113964 = .text:0x80113964; // type:function size:0x60 +fn_801139C4 = .text:0x801139C4; // type:function size:0xD4 +fn_80113A98 = .text:0x80113A98; // type:function size:0x8 +fn_80113AA0 = .text:0x80113AA0; // type:function size:0x8 +fn_80113AA8 = .text:0x80113AA8; // type:function size:0x8 +fn_80113AB0 = .text:0x80113AB0; // type:function size:0x8 +fn_80113AB8 = .text:0x80113AB8; // type:function size:0xE8 +fn_80113BA0 = .text:0x80113BA0; // type:function size:0x10 +fn_80113BB0 = .text:0x80113BB0; // type:function size:0xF0 +fn_80113CA0 = .text:0x80113CA0; // type:function size:0x68 +fn_80113D08 = .text:0x80113D08; // type:function size:0xC +fn_80113D14 = .text:0x80113D14; // type:function size:0x284 +fn_80113F98 = .text:0x80113F98; // type:function size:0x74 +fn_8011400C = .text:0x8011400C; // type:function size:0x8 +fn_80114014 = .text:0x80114014; // type:function size:0x38 +fn_8011404C = .text:0x8011404C; // type:function size:0x38 +fn_80114084 = .text:0x80114084; // type:function size:0x38 +fn_801140BC = .text:0x801140BC; // type:function size:0x38 +fn_801140F4 = .text:0x801140F4; // type:function size:0x80 +fn_80114174 = .text:0x80114174; // type:function size:0xAC +fn_80114220 = .text:0x80114220; // type:function size:0x68 +fn_80114288 = .text:0x80114288; // type:function size:0x10 +fn_80114298 = .text:0x80114298; // type:function size:0x8 +fn_801142A0 = .text:0x801142A0; // type:function size:0x30 +fn_801142D0 = .text:0x801142D0; // type:function size:0x34 +fn_80114304 = .text:0x80114304; // type:function size:0x8 +fn_8011430C = .text:0x8011430C; // type:function size:0x5C +fn_80114368 = .text:0x80114368; // type:function size:0x8 +fn_80114370 = .text:0x80114370; // type:function size:0x68 +fn_801143D8 = .text:0x801143D8; // type:function size:0x74 +fn_8011444C = .text:0x8011444C; // type:function size:0x68 +fn_801144B4 = .text:0x801144B4; // type:function size:0x130 +fn_801145E4 = .text:0x801145E4; // type:function size:0x78 +fn_8011465C = .text:0x8011465C; // type:function size:0x30 +fn_8011468C = .text:0x8011468C; // type:function size:0x158 +fn_801147E4 = .text:0x801147E4; // type:function size:0x18 +fn_801147FC = .text:0x801147FC; // type:function size:0x94 +fn_80114890 = .text:0x80114890; // type:function size:0x8 +fn_80114898 = .text:0x80114898; // type:function size:0x384 +fn_80114C1C = .text:0x80114C1C; // type:function size:0xC +fn_80114C28 = .text:0x80114C28; // type:function size:0xC +fn_80114C34 = .text:0x80114C34; // type:function size:0x58 +fn_80114C8C = .text:0x80114C8C; // type:function size:0x70 +fn_80114CFC = .text:0x80114CFC; // type:function size:0xC +fn_80114D08 = .text:0x80114D08; // type:function size:0x70 +fn_80114D78 = .text:0x80114D78; // type:function size:0x90 +fn_80114E08 = .text:0x80114E08; // type:function size:0x10 +fn_80114E18 = .text:0x80114E18; // type:function size:0x110 +fn_80114F28 = .text:0x80114F28; // type:function size:0x24 +fn_80114F4C = .text:0x80114F4C; // type:function size:0x5C +fn_80114FA8 = .text:0x80114FA8; // type:function size:0x88 +fn_80115030 = .text:0x80115030; // type:function size:0x98 +fn_801150C8 = .text:0x801150C8; // type:function size:0x140 +fn_80115208 = .text:0x80115208; // type:function size:0x1CC +fn_801153D4 = .text:0x801153D4; // type:function size:0xD4 +fn_801154A8 = .text:0x801154A8; // type:function size:0x8 +fn_801154B0 = .text:0x801154B0; // type:function size:0x10 +fn_801154C0 = .text:0x801154C0; // type:function size:0x4C +fn_8011550C = .text:0x8011550C; // type:function size:0xA8 +fn_801155B4 = .text:0x801155B4; // type:function size:0x8 +fn_801155BC = .text:0x801155BC; // type:function size:0x8 +fn_801155C4 = .text:0x801155C4; // type:function size:0x20 +fn_801155E4 = .text:0x801155E4; // type:function size:0x8 +fn_801155EC = .text:0x801155EC; // type:function size:0x8 +fn_801155F4 = .text:0x801155F4; // type:function size:0x8 +fn_801155FC = .text:0x801155FC; // type:function size:0x8 +fn_80115604 = .text:0x80115604; // type:function size:0x8 +fn_8011560C = .text:0x8011560C; // type:function size:0x8 +fn_80115614 = .text:0x80115614; // type:function size:0x8 +fn_8011561C = .text:0x8011561C; // type:function size:0x8 +fn_80115624 = .text:0x80115624; // type:function size:0x8 +fn_8011562C = .text:0x8011562C; // type:function size:0x8 +fn_80115634 = .text:0x80115634; // type:function size:0x8 +fn_8011563C = .text:0x8011563C; // type:function size:0x8 +Handle__4GameFP9DataArrayb = .text:0x80115644; // type:function size:0xE94 +fn_801164D8 = .text:0x801164D8; // type:function size:0x3C +__ct__16LocalUserLeftMsgFP9DataArray = .text:0x80116514; // type:function size:0x3C +fn_80116550 = .text:0x80116550; // type:function size:0x3C +fn_8011658C = .text:0x8011658C; // type:function size:0x3C +fn_801165C8 = .text:0x801165C8; // type:function size:0x3C +fn_80116604 = .text:0x80116604; // type:function size:0x8 +fn_8011660C = .text:0x8011660C; // type:function size:0xF4 +fn_80116700 = .text:0x80116700; // type:function size:0x8 +fn_80116708 = .text:0x80116708; // type:function size:0x8 +fn_80116710 = .text:0x80116710; // type:function size:0x8 +fn_80116718 = .text:0x80116718; // type:function size:0x8 +fn_80116720 = .text:0x80116720; // type:function size:0x110 +fn_80116830 = .text:0x80116830; // type:function size:0xCC +fn_801168FC = .text:0x801168FC; // type:function size:0x8 +fn_80116904 = .text:0x80116904; // type:function size:0x4 +fn_80116908 = .text:0x80116908; // type:function size:0x50C +fn_80116E14 = .text:0x80116E14; // type:function size:0x58 +fn_80116E6C = .text:0x80116E6C; // type:function size:0x6C +fn_80116ED8 = .text:0x80116ED8; // type:function size:0x2C +fn_80116F04 = .text:0x80116F04; // type:function size:0x4 +fn_80116F08 = .text:0x80116F08; // type:function size:0x58 +fn_80116F60 = .text:0x80116F60; // type:function size:0xC +fn_80116F6C = .text:0x80116F6C; // type:function size:0x4 +fn_80116F70 = .text:0x80116F70; // type:function size:0x128 +fn_80117098 = .text:0x80117098; // type:function size:0x8 +fn_801170A0 = .text:0x801170A0; // type:function size:0x8 +fn_801170A8 = .text:0x801170A8; // type:function size:0x8 +__ct__10GameConfigFv = .text:0x801170B0; // type:function size:0x9C +__dt__10GameConfigFv = .text:0x8011714C; // type:function size:0xA4 +fn_801171F0 = .text:0x801171F0; // type:function size:0x8C +fn_8011727C = .text:0x8011727C; // type:function size:0x58 +fn_801172D4 = .text:0x801172D4; // type:function size:0x80 +fn_80117354 = .text:0x80117354; // type:function size:0x80 +fn_801173D4 = .text:0x801173D4; // type:function size:0x58 +fn_8011742C = .text:0x8011742C; // type:function size:0x54 +fn_80117480 = .text:0x80117480; // type:function size:0x5C +fn_801174DC = .text:0x801174DC; // type:function size:0x6C +fn_80117548 = .text:0x80117548; // type:function size:0x28 +fn_80117570 = .text:0x80117570; // type:function size:0x8 +fn_80117578 = .text:0x80117578; // type:function size:0x3C +fn_801175B4 = .text:0x801175B4; // type:function size:0x74 +fn_80117628 = .text:0x80117628; // type:function size:0x58 +fn_80117680 = .text:0x80117680; // type:function size:0x80 +fn_80117700 = .text:0x80117700; // type:function size:0x80 +fn_80117780 = .text:0x80117780; // type:function size:0x58 +fn_801177D8 = .text:0x801177D8; // type:function size:0x54 +fn_8011782C = .text:0x8011782C; // type:function size:0x5C +fn_80117888 = .text:0x80117888; // type:function size:0x6C +fn_801178F4 = .text:0x801178F4; // type:function size:0x28 +fn_8011791C = .text:0x8011791C; // type:function size:0x8 +fn_80117924 = .text:0x80117924; // type:function size:0x3C +fn_80117960 = .text:0x80117960; // type:function size:0x48 +fn_801179A8 = .text:0x801179A8; // type:function size:0xB0 +fn_80117A58 = .text:0x80117A58; // type:function size:0x154 +GetTypeAtIndex__9DataArrayCFi = .text:0x80117BAC; // type:function size:0x24 +fn_80117BD0 = .text:0x80117BD0; // type:function size:0xC0 +fn_80117C90 = .text:0x80117C90; // type:function size:0x9C +fn_80117D2C = .text:0x80117D2C; // type:function size:0x1A4 +fn_80117ED0 = .text:0x80117ED0; // type:function size:0x8 +fn_80117ED8 = .text:0x80117ED8; // type:function size:0x24C +fn_80118124 = .text:0x80118124; // type:function size:0x10 +fn_80118134 = .text:0x80118134; // type:function size:0x10 +fn_80118144 = .text:0x80118144; // type:function size:0x238 +fn_8011837C = .text:0x8011837C; // type:function size:0x7C +fn_801183F8 = .text:0x801183F8; // type:function size:0x68 +fn_80118460 = .text:0x80118460; // type:function size:0x7C +OnGetSectionBounds__10GameConfigFP9DataArray = .text:0x801184DC; // type:function size:0xBC +OnGetSectionBoundsTick__10GameConfigFP9DataArray = .text:0x80118598; // type:function size:0x170 +fn_80118708 = .text:0x80118708; // type:function size:0x4C +OnGetSection__10GameConfigFP9DataArray = .text:0x80118754; // type:function size:0x58 +OnSetSection__10GameConfigFP9DataArray = .text:0x801187AC; // type:function size:0x6C +ForEach__10GameConfigFPC9DataArrayb = .text:0x80118818; // type:function size:0x178 +fn_80118990 = .text:0x80118990; // type:function size:0xC +fn_8011899C = .text:0x8011899C; // type:function size:0x7C +fn_80118A18 = .text:0x80118A18; // type:function size:0x14 +fn_80118A2C = .text:0x80118A2C; // type:function size:0x198 +fn_80118BC4 = .text:0x80118BC4; // type:function size:0x11C +Handle__10GameConfigFP9DataArrayb = .text:0x80118CE0; // type:function size:0x454 +ForceSymAtIndex__9DataArrayCFi = .text:0x80119134; // type:function size:0x34 +SyncProperty__10GameConfigFR8DataNodeP9DataArrayi6PropOp = .text:0x80119168; // type:function size:0xE0 +PropSync__FRiR8DataNodeP9DataArrayi6PropOp = .text:0x80119248; // type:function size:0x84 +fn_801192CC = .text:0x801192CC; // type:function size:0x15C +fn_80119428 = .text:0x80119428; // type:function size:0x8 +reserve__Q211stlpmtx_std42vector>FUl = .text:0x80119430; // type:function size:0x4 +fn_80119434 = .text:0x80119434; // type:function size:0xDC +fn_80119510 = .text:0x80119510; // type:function size:0x16C +fn_8011967C = .text:0x8011967C; // type:function size:0x58 +Height__9RndBitmapCFv = .text:0x801196D4; // type:function size:0x8 +fn_801196DC = .text:0x801196DC; // type:function size:0x8 +fn_801196E4 = .text:0x801196E4; // type:function size:0x14 +fn_801196F8 = .text:0x801196F8; // type:function size:0x14 +fn_8011970C = .text:0x8011970C; // type:function size:0x8 +fn_80119714 = .text:0x80119714; // type:function size:0x18 +fn_8011972C = .text:0x8011972C; // type:function size:0x4 +fn_80119730 = .text:0x80119730; // type:function size:0x2F8 +fn_80119A28 = .text:0x80119A28; // type:function size:0x34 +fn_80119A5C = .text:0x80119A5C; // type:function size:0xC +fn_80119A68 = .text:0x80119A68; // type:function size:0x1A8 +fn_80119C10 = .text:0x80119C10; // type:function size:0x28 +SwapDataHalfWord__FUs = .text:0x80119C38; // type:function size:0x10 +fn_80119C48 = .text:0x80119C48; // type:function size:0x3C +fn_80119C84 = .text:0x80119C84; // type:function size:0x68 +fn_80119CEC = .text:0x80119CEC; // type:function size:0x20 +fn_80119D0C = .text:0x80119D0C; // type:function size:0xC4 +fn_80119DD0 = .text:0x80119DD0; // type:function size:0x60 +fn_80119E30 = .text:0x80119E30; // type:function size:0x10 +fn_80119E40 = .text:0x80119E40; // type:function size:0x8C +fn_80119ECC = .text:0x80119ECC; // type:function size:0x4C +fn_80119F18 = .text:0x80119F18; // type:function size:0x4C +fn_80119F64 = .text:0x80119F64; // type:function size:0x4C +fn_80119FB0 = .text:0x80119FB0; // type:function size:0x4C +fn_80119FFC = .text:0x80119FFC; // type:function size:0x4C +fn_8011A048 = .text:0x8011A048; // type:function size:0x60 +fn_8011A0A8 = .text:0x8011A0A8; // type:function size:0x8 +fn_8011A0B0 = .text:0x8011A0B0; // type:function size:0x170 +fn_8011A220 = .text:0x8011A220; // type:function size:0x28 +fn_8011A248 = .text:0x8011A248; // type:function size:0x90 +fn_8011A2D8 = .text:0x8011A2D8; // type:function size:0x10 +fn_8011A2E8 = .text:0x8011A2E8; // type:function size:0xA4 +fn_8011A38C = .text:0x8011A38C; // type:function size:0x148 +fn_8011A4D4 = .text:0x8011A4D4; // type:function size:0x4C +fn_8011A520 = .text:0x8011A520; // type:function size:0x4C +fn_8011A56C = .text:0x8011A56C; // type:function size:0x68 +fn_8011A5D4 = .text:0x8011A5D4; // type:function size:0x68 +fn_8011A63C = .text:0x8011A63C; // type:function size:0x4C +fn_8011A688 = .text:0x8011A688; // type:function size:0x8 +fn_8011A690 = .text:0x8011A690; // type:function size:0x84 +fn_8011A714 = .text:0x8011A714; // type:function size:0x5C +fn_8011A770 = .text:0x8011A770; // type:function size:0x70 +fn_8011A7E0 = .text:0x8011A7E0; // type:function size:0xA4 +fn_8011A884 = .text:0x8011A884; // type:function size:0x68 +fn_8011A8EC = .text:0x8011A8EC; // type:function size:0x8 +fn_8011A8F4 = .text:0x8011A8F4; // type:function size:0xF0 +fn_8011A9E4 = .text:0x8011A9E4; // type:function size:0xA0 +fn_8011AA84 = .text:0x8011AA84; // type:function size:0x4 +fn_8011AA88 = .text:0x8011AA88; // type:function size:0xB0 +fn_8011AB38 = .text:0x8011AB38; // type:function size:0xD0 +fn_8011AC08 = .text:0x8011AC08; // type:function size:0xA0 +fn_8011ACA8 = .text:0x8011ACA8; // type:function size:0x4 +fn_8011ACAC = .text:0x8011ACAC; // type:function size:0x50 +fn_8011ACFC = .text:0x8011ACFC; // type:function size:0xA0 +fn_8011AD9C = .text:0x8011AD9C; // type:function size:0x8C +fn_8011AE28 = .text:0x8011AE28; // type:function size:0x4C +fn_8011AE74 = .text:0x8011AE74; // type:function size:0x50 +fn_8011AEC4 = .text:0x8011AEC4; // type:function size:0x14 +fn_8011AED8 = .text:0x8011AED8; // type:function size:0x14 +fn_8011AEEC = .text:0x8011AEEC; // type:function size:0x14 +fn_8011AF00 = .text:0x8011AF00; // type:function size:0x8 +GameModeInit__Fv = .text:0x8011AF08; // type:function size:0x3C +__ct__8GameModeFv = .text:0x8011AF44; // type:function size:0xC8 +__dt__8GameModeFv = .text:0x8011B00C; // type:function size:0x7C +InMode__8GameModeF6Symbol = .text:0x8011B088; // type:function size:0x118 +OnSetMode__8GameModeFPC9DataArray = .text:0x8011B1A0; // type:function size:0x68 +SetMode__8GameModeF6Symbol = .text:0x8011B208; // type:function size:0x50C +__ct__14ModeChangedMsgFv = .text:0x8011B714; // type:function size:0x4C +Type__14ModeChangedMsgFv = .text:0x8011B760; // type:function size:0x4C +fn_8011B7AC = .text:0x8011B7AC; // type:function size:0xC +Handle__8GameModeFP9DataArrayb = .text:0x8011B7B8; // type:function size:0x1E8 +fn_8011B9A0 = .text:0x8011B9A0; // type:function size:0x14 +fn_8011B9B4 = .text:0x8011B9B4; // type:function size:0x14 +fn_8011B9C8 = .text:0x8011B9C8; // type:function size:0x14 +fn_8011B9DC = .text:0x8011B9DC; // type:function size:0x14 +fn_8011B9F0 = .text:0x8011B9F0; // type:function size:0x14 +fn_8011BA04 = .text:0x8011BA04; // type:function size:0x14 +fn_8011BA18 = .text:0x8011BA18; // type:function size:0x14 +__ct__9GamePanelFv = .text:0x8011BA2C; // type:function size:0x188 +fn_8011BBB4 = .text:0x8011BBB4; // type:function size:0x58 +__dt__9GamePanelFv = .text:0x8011BC0C; // type:function size:0x130 +fn_8011BD3C = .text:0x8011BD3C; // type:function size:0x68 +fn_8011BDA4 = .text:0x8011BDA4; // type:function size:0x84 +fn_8011BE28 = .text:0x8011BE28; // type:function size:0x340 +fn_8011C168 = .text:0x8011C168; // type:function size:0x98 +fn_8011C200 = .text:0x8011C200; // type:function size:0x8 +fn_8011C208 = .text:0x8011C208; // type:function size:0x158 +fn_8011C360 = .text:0x8011C360; // type:function size:0x94 +fn_8011C3F4 = .text:0x8011C3F4; // type:function size:0xB8 +fn_8011C4AC = .text:0x8011C4AC; // type:function size:0xE8 +fn_8011C594 = .text:0x8011C594; // type:function size:0x38 +fn_8011C5CC = .text:0x8011C5CC; // type:function size:0x8 +fn_8011C5D4 = .text:0x8011C5D4; // type:function size:0x8 +fn_8011C5DC = .text:0x8011C5DC; // type:function size:0xE4 +fn_8011C6C0 = .text:0x8011C6C0; // type:function size:0xB8 +fn_8011C778 = .text:0x8011C778; // type:function size:0xE0 +fn_8011C858 = .text:0x8011C858; // type:function size:0x138 +fn_8011C990 = .text:0x8011C990; // type:function size:0x4 +fn_8011C994 = .text:0x8011C994; // type:function size:0x4C +fn_8011C9E0 = .text:0x8011C9E0; // type:function size:0x94 +fn_8011CA74 = .text:0x8011CA74; // type:function size:0xA4 +fn_8011CB18 = .text:0x8011CB18; // type:function size:0xB0 +fn_8011CBC8 = .text:0x8011CBC8; // type:function size:0xE4 +fn_8011CCAC = .text:0x8011CCAC; // type:function size:0x8 +fn_8011CCB4 = .text:0x8011CCB4; // type:function size:0x3C +fn_8011CCF0 = .text:0x8011CCF0; // type:function size:0x38 +fn_8011CD28 = .text:0x8011CD28; // type:function size:0x4C +fn_8011CD74 = .text:0x8011CD74; // type:function size:0x38 +fn_8011CDAC = .text:0x8011CDAC; // type:function size:0x108 +fn_8011CEB4 = .text:0x8011CEB4; // type:function size:0x4C +fn_8011CF00 = .text:0x8011CF00; // type:function size:0xA0 +fn_8011CFA0 = .text:0x8011CFA0; // type:function size:0x4 +fn_8011CFA4 = .text:0x8011CFA4; // type:function size:0x88 +fn_8011D02C = .text:0x8011D02C; // type:function size:0x2C +fn_8011D058 = .text:0x8011D058; // type:function size:0x10 +fn_8011D068 = .text:0x8011D068; // type:function size:0x30 +fn_8011D098 = .text:0x8011D098; // type:function size:0x30 +fn_8011D0C8 = .text:0x8011D0C8; // type:function size:0x40 +Handle__9GamePanelFP9DataArrayb = .text:0x8011D108; // type:function size:0x56C +fn_8011D674 = .text:0x8011D674; // type:function size:0x8 +fn_8011D67C = .text:0x8011D67C; // type:function size:0x20C +fn_8011D888 = .text:0x8011D888; // type:function size:0x114 +fn_8011D99C = .text:0x8011D99C; // type:function size:0x60 +fn_8011D9FC = .text:0x8011D9FC; // type:function size:0x5C +fn_8011DA58 = .text:0x8011DA58; // type:function size:0x54 +fn_8011DAAC = .text:0x8011DAAC; // type:function size:0x5C +fn_8011DB08 = .text:0x8011DB08; // type:function size:0x5C +fn_8011DB64 = .text:0x8011DB64; // type:function size:0x134 +fn_8011DC98 = .text:0x8011DC98; // type:function size:0x4 +fn_8011DC9C = .text:0x8011DC9C; // type:function size:0x14 +fn_8011DCB0 = .text:0x8011DCB0; // type:function size:0x14 +fn_8011DCC4 = .text:0x8011DCC4; // type:function size:0x14 +fn_8011DCD8 = .text:0x8011DCD8; // type:function size:0x14 +fn_8011DCEC = .text:0x8011DCEC; // type:function size:0x14 +fn_8011DD00 = .text:0x8011DD00; // type:function size:0x14 +fn_8011DD14 = .text:0x8011DD14; // type:function size:0x14 +fn_8011DD28 = .text:0x8011DD28; // type:function size:0x14 +fn_8011DD3C = .text:0x8011DD3C; // type:function size:0x14 +fn_8011DD50 = .text:0x8011DD50; // type:function size:0x14 +fn_8011DD64 = .text:0x8011DD64; // type:function size:0x8 +fn_8011DD6C = .text:0x8011DD6C; // type:function size:0x8 +fn_8011DD74 = .text:0x8011DD74; // type:function size:0x8 +fn_8011DD7C = .text:0x8011DD7C; // type:function size:0x8 +fn_8011DD84 = .text:0x8011DD84; // type:function size:0x8 +fn_8011DD8C = .text:0x8011DD8C; // type:function size:0x168 +__ct__9GemPlayerFP8BandUserP10BeatMasterP4BandiP13BandPerformer = .text:0x8011DEF4; // type:function size:0x938 +fn_8011E82C = .text:0x8011E82C; // type:function size:0x58 +fn_8011E884 = .text:0x8011E884; // type:function size:0x80 +fn_8011E904 = .text:0x8011E904; // type:function size:0x80 +fn_8011E984 = .text:0x8011E984; // type:function size:0x58 +fn_8011E9DC = .text:0x8011E9DC; // type:function size:0x54 +fn_8011EA30 = .text:0x8011EA30; // type:function size:0x5C +fn_8011EA8C = .text:0x8011EA8C; // type:function size:0x6C +fn_8011EAF8 = .text:0x8011EAF8; // type:function size:0x28 +fn_8011EB20 = .text:0x8011EB20; // type:function size:0x8 +fn_8011EB28 = .text:0x8011EB28; // type:function size:0x3C +fn_8011EB64 = .text:0x8011EB64; // type:function size:0x58 +fn_8011EBBC = .text:0x8011EBBC; // type:function size:0x80 +fn_8011EC3C = .text:0x8011EC3C; // type:function size:0x80 +fn_8011ECBC = .text:0x8011ECBC; // type:function size:0x58 +fn_8011ED14 = .text:0x8011ED14; // type:function size:0x54 +fn_8011ED68 = .text:0x8011ED68; // type:function size:0x5C +fn_8011EDC4 = .text:0x8011EDC4; // type:function size:0x6C +fn_8011EE30 = .text:0x8011EE30; // type:function size:0x28 +fn_8011EE58 = .text:0x8011EE58; // type:function size:0x8 +fn_8011EE60 = .text:0x8011EE60; // type:function size:0x3C +fn_8011EE9C = .text:0x8011EE9C; // type:function size:0x4 +fn_8011EEA0 = .text:0x8011EEA0; // type:function size:0x4 +fn_8011EEA4 = .text:0x8011EEA4; // type:function size:0x90 +fn_8011EF34 = .text:0x8011EF34; // type:function size:0x4 +fn_8011EF38 = .text:0x8011EF38; // type:function size:0x40 +fn_8011EF78 = .text:0x8011EF78; // type:function size:0x8C +fn_8011F004 = .text:0x8011F004; // type:function size:0x8 +fn_8011F00C = .text:0x8011F00C; // type:function size:0x2C +fn_8011F038 = .text:0x8011F038; // type:function size:0x58 +fn_8011F090 = .text:0x8011F090; // type:function size:0x28 +fn_8011F0B8 = .text:0x8011F0B8; // type:function size:0x68 +fn_8011F120 = .text:0x8011F120; // type:function size:0x4C +FindSym__9DataArrayCF6Symbol = .text:0x8011F16C; // type:function size:0x38 +fn_8011F1A4 = .text:0x8011F1A4; // type:function size:0x30 +fn_8011F1D4 = .text:0x8011F1D4; // type:function size:0x30 +fn_8011F204 = .text:0x8011F204; // type:function size:0x40 +fn_8011F244 = .text:0x8011F244; // type:function size:0x14 +fn_8011F258 = .text:0x8011F258; // type:function size:0x30 +fn_8011F288 = .text:0x8011F288; // type:function size:0x30 +fn_8011F2B8 = .text:0x8011F2B8; // type:function size:0x40 +fn_8011F2F8 = .text:0x8011F2F8; // type:function size:0x4C +fn_8011F344 = .text:0x8011F344; // type:function size:0x58 +fn_8011F39C = .text:0x8011F39C; // type:function size:0x80 +fn_8011F41C = .text:0x8011F41C; // type:function size:0x80 +fn_8011F49C = .text:0x8011F49C; // type:function size:0x58 +fn_8011F4F4 = .text:0x8011F4F4; // type:function size:0x54 +fn_8011F548 = .text:0x8011F548; // type:function size:0x3C +fn_8011F584 = .text:0x8011F584; // type:function size:0x8 +fn_8011F58C = .text:0x8011F58C; // type:function size:0x3C +fn_8011F5C8 = .text:0x8011F5C8; // type:function size:0x10 +fn_8011F5D8 = .text:0x8011F5D8; // type:function size:0x30 +fn_8011F608 = .text:0x8011F608; // type:function size:0x30 +fn_8011F638 = .text:0x8011F638; // type:function size:0x40 +__ct__13BeatMatchSinkFv = .text:0x8011F678; // type:function size:0x10 +fn_8011F688 = .text:0x8011F688; // type:function size:0x90 +fn_8011F718 = .text:0x8011F718; // type:function size:0x8 +fn_8011F720 = .text:0x8011F720; // type:function size:0x4 +fn_8011F724 = .text:0x8011F724; // type:function size:0x8C +fn_8011F7B0 = .text:0x8011F7B0; // type:function size:0x4 +fn_8011F7B4 = .text:0x8011F7B4; // type:function size:0x40 +fn_8011F7F4 = .text:0x8011F7F4; // type:function size:0x78 +fn_8011F86C = .text:0x8011F86C; // type:function size:0x8 +fn_8011F874 = .text:0x8011F874; // type:function size:0x104 +fn_8011F978 = .text:0x8011F978; // type:function size:0x98 +fn_8011FA10 = .text:0x8011FA10; // type:function size:0x2B8 +fn_8011FCC8 = .text:0x8011FCC8; // type:function size:0x4 +fn_8011FCCC = .text:0x8011FCCC; // type:function size:0x4 +fn_8011FCD0 = .text:0x8011FCD0; // type:function size:0x58 +fn_8011FD28 = .text:0x8011FD28; // type:function size:0x274 +fn_8011FF9C = .text:0x8011FF9C; // type:function size:0x128 +fn_801200C4 = .text:0x801200C4; // type:function size:0x108 +fn_801201CC = .text:0x801201CC; // type:function size:0x5C +fn_80120228 = .text:0x80120228; // type:function size:0x104 +fn_8012032C = .text:0x8012032C; // type:function size:0x9B8 +fn_80120CE4 = .text:0x80120CE4; // type:function size:0x10 +fn_80120CF4 = .text:0x80120CF4; // type:function size:0x34 +fn_80120D28 = .text:0x80120D28; // type:function size:0x34 +fn_80120D5C = .text:0x80120D5C; // type:function size:0x10 +fn_80120D6C = .text:0x80120D6C; // type:function size:0x34 +fn_80120DA0 = .text:0x80120DA0; // type:function size:0x34 +fn_80120DD4 = .text:0x80120DD4; // type:function size:0x34 +fn_80120E08 = .text:0x80120E08; // type:function size:0xC +fn_80120E14 = .text:0x80120E14; // type:function size:0x10 +fn_80120E24 = .text:0x80120E24; // type:function size:0x10 +fn_80120E34 = .text:0x80120E34; // type:function size:0x4 +fn_80120E38 = .text:0x80120E38; // type:function size:0x88 +fn_80120EC0 = .text:0x80120EC0; // type:function size:0x2C +fn_80120EEC = .text:0x80120EEC; // type:function size:0x10 +fn_80120EFC = .text:0x80120EFC; // type:function size:0xC +fn_80120F08 = .text:0x80120F08; // type:function size:0xB0 +fn_80120FB8 = .text:0x80120FB8; // type:function size:0x214 +fn_801211CC = .text:0x801211CC; // type:function size:0x364 +fn_80121530 = .text:0x80121530; // type:function size:0x6C +fn_8012159C = .text:0x8012159C; // type:function size:0x4A8 +fn_80121A44 = .text:0x80121A44; // type:function size:0x40 +fn_80121A84 = .text:0x80121A84; // type:function size:0x10 +fn_80121A94 = .text:0x80121A94; // type:function size:0x10 +fn_80121AA4 = .text:0x80121AA4; // type:function size:0xC4 +fn_80121B68 = .text:0x80121B68; // type:function size:0x68 +fn_80121BD0 = .text:0x80121BD0; // type:function size:0x40 +fn_80121C10 = .text:0x80121C10; // type:function size:0x13C +fn_80121D4C = .text:0x80121D4C; // type:function size:0x258 +fn_80121FA4 = .text:0x80121FA4; // type:function size:0x10 +fn_80121FB4 = .text:0x80121FB4; // type:function size:0xD8 +fn_8012208C = .text:0x8012208C; // type:function size:0x74 +fn_80122100 = .text:0x80122100; // type:function size:0x8 +fn_80122108 = .text:0x80122108; // type:function size:0x248 +fn_80122350 = .text:0x80122350; // type:function size:0x58 +fn_801223A8 = .text:0x801223A8; // type:function size:0xB0 +fn_80122458 = .text:0x80122458; // type:function size:0x10 +fn_80122468 = .text:0x80122468; // type:function size:0x34 +fn_8012249C = .text:0x8012249C; // type:function size:0x4C +fn_801224E8 = .text:0x801224E8; // type:function size:0x7C +fn_80122564 = .text:0x80122564; // type:function size:0x160 +fn_801226C4 = .text:0x801226C4; // type:function size:0x1C8 +fn_8012288C = .text:0x8012288C; // type:function size:0x90 +fn_8012291C = .text:0x8012291C; // type:function size:0xB8 +fn_801229D4 = .text:0x801229D4; // type:function size:0x7C +fn_80122A50 = .text:0x80122A50; // type:function size:0xB8 +fn_80122B08 = .text:0x80122B08; // type:function size:0x10 +fn_80122B18 = .text:0x80122B18; // type:function size:0x8 +fn_80122B20 = .text:0x80122B20; // type:function size:0xD4 +fn_80122BF4 = .text:0x80122BF4; // type:function size:0xA4 +fn_80122C98 = .text:0x80122C98; // type:function size:0x34 +fn_80122CCC = .text:0x80122CCC; // type:function size:0x34 +fn_80122D00 = .text:0x80122D00; // type:function size:0x74 +fn_80122D74 = .text:0x80122D74; // type:function size:0x58 +fn_80122DCC = .text:0x80122DCC; // type:function size:0x8 +fn_80122DD4 = .text:0x80122DD4; // type:function size:0x58 +fn_80122E2C = .text:0x80122E2C; // type:function size:0x5C +fn_80122E88 = .text:0x80122E88; // type:function size:0x64 +fn_80122EEC = .text:0x80122EEC; // type:function size:0x3C +fn_80122F28 = .text:0x80122F28; // type:function size:0x54 +fn_80122F7C = .text:0x80122F7C; // type:function size:0x30 +fn_80122FAC = .text:0x80122FAC; // type:function size:0x30 +fn_80122FDC = .text:0x80122FDC; // type:function size:0x30 +fn_8012300C = .text:0x8012300C; // type:function size:0x14 +fn_80123020 = .text:0x80123020; // type:function size:0x84 +fn_801230A4 = .text:0x801230A4; // type:function size:0x664 +fn_80123708 = .text:0x80123708; // type:function size:0x8 +fn_80123710 = .text:0x80123710; // type:function size:0x6C +fn_8012377C = .text:0x8012377C; // type:function size:0x360 +fn_80123ADC = .text:0x80123ADC; // type:function size:0x6C +fn_80123B48 = .text:0x80123B48; // type:function size:0xC8 +fn_80123C10 = .text:0x80123C10; // type:function size:0x4 +fn_80123C14 = .text:0x80123C14; // type:function size:0x3C +fn_80123C50 = .text:0x80123C50; // type:function size:0x40 +fn_80123C90 = .text:0x80123C90; // type:function size:0x8C +fn_80123D1C = .text:0x80123D1C; // type:function size:0x8 +fn_80123D24 = .text:0x80123D24; // type:function size:0x2C +fn_80123D50 = .text:0x80123D50; // type:function size:0x58 +fn_80123DA8 = .text:0x80123DA8; // type:function size:0x28 +fn_80123DD0 = .text:0x80123DD0; // type:function size:0x68 +fn_80123E38 = .text:0x80123E38; // type:function size:0x7C +fn_80123EB4 = .text:0x80123EB4; // type:function size:0x318 +fn_801241CC = .text:0x801241CC; // type:function size:0x8 +fn_801241D4 = .text:0x801241D4; // type:function size:0x5C +fn_80124230 = .text:0x80124230; // type:function size:0xA0 +fn_801242D0 = .text:0x801242D0; // type:function size:0x8 +fn_801242D8 = .text:0x801242D8; // type:function size:0x54 +fn_8012432C = .text:0x8012432C; // type:function size:0x4 +fn_80124330 = .text:0x80124330; // type:function size:0xFC +fn_8012442C = .text:0x8012442C; // type:function size:0x1C +fn_80124448 = .text:0x80124448; // type:function size:0x74 +fn_801244BC = .text:0x801244BC; // type:function size:0x4 +fn_801244C0 = .text:0x801244C0; // type:function size:0x54 +fn_80124514 = .text:0x80124514; // type:function size:0x78 +fn_8012458C = .text:0x8012458C; // type:function size:0x4C +fn_801245D8 = .text:0x801245D8; // type:function size:0x8 +fn_801245E0 = .text:0x801245E0; // type:function size:0x8 +fn_801245E8 = .text:0x801245E8; // type:function size:0x8 +fn_801245F0 = .text:0x801245F0; // type:function size:0xB4 +fn_801246A4 = .text:0x801246A4; // type:function size:0xC +fn_801246B0 = .text:0x801246B0; // type:function size:0x7C +fn_8012472C = .text:0x8012472C; // type:function size:0x18 +fn_80124744 = .text:0x80124744; // type:function size:0x14 +fn_80124758 = .text:0x80124758; // type:function size:0x8C +fn_801247E4 = .text:0x801247E4; // type:function size:0x8C +fn_80124870 = .text:0x80124870; // type:function size:0xA4 +fn_80124914 = .text:0x80124914; // type:function size:0xC +fn_80124920 = .text:0x80124920; // type:function size:0x88 +fn_801249A8 = .text:0x801249A8; // type:function size:0x114 +fn_80124ABC = .text:0x80124ABC; // type:function size:0xC +fn_80124AC8 = .text:0x80124AC8; // type:function size:0x8 +fn_80124AD0 = .text:0x80124AD0; // type:function size:0x7C +fn_80124B4C = .text:0x80124B4C; // type:function size:0x8 +fn_80124B54 = .text:0x80124B54; // type:function size:0x38 +fn_80124B8C = .text:0x80124B8C; // type:function size:0x130 +fn_80124CBC = .text:0x80124CBC; // type:function size:0x2C0 +fn_80124F7C = .text:0x80124F7C; // type:function size:0x6C +fn_80124FE8 = .text:0x80124FE8; // type:function size:0x8C +fn_80125074 = .text:0x80125074; // type:function size:0x14 +fn_80125088 = .text:0x80125088; // type:function size:0x8 +fn_80125090 = .text:0x80125090; // type:function size:0x40 +fn_801250D0 = .text:0x801250D0; // type:function size:0x14 +fn_801250E4 = .text:0x801250E4; // type:function size:0x8 +fn_801250EC = .text:0x801250EC; // type:function size:0x94 +fn_80125180 = .text:0x80125180; // type:function size:0x94 +fn_80125214 = .text:0x80125214; // type:function size:0x8 +fn_8012521C = .text:0x8012521C; // type:function size:0x8 +fn_80125224 = .text:0x80125224; // type:function size:0x60 +fn_80125284 = .text:0x80125284; // type:function size:0x58 +fn_801252DC = .text:0x801252DC; // type:function size:0x28 +fn_80125304 = .text:0x80125304; // type:function size:0x78 +fn_8012537C = .text:0x8012537C; // type:function size:0x68 +fn_801253E4 = .text:0x801253E4; // type:function size:0x60 +fn_80125444 = .text:0x80125444; // type:function size:0x58 +fn_8012549C = .text:0x8012549C; // type:function size:0x78 +fn_80125514 = .text:0x80125514; // type:function size:0x68 +fn_8012557C = .text:0x8012557C; // type:function size:0x114 +fn_80125690 = .text:0x80125690; // type:function size:0x8 +fn_80125698 = .text:0x80125698; // type:function size:0xD4 +fn_8012576C = .text:0x8012576C; // type:function size:0xBC +fn_80125828 = .text:0x80125828; // type:function size:0x7C +fn_801258A4 = .text:0x801258A4; // type:function size:0xC +fn_801258B0 = .text:0x801258B0; // type:function size:0x8C +fn_8012593C = .text:0x8012593C; // type:function size:0x18C +fn_80125AC8 = .text:0x80125AC8; // type:function size:0x8 +fn_80125AD0 = .text:0x80125AD0; // type:function size:0x70 +fn_80125B40 = .text:0x80125B40; // type:function size:0x8 +fn_80125B48 = .text:0x80125B48; // type:function size:0x8 +fn_80125B50 = .text:0x80125B50; // type:function size:0x50 +fn_80125BA0 = .text:0x80125BA0; // type:function size:0xA4 +fn_80125C44 = .text:0x80125C44; // type:function size:0x2F4 +fn_80125F38 = .text:0x80125F38; // type:function size:0x8 +fn_80125F40 = .text:0x80125F40; // type:function size:0x68 +fn_80125FA8 = .text:0x80125FA8; // type:function size:0x48 +fn_80125FF0 = .text:0x80125FF0; // type:function size:0x94 +fn_80126084 = .text:0x80126084; // type:function size:0x88 +fn_8012610C = .text:0x8012610C; // type:function size:0x78 +fn_80126184 = .text:0x80126184; // type:function size:0x24 +fn_801261A8 = .text:0x801261A8; // type:function size:0x14 +fn_801261BC = .text:0x801261BC; // type:function size:0xC +fn_801261C8 = .text:0x801261C8; // type:function size:0x8 +fn_801261D0 = .text:0x801261D0; // type:function size:0x8 +fn_801261D8 = .text:0x801261D8; // type:function size:0x84 +fn_8012625C = .text:0x8012625C; // type:function size:0xC +fn_80126268 = .text:0x80126268; // type:function size:0x88 +fn_801262F0 = .text:0x801262F0; // type:function size:0xA0 +fn_80126390 = .text:0x80126390; // type:function size:0x70 +fn_80126400 = .text:0x80126400; // type:function size:0x4C +fn_8012644C = .text:0x8012644C; // type:function size:0x2A8 +fn_801266F4 = .text:0x801266F4; // type:function size:0x8 +fn_801266FC = .text:0x801266FC; // type:function size:0x8 +fn_80126704 = .text:0x80126704; // type:function size:0x88 +fn_8012678C = .text:0x8012678C; // type:function size:0x20 +fn_801267AC = .text:0x801267AC; // type:function size:0x27C +fn_80126A28 = .text:0x80126A28; // type:function size:0x8 +fn_80126A30 = .text:0x80126A30; // type:function size:0x8 +fn_80126A38 = .text:0x80126A38; // type:function size:0x24 +fn_80126A5C = .text:0x80126A5C; // type:function size:0x5C +fn_80126AB8 = .text:0x80126AB8; // type:function size:0x8 +fn_80126AC0 = .text:0x80126AC0; // type:function size:0xAC +fn_80126B6C = .text:0x80126B6C; // type:function size:0x24 +fn_80126B90 = .text:0x80126B90; // type:function size:0x14 +fn_80126BA4 = .text:0x80126BA4; // type:function size:0x18 +fn_80126BBC = .text:0x80126BBC; // type:function size:0x1C +fn_80126BD8 = .text:0x80126BD8; // type:function size:0x22C +fn_80126E04 = .text:0x80126E04; // type:function size:0x8 +fn_80126E0C = .text:0x80126E0C; // type:function size:0x1A4 +fn_80126FB0 = .text:0x80126FB0; // type:function size:0x14C +fn_801270FC = .text:0x801270FC; // type:function size:0x12C +fn_80127228 = .text:0x80127228; // type:function size:0x178 +fn_801273A0 = .text:0x801273A0; // type:function size:0x1A4 +fn_80127544 = .text:0x80127544; // type:function size:0x68 +fn_801275AC = .text:0x801275AC; // type:function size:0x68 +fn_80127614 = .text:0x80127614; // type:function size:0x70 +fn_80127684 = .text:0x80127684; // type:function size:0x6C +fn_801276F0 = .text:0x801276F0; // type:function size:0x68 +fn_80127758 = .text:0x80127758; // type:function size:0x68 +fn_801277C0 = .text:0x801277C0; // type:function size:0x17C +fn_8012793C = .text:0x8012793C; // type:function size:0x8 +fn_80127944 = .text:0x80127944; // type:function size:0x168 +fn_80127AAC = .text:0x80127AAC; // type:function size:0x8 +fn_80127AB4 = .text:0x80127AB4; // type:function size:0x148 +fn_80127BFC = .text:0x80127BFC; // type:function size:0x1B8 +fn_80127DB4 = .text:0x80127DB4; // type:function size:0x174 +fn_80127F28 = .text:0x80127F28; // type:function size:0xC +fn_80127F34 = .text:0x80127F34; // type:function size:0x20 +fn_80127F54 = .text:0x80127F54; // type:function size:0x264 +fn_801281B8 = .text:0x801281B8; // type:function size:0x200 +fn_801283B8 = .text:0x801283B8; // type:function size:0x40 +fn_801283F8 = .text:0x801283F8; // type:function size:0x144 +fn_8012853C = .text:0x8012853C; // type:function size:0x14 +fn_80128550 = .text:0x80128550; // type:function size:0x98 +fn_801285E8 = .text:0x801285E8; // type:function size:0x3C +fn_80128624 = .text:0x80128624; // type:function size:0x1AC +fn_801287D0 = .text:0x801287D0; // type:function size:0x108 +fn_801288D8 = .text:0x801288D8; // type:function size:0xC +fn_801288E4 = .text:0x801288E4; // type:function size:0xC +fn_801288F0 = .text:0x801288F0; // type:function size:0x16C +fn_80128A5C = .text:0x80128A5C; // type:function size:0x8 +fn_80128A64 = .text:0x80128A64; // type:function size:0x6C +fn_80128AD0 = .text:0x80128AD0; // type:function size:0xEC +fn_80128BBC = .text:0x80128BBC; // type:function size:0x8 +fn_80128BC4 = .text:0x80128BC4; // type:function size:0x164 +fn_80128D28 = .text:0x80128D28; // type:function size:0xF0 +fn_80128E18 = .text:0x80128E18; // type:function size:0xC0 +fn_80128ED8 = .text:0x80128ED8; // type:function size:0x24 +fn_80128EFC = .text:0x80128EFC; // type:function size:0x60 +fn_80128F5C = .text:0x80128F5C; // type:function size:0x60 +fn_80128FBC = .text:0x80128FBC; // type:function size:0x188 +fn_80129144 = .text:0x80129144; // type:function size:0x28 +fn_8012916C = .text:0x8012916C; // type:function size:0xA4 +fn_80129210 = .text:0x80129210; // type:function size:0x4 +fn_80129214 = .text:0x80129214; // type:function size:0x98 +fn_801292AC = .text:0x801292AC; // type:function size:0x40 +fn_801292EC = .text:0x801292EC; // type:function size:0x58 +fn_80129344 = .text:0x80129344; // type:function size:0x50 +fn_80129394 = .text:0x80129394; // type:function size:0x110 +fn_801294A4 = .text:0x801294A4; // type:function size:0x8 +fn_801294AC = .text:0x801294AC; // type:function size:0x74 +fn_80129520 = .text:0x80129520; // type:function size:0x74 +fn_80129594 = .text:0x80129594; // type:function size:0x70 +fn_80129604 = .text:0x80129604; // type:function size:0x7C +fn_80129680 = .text:0x80129680; // type:function size:0x9C +fn_8012971C = .text:0x8012971C; // type:function size:0x2C +fn_80129748 = .text:0x80129748; // type:function size:0x84 +fn_801297CC = .text:0x801297CC; // type:function size:0x2C +fn_801297F8 = .text:0x801297F8; // type:function size:0x70 +Handle__6StreamFP9DataArrayb = .text:0x80129868; // type:function size:0xEDC +fn_8012A744 = .text:0x8012A744; // type:function size:0x8 +fn_8012A74C = .text:0x8012A74C; // type:function size:0x68 +fn_8012A7B4 = .text:0x8012A7B4; // type:function size:0x68 +fn_8012A81C = .text:0x8012A81C; // type:function size:0x2C +fn_8012A848 = .text:0x8012A848; // type:function size:0xCC +fn_8012A914 = .text:0x8012A914; // type:function size:0x60 +fn_8012A974 = .text:0x8012A974; // type:function size:0x5C +fn_8012A9D0 = .text:0x8012A9D0; // type:function size:0x60 +fn_8012AA30 = .text:0x8012AA30; // type:function size:0x5C +fn_8012AA8C = .text:0x8012AA8C; // type:function size:0xC +fn_8012AA98 = .text:0x8012AA98; // type:function size:0x114 +fn_8012ABAC = .text:0x8012ABAC; // type:function size:0x5C +fn_8012AC08 = .text:0x8012AC08; // type:function size:0x54 +fn_8012AC5C = .text:0x8012AC5C; // type:function size:0x5C +fn_8012ACB8 = .text:0x8012ACB8; // type:function size:0x8 +fn_8012ACC0 = .text:0x8012ACC0; // type:function size:0x8 +fn_8012ACC8 = .text:0x8012ACC8; // type:function size:0x8 +fn_8012ACD0 = .text:0x8012ACD0; // type:function size:0xC +fn_8012ACDC = .text:0x8012ACDC; // type:function size:0x10 +fn_8012ACEC = .text:0x8012ACEC; // type:function size:0x16C +fn_8012AE58 = .text:0x8012AE58; // type:function size:0x34 +fn_8012AE8C = .text:0x8012AE8C; // type:function size:0x58 +fn_8012AEE4 = .text:0x8012AEE4; // type:function size:0x58 +fn_8012AF3C = .text:0x8012AF3C; // type:function size:0xD4 +fn_8012B010 = .text:0x8012B010; // type:function size:0x50 +fn_8012B060 = .text:0x8012B060; // type:function size:0x5C +fn_8012B0BC = .text:0x8012B0BC; // type:function size:0x18C +fn_8012B248 = .text:0x8012B248; // type:function size:0x5C +fn_8012B2A4 = .text:0x8012B2A4; // type:function size:0x10 +fn_8012B2B4 = .text:0x8012B2B4; // type:function size:0x54 +fn_8012B308 = .text:0x8012B308; // type:function size:0x28 +fn_8012B330 = .text:0x8012B330; // type:function size:0x68 +fn_8012B398 = .text:0x8012B398; // type:function size:0x5C +fn_8012B3F4 = .text:0x8012B3F4; // type:function size:0x38 +fn_8012B42C = .text:0x8012B42C; // type:function size:0x114 +fn_8012B540 = .text:0x8012B540; // type:function size:0x5C +fn_8012B59C = .text:0x8012B59C; // type:function size:0x5C +fn_8012B5F8 = .text:0x8012B5F8; // type:function size:0x54 +fn_8012B64C = .text:0x8012B64C; // type:function size:0x14 +fn_8012B660 = .text:0x8012B660; // type:function size:0x14 +fn_8012B674 = .text:0x8012B674; // type:function size:0x14 +fn_8012B688 = .text:0x8012B688; // type:function size:0x14 +fn_8012B69C = .text:0x8012B69C; // type:function size:0x14 +fn_8012B6B0 = .text:0x8012B6B0; // type:function size:0x14 +fn_8012B6C4 = .text:0x8012B6C4; // type:function size:0x14 +fn_8012B6D8 = .text:0x8012B6D8; // type:function size:0x8 +fn_8012B6E0 = .text:0x8012B6E0; // type:function size:0x8 +fn_8012B6E8 = .text:0x8012B6E8; // type:function size:0x8 +fn_8012B6F0 = .text:0x8012B6F0; // type:function size:0x8 +fn_8012B6F8 = .text:0x8012B6F8; // type:function size:0x8 +fn_8012B700 = .text:0x8012B700; // type:function size:0x8 +fn_8012B708 = .text:0x8012B708; // type:function size:0x8 +fn_8012B710 = .text:0x8012B710; // type:function size:0x8 +fn_8012B718 = .text:0x8012B718; // type:function size:0x8 +fn_8012B720 = .text:0x8012B720; // type:function size:0x8 +fn_8012B728 = .text:0x8012B728; // type:function size:0x8 +fn_8012B730 = .text:0x8012B730; // type:function size:0x8 +fn_8012B738 = .text:0x8012B738; // type:function size:0x8 +fn_8012B740 = .text:0x8012B740; // type:function size:0x8 +fn_8012B748 = .text:0x8012B748; // type:function size:0x8 +fn_8012B750 = .text:0x8012B750; // type:function size:0x8 +fn_8012B758 = .text:0x8012B758; // type:function size:0x8 +fn_8012B760 = .text:0x8012B760; // type:function size:0x8 +fn_8012B768 = .text:0x8012B768; // type:function size:0x8 +fn_8012B770 = .text:0x8012B770; // type:function size:0x8 +fn_8012B778 = .text:0x8012B778; // type:function size:0x8 +fn_8012B780 = .text:0x8012B780; // type:function size:0x8 +fn_8012B788 = .text:0x8012B788; // type:function size:0x8 +fn_8012B790 = .text:0x8012B790; // type:function size:0x8 +fn_8012B798 = .text:0x8012B798; // type:function size:0x8 +fn_8012B7A0 = .text:0x8012B7A0; // type:function size:0x8 +fn_8012B7A8 = .text:0x8012B7A8; // type:function size:0x8 +fn_8012B7B0 = .text:0x8012B7B0; // type:function size:0x8 +__ct__15GemTrainerPanelFv = .text:0x8012B7B8; // type:function size:0x140 +fn_8012B8F8 = .text:0x8012B8F8; // type:function size:0x40 +__dt__15GemTrainerPanelFv = .text:0x8012B938; // type:function size:0xE8 +fn_8012BA20 = .text:0x8012BA20; // type:function size:0x3D8 +fn_8012BDF8 = .text:0x8012BDF8; // type:function size:0x9C +fn_8012BE94 = .text:0x8012BE94; // type:function size:0x5C +__dt__Q211stlpmtx_std126map<6Symbol,8DataNode,Q211stlpmtx_std13less<6Symbol>,Q211stlpmtx_std55StlNodeAlloc>>Fv = .text:0x8012BEF0; // type:function size:0x58 +fn_8012BF48 = .text:0x8012BF48; // type:function size:0x60 +fn_8012BFA8 = .text:0x8012BFA8; // type:function size:0x58 +fn_8012C000 = .text:0x8012C000; // type:function size:0x58 +fn_8012C058 = .text:0x8012C058; // type:function size:0x50 +fn_8012C0A8 = .text:0x8012C0A8; // type:function size:0xC8 +fn_8012C170 = .text:0x8012C170; // type:function size:0x4 +fn_8012C174 = .text:0x8012C174; // type:function size:0x50 +fn_8012C1C4 = .text:0x8012C1C4; // type:function size:0x58 +fn_8012C21C = .text:0x8012C21C; // type:function size:0x374 +fn_8012C590 = .text:0x8012C590; // type:function size:0x30 +fn_8012C5C0 = .text:0x8012C5C0; // type:function size:0xB0 +fn_8012C670 = .text:0x8012C670; // type:function size:0x1A4 +fn_8012C814 = .text:0x8012C814; // type:function size:0x3C +fn_8012C850 = .text:0x8012C850; // type:function size:0x8 +fn_8012C858 = .text:0x8012C858; // type:function size:0x6C +fn_8012C8C4 = .text:0x8012C8C4; // type:function size:0x18 +fn_8012C8DC = .text:0x8012C8DC; // type:function size:0x114 +fn_8012C9F0 = .text:0x8012C9F0; // type:function size:0x330 +fn_8012CD20 = .text:0x8012CD20; // type:function size:0x8 +fn_8012CD28 = .text:0x8012CD28; // type:function size:0x8 +fn_8012CD30 = .text:0x8012CD30; // type:function size:0x16C +fn_8012CE9C = .text:0x8012CE9C; // type:function size:0x2B4 +fn_8012D150 = .text:0x8012D150; // type:function size:0x10 +fn_8012D160 = .text:0x8012D160; // type:function size:0x88 +fn_8012D1E8 = .text:0x8012D1E8; // type:function size:0x198 +fn_8012D380 = .text:0x8012D380; // type:function size:0x8 +fn_8012D388 = .text:0x8012D388; // type:function size:0xDC +fn_8012D464 = .text:0x8012D464; // type:function size:0x74 +fn_8012D4D8 = .text:0x8012D4D8; // type:function size:0x80 +fn_8012D558 = .text:0x8012D558; // type:function size:0x94 +fn_8012D5EC = .text:0x8012D5EC; // type:function size:0x8 +fn_8012D5F4 = .text:0x8012D5F4; // type:function size:0x128 +fn_8012D71C = .text:0x8012D71C; // type:function size:0x88 +fn_8012D7A4 = .text:0x8012D7A4; // type:function size:0x98 +fn_8012D83C = .text:0x8012D83C; // type:function size:0x4C +fn_8012D888 = .text:0x8012D888; // type:function size:0x8 +fn_8012D890 = .text:0x8012D890; // type:function size:0x58 +fn_8012D8E8 = .text:0x8012D8E8; // type:function size:0x6C +fn_8012D954 = .text:0x8012D954; // type:function size:0x54 +fn_8012D9A8 = .text:0x8012D9A8; // type:function size:0x94 +fn_8012DA3C = .text:0x8012DA3C; // type:function size:0x8 +fn_8012DA44 = .text:0x8012DA44; // type:function size:0x8 +fn_8012DA4C = .text:0x8012DA4C; // type:function size:0x8 +fn_8012DA54 = .text:0x8012DA54; // type:function size:0x98 +fn_8012DAEC = .text:0x8012DAEC; // type:function size:0xC +fn_8012DAF8 = .text:0x8012DAF8; // type:function size:0x8 +fn_8012DB00 = .text:0x8012DB00; // type:function size:0x190 +Handle__15GemTrainerPanelFP9DataArrayb = .text:0x8012DC90; // type:function size:0x554 +SyncProperty__15GemTrainerPanelFR8DataNodeP9DataArrayi6PropOp = .text:0x8012E1E4; // type:function size:0xC0 +fn_8012E2A4 = .text:0x8012E2A4; // type:function size:0x34 +fn_8012E2D8 = .text:0x8012E2D8; // type:function size:0x160 +fn_8012E438 = .text:0x8012E438; // type:function size:0x28 +fn_8012E460 = .text:0x8012E460; // type:function size:0x5C +fn_8012E4BC = .text:0x8012E4BC; // type:function size:0x60 +fn_8012E51C = .text:0x8012E51C; // type:function size:0x6C +fn_8012E588 = .text:0x8012E588; // type:function size:0x10 +fn_8012E598 = .text:0x8012E598; // type:function size:0x2C +fn_8012E5C4 = .text:0x8012E5C4; // type:function size:0x8 +__dt__8VarStackFv = .text:0x8012E5CC; // type:function size:0x5C +SetType__15GemTrainerPanelF6Symbol = .text:0x8012E628; // type:function size:0x134 +ClassName__15GemTrainerPanelCFv = .text:0x8012E75C; // type:function size:0x4 +fn_8012E760 = .text:0x8012E760; // type:function size:0x134 +fn_8012E894 = .text:0x8012E894; // type:function size:0x4 +fn_8012E898 = .text:0x8012E898; // type:function size:0x14 +fn_8012E8AC = .text:0x8012E8AC; // type:function size:0x14 +fn_8012E8C0 = .text:0x8012E8C0; // type:function size:0x14 +fn_8012E8D4 = .text:0x8012E8D4; // type:function size:0x14 +fn_8012E8E8 = .text:0x8012E8E8; // type:function size:0x14 +fn_8012E8FC = .text:0x8012E8FC; // type:function size:0x14 +fn_8012E910 = .text:0x8012E910; // type:function size:0x14 +fn_8012E924 = .text:0x8012E924; // type:function size:0x14 +fn_8012E938 = .text:0x8012E938; // type:function size:0x14 +fn_8012E94C = .text:0x8012E94C; // type:function size:0x14 +fn_8012E960 = .text:0x8012E960; // type:function size:0x14 +fn_8012E974 = .text:0x8012E974; // type:function size:0xAC +fn_8012EA20 = .text:0x8012EA20; // type:function size:0x68 +fn_8012EA88 = .text:0x8012EA88; // type:function size:0xA8 +fn_8012EB30 = .text:0x8012EB30; // type:function size:0x1A8 +fn_8012ECD8 = .text:0x8012ECD8; // type:function size:0x50 +fn_8012ED28 = .text:0x8012ED28; // type:function size:0xD0 +fn_8012EDF8 = .text:0x8012EDF8; // type:function size:0x78 +fn_8012EE70 = .text:0x8012EE70; // type:function size:0x404 +fn_8012F274 = .text:0x8012F274; // type:function size:0x74 +fn_8012F2E8 = .text:0x8012F2E8; // type:function size:0xB8 +Handle__8GuitarFxFP9DataArrayb = .text:0x8012F3A0; // type:function size:0x124 +fn_8012F4C4 = .text:0x8012F4C4; // type:function size:0x3C +fn_8012F500 = .text:0x8012F500; // type:function size:0xD8 +fn_8012F5D8 = .text:0x8012F5D8; // type:function size:0x1C +fn_8012F5F4 = .text:0x8012F5F4; // type:function size:0x40 +fn_8012F634 = .text:0x8012F634; // type:function size:0x54 +fn_8012F688 = .text:0x8012F688; // type:function size:0xCC +fn_8012F754 = .text:0x8012F754; // type:function size:0xB8 +fn_8012F80C = .text:0x8012F80C; // type:function size:0xCC +fn_8012F8D8 = .text:0x8012F8D8; // type:function size:0x7C +fn_8012F954 = .text:0x8012F954; // type:function size:0x10 +fn_8012F964 = .text:0x8012F964; // type:function size:0xB0 +fn_8012FA14 = .text:0x8012FA14; // type:function size:0x30 +fn_8012FA44 = .text:0x8012FA44; // type:function size:0x18 +fn_8012FA5C = .text:0x8012FA5C; // type:function size:0x20 +fn_8012FA7C = .text:0x8012FA7C; // type:function size:0x18 +fn_8012FA94 = .text:0x8012FA94; // type:function size:0x64 +fn_8012FAF8 = .text:0x8012FAF8; // type:function size:0x70 +fn_8012FB68 = .text:0x8012FB68; // type:function size:0x68 +fn_8012FBD0 = .text:0x8012FBD0; // type:function size:0x64 +fn_8012FC34 = .text:0x8012FC34; // type:function size:0xC +fn_8012FC40 = .text:0x8012FC40; // type:function size:0x564 +fn_801301A4 = .text:0x801301A4; // type:function size:0x4 +fn_801301A8 = .text:0x801301A8; // type:function size:0x24 +CosThunk__Fd = .text:0x801301CC; // type:function size:0x4 +CosFloat__Fd = .text:0x801301D0; // type:function size:0x24 +fn_801301F4 = .text:0x801301F4; // type:function size:0x74 +Handle__6KeysFxFP9DataArrayb = .text:0x80130268; // type:function size:0xC4 +__ct__9MetronomeFv = .text:0x8013032C; // type:function size:0x2C +__dt__9MetronomeFv = .text:0x80130358; // type:function size:0x40 +fn_80130398 = .text:0x80130398; // type:function size:0x64 +fn_801303FC = .text:0x801303FC; // type:function size:0x54 +fn_80130450 = .text:0x80130450; // type:function size:0xD0 +fn_80130520 = .text:0x80130520; // type:function size:0x3C +fn_8013055C = .text:0x8013055C; // type:function size:0x8 +fn_80130564 = .text:0x80130564; // type:function size:0x8 +fn_8013056C = .text:0x8013056C; // type:function size:0x74 +fn_801305E0 = .text:0x801305E0; // type:function size:0x8C +fn_8013066C = .text:0x8013066C; // type:function size:0x74 +fn_801306E0 = .text:0x801306E0; // type:function size:0x58 +fn_80130738 = .text:0x80130738; // type:function size:0x80 +fn_801307B8 = .text:0x801307B8; // type:function size:0x80 +fn_80130838 = .text:0x80130838; // type:function size:0x58 +fn_80130890 = .text:0x80130890; // type:function size:0x54 +fn_801308E4 = .text:0x801308E4; // type:function size:0x5C +fn_80130940 = .text:0x80130940; // type:function size:0x6C +fn_801309AC = .text:0x801309AC; // type:function size:0x28 +fn_801309D4 = .text:0x801309D4; // type:function size:0x10 +fn_801309E4 = .text:0x801309E4; // type:function size:0x8 +fn_801309EC = .text:0x801309EC; // type:function size:0x5C +fn_80130A48 = .text:0x80130A48; // type:function size:0xC +fn_80130A54 = .text:0x80130A54; // type:function size:0x8 +fn_80130A5C = .text:0x80130A5C; // type:function size:0x3C +fn_80130A98 = .text:0x80130A98; // type:function size:0x14 +fn_80130AAC = .text:0x80130AAC; // type:function size:0x58 +fn_80130B04 = .text:0x80130B04; // type:function size:0x80 +fn_80130B84 = .text:0x80130B84; // type:function size:0x80 +fn_80130C04 = .text:0x80130C04; // type:function size:0x58 +fn_80130C5C = .text:0x80130C5C; // type:function size:0x10 +fn_80130C6C = .text:0x80130C6C; // type:function size:0x54 +fn_80130CC0 = .text:0x80130CC0; // type:function size:0x5C +fn_80130D1C = .text:0x80130D1C; // type:function size:0x6C +fn_80130D88 = .text:0x80130D88; // type:function size:0x28 +fn_80130DB0 = .text:0x80130DB0; // type:function size:0x10 +fn_80130DC0 = .text:0x80130DC0; // type:function size:0x8 +fn_80130DC8 = .text:0x80130DC8; // type:function size:0x5C +fn_80130E24 = .text:0x80130E24; // type:function size:0x58 +fn_80130E7C = .text:0x80130E7C; // type:function size:0x80 +fn_80130EFC = .text:0x80130EFC; // type:function size:0x80 +fn_80130F7C = .text:0x80130F7C; // type:function size:0x58 +fn_80130FD4 = .text:0x80130FD4; // type:function size:0x54 +fn_80131028 = .text:0x80131028; // type:function size:0x5C +fn_80131084 = .text:0x80131084; // type:function size:0x6C +fn_801310F0 = .text:0x801310F0; // type:function size:0x28 +fn_80131118 = .text:0x80131118; // type:function size:0x8 +fn_80131120 = .text:0x80131120; // type:function size:0x3C +fn_8013115C = .text:0x8013115C; // type:function size:0xC +fn_80131168 = .text:0x80131168; // type:function size:0x8 +fn_80131170 = .text:0x80131170; // type:function size:0x3C +fn_801311AC = .text:0x801311AC; // type:function size:0x14 +fn_801311C0 = .text:0x801311C0; // type:function size:0x30 +fn_801311F0 = .text:0x801311F0; // type:function size:0x30 +fn_80131220 = .text:0x80131220; // type:function size:0x40 +fn_80131260 = .text:0x80131260; // type:function size:0x30 +fn_80131290 = .text:0x80131290; // type:function size:0x30 +fn_801312C0 = .text:0x801312C0; // type:function size:0x40 +fn_80131300 = .text:0x80131300; // type:function size:0xDC +fn_801313DC = .text:0x801313DC; // type:function size:0x4 +fn_801313E0 = .text:0x801313E0; // type:function size:0x88 +fn_80131468 = .text:0x80131468; // type:function size:0x2C +fn_80131494 = .text:0x80131494; // type:function size:0x10 +fn_801314A4 = .text:0x801314A4; // type:function size:0x60 +fn_80131504 = .text:0x80131504; // type:function size:0x30 +fn_80131534 = .text:0x80131534; // type:function size:0xA0 +fn_801315D4 = .text:0x801315D4; // type:function size:0x58 +fn_8013162C = .text:0x8013162C; // type:function size:0x70 +fn_8013169C = .text:0x8013169C; // type:function size:0x58 +fn_801316F4 = .text:0x801316F4; // type:function size:0x10 +fn_80131704 = .text:0x80131704; // type:function size:0x84 +fn_80131788 = .text:0x80131788; // type:function size:0xD4 +fn_8013185C = .text:0x8013185C; // type:function size:0x24 +fn_80131880 = .text:0x80131880; // type:function size:0x4 +fn_80131884 = .text:0x80131884; // type:function size:0x88 +fn_8013190C = .text:0x8013190C; // type:function size:0x2C +fn_80131938 = .text:0x80131938; // type:function size:0x10 +fn_80131948 = .text:0x80131948; // type:function size:0x98 +fn_801319E0 = .text:0x801319E0; // type:function size:0x30 +fn_80131A10 = .text:0x80131A10; // type:function size:0x98 +fn_80131AA8 = .text:0x80131AA8; // type:function size:0x5C +fn_80131B04 = .text:0x80131B04; // type:function size:0x10 +fn_80131B14 = .text:0x80131B14; // type:function size:0x70 +fn_80131B84 = .text:0x80131B84; // type:function size:0x48 +fn_80131BCC = .text:0x80131BCC; // type:function size:0x30 +fn_80131BFC = .text:0x80131BFC; // type:function size:0x30 +fn_80131C2C = .text:0x80131C2C; // type:function size:0x40 +fn_80131C6C = .text:0x80131C6C; // type:function size:0x80 +fn_80131CEC = .text:0x80131CEC; // type:function size:0x4 +fn_80131CF0 = .text:0x80131CF0; // type:function size:0x3C +fn_80131D2C = .text:0x80131D2C; // type:function size:0x40 +fn_80131D6C = .text:0x80131D6C; // type:function size:0x8C +fn_80131DF8 = .text:0x80131DF8; // type:function size:0x8 +fn_80131E00 = .text:0x80131E00; // type:function size:0x2C +fn_80131E2C = .text:0x80131E2C; // type:function size:0x58 +fn_80131E84 = .text:0x80131E84; // type:function size:0x28 +fn_80131EAC = .text:0x80131EAC; // type:function size:0x68 +fn_80131F14 = .text:0x80131F14; // type:function size:0x60 +fn_80131F74 = .text:0x80131F74; // type:function size:0x30 +fn_80131FA4 = .text:0x80131FA4; // type:function size:0x4 +fn_80131FA8 = .text:0x80131FA8; // type:function size:0x3C +fn_80131FE4 = .text:0x80131FE4; // type:function size:0x40 +fn_80132024 = .text:0x80132024; // type:function size:0x8C +fn_801320B0 = .text:0x801320B0; // type:function size:0x8 +fn_801320B8 = .text:0x801320B8; // type:function size:0x2C +fn_801320E4 = .text:0x801320E4; // type:function size:0x58 +fn_8013213C = .text:0x8013213C; // type:function size:0x28 +fn_80132164 = .text:0x80132164; // type:function size:0x68 +fn_801321CC = .text:0x801321CC; // type:function size:0xA8 +fn_80132274 = .text:0x80132274; // type:function size:0x30 +fn_801322A4 = .text:0x801322A4; // type:function size:0x8 +fn_801322AC = .text:0x801322AC; // type:function size:0x38 +fn_801322E4 = .text:0x801322E4; // type:function size:0x38 +fn_8013231C = .text:0x8013231C; // type:function size:0x40 +fn_8013235C = .text:0x8013235C; // type:function size:0x164 +fn_801324C0 = .text:0x801324C0; // type:function size:0x10 +fn_801324D0 = .text:0x801324D0; // type:function size:0x178 +fn_80132648 = .text:0x80132648; // type:function size:0x148 +fn_80132790 = .text:0x80132790; // type:function size:0x4 +fn_80132794 = .text:0x80132794; // type:function size:0x88 +fn_8013281C = .text:0x8013281C; // type:function size:0x2C +fn_80132848 = .text:0x80132848; // type:function size:0xB4 +fn_801328FC = .text:0x801328FC; // type:function size:0x110 +fn_80132A0C = .text:0x80132A0C; // type:function size:0xB0 +fn_80132ABC = .text:0x80132ABC; // type:function size:0x194 +fn_80132C50 = .text:0x80132C50; // type:function size:0x4 +fn_80132C54 = .text:0x80132C54; // type:function size:0x3C +fn_80132C90 = .text:0x80132C90; // type:function size:0x40 +fn_80132CD0 = .text:0x80132CD0; // type:function size:0x8C +fn_80132D5C = .text:0x80132D5C; // type:function size:0x8 +fn_80132D64 = .text:0x80132D64; // type:function size:0x2C +fn_80132D90 = .text:0x80132D90; // type:function size:0x58 +fn_80132DE8 = .text:0x80132DE8; // type:function size:0x28 +fn_80132E10 = .text:0x80132E10; // type:function size:0x68 +fn_80132E78 = .text:0x80132E78; // type:function size:0x1C8 +fn_80133040 = .text:0x80133040; // type:function size:0x4C +fn_8013308C = .text:0x8013308C; // type:function size:0x80 +fn_8013310C = .text:0x8013310C; // type:function size:0x80 +fn_8013318C = .text:0x8013318C; // type:function size:0x154 +fn_801332E0 = .text:0x801332E0; // type:function size:0x60 +fn_80133340 = .text:0x80133340; // type:function size:0x160 +fn_801334A0 = .text:0x801334A0; // type:function size:0x28 +fn_801334C8 = .text:0x801334C8; // type:function size:0x5C +fn_80133524 = .text:0x80133524; // type:function size:0x60 +fn_80133584 = .text:0x80133584; // type:function size:0x114 +fn_80133698 = .text:0x80133698; // type:function size:0x60 +fn_801336F8 = .text:0x801336F8; // type:function size:0x5C +fn_80133754 = .text:0x80133754; // type:function size:0x54 +fn_801337A8 = .text:0x801337A8; // type:function size:0x5C +fn_80133804 = .text:0x80133804; // type:function size:0x114 +fn_80133918 = .text:0x80133918; // type:function size:0x60 +fn_80133978 = .text:0x80133978; // type:function size:0x5C +fn_801339D4 = .text:0x801339D4; // type:function size:0x54 +fn_80133A28 = .text:0x80133A28; // type:function size:0x5C +fn_80133A84 = .text:0x80133A84; // type:function size:0x5C +fn_80133AE0 = .text:0x80133AE0; // type:function size:0xC +fn_80133AEC = .text:0x80133AEC; // type:function size:0x114 +fn_80133C00 = .text:0x80133C00; // type:function size:0x5C +fn_80133C5C = .text:0x80133C5C; // type:function size:0x5C +fn_80133CB8 = .text:0x80133CB8; // type:function size:0x54 +fn_80133D0C = .text:0x80133D0C; // type:function size:0x5C +fn_80133D68 = .text:0x80133D68; // type:function size:0x5C +fn_80133DC4 = .text:0x80133DC4; // type:function size:0xC +fn_80133DD0 = .text:0x80133DD0; // type:function size:0x7C +fn_80133E4C = .text:0x80133E4C; // type:function size:0x74 +fn_80133EC0 = .text:0x80133EC0; // type:function size:0x78 +fn_80133F38 = .text:0x80133F38; // type:function size:0x254 +fn_8013418C = .text:0x8013418C; // type:function size:0x10 +fn_8013419C = .text:0x8013419C; // type:function size:0x10 +fn_801341AC = .text:0x801341AC; // type:function size:0x130 +fn_801342DC = .text:0x801342DC; // type:function size:0xC +fn_801342E8 = .text:0x801342E8; // type:function size:0x48 +fn_80134330 = .text:0x80134330; // type:function size:0x4C +fn_8013437C = .text:0x8013437C; // type:function size:0x10 +fn_8013438C = .text:0x8013438C; // type:function size:0x10 +fn_8013439C = .text:0x8013439C; // type:function size:0xF4 +GetNodeAtIndex__12DataArrayPtrCFi = .text:0x80134490; // type:function size:0x8 +fn_80134498 = .text:0x80134498; // type:function size:0x74 +fn_8013450C = .text:0x8013450C; // type:function size:0x3BC +fn_801348C8 = .text:0x801348C8; // type:function size:0x30 +fn_801348F8 = .text:0x801348F8; // type:function size:0x30 +fn_80134928 = .text:0x80134928; // type:function size:0x30 +fn_80134958 = .text:0x80134958; // type:function size:0x30 +fn_80134988 = .text:0x80134988; // type:function size:0x30 +fn_801349B8 = .text:0x801349B8; // type:function size:0x30 +fn_801349E8 = .text:0x801349E8; // type:function size:0x58 +fn_80134A40 = .text:0x80134A40; // type:function size:0x58 +fn_80134A98 = .text:0x80134A98; // type:function size:0x54 +fn_80134AEC = .text:0x80134AEC; // type:function size:0x6C +fn_80134B58 = .text:0x80134B58; // type:function size:0x8 +fn_80134B60 = .text:0x80134B60; // type:function size:0x4C +fn_80134BAC = .text:0x80134BAC; // type:function size:0x4C +fn_80134BF8 = .text:0x80134BF8; // type:function size:0x8C +fn_80134C84 = .text:0x80134C84; // type:function size:0x6C +fn_80134CF0 = .text:0x80134CF0; // type:function size:0x4C +fn_80134D3C = .text:0x80134D3C; // type:function size:0x4C +fn_80134D88 = .text:0x80134D88; // type:function size:0x8C +fn_80134E14 = .text:0x80134E14; // type:function size:0x74 +fn_80134E88 = .text:0x80134E88; // type:function size:0x4C +fn_80134ED4 = .text:0x80134ED4; // type:function size:0x74 +fn_80134F48 = .text:0x80134F48; // type:function size:0x4C +fn_80134F94 = .text:0x80134F94; // type:function size:0x7C +fn_80135010 = .text:0x80135010; // type:function size:0x50 +fn_80135060 = .text:0x80135060; // type:function size:0xA0 +fn_80135100 = .text:0x80135100; // type:function size:0x5C +fn_8013515C = .text:0x8013515C; // type:function size:0x4C +fn_801351A8 = .text:0x801351A8; // type:function size:0x4C +fn_801351F4 = .text:0x801351F4; // type:function size:0x6C +fn_80135260 = .text:0x80135260; // type:function size:0x54 +fn_801352B4 = .text:0x801352B4; // type:function size:0x10 +fn_801352C4 = .text:0x801352C4; // type:function size:0x10 +fn_801352D4 = .text:0x801352D4; // type:function size:0x34 +fn_80135308 = .text:0x80135308; // type:function size:0x54 +fn_8013535C = .text:0x8013535C; // type:function size:0x10 +fn_8013536C = .text:0x8013536C; // type:function size:0x10 +fn_8013537C = .text:0x8013537C; // type:function size:0x34 +fn_801353B0 = .text:0x801353B0; // type:function size:0x74 +fn_80135424 = .text:0x80135424; // type:function size:0x58 +fn_8013547C = .text:0x8013547C; // type:function size:0x58 +fn_801354D4 = .text:0x801354D4; // type:function size:0x4C +fn_80135520 = .text:0x80135520; // type:function size:0x3C +fn_8013555C = .text:0x8013555C; // type:function size:0x4 +fn_80135560 = .text:0x80135560; // type:function size:0x4 +fn_80135564 = .text:0x80135564; // type:function size:0x18 +fn_8013557C = .text:0x8013557C; // type:function size:0x4C +fn_801355C8 = .text:0x801355C8; // type:function size:0x10 +fn_801355D8 = .text:0x801355D8; // type:function size:0x10 +fn_801355E8 = .text:0x801355E8; // type:function size:0xF8 +fn_801356E0 = .text:0x801356E0; // type:function size:0x54 +fn_80135734 = .text:0x80135734; // type:function size:0x4C +fn_80135780 = .text:0x80135780; // type:function size:0x4C +fn_801357CC = .text:0x801357CC; // type:function size:0x140 +fn_8013590C = .text:0x8013590C; // type:function size:0x54 +fn_80135960 = .text:0x80135960; // type:function size:0xB0 +fn_80135A10 = .text:0x80135A10; // type:function size:0x50 +fn_80135A60 = .text:0x80135A60; // type:function size:0x30 +fn_80135A90 = .text:0x80135A90; // type:function size:0x98 +fn_80135B28 = .text:0x80135B28; // type:function size:0x5C +fn_80135B84 = .text:0x80135B84; // type:function size:0x10 +fn_80135B94 = .text:0x80135B94; // type:function size:0x30 +fn_80135BC4 = .text:0x80135BC4; // type:function size:0xAC +fn_80135C70 = .text:0x80135C70; // type:function size:0x70 +fn_80135CE0 = .text:0x80135CE0; // type:function size:0x70 +fn_80135D50 = .text:0x80135D50; // type:function size:0xAC +fn_80135DFC = .text:0x80135DFC; // type:function size:0xBC +fn_80135EB8 = .text:0x80135EB8; // type:function size:0x14 +fn_80135ECC = .text:0x80135ECC; // type:function size:0x58 +fn_80135F24 = .text:0x80135F24; // type:function size:0x58 +fn_80135F7C = .text:0x80135F7C; // type:function size:0x188 +fn_80136104 = .text:0x80136104; // type:function size:0x68 +fn_8013616C = .text:0x8013616C; // type:function size:0x68 +fn_801361D4 = .text:0x801361D4; // type:function size:0x68 +fn_8013623C = .text:0x8013623C; // type:function size:0x160 +fn_8013639C = .text:0x8013639C; // type:function size:0x8 +fn_801363A4 = .text:0x801363A4; // type:function size:0x2C +fn_801363D0 = .text:0x801363D0; // type:function size:0x58 +fn_80136428 = .text:0x80136428; // type:function size:0x28 +fn_80136450 = .text:0x80136450; // type:function size:0x68 +fn_801364B8 = .text:0x801364B8; // type:function size:0x5C +fn_80136514 = .text:0x80136514; // type:function size:0x60 +fn_80136574 = .text:0x80136574; // type:function size:0x154 +fn_801366C8 = .text:0x801366C8; // type:function size:0x60 +fn_80136728 = .text:0x80136728; // type:function size:0x160 +fn_80136888 = .text:0x80136888; // type:function size:0x5C +fn_801368E4 = .text:0x801368E4; // type:function size:0x10 +fn_801368F4 = .text:0x801368F4; // type:function size:0x4C +fn_80136940 = .text:0x80136940; // type:function size:0x30 +fn_80136970 = .text:0x80136970; // type:function size:0x98 +fn_80136A08 = .text:0x80136A08; // type:function size:0x5C +fn_80136A64 = .text:0x80136A64; // type:function size:0x10 +fn_80136A74 = .text:0x80136A74; // type:function size:0x70 +fn_80136AE4 = .text:0x80136AE4; // type:function size:0x8 +fn_80136AEC = .text:0x80136AEC; // type:function size:0x2C +fn_80136B18 = .text:0x80136B18; // type:function size:0x58 +fn_80136B70 = .text:0x80136B70; // type:function size:0x28 +fn_80136B98 = .text:0x80136B98; // type:function size:0x68 +fn_80136C00 = .text:0x80136C00; // type:function size:0x4C +fn_80136C4C = .text:0x80136C4C; // type:function size:0x30 +fn_80136C7C = .text:0x80136C7C; // type:function size:0x5C +fn_80136CD8 = .text:0x80136CD8; // type:function size:0x60 +fn_80136D38 = .text:0x80136D38; // type:function size:0x160 +fn_80136E98 = .text:0x80136E98; // type:function size:0x5C +fn_80136EF4 = .text:0x80136EF4; // type:function size:0x10 +fn_80136F04 = .text:0x80136F04; // type:function size:0x8 +fn_80136F0C = .text:0x80136F0C; // type:function size:0x2C +fn_80136F38 = .text:0x80136F38; // type:function size:0x58 +fn_80136F90 = .text:0x80136F90; // type:function size:0x28 +fn_80136FB8 = .text:0x80136FB8; // type:function size:0x68 +fn_80137020 = .text:0x80137020; // type:function size:0x5C +fn_8013707C = .text:0x8013707C; // type:function size:0x60 +fn_801370DC = .text:0x801370DC; // type:function size:0x160 +fn_8013723C = .text:0x8013723C; // type:function size:0x5C +fn_80137298 = .text:0x80137298; // type:function size:0x10 +fn_801372A8 = .text:0x801372A8; // type:function size:0x2C +fn_801372D4 = .text:0x801372D4; // type:function size:0x8 +fn_801372DC = .text:0x801372DC; // type:function size:0x2C +fn_80137308 = .text:0x80137308; // type:function size:0x58 +fn_80137360 = .text:0x80137360; // type:function size:0x28 +fn_80137388 = .text:0x80137388; // type:function size:0x68 +fn_801373F0 = .text:0x801373F0; // type:function size:0x5C +fn_8013744C = .text:0x8013744C; // type:function size:0x60 +fn_801374AC = .text:0x801374AC; // type:function size:0x160 +fn_8013760C = .text:0x8013760C; // type:function size:0x5C +fn_80137668 = .text:0x80137668; // type:function size:0x10 +fn_80137678 = .text:0x80137678; // type:function size:0x4C +fn_801376C4 = .text:0x801376C4; // type:function size:0x8 +fn_801376CC = .text:0x801376CC; // type:function size:0x2C +fn_801376F8 = .text:0x801376F8; // type:function size:0x58 +fn_80137750 = .text:0x80137750; // type:function size:0x28 +fn_80137778 = .text:0x80137778; // type:function size:0x68 +fn_801377E0 = .text:0x801377E0; // type:function size:0x1C +fn_801377FC = .text:0x801377FC; // type:function size:0x5C +fn_80137858 = .text:0x80137858; // type:function size:0x60 +fn_801378B8 = .text:0x801378B8; // type:function size:0xB4 +fn_8013796C = .text:0x8013796C; // type:function size:0x38 +fn_801379A4 = .text:0x801379A4; // type:function size:0x5C +fn_80137A00 = .text:0x80137A00; // type:function size:0x4 +fn_80137A04 = .text:0x80137A04; // type:function size:0x58 +fn_80137A5C = .text:0x80137A5C; // type:function size:0xC +fn_80137A68 = .text:0x80137A68; // type:function size:0x4 +fn_80137A6C = .text:0x80137A6C; // type:function size:0x58 +fn_80137AC4 = .text:0x80137AC4; // type:function size:0xC +fn_80137AD0 = .text:0x80137AD0; // type:function size:0x4 +fn_80137AD4 = .text:0x80137AD4; // type:function size:0x58 +fn_80137B2C = .text:0x80137B2C; // type:function size:0xC +fn_80137B38 = .text:0x80137B38; // type:function size:0x4 +fn_80137B3C = .text:0x80137B3C; // type:function size:0x58 +fn_80137B94 = .text:0x80137B94; // type:function size:0xC +fn_80137BA0 = .text:0x80137BA0; // type:function size:0x4 +fn_80137BA4 = .text:0x80137BA4; // type:function size:0x58 +fn_80137BFC = .text:0x80137BFC; // type:function size:0xC +fn_80137C08 = .text:0x80137C08; // type:function size:0x4 +fn_80137C0C = .text:0x80137C0C; // type:function size:0x58 +fn_80137C64 = .text:0x80137C64; // type:function size:0xC +fn_80137C70 = .text:0x80137C70; // type:function size:0x4 +fn_80137C74 = .text:0x80137C74; // type:function size:0x58 +fn_80137CCC = .text:0x80137CCC; // type:function size:0xC +fn_80137CD8 = .text:0x80137CD8; // type:function size:0x4 +fn_80137CDC = .text:0x80137CDC; // type:function size:0x58 +fn_80137D34 = .text:0x80137D34; // type:function size:0xC +fn_80137D40 = .text:0x80137D40; // type:function size:0x4 +fn_80137D44 = .text:0x80137D44; // type:function size:0x58 +fn_80137D9C = .text:0x80137D9C; // type:function size:0xC +fn_80137DA8 = .text:0x80137DA8; // type:function size:0x4 +fn_80137DAC = .text:0x80137DAC; // type:function size:0x58 +fn_80137E04 = .text:0x80137E04; // type:function size:0xC +fn_80137E10 = .text:0x80137E10; // type:function size:0x4 +fn_80137E14 = .text:0x80137E14; // type:function size:0x58 +fn_80137E6C = .text:0x80137E6C; // type:function size:0xC +fn_80137E78 = .text:0x80137E78; // type:function size:0x4 +fn_80137E7C = .text:0x80137E7C; // type:function size:0x58 +fn_80137ED4 = .text:0x80137ED4; // type:function size:0xC +fn_80137EE0 = .text:0x80137EE0; // type:function size:0x4 +fn_80137EE4 = .text:0x80137EE4; // type:function size:0x58 +fn_80137F3C = .text:0x80137F3C; // type:function size:0xC +fn_80137F48 = .text:0x80137F48; // type:function size:0x4 +fn_80137F4C = .text:0x80137F4C; // type:function size:0x58 +fn_80137FA4 = .text:0x80137FA4; // type:function size:0xC +fn_80137FB0 = .text:0x80137FB0; // type:function size:0x4 +fn_80137FB4 = .text:0x80137FB4; // type:function size:0x58 +fn_8013800C = .text:0x8013800C; // type:function size:0xC +fn_80138018 = .text:0x80138018; // type:function size:0x4 +fn_8013801C = .text:0x8013801C; // type:function size:0x58 +fn_80138074 = .text:0x80138074; // type:function size:0xC +fn_80138080 = .text:0x80138080; // type:function size:0x160 +fn_801381E0 = .text:0x801381E0; // type:function size:0x8 +fn_801381E8 = .text:0x801381E8; // type:function size:0x2C +fn_80138214 = .text:0x80138214; // type:function size:0x58 +fn_8013826C = .text:0x8013826C; // type:function size:0x28 +fn_80138294 = .text:0x80138294; // type:function size:0x68 +fn_801382FC = .text:0x801382FC; // type:function size:0x5C +fn_80138358 = .text:0x80138358; // type:function size:0x60 +fn_801383B8 = .text:0x801383B8; // type:function size:0x6C +fn_80138424 = .text:0x80138424; // type:function size:0x58 +fn_8013847C = .text:0x8013847C; // type:function size:0x78 +fn_801384F4 = .text:0x801384F4; // type:function size:0x188 +fn_8013867C = .text:0x8013867C; // type:function size:0x5C +fn_801386D8 = .text:0x801386D8; // type:function size:0xB4 +fn_8013878C = .text:0x8013878C; // type:function size:0x9C +fn_80138828 = .text:0x80138828; // type:function size:0x58 +fn_80138880 = .text:0x80138880; // type:function size:0xD8 +fn_80138958 = .text:0x80138958; // type:function size:0xB0 +fn_80138A08 = .text:0x80138A08; // type:function size:0x8 +fn_80138A10 = .text:0x80138A10; // type:function size:0x4 +fn_80138A14 = .text:0x80138A14; // type:function size:0x44 +fn_80138A58 = .text:0x80138A58; // type:function size:0x4 +fn_80138A5C = .text:0x80138A5C; // type:function size:0x8 +fn_80138A64 = .text:0x80138A64; // type:function size:0x78 +fn_80138ADC = .text:0x80138ADC; // type:function size:0x54 +fn_80138B30 = .text:0x80138B30; // type:function size:0x58 +fn_80138B88 = .text:0x80138B88; // type:function size:0x60 +fn_80138BE8 = .text:0x80138BE8; // type:function size:0x58 +fn_80138C40 = .text:0x80138C40; // type:function size:0x58 +fn_80138C98 = .text:0x80138C98; // type:function size:0x50 +fn_80138CE8 = .text:0x80138CE8; // type:function size:0x44 +fn_80138D2C = .text:0x80138D2C; // type:function size:0x3C +fn_80138D68 = .text:0x80138D68; // type:function size:0x70 +fn_80138DD8 = .text:0x80138DD8; // type:function size:0x74 +fn_80138E4C = .text:0x80138E4C; // type:function size:0x50 +fn_80138E9C = .text:0x80138E9C; // type:function size:0x1CC +fn_80139068 = .text:0x80139068; // type:function size:0x130 +fn_80139198 = .text:0x80139198; // type:function size:0x14 +fn_801391AC = .text:0x801391AC; // type:function size:0xFC +fn_801392A8 = .text:0x801392A8; // type:function size:0x58 +fn_80139300 = .text:0x80139300; // type:function size:0x44 +fn_80139344 = .text:0x80139344; // type:function size:0x8 +fn_8013934C = .text:0x8013934C; // type:function size:0x4 +fn_80139350 = .text:0x80139350; // type:function size:0x40 +fn_80139390 = .text:0x80139390; // type:function size:0x74 +fn_80139404 = .text:0x80139404; // type:function size:0x3CC +fn_801397D0 = .text:0x801397D0; // type:function size:0x4C +fn_8013981C = .text:0x8013981C; // type:function size:0x80 +fn_8013989C = .text:0x8013989C; // type:function size:0x5C +fn_801398F8 = .text:0x801398F8; // type:function size:0x58 +fn_80139950 = .text:0x80139950; // type:function size:0xD8 +fn_80139A28 = .text:0x80139A28; // type:function size:0xB0 +fn_80139AD8 = .text:0x80139AD8; // type:function size:0x4 +fn_80139ADC = .text:0x80139ADC; // type:function size:0x58 +fn_80139B34 = .text:0x80139B34; // type:function size:0x44 +fn_80139B78 = .text:0x80139B78; // type:function size:0x8 +fn_80139B80 = .text:0x80139B80; // type:function size:0xC +fn_80139B8C = .text:0x80139B8C; // type:function size:0xCC +fn_80139C58 = .text:0x80139C58; // type:function size:0x388 +fn_80139FE0 = .text:0x80139FE0; // type:function size:0x6C +fn_8013A04C = .text:0x8013A04C; // type:function size:0x2C +fn_8013A078 = .text:0x8013A078; // type:function size:0x158 +fn_8013A1D0 = .text:0x8013A1D0; // type:function size:0x44 +fn_8013A214 = .text:0x8013A214; // type:function size:0x8 +fn_8013A21C = .text:0x8013A21C; // type:function size:0x104 +fn_8013A320 = .text:0x8013A320; // type:function size:0x5C +fn_8013A37C = .text:0x8013A37C; // type:function size:0x10 +fn_8013A38C = .text:0x8013A38C; // type:function size:0x44 +fn_8013A3D0 = .text:0x8013A3D0; // type:function size:0x54 +fn_8013A424 = .text:0x8013A424; // type:function size:0x58 +fn_8013A47C = .text:0x8013A47C; // type:function size:0x60 +fn_8013A4DC = .text:0x8013A4DC; // type:function size:0x58 +fn_8013A534 = .text:0x8013A534; // type:function size:0x58 +fn_8013A58C = .text:0x8013A58C; // type:function size:0x50 +fn_8013A5DC = .text:0x8013A5DC; // type:function size:0x58 +fn_8013A634 = .text:0x8013A634; // type:function size:0x60 +fn_8013A694 = .text:0x8013A694; // type:function size:0x58 +fn_8013A6EC = .text:0x8013A6EC; // type:function size:0x58 +fn_8013A744 = .text:0x8013A744; // type:function size:0x50 +fn_8013A794 = .text:0x8013A794; // type:function size:0x44 +fn_8013A7D8 = .text:0x8013A7D8; // type:function size:0x3C +fn_8013A814 = .text:0x8013A814; // type:function size:0x70 +fn_8013A884 = .text:0x8013A884; // type:function size:0x44 +fn_8013A8C8 = .text:0x8013A8C8; // type:function size:0x3C +fn_8013A904 = .text:0x8013A904; // type:function size:0x70 +fn_8013A974 = .text:0x8013A974; // type:function size:0x80 +fn_8013A9F4 = .text:0x8013A9F4; // type:function size:0x50 +fn_8013AA44 = .text:0x8013AA44; // type:function size:0x478 +fn_8013AEBC = .text:0x8013AEBC; // type:function size:0x8 +fn_8013AEC4 = .text:0x8013AEC4; // type:function size:0x4 +fn_8013AEC8 = .text:0x8013AEC8; // type:function size:0x40 +fn_8013AF08 = .text:0x8013AF08; // type:function size:0xAC +fn_8013AFB4 = .text:0x8013AFB4; // type:function size:0x10C +fn_8013B0C0 = .text:0x8013B0C0; // type:function size:0x58 +fn_8013B118 = .text:0x8013B118; // type:function size:0x24 +fn_8013B13C = .text:0x8013B13C; // type:function size:0x4 +fn_8013B140 = .text:0x8013B140; // type:function size:0x40 +fn_8013B180 = .text:0x8013B180; // type:function size:0x80 +fn_8013B200 = .text:0x8013B200; // type:function size:0x128 +fn_8013B328 = .text:0x8013B328; // type:function size:0x2C +fn_8013B354 = .text:0x8013B354; // type:function size:0x30 +fn_8013B384 = .text:0x8013B384; // type:function size:0xAC +fn_8013B430 = .text:0x8013B430; // type:function size:0x24 +fn_8013B454 = .text:0x8013B454; // type:function size:0x128 +fn_8013B57C = .text:0x8013B57C; // type:function size:0x54 +fn_8013B5D0 = .text:0x8013B5D0; // type:function size:0x118 +fn_8013B6E8 = .text:0x8013B6E8; // type:function size:0x58 +fn_8013B740 = .text:0x8013B740; // type:function size:0x30 +fn_8013B770 = .text:0x8013B770; // type:function size:0x8 +fn_8013B778 = .text:0x8013B778; // type:function size:0x4 +fn_8013B77C = .text:0x8013B77C; // type:function size:0x40 +fn_8013B7BC = .text:0x8013B7BC; // type:function size:0x80 +fn_8013B83C = .text:0x8013B83C; // type:function size:0x4 +fn_8013B840 = .text:0x8013B840; // type:function size:0x528 +fn_8013BD68 = .text:0x8013BD68; // type:function size:0x4 +fn_8013BD6C = .text:0x8013BD6C; // type:function size:0x40 +fn_8013BDAC = .text:0x8013BDAC; // type:function size:0x80 +fn_8013BE2C = .text:0x8013BE2C; // type:function size:0x124 +fn_8013BF50 = .text:0x8013BF50; // type:function size:0x4 +fn_8013BF54 = .text:0x8013BF54; // type:function size:0x4 +fn_8013BF58 = .text:0x8013BF58; // type:function size:0x13C +fn_8013C094 = .text:0x8013C094; // type:function size:0x50 +fn_8013C0E4 = .text:0x8013C0E4; // type:function size:0x8 +fn_8013C0EC = .text:0x8013C0EC; // type:function size:0x3B8 +fn_8013C4A4 = .text:0x8013C4A4; // type:function size:0x6C +fn_8013C510 = .text:0x8013C510; // type:function size:0x2C +fn_8013C53C = .text:0x8013C53C; // type:function size:0x3B8 +fn_8013C8F4 = .text:0x8013C8F4; // type:function size:0x6C +fn_8013C960 = .text:0x8013C960; // type:function size:0x10 +fn_8013C970 = .text:0x8013C970; // type:function size:0x2C +fn_8013C99C = .text:0x8013C99C; // type:function size:0x15C +fn_8013CAF8 = .text:0x8013CAF8; // type:function size:0x44 +fn_8013CB3C = .text:0x8013CB3C; // type:function size:0x8 +fn_8013CB44 = .text:0x8013CB44; // type:function size:0x108 +fn_8013CC4C = .text:0x8013CC4C; // type:function size:0x5C +fn_8013CCA8 = .text:0x8013CCA8; // type:function size:0x10 +fn_8013CCB8 = .text:0x8013CCB8; // type:function size:0x15C +fn_8013CE14 = .text:0x8013CE14; // type:function size:0x44 +fn_8013CE58 = .text:0x8013CE58; // type:function size:0x8 +fn_8013CE60 = .text:0x8013CE60; // type:function size:0x108 +fn_8013CF68 = .text:0x8013CF68; // type:function size:0x5C +fn_8013CFC4 = .text:0x8013CFC4; // type:function size:0x10 +fn_8013CFD4 = .text:0x8013CFD4; // type:function size:0x2C +fn_8013D000 = .text:0x8013D000; // type:function size:0xC +fn_8013D00C = .text:0x8013D00C; // type:function size:0xD8 +fn_8013D0E4 = .text:0x8013D0E4; // type:function size:0x58 +fn_8013D13C = .text:0x8013D13C; // type:function size:0x80 +fn_8013D1BC = .text:0x8013D1BC; // type:function size:0x80 +fn_8013D23C = .text:0x8013D23C; // type:function size:0x58 +fn_8013D294 = .text:0x8013D294; // type:function size:0x54 +fn_8013D2E8 = .text:0x8013D2E8; // type:function size:0x5C +fn_8013D344 = .text:0x8013D344; // type:function size:0x6C +fn_8013D3B0 = .text:0x8013D3B0; // type:function size:0x28 +fn_8013D3D8 = .text:0x8013D3D8; // type:function size:0x8 +fn_8013D3E0 = .text:0x8013D3E0; // type:function size:0x3C +fn_8013D41C = .text:0x8013D41C; // type:function size:0x58 +fn_8013D474 = .text:0x8013D474; // type:function size:0x60 +fn_8013D4D4 = .text:0x8013D4D4; // type:function size:0x58 +fn_8013D52C = .text:0x8013D52C; // type:function size:0x58 +fn_8013D584 = .text:0x8013D584; // type:function size:0x50 +fn_8013D5D4 = .text:0x8013D5D4; // type:function size:0x58 +fn_8013D62C = .text:0x8013D62C; // type:function size:0x60 +fn_8013D68C = .text:0x8013D68C; // type:function size:0x58 +fn_8013D6E4 = .text:0x8013D6E4; // type:function size:0x58 +fn_8013D73C = .text:0x8013D73C; // type:function size:0x50 +fn_8013D78C = .text:0x8013D78C; // type:function size:0x58 +fn_8013D7E4 = .text:0x8013D7E4; // type:function size:0x60 +fn_8013D844 = .text:0x8013D844; // type:function size:0x58 +fn_8013D89C = .text:0x8013D89C; // type:function size:0x58 +fn_8013D8F4 = .text:0x8013D8F4; // type:function size:0x50 +fn_8013D944 = .text:0x8013D944; // type:function size:0x30 +fn_8013D974 = .text:0x8013D974; // type:function size:0x30 +fn_8013D9A4 = .text:0x8013D9A4; // type:function size:0x40 +fn_8013D9E4 = .text:0x8013D9E4; // type:function size:0x44 +fn_8013DA28 = .text:0x8013DA28; // type:function size:0x3C +fn_8013DA64 = .text:0x8013DA64; // type:function size:0x70 +fn_8013DAD4 = .text:0x8013DAD4; // type:function size:0x44 +fn_8013DB18 = .text:0x8013DB18; // type:function size:0x3C +fn_8013DB54 = .text:0x8013DB54; // type:function size:0x70 +fn_8013DBC4 = .text:0x8013DBC4; // type:function size:0x44 +fn_8013DC08 = .text:0x8013DC08; // type:function size:0x3C +fn_8013DC44 = .text:0x8013DC44; // type:function size:0x70 +fn_8013DCB4 = .text:0x8013DCB4; // type:function size:0xBC +fn_8013DD70 = .text:0x8013DD70; // type:function size:0xBC +fn_8013DE2C = .text:0x8013DE2C; // type:function size:0xB0 +fn_8013DEDC = .text:0x8013DEDC; // type:function size:0x8 +fn_8013DEE4 = .text:0x8013DEE4; // type:function size:0x4 +fn_8013DEE8 = .text:0x8013DEE8; // type:function size:0x40 +fn_8013DF28 = .text:0x8013DF28; // type:function size:0xAC +fn_8013DFD4 = .text:0x8013DFD4; // type:function size:0x18C +fn_8013E160 = .text:0x8013E160; // type:function size:0x4 +fn_8013E164 = .text:0x8013E164; // type:function size:0x90 +fn_8013E1F4 = .text:0x8013E1F4; // type:function size:0x4 +fn_8013E1F8 = .text:0x8013E1F8; // type:function size:0x40 +fn_8013E238 = .text:0x8013E238; // type:function size:0x8C +fn_8013E2C4 = .text:0x8013E2C4; // type:function size:0x8 +fn_8013E2CC = .text:0x8013E2CC; // type:function size:0x2C +fn_8013E2F8 = .text:0x8013E2F8; // type:function size:0x58 +fn_8013E350 = .text:0x8013E350; // type:function size:0x28 +fn_8013E378 = .text:0x8013E378; // type:function size:0x68 +fn_8013E3E0 = .text:0x8013E3E0; // type:function size:0x24 +fn_8013E404 = .text:0x8013E404; // type:function size:0x20 +fn_8013E424 = .text:0x8013E424; // type:function size:0x4 +fn_8013E428 = .text:0x8013E428; // type:function size:0x3C +fn_8013E464 = .text:0x8013E464; // type:function size:0x294 +fn_8013E6F8 = .text:0x8013E6F8; // type:function size:0xB8 +fn_8013E7B0 = .text:0x8013E7B0; // type:function size:0x2FC +fn_8013EAAC = .text:0x8013EAAC; // type:function size:0xA8 +fn_8013EB54 = .text:0x8013EB54; // type:function size:0x290 +fn_8013EDE4 = .text:0x8013EDE4; // type:function size:0xFC +fn_8013EEE0 = .text:0x8013EEE0; // type:function size:0x58 +fn_8013EF38 = .text:0x8013EF38; // type:function size:0x14 +fn_8013EF4C = .text:0x8013EF4C; // type:function size:0x8 +fn_8013EF54 = .text:0x8013EF54; // type:function size:0x4 +fn_8013EF58 = .text:0x8013EF58; // type:function size:0x40 +fn_8013EF98 = .text:0x8013EF98; // type:function size:0x80 +fn_8013F018 = .text:0x8013F018; // type:function size:0x228 +fn_8013F240 = .text:0x8013F240; // type:function size:0x4D4 +fn_8013F714 = .text:0x8013F714; // type:function size:0x100 +fn_8013F814 = .text:0x8013F814; // type:function size:0x58 +fn_8013F86C = .text:0x8013F86C; // type:function size:0x8 +fn_8013F874 = .text:0x8013F874; // type:function size:0x4 +fn_8013F878 = .text:0x8013F878; // type:function size:0x40 +fn_8013F8B8 = .text:0x8013F8B8; // type:function size:0x80 +fn_8013F938 = .text:0x8013F938; // type:function size:0x1DC +fn_8013FB14 = .text:0x8013FB14; // type:function size:0x4C +fn_8013FB60 = .text:0x8013FB60; // type:function size:0x118 +fn_8013FC78 = .text:0x8013FC78; // type:function size:0x58 +fn_8013FCD0 = .text:0x8013FCD0; // type:function size:0x4 +fn_8013FCD4 = .text:0x8013FCD4; // type:function size:0x40 +fn_8013FD14 = .text:0x8013FD14; // type:function size:0x80 +fn_8013FD94 = .text:0x8013FD94; // type:function size:0x4C +fn_8013FDE0 = .text:0x8013FDE0; // type:function size:0x3C +fn_8013FE1C = .text:0x8013FE1C; // type:function size:0x94 +fn_8013FEB0 = .text:0x8013FEB0; // type:function size:0xD4 +fn_8013FF84 = .text:0x8013FF84; // type:function size:0x128 +fn_801400AC = .text:0x801400AC; // type:function size:0x2C +fn_801400D8 = .text:0x801400D8; // type:function size:0x30 +fn_80140108 = .text:0x80140108; // type:function size:0xAC +fn_801401B4 = .text:0x801401B4; // type:function size:0x58 +fn_8014020C = .text:0x8014020C; // type:function size:0x50 +fn_8014025C = .text:0x8014025C; // type:function size:0x8 +fn_80140264 = .text:0x80140264; // type:function size:0x68 +fn_801402CC = .text:0x801402CC; // type:function size:0x2C +fn_801402F8 = .text:0x801402F8; // type:function size:0x3B8 +fn_801406B0 = .text:0x801406B0; // type:function size:0x6C +fn_8014071C = .text:0x8014071C; // type:function size:0x2C +fn_80140748 = .text:0x80140748; // type:function size:0x3B8 +fn_80140B00 = .text:0x80140B00; // type:function size:0x6C +fn_80140B6C = .text:0x80140B6C; // type:function size:0x2C +fn_80140B98 = .text:0x80140B98; // type:function size:0x3B8 +fn_80140F50 = .text:0x80140F50; // type:function size:0x6C +fn_80140FBC = .text:0x80140FBC; // type:function size:0x2C +fn_80140FE8 = .text:0x80140FE8; // type:function size:0x190 +fn_80141178 = .text:0x80141178; // type:function size:0x5C +fn_801411D4 = .text:0x801411D4; // type:function size:0x10 +fn_801411E4 = .text:0x801411E4; // type:function size:0x54 +fn_80141238 = .text:0x80141238; // type:function size:0x28 +fn_80141260 = .text:0x80141260; // type:function size:0x68 +fn_801412C8 = .text:0x801412C8; // type:function size:0x5C +fn_80141324 = .text:0x80141324; // type:function size:0x38 +fn_8014135C = .text:0x8014135C; // type:function size:0x114 +fn_80141470 = .text:0x80141470; // type:function size:0x60 +fn_801414D0 = .text:0x801414D0; // type:function size:0x5C +fn_8014152C = .text:0x8014152C; // type:function size:0x54 +fn_80141580 = .text:0x80141580; // type:function size:0x15C +fn_801416DC = .text:0x801416DC; // type:function size:0x44 +fn_80141720 = .text:0x80141720; // type:function size:0x8 +fn_80141728 = .text:0x80141728; // type:function size:0x108 +fn_80141830 = .text:0x80141830; // type:function size:0x5C +fn_8014188C = .text:0x8014188C; // type:function size:0x10 +fn_8014189C = .text:0x8014189C; // type:function size:0x15C +fn_801419F8 = .text:0x801419F8; // type:function size:0x44 +fn_80141A3C = .text:0x80141A3C; // type:function size:0x8 +fn_80141A44 = .text:0x80141A44; // type:function size:0x108 +fn_80141B4C = .text:0x80141B4C; // type:function size:0x5C +fn_80141BA8 = .text:0x80141BA8; // type:function size:0x10 +fn_80141BB8 = .text:0x80141BB8; // type:function size:0x14 +fn_80141BCC = .text:0x80141BCC; // type:function size:0x15C +fn_80141D28 = .text:0x80141D28; // type:function size:0x44 +fn_80141D6C = .text:0x80141D6C; // type:function size:0x8 +fn_80141D74 = .text:0x80141D74; // type:function size:0x108 +fn_80141E7C = .text:0x80141E7C; // type:function size:0x5C +fn_80141ED8 = .text:0x80141ED8; // type:function size:0x10 +fn_80141EE8 = .text:0x80141EE8; // type:function size:0x13C +fn_80142024 = .text:0x80142024; // type:function size:0x374 +fn_80142398 = .text:0x80142398; // type:function size:0x30 +fn_801423C8 = .text:0x801423C8; // type:function size:0x98 +fn_80142460 = .text:0x80142460; // type:function size:0x70 +fn_801424D0 = .text:0x801424D0; // type:function size:0x30 +fn_80142500 = .text:0x80142500; // type:function size:0x98 +fn_80142598 = .text:0x80142598; // type:function size:0x70 +fn_80142608 = .text:0x80142608; // type:function size:0x30 +fn_80142638 = .text:0x80142638; // type:function size:0x98 +fn_801426D0 = .text:0x801426D0; // type:function size:0x70 +fn_80142740 = .text:0x80142740; // type:function size:0x30 +fn_80142770 = .text:0x80142770; // type:function size:0x98 +fn_80142808 = .text:0x80142808; // type:function size:0x70 +fn_80142878 = .text:0x80142878; // type:function size:0x30 +fn_801428A8 = .text:0x801428A8; // type:function size:0x98 +fn_80142940 = .text:0x80142940; // type:function size:0x70 +fn_801429B0 = .text:0x801429B0; // type:function size:0x30 +fn_801429E0 = .text:0x801429E0; // type:function size:0x98 +fn_80142A78 = .text:0x80142A78; // type:function size:0x70 +__dt__9PerformerFv = .text:0x80142AE8; // type:function size:0xC0 +fn_80142BA8 = .text:0x80142BA8; // type:function size:0x5C +fn_80142C04 = .text:0x80142C04; // type:function size:0x6C +fn_80142C70 = .text:0x80142C70; // type:function size:0x58 +fn_80142CC8 = .text:0x80142CC8; // type:function size:0x8 +fn_80142CD0 = .text:0x80142CD0; // type:function size:0x8 +fn_80142CD8 = .text:0x80142CD8; // type:function size:0x8 +fn_80142CE0 = .text:0x80142CE0; // type:function size:0x8 +fn_80142CE8 = .text:0x80142CE8; // type:function size:0x8 +fn_80142CF0 = .text:0x80142CF0; // type:function size:0x44 +fn_80142D34 = .text:0x80142D34; // type:function size:0x8 +GetFractionComplete__9PerformerCFv = .text:0x80142D3C; // type:function size:0x48 +GetPercentComplete__9PerformerCFv = .text:0x80142D84; // type:function size:0x70 +fn_80142DF4 = .text:0x80142DF4; // type:function size:0x3C +fn_80142E30 = .text:0x80142E30; // type:function size:0x90 +fn_80142EC0 = .text:0x80142EC0; // type:function size:0xC8 +fn_80142F88 = .text:0x80142F88; // type:function size:0x14 +fn_80142F9C = .text:0x80142F9C; // type:function size:0x8 +fn_80142FA4 = .text:0x80142FA4; // type:function size:0xC +fn_80142FB0 = .text:0x80142FB0; // type:function size:0x8 +fn_80142FB8 = .text:0x80142FB8; // type:function size:0x8 +fn_80142FC0 = .text:0x80142FC0; // type:function size:0x8 +fn_80142FC8 = .text:0x80142FC8; // type:function size:0x8 +fn_80142FD0 = .text:0x80142FD0; // type:function size:0x70 +fn_80143040 = .text:0x80143040; // type:function size:0x30 +fn_80143070 = .text:0x80143070; // type:function size:0x8C +fn_801430FC = .text:0x801430FC; // type:function size:0x70 +fn_8014316C = .text:0x8014316C; // type:function size:0x254 +fn_801433C0 = .text:0x801433C0; // type:function size:0x64 +fn_80143424 = .text:0x80143424; // type:function size:0x44 +fn_80143468 = .text:0x80143468; // type:function size:0x4C +fn_801434B4 = .text:0x801434B4; // type:function size:0x3C +fn_801434F0 = .text:0x801434F0; // type:function size:0x70 +fn_80143560 = .text:0x80143560; // type:function size:0x58 +fn_801435B8 = .text:0x801435B8; // type:function size:0x8C +fn_80143644 = .text:0x80143644; // type:function size:0x64 +WinGame__9PerformerFi = .text:0x801436A8; // type:function size:0x90 +fn_80143738 = .text:0x80143738; // type:function size:0x5C +fn_80143794 = .text:0x80143794; // type:function size:0x90 +fn_80143824 = .text:0x80143824; // type:function size:0x10 +fn_80143834 = .text:0x80143834; // type:function size:0x8 +fn_8014383C = .text:0x8014383C; // type:function size:0x34 +fn_80143870 = .text:0x80143870; // type:function size:0x58 +fn_801438C8 = .text:0x801438C8; // type:function size:0x30 +fn_801438F8 = .text:0x801438F8; // type:function size:0x40 +fn_80143938 = .text:0x80143938; // type:function size:0x8 +fn_80143940 = .text:0x80143940; // type:function size:0x14 +Handle__9PerformerFP9DataArrayb = .text:0x80143954; // type:function size:0xAB8 +fn_8014440C = .text:0x8014440C; // type:function size:0x8 +fn_80144414 = .text:0x80144414; // type:function size:0x8 +fn_8014441C = .text:0x8014441C; // type:function size:0x8 +fn_80144424 = .text:0x80144424; // type:function size:0x14 +fn_80144438 = .text:0x80144438; // type:function size:0x14 +fn_8014444C = .text:0x8014444C; // type:function size:0x8 +fn_80144454 = .text:0x80144454; // type:function size:0x28 +fn_8014447C = .text:0x8014447C; // type:function size:0x14 +fn_80144490 = .text:0x80144490; // type:function size:0x14 +fn_801444A4 = .text:0x801444A4; // type:function size:0x268 +fn_8014470C = .text:0x8014470C; // type:function size:0x8C +fn_80144798 = .text:0x80144798; // type:function size:0x204 +fn_8014499C = .text:0x8014499C; // type:function size:0x4 +fn_801449A0 = .text:0x801449A0; // type:function size:0xC8 +fn_80144A68 = .text:0x80144A68; // type:function size:0x5C +fn_80144AC4 = .text:0x80144AC4; // type:function size:0xD4 +fn_80144B98 = .text:0x80144B98; // type:function size:0x84 +fn_80144C1C = .text:0x80144C1C; // type:function size:0x1E8 +fn_80144E04 = .text:0x80144E04; // type:function size:0x1F0 +fn_80144FF4 = .text:0x80144FF4; // type:function size:0xE8 +fn_801450DC = .text:0x801450DC; // type:function size:0x128 +fn_80145204 = .text:0x80145204; // type:function size:0x64 +fn_80145268 = .text:0x80145268; // type:function size:0x6C +fn_801452D4 = .text:0x801452D4; // type:function size:0xA4 +fn_80145378 = .text:0x80145378; // type:function size:0x34 +fn_801453AC = .text:0x801453AC; // type:function size:0xD0 +fn_8014547C = .text:0x8014547C; // type:function size:0xB8 +fn_80145534 = .text:0x80145534; // type:function size:0x8 +fn_8014553C = .text:0x8014553C; // type:function size:0x58 +fn_80145594 = .text:0x80145594; // type:function size:0x3C +fn_801455D0 = .text:0x801455D0; // type:function size:0xC +fn_801455DC = .text:0x801455DC; // type:function size:0x1C +fn_801455F8 = .text:0x801455F8; // type:function size:0x10 +fn_80145608 = .text:0x80145608; // type:function size:0x1F8 +fn_80145800 = .text:0x80145800; // type:function size:0xE0 +fn_801458E0 = .text:0x801458E0; // type:function size:0x514 +MakeString<6Symbol>__FPCc6Symbol_PCc = .text:0x80145DF4; // type:function size:0x50 +fn_80145E44 = .text:0x80145E44; // type:function size:0x194 +fn_80145FD8 = .text:0x80145FD8; // type:function size:0x60 +fn_80146038 = .text:0x80146038; // type:function size:0x20 +fn_80146058 = .text:0x80146058; // type:function size:0x48 +fn_801460A0 = .text:0x801460A0; // type:function size:0x274 +fn_80146314 = .text:0x80146314; // type:function size:0x3C +fn_80146350 = .text:0x80146350; // type:function size:0x38 +fn_80146388 = .text:0x80146388; // type:function size:0x8 +fn_80146390 = .text:0x80146390; // type:function size:0xCC +fn_8014645C = .text:0x8014645C; // type:function size:0x80 +fn_801464DC = .text:0x801464DC; // type:function size:0x40 +fn_8014651C = .text:0x8014651C; // type:function size:0x140 +fn_8014665C = .text:0x8014665C; // type:function size:0x8 +fn_80146664 = .text:0x80146664; // type:function size:0x184 +fn_801467E8 = .text:0x801467E8; // type:function size:0xC +fn_801467F4 = .text:0x801467F4; // type:function size:0xC +fn_80146800 = .text:0x80146800; // type:function size:0x24 +fn_80146824 = .text:0x80146824; // type:function size:0x58 +fn_8014687C = .text:0x8014687C; // type:function size:0x68 +fn_801468E4 = .text:0x801468E4; // type:function size:0x10 +fn_801468F4 = .text:0x801468F4; // type:function size:0x10 +fn_80146904 = .text:0x80146904; // type:function size:0x90 +fn_80146994 = .text:0x80146994; // type:function size:0x8 +fn_8014699C = .text:0x8014699C; // type:function size:0x40 +fn_801469DC = .text:0x801469DC; // type:function size:0x40 +fn_80146A1C = .text:0x80146A1C; // type:function size:0x14 +fn_80146A30 = .text:0x80146A30; // type:function size:0x68 +fn_80146A98 = .text:0x80146A98; // type:function size:0x8 +fn_80146AA0 = .text:0x80146AA0; // type:function size:0x90 +fn_80146B30 = .text:0x80146B30; // type:function size:0x8 +fn_80146B38 = .text:0x80146B38; // type:function size:0x224 +fn_80146D5C = .text:0x80146D5C; // type:function size:0xC +fn_80146D68 = .text:0x80146D68; // type:function size:0x7C +fn_80146DE4 = .text:0x80146DE4; // type:function size:0x10 +fn_80146DF4 = .text:0x80146DF4; // type:function size:0x94 +fn_80146E88 = .text:0x80146E88; // type:function size:0x19C +fn_80147024 = .text:0x80147024; // type:function size:0x50 +fn_80147074 = .text:0x80147074; // type:function size:0xA4 +fn_80147118 = .text:0x80147118; // type:function size:0x74 +fn_8014718C = .text:0x8014718C; // type:function size:0x8 +fn_80147194 = .text:0x80147194; // type:function size:0xEC +fn_80147280 = .text:0x80147280; // type:function size:0x2C +fn_801472AC = .text:0x801472AC; // type:function size:0x50 +fn_801472FC = .text:0x801472FC; // type:function size:0x104 +fn_80147400 = .text:0x80147400; // type:function size:0x204 +fn_80147604 = .text:0x80147604; // type:function size:0x8 +fn_8014760C = .text:0x8014760C; // type:function size:0x58 +fn_80147664 = .text:0x80147664; // type:function size:0x8 +fn_8014766C = .text:0x8014766C; // type:function size:0x60 +fn_801476CC = .text:0x801476CC; // type:function size:0xF4 +fn_801477C0 = .text:0x801477C0; // type:function size:0x23C +fn_801479FC = .text:0x801479FC; // type:function size:0x8 +fn_80147A04 = .text:0x80147A04; // type:function size:0x8 +fn_80147A0C = .text:0x80147A0C; // type:function size:0x8 +fn_80147A14 = .text:0x80147A14; // type:function size:0x8 +fn_80147A1C = .text:0x80147A1C; // type:function size:0x8 +fn_80147A24 = .text:0x80147A24; // type:function size:0x8 +fn_80147A2C = .text:0x80147A2C; // type:function size:0x8 +fn_80147A34 = .text:0x80147A34; // type:function size:0x8 +fn_80147A3C = .text:0x80147A3C; // type:function size:0x8 +fn_80147A44 = .text:0x80147A44; // type:function size:0x44 +fn_80147A88 = .text:0x80147A88; // type:function size:0x4C +fn_80147AD4 = .text:0x80147AD4; // type:function size:0x80 +fn_80147B54 = .text:0x80147B54; // type:function size:0x6C +fn_80147BC0 = .text:0x80147BC0; // type:function size:0xEC +fn_80147CAC = .text:0x80147CAC; // type:function size:0x84 +fn_80147D30 = .text:0x80147D30; // type:function size:0xA0 +fn_80147DD0 = .text:0x80147DD0; // type:function size:0x4C +fn_80147E1C = .text:0x80147E1C; // type:function size:0x4 +fn_80147E20 = .text:0x80147E20; // type:function size:0x90 +fn_80147EB0 = .text:0x80147EB0; // type:function size:0x4 +fn_80147EB4 = .text:0x80147EB4; // type:function size:0x40 +fn_80147EF4 = .text:0x80147EF4; // type:function size:0x8C +fn_80147F80 = .text:0x80147F80; // type:function size:0x28 +fn_80147FA8 = .text:0x80147FA8; // type:function size:0x8 +fn_80147FB0 = .text:0x80147FB0; // type:function size:0xC8 +fn_80148078 = .text:0x80148078; // type:function size:0x124 +fn_8014819C = .text:0x8014819C; // type:function size:0x8 +fn_801481A4 = .text:0x801481A4; // type:function size:0x110 +fn_801482B4 = .text:0x801482B4; // type:function size:0x124 +fn_801483D8 = .text:0x801483D8; // type:function size:0x5C +Handle__6PlayerFP9DataArrayb = .text:0x80148434; // type:function size:0xE84 +fn_801492B8 = .text:0x801492B8; // type:function size:0x68 +fn_80149320 = .text:0x80149320; // type:function size:0x2C +fn_8014934C = .text:0x8014934C; // type:function size:0x18C +fn_801494D8 = .text:0x801494D8; // type:function size:0x5C +fn_80149534 = .text:0x80149534; // type:function size:0x54 +fn_80149588 = .text:0x80149588; // type:function size:0x28 +fn_801495B0 = .text:0x801495B0; // type:function size:0x68 +fn_80149618 = .text:0x80149618; // type:function size:0x114 +fn_8014972C = .text:0x8014972C; // type:function size:0x5C +fn_80149788 = .text:0x80149788; // type:function size:0x5C +fn_801497E4 = .text:0x801497E4; // type:function size:0x54 +fn_80149838 = .text:0x80149838; // type:function size:0x14 +fn_8014984C = .text:0x8014984C; // type:function size:0x14 +fn_80149860 = .text:0x80149860; // type:function size:0x14 +fn_80149874 = .text:0x80149874; // type:function size:0x14 +fn_80149888 = .text:0x80149888; // type:function size:0x14 +fn_8014989C = .text:0x8014989C; // type:function size:0x14 +fn_801498B0 = .text:0x801498B0; // type:function size:0x14 +fn_801498C4 = .text:0x801498C4; // type:function size:0x8 +fn_801498CC = .text:0x801498CC; // type:function size:0x8 +fn_801498D4 = .text:0x801498D4; // type:function size:0x64 +fn_80149938 = .text:0x80149938; // type:function size:0x8 +fn_80149940 = .text:0x80149940; // type:function size:0x8 +fn_80149948 = .text:0x80149948; // type:function size:0x8 +fn_80149950 = .text:0x80149950; // type:function size:0x8 +fn_80149958 = .text:0x80149958; // type:function size:0x8 +fn_80149960 = .text:0x80149960; // type:function size:0x8 +fn_80149968 = .text:0x80149968; // type:function size:0x8 +fn_80149970 = .text:0x80149970; // type:function size:0x8 +fn_80149978 = .text:0x80149978; // type:function size:0xEC +fn_80149A64 = .text:0x80149A64; // type:function size:0xE4 +fn_80149B48 = .text:0x80149B48; // type:function size:0x174 +fn_80149CBC = .text:0x80149CBC; // type:function size:0x8C +fn_80149D48 = .text:0x80149D48; // type:function size:0x4C +fn_80149D94 = .text:0x80149D94; // type:function size:0xEC +fn_80149E80 = .text:0x80149E80; // type:function size:0x34 +fn_80149EB4 = .text:0x80149EB4; // type:function size:0x5C +fn_80149F10 = .text:0x80149F10; // type:function size:0x60 +fn_80149F70 = .text:0x80149F70; // type:function size:0x34 +fn_80149FA4 = .text:0x80149FA4; // type:function size:0x58 +fn_80149FFC = .text:0x80149FFC; // type:function size:0x34 +fn_8014A030 = .text:0x8014A030; // type:function size:0x34 +fn_8014A064 = .text:0x8014A064; // type:function size:0x688 +fn_8014A6EC = .text:0x8014A6EC; // type:function size:0x8 +fn_8014A6F4 = .text:0x8014A6F4; // type:function size:0x8 +fn_8014A6FC = .text:0x8014A6FC; // type:function size:0x80 +fn_8014A77C = .text:0x8014A77C; // type:function size:0x8 +fn_8014A784 = .text:0x8014A784; // type:function size:0x8 +fn_8014A78C = .text:0x8014A78C; // type:function size:0x68 +fn_8014A7F4 = .text:0x8014A7F4; // type:function size:0x8 +fn_8014A7FC = .text:0x8014A7FC; // type:function size:0x1C +fn_8014A818 = .text:0x8014A818; // type:function size:0x1C +PracticeMetronome__13PracticePanelF6Symbol = .text:0x8014A834; // type:function size:0x134 +fn_8014A968 = .text:0x8014A968; // type:function size:0x74 +fn_8014A9DC = .text:0x8014A9DC; // type:function size:0x64 +fn_8014AA40 = .text:0x8014AA40; // type:function size:0x38 +fn_8014AA78 = .text:0x8014AA78; // type:function size:0x18 +fn_8014AA90 = .text:0x8014AA90; // type:function size:0x14C +fn_8014ABDC = .text:0x8014ABDC; // type:function size:0x8 +fn_8014ABE4 = .text:0x8014ABE4; // type:function size:0x58 +fn_8014AC3C = .text:0x8014AC3C; // type:function size:0x8 +fn_8014AC44 = .text:0x8014AC44; // type:function size:0x58 +fn_8014AC9C = .text:0x8014AC9C; // type:function size:0x78 +fn_8014AD14 = .text:0x8014AD14; // type:function size:0x5C +fn_8014AD70 = .text:0x8014AD70; // type:function size:0x18 +fn_8014AD88 = .text:0x8014AD88; // type:function size:0x8 +fn_8014AD90 = .text:0x8014AD90; // type:function size:0xB8 +fn_8014AE48 = .text:0x8014AE48; // type:function size:0x4C +fn_8014AE94 = .text:0x8014AE94; // type:function size:0x64 +fn_8014AEF8 = .text:0x8014AEF8; // type:function size:0xC +fn_8014AF04 = .text:0x8014AF04; // type:function size:0xC +fn_8014AF10 = .text:0x8014AF10; // type:function size:0x48 +fn_8014AF58 = .text:0x8014AF58; // type:function size:0x12C +fn_8014B084 = .text:0x8014B084; // type:function size:0x8 +fn_8014B08C = .text:0x8014B08C; // type:function size:0x50 +Handle__13PracticePanelFP9DataArrayb = .text:0x8014B0DC; // type:function size:0x800 +fn_8014B8DC = .text:0x8014B8DC; // type:function size:0x134 +fn_8014BA10 = .text:0x8014BA10; // type:function size:0x4 +fn_8014BA14 = .text:0x8014BA14; // type:function size:0x14 +fn_8014BA28 = .text:0x8014BA28; // type:function size:0x14 +fn_8014BA3C = .text:0x8014BA3C; // type:function size:0x14 +fn_8014BA50 = .text:0x8014BA50; // type:function size:0x14 +fn_8014BA64 = .text:0x8014BA64; // type:function size:0x14 +fn_8014BA78 = .text:0x8014BA78; // type:function size:0x14 +fn_8014BA8C = .text:0x8014BA8C; // type:function size:0x14 +__ct__23PracticeSectionProviderFv = .text:0x8014BAA0; // type:function size:0x9C +fn_8014BB3C = .text:0x8014BB3C; // type:function size:0x4 +fn_8014BB40 = .text:0x8014BB40; // type:function size:0x60 +fn_8014BBA0 = .text:0x8014BBA0; // type:function size:0x30 +fn_8014BBD0 = .text:0x8014BBD0; // type:function size:0x30 +fn_8014BC00 = .text:0x8014BC00; // type:function size:0x40 +__ct__14UIListProviderFv = .text:0x8014BC40; // type:function size:0x10 +InitData__23PracticeSectionProviderFP6RndDir = .text:0x8014BC50; // type:function size:0x1CC +fn_8014BE1C = .text:0x8014BE1C; // type:function size:0x74 +fn_8014BE90 = .text:0x8014BE90; // type:function size:0xC0 +fn_8014BF50 = .text:0x8014BF50; // type:function size:0x4 +fn_8014BF54 = .text:0x8014BF54; // type:function size:0x3C +fn_8014BF90 = .text:0x8014BF90; // type:function size:0x40 +fn_8014BFD0 = .text:0x8014BFD0; // type:function size:0x8C +fn_8014C05C = .text:0x8014C05C; // type:function size:0x8 +fn_8014C064 = .text:0x8014C064; // type:function size:0x2C +fn_8014C090 = .text:0x8014C090; // type:function size:0x58 +fn_8014C0E8 = .text:0x8014C0E8; // type:function size:0x28 +fn_8014C110 = .text:0x8014C110; // type:function size:0x68 +fn_8014C178 = .text:0x8014C178; // type:function size:0x4C +fn_8014C1C4 = .text:0x8014C1C4; // type:function size:0x58 +fn_8014C21C = .text:0x8014C21C; // type:function size:0x70 +fn_8014C28C = .text:0x8014C28C; // type:function size:0x28 +fn_8014C2B4 = .text:0x8014C2B4; // type:function size:0x98 +fn_8014C34C = .text:0x8014C34C; // type:function size:0x28 +fn_8014C374 = .text:0x8014C374; // type:function size:0x6C +SectionAfterLast__23PracticeSectionProviderFv = .text:0x8014C3E0; // type:function size:0xA8 +fn_8014C488 = .text:0x8014C488; // type:function size:0x5C +fn_8014C4E4 = .text:0x8014C4E4; // type:function size:0x8 +fn_8014C4EC = .text:0x8014C4EC; // type:function size:0x70 +fn_8014C55C = .text:0x8014C55C; // type:function size:0x70 +Handle__23PracticeSectionProviderFP9DataArrayb = .text:0x8014C5CC; // type:function size:0x234 +fn_8014C800 = .text:0x8014C800; // type:function size:0xCC +fn_8014C8CC = .text:0x8014C8CC; // type:function size:0x5C +fn_8014C928 = .text:0x8014C928; // type:function size:0x5C +fn_8014C984 = .text:0x8014C984; // type:function size:0x60 +fn_8014C9E4 = .text:0x8014C9E4; // type:function size:0x5C +fn_8014CA40 = .text:0x8014CA40; // type:function size:0x10 +fn_8014CA50 = .text:0x8014CA50; // type:function size:0x7C +fn_8014CACC = .text:0x8014CACC; // type:function size:0xC +fn_8014CAD8 = .text:0x8014CAD8; // type:function size:0x8 +fn_8014CAE0 = .text:0x8014CAE0; // type:function size:0x8 +fn_8014CAE8 = .text:0x8014CAE8; // type:function size:0x184 +fn_8014CC6C = .text:0x8014CC6C; // type:function size:0x4 +fn_8014CC70 = .text:0x8014CC70; // type:function size:0x88 +fn_8014CCF8 = .text:0x8014CCF8; // type:function size:0x2C +fn_8014CD24 = .text:0x8014CD24; // type:function size:0x8 +fn_8014CD2C = .text:0x8014CD2C; // type:function size:0x14 +fn_8014CD40 = .text:0x8014CD40; // type:function size:0x10 +fn_8014CD50 = .text:0x8014CD50; // type:function size:0x114 +fn_8014CE64 = .text:0x8014CE64; // type:function size:0x5C +fn_8014CEC0 = .text:0x8014CEC0; // type:function size:0x54 +fn_8014CF14 = .text:0x8014CF14; // type:function size:0x5C +fn_8014CF70 = .text:0x8014CF70; // type:function size:0x8 +fn_8014CF78 = .text:0x8014CF78; // type:function size:0x8 +fn_8014CF80 = .text:0x8014CF80; // type:function size:0x64 +fn_8014CFE4 = .text:0x8014CFE4; // type:function size:0xF0 +fn_8014D0D4 = .text:0x8014D0D4; // type:function size:0x8 +fn_8014D0DC = .text:0x8014D0DC; // type:function size:0x8 +fn_8014D0E4 = .text:0x8014D0E4; // type:function size:0x110 +fn_8014D1F4 = .text:0x8014D1F4; // type:function size:0x7C +fn_8014D270 = .text:0x8014D270; // type:function size:0x10C +fn_8014D37C = .text:0x8014D37C; // type:function size:0x48 +fn_8014D3C4 = .text:0x8014D3C4; // type:function size:0x48 +fn_8014D40C = .text:0x8014D40C; // type:function size:0x30 +fn_8014D43C = .text:0x8014D43C; // type:function size:0x8 +fn_8014D444 = .text:0x8014D444; // type:function size:0x8 +fn_8014D44C = .text:0x8014D44C; // type:function size:0x8 +fn_8014D454 = .text:0x8014D454; // type:function size:0x60 +fn_8014D4B4 = .text:0x8014D4B4; // type:function size:0x58 +fn_8014D50C = .text:0x8014D50C; // type:function size:0x78 +fn_8014D584 = .text:0x8014D584; // type:function size:0x68 +fn_8014D5EC = .text:0x8014D5EC; // type:function size:0x60 +fn_8014D64C = .text:0x8014D64C; // type:function size:0x58 +fn_8014D6A4 = .text:0x8014D6A4; // type:function size:0x78 +fn_8014D71C = .text:0x8014D71C; // type:function size:0x68 +fn_8014D784 = .text:0x8014D784; // type:function size:0x7C +fn_8014D800 = .text:0x8014D800; // type:function size:0x4 +fn_8014D804 = .text:0x8014D804; // type:function size:0x60 +fn_8014D864 = .text:0x8014D864; // type:function size:0x4 +fn_8014D868 = .text:0x8014D868; // type:function size:0x4 +fn_8014D86C = .text:0x8014D86C; // type:function size:0x4 +fn_8014D870 = .text:0x8014D870; // type:function size:0x4 +fn_8014D874 = .text:0x8014D874; // type:function size:0x4 +Handle__19RealGuitarGemPlayerFP9DataArrayb = .text:0x8014D878; // type:function size:0xD0 +fn_8014D948 = .text:0x8014D948; // type:function size:0x14 +fn_8014D95C = .text:0x8014D95C; // type:function size:0x14 +fn_8014D970 = .text:0x8014D970; // type:function size:0x14 +fn_8014D984 = .text:0x8014D984; // type:function size:0x14 +fn_8014D998 = .text:0x8014D998; // type:function size:0x14 +fn_8014D9AC = .text:0x8014D9AC; // type:function size:0x14 +fn_8014D9C0 = .text:0x8014D9C0; // type:function size:0x14 +fn_8014D9D4 = .text:0x8014D9D4; // type:function size:0x8 +fn_8014D9DC = .text:0x8014D9DC; // type:function size:0x8 +fn_8014D9E4 = .text:0x8014D9E4; // type:function size:0x8 +fn_8014D9EC = .text:0x8014D9EC; // type:function size:0x8 +fn_8014D9F4 = .text:0x8014D9F4; // type:function size:0x8 +fn_8014D9FC = .text:0x8014D9FC; // type:function size:0x8 +fn_8014DA04 = .text:0x8014DA04; // type:function size:0x22C +fn_8014DC30 = .text:0x8014DC30; // type:function size:0x4 +fn_8014DC34 = .text:0x8014DC34; // type:function size:0x90 +fn_8014DCC4 = .text:0x8014DCC4; // type:function size:0x4 +fn_8014DCC8 = .text:0x8014DCC8; // type:function size:0x264 +fn_8014DF2C = .text:0x8014DF2C; // type:function size:0x98 +fn_8014DFC4 = .text:0x8014DFC4; // type:function size:0xD0 +fn_8014E094 = .text:0x8014E094; // type:function size:0x78 +__ct__14RGTrainerPanelFv = .text:0x8014E10C; // type:function size:0xD8 +fn_8014E1E4 = .text:0x8014E1E4; // type:function size:0x58 +fn_8014E23C = .text:0x8014E23C; // type:function size:0x80 +fn_8014E2BC = .text:0x8014E2BC; // type:function size:0x80 +fn_8014E33C = .text:0x8014E33C; // type:function size:0x58 +fn_8014E394 = .text:0x8014E394; // type:function size:0x54 +fn_8014E3E8 = .text:0x8014E3E8; // type:function size:0x5C +fn_8014E444 = .text:0x8014E444; // type:function size:0x6C +fn_8014E4B0 = .text:0x8014E4B0; // type:function size:0x28 +fn_8014E4D8 = .text:0x8014E4D8; // type:function size:0x8 +fn_8014E4E0 = .text:0x8014E4E0; // type:function size:0x3C +fn_8014E51C = .text:0x8014E51C; // type:function size:0x8C +fn_8014E5A8 = .text:0x8014E5A8; // type:function size:0x30 +fn_8014E5D8 = .text:0x8014E5D8; // type:function size:0x30 +fn_8014E608 = .text:0x8014E608; // type:function size:0x40 +__ct__15ProTrainerPanelFv = .text:0x8014E648; // type:function size:0x90 +fn_8014E6D8 = .text:0x8014E6D8; // type:function size:0xA4 +fn_8014E77C = .text:0x8014E77C; // type:function size:0xAC +fn_8014E828 = .text:0x8014E828; // type:function size:0x68 +fn_8014E890 = .text:0x8014E890; // type:function size:0x2C +fn_8014E8BC = .text:0x8014E8BC; // type:function size:0x70 +fn_8014E92C = .text:0x8014E92C; // type:function size:0x390 +fn_8014ECBC = .text:0x8014ECBC; // type:function size:0x48 +fn_8014ED04 = .text:0x8014ED04; // type:function size:0x110 +fn_8014EE14 = .text:0x8014EE14; // type:function size:0x180 +fn_8014EF94 = .text:0x8014EF94; // type:function size:0x16C +fn_8014F100 = .text:0x8014F100; // type:function size:0x9C +fn_8014F19C = .text:0x8014F19C; // type:function size:0x58 +fn_8014F1F4 = .text:0x8014F1F4; // type:function size:0x7C +fn_8014F270 = .text:0x8014F270; // type:function size:0xC0 +fn_8014F330 = .text:0x8014F330; // type:function size:0x34 +fn_8014F364 = .text:0x8014F364; // type:function size:0x10 +fn_8014F374 = .text:0x8014F374; // type:function size:0x38C +fn_8014F700 = .text:0x8014F700; // type:function size:0x410 +fn_8014FB10 = .text:0x8014FB10; // type:function size:0x4 +fn_8014FB14 = .text:0x8014FB14; // type:function size:0x88 +fn_8014FB9C = .text:0x8014FB9C; // type:function size:0x2C +fn_8014FBC8 = .text:0x8014FBC8; // type:function size:0x38 +fn_8014FC00 = .text:0x8014FC00; // type:function size:0x4 +fn_8014FC04 = .text:0x8014FC04; // type:function size:0x3C +fn_8014FC40 = .text:0x8014FC40; // type:function size:0x40 +fn_8014FC80 = .text:0x8014FC80; // type:function size:0x8C +fn_8014FD0C = .text:0x8014FD0C; // type:function size:0x8 +fn_8014FD14 = .text:0x8014FD14; // type:function size:0x2C +fn_8014FD40 = .text:0x8014FD40; // type:function size:0x58 +fn_8014FD98 = .text:0x8014FD98; // type:function size:0x28 +fn_8014FDC0 = .text:0x8014FDC0; // type:function size:0x68 +fn_8014FE28 = .text:0x8014FE28; // type:function size:0x378 +fn_801501A0 = .text:0x801501A0; // type:function size:0x138 +fn_801502D8 = .text:0x801502D8; // type:function size:0x1CC +fn_801504A4 = .text:0x801504A4; // type:function size:0xF0 +fn_80150594 = .text:0x80150594; // type:function size:0x8 +fn_8015059C = .text:0x8015059C; // type:function size:0x8 +fn_801505A4 = .text:0x801505A4; // type:function size:0x8 +fn_801505AC = .text:0x801505AC; // type:function size:0x108 +fn_801506B4 = .text:0x801506B4; // type:function size:0xE4 +fn_80150798 = .text:0x80150798; // type:function size:0x7C +fn_80150814 = .text:0x80150814; // type:function size:0x64 +fn_80150878 = .text:0x80150878; // type:function size:0x8C +fn_80150904 = .text:0x80150904; // type:function size:0x8 +fn_8015090C = .text:0x8015090C; // type:function size:0x54 +fn_80150960 = .text:0x80150960; // type:function size:0x34 +fn_80150994 = .text:0x80150994; // type:function size:0x80 +Handle__15ProTrainerPanelFP9DataArrayb = .text:0x80150A14; // type:function size:0xD0 +Handle__14RGTrainerPanelFP9DataArrayb = .text:0x80150AE4; // type:function size:0x204 +fn_80150CE8 = .text:0x80150CE8; // type:function size:0x68 +fn_80150D50 = .text:0x80150D50; // type:function size:0x114 +fn_80150E64 = .text:0x80150E64; // type:function size:0x5C +fn_80150EC0 = .text:0x80150EC0; // type:function size:0x5C +fn_80150F1C = .text:0x80150F1C; // type:function size:0x54 +fn_80150F70 = .text:0x80150F70; // type:function size:0x5C +fn_80150FCC = .text:0x80150FCC; // type:function size:0x5C +fn_80151028 = .text:0x80151028; // type:function size:0x134 +fn_8015115C = .text:0x8015115C; // type:function size:0x4 +fn_80151160 = .text:0x80151160; // type:function size:0x180 +fn_801512E0 = .text:0x801512E0; // type:function size:0x1C +fn_801512FC = .text:0x801512FC; // type:function size:0x14 +fn_80151310 = .text:0x80151310; // type:function size:0x14 +fn_80151324 = .text:0x80151324; // type:function size:0x14 +fn_80151338 = .text:0x80151338; // type:function size:0x14 +fn_8015134C = .text:0x8015134C; // type:function size:0x14 +fn_80151360 = .text:0x80151360; // type:function size:0x14 +fn_80151374 = .text:0x80151374; // type:function size:0x14 +fn_80151388 = .text:0x80151388; // type:function size:0x14 +fn_8015139C = .text:0x8015139C; // type:function size:0x14 +fn_801513B0 = .text:0x801513B0; // type:function size:0x14 +fn_801513C4 = .text:0x801513C4; // type:function size:0x14 +fn_801513D8 = .text:0x801513D8; // type:function size:0x14 +fn_801513EC = .text:0x801513EC; // type:function size:0x14 +fn_80151400 = .text:0x80151400; // type:function size:0x14 +fn_80151414 = .text:0x80151414; // type:function size:0x14 +fn_80151428 = .text:0x80151428; // type:function size:0x14 +fn_8015143C = .text:0x8015143C; // type:function size:0x3C +fn_80151478 = .text:0x80151478; // type:function size:0x58 +fn_801514D0 = .text:0x801514D0; // type:function size:0x60 +fn_80151530 = .text:0x80151530; // type:function size:0x58 +fn_80151588 = .text:0x80151588; // type:function size:0x58 +fn_801515E0 = .text:0x801515E0; // type:function size:0x50 +fn_80151630 = .text:0x80151630; // type:function size:0x44 +fn_80151674 = .text:0x80151674; // type:function size:0x3C +fn_801516B0 = .text:0x801516B0; // type:function size:0x70 +fn_80151720 = .text:0x80151720; // type:function size:0x5C +fn_8015177C = .text:0x8015177C; // type:function size:0x10 +fn_8015178C = .text:0x8015178C; // type:function size:0x4 +fn_80151790 = .text:0x80151790; // type:function size:0x44 +fn_801517D4 = .text:0x801517D4; // type:function size:0x100 +fn_801518D4 = .text:0x801518D4; // type:function size:0x58 +fn_8015192C = .text:0x8015192C; // type:function size:0x8 +fn_80151934 = .text:0x80151934; // type:function size:0x4 +fn_80151938 = .text:0x80151938; // type:function size:0x40 +fn_80151978 = .text:0x80151978; // type:function size:0x80 +fn_801519F8 = .text:0x801519F8; // type:function size:0x8C +fn_80151A84 = .text:0x80151A84; // type:function size:0x68 +fn_80151AEC = .text:0x80151AEC; // type:function size:0x10 +fn_80151AFC = .text:0x80151AFC; // type:function size:0x3B8 +fn_80151EB4 = .text:0x80151EB4; // type:function size:0x6C +fn_80151F20 = .text:0x80151F20; // type:function size:0x2C +fn_80151F4C = .text:0x80151F4C; // type:function size:0x15C +fn_801520A8 = .text:0x801520A8; // type:function size:0x44 +fn_801520EC = .text:0x801520EC; // type:function size:0x8 +fn_801520F4 = .text:0x801520F4; // type:function size:0x108 +fn_801521FC = .text:0x801521FC; // type:function size:0x5C +fn_80152258 = .text:0x80152258; // type:function size:0x10 +__ct__14RKTrainerPanelFv = .text:0x80152268; // type:function size:0x78 +fn_801522E0 = .text:0x801522E0; // type:function size:0x7C +fn_8015235C = .text:0x8015235C; // type:function size:0x98 +fn_801523F4 = .text:0x801523F4; // type:function size:0x14 +Handle__14RKTrainerPanelFP9DataArrayb = .text:0x80152408; // type:function size:0xD0 +fn_801524D8 = .text:0x801524D8; // type:function size:0x134 +fn_8015260C = .text:0x8015260C; // type:function size:0x4 +fn_80152610 = .text:0x80152610; // type:function size:0x14 +fn_80152624 = .text:0x80152624; // type:function size:0x14 +fn_80152638 = .text:0x80152638; // type:function size:0x14 +fn_8015264C = .text:0x8015264C; // type:function size:0x14 +fn_80152660 = .text:0x80152660; // type:function size:0x3C +fn_8015269C = .text:0x8015269C; // type:function size:0x58 +fn_801526F4 = .text:0x801526F4; // type:function size:0x64 +fn_80152758 = .text:0x80152758; // type:function size:0xB8 +fn_80152810 = .text:0x80152810; // type:function size:0x4 +fn_80152814 = .text:0x80152814; // type:function size:0xD8 +fn_801528EC = .text:0x801528EC; // type:function size:0x30 +fn_8015291C = .text:0x8015291C; // type:function size:0x4 +fn_80152920 = .text:0x80152920; // type:function size:0x4 +fn_80152924 = .text:0x80152924; // type:function size:0x50 +__ct__15StarPowerConfigFP9DataArray = .text:0x80152974; // type:function size:0x120 +__ct__7ScoringFv = .text:0x80152A94; // type:function size:0x2FC +fn_80152D90 = .text:0x80152D90; // type:function size:0x58 +fn_80152DE8 = .text:0x80152DE8; // type:function size:0x80 +fn_80152E68 = .text:0x80152E68; // type:function size:0x80 +fn_80152EE8 = .text:0x80152EE8; // type:function size:0x58 +fn_80152F40 = .text:0x80152F40; // type:function size:0x54 +fn_80152F94 = .text:0x80152F94; // type:function size:0x5C +fn_80152FF0 = .text:0x80152FF0; // type:function size:0x6C +fn_8015305C = .text:0x8015305C; // type:function size:0x28 +fn_80153084 = .text:0x80153084; // type:function size:0x8 +fn_8015308C = .text:0x8015308C; // type:function size:0x5C +fn_801530E8 = .text:0x801530E8; // type:function size:0x58 +fn_80153140 = .text:0x80153140; // type:function size:0x80 +fn_801531C0 = .text:0x801531C0; // type:function size:0x80 +fn_80153240 = .text:0x80153240; // type:function size:0x58 +fn_80153298 = .text:0x80153298; // type:function size:0x54 +fn_801532EC = .text:0x801532EC; // type:function size:0x5C +fn_80153348 = .text:0x80153348; // type:function size:0x6C +fn_801533B4 = .text:0x801533B4; // type:function size:0x28 +fn_801533DC = .text:0x801533DC; // type:function size:0x8 +fn_801533E4 = .text:0x801533E4; // type:function size:0x3C +fn_80153420 = .text:0x80153420; // type:function size:0x8 +fn_80153428 = .text:0x80153428; // type:function size:0x3C +fn_80153464 = .text:0x80153464; // type:function size:0x30 +fn_80153494 = .text:0x80153494; // type:function size:0x30 +fn_801534C4 = .text:0x801534C4; // type:function size:0x40 +fn_80153504 = .text:0x80153504; // type:function size:0x10 +fn_80153514 = .text:0x80153514; // type:function size:0x80 +fn_80153594 = .text:0x80153594; // type:function size:0x450 +fn_801539E4 = .text:0x801539E4; // type:function size:0x100 +fn_80153AE4 = .text:0x80153AE4; // type:function size:0x4 +fn_80153AE8 = .text:0x80153AE8; // type:function size:0x88 +fn_80153B70 = .text:0x80153B70; // type:function size:0x2C +fn_80153B9C = .text:0x80153B9C; // type:function size:0x10 +fn_80153BAC = .text:0x80153BAC; // type:function size:0x24 +fn_80153BD0 = .text:0x80153BD0; // type:function size:0x4 +fn_80153BD4 = .text:0x80153BD4; // type:function size:0x88 +fn_80153C5C = .text:0x80153C5C; // type:function size:0x2C +fn_80153C88 = .text:0x80153C88; // type:function size:0x10 +fn_80153C98 = .text:0x80153C98; // type:function size:0x48 +fn_80153CE0 = .text:0x80153CE0; // type:function size:0x30 +fn_80153D10 = .text:0x80153D10; // type:function size:0x98 +fn_80153DA8 = .text:0x80153DA8; // type:function size:0x5C +fn_80153E04 = .text:0x80153E04; // type:function size:0x70 +fn_80153E74 = .text:0x80153E74; // type:function size:0x48 +fn_80153EBC = .text:0x80153EBC; // type:function size:0x30 +fn_80153EEC = .text:0x80153EEC; // type:function size:0x30 +fn_80153F1C = .text:0x80153F1C; // type:function size:0x40 +fn_80153F5C = .text:0x80153F5C; // type:function size:0xC +fn_80153F68 = .text:0x80153F68; // type:function size:0x70 +fn_80153FD8 = .text:0x80153FD8; // type:function size:0x10 +fn_80153FE8 = .text:0x80153FE8; // type:function size:0xB8 +fn_801540A0 = .text:0x801540A0; // type:function size:0x30 +fn_801540D0 = .text:0x801540D0; // type:function size:0xA8 +fn_80154178 = .text:0x80154178; // type:function size:0x3C +fn_801541B4 = .text:0x801541B4; // type:function size:0xEC +GetCrowdConfig__7ScoringCF10DifficultyP8BandUser = .text:0x801542A0; // type:function size:0xE8 +fn_80154388 = .text:0x80154388; // type:function size:0x48 +fn_801543D0 = .text:0x801543D0; // type:function size:0x14C +fn_8015451C = .text:0x8015451C; // type:function size:0x8 +fn_80154524 = .text:0x80154524; // type:function size:0x4C +fn_80154570 = .text:0x80154570; // type:function size:0x2C +fn_8015459C = .text:0x8015459C; // type:function size:0x84 +fn_80154620 = .text:0x80154620; // type:function size:0x64 +fn_80154684 = .text:0x80154684; // type:function size:0x88 +fn_8015470C = .text:0x8015470C; // type:function size:0x9C +fn_801547A8 = .text:0x801547A8; // type:function size:0x68 +fn_80154810 = .text:0x80154810; // type:function size:0xDC +fn_801548EC = .text:0x801548EC; // type:function size:0x94 +fn_80154980 = .text:0x80154980; // type:function size:0x70 +fn_801549F0 = .text:0x801549F0; // type:function size:0x70 +fn_80154A60 = .text:0x80154A60; // type:function size:0x4C +fn_80154AAC = .text:0x80154AAC; // type:function size:0x114 +fn_80154BC0 = .text:0x80154BC0; // type:function size:0x60 +fn_80154C20 = .text:0x80154C20; // type:function size:0x5C +fn_80154C7C = .text:0x80154C7C; // type:function size:0x54 +fn_80154CD0 = .text:0x80154CD0; // type:function size:0x5C +fn_80154D2C = .text:0x80154D2C; // type:function size:0x114 +fn_80154E40 = .text:0x80154E40; // type:function size:0x5C +fn_80154E9C = .text:0x80154E9C; // type:function size:0x5C +fn_80154EF8 = .text:0x80154EF8; // type:function size:0x54 +fn_80154F4C = .text:0x80154F4C; // type:function size:0x5C +fn_80154FA8 = .text:0x80154FA8; // type:function size:0x5C +fn_80155004 = .text:0x80155004; // type:function size:0x20 +fn_80155024 = .text:0x80155024; // type:function size:0x40 +fn_80155064 = .text:0x80155064; // type:function size:0x8 +PowFloat__Fdd = .text:0x8015506C; // type:function size:0x24 +__ct__6SingerFP11VocalPlayeri = .text:0x80155090; // type:function size:0x2B8 +fn_80155348 = .text:0x80155348; // type:function size:0x58 +fn_801553A0 = .text:0x801553A0; // type:function size:0x80 +fn_80155420 = .text:0x80155420; // type:function size:0x80 +fn_801554A0 = .text:0x801554A0; // type:function size:0x58 +fn_801554F8 = .text:0x801554F8; // type:function size:0x54 +fn_8015554C = .text:0x8015554C; // type:function size:0x5C +fn_801555A8 = .text:0x801555A8; // type:function size:0x6C +fn_80155614 = .text:0x80155614; // type:function size:0x28 +fn_8015563C = .text:0x8015563C; // type:function size:0x8 +fn_80155644 = .text:0x80155644; // type:function size:0x3C +fn_80155680 = .text:0x80155680; // type:function size:0x58 +fn_801556D8 = .text:0x801556D8; // type:function size:0x80 +fn_80155758 = .text:0x80155758; // type:function size:0x80 +fn_801557D8 = .text:0x801557D8; // type:function size:0x58 +fn_80155830 = .text:0x80155830; // type:function size:0x54 +fn_80155884 = .text:0x80155884; // type:function size:0x5C +fn_801558E0 = .text:0x801558E0; // type:function size:0x6C +fn_8015594C = .text:0x8015594C; // type:function size:0x28 +fn_80155974 = .text:0x80155974; // type:function size:0x8 +fn_8015597C = .text:0x8015597C; // type:function size:0x3C +fn_801559B8 = .text:0x801559B8; // type:function size:0x58 +fn_80155A10 = .text:0x80155A10; // type:function size:0x80 +fn_80155A90 = .text:0x80155A90; // type:function size:0x80 +fn_80155B10 = .text:0x80155B10; // type:function size:0x58 +fn_80155B68 = .text:0x80155B68; // type:function size:0x54 +fn_80155BBC = .text:0x80155BBC; // type:function size:0x5C +fn_80155C18 = .text:0x80155C18; // type:function size:0x6C +fn_80155C84 = .text:0x80155C84; // type:function size:0x28 +fn_80155CAC = .text:0x80155CAC; // type:function size:0x8 +fn_80155CB4 = .text:0x80155CB4; // type:function size:0x8 +fn_80155CBC = .text:0x80155CBC; // type:function size:0x3C +fn_80155CF8 = .text:0x80155CF8; // type:function size:0x58 +fn_80155D50 = .text:0x80155D50; // type:function size:0x80 +fn_80155DD0 = .text:0x80155DD0; // type:function size:0x80 +fn_80155E50 = .text:0x80155E50; // type:function size:0x58 +fn_80155EA8 = .text:0x80155EA8; // type:function size:0x54 +fn_80155EFC = .text:0x80155EFC; // type:function size:0x5C +fn_80155F58 = .text:0x80155F58; // type:function size:0x6C +fn_80155FC4 = .text:0x80155FC4; // type:function size:0x28 +fn_80155FEC = .text:0x80155FEC; // type:function size:0x8 +fn_80155FF4 = .text:0x80155FF4; // type:function size:0x8 +fn_80155FFC = .text:0x80155FFC; // type:function size:0x3C +fn_80156038 = .text:0x80156038; // type:function size:0x30 +fn_80156068 = .text:0x80156068; // type:function size:0x30 +fn_80156098 = .text:0x80156098; // type:function size:0x40 +fn_801560D8 = .text:0x801560D8; // type:function size:0x30 +fn_80156108 = .text:0x80156108; // type:function size:0x30 +fn_80156138 = .text:0x80156138; // type:function size:0x40 +fn_80156178 = .text:0x80156178; // type:function size:0x30 +fn_801561A8 = .text:0x801561A8; // type:function size:0x30 +fn_801561D8 = .text:0x801561D8; // type:function size:0x40 +fn_80156218 = .text:0x80156218; // type:function size:0x30 +fn_80156248 = .text:0x80156248; // type:function size:0x30 +fn_80156278 = .text:0x80156278; // type:function size:0x40 +fn_801562B8 = .text:0x801562B8; // type:function size:0x40 +fn_801562F8 = .text:0x801562F8; // type:function size:0x10 +fn_80156308 = .text:0x80156308; // type:function size:0xBC +fn_801563C4 = .text:0x801563C4; // type:function size:0x68 +fn_8015642C = .text:0x8015642C; // type:function size:0x68 +fn_80156494 = .text:0x80156494; // type:function size:0x8C +fn_80156520 = .text:0x80156520; // type:function size:0x58 +fn_80156578 = .text:0x80156578; // type:function size:0x80 +fn_801565F8 = .text:0x801565F8; // type:function size:0x80 +fn_80156678 = .text:0x80156678; // type:function size:0x58 +fn_801566D0 = .text:0x801566D0; // type:function size:0x54 +fn_80156724 = .text:0x80156724; // type:function size:0x3C +fn_80156760 = .text:0x80156760; // type:function size:0x8 +fn_80156768 = .text:0x80156768; // type:function size:0x3C +fn_801567A4 = .text:0x801567A4; // type:function size:0xE0 +fn_80156884 = .text:0x80156884; // type:function size:0x4 +fn_80156888 = .text:0x80156888; // type:function size:0x90 +fn_80156918 = .text:0x80156918; // type:function size:0x4 +fn_8015691C = .text:0x8015691C; // type:function size:0x40 +fn_8015695C = .text:0x8015695C; // type:function size:0x8C +fn_801569E8 = .text:0x801569E8; // type:function size:0x8 +fn_801569F0 = .text:0x801569F0; // type:function size:0x2C +fn_80156A1C = .text:0x80156A1C; // type:function size:0x58 +fn_80156A74 = .text:0x80156A74; // type:function size:0x28 +fn_80156A9C = .text:0x80156A9C; // type:function size:0x68 +fn_80156B04 = .text:0x80156B04; // type:function size:0x48 +fn_80156B4C = .text:0x80156B4C; // type:function size:0x30 +fn_80156B7C = .text:0x80156B7C; // type:function size:0x30 +fn_80156BAC = .text:0x80156BAC; // type:function size:0x4 +fn_80156BB0 = .text:0x80156BB0; // type:function size:0x90 +fn_80156C40 = .text:0x80156C40; // type:function size:0x4 +fn_80156C44 = .text:0x80156C44; // type:function size:0x40 +fn_80156C84 = .text:0x80156C84; // type:function size:0x8C +fn_80156D10 = .text:0x80156D10; // type:function size:0x8 +fn_80156D18 = .text:0x80156D18; // type:function size:0x2C +fn_80156D44 = .text:0x80156D44; // type:function size:0x58 +fn_80156D9C = .text:0x80156D9C; // type:function size:0x28 +fn_80156DC4 = .text:0x80156DC4; // type:function size:0x68 +fn_80156E2C = .text:0x80156E2C; // type:function size:0x64 +fn_80156E90 = .text:0x80156E90; // type:function size:0x3C +fn_80156ECC = .text:0x80156ECC; // type:function size:0x4 +fn_80156ED0 = .text:0x80156ED0; // type:function size:0x88 +fn_80156F58 = .text:0x80156F58; // type:function size:0x2C +fn_80156F84 = .text:0x80156F84; // type:function size:0x10 +fn_80156F94 = .text:0x80156F94; // type:function size:0x7C +fn_80157010 = .text:0x80157010; // type:function size:0xD0 +fn_801570E0 = .text:0x801570E0; // type:function size:0x1C +fn_801570FC = .text:0x801570FC; // type:function size:0x14 +fn_80157110 = .text:0x80157110; // type:function size:0x8 +fn_80157118 = .text:0x80157118; // type:function size:0x6C +fn_80157184 = .text:0x80157184; // type:function size:0x4 +fn_80157188 = .text:0x80157188; // type:function size:0x4 +fn_8015718C = .text:0x8015718C; // type:function size:0xB0 +fn_8015723C = .text:0x8015723C; // type:function size:0x4 +fn_80157240 = .text:0x80157240; // type:function size:0x3C +fn_8015727C = .text:0x8015727C; // type:function size:0x40 +fn_801572BC = .text:0x801572BC; // type:function size:0x8C +fn_80157348 = .text:0x80157348; // type:function size:0x8 +fn_80157350 = .text:0x80157350; // type:function size:0x2C +fn_8015737C = .text:0x8015737C; // type:function size:0x58 +fn_801573D4 = .text:0x801573D4; // type:function size:0x28 +fn_801573FC = .text:0x801573FC; // type:function size:0x68 +fn_80157464 = .text:0x80157464; // type:function size:0x2C +fn_80157490 = .text:0x80157490; // type:function size:0xC +fn_8015749C = .text:0x8015749C; // type:function size:0x4 +fn_801574A0 = .text:0x801574A0; // type:function size:0x4C +fn_801574EC = .text:0x801574EC; // type:function size:0x3C +fn_80157528 = .text:0x80157528; // type:function size:0xD0 +fn_801575F8 = .text:0x801575F8; // type:function size:0x4 +fn_801575FC = .text:0x801575FC; // type:function size:0x88 +fn_80157684 = .text:0x80157684; // type:function size:0x2C +fn_801576B0 = .text:0x801576B0; // type:function size:0x10 +fn_801576C0 = .text:0x801576C0; // type:function size:0x54 +fn_80157714 = .text:0x80157714; // type:function size:0x30 +fn_80157744 = .text:0x80157744; // type:function size:0xA0 +fn_801577E4 = .text:0x801577E4; // type:function size:0x30 +fn_80157814 = .text:0x80157814; // type:function size:0x1A4 +fn_801579B8 = .text:0x801579B8; // type:function size:0x158 +fn_80157B10 = .text:0x80157B10; // type:function size:0x10 +fn_80157B20 = .text:0x80157B20; // type:function size:0x8 +fn_80157B28 = .text:0x80157B28; // type:function size:0x358 +fn_80157E80 = .text:0x80157E80; // type:function size:0x28 +fn_80157EA8 = .text:0x80157EA8; // type:function size:0xA8 +fn_80157F50 = .text:0x80157F50; // type:function size:0xCC +fn_8015801C = .text:0x8015801C; // type:function size:0x10 +fn_8015802C = .text:0x8015802C; // type:function size:0xFC +fn_80158128 = .text:0x80158128; // type:function size:0x164 +fn_8015828C = .text:0x8015828C; // type:function size:0x34 +fn_801582C0 = .text:0x801582C0; // type:function size:0xA8 +fn_80158368 = .text:0x80158368; // type:function size:0x14 +fn_8015837C = .text:0x8015837C; // type:function size:0x8 +fn_80158384 = .text:0x80158384; // type:function size:0x8 +fn_8015838C = .text:0x8015838C; // type:function size:0x1C8 +fn_80158554 = .text:0x80158554; // type:function size:0x8 +fn_8015855C = .text:0x8015855C; // type:function size:0x4 +fn_80158560 = .text:0x80158560; // type:function size:0x4 +fn_80158564 = .text:0x80158564; // type:function size:0x198 +fn_801586FC = .text:0x801586FC; // type:function size:0x30 +fn_8015872C = .text:0x8015872C; // type:function size:0x8 +fn_80158734 = .text:0x80158734; // type:function size:0x10 +fn_80158744 = .text:0x80158744; // type:function size:0x14 +fn_80158758 = .text:0x80158758; // type:function size:0x6C +fn_801587C4 = .text:0x801587C4; // type:function size:0x38 +fn_801587FC = .text:0x801587FC; // type:function size:0x8 +fn_80158804 = .text:0x80158804; // type:function size:0x8 +fn_8015880C = .text:0x8015880C; // type:function size:0x200 +fn_80158A0C = .text:0x80158A0C; // type:function size:0x88 +fn_80158A94 = .text:0x80158A94; // type:function size:0x54 +fn_80158AE8 = .text:0x80158AE8; // type:function size:0x4C +fn_80158B34 = .text:0x80158B34; // type:function size:0x18 +fn_80158B4C = .text:0x80158B4C; // type:function size:0x6C +fn_80158BB8 = .text:0x80158BB8; // type:function size:0x8 +fn_80158BC0 = .text:0x80158BC0; // type:function size:0x8 +fn_80158BC8 = .text:0x80158BC8; // type:function size:0x8 +fn_80158BD0 = .text:0x80158BD0; // type:function size:0x8 +fn_80158BD8 = .text:0x80158BD8; // type:function size:0x8 +fn_80158BE0 = .text:0x80158BE0; // type:function size:0x8 +fn_80158BE8 = .text:0x80158BE8; // type:function size:0x2C +fn_80158C14 = .text:0x80158C14; // type:function size:0x54 +fn_80158C68 = .text:0x80158C68; // type:function size:0x114 +fn_80158D7C = .text:0x80158D7C; // type:function size:0x5C +fn_80158DD8 = .text:0x80158DD8; // type:function size:0x5C +fn_80158E34 = .text:0x80158E34; // type:function size:0x54 +fn_80158E88 = .text:0x80158E88; // type:function size:0x5C +fn_80158EE4 = .text:0x80158EE4; // type:function size:0x5C +fn_80158F40 = .text:0x80158F40; // type:function size:0x68 +fn_80158FA8 = .text:0x80158FA8; // type:function size:0x2C +fn_80158FD4 = .text:0x80158FD4; // type:function size:0x68 +fn_8015903C = .text:0x8015903C; // type:function size:0x2C +fn_80159068 = .text:0x80159068; // type:function size:0x114 +fn_8015917C = .text:0x8015917C; // type:function size:0x5C +fn_801591D8 = .text:0x801591D8; // type:function size:0x5C +fn_80159234 = .text:0x80159234; // type:function size:0x54 +fn_80159288 = .text:0x80159288; // type:function size:0x5C +fn_801592E4 = .text:0x801592E4; // type:function size:0x5C +fn_80159340 = .text:0x80159340; // type:function size:0x18C +fn_801594CC = .text:0x801594CC; // type:function size:0x5C +fn_80159528 = .text:0x80159528; // type:function size:0x10 +fn_80159538 = .text:0x80159538; // type:function size:0x54 +fn_8015958C = .text:0x8015958C; // type:function size:0x28 +fn_801595B4 = .text:0x801595B4; // type:function size:0x68 +fn_8015961C = .text:0x8015961C; // type:function size:0x5C +fn_80159678 = .text:0x80159678; // type:function size:0x114 +fn_8015978C = .text:0x8015978C; // type:function size:0x5C +fn_801597E8 = .text:0x801597E8; // type:function size:0x5C +fn_80159844 = .text:0x80159844; // type:function size:0x54 +fn_80159898 = .text:0x80159898; // type:function size:0x190 +fn_80159A28 = .text:0x80159A28; // type:function size:0x5C +fn_80159A84 = .text:0x80159A84; // type:function size:0x10 +fn_80159A94 = .text:0x80159A94; // type:function size:0x54 +fn_80159AE8 = .text:0x80159AE8; // type:function size:0x28 +fn_80159B10 = .text:0x80159B10; // type:function size:0x68 +fn_80159B78 = .text:0x80159B78; // type:function size:0x5C +fn_80159BD4 = .text:0x80159BD4; // type:function size:0x38 +fn_80159C0C = .text:0x80159C0C; // type:function size:0x114 +fn_80159D20 = .text:0x80159D20; // type:function size:0x60 +fn_80159D80 = .text:0x80159D80; // type:function size:0x5C +fn_80159DDC = .text:0x80159DDC; // type:function size:0x54 +fn_80159E30 = .text:0x80159E30; // type:function size:0x14 +fn_80159E44 = .text:0x80159E44; // type:function size:0x1C +__ct__6SongDBFv = .text:0x80159E60; // type:function size:0xCC +fn_80159F2C = .text:0x80159F2C; // type:function size:0x58 +fn_80159F84 = .text:0x80159F84; // type:function size:0x80 +fn_8015A004 = .text:0x8015A004; // type:function size:0x80 +fn_8015A084 = .text:0x8015A084; // type:function size:0x58 +fn_8015A0DC = .text:0x8015A0DC; // type:function size:0x10 +fn_8015A0EC = .text:0x8015A0EC; // type:function size:0x54 +fn_8015A140 = .text:0x8015A140; // type:function size:0x5C +fn_8015A19C = .text:0x8015A19C; // type:function size:0x6C +fn_8015A208 = .text:0x8015A208; // type:function size:0x28 +fn_8015A230 = .text:0x8015A230; // type:function size:0x10 +fn_8015A240 = .text:0x8015A240; // type:function size:0x8 +fn_8015A248 = .text:0x8015A248; // type:function size:0xB0 +fn_8015A2F8 = .text:0x8015A2F8; // type:function size:0xC +fn_8015A304 = .text:0x8015A304; // type:function size:0x8 +fn_8015A30C = .text:0x8015A30C; // type:function size:0x3C +fn_8015A348 = .text:0x8015A348; // type:function size:0x14 +fn_8015A35C = .text:0x8015A35C; // type:function size:0x30 +fn_8015A38C = .text:0x8015A38C; // type:function size:0x30 +fn_8015A3BC = .text:0x8015A3BC; // type:function size:0x40 +__ct__14SongParserSinkFv = .text:0x8015A3FC; // type:function size:0x10 +__dt__6SongDBFv = .text:0x8015A40C; // type:function size:0xBC +fn_8015A4C8 = .text:0x8015A4C8; // type:function size:0x68 +fn_8015A530 = .text:0x8015A530; // type:function size:0x5C +fn_8015A58C = .text:0x8015A58C; // type:function size:0x1A4 +fn_8015A730 = .text:0x8015A730; // type:function size:0x10 +fn_8015A740 = .text:0x8015A740; // type:function size:0x44 +fn_8015A784 = .text:0x8015A784; // type:function size:0x34 +fn_8015A7B8 = .text:0x8015A7B8; // type:function size:0x8 +fn_8015A7C0 = .text:0x8015A7C0; // type:function size:0x8 +fn_8015A7C8 = .text:0x8015A7C8; // type:function size:0xC +GetSongDurationMs__6SongDBCFv = .text:0x8015A7D4; // type:function size:0x8 +fn_8015A7DC = .text:0x8015A7DC; // type:function size:0x8 +fn_8015A7E4 = .text:0x8015A7E4; // type:function size:0x20 +fn_8015A804 = .text:0x8015A804; // type:function size:0x8 +fn_8015A80C = .text:0x8015A80C; // type:function size:0x8 +fn_8015A814 = .text:0x8015A814; // type:function size:0x30 +fn_8015A844 = .text:0x8015A844; // type:function size:0x30 +fn_8015A874 = .text:0x8015A874; // type:function size:0x30 +fn_8015A8A4 = .text:0x8015A8A4; // type:function size:0x8 +fn_8015A8AC = .text:0x8015A8AC; // type:function size:0x8 +fn_8015A8B4 = .text:0x8015A8B4; // type:function size:0x28 +fn_8015A8DC = .text:0x8015A8DC; // type:function size:0x34 +fn_8015A910 = .text:0x8015A910; // type:function size:0x24 +fn_8015A934 = .text:0x8015A934; // type:function size:0x8 +fn_8015A93C = .text:0x8015A93C; // type:function size:0x8 +fn_8015A944 = .text:0x8015A944; // type:function size:0x8 +fn_8015A94C = .text:0x8015A94C; // type:function size:0x1BC +fn_8015AB08 = .text:0x8015AB08; // type:function size:0x8 +fn_8015AB10 = .text:0x8015AB10; // type:function size:0xAC +fn_8015ABBC = .text:0x8015ABBC; // type:function size:0x24 +fn_8015ABE0 = .text:0x8015ABE0; // type:function size:0x14 +fn_8015ABF4 = .text:0x8015ABF4; // type:function size:0x18 +fn_8015AC0C = .text:0x8015AC0C; // type:function size:0xD0 +fn_8015ACDC = .text:0x8015ACDC; // type:function size:0x54 +fn_8015AD30 = .text:0x8015AD30; // type:function size:0x38 +fn_8015AD68 = .text:0x8015AD68; // type:function size:0x38 +fn_8015ADA0 = .text:0x8015ADA0; // type:function size:0x9C +fn_8015AE3C = .text:0x8015AE3C; // type:function size:0x110 +fn_8015AF4C = .text:0x8015AF4C; // type:function size:0xA0 +fn_8015AFEC = .text:0x8015AFEC; // type:function size:0x50 +fn_8015B03C = .text:0x8015B03C; // type:function size:0x28 +fn_8015B064 = .text:0x8015B064; // type:function size:0x58 +fn_8015B0BC = .text:0x8015B0BC; // type:function size:0xF8 +fn_8015B1B4 = .text:0x8015B1B4; // type:function size:0x60 +fn_8015B214 = .text:0x8015B214; // type:function size:0x64 +fn_8015B278 = .text:0x8015B278; // type:function size:0x58 +fn_8015B2D0 = .text:0x8015B2D0; // type:function size:0x48 +fn_8015B318 = .text:0x8015B318; // type:function size:0x4 +fn_8015B31C = .text:0x8015B31C; // type:function size:0x4 +fn_8015B320 = .text:0x8015B320; // type:function size:0x3C +fn_8015B35C = .text:0x8015B35C; // type:function size:0x40 +fn_8015B39C = .text:0x8015B39C; // type:function size:0x8C +fn_8015B428 = .text:0x8015B428; // type:function size:0x8 +fn_8015B430 = .text:0x8015B430; // type:function size:0x2C +fn_8015B45C = .text:0x8015B45C; // type:function size:0x58 +fn_8015B4B4 = .text:0x8015B4B4; // type:function size:0x28 +fn_8015B4DC = .text:0x8015B4DC; // type:function size:0x68 +fn_8015B544 = .text:0x8015B544; // type:function size:0xA0 +fn_8015B5E4 = .text:0x8015B5E4; // type:function size:0x30 +fn_8015B614 = .text:0x8015B614; // type:function size:0x30 +fn_8015B644 = .text:0x8015B644; // type:function size:0x4C +fn_8015B690 = .text:0x8015B690; // type:function size:0x4 +fn_8015B694 = .text:0x8015B694; // type:function size:0x88 +fn_8015B71C = .text:0x8015B71C; // type:function size:0x2C +fn_8015B748 = .text:0x8015B748; // type:function size:0x10 +fn_8015B758 = .text:0x8015B758; // type:function size:0xA0 +fn_8015B7F8 = .text:0x8015B7F8; // type:function size:0x30 +fn_8015B828 = .text:0x8015B828; // type:function size:0x90 +fn_8015B8B8 = .text:0x8015B8B8; // type:function size:0x58 +fn_8015B910 = .text:0x8015B910; // type:function size:0x70 +fn_8015B980 = .text:0x8015B980; // type:function size:0x30 +fn_8015B9B0 = .text:0x8015B9B0; // type:function size:0x98 +fn_8015BA48 = .text:0x8015BA48; // type:function size:0x70 +fn_8015BAB8 = .text:0x8015BAB8; // type:function size:0xF0 +fn_8015BBA8 = .text:0x8015BBA8; // type:function size:0x15C +fn_8015BD04 = .text:0x8015BD04; // type:function size:0x4 +fn_8015BD08 = .text:0x8015BD08; // type:function size:0x58 +fn_8015BD60 = .text:0x8015BD60; // type:function size:0x80 +fn_8015BDE0 = .text:0x8015BDE0; // type:function size:0x80 +fn_8015BE60 = .text:0x8015BE60; // type:function size:0x58 +fn_8015BEB8 = .text:0x8015BEB8; // type:function size:0x54 +fn_8015BF0C = .text:0x8015BF0C; // type:function size:0x5C +fn_8015BF68 = .text:0x8015BF68; // type:function size:0x6C +fn_8015BFD4 = .text:0x8015BFD4; // type:function size:0x28 +fn_8015BFFC = .text:0x8015BFFC; // type:function size:0x10 +fn_8015C00C = .text:0x8015C00C; // type:function size:0x8 +fn_8015C014 = .text:0x8015C014; // type:function size:0x5C +fn_8015C070 = .text:0x8015C070; // type:function size:0xC +fn_8015C07C = .text:0x8015C07C; // type:function size:0x8 +fn_8015C084 = .text:0x8015C084; // type:function size:0x3C +fn_8015C0C0 = .text:0x8015C0C0; // type:function size:0x58 +fn_8015C118 = .text:0x8015C118; // type:function size:0x80 +fn_8015C198 = .text:0x8015C198; // type:function size:0x80 +fn_8015C218 = .text:0x8015C218; // type:function size:0x58 +fn_8015C270 = .text:0x8015C270; // type:function size:0x54 +fn_8015C2C4 = .text:0x8015C2C4; // type:function size:0x5C +fn_8015C320 = .text:0x8015C320; // type:function size:0x6C +fn_8015C38C = .text:0x8015C38C; // type:function size:0x28 +fn_8015C3B4 = .text:0x8015C3B4; // type:function size:0x10 +fn_8015C3C4 = .text:0x8015C3C4; // type:function size:0xC +fn_8015C3D0 = .text:0x8015C3D0; // type:function size:0x8 +fn_8015C3D8 = .text:0x8015C3D8; // type:function size:0x3C +fn_8015C414 = .text:0x8015C414; // type:function size:0x10 +fn_8015C424 = .text:0x8015C424; // type:function size:0x9C +fn_8015C4C0 = .text:0x8015C4C0; // type:function size:0x30 +fn_8015C4F0 = .text:0x8015C4F0; // type:function size:0xA0 +fn_8015C590 = .text:0x8015C590; // type:function size:0x5C +fn_8015C5EC = .text:0x8015C5EC; // type:function size:0x10 +fn_8015C5FC = .text:0x8015C5FC; // type:function size:0xC4 +fn_8015C6C0 = .text:0x8015C6C0; // type:function size:0x70 +fn_8015C730 = .text:0x8015C730; // type:function size:0x4 +fn_8015C734 = .text:0x8015C734; // type:function size:0xF8 +fn_8015C82C = .text:0x8015C82C; // type:function size:0x58 +fn_8015C884 = .text:0x8015C884; // type:function size:0x44 +fn_8015C8C8 = .text:0x8015C8C8; // type:function size:0x13C +fn_8015CA04 = .text:0x8015CA04; // type:function size:0x4 +fn_8015CA08 = .text:0x8015CA08; // type:function size:0x2C +fn_8015CA34 = .text:0x8015CA34; // type:function size:0x28 +fn_8015CA5C = .text:0x8015CA5C; // type:function size:0x8 +fn_8015CA64 = .text:0x8015CA64; // type:function size:0x8 +fn_8015CA6C = .text:0x8015CA6C; // type:function size:0x4 +fn_8015CA70 = .text:0x8015CA70; // type:function size:0x4 +fn_8015CA74 = .text:0x8015CA74; // type:function size:0x3C +fn_8015CAB0 = .text:0x8015CAB0; // type:function size:0x58 +fn_8015CB08 = .text:0x8015CB08; // type:function size:0x1EC +fn_8015CCF4 = .text:0x8015CCF4; // type:function size:0x10 +fn_8015CD04 = .text:0x8015CD04; // type:function size:0x64 +fn_8015CD68 = .text:0x8015CD68; // type:function size:0x6C +fn_8015CDD4 = .text:0x8015CDD4; // type:function size:0x6C +fn_8015CE40 = .text:0x8015CE40; // type:function size:0x198 +fn_8015CFD8 = .text:0x8015CFD8; // type:function size:0x4 +fn_8015CFDC = .text:0x8015CFDC; // type:function size:0x88 +fn_8015D064 = .text:0x8015D064; // type:function size:0x14 +fn_8015D078 = .text:0x8015D078; // type:function size:0x68 +fn_8015D0E0 = .text:0x8015D0E0; // type:function size:0x68 +fn_8015D148 = .text:0x8015D148; // type:function size:0x2C +fn_8015D174 = .text:0x8015D174; // type:function size:0x8C +fn_8015D200 = .text:0x8015D200; // type:function size:0x84 +fn_8015D284 = .text:0x8015D284; // type:function size:0x38 +fn_8015D2BC = .text:0x8015D2BC; // type:function size:0x20C +fn_8015D4C8 = .text:0x8015D4C8; // type:function size:0x4C +fn_8015D514 = .text:0x8015D514; // type:function size:0x4 +fn_8015D518 = .text:0x8015D518; // type:function size:0x50 +fn_8015D568 = .text:0x8015D568; // type:function size:0x58 +fn_8015D5C0 = .text:0x8015D5C0; // type:function size:0x30 +fn_8015D5F0 = .text:0x8015D5F0; // type:function size:0x98 +fn_8015D688 = .text:0x8015D688; // type:function size:0x70 +fn_8015D6F8 = .text:0x8015D6F8; // type:function size:0x8 +fn_8015D700 = .text:0x8015D700; // type:function size:0x8 +fn_8015D708 = .text:0x8015D708; // type:function size:0x44 +fn_8015D74C = .text:0x8015D74C; // type:function size:0x24 +fn_8015D770 = .text:0x8015D770; // type:function size:0x5C +fn_8015D7CC = .text:0x8015D7CC; // type:function size:0x8 +fn_8015D7D4 = .text:0x8015D7D4; // type:function size:0xAC +fn_8015D880 = .text:0x8015D880; // type:function size:0x24 +fn_8015D8A4 = .text:0x8015D8A4; // type:function size:0x8 +fn_8015D8AC = .text:0x8015D8AC; // type:function size:0x8 +fn_8015D8B4 = .text:0x8015D8B4; // type:function size:0x24 +fn_8015D8D8 = .text:0x8015D8D8; // type:function size:0x8 +fn_8015D8E0 = .text:0x8015D8E0; // type:function size:0x98 +fn_8015D978 = .text:0x8015D978; // type:function size:0xC +fn_8015D984 = .text:0x8015D984; // type:function size:0x120 +fn_8015DAA4 = .text:0x8015DAA4; // type:function size:0x50 +fn_8015DAF4 = .text:0x8015DAF4; // type:function size:0x58 +fn_8015DB4C = .text:0x8015DB4C; // type:function size:0x70 +fn_8015DBBC = .text:0x8015DBBC; // type:function size:0x10C +fn_8015DCC8 = .text:0x8015DCC8; // type:function size:0x50 +fn_8015DD18 = .text:0x8015DD18; // type:function size:0x58 +fn_8015DD70 = .text:0x8015DD70; // type:function size:0x68 +fn_8015DDD8 = .text:0x8015DDD8; // type:function size:0xC4 +fn_8015DE9C = .text:0x8015DE9C; // type:function size:0x60 +fn_8015DEFC = .text:0x8015DEFC; // type:function size:0x14C +fn_8015E048 = .text:0x8015E048; // type:function size:0x60 +fn_8015E0A8 = .text:0x8015E0A8; // type:function size:0x160 +fn_8015E208 = .text:0x8015E208; // type:function size:0x28 +fn_8015E230 = .text:0x8015E230; // type:function size:0x5C +fn_8015E28C = .text:0x8015E28C; // type:function size:0x60 +fn_8015E2EC = .text:0x8015E2EC; // type:function size:0xCC +fn_8015E3B8 = .text:0x8015E3B8; // type:function size:0x5C +fn_8015E414 = .text:0x8015E414; // type:function size:0xC +fn_8015E420 = .text:0x8015E420; // type:function size:0x5C +fn_8015E47C = .text:0x8015E47C; // type:function size:0x60 +fn_8015E4DC = .text:0x8015E4DC; // type:function size:0x5C +fn_8015E538 = .text:0x8015E538; // type:function size:0xC +fn_8015E544 = .text:0x8015E544; // type:function size:0x114 +fn_8015E658 = .text:0x8015E658; // type:function size:0x5C +fn_8015E6B4 = .text:0x8015E6B4; // type:function size:0x54 +fn_8015E708 = .text:0x8015E708; // type:function size:0x5C +fn_8015E764 = .text:0x8015E764; // type:function size:0x10 +fn_8015E774 = .text:0x8015E774; // type:function size:0x3C +fn_8015E7B0 = .text:0x8015E7B0; // type:function size:0x10 +fn_8015E7C0 = .text:0x8015E7C0; // type:function size:0x48 +fn_8015E808 = .text:0x8015E808; // type:function size:0x8 +fn_8015E810 = .text:0x8015E810; // type:function size:0x8 +fn_8015E818 = .text:0x8015E818; // type:function size:0x64 +fn_8015E87C = .text:0x8015E87C; // type:function size:0x128 +fn_8015E9A4 = .text:0x8015E9A4; // type:function size:0x24 +fn_8015E9C8 = .text:0x8015E9C8; // type:function size:0x70 +fn_8015EA38 = .text:0x8015EA38; // type:function size:0x10 +fn_8015EA48 = .text:0x8015EA48; // type:function size:0x10 +fn_8015EA58 = .text:0x8015EA58; // type:function size:0x48 +fn_8015EAA0 = .text:0x8015EAA0; // type:function size:0x58 +fn_8015EAF8 = .text:0x8015EAF8; // type:function size:0x88 +fn_8015EB80 = .text:0x8015EB80; // type:function size:0xBC +fn_8015EC3C = .text:0x8015EC3C; // type:function size:0x13C +fn_8015ED78 = .text:0x8015ED78; // type:function size:0x64 +fn_8015EDDC = .text:0x8015EDDC; // type:function size:0x68 +fn_8015EE44 = .text:0x8015EE44; // type:function size:0x4 +fn_8015EE48 = .text:0x8015EE48; // type:function size:0x50 +fn_8015EE98 = .text:0x8015EE98; // type:function size:0x130 +fn_8015EFC8 = .text:0x8015EFC8; // type:function size:0x10 +fn_8015EFD8 = .text:0x8015EFD8; // type:function size:0x9C +fn_8015F074 = .text:0x8015F074; // type:function size:0x2C +fn_8015F0A0 = .text:0x8015F0A0; // type:function size:0x58 +fn_8015F0F8 = .text:0x8015F0F8; // type:function size:0x44 +fn_8015F13C = .text:0x8015F13C; // type:function size:0x8 +fn_8015F144 = .text:0x8015F144; // type:function size:0x2C +fn_8015F170 = .text:0x8015F170; // type:function size:0x2C +fn_8015F19C = .text:0x8015F19C; // type:function size:0xC +fn_8015F1A8 = .text:0x8015F1A8; // type:function size:0x350 +fn_8015F4F8 = .text:0x8015F4F8; // type:function size:0x30 +fn_8015F528 = .text:0x8015F528; // type:function size:0x30 +fn_8015F558 = .text:0x8015F558; // type:function size:0x40 +fn_8015F598 = .text:0x8015F598; // type:function size:0x30 +fn_8015F5C8 = .text:0x8015F5C8; // type:function size:0x78 +fn_8015F640 = .text:0x8015F640; // type:function size:0x5C +fn_8015F69C = .text:0x8015F69C; // type:function size:0x30 +fn_8015F6CC = .text:0x8015F6CC; // type:function size:0x60 +fn_8015F72C = .text:0x8015F72C; // type:function size:0x7C +fn_8015F7A8 = .text:0x8015F7A8; // type:function size:0x20 +fn_8015F7C8 = .text:0x8015F7C8; // type:function size:0x30 +fn_8015F7F8 = .text:0x8015F7F8; // type:function size:0x70 +fn_8015F868 = .text:0x8015F868; // type:function size:0x30 +fn_8015F898 = .text:0x8015F898; // type:function size:0x78 +fn_8015F910 = .text:0x8015F910; // type:function size:0x5C +fn_8015F96C = .text:0x8015F96C; // type:function size:0x30 +fn_8015F99C = .text:0x8015F99C; // type:function size:0x30 +fn_8015F9CC = .text:0x8015F9CC; // type:function size:0x40 +fn_8015FA0C = .text:0x8015FA0C; // type:function size:0x64 +fn_8015FA70 = .text:0x8015FA70; // type:function size:0x8 +fn_8015FA78 = .text:0x8015FA78; // type:function size:0x8 +fn_8015FA80 = .text:0x8015FA80; // type:function size:0x2C +fn_8015FAAC = .text:0x8015FAAC; // type:function size:0x38 +fn_8015FAE4 = .text:0x8015FAE4; // type:function size:0x3C +fn_8015FB20 = .text:0x8015FB20; // type:function size:0x18 +fn_8015FB38 = .text:0x8015FB38; // type:function size:0xC +fn_8015FB44 = .text:0x8015FB44; // type:function size:0x20 +fn_8015FB64 = .text:0x8015FB64; // type:function size:0x54 +fn_8015FBB8 = .text:0x8015FBB8; // type:function size:0x80 +fn_8015FC38 = .text:0x8015FC38; // type:function size:0x4 +fn_8015FC3C = .text:0x8015FC3C; // type:function size:0x3C +fn_8015FC78 = .text:0x8015FC78; // type:function size:0x2C +fn_8015FCA4 = .text:0x8015FCA4; // type:function size:0x68 +fn_8015FD0C = .text:0x8015FD0C; // type:function size:0x50 +fn_8015FD5C = .text:0x8015FD5C; // type:function size:0x7C +fn_8015FDD8 = .text:0x8015FDD8; // type:function size:0x4 +fn_8015FDDC = .text:0x8015FDDC; // type:function size:0x3C +fn_8015FE18 = .text:0x8015FE18; // type:function size:0x2C +fn_8015FE44 = .text:0x8015FE44; // type:function size:0x94 +fn_8015FED8 = .text:0x8015FED8; // type:function size:0x4 +fn_8015FEDC = .text:0x8015FEDC; // type:function size:0x88 +fn_8015FF64 = .text:0x8015FF64; // type:function size:0x2C +fn_8015FF90 = .text:0x8015FF90; // type:function size:0x4 +fn_8015FF94 = .text:0x8015FF94; // type:function size:0x3C +fn_8015FFD0 = .text:0x8015FFD0; // type:function size:0x40 +fn_80160010 = .text:0x80160010; // type:function size:0x8C +fn_8016009C = .text:0x8016009C; // type:function size:0x28 +fn_801600C4 = .text:0x801600C4; // type:function size:0x48 +fn_8016010C = .text:0x8016010C; // type:function size:0x3C +fn_80160148 = .text:0x80160148; // type:function size:0x3C +fn_80160184 = .text:0x80160184; // type:function size:0x48 +fn_801601CC = .text:0x801601CC; // type:function size:0x2C +fn_801601F8 = .text:0x801601F8; // type:function size:0x22C +fn_80160424 = .text:0x80160424; // type:function size:0x74 +fn_80160498 = .text:0x80160498; // type:function size:0x74 +fn_8016050C = .text:0x8016050C; // type:function size:0x22C +fn_80160738 = .text:0x80160738; // type:function size:0x80 +fn_801607B8 = .text:0x801607B8; // type:function size:0x4 +fn_801607BC = .text:0x801607BC; // type:function size:0x90 +fn_8016084C = .text:0x8016084C; // type:function size:0x4 +fn_80160850 = .text:0x80160850; // type:function size:0x40 +fn_80160890 = .text:0x80160890; // type:function size:0x8C +fn_8016091C = .text:0x8016091C; // type:function size:0x28 +fn_80160944 = .text:0x80160944; // type:function size:0x80 +fn_801609C4 = .text:0x801609C4; // type:function size:0x74 +fn_80160A38 = .text:0x80160A38; // type:function size:0x7C +fn_80160AB4 = .text:0x80160AB4; // type:function size:0x4 +fn_80160AB8 = .text:0x80160AB8; // type:function size:0x90 +fn_80160B48 = .text:0x80160B48; // type:function size:0x4 +fn_80160B4C = .text:0x80160B4C; // type:function size:0x40 +fn_80160B8C = .text:0x80160B8C; // type:function size:0x8C +fn_80160C18 = .text:0x80160C18; // type:function size:0x28 +fn_80160C40 = .text:0x80160C40; // type:function size:0xC4 +fn_80160D04 = .text:0x80160D04; // type:function size:0xE0 +fn_80160DE4 = .text:0x80160DE4; // type:function size:0x10 +fn_80160DF4 = .text:0x80160DF4; // type:function size:0x10 +fn_80160E04 = .text:0x80160E04; // type:function size:0x10 +fn_80160E14 = .text:0x80160E14; // type:function size:0x10 +fn_80160E24 = .text:0x80160E24; // type:function size:0x10 +fn_80160E34 = .text:0x80160E34; // type:function size:0x10 +fn_80160E44 = .text:0x80160E44; // type:function size:0x10 +fn_80160E54 = .text:0x80160E54; // type:function size:0x10 +fn_80160E64 = .text:0x80160E64; // type:function size:0x10 +fn_80160E74 = .text:0x80160E74; // type:function size:0x8 +fn_80160E7C = .text:0x80160E7C; // type:function size:0x8 +fn_80160E84 = .text:0x80160E84; // type:function size:0x8 +fn_80160E8C = .text:0x80160E8C; // type:function size:0x8 +fn_80160E94 = .text:0x80160E94; // type:function size:0x8 +fn_80160E9C = .text:0x80160E9C; // type:function size:0x8 +fn_80160EA4 = .text:0x80160EA4; // type:function size:0x8 +fn_80160EAC = .text:0x80160EAC; // type:function size:0x8 +fn_80160EB4 = .text:0x80160EB4; // type:function size:0x8 +fn_80160EBC = .text:0x80160EBC; // type:function size:0x58 +fn_80160F14 = .text:0x80160F14; // type:function size:0x20 +fn_80160F34 = .text:0x80160F34; // type:function size:0x2C +fn_80160F60 = .text:0x80160F60; // type:function size:0x4C +fn_80160FAC = .text:0x80160FAC; // type:function size:0x4 +fn_80160FB0 = .text:0x80160FB0; // type:function size:0x3C +fn_80160FEC = .text:0x80160FEC; // type:function size:0x40 +fn_8016102C = .text:0x8016102C; // type:function size:0x7C +fn_801610A8 = .text:0x801610A8; // type:function size:0x58 +fn_80161100 = .text:0x80161100; // type:function size:0x10 +fn_80161110 = .text:0x80161110; // type:function size:0x18 +fn_80161128 = .text:0x80161128; // type:function size:0x10 +fn_80161138 = .text:0x80161138; // type:function size:0x18 +fn_80161150 = .text:0x80161150; // type:function size:0x10 +fn_80161160 = .text:0x80161160; // type:function size:0x94 +fn_801611F4 = .text:0x801611F4; // type:function size:0x80 +fn_80161274 = .text:0x80161274; // type:function size:0x4 +fn_80161278 = .text:0x80161278; // type:function size:0x3C +fn_801612B4 = .text:0x801612B4; // type:function size:0x2C +fn_801612E0 = .text:0x801612E0; // type:function size:0x74 +fn_80161354 = .text:0x80161354; // type:function size:0x10 +fn_80161364 = .text:0x80161364; // type:function size:0x28 +fn_8016138C = .text:0x8016138C; // type:function size:0x28 +fn_801613B4 = .text:0x801613B4; // type:function size:0x24 +fn_801613D8 = .text:0x801613D8; // type:function size:0x28 +fn_80161400 = .text:0x80161400; // type:function size:0x10 +fn_80161410 = .text:0x80161410; // type:function size:0x78 +fn_80161488 = .text:0x80161488; // type:function size:0x48 +fn_801614D0 = .text:0x801614D0; // type:function size:0x4C +fn_8016151C = .text:0x8016151C; // type:function size:0x30 +fn_8016154C = .text:0x8016154C; // type:function size:0x30 +fn_8016157C = .text:0x8016157C; // type:function size:0x40 +fn_801615BC = .text:0x801615BC; // type:function size:0x8C +fn_80161648 = .text:0x80161648; // type:function size:0x4 +fn_8016164C = .text:0x8016164C; // type:function size:0x88 +fn_801616D4 = .text:0x801616D4; // type:function size:0x2C +fn_80161700 = .text:0x80161700; // type:function size:0x44 +fn_80161744 = .text:0x80161744; // type:function size:0x88 +fn_801617CC = .text:0x801617CC; // type:function size:0xF0 +fn_801618BC = .text:0x801618BC; // type:function size:0x30 +fn_801618EC = .text:0x801618EC; // type:function size:0xC0 +fn_801619AC = .text:0x801619AC; // type:function size:0x34 +fn_801619E0 = .text:0x801619E0; // type:function size:0x98 +fn_80161A78 = .text:0x80161A78; // type:function size:0xEC +fn_80161B64 = .text:0x80161B64; // type:function size:0xA8 +fn_80161C0C = .text:0x80161C0C; // type:function size:0x6C +fn_80161C78 = .text:0x80161C78; // type:function size:0x30 +fn_80161CA8 = .text:0x80161CA8; // type:function size:0x64 +fn_80161D0C = .text:0x80161D0C; // type:function size:0x7C +fn_80161D88 = .text:0x80161D88; // type:function size:0x18 +fn_80161DA0 = .text:0x80161DA0; // type:function size:0xA4 +fn_80161E44 = .text:0x80161E44; // type:function size:0x6C +fn_80161EB0 = .text:0x80161EB0; // type:function size:0xC +fn_80161EBC = .text:0x80161EBC; // type:function size:0x58 +fn_80161F14 = .text:0x80161F14; // type:function size:0xE0 +fn_80161FF4 = .text:0x80161FF4; // type:function size:0x94 +fn_80162088 = .text:0x80162088; // type:function size:0x7C +fn_80162104 = .text:0x80162104; // type:function size:0x98 +fn_8016219C = .text:0x8016219C; // type:function size:0x78 +fn_80162214 = .text:0x80162214; // type:function size:0x58 +fn_8016226C = .text:0x8016226C; // type:function size:0x64 +fn_801622D0 = .text:0x801622D0; // type:function size:0x28 +fn_801622F8 = .text:0x801622F8; // type:function size:0x68 +fn_80162360 = .text:0x80162360; // type:function size:0x30 +fn_80162390 = .text:0x80162390; // type:function size:0x6C +fn_801623FC = .text:0x801623FC; // type:function size:0x9C +fn_80162498 = .text:0x80162498; // type:function size:0x30 +fn_801624C8 = .text:0x801624C8; // type:function size:0x154 +fn_8016261C = .text:0x8016261C; // type:function size:0x18 +fn_80162634 = .text:0x80162634; // type:function size:0x4 +fn_80162638 = .text:0x80162638; // type:function size:0xC +fn_80162644 = .text:0x80162644; // type:function size:0x14 +fn_80162658 = .text:0x80162658; // type:function size:0x14 +fn_8016266C = .text:0x8016266C; // type:function size:0x20 +fn_8016268C = .text:0x8016268C; // type:function size:0x4C +fn_801626D8 = .text:0x801626D8; // type:function size:0x48 +fn_80162720 = .text:0x80162720; // type:function size:0x2C +fn_8016274C = .text:0x8016274C; // type:function size:0x38 +fn_80162784 = .text:0x80162784; // type:function size:0x48 +fn_801627CC = .text:0x801627CC; // type:function size:0x54 +fn_80162820 = .text:0x80162820; // type:function size:0x54 +fn_80162874 = .text:0x80162874; // type:function size:0x58 +fn_801628CC = .text:0x801628CC; // type:function size:0x58 +fn_80162924 = .text:0x80162924; // type:function size:0x114 +fn_80162A38 = .text:0x80162A38; // type:function size:0x60 +fn_80162A98 = .text:0x80162A98; // type:function size:0x5C +fn_80162AF4 = .text:0x80162AF4; // type:function size:0x54 +fn_80162B48 = .text:0x80162B48; // type:function size:0x5C +fn_80162BA4 = .text:0x80162BA4; // type:function size:0x114 +fn_80162CB8 = .text:0x80162CB8; // type:function size:0x60 +fn_80162D18 = .text:0x80162D18; // type:function size:0x5C +fn_80162D74 = .text:0x80162D74; // type:function size:0x54 +fn_80162DC8 = .text:0x80162DC8; // type:function size:0x5C +fn_80162E24 = .text:0x80162E24; // type:function size:0x68 +fn_80162E8C = .text:0x80162E8C; // type:function size:0x2C +fn_80162EB8 = .text:0x80162EB8; // type:function size:0x58 +fn_80162F10 = .text:0x80162F10; // type:function size:0x68 +fn_80162F78 = .text:0x80162F78; // type:function size:0x2C +fn_80162FA4 = .text:0x80162FA4; // type:function size:0x58 +fn_80162FFC = .text:0x80162FFC; // type:function size:0x190 +fn_8016318C = .text:0x8016318C; // type:function size:0x54 +fn_801631E0 = .text:0x801631E0; // type:function size:0x28 +fn_80163208 = .text:0x80163208; // type:function size:0x68 +fn_80163270 = .text:0x80163270; // type:function size:0x114 +fn_80163384 = .text:0x80163384; // type:function size:0x60 +fn_801633E4 = .text:0x801633E4; // type:function size:0x5C +fn_80163440 = .text:0x80163440; // type:function size:0x54 +fn_80163494 = .text:0x80163494; // type:function size:0x18C +fn_80163620 = .text:0x80163620; // type:function size:0x54 +fn_80163674 = .text:0x80163674; // type:function size:0x28 +fn_8016369C = .text:0x8016369C; // type:function size:0x68 +fn_80163704 = .text:0x80163704; // type:function size:0x38 +fn_8016373C = .text:0x8016373C; // type:function size:0x114 +fn_80163850 = .text:0x80163850; // type:function size:0x5C +fn_801638AC = .text:0x801638AC; // type:function size:0x5C +fn_80163908 = .text:0x80163908; // type:function size:0x54 +fn_8016395C = .text:0x8016395C; // type:function size:0x60 +fn_801639BC = .text:0x801639BC; // type:function size:0x58 +fn_80163A14 = .text:0x80163A14; // type:function size:0x60 +fn_80163A74 = .text:0x80163A74; // type:function size:0x58 +fn_80163ACC = .text:0x80163ACC; // type:function size:0x58 +fn_80163B24 = .text:0x80163B24; // type:function size:0x50 +fn_80163B74 = .text:0x80163B74; // type:function size:0x44 +fn_80163BB8 = .text:0x80163BB8; // type:function size:0x3C +fn_80163BF4 = .text:0x80163BF4; // type:function size:0x70 +fn_80163C64 = .text:0x80163C64; // type:function size:0x74 +fn_80163CD8 = .text:0x80163CD8; // type:function size:0x7C +fn_80163D54 = .text:0x80163D54; // type:function size:0x1D0 +fn_80163F24 = .text:0x80163F24; // type:function size:0x44 +fn_80163F68 = .text:0x80163F68; // type:function size:0x110 +fn_80164078 = .text:0x80164078; // type:function size:0x58 +fn_801640D0 = .text:0x801640D0; // type:function size:0x60 +fn_80164130 = .text:0x80164130; // type:function size:0x8 +fn_80164138 = .text:0x80164138; // type:function size:0x4 +fn_8016413C = .text:0x8016413C; // type:function size:0x40 +fn_8016417C = .text:0x8016417C; // type:function size:0x74 +fn_801641F0 = .text:0x801641F0; // type:function size:0x4 +fn_801641F4 = .text:0x801641F4; // type:function size:0x58 +fn_8016424C = .text:0x8016424C; // type:function size:0x18 +fn_80164264 = .text:0x80164264; // type:function size:0xDC +fn_80164340 = .text:0x80164340; // type:function size:0x2A4 +fn_801645E4 = .text:0x801645E4; // type:function size:0x6C +fn_80164650 = .text:0x80164650; // type:function size:0xD0 +fn_80164720 = .text:0x80164720; // type:function size:0x74 +fn_80164794 = .text:0x80164794; // type:function size:0x4 +fn_80164798 = .text:0x80164798; // type:function size:0xD4 +fn_8016486C = .text:0x8016486C; // type:function size:0x118 +fn_80164984 = .text:0x80164984; // type:function size:0x2C +fn_801649B0 = .text:0x801649B0; // type:function size:0x30 +fn_801649E0 = .text:0x801649E0; // type:function size:0xA0 +fn_80164A80 = .text:0x80164A80; // type:function size:0x4 +fn_80164A84 = .text:0x80164A84; // type:function size:0x58 +fn_80164ADC = .text:0x80164ADC; // type:function size:0x44 +fn_80164B20 = .text:0x80164B20; // type:function size:0x8 +fn_80164B28 = .text:0x80164B28; // type:function size:0x388 +fn_80164EB0 = .text:0x80164EB0; // type:function size:0x6C +fn_80164F1C = .text:0x80164F1C; // type:function size:0x2C +fn_80164F48 = .text:0x80164F48; // type:function size:0x158 +fn_801650A0 = .text:0x801650A0; // type:function size:0x44 +fn_801650E4 = .text:0x801650E4; // type:function size:0x8 +fn_801650EC = .text:0x801650EC; // type:function size:0x104 +fn_801651F0 = .text:0x801651F0; // type:function size:0x5C +fn_8016524C = .text:0x8016524C; // type:function size:0x10 +fn_8016525C = .text:0x8016525C; // type:function size:0x60 +fn_801652BC = .text:0x801652BC; // type:function size:0x104 +fn_801653C0 = .text:0x801653C0; // type:function size:0xD4 +fn_80165494 = .text:0x80165494; // type:function size:0x38 +fn_801654CC = .text:0x801654CC; // type:function size:0x4 +fn_801654D0 = .text:0x801654D0; // type:function size:0x44 +fn_80165514 = .text:0x80165514; // type:function size:0x10 +fn_80165524 = .text:0x80165524; // type:function size:0x34 +fn_80165558 = .text:0x80165558; // type:function size:0x14 +fn_8016556C = .text:0x8016556C; // type:function size:0xC0 +fn_8016562C = .text:0x8016562C; // type:function size:0x8 +fn_80165634 = .text:0x80165634; // type:function size:0x8 +fn_8016563C = .text:0x8016563C; // type:function size:0x4C +fn_80165688 = .text:0x80165688; // type:function size:0xA8 +fn_80165730 = .text:0x80165730; // type:function size:0x8 +fn_80165738 = .text:0x80165738; // type:function size:0x60 +Handle__18SyncGameStartPanelFP9DataArrayb = .text:0x80165798; // type:function size:0x38C +fn_80165B24 = .text:0x80165B24; // type:function size:0x3C +Type__19LockStepCompleteMsgFv = .text:0x80165B60; // type:function size:0x4C +fn_80165BAC = .text:0x80165BAC; // type:function size:0x3C +fn_80165BE8 = .text:0x80165BE8; // type:function size:0x4C +__ct__22SessionDisconnectedMsgFP9DataArray = .text:0x80165C34; // type:function size:0x3C +fn_80165C70 = .text:0x80165C70; // type:function size:0x3C +fn_80165CAC = .text:0x80165CAC; // type:function size:0x134 +fn_80165DE0 = .text:0x80165DE0; // type:function size:0x4 +fn_80165DE4 = .text:0x80165DE4; // type:function size:0x14 +fn_80165DF8 = .text:0x80165DF8; // type:function size:0x14 +fn_80165E0C = .text:0x80165E0C; // type:function size:0x14 +fn_80165E20 = .text:0x80165E20; // type:function size:0x14 +fn_80165E34 = .text:0x80165E34; // type:function size:0x14 +fn_80165E48 = .text:0x80165E48; // type:function size:0x14 +fn_80165E5C = .text:0x80165E5C; // type:function size:0x14 +fn_80165E70 = .text:0x80165E70; // type:function size:0xE0 +fn_80165F50 = .text:0x80165F50; // type:function size:0x40 +fn_80165F90 = .text:0x80165F90; // type:function size:0x138 +fn_801660C8 = .text:0x801660C8; // type:function size:0x14 +fn_801660DC = .text:0x801660DC; // type:function size:0x1AC +fn_80166288 = .text:0x80166288; // type:function size:0xF8 +fn_80166380 = .text:0x80166380; // type:function size:0xA0 +fn_80166420 = .text:0x80166420; // type:function size:0x4 +fn_80166424 = .text:0x80166424; // type:function size:0x30 +fn_80166454 = .text:0x80166454; // type:function size:0x294 +fn_801666E8 = .text:0x801666E8; // type:function size:0x8 +fn_801666F0 = .text:0x801666F0; // type:function size:0x8 +fn_801666F8 = .text:0x801666F8; // type:function size:0xC +fn_80166704 = .text:0x80166704; // type:function size:0xA0 +fn_801667A4 = .text:0x801667A4; // type:function size:0x6C +fn_80166810 = .text:0x80166810; // type:function size:0xF0 +fn_80166900 = .text:0x80166900; // type:function size:0x60 +fn_80166960 = .text:0x80166960; // type:function size:0x60 +fn_801669C0 = .text:0x801669C0; // type:function size:0x10 +fn_801669D0 = .text:0x801669D0; // type:function size:0x20 +fn_801669F0 = .text:0x801669F0; // type:function size:0x358 +fn_80166D48 = .text:0x80166D48; // type:function size:0x10 +fn_80166D58 = .text:0x80166D58; // type:function size:0xE4 +fn_80166E3C = .text:0x80166E3C; // type:function size:0x130 +fn_80166F6C = .text:0x80166F6C; // type:function size:0x1B0 +fn_8016711C = .text:0x8016711C; // type:function size:0xE8 +fn_80167204 = .text:0x80167204; // type:function size:0x7C +fn_80167280 = .text:0x80167280; // type:function size:0x64 +fn_801672E4 = .text:0x801672E4; // type:function size:0x264 +fn_80167548 = .text:0x80167548; // type:function size:0x1D0 +fn_80167718 = .text:0x80167718; // type:function size:0x20C +Handle__17TambourineManagerFP9DataArrayb = .text:0x80167924; // type:function size:0x160 +fn_80167A84 = .text:0x80167A84; // type:function size:0xB8 +fn_80167B3C = .text:0x80167B3C; // type:function size:0x5C +fn_80167B98 = .text:0x80167B98; // type:function size:0x58 +fn_80167BF0 = .text:0x80167BF0; // type:function size:0x80 +fn_80167C70 = .text:0x80167C70; // type:function size:0x80 +fn_80167CF0 = .text:0x80167CF0; // type:function size:0x58 +fn_80167D48 = .text:0x80167D48; // type:function size:0x54 +fn_80167D9C = .text:0x80167D9C; // type:function size:0x5C +fn_80167DF8 = .text:0x80167DF8; // type:function size:0x6C +fn_80167E64 = .text:0x80167E64; // type:function size:0x28 +fn_80167E8C = .text:0x80167E8C; // type:function size:0x8 +fn_80167E94 = .text:0x80167E94; // type:function size:0x3C +fn_80167ED0 = .text:0x80167ED0; // type:function size:0x90 +fn_80167F60 = .text:0x80167F60; // type:function size:0x30 +fn_80167F90 = .text:0x80167F90; // type:function size:0x30 +fn_80167FC0 = .text:0x80167FC0; // type:function size:0x40 +fn_80168000 = .text:0x80168000; // type:function size:0xAC +fn_801680AC = .text:0x801680AC; // type:function size:0x5C +fn_80168108 = .text:0x80168108; // type:function size:0x194 +fn_8016829C = .text:0x8016829C; // type:function size:0x8 +fn_801682A4 = .text:0x801682A4; // type:function size:0x4 +fn_801682A8 = .text:0x801682A8; // type:function size:0x90 +fn_80168338 = .text:0x80168338; // type:function size:0x4 +fn_8016833C = .text:0x8016833C; // type:function size:0x40 +fn_8016837C = .text:0x8016837C; // type:function size:0x8C +fn_80168408 = .text:0x80168408; // type:function size:0x8 +fn_80168410 = .text:0x80168410; // type:function size:0x2C +fn_8016843C = .text:0x8016843C; // type:function size:0x58 +fn_80168494 = .text:0x80168494; // type:function size:0x28 +fn_801684BC = .text:0x801684BC; // type:function size:0x68 +fn_80168524 = .text:0x80168524; // type:function size:0xC +fn_80168530 = .text:0x80168530; // type:function size:0xE4 +fn_80168614 = .text:0x80168614; // type:function size:0x8 +fn_8016861C = .text:0x8016861C; // type:function size:0xBC +fn_801686D8 = .text:0x801686D8; // type:function size:0x74 +fn_8016874C = .text:0x8016874C; // type:function size:0x100 +fn_8016884C = .text:0x8016884C; // type:function size:0x8 +fn_80168854 = .text:0x80168854; // type:function size:0x110 +fn_80168964 = .text:0x80168964; // type:function size:0xC0 +fn_80168A24 = .text:0x80168A24; // type:function size:0x8 +fn_80168A2C = .text:0x80168A2C; // type:function size:0x7C +fn_80168AA8 = .text:0x80168AA8; // type:function size:0x94 +fn_80168B3C = .text:0x80168B3C; // type:function size:0xD4 +fn_80168C10 = .text:0x80168C10; // type:function size:0x8 +fn_80168C18 = .text:0x80168C18; // type:function size:0x78 +fn_80168C90 = .text:0x80168C90; // type:function size:0x24 +fn_80168CB4 = .text:0x80168CB4; // type:function size:0x94 +fn_80168D48 = .text:0x80168D48; // type:function size:0xD4 +fn_80168E1C = .text:0x80168E1C; // type:function size:0x4 +fn_80168E20 = .text:0x80168E20; // type:function size:0x4 +fn_80168E24 = .text:0x80168E24; // type:function size:0xC +fn_80168E30 = .text:0x80168E30; // type:function size:0x40 +fn_80168E70 = .text:0x80168E70; // type:function size:0x38 +fn_80168EA8 = .text:0x80168EA8; // type:function size:0xA4 +fn_80168F4C = .text:0x80168F4C; // type:function size:0x54 +fn_80168FA0 = .text:0x80168FA0; // type:function size:0x74 +fn_80169014 = .text:0x80169014; // type:function size:0x120 +fn_80169134 = .text:0x80169134; // type:function size:0x70 +fn_801691A4 = .text:0x801691A4; // type:function size:0x6C +fn_80169210 = .text:0x80169210; // type:function size:0x84 +fn_80169294 = .text:0x80169294; // type:function size:0x5C +fn_801692F0 = .text:0x801692F0; // type:function size:0x168 +fn_80169458 = .text:0x80169458; // type:function size:0x68 +fn_801694C0 = .text:0x801694C0; // type:function size:0x2C +fn_801694EC = .text:0x801694EC; // type:function size:0x19C +fn_80169688 = .text:0x80169688; // type:function size:0x5C +fn_801696E4 = .text:0x801696E4; // type:function size:0x10 +fn_801696F4 = .text:0x801696F4; // type:function size:0x54 +fn_80169748 = .text:0x80169748; // type:function size:0x28 +fn_80169770 = .text:0x80169770; // type:function size:0x68 +fn_801697D8 = .text:0x801697D8; // type:function size:0x5C +fn_80169834 = .text:0x80169834; // type:function size:0x50 +fn_80169884 = .text:0x80169884; // type:function size:0x10 +fn_80169894 = .text:0x80169894; // type:function size:0x114 +fn_801699A8 = .text:0x801699A8; // type:function size:0x60 +fn_80169A08 = .text:0x80169A08; // type:function size:0x5C +fn_80169A64 = .text:0x80169A64; // type:function size:0x54 +fn_80169AB8 = .text:0x80169AB8; // type:function size:0x10 +fn_80169AC8 = .text:0x80169AC8; // type:function size:0x40 +fn_80169B08 = .text:0x80169B08; // type:function size:0x3C +fn_80169B44 = .text:0x80169B44; // type:function size:0x80 +fn_80169BC4 = .text:0x80169BC4; // type:function size:0x90 +fn_80169C54 = .text:0x80169C54; // type:function size:0x9C +fn_80169CF0 = .text:0x80169CF0; // type:function size:0xE8 +fn_80169DD8 = .text:0x80169DD8; // type:function size:0x18 +fn_80169DF0 = .text:0x80169DF0; // type:function size:0x18 +fn_80169E08 = .text:0x80169E08; // type:function size:0xE0 +fn_80169EE8 = .text:0x80169EE8; // type:function size:0xE0 +fn_80169FC8 = .text:0x80169FC8; // type:function size:0x240 +fn_8016A208 = .text:0x8016A208; // type:function size:0x188 +fn_8016A390 = .text:0x8016A390; // type:function size:0x94 +fn_8016A424 = .text:0x8016A424; // type:function size:0xE0 +fn_8016A504 = .text:0x8016A504; // type:function size:0x12C +fn_8016A630 = .text:0x8016A630; // type:function size:0x94 +fn_8016A6C4 = .text:0x8016A6C4; // type:function size:0x3C +fn_8016A700 = .text:0x8016A700; // type:function size:0x58 +fn_8016A758 = .text:0x8016A758; // type:function size:0xE0 +fn_8016A838 = .text:0x8016A838; // type:function size:0xE0 +fn_8016A918 = .text:0x8016A918; // type:function size:0xE0 +fn_8016A9F8 = .text:0x8016A9F8; // type:function size:0xF4 +fn_8016AAEC = .text:0x8016AAEC; // type:function size:0x34 +fn_8016AB20 = .text:0x8016AB20; // type:function size:0x44 +fn_8016AB64 = .text:0x8016AB64; // type:function size:0x58 +fn_8016ABBC = .text:0x8016ABBC; // type:function size:0x4 +fn_8016ABC0 = .text:0x8016ABC0; // type:function size:0x64 +fn_8016AC24 = .text:0x8016AC24; // type:function size:0x18 +fn_8016AC3C = .text:0x8016AC3C; // type:function size:0x104 +fn_8016AD40 = .text:0x8016AD40; // type:function size:0x104 +fn_8016AE44 = .text:0x8016AE44; // type:function size:0xE0 +fn_8016AF24 = .text:0x8016AF24; // type:function size:0x104 +fn_8016B028 = .text:0x8016B028; // type:function size:0x140 +fn_8016B168 = .text:0x8016B168; // type:function size:0x94 +fn_8016B1FC = .text:0x8016B1FC; // type:function size:0x108 +fn_8016B304 = .text:0x8016B304; // type:function size:0x48 +fn_8016B34C = .text:0x8016B34C; // type:function size:0x74 +fn_8016B3C0 = .text:0x8016B3C0; // type:function size:0x198 +fn_8016B558 = .text:0x8016B558; // type:function size:0x40 +fn_8016B598 = .text:0x8016B598; // type:function size:0x3C +fn_8016B5D4 = .text:0x8016B5D4; // type:function size:0x58 +fn_8016B62C = .text:0x8016B62C; // type:function size:0x13C +fn_8016B768 = .text:0x8016B768; // type:function size:0xE0 +fn_8016B848 = .text:0x8016B848; // type:function size:0xE0 +fn_8016B928 = .text:0x8016B928; // type:function size:0xE8 +fn_8016BA10 = .text:0x8016BA10; // type:function size:0xE8 +fn_8016BAF8 = .text:0x8016BAF8; // type:function size:0x34 +fn_8016BB2C = .text:0x8016BB2C; // type:function size:0x90 +fn_8016BBBC = .text:0x8016BBBC; // type:function size:0x9C +fn_8016BC58 = .text:0x8016BC58; // type:function size:0x8 +fn_8016BC60 = .text:0x8016BC60; // type:function size:0x74 +fn_8016BCD4 = .text:0x8016BCD4; // type:function size:0x14 +fn_8016BCE8 = .text:0x8016BCE8; // type:function size:0x14 +fn_8016BCFC = .text:0x8016BCFC; // type:function size:0x14 +fn_8016BD10 = .text:0x8016BD10; // type:function size:0x84 +fn_8016BD94 = .text:0x8016BD94; // type:function size:0x8 +fn_8016BD9C = .text:0x8016BD9C; // type:function size:0x8 +fn_8016BDA4 = .text:0x8016BDA4; // type:function size:0x168 +fn_8016BF0C = .text:0x8016BF0C; // type:function size:0x8 +fn_8016BF14 = .text:0x8016BF14; // type:function size:0xB0 +fn_8016BFC4 = .text:0x8016BFC4; // type:function size:0x130 +fn_8016C0F4 = .text:0x8016C0F4; // type:function size:0x8 +fn_8016C0FC = .text:0x8016C0FC; // type:function size:0x8 +fn_8016C104 = .text:0x8016C104; // type:function size:0x2C +fn_8016C130 = .text:0x8016C130; // type:function size:0x8 +fn_8016C138 = .text:0x8016C138; // type:function size:0x8 +fn_8016C140 = .text:0x8016C140; // type:function size:0xF4 +fn_8016C234 = .text:0x8016C234; // type:function size:0x70 +fn_8016C2A4 = .text:0x8016C2A4; // type:function size:0x20 +fn_8016C2C4 = .text:0x8016C2C4; // type:function size:0x20 +fn_8016C2E4 = .text:0x8016C2E4; // type:function size:0x9C +fn_8016C380 = .text:0x8016C380; // type:function size:0x14 +fn_8016C394 = .text:0x8016C394; // type:function size:0x7C +fn_8016C410 = .text:0x8016C410; // type:function size:0x14 +fn_8016C424 = .text:0x8016C424; // type:function size:0x4 +fn_8016C428 = .text:0x8016C428; // type:function size:0x78 +fn_8016C4A0 = .text:0x8016C4A0; // type:function size:0x14 +fn_8016C4B4 = .text:0x8016C4B4; // type:function size:0x78 +fn_8016C52C = .text:0x8016C52C; // type:function size:0x14 +fn_8016C540 = .text:0x8016C540; // type:function size:0x58 +fn_8016C598 = .text:0x8016C598; // type:function size:0x68 +fn_8016C600 = .text:0x8016C600; // type:function size:0x14 +fn_8016C614 = .text:0x8016C614; // type:function size:0x9C +fn_8016C6B0 = .text:0x8016C6B0; // type:function size:0x10 +fn_8016C6C0 = .text:0x8016C6C0; // type:function size:0xA4 +fn_8016C764 = .text:0x8016C764; // type:function size:0x324 +fn_8016CA88 = .text:0x8016CA88; // type:function size:0x3C +fn_8016CAC4 = .text:0x8016CAC4; // type:function size:0x3C +fn_8016CB00 = .text:0x8016CB00; // type:function size:0x3C +fn_8016CB3C = .text:0x8016CB3C; // type:function size:0x3C +fn_8016CB78 = .text:0x8016CB78; // type:function size:0x3C +fn_8016CBB4 = .text:0x8016CBB4; // type:function size:0x3C +fn_8016CBF0 = .text:0x8016CBF0; // type:function size:0x3C +fn_8016CC2C = .text:0x8016CC2C; // type:function size:0x3C +fn_8016CC68 = .text:0x8016CC68; // type:function size:0x3C +fn_8016CCA4 = .text:0x8016CCA4; // type:function size:0x80 +fn_8016CD24 = .text:0x8016CD24; // type:function size:0x44 +fn_8016CD68 = .text:0x8016CD68; // type:function size:0x8 +fn_8016CD70 = .text:0x8016CD70; // type:function size:0x2C +fn_8016CD9C = .text:0x8016CD9C; // type:function size:0x2C +fn_8016CDC8 = .text:0x8016CDC8; // type:function size:0xC +fn_8016CDD4 = .text:0x8016CDD4; // type:function size:0x6C +fn_8016CE40 = .text:0x8016CE40; // type:function size:0x64 +fn_8016CEA4 = .text:0x8016CEA4; // type:function size:0x8 +fn_8016CEAC = .text:0x8016CEAC; // type:function size:0x2C +fn_8016CED8 = .text:0x8016CED8; // type:function size:0x2C +fn_8016CF04 = .text:0x8016CF04; // type:function size:0xC +fn_8016CF10 = .text:0x8016CF10; // type:function size:0x44 +fn_8016CF54 = .text:0x8016CF54; // type:function size:0x2C +fn_8016CF80 = .text:0x8016CF80; // type:function size:0x2C +fn_8016CFAC = .text:0x8016CFAC; // type:function size:0xC +fn_8016CFB8 = .text:0x8016CFB8; // type:function size:0xC +fn_8016CFC4 = .text:0x8016CFC4; // type:function size:0x44 +fn_8016D008 = .text:0x8016D008; // type:function size:0x2C +fn_8016D034 = .text:0x8016D034; // type:function size:0x2C +fn_8016D060 = .text:0x8016D060; // type:function size:0xC +fn_8016D06C = .text:0x8016D06C; // type:function size:0x78 +fn_8016D0E4 = .text:0x8016D0E4; // type:function size:0x78 +fn_8016D15C = .text:0x8016D15C; // type:function size:0x2C +fn_8016D188 = .text:0x8016D188; // type:function size:0x2C +fn_8016D1B4 = .text:0x8016D1B4; // type:function size:0xC +fn_8016D1C0 = .text:0x8016D1C0; // type:function size:0xCC +fn_8016D28C = .text:0x8016D28C; // type:function size:0x2C +fn_8016D2B8 = .text:0x8016D2B8; // type:function size:0x2C +fn_8016D2E4 = .text:0x8016D2E4; // type:function size:0xC +fn_8016D2F0 = .text:0x8016D2F0; // type:function size:0x44 +fn_8016D334 = .text:0x8016D334; // type:function size:0x8 +fn_8016D33C = .text:0x8016D33C; // type:function size:0x2C +fn_8016D368 = .text:0x8016D368; // type:function size:0x2C +fn_8016D394 = .text:0x8016D394; // type:function size:0xC +fn_8016D3A0 = .text:0x8016D3A0; // type:function size:0x44 +fn_8016D3E4 = .text:0x8016D3E4; // type:function size:0x2C +fn_8016D410 = .text:0x8016D410; // type:function size:0x2C +fn_8016D43C = .text:0x8016D43C; // type:function size:0x2C +fn_8016D468 = .text:0x8016D468; // type:function size:0x10 +fn_8016D478 = .text:0x8016D478; // type:function size:0x40 +fn_8016D4B8 = .text:0x8016D4B8; // type:function size:0xA8 +fn_8016D560 = .text:0x8016D560; // type:function size:0x54 +fn_8016D5B4 = .text:0x8016D5B4; // type:function size:0xC4 +fn_8016D678 = .text:0x8016D678; // type:function size:0xC0 +fn_8016D738 = .text:0x8016D738; // type:function size:0x64 +fn_8016D79C = .text:0x8016D79C; // type:function size:0x6C +fn_8016D808 = .text:0x8016D808; // type:function size:0xA0 +fn_8016D8A8 = .text:0x8016D8A8; // type:function size:0x68 +fn_8016D910 = .text:0x8016D910; // type:function size:0x58 +fn_8016D968 = .text:0x8016D968; // type:function size:0x18 +fn_8016D980 = .text:0x8016D980; // type:function size:0x50 +fn_8016D9D0 = .text:0x8016D9D0; // type:function size:0x4 +fn_8016D9D4 = .text:0x8016D9D4; // type:function size:0x1C +fn_8016D9F0 = .text:0x8016D9F0; // type:function size:0x5C +fn_8016DA4C = .text:0x8016DA4C; // type:function size:0x1C +fn_8016DA68 = .text:0x8016DA68; // type:function size:0x4C +fn_8016DAB4 = .text:0x8016DAB4; // type:function size:0x58 +fn_8016DB0C = .text:0x8016DB0C; // type:function size:0xDC +fn_8016DBE8 = .text:0x8016DBE8; // type:function size:0x124 +fn_8016DD0C = .text:0x8016DD0C; // type:function size:0x84 +fn_8016DD90 = .text:0x8016DD90; // type:function size:0x8C +fn_8016DE1C = .text:0x8016DE1C; // type:function size:0x28 +fn_8016DE44 = .text:0x8016DE44; // type:function size:0x40 +fn_8016DE84 = .text:0x8016DE84; // type:function size:0x58 +fn_8016DEDC = .text:0x8016DEDC; // type:function size:0x60 +fn_8016DF3C = .text:0x8016DF3C; // type:function size:0x58 +fn_8016DF94 = .text:0x8016DF94; // type:function size:0x58 +fn_8016DFEC = .text:0x8016DFEC; // type:function size:0x50 +fn_8016E03C = .text:0x8016E03C; // type:function size:0x44 +fn_8016E080 = .text:0x8016E080; // type:function size:0x3C +fn_8016E0BC = .text:0x8016E0BC; // type:function size:0x70 +fn_8016E12C = .text:0x8016E12C; // type:function size:0x5C +fn_8016E188 = .text:0x8016E188; // type:function size:0xFC +fn_8016E284 = .text:0x8016E284; // type:function size:0x14 +fn_8016E298 = .text:0x8016E298; // type:function size:0x108 +fn_8016E3A0 = .text:0x8016E3A0; // type:function size:0x58 +fn_8016E3F8 = .text:0x8016E3F8; // type:function size:0x1C +fn_8016E414 = .text:0x8016E414; // type:function size:0x8 +fn_8016E41C = .text:0x8016E41C; // type:function size:0x4 +fn_8016E420 = .text:0x8016E420; // type:function size:0x40 +fn_8016E460 = .text:0x8016E460; // type:function size:0x80 +fn_8016E4E0 = .text:0x8016E4E0; // type:function size:0x4 +fn_8016E4E4 = .text:0x8016E4E4; // type:function size:0x24 +fn_8016E508 = .text:0x8016E508; // type:function size:0x24 +fn_8016E52C = .text:0x8016E52C; // type:function size:0x3C +fn_8016E568 = .text:0x8016E568; // type:function size:0x7C +fn_8016E5E4 = .text:0x8016E5E4; // type:function size:0x30 +fn_8016E614 = .text:0x8016E614; // type:function size:0x30 +fn_8016E644 = .text:0x8016E644; // type:function size:0x40 +fn_8016E684 = .text:0x8016E684; // type:function size:0x58 +fn_8016E6DC = .text:0x8016E6DC; // type:function size:0x80 +fn_8016E75C = .text:0x8016E75C; // type:function size:0x80 +fn_8016E7DC = .text:0x8016E7DC; // type:function size:0x58 +fn_8016E834 = .text:0x8016E834; // type:function size:0x54 +fn_8016E888 = .text:0x8016E888; // type:function size:0x5C +fn_8016E8E4 = .text:0x8016E8E4; // type:function size:0x6C +fn_8016E950 = .text:0x8016E950; // type:function size:0x28 +fn_8016E978 = .text:0x8016E978; // type:function size:0x8 +fn_8016E980 = .text:0x8016E980; // type:function size:0x3C +fn_8016E9BC = .text:0x8016E9BC; // type:function size:0x30 +fn_8016E9EC = .text:0x8016E9EC; // type:function size:0x30 +fn_8016EA1C = .text:0x8016EA1C; // type:function size:0x40 +fn_8016EA5C = .text:0x8016EA5C; // type:function size:0x58 +fn_8016EAB4 = .text:0x8016EAB4; // type:function size:0x4 +fn_8016EAB8 = .text:0x8016EAB8; // type:function size:0x4 +fn_8016EABC = .text:0x8016EABC; // type:function size:0xEC +fn_8016EBA8 = .text:0x8016EBA8; // type:function size:0x24 +fn_8016EBCC = .text:0x8016EBCC; // type:function size:0x24 +fn_8016EBF0 = .text:0x8016EBF0; // type:function size:0x84 +fn_8016EC74 = .text:0x8016EC74; // type:function size:0x38 +fn_8016ECAC = .text:0x8016ECAC; // type:function size:0x48 +fn_8016ECF4 = .text:0x8016ECF4; // type:function size:0x12C +fn_8016EE20 = .text:0x8016EE20; // type:function size:0x30 +fn_8016EE50 = .text:0x8016EE50; // type:function size:0x30 +fn_8016EE80 = .text:0x8016EE80; // type:function size:0x40 +fn_8016EEC0 = .text:0x8016EEC0; // type:function size:0x140 +fn_8016F000 = .text:0x8016F000; // type:function size:0x158 +fn_8016F158 = .text:0x8016F158; // type:function size:0xBC +fn_8016F214 = .text:0x8016F214; // type:function size:0x4 +fn_8016F218 = .text:0x8016F218; // type:function size:0x88 +fn_8016F2A0 = .text:0x8016F2A0; // type:function size:0x2C +fn_8016F2CC = .text:0x8016F2CC; // type:function size:0x10 +fn_8016F2DC = .text:0x8016F2DC; // type:function size:0x48 +fn_8016F324 = .text:0x8016F324; // type:function size:0x48 +fn_8016F36C = .text:0x8016F36C; // type:function size:0x4 +fn_8016F370 = .text:0x8016F370; // type:function size:0x4 +fn_8016F374 = .text:0x8016F374; // type:function size:0x3C +fn_8016F3B0 = .text:0x8016F3B0; // type:function size:0x40 +fn_8016F3F0 = .text:0x8016F3F0; // type:function size:0x8C +fn_8016F47C = .text:0x8016F47C; // type:function size:0x8 +fn_8016F484 = .text:0x8016F484; // type:function size:0x2C +fn_8016F4B0 = .text:0x8016F4B0; // type:function size:0x58 +fn_8016F508 = .text:0x8016F508; // type:function size:0x28 +fn_8016F530 = .text:0x8016F530; // type:function size:0x68 +fn_8016F598 = .text:0x8016F598; // type:function size:0x84 +fn_8016F61C = .text:0x8016F61C; // type:function size:0xF4 +fn_8016F710 = .text:0x8016F710; // type:function size:0xE8 +fn_8016F7F8 = .text:0x8016F7F8; // type:function size:0xCC +fn_8016F8C4 = .text:0x8016F8C4; // type:function size:0x5C +fn_8016F920 = .text:0x8016F920; // type:function size:0x5C +fn_8016F97C = .text:0x8016F97C; // type:function size:0x60 +fn_8016F9DC = .text:0x8016F9DC; // type:function size:0x5C +fn_8016FA38 = .text:0x8016FA38; // type:function size:0xC +fn_8016FA44 = .text:0x8016FA44; // type:function size:0x114 +fn_8016FB58 = .text:0x8016FB58; // type:function size:0x5C +fn_8016FBB4 = .text:0x8016FBB4; // type:function size:0x54 +fn_8016FC08 = .text:0x8016FC08; // type:function size:0x5C +fn_8016FC64 = .text:0x8016FC64; // type:function size:0x3B8 +fn_8017001C = .text:0x8017001C; // type:function size:0x6C +fn_80170088 = .text:0x80170088; // type:function size:0x2C +fn_801700B4 = .text:0x801700B4; // type:function size:0xC +fn_801700C0 = .text:0x801700C0; // type:function size:0x15C +fn_8017021C = .text:0x8017021C; // type:function size:0x44 +fn_80170260 = .text:0x80170260; // type:function size:0x8 +fn_80170268 = .text:0x80170268; // type:function size:0x108 +fn_80170370 = .text:0x80170370; // type:function size:0x5C +fn_801703CC = .text:0x801703CC; // type:function size:0x10 +fn_801703DC = .text:0x801703DC; // type:function size:0x128 +fn_80170504 = .text:0x80170504; // type:function size:0x58 +fn_8017055C = .text:0x8017055C; // type:function size:0x80 +fn_801705DC = .text:0x801705DC; // type:function size:0x80 +fn_8017065C = .text:0x8017065C; // type:function size:0x58 +fn_801706B4 = .text:0x801706B4; // type:function size:0x54 +fn_80170708 = .text:0x80170708; // type:function size:0x5C +fn_80170764 = .text:0x80170764; // type:function size:0x6C +fn_801707D0 = .text:0x801707D0; // type:function size:0x28 +fn_801707F8 = .text:0x801707F8; // type:function size:0x8 +fn_80170800 = .text:0x80170800; // type:function size:0x3C +fn_8017083C = .text:0x8017083C; // type:function size:0x30 +fn_8017086C = .text:0x8017086C; // type:function size:0x30 +fn_8017089C = .text:0x8017089C; // type:function size:0x40 +fn_801708DC = .text:0x801708DC; // type:function size:0x68 +fn_80170944 = .text:0x80170944; // type:function size:0xB28 +fn_8017146C = .text:0x8017146C; // type:function size:0x8C +fn_801714F8 = .text:0x801714F8; // type:function size:0x2EC +fn_801717E4 = .text:0x801717E4; // type:function size:0x4 +fn_801717E8 = .text:0x801717E8; // type:function size:0x3C +fn_80171824 = .text:0x80171824; // type:function size:0x40 +fn_80171864 = .text:0x80171864; // type:function size:0x8C +fn_801718F0 = .text:0x801718F0; // type:function size:0x8 +fn_801718F8 = .text:0x801718F8; // type:function size:0x2C +fn_80171924 = .text:0x80171924; // type:function size:0x58 +fn_8017197C = .text:0x8017197C; // type:function size:0x28 +fn_801719A4 = .text:0x801719A4; // type:function size:0x68 +fn_80171A0C = .text:0x80171A0C; // type:function size:0x4C +fn_80171A58 = .text:0x80171A58; // type:function size:0x8 +fn_80171A60 = .text:0x80171A60; // type:function size:0x330 +fn_80171D90 = .text:0x80171D90; // type:function size:0x108 +fn_80171E98 = .text:0x80171E98; // type:function size:0x3B8 +fn_80172250 = .text:0x80172250; // type:function size:0x4 +fn_80172254 = .text:0x80172254; // type:function size:0x88 +fn_801722DC = .text:0x801722DC; // type:function size:0x2C +fn_80172308 = .text:0x80172308; // type:function size:0x10 +fn_80172318 = .text:0x80172318; // type:function size:0x4C +fn_80172364 = .text:0x80172364; // type:function size:0x30 +fn_80172394 = .text:0x80172394; // type:function size:0x28 +fn_801723BC = .text:0x801723BC; // type:function size:0xD8 +fn_80172494 = .text:0x80172494; // type:function size:0x4 +fn_80172498 = .text:0x80172498; // type:function size:0x60 +fn_801724F8 = .text:0x801724F8; // type:function size:0x80 +fn_80172578 = .text:0x80172578; // type:function size:0x28 +fn_801725A0 = .text:0x801725A0; // type:function size:0x114 +fn_801726B4 = .text:0x801726B4; // type:function size:0x5C +fn_80172710 = .text:0x80172710; // type:function size:0x5C +fn_8017276C = .text:0x8017276C; // type:function size:0x54 +fn_801727C0 = .text:0x801727C0; // type:function size:0x5C +fn_8017281C = .text:0x8017281C; // type:function size:0x5C +__ct__12TrainerPanelFv = .text:0x80172878; // type:function size:0xD8 +fn_80172950 = .text:0x80172950; // type:function size:0x58 +fn_801729A8 = .text:0x801729A8; // type:function size:0x80 +fn_80172A28 = .text:0x80172A28; // type:function size:0x80 +fn_80172AA8 = .text:0x80172AA8; // type:function size:0x58 +fn_80172B00 = .text:0x80172B00; // type:function size:0x54 +fn_80172B54 = .text:0x80172B54; // type:function size:0x5C +fn_80172BB0 = .text:0x80172BB0; // type:function size:0x6C +fn_80172C1C = .text:0x80172C1C; // type:function size:0x28 +fn_80172C44 = .text:0x80172C44; // type:function size:0x8 +fn_80172C4C = .text:0x80172C4C; // type:function size:0x3C +fn_80172C88 = .text:0x80172C88; // type:function size:0x30 +fn_80172CB8 = .text:0x80172CB8; // type:function size:0x30 +fn_80172CE8 = .text:0x80172CE8; // type:function size:0x40 +fn_80172D28 = .text:0x80172D28; // type:function size:0xBC +fn_80172DE4 = .text:0x80172DE4; // type:function size:0xC4 +fn_80172EA8 = .text:0x80172EA8; // type:function size:0x2C +fn_80172ED4 = .text:0x80172ED4; // type:function size:0x68 +fn_80172F3C = .text:0x80172F3C; // type:function size:0x234 +fn_80173170 = .text:0x80173170; // type:function size:0x8 +fn_80173178 = .text:0x80173178; // type:function size:0x3C +fn_801731B4 = .text:0x801731B4; // type:function size:0x58 +fn_8017320C = .text:0x8017320C; // type:function size:0xC +fn_80173218 = .text:0x80173218; // type:function size:0x3C +fn_80173254 = .text:0x80173254; // type:function size:0x40 +fn_80173294 = .text:0x80173294; // type:function size:0x8C +fn_80173320 = .text:0x80173320; // type:function size:0x8 +fn_80173328 = .text:0x80173328; // type:function size:0x2C +fn_80173354 = .text:0x80173354; // type:function size:0x58 +fn_801733AC = .text:0x801733AC; // type:function size:0x28 +fn_801733D4 = .text:0x801733D4; // type:function size:0x68 +fn_8017343C = .text:0x8017343C; // type:function size:0x34 +fn_80173470 = .text:0x80173470; // type:function size:0xC +fn_8017347C = .text:0x8017347C; // type:function size:0x88 +fn_80173504 = .text:0x80173504; // type:function size:0x2C +fn_80173530 = .text:0x80173530; // type:function size:0x10 +fn_80173540 = .text:0x80173540; // type:function size:0x68 +fn_801735A8 = .text:0x801735A8; // type:function size:0x8 +fn_801735B0 = .text:0x801735B0; // type:function size:0x8 +fn_801735B8 = .text:0x801735B8; // type:function size:0x8 +fn_801735C0 = .text:0x801735C0; // type:function size:0x8 +fn_801735C8 = .text:0x801735C8; // type:function size:0x8 +fn_801735D0 = .text:0x801735D0; // type:function size:0x50 +fn_80173620 = .text:0x80173620; // type:function size:0x50 +fn_80173670 = .text:0x80173670; // type:function size:0x50 +fn_801736C0 = .text:0x801736C0; // type:function size:0x50 +fn_80173710 = .text:0x80173710; // type:function size:0x50 +fn_80173760 = .text:0x80173760; // type:function size:0x24 +fn_80173784 = .text:0x80173784; // type:function size:0x48 +fn_801737CC = .text:0x801737CC; // type:function size:0x80 +fn_8017384C = .text:0x8017384C; // type:function size:0x38 +fn_80173884 = .text:0x80173884; // type:function size:0x8 +fn_8017388C = .text:0x8017388C; // type:function size:0x58 +fn_801738E4 = .text:0x801738E4; // type:function size:0x64 +fn_80173948 = .text:0x80173948; // type:function size:0x6C +fn_801739B4 = .text:0x801739B4; // type:function size:0x2C +fn_801739E0 = .text:0x801739E0; // type:function size:0x70 +fn_80173A50 = .text:0x80173A50; // type:function size:0x8 +fn_80173A58 = .text:0x80173A58; // type:function size:0xC0 +fn_80173B18 = .text:0x80173B18; // type:function size:0x440 +fn_80173F58 = .text:0x80173F58; // type:function size:0x58 +fn_80173FB0 = .text:0x80173FB0; // type:function size:0x60 +fn_80174010 = .text:0x80174010; // type:function size:0x58 +fn_80174068 = .text:0x80174068; // type:function size:0x58 +fn_801740C0 = .text:0x801740C0; // type:function size:0x50 +fn_80174110 = .text:0x80174110; // type:function size:0x3C +fn_8017414C = .text:0x8017414C; // type:function size:0x6C +fn_801741B8 = .text:0x801741B8; // type:function size:0x2C +fn_801741E4 = .text:0x801741E4; // type:function size:0x8 +fn_801741EC = .text:0x801741EC; // type:function size:0x4 +fn_801741F0 = .text:0x801741F0; // type:function size:0x40 +fn_80174230 = .text:0x80174230; // type:function size:0xA0 +fn_801742D0 = .text:0x801742D0; // type:function size:0xFC +fn_801743CC = .text:0x801743CC; // type:function size:0x58 +fn_80174424 = .text:0x80174424; // type:function size:0x48 +fn_8017446C = .text:0x8017446C; // type:function size:0x4 +fn_80174470 = .text:0x80174470; // type:function size:0x40 +fn_801744B0 = .text:0x801744B0; // type:function size:0x74 +fn_80174524 = .text:0x80174524; // type:function size:0x60 +fn_80174584 = .text:0x80174584; // type:function size:0x2C +fn_801745B0 = .text:0x801745B0; // type:function size:0x30 +fn_801745E0 = .text:0x801745E0; // type:function size:0x44 +fn_80174624 = .text:0x80174624; // type:function size:0x3C +fn_80174660 = .text:0x80174660; // type:function size:0x70 +fn_801746D0 = .text:0x801746D0; // type:function size:0x68 +fn_80174738 = .text:0x80174738; // type:function size:0xC4 +MakeString__FPCcPCcPCc_PCc = .text:0x801747FC; // type:function size:0x60 +fn_8017485C = .text:0x8017485C; // type:function size:0x264 +fn_80174AC0 = .text:0x80174AC0; // type:function size:0x78 +fn_80174B38 = .text:0x80174B38; // type:function size:0x8 +fn_80174B40 = .text:0x80174B40; // type:function size:0xB4 +fn_80174BF4 = .text:0x80174BF4; // type:function size:0x70 +fn_80174C64 = .text:0x80174C64; // type:function size:0x3C +fn_80174CA0 = .text:0x80174CA0; // type:function size:0x78 +fn_80174D18 = .text:0x80174D18; // type:function size:0x4 +fn_80174D1C = .text:0x80174D1C; // type:function size:0x4C +Handle__12TrainerPanelFP9DataArrayb = .text:0x80174D68; // type:function size:0x52C +fn_80175294 = .text:0x80175294; // type:function size:0x50 +fn_801752E4 = .text:0x801752E4; // type:function size:0x8 +fn_801752EC = .text:0x801752EC; // type:function size:0x8 +fn_801752F4 = .text:0x801752F4; // type:function size:0x8 +fn_801752FC = .text:0x801752FC; // type:function size:0x8 +fn_80175304 = .text:0x80175304; // type:function size:0x8 +fn_8017530C = .text:0x8017530C; // type:function size:0x4 +fn_80175310 = .text:0x80175310; // type:function size:0x64 +fn_80175374 = .text:0x80175374; // type:function size:0xA0 +fn_80175414 = .text:0x80175414; // type:function size:0x8 +fn_8017541C = .text:0x8017541C; // type:function size:0x8 +fn_80175424 = .text:0x80175424; // type:function size:0x8 +fn_8017542C = .text:0x8017542C; // type:function size:0x8 +fn_80175434 = .text:0x80175434; // type:function size:0x8 +fn_8017543C = .text:0x8017543C; // type:function size:0x60 +fn_8017549C = .text:0x8017549C; // type:function size:0x60 +fn_801754FC = .text:0x801754FC; // type:function size:0x78 +fn_80175574 = .text:0x80175574; // type:function size:0x74 +fn_801755E8 = .text:0x801755E8; // type:function size:0xB0 +fn_80175698 = .text:0x80175698; // type:function size:0x24 +fn_801756BC = .text:0x801756BC; // type:function size:0x6C +fn_80175728 = .text:0x80175728; // type:function size:0x114 +fn_8017583C = .text:0x8017583C; // type:function size:0x5C +fn_80175898 = .text:0x80175898; // type:function size:0x5C +fn_801758F4 = .text:0x801758F4; // type:function size:0x54 +fn_80175948 = .text:0x80175948; // type:function size:0x5C +fn_801759A4 = .text:0x801759A4; // type:function size:0x5C +fn_80175A00 = .text:0x80175A00; // type:function size:0x388 +fn_80175D88 = .text:0x80175D88; // type:function size:0x158 +fn_80175EE0 = .text:0x80175EE0; // type:function size:0x44 +fn_80175F24 = .text:0x80175F24; // type:function size:0x8 +fn_80175F2C = .text:0x80175F2C; // type:function size:0x104 +fn_80176030 = .text:0x80176030; // type:function size:0x5C +fn_8017608C = .text:0x8017608C; // type:function size:0x10 +fn_8017609C = .text:0x8017609C; // type:function size:0x48 +fn_801760E4 = .text:0x801760E4; // type:function size:0x14 +fn_801760F8 = .text:0x801760F8; // type:function size:0x14 +fn_8017610C = .text:0x8017610C; // type:function size:0x14 +fn_80176120 = .text:0x80176120; // type:function size:0x14 +fn_80176134 = .text:0x80176134; // type:function size:0x14 +fn_80176148 = .text:0x80176148; // type:function size:0x14 +fn_8017615C = .text:0x8017615C; // type:function size:0x14 +fn_80176170 = .text:0x80176170; // type:function size:0x74 +fn_801761E4 = .text:0x801761E4; // type:function size:0x30 +fn_80176214 = .text:0x80176214; // type:function size:0x30 +fn_80176244 = .text:0x80176244; // type:function size:0x40 +fn_80176284 = .text:0x80176284; // type:function size:0x58 +fn_801762DC = .text:0x801762DC; // type:function size:0x158 +fn_80176434 = .text:0x80176434; // type:function size:0x4 +fn_80176438 = .text:0x80176438; // type:function size:0x8C +fn_801764C4 = .text:0x801764C4; // type:function size:0x4 +fn_801764C8 = .text:0x801764C8; // type:function size:0x40 +fn_80176508 = .text:0x80176508; // type:function size:0x78 +fn_80176580 = .text:0x80176580; // type:function size:0x8 +fn_80176588 = .text:0x80176588; // type:function size:0x54 +fn_801765DC = .text:0x801765DC; // type:function size:0x3C +fn_80176618 = .text:0x80176618; // type:function size:0x250 +fn_80176868 = .text:0x80176868; // type:function size:0x10 +fn_80176878 = .text:0x80176878; // type:function size:0x68 +fn_801768E0 = .text:0x801768E0; // type:function size:0x16C +fn_80176A4C = .text:0x80176A4C; // type:function size:0x20 +fn_80176A6C = .text:0x80176A6C; // type:function size:0x24 +fn_80176A90 = .text:0x80176A90; // type:function size:0x58 +fn_80176AE8 = .text:0x80176AE8; // type:function size:0x58 +fn_80176B40 = .text:0x80176B40; // type:function size:0xD4 +fn_80176C14 = .text:0x80176C14; // type:function size:0x50 +fn_80176C64 = .text:0x80176C64; // type:function size:0x5C +fn_80176CC0 = .text:0x80176CC0; // type:function size:0x30 +fn_80176CF0 = .text:0x80176CF0; // type:function size:0x4C +fn_80176D3C = .text:0x80176D3C; // type:function size:0x30 +fn_80176D6C = .text:0x80176D6C; // type:function size:0x4C +fn_80176DB8 = .text:0x80176DB8; // type:function size:0x30 +fn_80176DE8 = .text:0x80176DE8; // type:function size:0x4C +fn_80176E34 = .text:0x80176E34; // type:function size:0x80 +fn_80176EB4 = .text:0x80176EB4; // type:function size:0x4C +fn_80176F00 = .text:0x80176F00; // type:function size:0x4C +fn_80176F4C = .text:0x80176F4C; // type:function size:0xA8 +fn_80176FF4 = .text:0x80176FF4; // type:function size:0xA0 +fn_80177094 = .text:0x80177094; // type:function size:0x88 +fn_8017711C = .text:0x8017711C; // type:function size:0x58 +fn_80177174 = .text:0x80177174; // type:function size:0x58 +fn_801771CC = .text:0x801771CC; // type:function size:0x1EC +fn_801773B8 = .text:0x801773B8; // type:function size:0x8C +fn_80177444 = .text:0x80177444; // type:function size:0x4C +fn_80177490 = .text:0x80177490; // type:function size:0xF0 +fn_80177580 = .text:0x80177580; // type:function size:0x64 +fn_801775E4 = .text:0x801775E4; // type:function size:0x64 +fn_80177648 = .text:0x80177648; // type:function size:0x3C0 +fn_80177A08 = .text:0x80177A08; // type:function size:0xCC +__ct__7MessageF6SymbolRC8DataNodeRC8DataNodeRC8DataNodeRC8DataNode = .text:0x80177AD4; // type:function size:0xFC +fn_80177BD0 = .text:0x80177BD0; // type:function size:0x4C +fn_80177C1C = .text:0x80177C1C; // type:function size:0xCC +fn_80177CE8 = .text:0x80177CE8; // type:function size:0x4C +fn_80177D34 = .text:0x80177D34; // type:function size:0x4 +fn_80177D38 = .text:0x80177D38; // type:function size:0x58 +fn_80177D90 = .text:0x80177D90; // type:function size:0xC +fn_80177D9C = .text:0x80177D9C; // type:function size:0x4 +fn_80177DA0 = .text:0x80177DA0; // type:function size:0x58 +fn_80177DF8 = .text:0x80177DF8; // type:function size:0xC +fn_80177E04 = .text:0x80177E04; // type:function size:0x4 +fn_80177E08 = .text:0x80177E08; // type:function size:0x58 +fn_80177E60 = .text:0x80177E60; // type:function size:0xC +fn_80177E6C = .text:0x80177E6C; // type:function size:0x34 +fn_80177EA0 = .text:0x80177EA0; // type:function size:0x80 +fn_80177F20 = .text:0x80177F20; // type:function size:0x98 +__ct__18StartTransitionMsgFv = .text:0x80177FB8; // type:function size:0x90 +__ct__8LockDataFv = .text:0x80178048; // type:function size:0x6C +fn_801780B4 = .text:0x801780B4; // type:function size:0x34 +fn_801780E8 = .text:0x801780E8; // type:function size:0x80 +fn_80178168 = .text:0x80178168; // type:function size:0x38 +fn_801781A0 = .text:0x801781A0; // type:function size:0x90 +fn_80178230 = .text:0x80178230; // type:function size:0x34 +fn_80178264 = .text:0x80178264; // type:function size:0x80 +fn_801782E4 = .text:0x801782E4; // type:function size:0xB8 +fn_8017839C = .text:0x8017839C; // type:function size:0x60 +fn_801783FC = .text:0x801783FC; // type:function size:0xA0 +fn_8017849C = .text:0x8017849C; // type:function size:0x44 +fn_801784E0 = .text:0x801784E0; // type:function size:0x44 +fn_80178524 = .text:0x80178524; // type:function size:0x10 +fn_80178534 = .text:0x80178534; // type:function size:0xA0 +fn_801785D4 = .text:0x801785D4; // type:function size:0x50 +fn_80178624 = .text:0x80178624; // type:function size:0x50 +fn_80178674 = .text:0x80178674; // type:function size:0xA0 +fn_80178714 = .text:0x80178714; // type:function size:0x44 +fn_80178758 = .text:0x80178758; // type:function size:0x44 +fn_8017879C = .text:0x8017879C; // type:function size:0x7C +fn_80178818 = .text:0x80178818; // type:function size:0x7C +fn_80178894 = .text:0x80178894; // type:function size:0x4 +fn_80178898 = .text:0x80178898; // type:function size:0x58 +fn_801788F0 = .text:0x801788F0; // type:function size:0xC +fn_801788FC = .text:0x801788FC; // type:function size:0x4 +fn_80178900 = .text:0x80178900; // type:function size:0x58 +fn_80178958 = .text:0x80178958; // type:function size:0xC +fn_80178964 = .text:0x80178964; // type:function size:0x4 +fn_80178968 = .text:0x80178968; // type:function size:0x58 +fn_801789C0 = .text:0x801789C0; // type:function size:0xC +fn_801789CC = .text:0x801789CC; // type:function size:0x4 +fn_801789D0 = .text:0x801789D0; // type:function size:0x58 +fn_80178A28 = .text:0x80178A28; // type:function size:0xC +fn_80178A34 = .text:0x80178A34; // type:function size:0x14 +fn_80178A48 = .text:0x80178A48; // type:function size:0x14 +fn_80178A5C = .text:0x80178A5C; // type:function size:0x8 +fn_80178A64 = .text:0x80178A64; // type:function size:0x14 +fn_80178A78 = .text:0x80178A78; // type:function size:0x14 +fn_80178A8C = .text:0x80178A8C; // type:function size:0x8 +fn_80178A94 = .text:0x80178A94; // type:function size:0x14 +fn_80178AA8 = .text:0x80178AA8; // type:function size:0x8 +fn_80178AB0 = .text:0x80178AB0; // type:function size:0x14 +fn_80178AC4 = .text:0x80178AC4; // type:function size:0x14 +fn_80178AD8 = .text:0x80178AD8; // type:function size:0x8 +fn_80178AE0 = .text:0x80178AE0; // type:function size:0x14 +fn_80178AF4 = .text:0x80178AF4; // type:function size:0x14 +fn_80178B08 = .text:0x80178B08; // type:function size:0x8 +fn_80178B10 = .text:0x80178B10; // type:function size:0x78 +fn_80178B88 = .text:0x80178B88; // type:function size:0x5C +fn_80178BE4 = .text:0x80178BE4; // type:function size:0xB0 +fn_80178C94 = .text:0x80178C94; // type:function size:0x8 +fn_80178C9C = .text:0x80178C9C; // type:function size:0xC +fn_80178CA8 = .text:0x80178CA8; // type:function size:0xC +fn_80178CB4 = .text:0x80178CB4; // type:function size:0x258 +fn_80178F0C = .text:0x80178F0C; // type:function size:0x68 +fn_80178F74 = .text:0x80178F74; // type:function size:0x88 +fn_80178FFC = .text:0x80178FFC; // type:function size:0x34 +fn_80179030 = .text:0x80179030; // type:function size:0xA4 +fn_801790D4 = .text:0x801790D4; // type:function size:0xC +fn_801790E0 = .text:0x801790E0; // type:function size:0x8 +fn_801790E8 = .text:0x801790E8; // type:function size:0x3C +fn_80179124 = .text:0x80179124; // type:function size:0x40 +fn_80179164 = .text:0x80179164; // type:function size:0x8 +fn_8017916C = .text:0x8017916C; // type:function size:0x12C +fn_80179298 = .text:0x80179298; // type:function size:0x5C +fn_801792F4 = .text:0x801792F4; // type:function size:0x234 +LogThunk__Fd = .text:0x80179528; // type:function size:0x4 +LogFloat__Fd = .text:0x8017952C; // type:function size:0x24 +fn_80179550 = .text:0x80179550; // type:function size:0x64 +fn_801795B4 = .text:0x801795B4; // type:function size:0x4 +fn_801795B8 = .text:0x801795B8; // type:function size:0x4 +fn_801795BC = .text:0x801795BC; // type:function size:0xA0 +fn_8017965C = .text:0x8017965C; // type:function size:0xD4 +fn_80179730 = .text:0x80179730; // type:function size:0x4 +fn_80179734 = .text:0x80179734; // type:function size:0x124 +fn_80179858 = .text:0x80179858; // type:function size:0x40 +fn_80179898 = .text:0x80179898; // type:function size:0xE8 +SqrtThunk__Fd = .text:0x80179980; // type:function size:0x4 +GetSqrtAsFloat__Fd = .text:0x80179984; // type:function size:0x24 +fn_801799A8 = .text:0x801799A8; // type:function size:0x18 +fn_801799C0 = .text:0x801799C0; // type:function size:0x124 +fn_80179AE4 = .text:0x80179AE4; // type:function size:0x40 +fn_80179B24 = .text:0x80179B24; // type:function size:0x18 +fn_80179B3C = .text:0x80179B3C; // type:function size:0xC +fn_80179B48 = .text:0x80179B48; // type:function size:0x40 +fn_80179B88 = .text:0x80179B88; // type:function size:0x40 +fn_80179BC8 = .text:0x80179BC8; // type:function size:0x14C +fn_80179D14 = .text:0x80179D14; // type:function size:0x50 +fn_80179D64 = .text:0x80179D64; // type:function size:0x8 +fn_80179D6C = .text:0x80179D6C; // type:function size:0x8 +fn_80179D74 = .text:0x80179D74; // type:function size:0x54 +fn_80179DC8 = .text:0x80179DC8; // type:function size:0x1C8 +fn_80179F90 = .text:0x80179F90; // type:function size:0xF4 +fn_8017A084 = .text:0x8017A084; // type:function size:0x8 +fn_8017A08C = .text:0x8017A08C; // type:function size:0xAC +fn_8017A138 = .text:0x8017A138; // type:function size:0x24 +fn_8017A15C = .text:0x8017A15C; // type:function size:0x14 +fn_8017A170 = .text:0x8017A170; // type:function size:0x18 +fn_8017A188 = .text:0x8017A188; // type:function size:0x38 +fn_8017A1C0 = .text:0x8017A1C0; // type:function size:0xE4 +fn_8017A2A4 = .text:0x8017A2A4; // type:function size:0x218 +fn_8017A4BC = .text:0x8017A4BC; // type:function size:0x68 +fn_8017A524 = .text:0x8017A524; // type:function size:0xDC +fn_8017A600 = .text:0x8017A600; // type:function size:0x240 +fn_8017A840 = .text:0x8017A840; // type:function size:0x8 +fn_8017A848 = .text:0x8017A848; // type:function size:0x8 +fn_8017A850 = .text:0x8017A850; // type:function size:0x38 +fn_8017A888 = .text:0x8017A888; // type:function size:0x10 +fn_8017A898 = .text:0x8017A898; // type:function size:0x1C0 +fn_8017AA58 = .text:0x8017AA58; // type:function size:0x4 +fn_8017AA5C = .text:0x8017AA5C; // type:function size:0x24 +fn_8017AA80 = .text:0x8017AA80; // type:function size:0x280 +fn_8017AD00 = .text:0x8017AD00; // type:function size:0x278 +fn_8017AF78 = .text:0x8017AF78; // type:function size:0x54 +fn_8017AFCC = .text:0x8017AFCC; // type:function size:0x70 +fn_8017B03C = .text:0x8017B03C; // type:function size:0xD8 +fn_8017B114 = .text:0x8017B114; // type:function size:0x40 +fn_8017B154 = .text:0x8017B154; // type:function size:0x2B8 +fn_8017B40C = .text:0x8017B40C; // type:function size:0x174 +fn_8017B580 = .text:0x8017B580; // type:function size:0x8 +fn_8017B588 = .text:0x8017B588; // type:function size:0x8 +fn_8017B590 = .text:0x8017B590; // type:function size:0x8 +fn_8017B598 = .text:0x8017B598; // type:function size:0x8 +fn_8017B5A0 = .text:0x8017B5A0; // type:function size:0x4EC +fn_8017BA8C = .text:0x8017BA8C; // type:function size:0x158 +fn_8017BBE4 = .text:0x8017BBE4; // type:function size:0x84 +fn_8017BC68 = .text:0x8017BC68; // type:function size:0x18 +fn_8017BC80 = .text:0x8017BC80; // type:function size:0x8 +fn_8017BC88 = .text:0x8017BC88; // type:function size:0x4 +fn_8017BC8C = .text:0x8017BC8C; // type:function size:0xB8 +fn_8017BD44 = .text:0x8017BD44; // type:function size:0x8 +fn_8017BD4C = .text:0x8017BD4C; // type:function size:0x48 +fn_8017BD94 = .text:0x8017BD94; // type:function size:0x8 +fn_8017BD9C = .text:0x8017BD9C; // type:function size:0x5C +fn_8017BDF8 = .text:0x8017BDF8; // type:function size:0x5C +fn_8017BE54 = .text:0x8017BE54; // type:function size:0x8 +fn_8017BE5C = .text:0x8017BE5C; // type:function size:0x70 +fn_8017BECC = .text:0x8017BECC; // type:function size:0x50 +fn_8017BF1C = .text:0x8017BF1C; // type:function size:0x4C +fn_8017BF68 = .text:0x8017BF68; // type:function size:0x6C +fn_8017BFD4 = .text:0x8017BFD4; // type:function size:0x8 +fn_8017BFDC = .text:0x8017BFDC; // type:function size:0x24 +fn_8017C000 = .text:0x8017C000; // type:function size:0x18 +fn_8017C018 = .text:0x8017C018; // type:function size:0x8 +fn_8017C020 = .text:0x8017C020; // type:function size:0x10 +fn_8017C030 = .text:0x8017C030; // type:function size:0x18 +fn_8017C048 = .text:0x8017C048; // type:function size:0x38 +fn_8017C080 = .text:0x8017C080; // type:function size:0x8 +__ct__11VocalPlayerFP8BandUserP10BeatMasterP4BandiP9Performeri = .text:0x8017C088; // type:function size:0x498 +fn_8017C520 = .text:0x8017C520; // type:function size:0x58 +fn_8017C578 = .text:0x8017C578; // type:function size:0x80 +fn_8017C5F8 = .text:0x8017C5F8; // type:function size:0x80 +fn_8017C678 = .text:0x8017C678; // type:function size:0x58 +fn_8017C6D0 = .text:0x8017C6D0; // type:function size:0x54 +fn_8017C724 = .text:0x8017C724; // type:function size:0x5C +fn_8017C780 = .text:0x8017C780; // type:function size:0x6C +fn_8017C7EC = .text:0x8017C7EC; // type:function size:0x28 +fn_8017C814 = .text:0x8017C814; // type:function size:0x8 +fn_8017C81C = .text:0x8017C81C; // type:function size:0x3C +fn_8017C858 = .text:0x8017C858; // type:function size:0x30 +fn_8017C888 = .text:0x8017C888; // type:function size:0x30 +fn_8017C8B8 = .text:0x8017C8B8; // type:function size:0x40 +__ct__Q210RndOverlay8CallbackFv = .text:0x8017C8F8; // type:function size:0x10 +fn_8017C908 = .text:0x8017C908; // type:function size:0xD8 +fn_8017C9E0 = .text:0x8017C9E0; // type:function size:0xE4 +fn_8017CAC4 = .text:0x8017CAC4; // type:function size:0x208 +fn_8017CCCC = .text:0x8017CCCC; // type:function size:0x184 +fn_8017CE50 = .text:0x8017CE50; // type:function size:0x4C +fn_8017CE9C = .text:0x8017CE9C; // type:function size:0x94 +fn_8017CF30 = .text:0x8017CF30; // type:function size:0x178 +fn_8017D0A8 = .text:0x8017D0A8; // type:function size:0x34 +fn_8017D0DC = .text:0x8017D0DC; // type:function size:0x10C +fn_8017D1E8 = .text:0x8017D1E8; // type:function size:0xA8 +fn_8017D290 = .text:0x8017D290; // type:function size:0x1D0 +fn_8017D460 = .text:0x8017D460; // type:function size:0xF8 +fn_8017D558 = .text:0x8017D558; // type:function size:0x11C +fn_8017D674 = .text:0x8017D674; // type:function size:0x68 +fn_8017D6DC = .text:0x8017D6DC; // type:function size:0x48 +fn_8017D724 = .text:0x8017D724; // type:function size:0x10 +fn_8017D734 = .text:0x8017D734; // type:function size:0x84 +fn_8017D7B8 = .text:0x8017D7B8; // type:function size:0x8 +fn_8017D7C0 = .text:0x8017D7C0; // type:function size:0x3C +fn_8017D7FC = .text:0x8017D7FC; // type:function size:0x150 +fn_8017D94C = .text:0x8017D94C; // type:function size:0x68 +fn_8017D9B4 = .text:0x8017D9B4; // type:function size:0x50 +fn_8017DA04 = .text:0x8017DA04; // type:function size:0x180 +fn_8017DB84 = .text:0x8017DB84; // type:function size:0x50 +fn_8017DBD4 = .text:0x8017DBD4; // type:function size:0x70 +fn_8017DC44 = .text:0x8017DC44; // type:function size:0x60 +fn_8017DCA4 = .text:0x8017DCA4; // type:function size:0x2C +fn_8017DCD0 = .text:0x8017DCD0; // type:function size:0x2C +fn_8017DCFC = .text:0x8017DCFC; // type:function size:0x3C +fn_8017DD38 = .text:0x8017DD38; // type:function size:0xF3C +fn_8017EC74 = .text:0x8017EC74; // type:function size:0x38 +fn_8017ECAC = .text:0x8017ECAC; // type:function size:0x8C +fn_8017ED38 = .text:0x8017ED38; // type:function size:0x40 +fn_8017ED78 = .text:0x8017ED78; // type:function size:0x170 +fn_8017EEE8 = .text:0x8017EEE8; // type:function size:0x74 +fn_8017EF5C = .text:0x8017EF5C; // type:function size:0x3C +fn_8017EF98 = .text:0x8017EF98; // type:function size:0x1C +fn_8017EFB4 = .text:0x8017EFB4; // type:function size:0x8C +fn_8017F040 = .text:0x8017F040; // type:function size:0x40 +fn_8017F080 = .text:0x8017F080; // type:function size:0x3C +fn_8017F0BC = .text:0x8017F0BC; // type:function size:0x8 +fn_8017F0C4 = .text:0x8017F0C4; // type:function size:0x8 +fn_8017F0CC = .text:0x8017F0CC; // type:function size:0x8 +fn_8017F0D4 = .text:0x8017F0D4; // type:function size:0x8 +fn_8017F0DC = .text:0x8017F0DC; // type:function size:0x10 +fn_8017F0EC = .text:0x8017F0EC; // type:function size:0x190 +fn_8017F27C = .text:0x8017F27C; // type:function size:0xAC +fn_8017F328 = .text:0x8017F328; // type:function size:0x138 +fn_8017F460 = .text:0x8017F460; // type:function size:0x40 +fn_8017F4A0 = .text:0x8017F4A0; // type:function size:0x3BC +fn_8017F85C = .text:0x8017F85C; // type:function size:0x30 +fn_8017F88C = .text:0x8017F88C; // type:function size:0x1CC +fn_8017FA58 = .text:0x8017FA58; // type:function size:0x114 +fn_8017FB6C = .text:0x8017FB6C; // type:function size:0xF4 +fn_8017FC60 = .text:0x8017FC60; // type:function size:0x84 +fn_8017FCE4 = .text:0x8017FCE4; // type:function size:0x80 +fn_8017FD64 = .text:0x8017FD64; // type:function size:0x6C +fn_8017FDD0 = .text:0x8017FDD0; // type:function size:0x7D0 +fn_801805A0 = .text:0x801805A0; // type:function size:0x78 +fn_80180618 = .text:0x80180618; // type:function size:0xCC +fn_801806E4 = .text:0x801806E4; // type:function size:0xC +fn_801806F0 = .text:0x801806F0; // type:function size:0xA0 +fn_80180790 = .text:0x80180790; // type:function size:0xC +fn_8018079C = .text:0x8018079C; // type:function size:0x84 +fn_80180820 = .text:0x80180820; // type:function size:0xD0 +fn_801808F0 = .text:0x801808F0; // type:function size:0x64 +fn_80180954 = .text:0x80180954; // type:function size:0x20 +fn_80180974 = .text:0x80180974; // type:function size:0x1C +fn_80180990 = .text:0x80180990; // type:function size:0xAC +fn_80180A3C = .text:0x80180A3C; // type:function size:0x6C +fn_80180AA8 = .text:0x80180AA8; // type:function size:0xC +fn_80180AB4 = .text:0x80180AB4; // type:function size:0x7C +fn_80180B30 = .text:0x80180B30; // type:function size:0x68 +fn_80180B98 = .text:0x80180B98; // type:function size:0x80 +fn_80180C18 = .text:0x80180C18; // type:function size:0x58 +fn_80180C70 = .text:0x80180C70; // type:function size:0x58 +fn_80180CC8 = .text:0x80180CC8; // type:function size:0xC +fn_80180CD4 = .text:0x80180CD4; // type:function size:0x58 +fn_80180D2C = .text:0x80180D2C; // type:function size:0x10 +fn_80180D3C = .text:0x80180D3C; // type:function size:0x10 +fn_80180D4C = .text:0x80180D4C; // type:function size:0x10 +fn_80180D5C = .text:0x80180D5C; // type:function size:0x10 +fn_80180D6C = .text:0x80180D6C; // type:function size:0x8 +fn_80180D74 = .text:0x80180D74; // type:function size:0x124 +fn_80180E98 = .text:0x80180E98; // type:function size:0x20 +fn_80180EB8 = .text:0x80180EB8; // type:function size:0x84 +fn_80180F3C = .text:0x80180F3C; // type:function size:0xD4 +fn_80181010 = .text:0x80181010; // type:function size:0xC +fn_8018101C = .text:0x8018101C; // type:function size:0x4 +fn_80181020 = .text:0x80181020; // type:function size:0x54 +fn_80181074 = .text:0x80181074; // type:function size:0x90 +fn_80181104 = .text:0x80181104; // type:function size:0x90 +fn_80181194 = .text:0x80181194; // type:function size:0x60 +fn_801811F4 = .text:0x801811F4; // type:function size:0x88 +fn_8018127C = .text:0x8018127C; // type:function size:0x64 +fn_801812E0 = .text:0x801812E0; // type:function size:0x6C +fn_8018134C = .text:0x8018134C; // type:function size:0x30 +fn_8018137C = .text:0x8018137C; // type:function size:0x8 +fn_80181384 = .text:0x80181384; // type:function size:0x8 +fn_8018138C = .text:0x8018138C; // type:function size:0x8C +fn_80181418 = .text:0x80181418; // type:function size:0x24 +fn_8018143C = .text:0x8018143C; // type:function size:0x280 +fn_801816BC = .text:0x801816BC; // type:function size:0x90 +fn_8018174C = .text:0x8018174C; // type:function size:0x4 +fn_80181750 = .text:0x80181750; // type:function size:0x88 +fn_801817D8 = .text:0x801817D8; // type:function size:0x2C +fn_80181804 = .text:0x80181804; // type:function size:0x10 +fn_80181814 = .text:0x80181814; // type:function size:0x4 +fn_80181818 = .text:0x80181818; // type:function size:0x3C +fn_80181854 = .text:0x80181854; // type:function size:0x40 +fn_80181894 = .text:0x80181894; // type:function size:0x8C +fn_80181920 = .text:0x80181920; // type:function size:0x8 +fn_80181928 = .text:0x80181928; // type:function size:0x2C +fn_80181954 = .text:0x80181954; // type:function size:0x58 +fn_801819AC = .text:0x801819AC; // type:function size:0x28 +fn_801819D4 = .text:0x801819D4; // type:function size:0x68 +fn_80181A3C = .text:0x80181A3C; // type:function size:0x6C +fn_80181AA8 = .text:0x80181AA8; // type:function size:0x17C +fn_80181C24 = .text:0x80181C24; // type:function size:0x60 +fn_80181C84 = .text:0x80181C84; // type:function size:0x60 +fn_80181CE4 = .text:0x80181CE4; // type:function size:0x90 +fn_80181D74 = .text:0x80181D74; // type:function size:0xD0 +fn_80181E44 = .text:0x80181E44; // type:function size:0x4 +fn_80181E48 = .text:0x80181E48; // type:function size:0xD0 +fn_80181F18 = .text:0x80181F18; // type:function size:0x8 +fn_80181F20 = .text:0x80181F20; // type:function size:0x70 +fn_80181F90 = .text:0x80181F90; // type:function size:0x140 +fn_801820D0 = .text:0x801820D0; // type:function size:0x7C +fn_8018214C = .text:0x8018214C; // type:function size:0x20C +fn_80182358 = .text:0x80182358; // type:function size:0x58 +fn_801823B0 = .text:0x801823B0; // type:function size:0x80 +fn_80182430 = .text:0x80182430; // type:function size:0x80 +fn_801824B0 = .text:0x801824B0; // type:function size:0x58 +fn_80182508 = .text:0x80182508; // type:function size:0x54 +fn_8018255C = .text:0x8018255C; // type:function size:0x5C +fn_801825B8 = .text:0x801825B8; // type:function size:0x6C +fn_80182624 = .text:0x80182624; // type:function size:0x28 +fn_8018264C = .text:0x8018264C; // type:function size:0x8 +fn_80182654 = .text:0x80182654; // type:function size:0x3C +fn_80182690 = .text:0x80182690; // type:function size:0x4 +fn_80182694 = .text:0x80182694; // type:function size:0x88 +fn_8018271C = .text:0x8018271C; // type:function size:0x2C +fn_80182748 = .text:0x80182748; // type:function size:0x10 +fn_80182758 = .text:0x80182758; // type:function size:0x30 +fn_80182788 = .text:0x80182788; // type:function size:0x30 +fn_801827B8 = .text:0x801827B8; // type:function size:0x40 +fn_801827F8 = .text:0x801827F8; // type:function size:0x38 +fn_80182830 = .text:0x80182830; // type:function size:0xD0 +fn_80182900 = .text:0x80182900; // type:function size:0x80 +fn_80182980 = .text:0x80182980; // type:function size:0x48 +fn_801829C8 = .text:0x801829C8; // type:function size:0xD8 +fn_80182AA0 = .text:0x80182AA0; // type:function size:0x64 +fn_80182B04 = .text:0x80182B04; // type:function size:0x78 +fn_80182B7C = .text:0x80182B7C; // type:function size:0x2C +fn_80182BA8 = .text:0x80182BA8; // type:function size:0x1C +fn_80182BC4 = .text:0x80182BC4; // type:function size:0x8 +fn_80182BCC = .text:0x80182BCC; // type:function size:0xCC +fn_80182C98 = .text:0x80182C98; // type:function size:0x1C +fn_80182CB4 = .text:0x80182CB4; // type:function size:0x60 +fn_80182D14 = .text:0x80182D14; // type:function size:0x4C +fn_80182D60 = .text:0x80182D60; // type:function size:0x4C +fn_80182DAC = .text:0x80182DAC; // type:function size:0x44 +fn_80182DF0 = .text:0x80182DF0; // type:function size:0xC +fn_80182DFC = .text:0x80182DFC; // type:function size:0x48 +fn_80182E44 = .text:0x80182E44; // type:function size:0x134 +fn_80182F78 = .text:0x80182F78; // type:function size:0x1B4 +fn_8018312C = .text:0x8018312C; // type:function size:0xDC +fn_80183208 = .text:0x80183208; // type:function size:0x78 +fn_80183280 = .text:0x80183280; // type:function size:0x74 +fn_801832F4 = .text:0x801832F4; // type:function size:0x78 +fn_8018336C = .text:0x8018336C; // type:function size:0x74 +fn_801833E0 = .text:0x801833E0; // type:function size:0x58 +fn_80183438 = .text:0x80183438; // type:function size:0x54 +fn_8018348C = .text:0x8018348C; // type:function size:0x38 +fn_801834C4 = .text:0x801834C4; // type:function size:0x4 +fn_801834C8 = .text:0x801834C8; // type:function size:0xA0 +fn_80183568 = .text:0x80183568; // type:function size:0x58 +fn_801835C0 = .text:0x801835C0; // type:function size:0x18C +fn_8018374C = .text:0x8018374C; // type:function size:0x6C +fn_801837B8 = .text:0x801837B8; // type:function size:0x5C +fn_80183814 = .text:0x80183814; // type:function size:0x8 +fn_8018381C = .text:0x8018381C; // type:function size:0x8 +fn_80183824 = .text:0x80183824; // type:function size:0x8 +fn_8018382C = .text:0x8018382C; // type:function size:0x8 +fn_80183834 = .text:0x80183834; // type:function size:0x8 +fn_8018383C = .text:0x8018383C; // type:function size:0x8 +fn_80183844 = .text:0x80183844; // type:function size:0x18 +fn_8018385C = .text:0x8018385C; // type:function size:0x18 +fn_80183874 = .text:0x80183874; // type:function size:0x8 +Handle__11VocalPlayerFP9DataArrayb = .text:0x8018387C; // type:function size:0xD18 +__ct__11ButtonUpMsgFP9DataArray = .text:0x80184594; // type:function size:0x3C +Type__11ButtonUpMsgFv = .text:0x801845D0; // type:function size:0x4C +__ct__13ButtonDownMsgFP9DataArray = .text:0x8018461C; // type:function size:0x3C +Type__13ButtonDownMsgFv = .text:0x80184658; // type:function size:0x4C +fn_801846A4 = .text:0x801846A4; // type:function size:0x3C +fn_801846E0 = .text:0x801846E0; // type:function size:0x114 +fn_801847F4 = .text:0x801847F4; // type:function size:0x60 +fn_80184854 = .text:0x80184854; // type:function size:0x5C +fn_801848B0 = .text:0x801848B0; // type:function size:0x54 +fn_80184904 = .text:0x80184904; // type:function size:0x5C +fn_80184960 = .text:0x80184960; // type:function size:0x5C +fn_801849BC = .text:0x801849BC; // type:function size:0x114 +fn_80184AD0 = .text:0x80184AD0; // type:function size:0x60 +fn_80184B30 = .text:0x80184B30; // type:function size:0x5C +fn_80184B8C = .text:0x80184B8C; // type:function size:0x54 +fn_80184BE0 = .text:0x80184BE0; // type:function size:0x5C +fn_80184C3C = .text:0x80184C3C; // type:function size:0x5C +fn_80184C98 = .text:0x80184C98; // type:function size:0x8 +fn_80184CA0 = .text:0x80184CA0; // type:function size:0x14 +fn_80184CB4 = .text:0x80184CB4; // type:function size:0x14 +fn_80184CC8 = .text:0x80184CC8; // type:function size:0x14 +fn_80184CDC = .text:0x80184CDC; // type:function size:0x14 +fn_80184CF0 = .text:0x80184CF0; // type:function size:0x14 +fn_80184D04 = .text:0x80184D04; // type:function size:0x14 +fn_80184D18 = .text:0x80184D18; // type:function size:0x14 +fn_80184D2C = .text:0x80184D2C; // type:function size:0x14 +fn_80184D40 = .text:0x80184D40; // type:function size:0x8 +fn_80184D48 = .text:0x80184D48; // type:function size:0x8 +fn_80184D50 = .text:0x80184D50; // type:function size:0x8 +fn_80184D58 = .text:0x80184D58; // type:function size:0x8 +fn_80184D60 = .text:0x80184D60; // type:function size:0x9C +fn_80184DFC = .text:0x80184DFC; // type:function size:0x5C +fn_80184E58 = .text:0x80184E58; // type:function size:0xA8 +fn_80184F00 = .text:0x80184F00; // type:function size:0x94 +fn_80184F94 = .text:0x80184F94; // type:function size:0x7C +fn_80185010 = .text:0x80185010; // type:function size:0x8 +fn_80185018 = .text:0x80185018; // type:function size:0x8 +fn_80185020 = .text:0x80185020; // type:function size:0x80 +__ct__17VocalTrainerPanelFv = .text:0x801850A0; // type:function size:0x128 +fn_801851C8 = .text:0x801851C8; // type:function size:0x40 +fn_80185208 = .text:0x80185208; // type:function size:0x30 +fn_80185238 = .text:0x80185238; // type:function size:0x30 +fn_80185268 = .text:0x80185268; // type:function size:0x40 +fn_801852A8 = .text:0x801852A8; // type:function size:0x40 +fn_801852E8 = .text:0x801852E8; // type:function size:0x110 +fn_801853F8 = .text:0x801853F8; // type:function size:0x8C +fn_80185484 = .text:0x80185484; // type:function size:0x58 +fn_801854DC = .text:0x801854DC; // type:function size:0x80 +fn_8018555C = .text:0x8018555C; // type:function size:0x80 +fn_801855DC = .text:0x801855DC; // type:function size:0x58 +fn_80185634 = .text:0x80185634; // type:function size:0x54 +fn_80185688 = .text:0x80185688; // type:function size:0x5C +fn_801856E4 = .text:0x801856E4; // type:function size:0x6C +fn_80185750 = .text:0x80185750; // type:function size:0x28 +fn_80185778 = .text:0x80185778; // type:function size:0x8 +fn_80185780 = .text:0x80185780; // type:function size:0x3C +fn_801857BC = .text:0x801857BC; // type:function size:0x1E4 +fn_801859A0 = .text:0x801859A0; // type:function size:0x64 +fn_80185A04 = .text:0x80185A04; // type:function size:0x1F4 +fn_80185BF8 = .text:0x80185BF8; // type:function size:0x4B8 +fn_801860B0 = .text:0x801860B0; // type:function size:0x4 +fn_801860B4 = .text:0x801860B4; // type:function size:0x88 +fn_8018613C = .text:0x8018613C; // type:function size:0x2C +fn_80186168 = .text:0x80186168; // type:function size:0x4 +fn_8018616C = .text:0x8018616C; // type:function size:0x88 +fn_801861F4 = .text:0x801861F4; // type:function size:0x2C +fn_80186220 = .text:0x80186220; // type:function size:0x4 +fn_80186224 = .text:0x80186224; // type:function size:0x3C +fn_80186260 = .text:0x80186260; // type:function size:0x40 +fn_801862A0 = .text:0x801862A0; // type:function size:0x8C +fn_8018632C = .text:0x8018632C; // type:function size:0x8 +fn_80186334 = .text:0x80186334; // type:function size:0x2C +fn_80186360 = .text:0x80186360; // type:function size:0x58 +fn_801863B8 = .text:0x801863B8; // type:function size:0x28 +fn_801863E0 = .text:0x801863E0; // type:function size:0x68 +fn_80186448 = .text:0x80186448; // type:function size:0x4 +fn_8018644C = .text:0x8018644C; // type:function size:0x3C +fn_80186488 = .text:0x80186488; // type:function size:0x40 +fn_801864C8 = .text:0x801864C8; // type:function size:0x8C +fn_80186554 = .text:0x80186554; // type:function size:0x8 +fn_8018655C = .text:0x8018655C; // type:function size:0x2C +fn_80186588 = .text:0x80186588; // type:function size:0x58 +fn_801865E0 = .text:0x801865E0; // type:function size:0x28 +fn_80186608 = .text:0x80186608; // type:function size:0x68 +fn_80186670 = .text:0x80186670; // type:function size:0xC4 +fn_80186734 = .text:0x80186734; // type:function size:0xE8 +fn_8018681C = .text:0x8018681C; // type:function size:0x4A8 +fn_80186CC4 = .text:0x80186CC4; // type:function size:0xC +fn_80186CD0 = .text:0x80186CD0; // type:function size:0x8 +fn_80186CD8 = .text:0x80186CD8; // type:function size:0x8 +fn_80186CE0 = .text:0x80186CE0; // type:function size:0x44 +fn_80186D24 = .text:0x80186D24; // type:function size:0x60 +fn_80186D84 = .text:0x80186D84; // type:function size:0x148 +Handle__17VocalTrainerPanelFP9DataArrayb = .text:0x80186ECC; // type:function size:0x1D0 +fn_8018709C = .text:0x8018709C; // type:function size:0x114 +fn_801871B0 = .text:0x801871B0; // type:function size:0x5C +fn_8018720C = .text:0x8018720C; // type:function size:0x5C +fn_80187268 = .text:0x80187268; // type:function size:0x54 +fn_801872BC = .text:0x801872BC; // type:function size:0x5C +fn_80187318 = .text:0x80187318; // type:function size:0x5C +fn_80187374 = .text:0x80187374; // type:function size:0x114 +fn_80187488 = .text:0x80187488; // type:function size:0x5C +fn_801874E4 = .text:0x801874E4; // type:function size:0x5C +fn_80187540 = .text:0x80187540; // type:function size:0x54 +fn_80187594 = .text:0x80187594; // type:function size:0x5C +fn_801875F0 = .text:0x801875F0; // type:function size:0x134 +fn_80187724 = .text:0x80187724; // type:function size:0x4 +fn_80187728 = .text:0x80187728; // type:function size:0x14 +fn_8018773C = .text:0x8018773C; // type:function size:0x14 +fn_80187750 = .text:0x80187750; // type:function size:0x14 +fn_80187764 = .text:0x80187764; // type:function size:0x14 +fn_80187778 = .text:0x80187778; // type:function size:0x84 +fn_801877FC = .text:0x801877FC; // type:function size:0x4C +fn_80187848 = .text:0x80187848; // type:function size:0x4 +fn_8018784C = .text:0x8018784C; // type:function size:0x90 +fn_801878DC = .text:0x801878DC; // type:function size:0x4 +fn_801878E0 = .text:0x801878E0; // type:function size:0x40 +fn_80187920 = .text:0x80187920; // type:function size:0x8C +fn_801879AC = .text:0x801879AC; // type:function size:0x28 +fn_801879D4 = .text:0x801879D4; // type:function size:0x178 +fn_80187B4C = .text:0x80187B4C; // type:function size:0x324 +fn_80187E70 = .text:0x80187E70; // type:function size:0x64 +fn_80187ED4 = .text:0x80187ED4; // type:function size:0x298 +fn_8018816C = .text:0x8018816C; // type:function size:0x54 +Handle__11PresenceMgrFP9DataArrayb = .text:0x801881C0; // type:function size:0x304 +fn_801884C4 = .text:0x801884C4; // type:function size:0x68 +fn_8018852C = .text:0x8018852C; // type:function size:0x68 +fn_80188594 = .text:0x80188594; // type:function size:0x190 +fn_80188724 = .text:0x80188724; // type:function size:0x54 +fn_80188778 = .text:0x80188778; // type:function size:0x28 +fn_801887A0 = .text:0x801887A0; // type:function size:0x68 +fn_80188808 = .text:0x80188808; // type:function size:0x48 +fn_80188850 = .text:0x80188850; // type:function size:0x4 +fn_80188854 = .text:0x80188854; // type:function size:0x30 +fn_80188884 = .text:0x80188884; // type:function size:0x58 +fn_801888DC = .text:0x801888DC; // type:function size:0x120 +fn_801889FC = .text:0x801889FC; // type:function size:0x150 +fn_80188B4C = .text:0x80188B4C; // type:function size:0x58 +fn_80188BA4 = .text:0x80188BA4; // type:function size:0x60 +fn_80188C04 = .text:0x80188C04; // type:function size:0x58 +fn_80188C5C = .text:0x80188C5C; // type:function size:0x58 +fn_80188CB4 = .text:0x80188CB4; // type:function size:0x50 +fn_80188D04 = .text:0x80188D04; // type:function size:0x58 +fn_80188D5C = .text:0x80188D5C; // type:function size:0x80 +fn_80188DDC = .text:0x80188DDC; // type:function size:0x80 +fn_80188E5C = .text:0x80188E5C; // type:function size:0x58 +fn_80188EB4 = .text:0x80188EB4; // type:function size:0x54 +fn_80188F08 = .text:0x80188F08; // type:function size:0x5C +fn_80188F64 = .text:0x80188F64; // type:function size:0x6C +fn_80188FD0 = .text:0x80188FD0; // type:function size:0x28 +fn_80188FF8 = .text:0x80188FF8; // type:function size:0x8 +fn_80189000 = .text:0x80189000; // type:function size:0x5C +fn_8018905C = .text:0x8018905C; // type:function size:0x8 +fn_80189064 = .text:0x80189064; // type:function size:0x3C +fn_801890A0 = .text:0x801890A0; // type:function size:0x58 +fn_801890F8 = .text:0x801890F8; // type:function size:0x80 +fn_80189178 = .text:0x80189178; // type:function size:0x80 +fn_801891F8 = .text:0x801891F8; // type:function size:0x58 +fn_80189250 = .text:0x80189250; // type:function size:0x54 +fn_801892A4 = .text:0x801892A4; // type:function size:0x5C +fn_80189300 = .text:0x80189300; // type:function size:0x6C +fn_8018936C = .text:0x8018936C; // type:function size:0x28 +fn_80189394 = .text:0x80189394; // type:function size:0x8 +fn_8018939C = .text:0x8018939C; // type:function size:0x8 +fn_801893A4 = .text:0x801893A4; // type:function size:0x3C +fn_801893E0 = .text:0x801893E0; // type:function size:0x58 +fn_80189438 = .text:0x80189438; // type:function size:0x60 +fn_80189498 = .text:0x80189498; // type:function size:0x58 +fn_801894F0 = .text:0x801894F0; // type:function size:0x58 +fn_80189548 = .text:0x80189548; // type:function size:0x50 +fn_80189598 = .text:0x80189598; // type:function size:0x58 +fn_801895F0 = .text:0x801895F0; // type:function size:0x60 +fn_80189650 = .text:0x80189650; // type:function size:0x58 +fn_801896A8 = .text:0x801896A8; // type:function size:0x58 +fn_80189700 = .text:0x80189700; // type:function size:0x50 +fn_80189750 = .text:0x80189750; // type:function size:0x58 +fn_801897A8 = .text:0x801897A8; // type:function size:0x80 +fn_80189828 = .text:0x80189828; // type:function size:0x80 +fn_801898A8 = .text:0x801898A8; // type:function size:0x58 +fn_80189900 = .text:0x80189900; // type:function size:0x54 +fn_80189954 = .text:0x80189954; // type:function size:0x5C +fn_801899B0 = .text:0x801899B0; // type:function size:0x6C +fn_80189A1C = .text:0x80189A1C; // type:function size:0x28 +fn_80189A44 = .text:0x80189A44; // type:function size:0x8 +fn_80189A4C = .text:0x80189A4C; // type:function size:0x3C +fn_80189A88 = .text:0x80189A88; // type:function size:0x58 +fn_80189AE0 = .text:0x80189AE0; // type:function size:0x60 +fn_80189B40 = .text:0x80189B40; // type:function size:0x58 +fn_80189B98 = .text:0x80189B98; // type:function size:0x58 +fn_80189BF0 = .text:0x80189BF0; // type:function size:0x50 +fn_80189C40 = .text:0x80189C40; // type:function size:0x58 +fn_80189C98 = .text:0x80189C98; // type:function size:0x60 +fn_80189CF8 = .text:0x80189CF8; // type:function size:0x58 +fn_80189D50 = .text:0x80189D50; // type:function size:0x58 +fn_80189DA8 = .text:0x80189DA8; // type:function size:0x50 +fn_80189DF8 = .text:0x80189DF8; // type:function size:0x58 +fn_80189E50 = .text:0x80189E50; // type:function size:0x60 +fn_80189EB0 = .text:0x80189EB0; // type:function size:0x58 +fn_80189F08 = .text:0x80189F08; // type:function size:0x58 +fn_80189F60 = .text:0x80189F60; // type:function size:0x50 +fn_80189FB0 = .text:0x80189FB0; // type:function size:0x58 +fn_8018A008 = .text:0x8018A008; // type:function size:0x60 +fn_8018A068 = .text:0x8018A068; // type:function size:0x58 +fn_8018A0C0 = .text:0x8018A0C0; // type:function size:0x58 +fn_8018A118 = .text:0x8018A118; // type:function size:0x50 +fn_8018A168 = .text:0x8018A168; // type:function size:0x58 +fn_8018A1C0 = .text:0x8018A1C0; // type:function size:0x60 +fn_8018A220 = .text:0x8018A220; // type:function size:0x58 +fn_8018A278 = .text:0x8018A278; // type:function size:0x58 +fn_8018A2D0 = .text:0x8018A2D0; // type:function size:0x50 +fn_8018A320 = .text:0x8018A320; // type:function size:0x58 +fn_8018A378 = .text:0x8018A378; // type:function size:0x60 +fn_8018A3D8 = .text:0x8018A3D8; // type:function size:0x58 +fn_8018A430 = .text:0x8018A430; // type:function size:0x58 +fn_8018A488 = .text:0x8018A488; // type:function size:0x50 +fn_8018A4D8 = .text:0x8018A4D8; // type:function size:0x58 +fn_8018A530 = .text:0x8018A530; // type:function size:0x60 +fn_8018A590 = .text:0x8018A590; // type:function size:0x58 +fn_8018A5E8 = .text:0x8018A5E8; // type:function size:0x58 +fn_8018A640 = .text:0x8018A640; // type:function size:0x50 +fn_8018A690 = .text:0x8018A690; // type:function size:0x44 +fn_8018A6D4 = .text:0x8018A6D4; // type:function size:0x3C +fn_8018A710 = .text:0x8018A710; // type:function size:0x70 +fn_8018A780 = .text:0x8018A780; // type:function size:0x30 +fn_8018A7B0 = .text:0x8018A7B0; // type:function size:0x30 +fn_8018A7E0 = .text:0x8018A7E0; // type:function size:0x40 +fn_8018A820 = .text:0x8018A820; // type:function size:0x30 +fn_8018A850 = .text:0x8018A850; // type:function size:0x30 +fn_8018A880 = .text:0x8018A880; // type:function size:0x40 +fn_8018A8C0 = .text:0x8018A8C0; // type:function size:0x44 +fn_8018A904 = .text:0x8018A904; // type:function size:0x3C +fn_8018A940 = .text:0x8018A940; // type:function size:0x70 +fn_8018A9B0 = .text:0x8018A9B0; // type:function size:0x44 +fn_8018A9F4 = .text:0x8018A9F4; // type:function size:0x3C +fn_8018AA30 = .text:0x8018AA30; // type:function size:0x70 +fn_8018AAA0 = .text:0x8018AAA0; // type:function size:0x30 +fn_8018AAD0 = .text:0x8018AAD0; // type:function size:0x30 +fn_8018AB00 = .text:0x8018AB00; // type:function size:0x40 +fn_8018AB40 = .text:0x8018AB40; // type:function size:0x44 +fn_8018AB84 = .text:0x8018AB84; // type:function size:0x3C +fn_8018ABC0 = .text:0x8018ABC0; // type:function size:0x70 +fn_8018AC30 = .text:0x8018AC30; // type:function size:0x44 +fn_8018AC74 = .text:0x8018AC74; // type:function size:0x3C +fn_8018ACB0 = .text:0x8018ACB0; // type:function size:0x70 +fn_8018AD20 = .text:0x8018AD20; // type:function size:0x44 +fn_8018AD64 = .text:0x8018AD64; // type:function size:0x3C +fn_8018ADA0 = .text:0x8018ADA0; // type:function size:0x70 +fn_8018AE10 = .text:0x8018AE10; // type:function size:0x44 +fn_8018AE54 = .text:0x8018AE54; // type:function size:0x3C +fn_8018AE90 = .text:0x8018AE90; // type:function size:0x70 +fn_8018AF00 = .text:0x8018AF00; // type:function size:0x44 +fn_8018AF44 = .text:0x8018AF44; // type:function size:0x3C +fn_8018AF80 = .text:0x8018AF80; // type:function size:0x70 +fn_8018AFF0 = .text:0x8018AFF0; // type:function size:0x44 +fn_8018B034 = .text:0x8018B034; // type:function size:0x3C +fn_8018B070 = .text:0x8018B070; // type:function size:0x70 +fn_8018B0E0 = .text:0x8018B0E0; // type:function size:0x44 +fn_8018B124 = .text:0x8018B124; // type:function size:0x3C +fn_8018B160 = .text:0x8018B160; // type:function size:0x70 +fn_8018B1D0 = .text:0x8018B1D0; // type:function size:0x14C +fn_8018B31C = .text:0x8018B31C; // type:function size:0x498 +fn_8018B7B4 = .text:0x8018B7B4; // type:function size:0x4 +fn_8018B7B8 = .text:0x8018B7B8; // type:function size:0x8 +fn_8018B7C0 = .text:0x8018B7C0; // type:function size:0x34 +fn_8018B7F4 = .text:0x8018B7F4; // type:function size:0x4 +fn_8018B7F8 = .text:0x8018B7F8; // type:function size:0x8 +fn_8018B800 = .text:0x8018B800; // type:function size:0x4 +fn_8018B804 = .text:0x8018B804; // type:function size:0x3C +fn_8018B840 = .text:0x8018B840; // type:function size:0x40 +fn_8018B880 = .text:0x8018B880; // type:function size:0x8C +fn_8018B90C = .text:0x8018B90C; // type:function size:0x8 +fn_8018B914 = .text:0x8018B914; // type:function size:0x2C +fn_8018B940 = .text:0x8018B940; // type:function size:0x58 +fn_8018B998 = .text:0x8018B998; // type:function size:0x28 +fn_8018B9C0 = .text:0x8018B9C0; // type:function size:0x68 +fn_8018BA28 = .text:0x8018BA28; // type:function size:0x4 +fn_8018BA2C = .text:0x8018BA2C; // type:function size:0x4 +fn_8018BA30 = .text:0x8018BA30; // type:function size:0x3C +fn_8018BA6C = .text:0x8018BA6C; // type:function size:0x4 +fn_8018BA70 = .text:0x8018BA70; // type:function size:0x4 +fn_8018BA74 = .text:0x8018BA74; // type:function size:0x8 +fn_8018BA7C = .text:0x8018BA7C; // type:function size:0x34 +fn_8018BAB0 = .text:0x8018BAB0; // type:function size:0x4 +fn_8018BAB4 = .text:0x8018BAB4; // type:function size:0x8 +fn_8018BABC = .text:0x8018BABC; // type:function size:0x4 +fn_8018BAC0 = .text:0x8018BAC0; // type:function size:0x8 +fn_8018BAC8 = .text:0x8018BAC8; // type:function size:0x34 +fn_8018BAFC = .text:0x8018BAFC; // type:function size:0x4 +fn_8018BB00 = .text:0x8018BB00; // type:function size:0x8 +fn_8018BB08 = .text:0x8018BB08; // type:function size:0x4 +fn_8018BB0C = .text:0x8018BB0C; // type:function size:0x8 +fn_8018BB14 = .text:0x8018BB14; // type:function size:0x34 +fn_8018BB48 = .text:0x8018BB48; // type:function size:0x4 +fn_8018BB4C = .text:0x8018BB4C; // type:function size:0x8 +fn_8018BB54 = .text:0x8018BB54; // type:function size:0x4 +fn_8018BB58 = .text:0x8018BB58; // type:function size:0x8 +fn_8018BB60 = .text:0x8018BB60; // type:function size:0x34 +fn_8018BB94 = .text:0x8018BB94; // type:function size:0x58 +fn_8018BBEC = .text:0x8018BBEC; // type:function size:0x58 +fn_8018BC44 = .text:0x8018BC44; // type:function size:0x60 +fn_8018BCA4 = .text:0x8018BCA4; // type:function size:0x58 +fn_8018BCFC = .text:0x8018BCFC; // type:function size:0x4 +fn_8018BD00 = .text:0x8018BD00; // type:function size:0x8 +fn_8018BD08 = .text:0x8018BD08; // type:function size:0x4 +fn_8018BD0C = .text:0x8018BD0C; // type:function size:0x8 +fn_8018BD14 = .text:0x8018BD14; // type:function size:0x34 +fn_8018BD48 = .text:0x8018BD48; // type:function size:0x4 +fn_8018BD4C = .text:0x8018BD4C; // type:function size:0x8 +fn_8018BD54 = .text:0x8018BD54; // type:function size:0x4 +fn_8018BD58 = .text:0x8018BD58; // type:function size:0x8 +fn_8018BD60 = .text:0x8018BD60; // type:function size:0x34 +fn_8018BD94 = .text:0x8018BD94; // type:function size:0x4 +fn_8018BD98 = .text:0x8018BD98; // type:function size:0x8 +fn_8018BDA0 = .text:0x8018BDA0; // type:function size:0x4 +fn_8018BDA4 = .text:0x8018BDA4; // type:function size:0x8 +fn_8018BDAC = .text:0x8018BDAC; // type:function size:0x34 +fn_8018BDE0 = .text:0x8018BDE0; // type:function size:0x4 +fn_8018BDE4 = .text:0x8018BDE4; // type:function size:0x8 +fn_8018BDEC = .text:0x8018BDEC; // type:function size:0x180 +fn_8018BF6C = .text:0x8018BF6C; // type:function size:0x40 +fn_8018BFAC = .text:0x8018BFAC; // type:function size:0x12C +fn_8018C0D8 = .text:0x8018C0D8; // type:function size:0x34 +fn_8018C10C = .text:0x8018C10C; // type:function size:0xB4 +fn_8018C1C0 = .text:0x8018C1C0; // type:function size:0xD4 +fn_8018C294 = .text:0x8018C294; // type:function size:0x78 +fn_8018C30C = .text:0x8018C30C; // type:function size:0xA4 +fn_8018C3B0 = .text:0x8018C3B0; // type:function size:0x88 +fn_8018C438 = .text:0x8018C438; // type:function size:0x58 +fn_8018C490 = .text:0x8018C490; // type:function size:0x64 +fn_8018C4F4 = .text:0x8018C4F4; // type:function size:0x1AC +fn_8018C6A0 = .text:0x8018C6A0; // type:function size:0x28 +fn_8018C6C8 = .text:0x8018C6C8; // type:function size:0x8 +fn_8018C6D0 = .text:0x8018C6D0; // type:function size:0x170 +fn_8018C840 = .text:0x8018C840; // type:function size:0x24 +fn_8018C864 = .text:0x8018C864; // type:function size:0x5C +fn_8018C8C0 = .text:0x8018C8C0; // type:function size:0x30 +fn_8018C8F0 = .text:0x8018C8F0; // type:function size:0xBC +fn_8018C9AC = .text:0x8018C9AC; // type:function size:0x30 +fn_8018C9DC = .text:0x8018C9DC; // type:function size:0xBC +fn_8018CA98 = .text:0x8018CA98; // type:function size:0x24 +fn_8018CABC = .text:0x8018CABC; // type:function size:0x14 +fn_8018CAD0 = .text:0x8018CAD0; // type:function size:0x6C +fn_8018CB3C = .text:0x8018CB3C; // type:function size:0xC +fn_8018CB48 = .text:0x8018CB48; // type:function size:0x58 +fn_8018CBA0 = .text:0x8018CBA0; // type:function size:0x114 +fn_8018CCB4 = .text:0x8018CCB4; // type:function size:0xBC +fn_8018CD70 = .text:0x8018CD70; // type:function size:0x94 +fn_8018CE04 = .text:0x8018CE04; // type:function size:0xD4 +fn_8018CED8 = .text:0x8018CED8; // type:function size:0xC8 +fn_8018CFA0 = .text:0x8018CFA0; // type:function size:0x58 +fn_8018CFF8 = .text:0x8018CFF8; // type:function size:0x64 +fn_8018D05C = .text:0x8018D05C; // type:function size:0x200 +fn_8018D25C = .text:0x8018D25C; // type:function size:0x108 +fn_8018D364 = .text:0x8018D364; // type:function size:0xD4 +fn_8018D438 = .text:0x8018D438; // type:function size:0x6C +fn_8018D4A4 = .text:0x8018D4A4; // type:function size:0x80 +fn_8018D524 = .text:0x8018D524; // type:function size:0x14 +fn_8018D538 = .text:0x8018D538; // type:function size:0x2C +fn_8018D564 = .text:0x8018D564; // type:function size:0x5C +fn_8018D5C0 = .text:0x8018D5C0; // type:function size:0x84 +fn_8018D644 = .text:0x8018D644; // type:function size:0x270 +fn_8018D8B4 = .text:0x8018D8B4; // type:function size:0x3C +fn_8018D8F0 = .text:0x8018D8F0; // type:function size:0x1AC +fn_8018DA9C = .text:0x8018DA9C; // type:function size:0x70 +fn_8018DB0C = .text:0x8018DB0C; // type:function size:0x228 +fn_8018DD34 = .text:0x8018DD34; // type:function size:0xBC +fn_8018DDF0 = .text:0x8018DDF0; // type:function size:0xF8 +fn_8018DEE8 = .text:0x8018DEE8; // type:function size:0x58 +fn_8018DF40 = .text:0x8018DF40; // type:function size:0x8 +fn_8018DF48 = .text:0x8018DF48; // type:function size:0x4 +fn_8018DF4C = .text:0x8018DF4C; // type:function size:0x40 +fn_8018DF8C = .text:0x8018DF8C; // type:function size:0x74 +fn_8018E000 = .text:0x8018E000; // type:function size:0xC4 +fn_8018E0C4 = .text:0x8018E0C4; // type:function size:0x4 +fn_8018E0C8 = .text:0x8018E0C8; // type:function size:0x88 +fn_8018E150 = .text:0x8018E150; // type:function size:0x2C +fn_8018E17C = .text:0x8018E17C; // type:function size:0x10 +fn_8018E18C = .text:0x8018E18C; // type:function size:0x1D4 +fn_8018E360 = .text:0x8018E360; // type:function size:0xFC +fn_8018E45C = .text:0x8018E45C; // type:function size:0x58 +fn_8018E4B4 = .text:0x8018E4B4; // type:function size:0x4 +fn_8018E4B8 = .text:0x8018E4B8; // type:function size:0x40 +fn_8018E4F8 = .text:0x8018E4F8; // type:function size:0x74 +fn_8018E56C = .text:0x8018E56C; // type:function size:0x17C +fn_8018E6E8 = .text:0x8018E6E8; // type:function size:0xFC +fn_8018E7E4 = .text:0x8018E7E4; // type:function size:0x58 +fn_8018E83C = .text:0x8018E83C; // type:function size:0x4 +fn_8018E840 = .text:0x8018E840; // type:function size:0x40 +fn_8018E880 = .text:0x8018E880; // type:function size:0x74 +fn_8018E8F4 = .text:0x8018E8F4; // type:function size:0xEC +fn_8018E9E0 = .text:0x8018E9E0; // type:function size:0xFC +fn_8018EADC = .text:0x8018EADC; // type:function size:0x58 +fn_8018EB34 = .text:0x8018EB34; // type:function size:0x4 +fn_8018EB38 = .text:0x8018EB38; // type:function size:0x40 +fn_8018EB78 = .text:0x8018EB78; // type:function size:0x74 +fn_8018EBEC = .text:0x8018EBEC; // type:function size:0x224 +fn_8018EE10 = .text:0x8018EE10; // type:function size:0xFC +fn_8018EF0C = .text:0x8018EF0C; // type:function size:0x58 +fn_8018EF64 = .text:0x8018EF64; // type:function size:0x4 +fn_8018EF68 = .text:0x8018EF68; // type:function size:0x40 +fn_8018EFA8 = .text:0x8018EFA8; // type:function size:0x74 +fn_8018F01C = .text:0x8018F01C; // type:function size:0x11C +fn_8018F138 = .text:0x8018F138; // type:function size:0x4 +fn_8018F13C = .text:0x8018F13C; // type:function size:0xFC +fn_8018F238 = .text:0x8018F238; // type:function size:0x58 +fn_8018F290 = .text:0x8018F290; // type:function size:0x4 +fn_8018F294 = .text:0x8018F294; // type:function size:0x40 +fn_8018F2D4 = .text:0x8018F2D4; // type:function size:0x74 +fn_8018F348 = .text:0x8018F348; // type:function size:0x44 +fn_8018F38C = .text:0x8018F38C; // type:function size:0x3C +fn_8018F3C8 = .text:0x8018F3C8; // type:function size:0x138 +fn_8018F500 = .text:0x8018F500; // type:function size:0x4 +fn_8018F504 = .text:0x8018F504; // type:function size:0x54 +fn_8018F558 = .text:0x8018F558; // type:function size:0x64 +fn_8018F5BC = .text:0x8018F5BC; // type:function size:0x50 +fn_8018F60C = .text:0x8018F60C; // type:function size:0x4 +fn_8018F610 = .text:0x8018F610; // type:function size:0xFC +fn_8018F70C = .text:0x8018F70C; // type:function size:0x58 +fn_8018F764 = .text:0x8018F764; // type:function size:0x4 +fn_8018F768 = .text:0x8018F768; // type:function size:0x40 +fn_8018F7A8 = .text:0x8018F7A8; // type:function size:0x74 +fn_8018F81C = .text:0x8018F81C; // type:function size:0x30 +fn_8018F84C = .text:0x8018F84C; // type:function size:0x30 +fn_8018F87C = .text:0x8018F87C; // type:function size:0x60 +fn_8018F8DC = .text:0x8018F8DC; // type:function size:0x130 +fn_8018FA0C = .text:0x8018FA0C; // type:function size:0xFC +fn_8018FB08 = .text:0x8018FB08; // type:function size:0x58 +fn_8018FB60 = .text:0x8018FB60; // type:function size:0x4 +fn_8018FB64 = .text:0x8018FB64; // type:function size:0x40 +fn_8018FBA4 = .text:0x8018FBA4; // type:function size:0x74 +fn_8018FC18 = .text:0x8018FC18; // type:function size:0x3C +fn_8018FC54 = .text:0x8018FC54; // type:function size:0x84 +fn_8018FCD8 = .text:0x8018FCD8; // type:function size:0x4 +fn_8018FCDC = .text:0x8018FCDC; // type:function size:0x90 +fn_8018FD6C = .text:0x8018FD6C; // type:function size:0x4 +fn_8018FD70 = .text:0x8018FD70; // type:function size:0x40 +fn_8018FDB0 = .text:0x8018FDB0; // type:function size:0xEC +fn_8018FE9C = .text:0x8018FE9C; // type:function size:0x2C +fn_8018FEC8 = .text:0x8018FEC8; // type:function size:0x8 +fn_8018FED0 = .text:0x8018FED0; // type:function size:0x2C +fn_8018FEFC = .text:0x8018FEFC; // type:function size:0x58 +fn_8018FF54 = .text:0x8018FF54; // type:function size:0x8 +fn_8018FF5C = .text:0x8018FF5C; // type:function size:0x54 +fn_8018FFB0 = .text:0x8018FFB0; // type:function size:0x48 +fn_8018FFF8 = .text:0x8018FFF8; // type:function size:0x4C +fn_80190044 = .text:0x80190044; // type:function size:0x70 +fn_801900B4 = .text:0x801900B4; // type:function size:0x6C +fn_80190120 = .text:0x80190120; // type:function size:0x28 +fn_80190148 = .text:0x80190148; // type:function size:0x2C +fn_80190174 = .text:0x80190174; // type:function size:0x30 +fn_801901A4 = .text:0x801901A4; // type:function size:0x30 +fn_801901D4 = .text:0x801901D4; // type:function size:0x40 +fn_80190214 = .text:0x80190214; // type:function size:0xE4 +fn_801902F8 = .text:0x801902F8; // type:function size:0x74 +fn_8019036C = .text:0x8019036C; // type:function size:0x2C +fn_80190398 = .text:0x80190398; // type:function size:0x30 +fn_801903C8 = .text:0x801903C8; // type:function size:0xA0 +fn_80190468 = .text:0x80190468; // type:function size:0x74 +fn_801904DC = .text:0x801904DC; // type:function size:0x2C +fn_80190508 = .text:0x80190508; // type:function size:0x30 +fn_80190538 = .text:0x80190538; // type:function size:0xA0 +fn_801905D8 = .text:0x801905D8; // type:function size:0xDC +fn_801906B4 = .text:0x801906B4; // type:function size:0x8 +fn_801906BC = .text:0x801906BC; // type:function size:0x40 +fn_801906FC = .text:0x801906FC; // type:function size:0x4 +fn_80190700 = .text:0x80190700; // type:function size:0x8 +fn_80190708 = .text:0x80190708; // type:function size:0xE4 +fn_801907EC = .text:0x801907EC; // type:function size:0x4 +fn_801907F0 = .text:0x801907F0; // type:function size:0x40 +fn_80190830 = .text:0x80190830; // type:function size:0x4 +fn_80190834 = .text:0x80190834; // type:function size:0x8 +fn_8019083C = .text:0x8019083C; // type:function size:0x68 +fn_801908A4 = .text:0x801908A4; // type:function size:0x4 +fn_801908A8 = .text:0x801908A8; // type:function size:0x40 +fn_801908E8 = .text:0x801908E8; // type:function size:0xA0 +fn_80190988 = .text:0x80190988; // type:function size:0x84 +fn_80190A0C = .text:0x80190A0C; // type:function size:0x138 +fn_80190B44 = .text:0x80190B44; // type:function size:0x58 +fn_80190B9C = .text:0x80190B9C; // type:function size:0x2C +fn_80190BC8 = .text:0x80190BC8; // type:function size:0x30 +fn_80190BF8 = .text:0x80190BF8; // type:function size:0xA0 +fn_80190C98 = .text:0x80190C98; // type:function size:0x74 +fn_80190D0C = .text:0x80190D0C; // type:function size:0x58 +fn_80190D64 = .text:0x80190D64; // type:function size:0x2C +fn_80190D90 = .text:0x80190D90; // type:function size:0x30 +fn_80190DC0 = .text:0x80190DC0; // type:function size:0xA0 +fn_80190E60 = .text:0x80190E60; // type:function size:0x74 +fn_80190ED4 = .text:0x80190ED4; // type:function size:0x74 +fn_80190F48 = .text:0x80190F48; // type:function size:0x2C +fn_80190F74 = .text:0x80190F74; // type:function size:0x30 +fn_80190FA4 = .text:0x80190FA4; // type:function size:0x34 +fn_80190FD8 = .text:0x80190FD8; // type:function size:0x34 +fn_8019100C = .text:0x8019100C; // type:function size:0x74 +fn_80191080 = .text:0x80191080; // type:function size:0x2C +fn_801910AC = .text:0x801910AC; // type:function size:0x30 +fn_801910DC = .text:0x801910DC; // type:function size:0xA0 +fn_8019117C = .text:0x8019117C; // type:function size:0x58 +fn_801911D4 = .text:0x801911D4; // type:function size:0x2C +fn_80191200 = .text:0x80191200; // type:function size:0x30 +fn_80191230 = .text:0x80191230; // type:function size:0xA0 +fn_801912D0 = .text:0x801912D0; // type:function size:0x74 +fn_80191344 = .text:0x80191344; // type:function size:0x84 +fn_801913C8 = .text:0x801913C8; // type:function size:0x2C +fn_801913F4 = .text:0x801913F4; // type:function size:0x30 +fn_80191424 = .text:0x80191424; // type:function size:0xA0 +fn_801914C4 = .text:0x801914C4; // type:function size:0x74 +fn_80191538 = .text:0x80191538; // type:function size:0x2C +fn_80191564 = .text:0x80191564; // type:function size:0x30 +fn_80191594 = .text:0x80191594; // type:function size:0xA0 +fn_80191634 = .text:0x80191634; // type:function size:0x124 +fn_80191758 = .text:0x80191758; // type:function size:0xFC +fn_80191854 = .text:0x80191854; // type:function size:0x58 +fn_801918AC = .text:0x801918AC; // type:function size:0x48 +fn_801918F4 = .text:0x801918F4; // type:function size:0x8 +fn_801918FC = .text:0x801918FC; // type:function size:0x4 +fn_80191900 = .text:0x80191900; // type:function size:0x40 +fn_80191940 = .text:0x80191940; // type:function size:0x74 +fn_801919B4 = .text:0x801919B4; // type:function size:0xFC +fn_80191AB0 = .text:0x80191AB0; // type:function size:0x58 +fn_80191B08 = .text:0x80191B08; // type:function size:0x4 +fn_80191B0C = .text:0x80191B0C; // type:function size:0x40 +fn_80191B4C = .text:0x80191B4C; // type:function size:0x74 +fn_80191BC0 = .text:0x80191BC0; // type:function size:0x78 +fn_80191C38 = .text:0x80191C38; // type:function size:0x124 +fn_80191D5C = .text:0x80191D5C; // type:function size:0x84 +fn_80191DE0 = .text:0x80191DE0; // type:function size:0x78 +fn_80191E58 = .text:0x80191E58; // type:function size:0x248 +fn_801920A0 = .text:0x801920A0; // type:function size:0x174 +fn_80192214 = .text:0x80192214; // type:function size:0x94 +fn_801922A8 = .text:0x801922A8; // type:function size:0x58 +fn_80192300 = .text:0x80192300; // type:function size:0x2C +fn_8019232C = .text:0x8019232C; // type:function size:0x30 +fn_8019235C = .text:0x8019235C; // type:function size:0xA0 +fn_801923FC = .text:0x801923FC; // type:function size:0x74 +OnEarnAccomplishment__21AccomplishmentManagerFP9DataArray = .text:0x80192470; // type:function size:0xE8 +GetObjAtIndex__9DataArrayCFi = .text:0x80192558; // type:function size:0x34 +fn_8019258C = .text:0x8019258C; // type:function size:0x64 +fn_801925F0 = .text:0x801925F0; // type:function size:0xC4 +fn_801926B4 = .text:0x801926B4; // type:function size:0xAC +fn_80192760 = .text:0x80192760; // type:function size:0x11C +fn_8019287C = .text:0x8019287C; // type:function size:0x12C +fn_801929A8 = .text:0x801929A8; // type:function size:0x58 +fn_80192A00 = .text:0x80192A00; // type:function size:0x58 +EarnAccomplishmentForAll__21AccomplishmentManagerF6Symbol = .text:0x80192A58; // type:function size:0xF0 +fn_80192B48 = .text:0x80192B48; // type:function size:0x58 +fn_80192BA0 = .text:0x80192BA0; // type:function size:0x1AC +fn_80192D4C = .text:0x80192D4C; // type:function size:0x100 +fn_80192E4C = .text:0x80192E4C; // type:function size:0xE8 +fn_80192F34 = .text:0x80192F34; // type:function size:0x138 +fn_8019306C = .text:0x8019306C; // type:function size:0x4C +fn_801930B8 = .text:0x801930B8; // type:function size:0x220 +fn_801932D8 = .text:0x801932D8; // type:function size:0x3C +fn_80193314 = .text:0x80193314; // type:function size:0x3C +fn_80193350 = .text:0x80193350; // type:function size:0xD0 +fn_80193420 = .text:0x80193420; // type:function size:0xE8 +fn_80193508 = .text:0x80193508; // type:function size:0x118 +fn_80193620 = .text:0x80193620; // type:function size:0xEC +fn_8019370C = .text:0x8019370C; // type:function size:0x20C +fn_80193918 = .text:0x80193918; // type:function size:0x170 +fn_80193A88 = .text:0x80193A88; // type:function size:0x230 +fn_80193CB8 = .text:0x80193CB8; // type:function size:0xB0 +fn_80193D68 = .text:0x80193D68; // type:function size:0x138 +fn_80193EA0 = .text:0x80193EA0; // type:function size:0xEC +fn_80193F8C = .text:0x80193F8C; // type:function size:0x178 +fn_80194104 = .text:0x80194104; // type:function size:0x8 +fn_8019410C = .text:0x8019410C; // type:function size:0xB4 +fn_801941C0 = .text:0x801941C0; // type:function size:0x40 +fn_80194200 = .text:0x80194200; // type:function size:0x30 +fn_80194230 = .text:0x80194230; // type:function size:0x64 +fn_80194294 = .text:0x80194294; // type:function size:0x58 +fn_801942EC = .text:0x801942EC; // type:function size:0x108 +fn_801943F4 = .text:0x801943F4; // type:function size:0xD8 +fn_801944CC = .text:0x801944CC; // type:function size:0x9C +fn_80194568 = .text:0x80194568; // type:function size:0x9C +fn_80194604 = .text:0x80194604; // type:function size:0xA0 +fn_801946A4 = .text:0x801946A4; // type:function size:0x8C +fn_80194730 = .text:0x80194730; // type:function size:0x15C +fn_8019488C = .text:0x8019488C; // type:function size:0x9C +fn_80194928 = .text:0x80194928; // type:function size:0x78 +fn_801949A0 = .text:0x801949A0; // type:function size:0xA0 +fn_80194A40 = .text:0x80194A40; // type:function size:0x70 +fn_80194AB0 = .text:0x80194AB0; // type:function size:0x8C +fn_80194B3C = .text:0x80194B3C; // type:function size:0x3C +fn_80194B78 = .text:0x80194B78; // type:function size:0xC8 +fn_80194C40 = .text:0x80194C40; // type:function size:0x90 +fn_80194CD0 = .text:0x80194CD0; // type:function size:0x30 +fn_80194D00 = .text:0x80194D00; // type:function size:0x8C +fn_80194D8C = .text:0x80194D8C; // type:function size:0x30 +fn_80194DBC = .text:0x80194DBC; // type:function size:0x7C +fn_80194E38 = .text:0x80194E38; // type:function size:0x7C +fn_80194EB4 = .text:0x80194EB4; // type:function size:0x1DC +fn_80195090 = .text:0x80195090; // type:function size:0x188 +fn_80195218 = .text:0x80195218; // type:function size:0x30 +fn_80195248 = .text:0x80195248; // type:function size:0x30 +fn_80195278 = .text:0x80195278; // type:function size:0x38 +fn_801952B0 = .text:0x801952B0; // type:function size:0x4 +fn_801952B4 = .text:0x801952B4; // type:function size:0x3C +fn_801952F0 = .text:0x801952F0; // type:function size:0x40 +fn_80195330 = .text:0x80195330; // type:function size:0x8C +fn_801953BC = .text:0x801953BC; // type:function size:0x8 +fn_801953C4 = .text:0x801953C4; // type:function size:0x2C +fn_801953F0 = .text:0x801953F0; // type:function size:0x58 +fn_80195448 = .text:0x80195448; // type:function size:0x28 +fn_80195470 = .text:0x80195470; // type:function size:0x68 +fn_801954D8 = .text:0x801954D8; // type:function size:0x5C +fn_80195534 = .text:0x80195534; // type:function size:0x4 +fn_80195538 = .text:0x80195538; // type:function size:0x3C +fn_80195574 = .text:0x80195574; // type:function size:0x40 +fn_801955B4 = .text:0x801955B4; // type:function size:0x8C +fn_80195640 = .text:0x80195640; // type:function size:0x8 +fn_80195648 = .text:0x80195648; // type:function size:0x2C +fn_80195674 = .text:0x80195674; // type:function size:0x58 +fn_801956CC = .text:0x801956CC; // type:function size:0x28 +fn_801956F4 = .text:0x801956F4; // type:function size:0x68 +fn_8019575C = .text:0x8019575C; // type:function size:0x54 +fn_801957B0 = .text:0x801957B0; // type:function size:0x80 +fn_80195830 = .text:0x80195830; // type:function size:0x4 +fn_80195834 = .text:0x80195834; // type:function size:0x88 +fn_801958BC = .text:0x801958BC; // type:function size:0x2C +fn_801958E8 = .text:0x801958E8; // type:function size:0x10 +fn_801958F8 = .text:0x801958F8; // type:function size:0x54 +fn_8019594C = .text:0x8019594C; // type:function size:0x40 +fn_8019598C = .text:0x8019598C; // type:function size:0xD0 +fn_80195A5C = .text:0x80195A5C; // type:function size:0x88 +fn_80195AE4 = .text:0x80195AE4; // type:function size:0x4 +fn_80195AE8 = .text:0x80195AE8; // type:function size:0x88 +fn_80195B70 = .text:0x80195B70; // type:function size:0x2C +fn_80195B9C = .text:0x80195B9C; // type:function size:0x10 +fn_80195BAC = .text:0x80195BAC; // type:function size:0x5C +fn_80195C08 = .text:0x80195C08; // type:function size:0x8C +fn_80195C94 = .text:0x80195C94; // type:function size:0xF0 +fn_80195D84 = .text:0x80195D84; // type:function size:0x98 +fn_80195E1C = .text:0x80195E1C; // type:function size:0x60 +Handle__21AccomplishmentManagerFP9DataArrayb = .text:0x80195E7C; // type:function size:0x614 +GetUILabelAtIndex__FP9DataArrayi = .text:0x80196490; // type:function size:0x34 +GetUILabel__FP8DataNodeP9DataArray = .text:0x801964C4; // type:function size:0x3C +GetLocalBandUserAtIndex__FP9DataArrayi = .text:0x80196500; // type:function size:0x34 +GetLocalBandUser__FP8DataNodeP9DataArray = .text:0x80196534; // type:function size:0x3C +fn_80196570 = .text:0x80196570; // type:function size:0x114 +fn_80196684 = .text:0x80196684; // type:function size:0x60 +fn_801966E4 = .text:0x801966E4; // type:function size:0x5C +fn_80196740 = .text:0x80196740; // type:function size:0x54 +fn_80196794 = .text:0x80196794; // type:function size:0x5C +fn_801967F0 = .text:0x801967F0; // type:function size:0x5C +fn_8019684C = .text:0x8019684C; // type:function size:0x68 +fn_801968B4 = .text:0x801968B4; // type:function size:0x2C +fn_801968E0 = .text:0x801968E0; // type:function size:0xB4 +fn_80196994 = .text:0x80196994; // type:function size:0x38 +fn_801969CC = .text:0x801969CC; // type:function size:0x114 +fn_80196AE0 = .text:0x80196AE0; // type:function size:0x5C +fn_80196B3C = .text:0x80196B3C; // type:function size:0x5C +fn_80196B98 = .text:0x80196B98; // type:function size:0x54 +fn_80196BEC = .text:0x80196BEC; // type:function size:0x5C +fn_80196C48 = .text:0x80196C48; // type:function size:0x5C +fn_80196CA4 = .text:0x80196CA4; // type:function size:0x114 +fn_80196DB8 = .text:0x80196DB8; // type:function size:0x5C +fn_80196E14 = .text:0x80196E14; // type:function size:0x5C +fn_80196E70 = .text:0x80196E70; // type:function size:0x54 +fn_80196EC4 = .text:0x80196EC4; // type:function size:0x5C +fn_80196F20 = .text:0x80196F20; // type:function size:0x5C +fn_80196F7C = .text:0x80196F7C; // type:function size:0x150 +fn_801970CC = .text:0x801970CC; // type:function size:0x44 +fn_80197110 = .text:0x80197110; // type:function size:0x388 +fn_80197498 = .text:0x80197498; // type:function size:0x6C +fn_80197504 = .text:0x80197504; // type:function size:0x2C +fn_80197530 = .text:0x80197530; // type:function size:0x388 +fn_801978B8 = .text:0x801978B8; // type:function size:0x6C +fn_80197924 = .text:0x80197924; // type:function size:0x2C +fn_80197950 = .text:0x80197950; // type:function size:0x388 +fn_80197CD8 = .text:0x80197CD8; // type:function size:0x6C +fn_80197D44 = .text:0x80197D44; // type:function size:0x2C +fn_80197D70 = .text:0x80197D70; // type:function size:0x388 +fn_801980F8 = .text:0x801980F8; // type:function size:0x6C +fn_80198164 = .text:0x80198164; // type:function size:0x2C +fn_80198190 = .text:0x80198190; // type:function size:0x388 +fn_80198518 = .text:0x80198518; // type:function size:0x6C +fn_80198584 = .text:0x80198584; // type:function size:0x2C +fn_801985B0 = .text:0x801985B0; // type:function size:0x388 +fn_80198938 = .text:0x80198938; // type:function size:0x6C +fn_801989A4 = .text:0x801989A4; // type:function size:0x2C +fn_801989D0 = .text:0x801989D0; // type:function size:0x388 +fn_80198D58 = .text:0x80198D58; // type:function size:0x6C +fn_80198DC4 = .text:0x80198DC4; // type:function size:0x2C +fn_80198DF0 = .text:0x80198DF0; // type:function size:0x388 +fn_80199178 = .text:0x80199178; // type:function size:0x6C +fn_801991E4 = .text:0x801991E4; // type:function size:0x2C +fn_80199210 = .text:0x80199210; // type:function size:0x388 +fn_80199598 = .text:0x80199598; // type:function size:0x6C +fn_80199604 = .text:0x80199604; // type:function size:0x2C +fn_80199630 = .text:0x80199630; // type:function size:0x388 +fn_801999B8 = .text:0x801999B8; // type:function size:0x6C +fn_80199A24 = .text:0x80199A24; // type:function size:0x2C +fn_80199A50 = .text:0x80199A50; // type:function size:0x68 +fn_80199AB8 = .text:0x80199AB8; // type:function size:0xEC +fn_80199BA4 = .text:0x80199BA4; // type:function size:0x5C +fn_80199C00 = .text:0x80199C00; // type:function size:0x124 +fn_80199D24 = .text:0x80199D24; // type:function size:0x5C +fn_80199D80 = .text:0x80199D80; // type:function size:0x5C +fn_80199DDC = .text:0x80199DDC; // type:function size:0x54 +fn_80199E30 = .text:0x80199E30; // type:function size:0x5C +fn_80199E8C = .text:0x80199E8C; // type:function size:0x104 +fn_80199F90 = .text:0x80199F90; // type:function size:0x158 +fn_8019A0E8 = .text:0x8019A0E8; // type:function size:0x44 +fn_8019A12C = .text:0x8019A12C; // type:function size:0x8 +fn_8019A134 = .text:0x8019A134; // type:function size:0x104 +fn_8019A238 = .text:0x8019A238; // type:function size:0x5C +fn_8019A294 = .text:0x8019A294; // type:function size:0x10 +fn_8019A2A4 = .text:0x8019A2A4; // type:function size:0x48 +fn_8019A2EC = .text:0x8019A2EC; // type:function size:0x158 +fn_8019A444 = .text:0x8019A444; // type:function size:0x44 +fn_8019A488 = .text:0x8019A488; // type:function size:0x8 +fn_8019A490 = .text:0x8019A490; // type:function size:0x104 +fn_8019A594 = .text:0x8019A594; // type:function size:0x5C +fn_8019A5F0 = .text:0x8019A5F0; // type:function size:0x10 +fn_8019A600 = .text:0x8019A600; // type:function size:0x158 +fn_8019A758 = .text:0x8019A758; // type:function size:0x44 +fn_8019A79C = .text:0x8019A79C; // type:function size:0x104 +fn_8019A8A0 = .text:0x8019A8A0; // type:function size:0x5C +fn_8019A8FC = .text:0x8019A8FC; // type:function size:0x10 +fn_8019A90C = .text:0x8019A90C; // type:function size:0x158 +fn_8019AA64 = .text:0x8019AA64; // type:function size:0x44 +fn_8019AAA8 = .text:0x8019AAA8; // type:function size:0x104 +fn_8019ABAC = .text:0x8019ABAC; // type:function size:0x5C +fn_8019AC08 = .text:0x8019AC08; // type:function size:0x10 +fn_8019AC18 = .text:0x8019AC18; // type:function size:0x158 +fn_8019AD70 = .text:0x8019AD70; // type:function size:0x44 +fn_8019ADB4 = .text:0x8019ADB4; // type:function size:0x104 +fn_8019AEB8 = .text:0x8019AEB8; // type:function size:0x5C +fn_8019AF14 = .text:0x8019AF14; // type:function size:0x10 +fn_8019AF24 = .text:0x8019AF24; // type:function size:0x158 +fn_8019B07C = .text:0x8019B07C; // type:function size:0x44 +fn_8019B0C0 = .text:0x8019B0C0; // type:function size:0x104 +fn_8019B1C4 = .text:0x8019B1C4; // type:function size:0x5C +fn_8019B220 = .text:0x8019B220; // type:function size:0x10 +fn_8019B230 = .text:0x8019B230; // type:function size:0x158 +fn_8019B388 = .text:0x8019B388; // type:function size:0x44 +fn_8019B3CC = .text:0x8019B3CC; // type:function size:0x104 +fn_8019B4D0 = .text:0x8019B4D0; // type:function size:0x5C +fn_8019B52C = .text:0x8019B52C; // type:function size:0x10 +fn_8019B53C = .text:0x8019B53C; // type:function size:0x158 +fn_8019B694 = .text:0x8019B694; // type:function size:0x44 +fn_8019B6D8 = .text:0x8019B6D8; // type:function size:0x104 +fn_8019B7DC = .text:0x8019B7DC; // type:function size:0x5C +fn_8019B838 = .text:0x8019B838; // type:function size:0x10 +fn_8019B848 = .text:0x8019B848; // type:function size:0x158 +fn_8019B9A0 = .text:0x8019B9A0; // type:function size:0x44 +fn_8019B9E4 = .text:0x8019B9E4; // type:function size:0x104 +fn_8019BAE8 = .text:0x8019BAE8; // type:function size:0x5C +fn_8019BB44 = .text:0x8019BB44; // type:function size:0x10 +fn_8019BB54 = .text:0x8019BB54; // type:function size:0x158 +fn_8019BCAC = .text:0x8019BCAC; // type:function size:0x44 +fn_8019BCF0 = .text:0x8019BCF0; // type:function size:0x104 +fn_8019BDF4 = .text:0x8019BDF4; // type:function size:0x5C +fn_8019BE50 = .text:0x8019BE50; // type:function size:0x10 +fn_8019BE60 = .text:0x8019BE60; // type:function size:0x8 +fn_8019BE68 = .text:0x8019BE68; // type:function size:0x8 +fn_8019BE70 = .text:0x8019BE70; // type:function size:0x8 +fn_8019BE78 = .text:0x8019BE78; // type:function size:0x6C +fn_8019BEE4 = .text:0x8019BEE4; // type:function size:0x58 +fn_8019BF3C = .text:0x8019BF3C; // type:function size:0x74 +fn_8019BFB0 = .text:0x8019BFB0; // type:function size:0x8 +fn_8019BFB8 = .text:0x8019BFB8; // type:function size:0x390 +fn_8019C348 = .text:0x8019C348; // type:function size:0x8 +fn_8019C350 = .text:0x8019C350; // type:function size:0x8 +fn_8019C358 = .text:0x8019C358; // type:function size:0x144 +fn_8019C49C = .text:0x8019C49C; // type:function size:0x10 +fn_8019C4AC = .text:0x8019C4AC; // type:function size:0x8 +fn_8019C4B4 = .text:0x8019C4B4; // type:function size:0x84 +fn_8019C538 = .text:0x8019C538; // type:function size:0x8 +fn_8019C540 = .text:0x8019C540; // type:function size:0x84 +fn_8019C5C4 = .text:0x8019C5C4; // type:function size:0x8 +fn_8019C5CC = .text:0x8019C5CC; // type:function size:0x84 +fn_8019C650 = .text:0x8019C650; // type:function size:0x134 +fn_8019C784 = .text:0x8019C784; // type:function size:0x50 +fn_8019C7D4 = .text:0x8019C7D4; // type:function size:0xCC +fn_8019C8A0 = .text:0x8019C8A0; // type:function size:0x98 +fn_8019C938 = .text:0x8019C938; // type:function size:0x9C +fn_8019C9D4 = .text:0x8019C9D4; // type:function size:0xA0 +fn_8019CA74 = .text:0x8019CA74; // type:function size:0x4C +fn_8019CAC0 = .text:0x8019CAC0; // type:function size:0x4C +fn_8019CB0C = .text:0x8019CB0C; // type:function size:0x34 +fn_8019CB40 = .text:0x8019CB40; // type:function size:0x4 +fn_8019CB44 = .text:0x8019CB44; // type:function size:0x168 +fn_8019CCAC = .text:0x8019CCAC; // type:function size:0x6C +fn_8019CD18 = .text:0x8019CD18; // type:function size:0x74 +fn_8019CD8C = .text:0x8019CD8C; // type:function size:0x64 +fn_8019CDF0 = .text:0x8019CDF0; // type:function size:0x74 +fn_8019CE64 = .text:0x8019CE64; // type:function size:0x198 +fn_8019CFFC = .text:0x8019CFFC; // type:function size:0x34 +fn_8019D030 = .text:0x8019D030; // type:function size:0xB4 +fn_8019D0E4 = .text:0x8019D0E4; // type:function size:0xD4 +fn_8019D1B8 = .text:0x8019D1B8; // type:function size:0x78 +fn_8019D230 = .text:0x8019D230; // type:function size:0xA4 +fn_8019D2D4 = .text:0x8019D2D4; // type:function size:0x88 +fn_8019D35C = .text:0x8019D35C; // type:function size:0x1AC +fn_8019D508 = .text:0x8019D508; // type:function size:0x30 +fn_8019D538 = .text:0x8019D538; // type:function size:0xBC +fn_8019D5F4 = .text:0x8019D5F4; // type:function size:0x30 +fn_8019D624 = .text:0x8019D624; // type:function size:0xBC +fn_8019D6E0 = .text:0x8019D6E0; // type:function size:0x114 +fn_8019D7F4 = .text:0x8019D7F4; // type:function size:0xBC +fn_8019D8B0 = .text:0x8019D8B0; // type:function size:0x94 +fn_8019D944 = .text:0x8019D944; // type:function size:0xD4 +fn_8019DA18 = .text:0x8019DA18; // type:function size:0xC8 +fn_8019DAE0 = .text:0x8019DAE0; // type:function size:0x200 +fn_8019DCE0 = .text:0x8019DCE0; // type:function size:0x108 +fn_8019DDE8 = .text:0x8019DDE8; // type:function size:0xFC +fn_8019DEE4 = .text:0x8019DEE4; // type:function size:0x74 +fn_8019DF58 = .text:0x8019DF58; // type:function size:0x74 +fn_8019DFCC = .text:0x8019DFCC; // type:function size:0x44 +fn_8019E010 = .text:0x8019E010; // type:function size:0x44 +fn_8019E054 = .text:0x8019E054; // type:function size:0x44 +fn_8019E098 = .text:0x8019E098; // type:function size:0x110 +fn_8019E1A8 = .text:0x8019E1A8; // type:function size:0x110 +fn_8019E2B8 = .text:0x8019E2B8; // type:function size:0x110 +fn_8019E3C8 = .text:0x8019E3C8; // type:function size:0xEC +fn_8019E4B4 = .text:0x8019E4B4; // type:function size:0xC +GetUIComponentAtIndex__FP9DataArrayi = .text:0x8019E4C0; // type:function size:0x34 +GetUIComponent__FP8DataNodeP9DataArray = .text:0x8019E4F4; // type:function size:0x3C +fn_8019E530 = .text:0x8019E530; // type:function size:0x18C +fn_8019E6BC = .text:0x8019E6BC; // type:function size:0xC +fn_8019E6C8 = .text:0x8019E6C8; // type:function size:0xBC +fn_8019E784 = .text:0x8019E784; // type:function size:0x248 +fn_8019E9CC = .text:0x8019E9CC; // type:function size:0x238 +fn_8019EC04 = .text:0x8019EC04; // type:function size:0x110 +fn_8019ED14 = .text:0x8019ED14; // type:function size:0x150 +fn_8019EE64 = .text:0x8019EE64; // type:function size:0xE4 +fn_8019EF48 = .text:0x8019EF48; // type:function size:0x164 +fn_8019F0AC = .text:0x8019F0AC; // type:function size:0x1AC +fn_8019F258 = .text:0x8019F258; // type:function size:0x24 +fn_8019F27C = .text:0x8019F27C; // type:function size:0x154 +fn_8019F3D0 = .text:0x8019F3D0; // type:function size:0xDC +fn_8019F4AC = .text:0x8019F4AC; // type:function size:0xADC +fn_8019FF88 = .text:0x8019FF88; // type:function size:0x88 +fn_801A0010 = .text:0x801A0010; // type:function size:0x88 +fn_801A0098 = .text:0x801A0098; // type:function size:0xC0 +fn_801A0158 = .text:0x801A0158; // type:function size:0x54 +fn_801A01AC = .text:0x801A01AC; // type:function size:0x8 +fn_801A01B4 = .text:0x801A01B4; // type:function size:0x84 +fn_801A0238 = .text:0x801A0238; // type:function size:0xC0 +fn_801A02F8 = .text:0x801A02F8; // type:function size:0xC0 +fn_801A03B8 = .text:0x801A03B8; // type:function size:0x54 +fn_801A040C = .text:0x801A040C; // type:function size:0x8 +fn_801A0414 = .text:0x801A0414; // type:function size:0x84 +fn_801A0498 = .text:0x801A0498; // type:function size:0x128 +fn_801A05C0 = .text:0x801A05C0; // type:function size:0xF8 +fn_801A06B8 = .text:0x801A06B8; // type:function size:0x34 +fn_801A06EC = .text:0x801A06EC; // type:function size:0xB4 +fn_801A07A0 = .text:0x801A07A0; // type:function size:0xD4 +fn_801A0874 = .text:0x801A0874; // type:function size:0x78 +fn_801A08EC = .text:0x801A08EC; // type:function size:0xA4 +fn_801A0990 = .text:0x801A0990; // type:function size:0x88 +fn_801A0A18 = .text:0x801A0A18; // type:function size:0x1AC +fn_801A0BC4 = .text:0x801A0BC4; // type:function size:0x30 +fn_801A0BF4 = .text:0x801A0BF4; // type:function size:0xBC +fn_801A0CB0 = .text:0x801A0CB0; // type:function size:0x30 +fn_801A0CE0 = .text:0x801A0CE0; // type:function size:0xBC +fn_801A0D9C = .text:0x801A0D9C; // type:function size:0x114 +fn_801A0EB0 = .text:0x801A0EB0; // type:function size:0xBC +fn_801A0F6C = .text:0x801A0F6C; // type:function size:0x94 +fn_801A1000 = .text:0x801A1000; // type:function size:0xD4 +fn_801A10D4 = .text:0x801A10D4; // type:function size:0xC8 +fn_801A119C = .text:0x801A119C; // type:function size:0x200 +fn_801A139C = .text:0x801A139C; // type:function size:0x108 +fn_801A14A4 = .text:0x801A14A4; // type:function size:0x40 +fn_801A14E4 = .text:0x801A14E4; // type:function size:0x30 +fn_801A1514 = .text:0x801A1514; // type:function size:0x134 +fn_801A1648 = .text:0x801A1648; // type:function size:0x128 +fn_801A1770 = .text:0x801A1770; // type:function size:0x34 +fn_801A17A4 = .text:0x801A17A4; // type:function size:0xB4 +fn_801A1858 = .text:0x801A1858; // type:function size:0xD4 +fn_801A192C = .text:0x801A192C; // type:function size:0x78 +fn_801A19A4 = .text:0x801A19A4; // type:function size:0xA4 +fn_801A1A48 = .text:0x801A1A48; // type:function size:0x88 +fn_801A1AD0 = .text:0x801A1AD0; // type:function size:0x1AC +fn_801A1C7C = .text:0x801A1C7C; // type:function size:0x30 +fn_801A1CAC = .text:0x801A1CAC; // type:function size:0xBC +fn_801A1D68 = .text:0x801A1D68; // type:function size:0x30 +fn_801A1D98 = .text:0x801A1D98; // type:function size:0xBC +fn_801A1E54 = .text:0x801A1E54; // type:function size:0x114 +fn_801A1F68 = .text:0x801A1F68; // type:function size:0xBC +fn_801A2024 = .text:0x801A2024; // type:function size:0x94 +fn_801A20B8 = .text:0x801A20B8; // type:function size:0xD4 +fn_801A218C = .text:0x801A218C; // type:function size:0xC8 +fn_801A2254 = .text:0x801A2254; // type:function size:0x200 +fn_801A2454 = .text:0x801A2454; // type:function size:0x108 +fn_801A255C = .text:0x801A255C; // type:function size:0x84 +fn_801A25E0 = .text:0x801A25E0; // type:function size:0x120 +fn_801A2700 = .text:0x801A2700; // type:function size:0x34 +fn_801A2734 = .text:0x801A2734; // type:function size:0xB4 +fn_801A27E8 = .text:0x801A27E8; // type:function size:0xD4 +fn_801A28BC = .text:0x801A28BC; // type:function size:0x78 +fn_801A2934 = .text:0x801A2934; // type:function size:0xA4 +fn_801A29D8 = .text:0x801A29D8; // type:function size:0x88 +fn_801A2A60 = .text:0x801A2A60; // type:function size:0x1AC +fn_801A2C0C = .text:0x801A2C0C; // type:function size:0x30 +fn_801A2C3C = .text:0x801A2C3C; // type:function size:0xBC +fn_801A2CF8 = .text:0x801A2CF8; // type:function size:0x30 +fn_801A2D28 = .text:0x801A2D28; // type:function size:0xBC +fn_801A2DE4 = .text:0x801A2DE4; // type:function size:0x114 +fn_801A2EF8 = .text:0x801A2EF8; // type:function size:0xBC +fn_801A2FB4 = .text:0x801A2FB4; // type:function size:0x94 +fn_801A3048 = .text:0x801A3048; // type:function size:0xD4 +fn_801A311C = .text:0x801A311C; // type:function size:0xC8 +fn_801A31E4 = .text:0x801A31E4; // type:function size:0x200 +fn_801A33E4 = .text:0x801A33E4; // type:function size:0x108 +fn_801A34EC = .text:0x801A34EC; // type:function size:0x60 +fn_801A354C = .text:0x801A354C; // type:function size:0x74 +fn_801A35C0 = .text:0x801A35C0; // type:function size:0x14 +fn_801A35D4 = .text:0x801A35D4; // type:function size:0x8 +fn_801A35DC = .text:0x801A35DC; // type:function size:0x90 +fn_801A366C = .text:0x801A366C; // type:function size:0x78 +fn_801A36E4 = .text:0x801A36E4; // type:function size:0x218 +fn_801A38FC = .text:0x801A38FC; // type:function size:0x5C +fn_801A3958 = .text:0x801A3958; // type:function size:0xFC +fn_801A3A54 = .text:0x801A3A54; // type:function size:0x5C +fn_801A3AB0 = .text:0x801A3AB0; // type:function size:0x48 +fn_801A3AF8 = .text:0x801A3AF8; // type:function size:0x5C +fn_801A3B54 = .text:0x801A3B54; // type:function size:0xA4 +fn_801A3BF8 = .text:0x801A3BF8; // type:function size:0x6C +fn_801A3C64 = .text:0x801A3C64; // type:function size:0xA0 +fn_801A3D04 = .text:0x801A3D04; // type:function size:0x1B4 +fn_801A3EB8 = .text:0x801A3EB8; // type:function size:0x5C +fn_801A3F14 = .text:0x801A3F14; // type:function size:0x80 +fn_801A3F94 = .text:0x801A3F94; // type:function size:0x8C +fn_801A4020 = .text:0x801A4020; // type:function size:0xCC +fn_801A40EC = .text:0x801A40EC; // type:function size:0x60 +fn_801A414C = .text:0x801A414C; // type:function size:0x98 +fn_801A41E4 = .text:0x801A41E4; // type:function size:0xB8 +fn_801A429C = .text:0x801A429C; // type:function size:0xB8 +fn_801A4354 = .text:0x801A4354; // type:function size:0xCC +fn_801A4420 = .text:0x801A4420; // type:function size:0x7C +fn_801A449C = .text:0x801A449C; // type:function size:0xE4 +fn_801A4580 = .text:0x801A4580; // type:function size:0xC4 +fn_801A4644 = .text:0x801A4644; // type:function size:0xA4 +fn_801A46E8 = .text:0x801A46E8; // type:function size:0x5C8 +fn_801A4CB0 = .text:0x801A4CB0; // type:function size:0xC +fn_801A4CBC = .text:0x801A4CBC; // type:function size:0x8 +fn_801A4CC4 = .text:0x801A4CC4; // type:function size:0x324 +fn_801A4FE8 = .text:0x801A4FE8; // type:function size:0x80 +fn_801A5068 = .text:0x801A5068; // type:function size:0x80 +fn_801A50E8 = .text:0x801A50E8; // type:function size:0x8 +fn_801A50F0 = .text:0x801A50F0; // type:function size:0x16C +fn_801A525C = .text:0x801A525C; // type:function size:0xBC +fn_801A5318 = .text:0x801A5318; // type:function size:0xDC +fn_801A53F4 = .text:0x801A53F4; // type:function size:0xB4 +fn_801A54A8 = .text:0x801A54A8; // type:function size:0xB8 +fn_801A5560 = .text:0x801A5560; // type:function size:0xC4 +fn_801A5624 = .text:0x801A5624; // type:function size:0x4 +fn_801A5628 = .text:0x801A5628; // type:function size:0x68 +fn_801A5690 = .text:0x801A5690; // type:function size:0xB0 +fn_801A5740 = .text:0x801A5740; // type:function size:0x1C8 +fn_801A5908 = .text:0x801A5908; // type:function size:0x140 +Handle__19AccomplishmentPanelFP9DataArrayb = .text:0x801A5A48; // type:function size:0x8E8 +fn_801A6330 = .text:0x801A6330; // type:function size:0x3C +fn_801A636C = .text:0x801A636C; // type:function size:0x4C +fn_801A63B8 = .text:0x801A63B8; // type:function size:0x7C +fn_801A6434 = .text:0x801A6434; // type:function size:0x134 +fn_801A6568 = .text:0x801A6568; // type:function size:0x4C +fn_801A65B4 = .text:0x801A65B4; // type:function size:0x4 +fn_801A65B8 = .text:0x801A65B8; // type:function size:0x1CC +fn_801A6784 = .text:0x801A6784; // type:function size:0xD8 +fn_801A685C = .text:0x801A685C; // type:function size:0x54 +fn_801A68B0 = .text:0x801A68B0; // type:function size:0x114 +fn_801A69C4 = .text:0x801A69C4; // type:function size:0xC0 +fn_801A6A84 = .text:0x801A6A84; // type:function size:0x54 +fn_801A6AD8 = .text:0x801A6AD8; // type:function size:0x108 +fn_801A6BE0 = .text:0x801A6BE0; // type:function size:0x138 +DataSymbol__14UIListProviderCFi = .text:0x801A6D18; // type:function size:0x30 +fn_801A6D48 = .text:0x801A6D48; // type:function size:0x188 +fn_801A6ED0 = .text:0x801A6ED0; // type:function size:0x54 +fn_801A6F24 = .text:0x801A6F24; // type:function size:0x168 +fn_801A708C = .text:0x801A708C; // type:function size:0x24 +fn_801A70B0 = .text:0x801A70B0; // type:function size:0x154 +fn_801A7204 = .text:0x801A7204; // type:function size:0x20 +fn_801A7224 = .text:0x801A7224; // type:function size:0x140 +fn_801A7364 = .text:0x801A7364; // type:function size:0x7C +DataIndex__14UIListProviderCF6Symbol = .text:0x801A73E0; // type:function size:0x98 +fn_801A7478 = .text:0x801A7478; // type:function size:0x14 +fn_801A748C = .text:0x801A748C; // type:function size:0x14 +fn_801A74A0 = .text:0x801A74A0; // type:function size:0x14 +fn_801A74B4 = .text:0x801A74B4; // type:function size:0x14 +fn_801A74C8 = .text:0x801A74C8; // type:function size:0x14 +fn_801A74DC = .text:0x801A74DC; // type:function size:0x14 +fn_801A74F0 = .text:0x801A74F0; // type:function size:0x14 +fn_801A7504 = .text:0x801A7504; // type:function size:0x8 +fn_801A750C = .text:0x801A750C; // type:function size:0x8 +fn_801A7514 = .text:0x801A7514; // type:function size:0x8 +fn_801A751C = .text:0x801A751C; // type:function size:0x8 +fn_801A7524 = .text:0x801A7524; // type:function size:0x8 +fn_801A752C = .text:0x801A752C; // type:function size:0x8 +fn_801A7534 = .text:0x801A7534; // type:function size:0x8 +fn_801A753C = .text:0x801A753C; // type:function size:0x8 +__ct__16GamerAwardStatusFv = .text:0x801A7544; // type:function size:0x5C +fn_801A75A0 = .text:0x801A75A0; // type:function size:0x58 +fn_801A75F8 = .text:0x801A75F8; // type:function size:0x4C +fn_801A7644 = .text:0x801A7644; // type:function size:0x8 +fn_801A764C = .text:0x801A764C; // type:function size:0x5C +fn_801A76A8 = .text:0x801A76A8; // type:function size:0x12C +fn_801A77D4 = .text:0x801A77D4; // type:function size:0x58 +fn_801A782C = .text:0x801A782C; // type:function size:0x58 +fn_801A7884 = .text:0x801A7884; // type:function size:0x60 +fn_801A78E4 = .text:0x801A78E4; // type:function size:0x58 +fn_801A793C = .text:0x801A793C; // type:function size:0x58 +fn_801A7994 = .text:0x801A7994; // type:function size:0x58 +fn_801A79EC = .text:0x801A79EC; // type:function size:0x60 +fn_801A7A4C = .text:0x801A7A4C; // type:function size:0x58 +fn_801A7AA4 = .text:0x801A7AA4; // type:function size:0x30 +fn_801A7AD4 = .text:0x801A7AD4; // type:function size:0x30 +fn_801A7B04 = .text:0x801A7B04; // type:function size:0x60 +__ct__Q211stlpmtx_std48list>FRCQ211stlpmtx_std19StlNodeAlloc = .text:0x801A7B64; // type:function size:0x40 +fn_801A7BA4 = .text:0x801A7BA4; // type:function size:0x30 +fn_801A7BD4 = .text:0x801A7BD4; // type:function size:0x60 +fn_801A7C34 = .text:0x801A7C34; // type:function size:0x194 +fn_801A7DC8 = .text:0x801A7DC8; // type:function size:0x4 +fn_801A7DCC = .text:0x801A7DCC; // type:function size:0x3C +fn_801A7E08 = .text:0x801A7E08; // type:function size:0x4 +fn_801A7E0C = .text:0x801A7E0C; // type:function size:0x34 +fn_801A7E40 = .text:0x801A7E40; // type:function size:0x3C +fn_801A7E7C = .text:0x801A7E7C; // type:function size:0x188 +fn_801A8004 = .text:0x801A8004; // type:function size:0x4 +fn_801A8008 = .text:0x801A8008; // type:function size:0x4 +fn_801A800C = .text:0x801A800C; // type:function size:0x4 +fn_801A8010 = .text:0x801A8010; // type:function size:0x428 +fn_801A8438 = .text:0x801A8438; // type:function size:0xD0 +fn_801A8508 = .text:0x801A8508; // type:function size:0x58 +fn_801A8560 = .text:0x801A8560; // type:function size:0x2C +fn_801A858C = .text:0x801A858C; // type:function size:0x30 +fn_801A85BC = .text:0x801A85BC; // type:function size:0xA0 +fn_801A865C = .text:0x801A865C; // type:function size:0x2C +fn_801A8688 = .text:0x801A8688; // type:function size:0x38 +fn_801A86C0 = .text:0x801A86C0; // type:function size:0x2C +fn_801A86EC = .text:0x801A86EC; // type:function size:0x30 +fn_801A871C = .text:0x801A871C; // type:function size:0x38 +fn_801A8754 = .text:0x801A8754; // type:function size:0x3C +fn_801A8790 = .text:0x801A8790; // type:function size:0x4 +fn_801A8794 = .text:0x801A8794; // type:function size:0x44 +fn_801A87D8 = .text:0x801A87D8; // type:function size:0x6C +fn_801A8844 = .text:0x801A8844; // type:function size:0x2C +fn_801A8870 = .text:0x801A8870; // type:function size:0x8 +fn_801A8878 = .text:0x801A8878; // type:function size:0xB4 +fn_801A892C = .text:0x801A892C; // type:function size:0x6C +fn_801A8998 = .text:0x801A8998; // type:function size:0x8C +fn_801A8A24 = .text:0x801A8A24; // type:function size:0x4C +fn_801A8A70 = .text:0x801A8A70; // type:function size:0x2C +fn_801A8A9C = .text:0x801A8A9C; // type:function size:0x38 +fn_801A8AD4 = .text:0x801A8AD4; // type:function size:0x2C +fn_801A8B00 = .text:0x801A8B00; // type:function size:0x30 +fn_801A8B30 = .text:0x801A8B30; // type:function size:0x3C +fn_801A8B6C = .text:0x801A8B6C; // type:function size:0x4 +fn_801A8B70 = .text:0x801A8B70; // type:function size:0x44 +fn_801A8BB4 = .text:0x801A8BB4; // type:function size:0x6C +fn_801A8C20 = .text:0x801A8C20; // type:function size:0x10 +fn_801A8C30 = .text:0x801A8C30; // type:function size:0x3C +fn_801A8C6C = .text:0x801A8C6C; // type:function size:0xC0 +fn_801A8D2C = .text:0x801A8D2C; // type:function size:0x4 +fn_801A8D30 = .text:0x801A8D30; // type:function size:0x54 +fn_801A8D84 = .text:0x801A8D84; // type:function size:0x64 +fn_801A8DE8 = .text:0x801A8DE8; // type:function size:0x50 +fn_801A8E38 = .text:0x801A8E38; // type:function size:0x10 +fn_801A8E48 = .text:0x801A8E48; // type:function size:0x4 +fn_801A8E4C = .text:0x801A8E4C; // type:function size:0x54 +fn_801A8EA0 = .text:0x801A8EA0; // type:function size:0x58 +fn_801A8EF8 = .text:0x801A8EF8; // type:function size:0x4 +fn_801A8EFC = .text:0x801A8EFC; // type:function size:0x318 +fn_801A9214 = .text:0x801A9214; // type:function size:0xD8 +fn_801A92EC = .text:0x801A92EC; // type:function size:0x30 +fn_801A931C = .text:0x801A931C; // type:function size:0x2C +fn_801A9348 = .text:0x801A9348; // type:function size:0x40 +fn_801A9388 = .text:0x801A9388; // type:function size:0x30 +fn_801A93B8 = .text:0x801A93B8; // type:function size:0x30 +fn_801A93E8 = .text:0x801A93E8; // type:function size:0x4C +fn_801A9434 = .text:0x801A9434; // type:function size:0xF0 +fn_801A9524 = .text:0x801A9524; // type:function size:0x2C +fn_801A9550 = .text:0x801A9550; // type:function size:0x40 +fn_801A9590 = .text:0x801A9590; // type:function size:0x30 +fn_801A95C0 = .text:0x801A95C0; // type:function size:0xF4 +fn_801A96B4 = .text:0x801A96B4; // type:function size:0x40 +fn_801A96F4 = .text:0x801A96F4; // type:function size:0x30 +fn_801A9724 = .text:0x801A9724; // type:function size:0x48 +fn_801A976C = .text:0x801A976C; // type:function size:0x36C +fn_801A9AD8 = .text:0x801A9AD8; // type:function size:0xC4 +fn_801A9B9C = .text:0x801A9B9C; // type:function size:0x28 +fn_801A9BC4 = .text:0x801A9BC4; // type:function size:0x54 +fn_801A9C18 = .text:0x801A9C18; // type:function size:0x60 +fn_801A9C78 = .text:0x801A9C78; // type:function size:0x84 +fn_801A9CFC = .text:0x801A9CFC; // type:function size:0xBC +fn_801A9DB8 = .text:0x801A9DB8; // type:function size:0xC4 +fn_801A9E7C = .text:0x801A9E7C; // type:function size:0x34 +fn_801A9EB0 = .text:0x801A9EB0; // type:function size:0x34 +fn_801A9EE4 = .text:0x801A9EE4; // type:function size:0x1C +fn_801A9F00 = .text:0x801A9F00; // type:function size:0x8 +fn_801A9F08 = .text:0x801A9F08; // type:function size:0x1D0 +fn_801AA0D8 = .text:0x801AA0D8; // type:function size:0x3C +fn_801AA114 = .text:0x801AA114; // type:function size:0x3C +fn_801AA150 = .text:0x801AA150; // type:function size:0x3C +fn_801AA18C = .text:0x801AA18C; // type:function size:0x8 +fn_801AA194 = .text:0x801AA194; // type:function size:0x14 +fn_801AA1A8 = .text:0x801AA1A8; // type:function size:0x4 +fn_801AA1AC = .text:0x801AA1AC; // type:function size:0xA8 +fn_801AA254 = .text:0x801AA254; // type:function size:0x40 +fn_801AA294 = .text:0x801AA294; // type:function size:0x8 +fn_801AA29C = .text:0x801AA29C; // type:function size:0x100 +fn_801AA39C = .text:0x801AA39C; // type:function size:0xE8 +fn_801AA484 = .text:0x801AA484; // type:function size:0x30 +fn_801AA4B4 = .text:0x801AA4B4; // type:function size:0x8 +fn_801AA4BC = .text:0x801AA4BC; // type:function size:0x230 +fn_801AA6EC = .text:0x801AA6EC; // type:function size:0x8 +fn_801AA6F4 = .text:0x801AA6F4; // type:function size:0x8 +fn_801AA6FC = .text:0x801AA6FC; // type:function size:0x8 +fn_801AA704 = .text:0x801AA704; // type:function size:0x2AC +fn_801AA9B0 = .text:0x801AA9B0; // type:function size:0x8 +fn_801AA9B8 = .text:0x801AA9B8; // type:function size:0x8 +fn_801AA9C0 = .text:0x801AA9C0; // type:function size:0x74 +fn_801AAA34 = .text:0x801AAA34; // type:function size:0x8 +fn_801AAA3C = .text:0x801AAA3C; // type:function size:0x8 +fn_801AAA44 = .text:0x801AAA44; // type:function size:0x8 +fn_801AAA4C = .text:0x801AAA4C; // type:function size:0x8 +fn_801AAA54 = .text:0x801AAA54; // type:function size:0x8 +fn_801AAA5C = .text:0x801AAA5C; // type:function size:0x8 +fn_801AAA64 = .text:0x801AAA64; // type:function size:0x8 +fn_801AAA6C = .text:0x801AAA6C; // type:function size:0x8 +fn_801AAA74 = .text:0x801AAA74; // type:function size:0x8 +fn_801AAA7C = .text:0x801AAA7C; // type:function size:0x8 +fn_801AAA84 = .text:0x801AAA84; // type:function size:0x18 +fn_801AAA9C = .text:0x801AAA9C; // type:function size:0x6C +fn_801AAB08 = .text:0x801AAB08; // type:function size:0x18 +fn_801AAB20 = .text:0x801AAB20; // type:function size:0x6C +fn_801AAB8C = .text:0x801AAB8C; // type:function size:0x18 +fn_801AABA4 = .text:0x801AABA4; // type:function size:0x6C +fn_801AAC10 = .text:0x801AAC10; // type:function size:0x18 +fn_801AAC28 = .text:0x801AAC28; // type:function size:0x6C +fn_801AAC94 = .text:0x801AAC94; // type:function size:0x10 +fn_801AACA4 = .text:0x801AACA4; // type:function size:0x10 +fn_801AACB4 = .text:0x801AACB4; // type:function size:0x8 +fn_801AACBC = .text:0x801AACBC; // type:function size:0x10 +fn_801AACCC = .text:0x801AACCC; // type:function size:0x10 +fn_801AACDC = .text:0x801AACDC; // type:function size:0x10 +fn_801AACEC = .text:0x801AACEC; // type:function size:0x10 +fn_801AACFC = .text:0x801AACFC; // type:function size:0x10 +fn_801AAD0C = .text:0x801AAD0C; // type:function size:0x10 +fn_801AAD1C = .text:0x801AAD1C; // type:function size:0x10 +fn_801AAD2C = .text:0x801AAD2C; // type:function size:0x10 +fn_801AAD3C = .text:0x801AAD3C; // type:function size:0x10 +fn_801AAD4C = .text:0x801AAD4C; // type:function size:0x64 +fn_801AADB0 = .text:0x801AADB0; // type:function size:0x10 +fn_801AADC0 = .text:0x801AADC0; // type:function size:0x64 +fn_801AAE24 = .text:0x801AAE24; // type:function size:0x10 +fn_801AAE34 = .text:0x801AAE34; // type:function size:0x64 +fn_801AAE98 = .text:0x801AAE98; // type:function size:0x10 +fn_801AAEA8 = .text:0x801AAEA8; // type:function size:0x64 +fn_801AAF0C = .text:0x801AAF0C; // type:function size:0x10 +fn_801AAF1C = .text:0x801AAF1C; // type:function size:0x64 +fn_801AAF80 = .text:0x801AAF80; // type:function size:0x10 +fn_801AAF90 = .text:0x801AAF90; // type:function size:0x64 +fn_801AAFF4 = .text:0x801AAFF4; // type:function size:0x10 +fn_801AB004 = .text:0x801AB004; // type:function size:0x64 +fn_801AB068 = .text:0x801AB068; // type:function size:0x8 +fn_801AB070 = .text:0x801AB070; // type:function size:0x8C +fn_801AB0FC = .text:0x801AB0FC; // type:function size:0x34 +fn_801AB130 = .text:0x801AB130; // type:function size:0x8 +fn_801AB138 = .text:0x801AB138; // type:function size:0x8 +fn_801AB140 = .text:0x801AB140; // type:function size:0x90 +fn_801AB1D0 = .text:0x801AB1D0; // type:function size:0x7C +fn_801AB24C = .text:0x801AB24C; // type:function size:0x7C +fn_801AB2C8 = .text:0x801AB2C8; // type:function size:0x90 +fn_801AB358 = .text:0x801AB358; // type:function size:0x7C +fn_801AB3D4 = .text:0x801AB3D4; // type:function size:0x90 +fn_801AB464 = .text:0x801AB464; // type:function size:0x84 +fn_801AB4E8 = .text:0x801AB4E8; // type:function size:0x30 +fn_801AB518 = .text:0x801AB518; // type:function size:0xAC +fn_801AB5C4 = .text:0x801AB5C4; // type:function size:0xC +fn_801AB5D0 = .text:0x801AB5D0; // type:function size:0xC +fn_801AB5DC = .text:0x801AB5DC; // type:function size:0x48 +fn_801AB624 = .text:0x801AB624; // type:function size:0x60 +fn_801AB684 = .text:0x801AB684; // type:function size:0x68 +fn_801AB6EC = .text:0x801AB6EC; // type:function size:0x48 +fn_801AB734 = .text:0x801AB734; // type:function size:0x48 +fn_801AB77C = .text:0x801AB77C; // type:function size:0x50 +fn_801AB7CC = .text:0x801AB7CC; // type:function size:0x138 +fn_801AB904 = .text:0x801AB904; // type:function size:0xA4 +fn_801AB9A8 = .text:0x801AB9A8; // type:function size:0xAC +fn_801ABA54 = .text:0x801ABA54; // type:function size:0x3C +fn_801ABA90 = .text:0x801ABA90; // type:function size:0x6C +fn_801ABAFC = .text:0x801ABAFC; // type:function size:0x4 +fn_801ABB00 = .text:0x801ABB00; // type:function size:0x40 +Handle__22AccomplishmentProgressFP9DataArrayb = .text:0x801ABB40; // type:function size:0x1C8 +fn_801ABD08 = .text:0x801ABD08; // type:function size:0x68 +__ct__24RockCentralOpCompleteMsgFP9DataArray = .text:0x801ABD70; // type:function size:0x4C +fn_801ABDBC = .text:0x801ABDBC; // type:function size:0x4C +fn_801ABE08 = .text:0x801ABE08; // type:function size:0x68 +fn_801ABE70 = .text:0x801ABE70; // type:function size:0x68 +fn_801ABED8 = .text:0x801ABED8; // type:function size:0x8 +fn_801ABEE0 = .text:0x801ABEE0; // type:function size:0x8 +fn_801ABEE8 = .text:0x801ABEE8; // type:function size:0x8 +fn_801ABEF0 = .text:0x801ABEF0; // type:function size:0x8 +fn_801ABEF8 = .text:0x801ABEF8; // type:function size:0x170 +fn_801AC068 = .text:0x801AC068; // type:function size:0x58 +fn_801AC0C0 = .text:0x801AC0C0; // type:function size:0x80 +fn_801AC140 = .text:0x801AC140; // type:function size:0x80 +fn_801AC1C0 = .text:0x801AC1C0; // type:function size:0x58 +fn_801AC218 = .text:0x801AC218; // type:function size:0x54 +fn_801AC26C = .text:0x801AC26C; // type:function size:0x5C +fn_801AC2C8 = .text:0x801AC2C8; // type:function size:0x6C +fn_801AC334 = .text:0x801AC334; // type:function size:0x28 +fn_801AC35C = .text:0x801AC35C; // type:function size:0x8 +fn_801AC364 = .text:0x801AC364; // type:function size:0x3C +fn_801AC3A0 = .text:0x801AC3A0; // type:function size:0x30 +fn_801AC3D0 = .text:0x801AC3D0; // type:function size:0x30 +fn_801AC400 = .text:0x801AC400; // type:function size:0x40 +fn_801AC440 = .text:0x801AC440; // type:function size:0x74 +fn_801AC4B4 = .text:0x801AC4B4; // type:function size:0x59C +fn_801ACA50 = .text:0x801ACA50; // type:function size:0x4 +fn_801ACA54 = .text:0x801ACA54; // type:function size:0x4 +fn_801ACA58 = .text:0x801ACA58; // type:function size:0x88 +fn_801ACAE0 = .text:0x801ACAE0; // type:function size:0x2C +fn_801ACB0C = .text:0x801ACB0C; // type:function size:0x4 +fn_801ACB10 = .text:0x801ACB10; // type:function size:0x8 +fn_801ACB18 = .text:0x801ACB18; // type:function size:0x8 +fn_801ACB20 = .text:0x801ACB20; // type:function size:0x44 +fn_801ACB64 = .text:0x801ACB64; // type:function size:0xC +fn_801ACB70 = .text:0x801ACB70; // type:function size:0x48 +fn_801ACBB8 = .text:0x801ACBB8; // type:function size:0x8 +fn_801ACBC0 = .text:0x801ACBC0; // type:function size:0x8 +fn_801ACBC8 = .text:0x801ACBC8; // type:function size:0x8 +fn_801ACBD0 = .text:0x801ACBD0; // type:function size:0x8 +fn_801ACBD8 = .text:0x801ACBD8; // type:function size:0x8 +fn_801ACBE0 = .text:0x801ACBE0; // type:function size:0x64 +fn_801ACC44 = .text:0x801ACC44; // type:function size:0x8 +fn_801ACC4C = .text:0x801ACC4C; // type:function size:0x8 +fn_801ACC54 = .text:0x801ACC54; // type:function size:0x8 +fn_801ACC5C = .text:0x801ACC5C; // type:function size:0x8 +fn_801ACC64 = .text:0x801ACC64; // type:function size:0x8 +fn_801ACC6C = .text:0x801ACC6C; // type:function size:0x8 +fn_801ACC74 = .text:0x801ACC74; // type:function size:0x5C +fn_801ACCD0 = .text:0x801ACCD0; // type:function size:0x8 +fn_801ACCD8 = .text:0x801ACCD8; // type:function size:0x8 +fn_801ACCE0 = .text:0x801ACCE0; // type:function size:0x8 +fn_801ACCE8 = .text:0x801ACCE8; // type:function size:0x30 +fn_801ACD18 = .text:0x801ACD18; // type:function size:0x8 +fn_801ACD20 = .text:0x801ACD20; // type:function size:0x8 +fn_801ACD28 = .text:0x801ACD28; // type:function size:0x1B8 +fn_801ACEE0 = .text:0x801ACEE0; // type:function size:0x8 +fn_801ACEE8 = .text:0x801ACEE8; // type:function size:0x8 +fn_801ACEF0 = .text:0x801ACEF0; // type:function size:0x14 +fn_801ACF04 = .text:0x801ACF04; // type:function size:0x8 +fn_801ACF0C = .text:0x801ACF0C; // type:function size:0x10 +fn_801ACF1C = .text:0x801ACF1C; // type:function size:0x100 +fn_801AD01C = .text:0x801AD01C; // type:function size:0x58 +fn_801AD074 = .text:0x801AD074; // type:function size:0x60 +fn_801AD0D4 = .text:0x801AD0D4; // type:function size:0x58 +fn_801AD12C = .text:0x801AD12C; // type:function size:0x58 +fn_801AD184 = .text:0x801AD184; // type:function size:0x50 +fn_801AD1D4 = .text:0x801AD1D4; // type:function size:0x8 +fn_801AD1DC = .text:0x801AD1DC; // type:function size:0x40 +fn_801AD21C = .text:0x801AD21C; // type:function size:0x4 +fn_801AD220 = .text:0x801AD220; // type:function size:0x8 +fn_801AD228 = .text:0x801AD228; // type:function size:0x44 +fn_801AD26C = .text:0x801AD26C; // type:function size:0x3C +fn_801AD2A8 = .text:0x801AD2A8; // type:function size:0x70 +fn_801AD318 = .text:0x801AD318; // type:function size:0xB0 +fn_801AD3C8 = .text:0x801AD3C8; // type:function size:0x8 +fn_801AD3D0 = .text:0x801AD3D0; // type:function size:0xA0 +fn_801AD470 = .text:0x801AD470; // type:function size:0x68 +fn_801AD4D8 = .text:0x801AD4D8; // type:function size:0x4 +fn_801AD4DC = .text:0x801AD4DC; // type:function size:0x8 +fn_801AD4E4 = .text:0x801AD4E4; // type:function size:0x8 +fn_801AD4EC = .text:0x801AD4EC; // type:function size:0x8 +fn_801AD4F4 = .text:0x801AD4F4; // type:function size:0x8 +fn_801AD4FC = .text:0x801AD4FC; // type:function size:0x4 +fn_801AD500 = .text:0x801AD500; // type:function size:0x70 +fn_801AD570 = .text:0x801AD570; // type:function size:0x8 +fn_801AD578 = .text:0x801AD578; // type:function size:0x8 +fn_801AD580 = .text:0x801AD580; // type:function size:0x8 +fn_801AD588 = .text:0x801AD588; // type:function size:0xA4 +fn_801AD62C = .text:0x801AD62C; // type:function size:0x8 +fn_801AD634 = .text:0x801AD634; // type:function size:0x8 +fn_801AD63C = .text:0x801AD63C; // type:function size:0xCC +fn_801AD708 = .text:0x801AD708; // type:function size:0x60 +fn_801AD768 = .text:0x801AD768; // type:function size:0xCC +fn_801AD834 = .text:0x801AD834; // type:function size:0x60 +fn_801AD894 = .text:0x801AD894; // type:function size:0x5C +fn_801AD8F0 = .text:0x801AD8F0; // type:function size:0x60 +fn_801AD950 = .text:0x801AD950; // type:function size:0x5C +fn_801AD9AC = .text:0x801AD9AC; // type:function size:0x114 +fn_801ADAC0 = .text:0x801ADAC0; // type:function size:0x5C +fn_801ADB1C = .text:0x801ADB1C; // type:function size:0x54 +fn_801ADB70 = .text:0x801ADB70; // type:function size:0x5C +fn_801ADBCC = .text:0x801ADBCC; // type:function size:0x15C +fn_801ADD28 = .text:0x801ADD28; // type:function size:0x44 +fn_801ADD6C = .text:0x801ADD6C; // type:function size:0x6C +fn_801ADDD8 = .text:0x801ADDD8; // type:function size:0x2C +fn_801ADE04 = .text:0x801ADE04; // type:function size:0x10 +fn_801ADE14 = .text:0x801ADE14; // type:function size:0x108 +fn_801ADF1C = .text:0x801ADF1C; // type:function size:0x5C +fn_801ADF78 = .text:0x801ADF78; // type:function size:0x7C +fn_801ADFF4 = .text:0x801ADFF4; // type:function size:0x40 +fn_801AE034 = .text:0x801AE034; // type:function size:0x90 +fn_801AE0C4 = .text:0x801AE0C4; // type:function size:0x8 +fn_801AE0CC = .text:0x801AE0CC; // type:function size:0x8 +fn_801AE0D4 = .text:0x801AE0D4; // type:function size:0x8 +fn_801AE0DC = .text:0x801AE0DC; // type:function size:0x8 +fn_801AE0E4 = .text:0x801AE0E4; // type:function size:0x10 +fn_801AE0F4 = .text:0x801AE0F4; // type:function size:0x6C +fn_801AE160 = .text:0x801AE160; // type:function size:0x58 +fn_801AE1B8 = .text:0x801AE1B8; // type:function size:0x80 +fn_801AE238 = .text:0x801AE238; // type:function size:0x80 +fn_801AE2B8 = .text:0x801AE2B8; // type:function size:0x58 +fn_801AE310 = .text:0x801AE310; // type:function size:0x54 +fn_801AE364 = .text:0x801AE364; // type:function size:0x5C +fn_801AE3C0 = .text:0x801AE3C0; // type:function size:0x6C +fn_801AE42C = .text:0x801AE42C; // type:function size:0x28 +fn_801AE454 = .text:0x801AE454; // type:function size:0x8 +fn_801AE45C = .text:0x801AE45C; // type:function size:0x3C +fn_801AE498 = .text:0x801AE498; // type:function size:0x30 +fn_801AE4C8 = .text:0x801AE4C8; // type:function size:0x30 +fn_801AE4F8 = .text:0x801AE4F8; // type:function size:0x40 +fn_801AE538 = .text:0x801AE538; // type:function size:0x68 +fn_801AE5A0 = .text:0x801AE5A0; // type:function size:0x11C +fn_801AE6BC = .text:0x801AE6BC; // type:function size:0x114 +fn_801AE7D0 = .text:0x801AE7D0; // type:function size:0x4 +fn_801AE7D4 = .text:0x801AE7D4; // type:function size:0x88 +fn_801AE85C = .text:0x801AE85C; // type:function size:0x2C +fn_801AE888 = .text:0x801AE888; // type:function size:0x10 +fn_801AE898 = .text:0x801AE898; // type:function size:0x54 +fn_801AE8EC = .text:0x801AE8EC; // type:function size:0x30 +fn_801AE91C = .text:0x801AE91C; // type:function size:0x8 +fn_801AE924 = .text:0x801AE924; // type:function size:0xB0 +fn_801AE9D4 = .text:0x801AE9D4; // type:function size:0x84 +fn_801AEA58 = .text:0x801AEA58; // type:function size:0x114 +fn_801AEB6C = .text:0x801AEB6C; // type:function size:0x60 +fn_801AEBCC = .text:0x801AEBCC; // type:function size:0x5C +fn_801AEC28 = .text:0x801AEC28; // type:function size:0x54 +fn_801AEC7C = .text:0x801AEC7C; // type:function size:0x5C +fn_801AECD8 = .text:0x801AECD8; // type:function size:0x5C +fn_801AED34 = .text:0x801AED34; // type:function size:0x6C +fn_801AEDA0 = .text:0x801AEDA0; // type:function size:0x68 +fn_801AEE08 = .text:0x801AEE08; // type:function size:0xEC +fn_801AEEF4 = .text:0x801AEEF4; // type:function size:0x8 +fn_801AEEFC = .text:0x801AEEFC; // type:function size:0x68 +fn_801AEF64 = .text:0x801AEF64; // type:function size:0xE0 +fn_801AF044 = .text:0x801AF044; // type:function size:0xF8 +fn_801AF13C = .text:0x801AF13C; // type:function size:0x118 +fn_801AF254 = .text:0x801AF254; // type:function size:0x6C +fn_801AF2C0 = .text:0x801AF2C0; // type:function size:0xC +fn_801AF2CC = .text:0x801AF2CC; // type:function size:0x8 +fn_801AF2D4 = .text:0x801AF2D4; // type:function size:0x38 +fn_801AF30C = .text:0x801AF30C; // type:function size:0x90 +fn_801AF39C = .text:0x801AF39C; // type:function size:0x40 +fn_801AF3DC = .text:0x801AF3DC; // type:function size:0x12C +fn_801AF508 = .text:0x801AF508; // type:function size:0x8 +fn_801AF510 = .text:0x801AF510; // type:function size:0x8 +fn_801AF518 = .text:0x801AF518; // type:function size:0x8 +fn_801AF520 = .text:0x801AF520; // type:function size:0x8 +fn_801AF528 = .text:0x801AF528; // type:function size:0x10 +fn_801AF538 = .text:0x801AF538; // type:function size:0x54 +fn_801AF58C = .text:0x801AF58C; // type:function size:0x58 +fn_801AF5E4 = .text:0x801AF5E4; // type:function size:0x4 +fn_801AF5E8 = .text:0x801AF5E8; // type:function size:0x8 +fn_801AF5F0 = .text:0x801AF5F0; // type:function size:0xE0 +fn_801AF6D0 = .text:0x801AF6D0; // type:function size:0xB0 +fn_801AF780 = .text:0x801AF780; // type:function size:0x54 +fn_801AF7D4 = .text:0x801AF7D4; // type:function size:0x58 +fn_801AF82C = .text:0x801AF82C; // type:function size:0x4 +fn_801AF830 = .text:0x801AF830; // type:function size:0x8 +fn_801AF838 = .text:0x801AF838; // type:function size:0xE0 +fn_801AF918 = .text:0x801AF918; // type:function size:0xB0 +fn_801AF9C8 = .text:0x801AF9C8; // type:function size:0x6C +fn_801AFA34 = .text:0x801AFA34; // type:function size:0x68 +fn_801AFA9C = .text:0x801AFA9C; // type:function size:0xEC +fn_801AFB88 = .text:0x801AFB88; // type:function size:0x8 +fn_801AFB90 = .text:0x801AFB90; // type:function size:0x8 +fn_801AFB98 = .text:0x801AFB98; // type:function size:0x74 +fn_801AFC0C = .text:0x801AFC0C; // type:function size:0x100 +fn_801AFD0C = .text:0x801AFD0C; // type:function size:0x24 +fn_801AFD30 = .text:0x801AFD30; // type:function size:0x68C +fn_801B03BC = .text:0x801B03BC; // type:function size:0x4C +fn_801B0408 = .text:0x801B0408; // type:function size:0x508 +fn_801B0910 = .text:0x801B0910; // type:function size:0xC +fn_801B091C = .text:0x801B091C; // type:function size:0x8 +fn_801B0924 = .text:0x801B0924; // type:function size:0x60 +fn_801B0984 = .text:0x801B0984; // type:function size:0x50 +fn_801B09D4 = .text:0x801B09D4; // type:function size:0x30 +fn_801B0A04 = .text:0x801B0A04; // type:function size:0x160 +fn_801B0B64 = .text:0x801B0B64; // type:function size:0x28 +fn_801B0B8C = .text:0x801B0B8C; // type:function size:0x68 +fn_801B0BF4 = .text:0x801B0BF4; // type:function size:0x30 +fn_801B0C24 = .text:0x801B0C24; // type:function size:0x5C +fn_801B0C80 = .text:0x801B0C80; // type:function size:0x60 +fn_801B0CE0 = .text:0x801B0CE0; // type:function size:0xB0 +fn_801B0D90 = .text:0x801B0D90; // type:function size:0x78 +fn_801B0E08 = .text:0x801B0E08; // type:function size:0x58 +fn_801B0E60 = .text:0x801B0E60; // type:function size:0xE4 +fn_801B0F44 = .text:0x801B0F44; // type:function size:0x8 +fn_801B0F4C = .text:0x801B0F4C; // type:function size:0x8 +fn_801B0F54 = .text:0x801B0F54; // type:function size:0x8 +fn_801B0F5C = .text:0x801B0F5C; // type:function size:0x8 +fn_801B0F64 = .text:0x801B0F64; // type:function size:0x68 +fn_801B0FCC = .text:0x801B0FCC; // type:function size:0x40 +fn_801B100C = .text:0x801B100C; // type:function size:0x3C +fn_801B1048 = .text:0x801B1048; // type:function size:0x58 +fn_801B10A0 = .text:0x801B10A0; // type:function size:0x84 +fn_801B1124 = .text:0x801B1124; // type:function size:0x80 +fn_801B11A4 = .text:0x801B11A4; // type:function size:0x84 +fn_801B1228 = .text:0x801B1228; // type:function size:0x84 +fn_801B12AC = .text:0x801B12AC; // type:function size:0x84 +fn_801B1330 = .text:0x801B1330; // type:function size:0x84 +fn_801B13B4 = .text:0x801B13B4; // type:function size:0x84 +fn_801B1438 = .text:0x801B1438; // type:function size:0x84 +fn_801B14BC = .text:0x801B14BC; // type:function size:0x84 +fn_801B1540 = .text:0x801B1540; // type:function size:0x5C +fn_801B159C = .text:0x801B159C; // type:function size:0x5C +fn_801B15F8 = .text:0x801B15F8; // type:function size:0x5C +fn_801B1654 = .text:0x801B1654; // type:function size:0x5C +fn_801B16B0 = .text:0x801B16B0; // type:function size:0x5C +fn_801B170C = .text:0x801B170C; // type:function size:0x450 +fn_801B1B5C = .text:0x801B1B5C; // type:function size:0x5C +fn_801B1BB8 = .text:0x801B1BB8; // type:function size:0x80 +fn_801B1C38 = .text:0x801B1C38; // type:function size:0x70 +fn_801B1CA8 = .text:0x801B1CA8; // type:function size:0x8 +fn_801B1CB0 = .text:0x801B1CB0; // type:function size:0x1C8 +fn_801B1E78 = .text:0x801B1E78; // type:function size:0x74 +fn_801B1EEC = .text:0x801B1EEC; // type:function size:0x68 +fn_801B1F54 = .text:0x801B1F54; // type:function size:0x11C +fn_801B2070 = .text:0x801B2070; // type:function size:0x8 +fn_801B2078 = .text:0x801B2078; // type:function size:0x70 +fn_801B20E8 = .text:0x801B20E8; // type:function size:0x4C +fn_801B2134 = .text:0x801B2134; // type:function size:0x88 +fn_801B21BC = .text:0x801B21BC; // type:function size:0x8 +fn_801B21C4 = .text:0x801B21C4; // type:function size:0x15C +fn_801B2320 = .text:0x801B2320; // type:function size:0x150 +fn_801B2470 = .text:0x801B2470; // type:function size:0x8 +fn_801B2478 = .text:0x801B2478; // type:function size:0x8 +fn_801B2480 = .text:0x801B2480; // type:function size:0x12C +fn_801B25AC = .text:0x801B25AC; // type:function size:0x80 +fn_801B262C = .text:0x801B262C; // type:function size:0x70 +fn_801B269C = .text:0x801B269C; // type:function size:0xA8 +fn_801B2744 = .text:0x801B2744; // type:function size:0x74 +fn_801B27B8 = .text:0x801B27B8; // type:function size:0x74 +fn_801B282C = .text:0x801B282C; // type:function size:0xB0 +fn_801B28DC = .text:0x801B28DC; // type:function size:0x8 +fn_801B28E4 = .text:0x801B28E4; // type:function size:0x58 +fn_801B293C = .text:0x801B293C; // type:function size:0x9C +fn_801B29D8 = .text:0x801B29D8; // type:function size:0xC0 +fn_801B2A98 = .text:0x801B2A98; // type:function size:0x8 +fn_801B2AA0 = .text:0x801B2AA0; // type:function size:0x30 +fn_801B2AD0 = .text:0x801B2AD0; // type:function size:0x8 +fn_801B2AD8 = .text:0x801B2AD8; // type:function size:0x6C +fn_801B2B44 = .text:0x801B2B44; // type:function size:0x58 +fn_801B2B9C = .text:0x801B2B9C; // type:function size:0x58 +fn_801B2BF4 = .text:0x801B2BF4; // type:function size:0x60 +fn_801B2C54 = .text:0x801B2C54; // type:function size:0x58 +fn_801B2CAC = .text:0x801B2CAC; // type:function size:0x30 +fn_801B2CDC = .text:0x801B2CDC; // type:function size:0x30 +fn_801B2D0C = .text:0x801B2D0C; // type:function size:0x60 +fn_801B2D6C = .text:0x801B2D6C; // type:function size:0x68 +fn_801B2DD4 = .text:0x801B2DD4; // type:function size:0x114 +fn_801B2EE8 = .text:0x801B2EE8; // type:function size:0x128 +fn_801B3010 = .text:0x801B3010; // type:function size:0x4 +fn_801B3014 = .text:0x801B3014; // type:function size:0x54 +fn_801B3068 = .text:0x801B3068; // type:function size:0x64 +fn_801B30CC = .text:0x801B30CC; // type:function size:0x50 +fn_801B311C = .text:0x801B311C; // type:function size:0x10 +fn_801B312C = .text:0x801B312C; // type:function size:0x58 +fn_801B3184 = .text:0x801B3184; // type:function size:0x4 +fn_801B3188 = .text:0x801B3188; // type:function size:0x38 +fn_801B31C0 = .text:0x801B31C0; // type:function size:0x8 +fn_801B31C8 = .text:0x801B31C8; // type:function size:0xA8 +fn_801B3270 = .text:0x801B3270; // type:function size:0x2C +fn_801B329C = .text:0x801B329C; // type:function size:0x40 +fn_801B32DC = .text:0x801B32DC; // type:function size:0x30 +fn_801B330C = .text:0x801B330C; // type:function size:0x140 +fn_801B344C = .text:0x801B344C; // type:function size:0x4 +fn_801B3450 = .text:0x801B3450; // type:function size:0xC +fn_801B345C = .text:0x801B345C; // type:function size:0x24 +fn_801B3480 = .text:0x801B3480; // type:function size:0x1D0 +fn_801B3650 = .text:0x801B3650; // type:function size:0x4C +fn_801B369C = .text:0x801B369C; // type:function size:0x8 +fn_801B36A4 = .text:0x801B36A4; // type:function size:0x3C +fn_801B36E0 = .text:0x801B36E0; // type:function size:0x2C +fn_801B370C = .text:0x801B370C; // type:function size:0x3C +fn_801B3748 = .text:0x801B3748; // type:function size:0x68 +fn_801B37B0 = .text:0x801B37B0; // type:function size:0x2C +fn_801B37DC = .text:0x801B37DC; // type:function size:0x6C +fn_801B3848 = .text:0x801B3848; // type:function size:0x58 +fn_801B38A0 = .text:0x801B38A0; // type:function size:0x58 +fn_801B38F8 = .text:0x801B38F8; // type:function size:0x60 +fn_801B3958 = .text:0x801B3958; // type:function size:0x58 +fn_801B39B0 = .text:0x801B39B0; // type:function size:0x30 +fn_801B39E0 = .text:0x801B39E0; // type:function size:0x30 +fn_801B3A10 = .text:0x801B3A10; // type:function size:0x60 +fn_801B3A70 = .text:0x801B3A70; // type:function size:0x68 +fn_801B3AD8 = .text:0x801B3AD8; // type:function size:0x108 +fn_801B3BE0 = .text:0x801B3BE0; // type:function size:0x4 +fn_801B3BE4 = .text:0x801B3BE4; // type:function size:0x54 +fn_801B3C38 = .text:0x801B3C38; // type:function size:0x64 +fn_801B3C9C = .text:0x801B3C9C; // type:function size:0x50 +fn_801B3CEC = .text:0x801B3CEC; // type:function size:0x10 +fn_801B3CFC = .text:0x801B3CFC; // type:function size:0x44 +fn_801B3D40 = .text:0x801B3D40; // type:function size:0x4 +fn_801B3D44 = .text:0x801B3D44; // type:function size:0x1C +fn_801B3D60 = .text:0x801B3D60; // type:function size:0xF0 +fn_801B3E50 = .text:0x801B3E50; // type:function size:0x2C +fn_801B3E7C = .text:0x801B3E7C; // type:function size:0x40 +fn_801B3EBC = .text:0x801B3EBC; // type:function size:0x30 +fn_801B3EEC = .text:0x801B3EEC; // type:function size:0x30 +fn_801B3F1C = .text:0x801B3F1C; // type:function size:0x80 +fn_801B3F9C = .text:0x801B3F9C; // type:function size:0x3C +fn_801B3FD8 = .text:0x801B3FD8; // type:function size:0x8 +fn_801B3FE0 = .text:0x801B3FE0; // type:function size:0x8 +fn_801B3FE8 = .text:0x801B3FE8; // type:function size:0x68 +fn_801B4050 = .text:0x801B4050; // type:function size:0x2C +fn_801B407C = .text:0x801B407C; // type:function size:0x6C +fn_801B40E8 = .text:0x801B40E8; // type:function size:0x68 +fn_801B4150 = .text:0x801B4150; // type:function size:0xA0 +fn_801B41F0 = .text:0x801B41F0; // type:function size:0x8 +fn_801B41F8 = .text:0x801B41F8; // type:function size:0x88 +fn_801B4280 = .text:0x801B4280; // type:function size:0x88 +fn_801B4308 = .text:0x801B4308; // type:function size:0x30 +fn_801B4338 = .text:0x801B4338; // type:function size:0x8 +fn_801B4340 = .text:0x801B4340; // type:function size:0x6C +fn_801B43AC = .text:0x801B43AC; // type:function size:0x58 +fn_801B4404 = .text:0x801B4404; // type:function size:0x74 +fn_801B4478 = .text:0x801B4478; // type:function size:0x8 +fn_801B4480 = .text:0x801B4480; // type:function size:0x4C +fn_801B44CC = .text:0x801B44CC; // type:function size:0x88 +fn_801B4554 = .text:0x801B4554; // type:function size:0x11C +fn_801B4670 = .text:0x801B4670; // type:function size:0xE4 +fn_801B4754 = .text:0x801B4754; // type:function size:0x8 +fn_801B475C = .text:0x801B475C; // type:function size:0xC0 +__ct__13AppInlineHelpFv = .text:0x801B481C; // type:function size:0xCC +__ct__16RndHighlightableFv = .text:0x801B48E8; // type:function size:0x6C +fn_801B4954 = .text:0x801B4954; // type:function size:0x10C +fn_801B4A60 = .text:0x801B4A60; // type:function size:0x4C +fn_801B4AAC = .text:0x801B4AAC; // type:function size:0x4C +fn_801B4AF8 = .text:0x801B4AF8; // type:function size:0xB4 +fn_801B4BAC = .text:0x801B4BAC; // type:function size:0x2E0 +fn_801B4E8C = .text:0x801B4E8C; // type:function size:0x18 +fn_801B4EA4 = .text:0x801B4EA4; // type:function size:0x7C +fn_801B4F20 = .text:0x801B4F20; // type:function size:0x7C +fn_801B4F9C = .text:0x801B4F9C; // type:function size:0x8C +fn_801B5028 = .text:0x801B5028; // type:function size:0x288 +fn_801B52B0 = .text:0x801B52B0; // type:function size:0x3C +__ct__21AddLocalUserResultMsgFP9DataArray = .text:0x801B52EC; // type:function size:0x3C +fn_801B5328 = .text:0x801B5328; // type:function size:0x98 +fn_801B53C0 = .text:0x801B53C0; // type:function size:0x8 +fn_801B53C8 = .text:0x801B53C8; // type:function size:0x1C +fn_801B53E4 = .text:0x801B53E4; // type:function size:0x4 +fn_801B53E8 = .text:0x801B53E8; // type:function size:0x138 +fn_801B5520 = .text:0x801B5520; // type:function size:0x4C +fn_801B556C = .text:0x801B556C; // type:function size:0x4 +fn_801B5570 = .text:0x801B5570; // type:function size:0x14 +fn_801B5584 = .text:0x801B5584; // type:function size:0x14 +fn_801B5598 = .text:0x801B5598; // type:function size:0x14 +fn_801B55AC = .text:0x801B55AC; // type:function size:0x8 +fn_801B55B4 = .text:0x801B55B4; // type:function size:0x8 +fn_801B55BC = .text:0x801B55BC; // type:function size:0x8 +fn_801B55C4 = .text:0x801B55C4; // type:function size:0x8 +fn_801B55CC = .text:0x801B55CC; // type:function size:0x8 +fn_801B55D4 = .text:0x801B55D4; // type:function size:0x8 +fn_801B55DC = .text:0x801B55DC; // type:function size:0x8 +fn_801B55E4 = .text:0x801B55E4; // type:function size:0x8 +fn_801B55EC = .text:0x801B55EC; // type:function size:0x8 +fn_801B55F4 = .text:0x801B55F4; // type:function size:0x14 +fn_801B5608 = .text:0x801B5608; // type:function size:0x14 +fn_801B561C = .text:0x801B561C; // type:function size:0x14 +fn_801B5630 = .text:0x801B5630; // type:function size:0x14 +fn_801B5644 = .text:0x801B5644; // type:function size:0x14 +fn_801B5658 = .text:0x801B5658; // type:function size:0x14 +fn_801B566C = .text:0x801B566C; // type:function size:0x14 +fn_801B5680 = .text:0x801B5680; // type:function size:0x14 +fn_801B5694 = .text:0x801B5694; // type:function size:0x14 +fn_801B56A8 = .text:0x801B56A8; // type:function size:0x14 +fn_801B56BC = .text:0x801B56BC; // type:function size:0x14 +fn_801B56D0 = .text:0x801B56D0; // type:function size:0x14 +fn_801B56E4 = .text:0x801B56E4; // type:function size:0x14 +fn_801B56F8 = .text:0x801B56F8; // type:function size:0x8 +fn_801B5700 = .text:0x801B5700; // type:function size:0x8 +fn_801B5708 = .text:0x801B5708; // type:function size:0x8 +fn_801B5710 = .text:0x801B5710; // type:function size:0x8 +fn_801B5718 = .text:0x801B5718; // type:function size:0x8 +fn_801B5720 = .text:0x801B5720; // type:function size:0x8 +fn_801B5728 = .text:0x801B5728; // type:function size:0x8 +fn_801B5730 = .text:0x801B5730; // type:function size:0x80 +fn_801B57B0 = .text:0x801B57B0; // type:function size:0x94 +fn_801B5844 = .text:0x801B5844; // type:function size:0xF0 +fn_801B5934 = .text:0x801B5934; // type:function size:0x340 +fn_801B5C74 = .text:0x801B5C74; // type:function size:0x58 +fn_801B5CCC = .text:0x801B5CCC; // type:function size:0x50 +fn_801B5D1C = .text:0x801B5D1C; // type:function size:0x4C +fn_801B5D68 = .text:0x801B5D68; // type:function size:0x4C +fn_801B5DB4 = .text:0x801B5DB4; // type:function size:0x54 +fn_801B5E08 = .text:0x801B5E08; // type:function size:0x80 +fn_801B5E88 = .text:0x801B5E88; // type:function size:0x48 +fn_801B5ED0 = .text:0x801B5ED0; // type:function size:0x84 +fn_801B5F54 = .text:0x801B5F54; // type:function size:0xD4 +fn_801B6028 = .text:0x801B6028; // type:function size:0xB4 +fn_801B60DC = .text:0x801B60DC; // type:function size:0x214 +fn_801B62F0 = .text:0x801B62F0; // type:function size:0x68 +fn_801B6358 = .text:0x801B6358; // type:function size:0x58 +fn_801B63B0 = .text:0x801B63B0; // type:function size:0x68 +fn_801B6418 = .text:0x801B6418; // type:function size:0x58 +fn_801B6470 = .text:0x801B6470; // type:function size:0x1B4 +fn_801B6624 = .text:0x801B6624; // type:function size:0x90 +fn_801B66B4 = .text:0x801B66B4; // type:function size:0x5C +fn_801B6710 = .text:0x801B6710; // type:function size:0xA8 +fn_801B67B8 = .text:0x801B67B8; // type:function size:0xB4 +fn_801B686C = .text:0x801B686C; // type:function size:0x3C +fn_801B68A8 = .text:0x801B68A8; // type:function size:0x140 +fn_801B69E8 = .text:0x801B69E8; // type:function size:0x78 +fn_801B6A60 = .text:0x801B6A60; // type:function size:0x50 +fn_801B6AB0 = .text:0x801B6AB0; // type:function size:0xA4 +fn_801B6B54 = .text:0x801B6B54; // type:function size:0xA4 +fn_801B6BF8 = .text:0x801B6BF8; // type:function size:0x4C +fn_801B6C44 = .text:0x801B6C44; // type:function size:0x8 +fn_801B6C4C = .text:0x801B6C4C; // type:function size:0xC +fn_801B6C58 = .text:0x801B6C58; // type:function size:0xF0 +fn_801B6D48 = .text:0x801B6D48; // type:function size:0xE4 +fn_801B6E2C = .text:0x801B6E2C; // type:function size:0x98 +fn_801B6EC4 = .text:0x801B6EC4; // type:function size:0x54 +fn_801B6F18 = .text:0x801B6F18; // type:function size:0x9C +fn_801B6FB4 = .text:0x801B6FB4; // type:function size:0x114 +fn_801B70C8 = .text:0x801B70C8; // type:function size:0xAC +fn_801B7174 = .text:0x801B7174; // type:function size:0x4C +fn_801B71C0 = .text:0x801B71C0; // type:function size:0x4C +fn_801B720C = .text:0x801B720C; // type:function size:0x8 +fn_801B7214 = .text:0x801B7214; // type:function size:0x4C +fn_801B7260 = .text:0x801B7260; // type:function size:0x68 +fn_801B72C8 = .text:0x801B72C8; // type:function size:0x68 +fn_801B7330 = .text:0x801B7330; // type:function size:0x178 +fn_801B74A8 = .text:0x801B74A8; // type:function size:0x74 +fn_801B751C = .text:0x801B751C; // type:function size:0x54 +fn_801B7570 = .text:0x801B7570; // type:function size:0x54 +fn_801B75C4 = .text:0x801B75C4; // type:function size:0x54 +fn_801B7618 = .text:0x801B7618; // type:function size:0xE0 +fn_801B76F8 = .text:0x801B76F8; // type:function size:0x74 +fn_801B776C = .text:0x801B776C; // type:function size:0x4C +fn_801B77B8 = .text:0x801B77B8; // type:function size:0x4C +fn_801B7804 = .text:0x801B7804; // type:function size:0x8C +fn_801B7890 = .text:0x801B7890; // type:function size:0xC0 +fn_801B7950 = .text:0x801B7950; // type:function size:0x4C +fn_801B799C = .text:0x801B799C; // type:function size:0x78 +fn_801B7A14 = .text:0x801B7A14; // type:function size:0x5C +fn_801B7A70 = .text:0x801B7A70; // type:function size:0x180 +fn_801B7BF0 = .text:0x801B7BF0; // type:function size:0x64 +fn_801B7C54 = .text:0x801B7C54; // type:function size:0x50 +fn_801B7CA4 = .text:0x801B7CA4; // type:function size:0x84 +fn_801B7D28 = .text:0x801B7D28; // type:function size:0xB4 +fn_801B7DDC = .text:0x801B7DDC; // type:function size:0x58 +fn_801B7E34 = .text:0x801B7E34; // type:function size:0x50 +fn_801B7E84 = .text:0x801B7E84; // type:function size:0xEC +fn_801B7F70 = .text:0x801B7F70; // type:function size:0x8 +fn_801B7F78 = .text:0x801B7F78; // type:function size:0x23C +fn_801B81B4 = .text:0x801B81B4; // type:function size:0xB4 +fn_801B8268 = .text:0x801B8268; // type:function size:0x88 +fn_801B82F0 = .text:0x801B82F0; // type:function size:0x90 +fn_801B8380 = .text:0x801B8380; // type:function size:0x50 +fn_801B83D0 = .text:0x801B83D0; // type:function size:0xADC +fn_801B8EAC = .text:0x801B8EAC; // type:function size:0x34 +fn_801B8EE0 = .text:0x801B8EE0; // type:function size:0x3C +fn_801B8F1C = .text:0x801B8F1C; // type:function size:0x34 +fn_801B8F50 = .text:0x801B8F50; // type:function size:0x3C +fn_801B8F8C = .text:0x801B8F8C; // type:function size:0x34 +fn_801B8FC0 = .text:0x801B8FC0; // type:function size:0x3C +fn_801B8FFC = .text:0x801B8FFC; // type:function size:0x34 +fn_801B9030 = .text:0x801B9030; // type:function size:0x3C +fn_801B906C = .text:0x801B906C; // type:function size:0x34 +fn_801B90A0 = .text:0x801B90A0; // type:function size:0x3C +fn_801B90DC = .text:0x801B90DC; // type:function size:0x34 +fn_801B9110 = .text:0x801B9110; // type:function size:0x3C +fn_801B914C = .text:0x801B914C; // type:function size:0x34 +fn_801B9180 = .text:0x801B9180; // type:function size:0x3C +fn_801B91BC = .text:0x801B91BC; // type:function size:0x34 +fn_801B91F0 = .text:0x801B91F0; // type:function size:0x3C +fn_801B922C = .text:0x801B922C; // type:function size:0x34 +fn_801B9260 = .text:0x801B9260; // type:function size:0x3C +fn_801B929C = .text:0x801B929C; // type:function size:0x98 +fn_801B9334 = .text:0x801B9334; // type:function size:0x138 +fn_801B946C = .text:0x801B946C; // type:function size:0x4C +fn_801B94B8 = .text:0x801B94B8; // type:function size:0x4 +fn_801B94BC = .text:0x801B94BC; // type:function size:0x14 +fn_801B94D0 = .text:0x801B94D0; // type:function size:0x14 +fn_801B94E4 = .text:0x801B94E4; // type:function size:0x8 +fn_801B94EC = .text:0x801B94EC; // type:function size:0x8 +fn_801B94F4 = .text:0x801B94F4; // type:function size:0x8 +fn_801B94FC = .text:0x801B94FC; // type:function size:0x8 +fn_801B9504 = .text:0x801B9504; // type:function size:0x8 +fn_801B950C = .text:0x801B950C; // type:function size:0x8 +fn_801B9514 = .text:0x801B9514; // type:function size:0x8 +fn_801B951C = .text:0x801B951C; // type:function size:0x8 +fn_801B9524 = .text:0x801B9524; // type:function size:0x8 +fn_801B952C = .text:0x801B952C; // type:function size:0x14 +fn_801B9540 = .text:0x801B9540; // type:function size:0x14 +fn_801B9554 = .text:0x801B9554; // type:function size:0x14 +fn_801B9568 = .text:0x801B9568; // type:function size:0x14 +fn_801B957C = .text:0x801B957C; // type:function size:0x14 +fn_801B9590 = .text:0x801B9590; // type:function size:0x14 +fn_801B95A4 = .text:0x801B95A4; // type:function size:0x14 +fn_801B95B8 = .text:0x801B95B8; // type:function size:0x14 +fn_801B95CC = .text:0x801B95CC; // type:function size:0x14 +fn_801B95E0 = .text:0x801B95E0; // type:function size:0x14 +fn_801B95F4 = .text:0x801B95F4; // type:function size:0x14 +fn_801B9608 = .text:0x801B9608; // type:function size:0x14 +fn_801B961C = .text:0x801B961C; // type:function size:0x14 +fn_801B9630 = .text:0x801B9630; // type:function size:0x8 +fn_801B9638 = .text:0x801B9638; // type:function size:0x8 +fn_801B9640 = .text:0x801B9640; // type:function size:0x8 +fn_801B9648 = .text:0x801B9648; // type:function size:0x8 +fn_801B9650 = .text:0x801B9650; // type:function size:0x8 +fn_801B9658 = .text:0x801B9658; // type:function size:0x8 +fn_801B9660 = .text:0x801B9660; // type:function size:0x8 +fn_801B9668 = .text:0x801B9668; // type:function size:0x8 +fn_801B9670 = .text:0x801B9670; // type:function size:0x8 +fn_801B9678 = .text:0x801B9678; // type:function size:0x8 +fn_801B9680 = .text:0x801B9680; // type:function size:0x4 +fn_801B9684 = .text:0x801B9684; // type:function size:0x34 +fn_801B96B8 = .text:0x801B96B8; // type:function size:0x48 +fn_801B9700 = .text:0x801B9700; // type:function size:0x4C +fn_801B974C = .text:0x801B974C; // type:function size:0xFC +fn_801B9848 = .text:0x801B9848; // type:function size:0x10 +fn_801B9858 = .text:0x801B9858; // type:function size:0x140 +fn_801B9998 = .text:0x801B9998; // type:function size:0x58 +fn_801B99F0 = .text:0x801B99F0; // type:function size:0x58 +fn_801B9A48 = .text:0x801B9A48; // type:function size:0xA8 +fn_801B9AF0 = .text:0x801B9AF0; // type:function size:0x64 +fn_801B9B54 = .text:0x801B9B54; // type:function size:0x8 +fn_801B9B5C = .text:0x801B9B5C; // type:function size:0xCC +fn_801B9C28 = .text:0x801B9C28; // type:function size:0x10 +fn_801B9C38 = .text:0x801B9C38; // type:function size:0x11C +fn_801B9D54 = .text:0x801B9D54; // type:function size:0x64 +fn_801B9DB8 = .text:0x801B9DB8; // type:function size:0x140 +fn_801B9EF8 = .text:0x801B9EF8; // type:function size:0x14 +fn_801B9F0C = .text:0x801B9F0C; // type:function size:0x54 +fn_801B9F60 = .text:0x801B9F60; // type:function size:0x74 +fn_801B9FD4 = .text:0x801B9FD4; // type:function size:0x8 +fn_801B9FDC = .text:0x801B9FDC; // type:function size:0x1A4 +fn_801BA180 = .text:0x801BA180; // type:function size:0xA0 +fn_801BA220 = .text:0x801BA220; // type:function size:0x20 +fn_801BA240 = .text:0x801BA240; // type:function size:0x48 +fn_801BA288 = .text:0x801BA288; // type:function size:0x1B0 +fn_801BA438 = .text:0x801BA438; // type:function size:0x138 +fn_801BA570 = .text:0x801BA570; // type:function size:0x4 +fn_801BA574 = .text:0x801BA574; // type:function size:0x9C +fn_801BA610 = .text:0x801BA610; // type:function size:0x14 +fn_801BA624 = .text:0x801BA624; // type:function size:0x14 +fn_801BA638 = .text:0x801BA638; // type:function size:0x14 +fn_801BA64C = .text:0x801BA64C; // type:function size:0x8 +fn_801BA654 = .text:0x801BA654; // type:function size:0x8 +fn_801BA65C = .text:0x801BA65C; // type:function size:0x8 +fn_801BA664 = .text:0x801BA664; // type:function size:0x8 +fn_801BA66C = .text:0x801BA66C; // type:function size:0x8 +fn_801BA674 = .text:0x801BA674; // type:function size:0x8 +fn_801BA67C = .text:0x801BA67C; // type:function size:0x8 +fn_801BA684 = .text:0x801BA684; // type:function size:0x8 +fn_801BA68C = .text:0x801BA68C; // type:function size:0x14 +fn_801BA6A0 = .text:0x801BA6A0; // type:function size:0x14 +fn_801BA6B4 = .text:0x801BA6B4; // type:function size:0x14 +fn_801BA6C8 = .text:0x801BA6C8; // type:function size:0x14 +fn_801BA6DC = .text:0x801BA6DC; // type:function size:0x14 +fn_801BA6F0 = .text:0x801BA6F0; // type:function size:0x14 +fn_801BA704 = .text:0x801BA704; // type:function size:0x14 +fn_801BA718 = .text:0x801BA718; // type:function size:0x14 +fn_801BA72C = .text:0x801BA72C; // type:function size:0x14 +fn_801BA740 = .text:0x801BA740; // type:function size:0x14 +fn_801BA754 = .text:0x801BA754; // type:function size:0x14 +fn_801BA768 = .text:0x801BA768; // type:function size:0x14 +fn_801BA77C = .text:0x801BA77C; // type:function size:0x14 +fn_801BA790 = .text:0x801BA790; // type:function size:0x8 +fn_801BA798 = .text:0x801BA798; // type:function size:0x8 +fn_801BA7A0 = .text:0x801BA7A0; // type:function size:0x8 +fn_801BA7A8 = .text:0x801BA7A8; // type:function size:0x8 +fn_801BA7B0 = .text:0x801BA7B0; // type:function size:0x8 +fn_801BA7B8 = .text:0x801BA7B8; // type:function size:0x8 +fn_801BA7C0 = .text:0x801BA7C0; // type:function size:0x8 +fn_801BA7C8 = .text:0x801BA7C8; // type:function size:0x8 +fn_801BA7D0 = .text:0x801BA7D0; // type:function size:0x8 +fn_801BA7D8 = .text:0x801BA7D8; // type:function size:0x8 +fn_801BA7E0 = .text:0x801BA7E0; // type:function size:0x8 +fn_801BA7E8 = .text:0x801BA7E8; // type:function size:0x5C +fn_801BA844 = .text:0x801BA844; // type:function size:0x98 +fn_801BA8DC = .text:0x801BA8DC; // type:function size:0x138 +fn_801BAA14 = .text:0x801BAA14; // type:function size:0x4C +fn_801BAA60 = .text:0x801BAA60; // type:function size:0x4 +fn_801BAA64 = .text:0x801BAA64; // type:function size:0x14 +fn_801BAA78 = .text:0x801BAA78; // type:function size:0x14 +fn_801BAA8C = .text:0x801BAA8C; // type:function size:0x8 +fn_801BAA94 = .text:0x801BAA94; // type:function size:0x8 +fn_801BAA9C = .text:0x801BAA9C; // type:function size:0x8 +fn_801BAAA4 = .text:0x801BAAA4; // type:function size:0x8 +fn_801BAAAC = .text:0x801BAAAC; // type:function size:0x8 +fn_801BAAB4 = .text:0x801BAAB4; // type:function size:0x8 +fn_801BAABC = .text:0x801BAABC; // type:function size:0x8 +fn_801BAAC4 = .text:0x801BAAC4; // type:function size:0x8 +fn_801BAACC = .text:0x801BAACC; // type:function size:0x14 +fn_801BAAE0 = .text:0x801BAAE0; // type:function size:0x14 +fn_801BAAF4 = .text:0x801BAAF4; // type:function size:0x14 +fn_801BAB08 = .text:0x801BAB08; // type:function size:0x14 +fn_801BAB1C = .text:0x801BAB1C; // type:function size:0x14 +fn_801BAB30 = .text:0x801BAB30; // type:function size:0x14 +fn_801BAB44 = .text:0x801BAB44; // type:function size:0x14 +fn_801BAB58 = .text:0x801BAB58; // type:function size:0x14 +fn_801BAB6C = .text:0x801BAB6C; // type:function size:0x14 +fn_801BAB80 = .text:0x801BAB80; // type:function size:0x14 +fn_801BAB94 = .text:0x801BAB94; // type:function size:0x14 +fn_801BABA8 = .text:0x801BABA8; // type:function size:0x14 +fn_801BABBC = .text:0x801BABBC; // type:function size:0x14 +fn_801BABD0 = .text:0x801BABD0; // type:function size:0x8 +fn_801BABD8 = .text:0x801BABD8; // type:function size:0x8 +fn_801BABE0 = .text:0x801BABE0; // type:function size:0x8 +fn_801BABE8 = .text:0x801BABE8; // type:function size:0x8 +fn_801BABF0 = .text:0x801BABF0; // type:function size:0x8 +fn_801BABF8 = .text:0x801BABF8; // type:function size:0x8 +fn_801BAC00 = .text:0x801BAC00; // type:function size:0x8 +fn_801BAC08 = .text:0x801BAC08; // type:function size:0x8 +fn_801BAC10 = .text:0x801BAC10; // type:function size:0x8 +fn_801BAC18 = .text:0x801BAC18; // type:function size:0x234 +fn_801BAE4C = .text:0x801BAE4C; // type:function size:0x5C +fn_801BAEA8 = .text:0x801BAEA8; // type:function size:0x44 +fn_801BAEEC = .text:0x801BAEEC; // type:function size:0x2C +fn_801BAF18 = .text:0x801BAF18; // type:function size:0x74 +fn_801BAF8C = .text:0x801BAF8C; // type:function size:0x60 +fn_801BAFEC = .text:0x801BAFEC; // type:function size:0x5C +fn_801BB048 = .text:0x801BB048; // type:function size:0x58 +fn_801BB0A0 = .text:0x801BB0A0; // type:function size:0x60 +fn_801BB100 = .text:0x801BB100; // type:function size:0x58 +fn_801BB158 = .text:0x801BB158; // type:function size:0x58 +fn_801BB1B0 = .text:0x801BB1B0; // type:function size:0x50 +fn_801BB200 = .text:0x801BB200; // type:function size:0x58 +fn_801BB258 = .text:0x801BB258; // type:function size:0x60 +fn_801BB2B8 = .text:0x801BB2B8; // type:function size:0x58 +fn_801BB310 = .text:0x801BB310; // type:function size:0x58 +fn_801BB368 = .text:0x801BB368; // type:function size:0x50 +fn_801BB3B8 = .text:0x801BB3B8; // type:function size:0x44 +fn_801BB3FC = .text:0x801BB3FC; // type:function size:0x3C +fn_801BB438 = .text:0x801BB438; // type:function size:0x70 +fn_801BB4A8 = .text:0x801BB4A8; // type:function size:0x44 +fn_801BB4EC = .text:0x801BB4EC; // type:function size:0x3C +fn_801BB528 = .text:0x801BB528; // type:function size:0x70 +fn_801BB598 = .text:0x801BB598; // type:function size:0x114 +fn_801BB6AC = .text:0x801BB6AC; // type:function size:0x4 +fn_801BB6B0 = .text:0x801BB6B0; // type:function size:0x4 +fn_801BB6B4 = .text:0x801BB6B4; // type:function size:0x8 +fn_801BB6BC = .text:0x801BB6BC; // type:function size:0x34 +fn_801BB6F0 = .text:0x801BB6F0; // type:function size:0x4 +fn_801BB6F4 = .text:0x801BB6F4; // type:function size:0x8 +fn_801BB6FC = .text:0x801BB6FC; // type:function size:0x38 +fn_801BB734 = .text:0x801BB734; // type:function size:0xC +fn_801BB740 = .text:0x801BB740; // type:function size:0x74 +fn_801BB7B4 = .text:0x801BB7B4; // type:function size:0x2C +fn_801BB7E0 = .text:0x801BB7E0; // type:function size:0x30 +fn_801BB810 = .text:0x801BB810; // type:function size:0xA0 +fn_801BB8B0 = .text:0x801BB8B0; // type:function size:0x34 +fn_801BB8E4 = .text:0x801BB8E4; // type:function size:0x2C +fn_801BB910 = .text:0x801BB910; // type:function size:0x18C +fn_801BBA9C = .text:0x801BBA9C; // type:function size:0xF8 +fn_801BBB94 = .text:0x801BBB94; // type:function size:0x94 +fn_801BBC28 = .text:0x801BBC28; // type:function size:0xF8 +fn_801BBD20 = .text:0x801BBD20; // type:function size:0x30 +fn_801BBD50 = .text:0x801BBD50; // type:function size:0xC4 +fn_801BBE14 = .text:0x801BBE14; // type:function size:0x34 +fn_801BBE48 = .text:0x801BBE48; // type:function size:0xA0 +fn_801BBEE8 = .text:0x801BBEE8; // type:function size:0xE4 +fn_801BBFCC = .text:0x801BBFCC; // type:function size:0xA0 +fn_801BC06C = .text:0x801BC06C; // type:function size:0x6C +fn_801BC0D8 = .text:0x801BC0D8; // type:function size:0x30 +fn_801BC108 = .text:0x801BC108; // type:function size:0x6C +fn_801BC174 = .text:0x801BC174; // type:function size:0x78 +fn_801BC1EC = .text:0x801BC1EC; // type:function size:0x98 +fn_801BC284 = .text:0x801BC284; // type:function size:0xC0 +fn_801BC344 = .text:0x801BC344; // type:function size:0x94 +fn_801BC3D8 = .text:0x801BC3D8; // type:function size:0x78 +fn_801BC450 = .text:0x801BC450; // type:function size:0x90 +fn_801BC4E0 = .text:0x801BC4E0; // type:function size:0x70 +fn_801BC550 = .text:0x801BC550; // type:function size:0x30 +fn_801BC580 = .text:0x801BC580; // type:function size:0x68 +fn_801BC5E8 = .text:0x801BC5E8; // type:function size:0x40 +fn_801BC628 = .text:0x801BC628; // type:function size:0x30 +fn_801BC658 = .text:0x801BC658; // type:function size:0x80 +fn_801BC6D8 = .text:0x801BC6D8; // type:function size:0xE0 +fn_801BC7B8 = .text:0x801BC7B8; // type:function size:0x58 +fn_801BC810 = .text:0x801BC810; // type:function size:0x80 +fn_801BC890 = .text:0x801BC890; // type:function size:0x80 +fn_801BC910 = .text:0x801BC910; // type:function size:0x58 +fn_801BC968 = .text:0x801BC968; // type:function size:0x54 +fn_801BC9BC = .text:0x801BC9BC; // type:function size:0x5C +fn_801BCA18 = .text:0x801BCA18; // type:function size:0x6C +fn_801BCA84 = .text:0x801BCA84; // type:function size:0x28 +fn_801BCAAC = .text:0x801BCAAC; // type:function size:0x8 +fn_801BCAB4 = .text:0x801BCAB4; // type:function size:0x3C +fn_801BCAF0 = .text:0x801BCAF0; // type:function size:0x30 +fn_801BCB20 = .text:0x801BCB20; // type:function size:0x30 +fn_801BCB50 = .text:0x801BCB50; // type:function size:0x40 +fn_801BCB90 = .text:0x801BCB90; // type:function size:0xF0 +fn_801BCC80 = .text:0x801BCC80; // type:function size:0x118 +fn_801BCD98 = .text:0x801BCD98; // type:function size:0x58 +fn_801BCDF0 = .text:0x801BCDF0; // type:function size:0x40 +fn_801BCE30 = .text:0x801BCE30; // type:function size:0x8 +fn_801BCE38 = .text:0x801BCE38; // type:function size:0x4 +fn_801BCE3C = .text:0x801BCE3C; // type:function size:0x40 +fn_801BCE7C = .text:0x801BCE7C; // type:function size:0x80 +fn_801BCEFC = .text:0x801BCEFC; // type:function size:0x10C +fn_801BD008 = .text:0x801BD008; // type:function size:0xFC +fn_801BD104 = .text:0x801BD104; // type:function size:0x58 +fn_801BD15C = .text:0x801BD15C; // type:function size:0x4 +fn_801BD160 = .text:0x801BD160; // type:function size:0x40 +fn_801BD1A0 = .text:0x801BD1A0; // type:function size:0x74 +fn_801BD214 = .text:0x801BD214; // type:function size:0x200 +fn_801BD414 = .text:0x801BD414; // type:function size:0x98 +fn_801BD4AC = .text:0x801BD4AC; // type:function size:0x58 +fn_801BD504 = .text:0x801BD504; // type:function size:0x84 +fn_801BD588 = .text:0x801BD588; // type:function size:0x6C +fn_801BD5F4 = .text:0x801BD5F4; // type:function size:0x18 +fn_801BD60C = .text:0x801BD60C; // type:function size:0xB8 +fn_801BD6C4 = .text:0x801BD6C4; // type:function size:0x388 +fn_801BDA4C = .text:0x801BDA4C; // type:function size:0x6C +fn_801BDAB8 = .text:0x801BDAB8; // type:function size:0x2C +fn_801BDAE4 = .text:0x801BDAE4; // type:function size:0x3B8 +fn_801BDE9C = .text:0x801BDE9C; // type:function size:0x6C +fn_801BDF08 = .text:0x801BDF08; // type:function size:0x2C +fn_801BDF34 = .text:0x801BDF34; // type:function size:0x8 +fn_801BDF3C = .text:0x801BDF3C; // type:function size:0x158 +fn_801BE094 = .text:0x801BE094; // type:function size:0x44 +fn_801BE0D8 = .text:0x801BE0D8; // type:function size:0x104 +fn_801BE1DC = .text:0x801BE1DC; // type:function size:0x5C +fn_801BE238 = .text:0x801BE238; // type:function size:0x10 +fn_801BE248 = .text:0x801BE248; // type:function size:0x15C +fn_801BE3A4 = .text:0x801BE3A4; // type:function size:0x44 +fn_801BE3E8 = .text:0x801BE3E8; // type:function size:0x8 +fn_801BE3F0 = .text:0x801BE3F0; // type:function size:0x108 +fn_801BE4F8 = .text:0x801BE4F8; // type:function size:0x5C +fn_801BE554 = .text:0x801BE554; // type:function size:0x10 +fn_801BE564 = .text:0x801BE564; // type:function size:0x40 +fn_801BE5A4 = .text:0x801BE5A4; // type:function size:0x8C +fn_801BE630 = .text:0x801BE630; // type:function size:0x74 +fn_801BE6A4 = .text:0x801BE6A4; // type:function size:0x88 +fn_801BE72C = .text:0x801BE72C; // type:function size:0x324 +fn_801BEA50 = .text:0x801BEA50; // type:function size:0x78 +fn_801BEAC8 = .text:0x801BEAC8; // type:function size:0xDC +fn_801BEBA4 = .text:0x801BEBA4; // type:function size:0xC +fn_801BEBB0 = .text:0x801BEBB0; // type:function size:0xC4 +fn_801BEC74 = .text:0x801BEC74; // type:function size:0xC +fn_801BEC80 = .text:0x801BEC80; // type:function size:0x98 +fn_801BED18 = .text:0x801BED18; // type:function size:0xF0 +fn_801BEE08 = .text:0x801BEE08; // type:function size:0xCC +fn_801BEED4 = .text:0x801BEED4; // type:function size:0x64 +fn_801BEF38 = .text:0x801BEF38; // type:function size:0xC +fn_801BEF44 = .text:0x801BEF44; // type:function size:0x68 +fn_801BEFAC = .text:0x801BEFAC; // type:function size:0x70 +fn_801BF01C = .text:0x801BF01C; // type:function size:0xCC +fn_801BF0E8 = .text:0x801BF0E8; // type:function size:0x144 +fn_801BF22C = .text:0x801BF22C; // type:function size:0x7C +fn_801BF2A8 = .text:0x801BF2A8; // type:function size:0x70 +fn_801BF318 = .text:0x801BF318; // type:function size:0xA0 +fn_801BF3B8 = .text:0x801BF3B8; // type:function size:0x8C +fn_801BF444 = .text:0x801BF444; // type:function size:0xC +fn_801BF450 = .text:0x801BF450; // type:function size:0x60 +fn_801BF4B0 = .text:0x801BF4B0; // type:function size:0x8 +fn_801BF4B8 = .text:0x801BF4B8; // type:function size:0x74 +fn_801BF52C = .text:0x801BF52C; // type:function size:0x238 +fn_801BF764 = .text:0x801BF764; // type:function size:0x138 +fn_801BF89C = .text:0x801BF89C; // type:function size:0x1D8 +fn_801BFA74 = .text:0x801BFA74; // type:function size:0x68 +fn_801BFADC = .text:0x801BFADC; // type:function size:0x8 +fn_801BFAE4 = .text:0x801BFAE4; // type:function size:0x88 +fn_801BFB6C = .text:0x801BFB6C; // type:function size:0x8 +MakeString<6Symbol,6Symbol>__FPCc6Symbol6Symbol_PCc = .text:0x801BFB74; // type:function size:0x70 +fn_801BFBE4 = .text:0x801BFBE4; // type:function size:0x1D4 +fn_801BFDB8 = .text:0x801BFDB8; // type:function size:0x78 +fn_801BFE30 = .text:0x801BFE30; // type:function size:0x84 +fn_801BFEB4 = .text:0x801BFEB4; // type:function size:0x10C +fn_801BFFC0 = .text:0x801BFFC0; // type:function size:0x78 +fn_801C0038 = .text:0x801C0038; // type:function size:0x154 +fn_801C018C = .text:0x801C018C; // type:function size:0x1D4 +fn_801C0360 = .text:0x801C0360; // type:function size:0x70 +fn_801C03D0 = .text:0x801C03D0; // type:function size:0xA8 +fn_801C0478 = .text:0x801C0478; // type:function size:0xA4 +fn_801C051C = .text:0x801C051C; // type:function size:0x58 +fn_801C0574 = .text:0x801C0574; // type:function size:0x80 +fn_801C05F4 = .text:0x801C05F4; // type:function size:0x80 +fn_801C0674 = .text:0x801C0674; // type:function size:0x58 +fn_801C06CC = .text:0x801C06CC; // type:function size:0x54 +fn_801C0720 = .text:0x801C0720; // type:function size:0x5C +fn_801C077C = .text:0x801C077C; // type:function size:0x6C +fn_801C07E8 = .text:0x801C07E8; // type:function size:0x28 +fn_801C0810 = .text:0x801C0810; // type:function size:0x8 +fn_801C0818 = .text:0x801C0818; // type:function size:0x3C +fn_801C0854 = .text:0x801C0854; // type:function size:0x30 +fn_801C0884 = .text:0x801C0884; // type:function size:0x30 +fn_801C08B4 = .text:0x801C08B4; // type:function size:0x40 +fn_801C08F4 = .text:0x801C08F4; // type:function size:0x70 +fn_801C0964 = .text:0x801C0964; // type:function size:0x4 +fn_801C0968 = .text:0x801C0968; // type:function size:0x3C +fn_801C09A4 = .text:0x801C09A4; // type:function size:0x40 +fn_801C09E4 = .text:0x801C09E4; // type:function size:0x8C +fn_801C0A70 = .text:0x801C0A70; // type:function size:0x8 +fn_801C0A78 = .text:0x801C0A78; // type:function size:0x2C +fn_801C0AA4 = .text:0x801C0AA4; // type:function size:0x58 +fn_801C0AFC = .text:0x801C0AFC; // type:function size:0x28 +fn_801C0B24 = .text:0x801C0B24; // type:function size:0x68 +fn_801C0B8C = .text:0x801C0B8C; // type:function size:0x21C +fn_801C0DA8 = .text:0x801C0DA8; // type:function size:0x4 +fn_801C0DAC = .text:0x801C0DAC; // type:function size:0x88 +fn_801C0E34 = .text:0x801C0E34; // type:function size:0x2C +fn_801C0E60 = .text:0x801C0E60; // type:function size:0x10 +fn_801C0E70 = .text:0x801C0E70; // type:function size:0x38 +fn_801C0EA8 = .text:0x801C0EA8; // type:function size:0x8 +fn_801C0EB0 = .text:0x801C0EB0; // type:function size:0x68 +fn_801C0F18 = .text:0x801C0F18; // type:function size:0x48 +fn_801C0F60 = .text:0x801C0F60; // type:function size:0x10 +fn_801C0F70 = .text:0x801C0F70; // type:function size:0x8 +fn_801C0F78 = .text:0x801C0F78; // type:function size:0xFC +fn_801C1074 = .text:0x801C1074; // type:function size:0x8C +fn_801C1100 = .text:0x801C1100; // type:function size:0x70 +fn_801C1170 = .text:0x801C1170; // type:function size:0x60 +fn_801C11D0 = .text:0x801C11D0; // type:function size:0x114 +fn_801C12E4 = .text:0x801C12E4; // type:function size:0x60 +fn_801C1344 = .text:0x801C1344; // type:function size:0x5C +fn_801C13A0 = .text:0x801C13A0; // type:function size:0x54 +fn_801C13F4 = .text:0x801C13F4; // type:function size:0x5C +fn_801C1450 = .text:0x801C1450; // type:function size:0x5C +fn_801C14AC = .text:0x801C14AC; // type:function size:0xB0 +fn_801C155C = .text:0x801C155C; // type:function size:0x10 +fn_801C156C = .text:0x801C156C; // type:function size:0xB4 +fn_801C1620 = .text:0x801C1620; // type:function size:0x5C +fn_801C167C = .text:0x801C167C; // type:function size:0x8 +fn_801C1684 = .text:0x801C1684; // type:function size:0x50 +fn_801C16D4 = .text:0x801C16D4; // type:function size:0x8 +fn_801C16DC = .text:0x801C16DC; // type:function size:0x3C +fn_801C1718 = .text:0x801C1718; // type:function size:0xD0 +fn_801C17E8 = .text:0x801C17E8; // type:function size:0x4 +fn_801C17EC = .text:0x801C17EC; // type:function size:0x88 +fn_801C1874 = .text:0x801C1874; // type:function size:0x2C +fn_801C18A0 = .text:0x801C18A0; // type:function size:0x10 +fn_801C18B0 = .text:0x801C18B0; // type:function size:0x14 +fn_801C18C4 = .text:0x801C18C4; // type:function size:0xC +fn_801C18D0 = .text:0x801C18D0; // type:function size:0x1AC +fn_801C1A7C = .text:0x801C1A7C; // type:function size:0x8 +fn_801C1A84 = .text:0x801C1A84; // type:function size:0x28C +fn_801C1D10 = .text:0x801C1D10; // type:function size:0x138 +fn_801C1E48 = .text:0x801C1E48; // type:function size:0x58 +fn_801C1EA0 = .text:0x801C1EA0; // type:function size:0x80 +fn_801C1F20 = .text:0x801C1F20; // type:function size:0x80 +fn_801C1FA0 = .text:0x801C1FA0; // type:function size:0x58 +fn_801C1FF8 = .text:0x801C1FF8; // type:function size:0x54 +fn_801C204C = .text:0x801C204C; // type:function size:0x5C +fn_801C20A8 = .text:0x801C20A8; // type:function size:0x6C +fn_801C2114 = .text:0x801C2114; // type:function size:0x28 +fn_801C213C = .text:0x801C213C; // type:function size:0x8 +fn_801C2144 = .text:0x801C2144; // type:function size:0x3C +fn_801C2180 = .text:0x801C2180; // type:function size:0x30 +fn_801C21B0 = .text:0x801C21B0; // type:function size:0x30 +fn_801C21E0 = .text:0x801C21E0; // type:function size:0x40 +fn_801C2220 = .text:0x801C2220; // type:function size:0x8C +Handle__15BandNetGameDataFP9DataArrayb = .text:0x801C22AC; // type:function size:0x144 +fn_801C23F0 = .text:0x801C23F0; // type:function size:0x3C +fn_801C242C = .text:0x801C242C; // type:function size:0x114 +fn_801C2540 = .text:0x801C2540; // type:function size:0x60 +fn_801C25A0 = .text:0x801C25A0; // type:function size:0x5C +fn_801C25FC = .text:0x801C25FC; // type:function size:0x54 +fn_801C2650 = .text:0x801C2650; // type:function size:0x5C +fn_801C26AC = .text:0x801C26AC; // type:function size:0x5C +fn_801C2708 = .text:0x801C2708; // type:function size:0x8 +fn_801C2710 = .text:0x801C2710; // type:function size:0x8 +fn_801C2718 = .text:0x801C2718; // type:function size:0xDC +fn_801C27F4 = .text:0x801C27F4; // type:function size:0xC0 +fn_801C28B4 = .text:0x801C28B4; // type:function size:0x50 +fn_801C2904 = .text:0x801C2904; // type:function size:0xEC +fn_801C29F0 = .text:0x801C29F0; // type:function size:0x48 +fn_801C2A38 = .text:0x801C2A38; // type:function size:0x8 +fn_801C2A40 = .text:0x801C2A40; // type:function size:0x6C +Handle__16BandPreloadPanelFP9DataArrayb = .text:0x801C2AAC; // type:function size:0x1C8 +fn_801C2C74 = .text:0x801C2C74; // type:function size:0x134 +fn_801C2DA8 = .text:0x801C2DA8; // type:function size:0x4C +fn_801C2DF4 = .text:0x801C2DF4; // type:function size:0x4 +fn_801C2DF8 = .text:0x801C2DF8; // type:function size:0x14 +fn_801C2E0C = .text:0x801C2E0C; // type:function size:0x14 +fn_801C2E20 = .text:0x801C2E20; // type:function size:0x14 +fn_801C2E34 = .text:0x801C2E34; // type:function size:0x14 +fn_801C2E48 = .text:0x801C2E48; // type:function size:0x14 +fn_801C2E5C = .text:0x801C2E5C; // type:function size:0x14 +fn_801C2E70 = .text:0x801C2E70; // type:function size:0x14 +fn_801C2E84 = .text:0x801C2E84; // type:function size:0x8 +fn_801C2E8C = .text:0x801C2E8C; // type:function size:0x8 +fn_801C2E94 = .text:0x801C2E94; // type:function size:0x8 +fn_801C2E9C = .text:0x801C2E9C; // type:function size:0x8 +fn_801C2EA4 = .text:0x801C2EA4; // type:function size:0x2BC +fn_801C3160 = .text:0x801C3160; // type:function size:0x58 +fn_801C31B8 = .text:0x801C31B8; // type:function size:0x80 +fn_801C3238 = .text:0x801C3238; // type:function size:0x80 +fn_801C32B8 = .text:0x801C32B8; // type:function size:0x58 +fn_801C3310 = .text:0x801C3310; // type:function size:0x54 +fn_801C3364 = .text:0x801C3364; // type:function size:0x5C +fn_801C33C0 = .text:0x801C33C0; // type:function size:0x6C +fn_801C342C = .text:0x801C342C; // type:function size:0x28 +fn_801C3454 = .text:0x801C3454; // type:function size:0x8 +fn_801C345C = .text:0x801C345C; // type:function size:0x3C +fn_801C3498 = .text:0x801C3498; // type:function size:0x58 +fn_801C34F0 = .text:0x801C34F0; // type:function size:0x60 +fn_801C3550 = .text:0x801C3550; // type:function size:0x58 +fn_801C35A8 = .text:0x801C35A8; // type:function size:0x58 +fn_801C3600 = .text:0x801C3600; // type:function size:0x50 +fn_801C3650 = .text:0x801C3650; // type:function size:0x4 +fn_801C3654 = .text:0x801C3654; // type:function size:0x88 +fn_801C36DC = .text:0x801C36DC; // type:function size:0x2C +fn_801C3708 = .text:0x801C3708; // type:function size:0x10 +fn_801C3718 = .text:0x801C3718; // type:function size:0x60 +fn_801C3778 = .text:0x801C3778; // type:function size:0x30 +fn_801C37A8 = .text:0x801C37A8; // type:function size:0x30 +fn_801C37D8 = .text:0x801C37D8; // type:function size:0x40 +fn_801C3818 = .text:0x801C3818; // type:function size:0x44 +fn_801C385C = .text:0x801C385C; // type:function size:0x3C +fn_801C3898 = .text:0x801C3898; // type:function size:0x70 +__dt__11BandProfileFv = .text:0x801C3908; // type:function size:0x1E4 +fn_801C3AEC = .text:0x801C3AEC; // type:function size:0x54 +__ct__9TypePropsFv = .text:0x801C3B40; // type:function size:0xC +fn_801C3B4C = .text:0x801C3B4C; // type:function size:0x8 +fn_801C3B54 = .text:0x801C3B54; // type:function size:0x8C +fn_801C3BE0 = .text:0x801C3BE0; // type:function size:0x6C +fn_801C3C4C = .text:0x801C3C4C; // type:function size:0x84 +fn_801C3CD0 = .text:0x801C3CD0; // type:function size:0x90 +fn_801C3D60 = .text:0x801C3D60; // type:function size:0x4C +fn_801C3DAC = .text:0x801C3DAC; // type:function size:0xDC +fn_801C3E88 = .text:0x801C3E88; // type:function size:0x90 +fn_801C3F18 = .text:0x801C3F18; // type:function size:0x8 +fn_801C3F20 = .text:0x801C3F20; // type:function size:0x70 +fn_801C3F90 = .text:0x801C3F90; // type:function size:0x74 +fn_801C4004 = .text:0x801C4004; // type:function size:0x6C +fn_801C4070 = .text:0x801C4070; // type:function size:0x8 +fn_801C4078 = .text:0x801C4078; // type:function size:0x80 +fn_801C40F8 = .text:0x801C40F8; // type:function size:0x6C +fn_801C4164 = .text:0x801C4164; // type:function size:0x104 +fn_801C4268 = .text:0x801C4268; // type:function size:0x50 +fn_801C42B8 = .text:0x801C42B8; // type:function size:0x50 +fn_801C4308 = .text:0x801C4308; // type:function size:0x68 +fn_801C4370 = .text:0x801C4370; // type:function size:0x8 +fn_801C4378 = .text:0x801C4378; // type:function size:0x14 +fn_801C438C = .text:0x801C438C; // type:function size:0x5C +fn_801C43E8 = .text:0x801C43E8; // type:function size:0xA4 +fn_801C448C = .text:0x801C448C; // type:function size:0x14 +fn_801C44A0 = .text:0x801C44A0; // type:function size:0x20 +fn_801C44C0 = .text:0x801C44C0; // type:function size:0x58 +fn_801C4518 = .text:0x801C4518; // type:function size:0xC8 +fn_801C45E0 = .text:0x801C45E0; // type:function size:0x8 +fn_801C45E8 = .text:0x801C45E8; // type:function size:0x54 +fn_801C463C = .text:0x801C463C; // type:function size:0x44 +fn_801C4680 = .text:0x801C4680; // type:function size:0x28 +fn_801C46A8 = .text:0x801C46A8; // type:function size:0x8 +fn_801C46B0 = .text:0x801C46B0; // type:function size:0x8 +fn_801C46B8 = .text:0x801C46B8; // type:function size:0x8 +fn_801C46C0 = .text:0x801C46C0; // type:function size:0xEC +fn_801C47AC = .text:0x801C47AC; // type:function size:0x34 +fn_801C47E0 = .text:0x801C47E0; // type:function size:0xC +fn_801C47EC = .text:0x801C47EC; // type:function size:0x8 +fn_801C47F4 = .text:0x801C47F4; // type:function size:0x7C +fn_801C4870 = .text:0x801C4870; // type:function size:0x24 +fn_801C4894 = .text:0x801C4894; // type:function size:0x74 +fn_801C4908 = .text:0x801C4908; // type:function size:0x8 +fn_801C4910 = .text:0x801C4910; // type:function size:0xC +fn_801C491C = .text:0x801C491C; // type:function size:0x8 +fn_801C4924 = .text:0x801C4924; // type:function size:0x8 +fn_801C492C = .text:0x801C492C; // type:function size:0x8 +fn_801C4934 = .text:0x801C4934; // type:function size:0x1E8 +fn_801C4B1C = .text:0x801C4B1C; // type:function size:0xF4 +fn_801C4C10 = .text:0x801C4C10; // type:function size:0x2C +fn_801C4C3C = .text:0x801C4C3C; // type:function size:0x40 +fn_801C4C7C = .text:0x801C4C7C; // type:function size:0x30 +fn_801C4CAC = .text:0x801C4CAC; // type:function size:0xA8 +fn_801C4D54 = .text:0x801C4D54; // type:function size:0xA8 +fn_801C4DFC = .text:0x801C4DFC; // type:function size:0xA8 +fn_801C4EA4 = .text:0x801C4EA4; // type:function size:0x118 +fn_801C4FBC = .text:0x801C4FBC; // type:function size:0x10 +fn_801C4FCC = .text:0x801C4FCC; // type:function size:0x2BC +fn_801C5288 = .text:0x801C5288; // type:function size:0xC4 +fn_801C534C = .text:0x801C534C; // type:function size:0x60 +fn_801C53AC = .text:0x801C53AC; // type:function size:0x84 +fn_801C5430 = .text:0x801C5430; // type:function size:0x3C +fn_801C546C = .text:0x801C546C; // type:function size:0x3C +fn_801C54A8 = .text:0x801C54A8; // type:function size:0xD4 +fn_801C557C = .text:0x801C557C; // type:function size:0xF8 +fn_801C5674 = .text:0x801C5674; // type:function size:0x58 +fn_801C56CC = .text:0x801C56CC; // type:function size:0x8 +fn_801C56D4 = .text:0x801C56D4; // type:function size:0x4 +fn_801C56D8 = .text:0x801C56D8; // type:function size:0x40 +fn_801C5718 = .text:0x801C5718; // type:function size:0x74 +fn_801C578C = .text:0x801C578C; // type:function size:0x4 +fn_801C5790 = .text:0x801C5790; // type:function size:0xDC +fn_801C586C = .text:0x801C586C; // type:function size:0x5C +fn_801C58C8 = .text:0x801C58C8; // type:function size:0x5C +fn_801C5924 = .text:0x801C5924; // type:function size:0x98 +fn_801C59BC = .text:0x801C59BC; // type:function size:0x74 +fn_801C5A30 = .text:0x801C5A30; // type:function size:0x78 +fn_801C5AA8 = .text:0x801C5AA8; // type:function size:0xDC +fn_801C5B84 = .text:0x801C5B84; // type:function size:0x5C +fn_801C5BE0 = .text:0x801C5BE0; // type:function size:0x5C +fn_801C5C3C = .text:0x801C5C3C; // type:function size:0x24 +fn_801C5C60 = .text:0x801C5C60; // type:function size:0xE8 +fn_801C5D48 = .text:0x801C5D48; // type:function size:0x8 +fn_801C5D50 = .text:0x801C5D50; // type:function size:0xF4 +fn_801C5E44 = .text:0x801C5E44; // type:function size:0x70 +fn_801C5EB4 = .text:0x801C5EB4; // type:function size:0x4C +fn_801C5F00 = .text:0x801C5F00; // type:function size:0xD8 +fn_801C5FD8 = .text:0x801C5FD8; // type:function size:0x8 +fn_801C5FE0 = .text:0x801C5FE0; // type:function size:0x210 +fn_801C61F0 = .text:0x801C61F0; // type:function size:0x4 +fn_801C61F4 = .text:0x801C61F4; // type:function size:0x4C +fn_801C6240 = .text:0x801C6240; // type:function size:0x40 +fn_801C6280 = .text:0x801C6280; // type:function size:0x40 +fn_801C62C0 = .text:0x801C62C0; // type:function size:0x40 +fn_801C6300 = .text:0x801C6300; // type:function size:0x38 +fn_801C6338 = .text:0x801C6338; // type:function size:0x38 +fn_801C6370 = .text:0x801C6370; // type:function size:0x38 +fn_801C63A8 = .text:0x801C63A8; // type:function size:0x8 +fn_801C63B0 = .text:0x801C63B0; // type:function size:0x8 +fn_801C63B8 = .text:0x801C63B8; // type:function size:0x8 +fn_801C63C0 = .text:0x801C63C0; // type:function size:0x3C +fn_801C63FC = .text:0x801C63FC; // type:function size:0x88 +fn_801C6484 = .text:0x801C6484; // type:function size:0x30 +fn_801C64B4 = .text:0x801C64B4; // type:function size:0xA0 +fn_801C6554 = .text:0x801C6554; // type:function size:0xC4 +fn_801C6618 = .text:0x801C6618; // type:function size:0x4 +fn_801C661C = .text:0x801C661C; // type:function size:0x40 +fn_801C665C = .text:0x801C665C; // type:function size:0xE0 +fn_801C673C = .text:0x801C673C; // type:function size:0x8 +fn_801C6744 = .text:0x801C6744; // type:function size:0x8 +fn_801C674C = .text:0x801C674C; // type:function size:0x8 +fn_801C6754 = .text:0x801C6754; // type:function size:0x10 +fn_801C6764 = .text:0x801C6764; // type:function size:0x8 +fn_801C676C = .text:0x801C676C; // type:function size:0xB8 +fn_801C6824 = .text:0x801C6824; // type:function size:0x30 +fn_801C6854 = .text:0x801C6854; // type:function size:0x2C +fn_801C6880 = .text:0x801C6880; // type:function size:0x80 +fn_801C6900 = .text:0x801C6900; // type:function size:0x7C +fn_801C697C = .text:0x801C697C; // type:function size:0x60 +fn_801C69DC = .text:0x801C69DC; // type:function size:0x7C +fn_801C6A58 = .text:0x801C6A58; // type:function size:0x60 +fn_801C6AB8 = .text:0x801C6AB8; // type:function size:0x68 +fn_801C6B20 = .text:0x801C6B20; // type:function size:0x5C +fn_801C6B7C = .text:0x801C6B7C; // type:function size:0x8 +fn_801C6B84 = .text:0x801C6B84; // type:function size:0x104 +fn_801C6C88 = .text:0x801C6C88; // type:function size:0x2B0 +fn_801C6F38 = .text:0x801C6F38; // type:function size:0x8 +fn_801C6F40 = .text:0x801C6F40; // type:function size:0x4C +fn_801C6F8C = .text:0x801C6F8C; // type:function size:0x70 +fn_801C6FFC = .text:0x801C6FFC; // type:function size:0x30 +fn_801C702C = .text:0x801C702C; // type:function size:0x2C +__ct__8DataNodeFv = .text:0x801C7058; // type:function size:0x14 +fn_801C706C = .text:0x801C706C; // type:function size:0x30 +fn_801C709C = .text:0x801C709C; // type:function size:0x80 +fn_801C711C = .text:0x801C711C; // type:function size:0x6C +fn_801C7188 = .text:0x801C7188; // type:function size:0x6C +fn_801C71F4 = .text:0x801C71F4; // type:function size:0x58 +fn_801C724C = .text:0x801C724C; // type:function size:0x40 +fn_801C728C = .text:0x801C728C; // type:function size:0x108 +fn_801C7394 = .text:0x801C7394; // type:function size:0x50 +fn_801C73E4 = .text:0x801C73E4; // type:function size:0x8 +Handle__11BandProfileFP9DataArrayb = .text:0x801C73EC; // type:function size:0x6F0 +fn_801C7ADC = .text:0x801C7ADC; // type:function size:0x8 +fn_801C7AE4 = .text:0x801C7AE4; // type:function size:0x34 +fn_801C7B18 = .text:0x801C7B18; // type:function size:0x3C +fn_801C7B54 = .text:0x801C7B54; // type:function size:0x114 +fn_801C7C68 = .text:0x801C7C68; // type:function size:0x5C +fn_801C7CC4 = .text:0x801C7CC4; // type:function size:0x5C +fn_801C7D20 = .text:0x801C7D20; // type:function size:0x54 +fn_801C7D74 = .text:0x801C7D74; // type:function size:0x5C +fn_801C7DD0 = .text:0x801C7DD0; // type:function size:0x5C +fn_801C7E2C = .text:0x801C7E2C; // type:function size:0x388 +fn_801C81B4 = .text:0x801C81B4; // type:function size:0x6C +fn_801C8220 = .text:0x801C8220; // type:function size:0x2C +fn_801C824C = .text:0x801C824C; // type:function size:0x158 +fn_801C83A4 = .text:0x801C83A4; // type:function size:0x44 +fn_801C83E8 = .text:0x801C83E8; // type:function size:0x8 +fn_801C83F0 = .text:0x801C83F0; // type:function size:0x104 +fn_801C84F4 = .text:0x801C84F4; // type:function size:0x5C +fn_801C8550 = .text:0x801C8550; // type:function size:0x10 +fn_801C8560 = .text:0x801C8560; // type:function size:0x14 +fn_801C8574 = .text:0x801C8574; // type:function size:0x14 +fn_801C8588 = .text:0x801C8588; // type:function size:0x88 +fn_801C8610 = .text:0x801C8610; // type:function size:0x50 +fn_801C8660 = .text:0x801C8660; // type:function size:0x40 +fn_801C86A0 = .text:0x801C86A0; // type:function size:0x50 +fn_801C86F0 = .text:0x801C86F0; // type:function size:0x68 +fn_801C8758 = .text:0x801C8758; // type:function size:0x4 +fn_801C875C = .text:0x801C875C; // type:function size:0x4 +fn_801C8760 = .text:0x801C8760; // type:function size:0x80 +fn_801C87E0 = .text:0x801C87E0; // type:function size:0x7C +fn_801C885C = .text:0x801C885C; // type:function size:0x28 +fn_801C8884 = .text:0x801C8884; // type:function size:0x3C +fn_801C88C0 = .text:0x801C88C0; // type:function size:0x3C +fn_801C88FC = .text:0x801C88FC; // type:function size:0xC4 +fn_801C89C0 = .text:0x801C89C0; // type:function size:0x68 +fn_801C8A28 = .text:0x801C8A28; // type:function size:0x68 +fn_801C8A90 = .text:0x801C8A90; // type:function size:0x58 +fn_801C8AE8 = .text:0x801C8AE8; // type:function size:0x80 +fn_801C8B68 = .text:0x801C8B68; // type:function size:0x80 +fn_801C8BE8 = .text:0x801C8BE8; // type:function size:0x58 +fn_801C8C40 = .text:0x801C8C40; // type:function size:0x54 +fn_801C8C94 = .text:0x801C8C94; // type:function size:0x5C +fn_801C8CF0 = .text:0x801C8CF0; // type:function size:0x6C +fn_801C8D5C = .text:0x801C8D5C; // type:function size:0x28 +fn_801C8D84 = .text:0x801C8D84; // type:function size:0x8 +fn_801C8D8C = .text:0x801C8D8C; // type:function size:0x3C +fn_801C8DC8 = .text:0x801C8DC8; // type:function size:0x4 +fn_801C8DCC = .text:0x801C8DCC; // type:function size:0x4C +fn_801C8E18 = .text:0x801C8E18; // type:function size:0x128 +fn_801C8F40 = .text:0x801C8F40; // type:function size:0x150 +fn_801C9090 = .text:0x801C9090; // type:function size:0xC4 +fn_801C9154 = .text:0x801C9154; // type:function size:0x38 +fn_801C918C = .text:0x801C918C; // type:function size:0x1460 +fn_801CA5EC = .text:0x801CA5EC; // type:function size:0x34 +fn_801CA620 = .text:0x801CA620; // type:function size:0x8 +fn_801CA628 = .text:0x801CA628; // type:function size:0x8 +fn_801CA630 = .text:0x801CA630; // type:function size:0x8 +fn_801CA638 = .text:0x801CA638; // type:function size:0x8 +fn_801CA640 = .text:0x801CA640; // type:function size:0x8 +fn_801CA648 = .text:0x801CA648; // type:function size:0x8 +fn_801CA650 = .text:0x801CA650; // type:function size:0x8 +fn_801CA658 = .text:0x801CA658; // type:function size:0x8 +fn_801CA660 = .text:0x801CA660; // type:function size:0x8 +fn_801CA668 = .text:0x801CA668; // type:function size:0x8 +fn_801CA670 = .text:0x801CA670; // type:function size:0x8 +fn_801CA678 = .text:0x801CA678; // type:function size:0x8 +fn_801CA680 = .text:0x801CA680; // type:function size:0x8 +fn_801CA688 = .text:0x801CA688; // type:function size:0x8 +fn_801CA690 = .text:0x801CA690; // type:function size:0x1C +fn_801CA6AC = .text:0x801CA6AC; // type:function size:0x8 +fn_801CA6B4 = .text:0x801CA6B4; // type:function size:0x8 +fn_801CA6BC = .text:0x801CA6BC; // type:function size:0x8 +fn_801CA6C4 = .text:0x801CA6C4; // type:function size:0x8 +fn_801CA6CC = .text:0x801CA6CC; // type:function size:0x8 +fn_801CA6D4 = .text:0x801CA6D4; // type:function size:0x8 +fn_801CA6DC = .text:0x801CA6DC; // type:function size:0x8 +fn_801CA6E4 = .text:0x801CA6E4; // type:function size:0x8 +fn_801CA6EC = .text:0x801CA6EC; // type:function size:0x64 +fn_801CA750 = .text:0x801CA750; // type:function size:0x64 +fn_801CA7B4 = .text:0x801CA7B4; // type:function size:0x58 +fn_801CA80C = .text:0x801CA80C; // type:function size:0x17C +fn_801CA988 = .text:0x801CA988; // type:function size:0xE8 +fn_801CAA70 = .text:0x801CAA70; // type:function size:0x6C +fn_801CAADC = .text:0x801CAADC; // type:function size:0x58 +fn_801CAB34 = .text:0x801CAB34; // type:function size:0x2C +fn_801CAB60 = .text:0x801CAB60; // type:function size:0x1C +fn_801CAB7C = .text:0x801CAB7C; // type:function size:0xD8 +fn_801CAC54 = .text:0x801CAC54; // type:function size:0x44 +fn_801CAC98 = .text:0x801CAC98; // type:function size:0xCC +fn_801CAD64 = .text:0x801CAD64; // type:function size:0x44 +fn_801CADA8 = .text:0x801CADA8; // type:function size:0xA0 +fn_801CAE48 = .text:0x801CAE48; // type:function size:0x80 +fn_801CAEC8 = .text:0x801CAEC8; // type:function size:0x80 +fn_801CAF48 = .text:0x801CAF48; // type:function size:0x80 +fn_801CAFC8 = .text:0x801CAFC8; // type:function size:0x44 +fn_801CB00C = .text:0x801CB00C; // type:function size:0x110 +fn_801CB11C = .text:0x801CB11C; // type:function size:0x24 +fn_801CB140 = .text:0x801CB140; // type:function size:0x154 +fn_801CB294 = .text:0x801CB294; // type:function size:0x50 +fn_801CB2E4 = .text:0x801CB2E4; // type:function size:0x80 +fn_801CB364 = .text:0x801CB364; // type:function size:0x68 +fn_801CB3CC = .text:0x801CB3CC; // type:function size:0x34 +fn_801CB400 = .text:0x801CB400; // type:function size:0x214 +fn_801CB614 = .text:0x801CB614; // type:function size:0xBC +fn_801CB6D0 = .text:0x801CB6D0; // type:function size:0x74 +__ls__9BinStreamFs = .text:0x801CB744; // type:function size:0x3C +fn_801CB780 = .text:0x801CB780; // type:function size:0x368 +fn_801CBAE8 = .text:0x801CBAE8; // type:function size:0x88 +fn_801CBB70 = .text:0x801CBB70; // type:function size:0x8C +fn_801CBBFC = .text:0x801CBBFC; // type:function size:0x88 +fn_801CBC84 = .text:0x801CBC84; // type:function size:0x110 +fn_801CBD94 = .text:0x801CBD94; // type:function size:0x58 +fn_801CBDEC = .text:0x801CBDEC; // type:function size:0x48 +fn_801CBE34 = .text:0x801CBE34; // type:function size:0x8 +fn_801CBE3C = .text:0x801CBE3C; // type:function size:0x4 +fn_801CBE40 = .text:0x801CBE40; // type:function size:0x40 +fn_801CBE80 = .text:0x801CBE80; // type:function size:0x74 +fn_801CBEF4 = .text:0x801CBEF4; // type:function size:0x58 +fn_801CBF4C = .text:0x801CBF4C; // type:function size:0x60 +fn_801CBFAC = .text:0x801CBFAC; // type:function size:0x58 +fn_801CC004 = .text:0x801CC004; // type:function size:0x58 +fn_801CC05C = .text:0x801CC05C; // type:function size:0x50 +fn_801CC0AC = .text:0x801CC0AC; // type:function size:0x4 +fn_801CC0B0 = .text:0x801CC0B0; // type:function size:0x90 +fn_801CC140 = .text:0x801CC140; // type:function size:0x4 +fn_801CC144 = .text:0x801CC144; // type:function size:0x40 +fn_801CC184 = .text:0x801CC184; // type:function size:0xEC +fn_801CC270 = .text:0x801CC270; // type:function size:0x2C +fn_801CC29C = .text:0x801CC29C; // type:function size:0x8 +fn_801CC2A4 = .text:0x801CC2A4; // type:function size:0x8 +fn_801CC2AC = .text:0x801CC2AC; // type:function size:0x2C +fn_801CC2D8 = .text:0x801CC2D8; // type:function size:0x58 +fn_801CC330 = .text:0x801CC330; // type:function size:0x8 +fn_801CC338 = .text:0x801CC338; // type:function size:0x54 +fn_801CC38C = .text:0x801CC38C; // type:function size:0x48 +fn_801CC3D4 = .text:0x801CC3D4; // type:function size:0x4C +fn_801CC420 = .text:0x801CC420; // type:function size:0x70 +fn_801CC490 = .text:0x801CC490; // type:function size:0x6C +fn_801CC4FC = .text:0x801CC4FC; // type:function size:0x2C +fn_801CC528 = .text:0x801CC528; // type:function size:0x44 +fn_801CC56C = .text:0x801CC56C; // type:function size:0x3C +fn_801CC5A8 = .text:0x801CC5A8; // type:function size:0x70 +fn_801CC618 = .text:0x801CC618; // type:function size:0x80 +fn_801CC698 = .text:0x801CC698; // type:function size:0x58 +fn_801CC6F0 = .text:0x801CC6F0; // type:function size:0x80 +fn_801CC770 = .text:0x801CC770; // type:function size:0x80 +fn_801CC7F0 = .text:0x801CC7F0; // type:function size:0x58 +fn_801CC848 = .text:0x801CC848; // type:function size:0x54 +fn_801CC89C = .text:0x801CC89C; // type:function size:0x5C +fn_801CC8F8 = .text:0x801CC8F8; // type:function size:0x6C +fn_801CC964 = .text:0x801CC964; // type:function size:0x28 +fn_801CC98C = .text:0x801CC98C; // type:function size:0x8 +fn_801CC994 = .text:0x801CC994; // type:function size:0x3C +fn_801CC9D0 = .text:0x801CC9D0; // type:function size:0x30 +fn_801CCA00 = .text:0x801CCA00; // type:function size:0x30 +fn_801CCA30 = .text:0x801CCA30; // type:function size:0x40 +__rs__9BinStreamFRs = .text:0x801CCA70; // type:function size:0x34 +fn_801CCAA4 = .text:0x801CCAA4; // type:function size:0x314 +fn_801CCDB8 = .text:0x801CCDB8; // type:function size:0x68 +fn_801CCE20 = .text:0x801CCE20; // type:function size:0x2C +fn_801CCE4C = .text:0x801CCE4C; // type:function size:0xB4 +fn_801CCF00 = .text:0x801CCF00; // type:function size:0x30 +fn_801CCF30 = .text:0x801CCF30; // type:function size:0xAC +fn_801CCFDC = .text:0x801CCFDC; // type:function size:0x388 +fn_801CD364 = .text:0x801CD364; // type:function size:0x6C +fn_801CD3D0 = .text:0x801CD3D0; // type:function size:0x2C +fn_801CD3FC = .text:0x801CD3FC; // type:function size:0x8 +fn_801CD404 = .text:0x801CD404; // type:function size:0x98 +fn_801CD49C = .text:0x801CD49C; // type:function size:0xEC +fn_801CD588 = .text:0x801CD588; // type:function size:0x5C +fn_801CD5E4 = .text:0x801CD5E4; // type:function size:0x10 +fn_801CD5F4 = .text:0x801CD5F4; // type:function size:0x124 +fn_801CD718 = .text:0x801CD718; // type:function size:0x5C +fn_801CD774 = .text:0x801CD774; // type:function size:0x5C +fn_801CD7D0 = .text:0x801CD7D0; // type:function size:0x54 +fn_801CD824 = .text:0x801CD824; // type:function size:0x5C +fn_801CD880 = .text:0x801CD880; // type:function size:0x158 +fn_801CD9D8 = .text:0x801CD9D8; // type:function size:0x44 +fn_801CDA1C = .text:0x801CDA1C; // type:function size:0x8 +fn_801CDA24 = .text:0x801CDA24; // type:function size:0xB4 +fn_801CDAD8 = .text:0x801CDAD8; // type:function size:0x38 +fn_801CDB10 = .text:0x801CDB10; // type:function size:0x5C +fn_801CDB6C = .text:0x801CDB6C; // type:function size:0x10 +fn_801CDB7C = .text:0x801CDB7C; // type:function size:0x48 +fn_801CDBC4 = .text:0x801CDBC4; // type:function size:0x104 +fn_801CDCC8 = .text:0x801CDCC8; // type:function size:0x138 +fn_801CDE00 = .text:0x801CDE00; // type:function size:0x58 +fn_801CDE58 = .text:0x801CDE58; // type:function size:0x58 +fn_801CDEB0 = .text:0x801CDEB0; // type:function size:0x60 +fn_801CDF10 = .text:0x801CDF10; // type:function size:0x58 +fn_801CDF68 = .text:0x801CDF68; // type:function size:0x58 +fn_801CDFC0 = .text:0x801CDFC0; // type:function size:0x60 +fn_801CE020 = .text:0x801CE020; // type:function size:0x58 +fn_801CE078 = .text:0x801CE078; // type:function size:0x58 +fn_801CE0D0 = .text:0x801CE0D0; // type:function size:0x50 +fn_801CE120 = .text:0x801CE120; // type:function size:0x58 +fn_801CE178 = .text:0x801CE178; // type:function size:0x4 +fn_801CE17C = .text:0x801CE17C; // type:function size:0x50 +fn_801CE1CC = .text:0x801CE1CC; // type:function size:0x58 +fn_801CE224 = .text:0x801CE224; // type:function size:0x30 +fn_801CE254 = .text:0x801CE254; // type:function size:0x30 +fn_801CE284 = .text:0x801CE284; // type:function size:0x60 +fn_801CE2E4 = .text:0x801CE2E4; // type:function size:0x44 +fn_801CE328 = .text:0x801CE328; // type:function size:0x3C +fn_801CE364 = .text:0x801CE364; // type:function size:0x70 +fn_801CE3D4 = .text:0x801CE3D4; // type:function size:0xB8 +fn_801CE48C = .text:0x801CE48C; // type:function size:0x58 +fn_801CE4E4 = .text:0x801CE4E4; // type:function size:0x60 +fn_801CE544 = .text:0x801CE544; // type:function size:0x58 +fn_801CE59C = .text:0x801CE59C; // type:function size:0x58 +fn_801CE5F4 = .text:0x801CE5F4; // type:function size:0x50 +fn_801CE644 = .text:0x801CE644; // type:function size:0x58 +fn_801CE69C = .text:0x801CE69C; // type:function size:0x60 +fn_801CE6FC = .text:0x801CE6FC; // type:function size:0x58 +fn_801CE754 = .text:0x801CE754; // type:function size:0x58 +fn_801CE7AC = .text:0x801CE7AC; // type:function size:0x50 +fn_801CE7FC = .text:0x801CE7FC; // type:function size:0x58 +fn_801CE854 = .text:0x801CE854; // type:function size:0x60 +fn_801CE8B4 = .text:0x801CE8B4; // type:function size:0x58 +fn_801CE90C = .text:0x801CE90C; // type:function size:0x58 +fn_801CE964 = .text:0x801CE964; // type:function size:0x50 +fn_801CE9B4 = .text:0x801CE9B4; // type:function size:0x44 +fn_801CE9F8 = .text:0x801CE9F8; // type:function size:0x3C +fn_801CEA34 = .text:0x801CEA34; // type:function size:0x70 +fn_801CEAA4 = .text:0x801CEAA4; // type:function size:0x44 +fn_801CEAE8 = .text:0x801CEAE8; // type:function size:0x3C +fn_801CEB24 = .text:0x801CEB24; // type:function size:0x70 +fn_801CEB94 = .text:0x801CEB94; // type:function size:0x44 +fn_801CEBD8 = .text:0x801CEBD8; // type:function size:0x3C +fn_801CEC14 = .text:0x801CEC14; // type:function size:0x70 +fn_801CEC84 = .text:0x801CEC84; // type:function size:0x178 +push_back__Q211stlpmtx_std54vector<6String,Q211stlpmtx_std21StlNodeAlloc<6String>>FRC6String = .text:0x801CEDFC; // type:function size:0x4 +fn_801CEE00 = .text:0x801CEE00; // type:function size:0x88 +_M_insert_overflow__Q211stlpmtx_std54vector<6String,Q211stlpmtx_std21StlNodeAlloc<6String>>FP6StringRC6StringRCQ211stlpmtx_std12__false_typeUlb = .text:0x801CEE88; // type:function size:0x2C +fn_801CEEB4 = .text:0x801CEEB4; // type:function size:0x4 +fn_801CEEB8 = .text:0x801CEEB8; // type:function size:0xEC +fn_801CEFA4 = .text:0x801CEFA4; // type:function size:0xDC +fn_801CF080 = .text:0x801CF080; // type:function size:0x8C +fn_801CF10C = .text:0x801CF10C; // type:function size:0x58 +fn_801CF164 = .text:0x801CF164; // type:function size:0x60 +fn_801CF1C4 = .text:0x801CF1C4; // type:function size:0x58 +fn_801CF21C = .text:0x801CF21C; // type:function size:0x58 +fn_801CF274 = .text:0x801CF274; // type:function size:0x50 +fn_801CF2C4 = .text:0x801CF2C4; // type:function size:0x68 +fn_801CF32C = .text:0x801CF32C; // type:function size:0x470 +fn_801CF79C = .text:0x801CF79C; // type:function size:0x98 +fn_801CF834 = .text:0x801CF834; // type:function size:0x104 +fn_801CF938 = .text:0x801CF938; // type:function size:0x38 +fn_801CF970 = .text:0x801CF970; // type:function size:0xCC +fn_801CFA3C = .text:0x801CFA3C; // type:function size:0x3C +fn_801CFA78 = .text:0x801CFA78; // type:function size:0x94 +fn_801CFB0C = .text:0x801CFB0C; // type:function size:0xDC +fn_801CFBE8 = .text:0x801CFBE8; // type:function size:0x98 +fn_801CFC80 = .text:0x801CFC80; // type:function size:0x74 +fn_801CFCF4 = .text:0x801CFCF4; // type:function size:0x38 +fn_801CFD2C = .text:0x801CFD2C; // type:function size:0x48 +fn_801CFD74 = .text:0x801CFD74; // type:function size:0x4C +fn_801CFDC0 = .text:0x801CFDC0; // type:function size:0xBC +fn_801CFE7C = .text:0x801CFE7C; // type:function size:0xA4 +fn_801CFF20 = .text:0x801CFF20; // type:function size:0x6C +fn_801CFF8C = .text:0x801CFF8C; // type:function size:0xC +fn_801CFF98 = .text:0x801CFF98; // type:function size:0xE0 +fn_801D0078 = .text:0x801D0078; // type:function size:0xAC +fn_801D0124 = .text:0x801D0124; // type:function size:0x78 +fn_801D019C = .text:0x801D019C; // type:function size:0x8C +fn_801D0228 = .text:0x801D0228; // type:function size:0x6C +fn_801D0294 = .text:0x801D0294; // type:function size:0x58 +fn_801D02EC = .text:0x801D02EC; // type:function size:0x58 +fn_801D0344 = .text:0x801D0344; // type:function size:0x38 +fn_801D037C = .text:0x801D037C; // type:function size:0x68 +fn_801D03E4 = .text:0x801D03E4; // type:function size:0x14 +fn_801D03F8 = .text:0x801D03F8; // type:function size:0x5C +fn_801D0454 = .text:0x801D0454; // type:function size:0x4 +fn_801D0458 = .text:0x801D0458; // type:function size:0x54 +fn_801D04AC = .text:0x801D04AC; // type:function size:0x64 +fn_801D0510 = .text:0x801D0510; // type:function size:0x50 +fn_801D0560 = .text:0x801D0560; // type:function size:0x10 +fn_801D0570 = .text:0x801D0570; // type:function size:0x48 +fn_801D05B8 = .text:0x801D05B8; // type:function size:0x30 +fn_801D05E8 = .text:0x801D05E8; // type:function size:0x98 +fn_801D0680 = .text:0x801D0680; // type:function size:0x5C +fn_801D06DC = .text:0x801D06DC; // type:function size:0x10 +fn_801D06EC = .text:0x801D06EC; // type:function size:0x70 +fn_801D075C = .text:0x801D075C; // type:function size:0x4 +fn_801D0760 = .text:0x801D0760; // type:function size:0x4 +fn_801D0764 = .text:0x801D0764; // type:function size:0x88 +fn_801D07EC = .text:0x801D07EC; // type:function size:0x2C +fn_801D0818 = .text:0x801D0818; // type:function size:0x3C +fn_801D0854 = .text:0x801D0854; // type:function size:0x48 +fn_801D089C = .text:0x801D089C; // type:function size:0x30 +fn_801D08CC = .text:0x801D08CC; // type:function size:0x30 +fn_801D08FC = .text:0x801D08FC; // type:function size:0x40 +fn_801D093C = .text:0x801D093C; // type:function size:0x4 +fn_801D0940 = .text:0x801D0940; // type:function size:0x4 +fn_801D0944 = .text:0x801D0944; // type:function size:0x10 +fn_801D0954 = .text:0x801D0954; // type:function size:0x10 +fn_801D0964 = .text:0x801D0964; // type:function size:0xD8 +fn_801D0A3C = .text:0x801D0A3C; // type:function size:0x2C +fn_801D0A68 = .text:0x801D0A68; // type:function size:0x30 +fn_801D0A98 = .text:0x801D0A98; // type:function size:0xAC +fn_801D0B44 = .text:0x801D0B44; // type:function size:0x100 +fn_801D0C44 = .text:0x801D0C44; // type:function size:0x30 +fn_801D0C74 = .text:0x801D0C74; // type:function size:0xC4 +fn_801D0D38 = .text:0x801D0D38; // type:function size:0x4 +fn_801D0D3C = .text:0x801D0D3C; // type:function size:0x124 +fn_801D0E60 = .text:0x801D0E60; // type:function size:0x44 +fn_801D0EA4 = .text:0x801D0EA4; // type:function size:0x60 +fn_801D0F04 = .text:0x801D0F04; // type:function size:0x64 +fn_801D0F68 = .text:0x801D0F68; // type:function size:0x44 +SongFilePath__7SongMgrCF6SymbolPCc = .text:0x801D0FAC; // type:function size:0x1CC +fn_801D1178 = .text:0x801D1178; // type:function size:0x48 +GetAlbumArtPath__7SongMgrCF6Symbol = .text:0x801D11C0; // type:function size:0x80 +fn_801D1240 = .text:0x801D1240; // type:function size:0x3C +fn_801D127C = .text:0x801D127C; // type:function size:0xEC +fn_801D1368 = .text:0x801D1368; // type:function size:0x3C +fn_801D13A4 = .text:0x801D13A4; // type:function size:0x94 +fn_801D1438 = .text:0x801D1438; // type:function size:0x2C +fn_801D1464 = .text:0x801D1464; // type:function size:0x30 +fn_801D1494 = .text:0x801D1494; // type:function size:0x94 +fn_801D1528 = .text:0x801D1528; // type:function size:0x68 +fn_801D1590 = .text:0x801D1590; // type:function size:0x168 +fn_801D16F8 = .text:0x801D16F8; // type:function size:0x2C +fn_801D1724 = .text:0x801D1724; // type:function size:0x30 +fn_801D1754 = .text:0x801D1754; // type:function size:0x30 +fn_801D1784 = .text:0x801D1784; // type:function size:0xB4 +fn_801D1838 = .text:0x801D1838; // type:function size:0x2C +fn_801D1864 = .text:0x801D1864; // type:function size:0x30 +fn_801D1894 = .text:0x801D1894; // type:function size:0x508 +fn_801D1D9C = .text:0x801D1D9C; // type:function size:0x34 +fn_801D1DD0 = .text:0x801D1DD0; // type:function size:0x58 +fn_801D1E28 = .text:0x801D1E28; // type:function size:0xE0 +fn_801D1F08 = .text:0x801D1F08; // type:function size:0x104 +fn_801D200C = .text:0x801D200C; // type:function size:0x84 +fn_801D2090 = .text:0x801D2090; // type:function size:0x254 +fn_801D22E4 = .text:0x801D22E4; // type:function size:0x4 +fn_801D22E8 = .text:0x801D22E8; // type:function size:0x104 +fn_801D23EC = .text:0x801D23EC; // type:function size:0x58 +fn_801D2444 = .text:0x801D2444; // type:function size:0x4 +fn_801D2448 = .text:0x801D2448; // type:function size:0x40 +fn_801D2488 = .text:0x801D2488; // type:function size:0x80 +fn_801D2508 = .text:0x801D2508; // type:function size:0x8 +fn_801D2510 = .text:0x801D2510; // type:function size:0x4 +fn_801D2514 = .text:0x801D2514; // type:function size:0x40 +fn_801D2554 = .text:0x801D2554; // type:function size:0xAC +fn_801D2600 = .text:0x801D2600; // type:function size:0x8 +fn_801D2608 = .text:0x801D2608; // type:function size:0x8 +fn_801D2610 = .text:0x801D2610; // type:function size:0x38 +fn_801D2648 = .text:0x801D2648; // type:function size:0x8 +fn_801D2650 = .text:0x801D2650; // type:function size:0x30 +fn_801D2680 = .text:0x801D2680; // type:function size:0x60 +fn_801D26E0 = .text:0x801D26E0; // type:function size:0x104 +fn_801D27E4 = .text:0x801D27E4; // type:function size:0x58 +fn_801D283C = .text:0x801D283C; // type:function size:0x40 +fn_801D287C = .text:0x801D287C; // type:function size:0x8 +fn_801D2884 = .text:0x801D2884; // type:function size:0x4 +fn_801D2888 = .text:0x801D2888; // type:function size:0x40 +fn_801D28C8 = .text:0x801D28C8; // type:function size:0x80 +fn_801D2948 = .text:0x801D2948; // type:function size:0x68 +fn_801D29B0 = .text:0x801D29B0; // type:function size:0x34 +fn_801D29E4 = .text:0x801D29E4; // type:function size:0x16C +fn_801D2B50 = .text:0x801D2B50; // type:function size:0xB4 +fn_801D2C04 = .text:0x801D2C04; // type:function size:0x34 +fn_801D2C38 = .text:0x801D2C38; // type:function size:0x4 +fn_801D2C3C = .text:0x801D2C3C; // type:function size:0x50 +fn_801D2C8C = .text:0x801D2C8C; // type:function size:0xF4 +fn_801D2D80 = .text:0x801D2D80; // type:function size:0xAC +fn_801D2E2C = .text:0x801D2E2C; // type:function size:0x4C +fn_801D2E78 = .text:0x801D2E78; // type:function size:0x3FC +fn_801D3274 = .text:0x801D3274; // type:function size:0x120 +fn_801D3394 = .text:0x801D3394; // type:function size:0x5C +fn_801D33F0 = .text:0x801D33F0; // type:function size:0x58 +fn_801D3448 = .text:0x801D3448; // type:function size:0x48 +fn_801D3490 = .text:0x801D3490; // type:function size:0x4 +fn_801D3494 = .text:0x801D3494; // type:function size:0x40 +fn_801D34D4 = .text:0x801D34D4; // type:function size:0x74 +fn_801D3548 = .text:0x801D3548; // type:function size:0x3C +fn_801D3584 = .text:0x801D3584; // type:function size:0x6C +fn_801D35F0 = .text:0x801D35F0; // type:function size:0x2C +fn_801D361C = .text:0x801D361C; // type:function size:0x3C +fn_801D3658 = .text:0x801D3658; // type:function size:0x6C +fn_801D36C4 = .text:0x801D36C4; // type:function size:0x2C +fn_801D36F0 = .text:0x801D36F0; // type:function size:0x8 +fn_801D36F8 = .text:0x801D36F8; // type:function size:0x4 +fn_801D36FC = .text:0x801D36FC; // type:function size:0x8 +fn_801D3704 = .text:0x801D3704; // type:function size:0x4 +fn_801D3708 = .text:0x801D3708; // type:function size:0x40 +fn_801D3748 = .text:0x801D3748; // type:function size:0x4 +fn_801D374C = .text:0x801D374C; // type:function size:0x8 +fn_801D3754 = .text:0x801D3754; // type:function size:0x54 +fn_801D37A8 = .text:0x801D37A8; // type:function size:0x4 +fn_801D37AC = .text:0x801D37AC; // type:function size:0x218 +fn_801D39C4 = .text:0x801D39C4; // type:function size:0xE0 +fn_801D3AA4 = .text:0x801D3AA4; // type:function size:0x90 +fn_801D3B34 = .text:0x801D3B34; // type:function size:0x64 +fn_801D3B98 = .text:0x801D3B98; // type:function size:0x158 +fn_801D3CF0 = .text:0x801D3CF0; // type:function size:0x220 +fn_801D3F10 = .text:0x801D3F10; // type:function size:0x8 +fn_801D3F18 = .text:0x801D3F18; // type:function size:0x4 +fn_801D3F1C = .text:0x801D3F1C; // type:function size:0x8 +fn_801D3F24 = .text:0x801D3F24; // type:function size:0x7C +fn_801D3FA0 = .text:0x801D3FA0; // type:function size:0x8 +Handle__11BandSongMgrFP9DataArrayb = .text:0x801D3FA8; // type:function size:0x74C +fn_801D46F4 = .text:0x801D46F4; // type:function size:0xD4 +fn_801D47C8 = .text:0x801D47C8; // type:function size:0x114 +fn_801D48DC = .text:0x801D48DC; // type:function size:0x60 +fn_801D493C = .text:0x801D493C; // type:function size:0x5C +fn_801D4998 = .text:0x801D4998; // type:function size:0x54 +fn_801D49EC = .text:0x801D49EC; // type:function size:0x5C +fn_801D4A48 = .text:0x801D4A48; // type:function size:0x114 +fn_801D4B5C = .text:0x801D4B5C; // type:function size:0x5C +fn_801D4BB8 = .text:0x801D4BB8; // type:function size:0x5C +fn_801D4C14 = .text:0x801D4C14; // type:function size:0x54 +fn_801D4C68 = .text:0x801D4C68; // type:function size:0x5C +fn_801D4CC4 = .text:0x801D4CC4; // type:function size:0x5C +fn_801D4D20 = .text:0x801D4D20; // type:function size:0x15C +fn_801D4E7C = .text:0x801D4E7C; // type:function size:0x44 +fn_801D4EC0 = .text:0x801D4EC0; // type:function size:0x6C +fn_801D4F2C = .text:0x801D4F2C; // type:function size:0x3B8 +fn_801D52E4 = .text:0x801D52E4; // type:function size:0x6C +fn_801D5350 = .text:0x801D5350; // type:function size:0x3B8 +fn_801D5708 = .text:0x801D5708; // type:function size:0x6C +fn_801D5774 = .text:0x801D5774; // type:function size:0x388 +fn_801D5AFC = .text:0x801D5AFC; // type:function size:0x6C +fn_801D5B68 = .text:0x801D5B68; // type:function size:0x2C +fn_801D5B94 = .text:0x801D5B94; // type:function size:0x8 +fn_801D5B9C = .text:0x801D5B9C; // type:function size:0x6C +fn_801D5C08 = .text:0x801D5C08; // type:function size:0x2C +fn_801D5C34 = .text:0x801D5C34; // type:function size:0x68 +fn_801D5C9C = .text:0x801D5C9C; // type:function size:0x2C +fn_801D5CC8 = .text:0x801D5CC8; // type:function size:0x8 +fn_801D5CD0 = .text:0x801D5CD0; // type:function size:0xE4 +fn_801D5DB4 = .text:0x801D5DB4; // type:function size:0x54 +fn_801D5E08 = .text:0x801D5E08; // type:function size:0x6C +fn_801D5E74 = .text:0x801D5E74; // type:function size:0x8C +fn_801D5F00 = .text:0x801D5F00; // type:function size:0x2C +fn_801D5F2C = .text:0x801D5F2C; // type:function size:0x8 +fn_801D5F34 = .text:0x801D5F34; // type:function size:0x108 +fn_801D603C = .text:0x801D603C; // type:function size:0x5C +fn_801D6098 = .text:0x801D6098; // type:function size:0x15C +fn_801D61F4 = .text:0x801D61F4; // type:function size:0x44 +fn_801D6238 = .text:0x801D6238; // type:function size:0x8 +fn_801D6240 = .text:0x801D6240; // type:function size:0x108 +fn_801D6348 = .text:0x801D6348; // type:function size:0x5C +fn_801D63A4 = .text:0x801D63A4; // type:function size:0x10 +fn_801D63B4 = .text:0x801D63B4; // type:function size:0x40 +fn_801D63F4 = .text:0x801D63F4; // type:function size:0x15C +fn_801D6550 = .text:0x801D6550; // type:function size:0x44 +fn_801D6594 = .text:0x801D6594; // type:function size:0x108 +fn_801D669C = .text:0x801D669C; // type:function size:0x5C +fn_801D66F8 = .text:0x801D66F8; // type:function size:0x10 +fn_801D6708 = .text:0x801D6708; // type:function size:0x158 +fn_801D6860 = .text:0x801D6860; // type:function size:0x44 +fn_801D68A4 = .text:0x801D68A4; // type:function size:0x104 +fn_801D69A8 = .text:0x801D69A8; // type:function size:0x5C +fn_801D6A04 = .text:0x801D6A04; // type:function size:0x10 +fn_801D6A14 = .text:0x801D6A14; // type:function size:0x48 +fn_801D6A5C = .text:0x801D6A5C; // type:function size:0x54 +fn_801D6AB0 = .text:0x801D6AB0; // type:function size:0x14 +fn_801D6AC4 = .text:0x801D6AC4; // type:function size:0x14 +fn_801D6AD8 = .text:0x801D6AD8; // type:function size:0x14 +fn_801D6AEC = .text:0x801D6AEC; // type:function size:0x14 +fn_801D6B00 = .text:0x801D6B00; // type:function size:0x14 +fn_801D6B14 = .text:0x801D6B14; // type:function size:0x14 +fn_801D6B28 = .text:0x801D6B28; // type:function size:0x14 +fn_801D6B3C = .text:0x801D6B3C; // type:function size:0x8 +fn_801D6B44 = .text:0x801D6B44; // type:function size:0x8 +fn_801D6B4C = .text:0x801D6B4C; // type:function size:0x8 +fn_801D6B54 = .text:0x801D6B54; // type:function size:0x8 +fn_801D6B5C = .text:0x801D6B5C; // type:function size:0x8 +fn_801D6B64 = .text:0x801D6B64; // type:function size:0x8 +fn_801D6B6C = .text:0x801D6B6C; // type:function size:0x8 +fn_801D6B74 = .text:0x801D6B74; // type:function size:0x8 +fn_801D6B7C = .text:0x801D6B7C; // type:function size:0x8 +fn_801D6B84 = .text:0x801D6B84; // type:function size:0x8 +fn_801D6B8C = .text:0x801D6B8C; // type:function size:0x8 +fn_801D6B94 = .text:0x801D6B94; // type:function size:0x100 +fn_801D6C94 = .text:0x801D6C94; // type:function size:0x18 +fn_801D6CAC = .text:0x801D6CAC; // type:function size:0x28 +fn_801D6CD4 = .text:0x801D6CD4; // type:function size:0x28 +fn_801D6CFC = .text:0x801D6CFC; // type:function size:0x4 +fn_801D6D00 = .text:0x801D6D00; // type:function size:0x1D4 +fn_801D6ED4 = .text:0x801D6ED4; // type:function size:0xC +fn_801D6EE0 = .text:0x801D6EE0; // type:function size:0xC +fn_801D6EEC = .text:0x801D6EEC; // type:function size:0x58 +fn_801D6F44 = .text:0x801D6F44; // type:function size:0x118 +fn_801D705C = .text:0x801D705C; // type:function size:0x11C +fn_801D7178 = .text:0x801D7178; // type:function size:0x18 +fn_801D7190 = .text:0x801D7190; // type:function size:0xA0 +fn_801D7230 = .text:0x801D7230; // type:function size:0xD8 +fn_801D7308 = .text:0x801D7308; // type:function size:0x58 +fn_801D7360 = .text:0x801D7360; // type:function size:0x10 +fn_801D7370 = .text:0x801D7370; // type:function size:0x108 +fn_801D7478 = .text:0x801D7478; // type:function size:0x64 +fn_801D74DC = .text:0x801D74DC; // type:function size:0x58 +fn_801D7534 = .text:0x801D7534; // type:function size:0xD8 +fn_801D760C = .text:0x801D760C; // type:function size:0x64 +fn_801D7670 = .text:0x801D7670; // type:function size:0x54 +fn_801D76C4 = .text:0x801D76C4; // type:function size:0x74 +fn_801D7738 = .text:0x801D7738; // type:function size:0x58 +fn_801D7790 = .text:0x801D7790; // type:function size:0x94 +fn_801D7824 = .text:0x801D7824; // type:function size:0x398 +fn_801D7BBC = .text:0x801D7BBC; // type:function size:0xF0 +fn_801D7CAC = .text:0x801D7CAC; // type:function size:0x4C +fn_801D7CF8 = .text:0x801D7CF8; // type:function size:0xE4 +fn_801D7DDC = .text:0x801D7DDC; // type:function size:0x30 +fn_801D7E0C = .text:0x801D7E0C; // type:function size:0xC +fn_801D7E18 = .text:0x801D7E18; // type:function size:0xC +fn_801D7E24 = .text:0x801D7E24; // type:function size:0x20 +fn_801D7E44 = .text:0x801D7E44; // type:function size:0x10 +fn_801D7E54 = .text:0x801D7E54; // type:function size:0x4C0 +fn_801D8314 = .text:0x801D8314; // type:function size:0x68 +fn_801D837C = .text:0x801D837C; // type:function size:0x8 +fn_801D8384 = .text:0x801D8384; // type:function size:0x4 +fn_801D8388 = .text:0x801D8388; // type:function size:0x80 +fn_801D8408 = .text:0x801D8408; // type:function size:0x8 +fn_801D8410 = .text:0x801D8410; // type:function size:0x3C +fn_801D844C = .text:0x801D844C; // type:function size:0x14 +fn_801D8460 = .text:0x801D8460; // type:function size:0x68 +fn_801D84C8 = .text:0x801D84C8; // type:function size:0x4C +fn_801D8514 = .text:0x801D8514; // type:function size:0xC4 +fn_801D85D8 = .text:0x801D85D8; // type:function size:0x10 +fn_801D85E8 = .text:0x801D85E8; // type:function size:0x4 +fn_801D85EC = .text:0x801D85EC; // type:function size:0x8 +fn_801D85F4 = .text:0x801D85F4; // type:function size:0x60 +Handle__14BandStorePanelFP9DataArrayb = .text:0x801D8654; // type:function size:0x5EC +fn_801D8C40 = .text:0x801D8C40; // type:function size:0x3C +fn_801D8C7C = .text:0x801D8C7C; // type:function size:0x34 +fn_801D8CB0 = .text:0x801D8CB0; // type:function size:0x3C +fn_801D8CEC = .text:0x801D8CEC; // type:function size:0x28 +fn_801D8D14 = .text:0x801D8D14; // type:function size:0xC +fn_801D8D20 = .text:0x801D8D20; // type:function size:0xC0 +fn_801D8DE0 = .text:0x801D8DE0; // type:function size:0x134 +fn_801D8F14 = .text:0x801D8F14; // type:function size:0x4C +fn_801D8F60 = .text:0x801D8F60; // type:function size:0x4 +fn_801D8F64 = .text:0x801D8F64; // type:function size:0x9C +fn_801D9000 = .text:0x801D9000; // type:function size:0x6C +fn_801D906C = .text:0x801D906C; // type:function size:0x38 +fn_801D90A4 = .text:0x801D90A4; // type:function size:0x94 +fn_801D9138 = .text:0x801D9138; // type:function size:0x3C +fn_801D9174 = .text:0x801D9174; // type:function size:0x8C +fn_801D9200 = .text:0x801D9200; // type:function size:0x2C +fn_801D922C = .text:0x801D922C; // type:function size:0xA8 +fn_801D92D4 = .text:0x801D92D4; // type:function size:0x14 +fn_801D92E8 = .text:0x801D92E8; // type:function size:0x14 +fn_801D92FC = .text:0x801D92FC; // type:function size:0x14 +fn_801D9310 = .text:0x801D9310; // type:function size:0x14 +fn_801D9324 = .text:0x801D9324; // type:function size:0x14 +fn_801D9338 = .text:0x801D9338; // type:function size:0x14 +fn_801D934C = .text:0x801D934C; // type:function size:0x14 +fn_801D9360 = .text:0x801D9360; // type:function size:0x14 +fn_801D9374 = .text:0x801D9374; // type:function size:0x8 +fn_801D937C = .text:0x801D937C; // type:function size:0x8 +fn_801D9384 = .text:0x801D9384; // type:function size:0x8 +fn_801D938C = .text:0x801D938C; // type:function size:0x8 +fn_801D9394 = .text:0x801D9394; // type:function size:0x8 +fn_801D939C = .text:0x801D939C; // type:function size:0xBC +Handle__16BandStoreUIPanelFP9DataArrayb = .text:0x801D9458; // type:function size:0x148 +fn_801D95A0 = .text:0x801D95A0; // type:function size:0x134 +fn_801D96D4 = .text:0x801D96D4; // type:function size:0x4C +fn_801D9720 = .text:0x801D9720; // type:function size:0x4 +fn_801D9724 = .text:0x801D9724; // type:function size:0x14 +fn_801D9738 = .text:0x801D9738; // type:function size:0x14 +fn_801D974C = .text:0x801D974C; // type:function size:0x14 +fn_801D9760 = .text:0x801D9760; // type:function size:0x14 +fn_801D9774 = .text:0x801D9774; // type:function size:0x14 +fn_801D9788 = .text:0x801D9788; // type:function size:0x14 +fn_801D979C = .text:0x801D979C; // type:function size:0x14 +fn_801D97B0 = .text:0x801D97B0; // type:function size:0x30 +__ct__12EnterFlowMsgFv = .text:0x801D97E0; // type:function size:0x44 +fn_801D9824 = .text:0x801D9824; // type:function size:0x70 +fn_801D9894 = .text:0x801D9894; // type:function size:0xC +fn_801D98A0 = .text:0x801D98A0; // type:function size:0xD4 +fn_801D9974 = .text:0x801D9974; // type:function size:0x8C +fn_801D9A00 = .text:0x801D9A00; // type:function size:0x364 +fn_801D9D64 = .text:0x801D9D64; // type:function size:0x4C +fn_801D9DB0 = .text:0x801D9DB0; // type:function size:0x2A8 +fn_801DA058 = .text:0x801DA058; // type:function size:0x80 +fn_801DA0D8 = .text:0x801DA0D8; // type:function size:0x58 +fn_801DA130 = .text:0x801DA130; // type:function size:0x60 +fn_801DA190 = .text:0x801DA190; // type:function size:0x58 +fn_801DA1E8 = .text:0x801DA1E8; // type:function size:0x58 +fn_801DA240 = .text:0x801DA240; // type:function size:0x50 +fn_801DA290 = .text:0x801DA290; // type:function size:0x58 +fn_801DA2E8 = .text:0x801DA2E8; // type:function size:0x60 +fn_801DA348 = .text:0x801DA348; // type:function size:0x58 +fn_801DA3A0 = .text:0x801DA3A0; // type:function size:0x58 +fn_801DA3F8 = .text:0x801DA3F8; // type:function size:0x50 +fn_801DA448 = .text:0x801DA448; // type:function size:0x4C +fn_801DA494 = .text:0x801DA494; // type:function size:0x1B8 +fn_801DA64C = .text:0x801DA64C; // type:function size:0x4C +fn_801DA698 = .text:0x801DA698; // type:function size:0x4C +fn_801DA6E4 = .text:0x801DA6E4; // type:function size:0x4C +fn_801DA730 = .text:0x801DA730; // type:function size:0x4C +fn_801DA77C = .text:0x801DA77C; // type:function size:0x134 +fn_801DA8B0 = .text:0x801DA8B0; // type:function size:0x1CC +fn_801DAA7C = .text:0x801DAA7C; // type:function size:0xC +fn_801DAA88 = .text:0x801DAA88; // type:function size:0x7C +fn_801DAB04 = .text:0x801DAB04; // type:function size:0x190 +fn_801DAC94 = .text:0x801DAC94; // type:function size:0xC +fn_801DACA0 = .text:0x801DACA0; // type:function size:0x144 +fn_801DADE4 = .text:0x801DADE4; // type:function size:0x78 +fn_801DAE5C = .text:0x801DAE5C; // type:function size:0xB4 +fn_801DAF10 = .text:0x801DAF10; // type:function size:0xA4 +fn_801DAFB4 = .text:0x801DAFB4; // type:function size:0x34 +fn_801DAFE8 = .text:0x801DAFE8; // type:function size:0xBC +fn_801DB0A4 = .text:0x801DB0A4; // type:function size:0x1C +fn_801DB0C0 = .text:0x801DB0C0; // type:function size:0x8 +fn_801DB0C8 = .text:0x801DB0C8; // type:function size:0x108 +fn_801DB1D0 = .text:0x801DB1D0; // type:function size:0x108 +fn_801DB2D8 = .text:0x801DB2D8; // type:function size:0xC4 +fn_801DB39C = .text:0x801DB39C; // type:function size:0xC4 +fn_801DB460 = .text:0x801DB460; // type:function size:0x70 +fn_801DB4D0 = .text:0x801DB4D0; // type:function size:0x34 +fn_801DB504 = .text:0x801DB504; // type:function size:0x22C +fn_801DB730 = .text:0x801DB730; // type:function size:0xC +fn_801DB73C = .text:0x801DB73C; // type:function size:0x68 +fn_801DB7A4 = .text:0x801DB7A4; // type:function size:0x8 +fn_801DB7AC = .text:0x801DB7AC; // type:function size:0x68 +fn_801DB814 = .text:0x801DB814; // type:function size:0x5C +fn_801DB870 = .text:0x801DB870; // type:function size:0xA0 +fn_801DB910 = .text:0x801DB910; // type:function size:0x50 +fn_801DB960 = .text:0x801DB960; // type:function size:0x54 +fn_801DB9B4 = .text:0x801DB9B4; // type:function size:0x54 +fn_801DBA08 = .text:0x801DBA08; // type:function size:0x8 +fn_801DBA10 = .text:0x801DBA10; // type:function size:0x8 +fn_801DBA18 = .text:0x801DBA18; // type:function size:0x54 +fn_801DBA6C = .text:0x801DBA6C; // type:function size:0x3C +fn_801DBAA8 = .text:0x801DBAA8; // type:function size:0x8 +fn_801DBAB0 = .text:0x801DBAB0; // type:function size:0x234 +fn_801DBCE4 = .text:0x801DBCE4; // type:function size:0x5C +fn_801DBD40 = .text:0x801DBD40; // type:function size:0x90 +fn_801DBDD0 = .text:0x801DBDD0; // type:function size:0x8 +fn_801DBDD8 = .text:0x801DBDD8; // type:function size:0x98 +fn_801DBE70 = .text:0x801DBE70; // type:function size:0xBC +fn_801DBF2C = .text:0x801DBF2C; // type:function size:0x7C +fn_801DBFA8 = .text:0x801DBFA8; // type:function size:0x90 +fn_801DC038 = .text:0x801DC038; // type:function size:0x7C +fn_801DC0B4 = .text:0x801DC0B4; // type:function size:0x3C +fn_801DC0F0 = .text:0x801DC0F0; // type:function size:0x3C +fn_801DC12C = .text:0x801DC12C; // type:function size:0x3C +fn_801DC168 = .text:0x801DC168; // type:function size:0x3C +fn_801DC1A4 = .text:0x801DC1A4; // type:function size:0x3C +fn_801DC1E0 = .text:0x801DC1E0; // type:function size:0xC0 +Handle__6BandUIFP9DataArrayb = .text:0x801DC2A0; // type:function size:0xE14 +fn_801DD0B4 = .text:0x801DD0B4; // type:function size:0x3C +fn_801DD0F0 = .text:0x801DD0F0; // type:function size:0x3C +fn_801DD12C = .text:0x801DD12C; // type:function size:0x3C +fn_801DD168 = .text:0x801DD168; // type:function size:0x3C +fn_801DD1A4 = .text:0x801DD1A4; // type:function size:0x3C +fn_801DD1E0 = .text:0x801DD1E0; // type:function size:0x3C +fn_801DD21C = .text:0x801DD21C; // type:function size:0x4C +fn_801DD268 = .text:0x801DD268; // type:function size:0x3C +fn_801DD2A4 = .text:0x801DD2A4; // type:function size:0x4C +fn_801DD2F0 = .text:0x801DD2F0; // type:function size:0x3C +fn_801DD32C = .text:0x801DD32C; // type:function size:0x4C +fn_801DD378 = .text:0x801DD378; // type:function size:0x3C +fn_801DD3B4 = .text:0x801DD3B4; // type:function size:0x4C +fn_801DD400 = .text:0x801DD400; // type:function size:0x3C +fn_801DD43C = .text:0x801DD43C; // type:function size:0x4C +__ct__26ConnectionStatusChangedMsgFP9DataArray = .text:0x801DD488; // type:function size:0x3C +Type__26ConnectionStatusChangedMsgFv = .text:0x801DD4C4; // type:function size:0x4C +fn_801DD510 = .text:0x801DD510; // type:function size:0x3C +fn_801DD54C = .text:0x801DD54C; // type:function size:0x3C +fn_801DD588 = .text:0x801DD588; // type:function size:0x4C +fn_801DD5D4 = .text:0x801DD5D4; // type:function size:0x8 +fn_801DD5DC = .text:0x801DD5DC; // type:function size:0x8 +fn_801DD5E4 = .text:0x801DD5E4; // type:function size:0x6C +fn_801DD650 = .text:0x801DD650; // type:function size:0x2C +fn_801DD67C = .text:0x801DD67C; // type:function size:0x6C +fn_801DD6E8 = .text:0x801DD6E8; // type:function size:0x2C +fn_801DD714 = .text:0x801DD714; // type:function size:0x8 +fn_801DD71C = .text:0x801DD71C; // type:function size:0x5C +__dt__Q211stlpmtx_std130map<6Symbol,P9DataArray,Q211stlpmtx_std13less<6Symbol>,Q211stlpmtx_std57StlNodeAlloc>>Fv = .text:0x801DD778; // type:function size:0x58 +fn_801DD7D0 = .text:0x801DD7D0; // type:function size:0x60 +fn_801DD830 = .text:0x801DD830; // type:function size:0x58 +fn_801DD888 = .text:0x801DD888; // type:function size:0x58 +fn_801DD8E0 = .text:0x801DD8E0; // type:function size:0x50 +fn_801DD930 = .text:0x801DD930; // type:function size:0x6C +fn_801DD99C = .text:0x801DD99C; // type:function size:0x2C +fn_801DD9C8 = .text:0x801DD9C8; // type:function size:0x64 +fn_801DDA2C = .text:0x801DDA2C; // type:function size:0x14 +fn_801DDA40 = .text:0x801DDA40; // type:function size:0x14 +fn_801DDA54 = .text:0x801DDA54; // type:function size:0x8 +fn_801DDA5C = .text:0x801DDA5C; // type:function size:0x8 +__ct__8CampaignFP9DataArray = .text:0x801DDA64; // type:function size:0x1A8 +fn_801DDC0C = .text:0x801DDC0C; // type:function size:0x58 +fn_801DDC64 = .text:0x801DDC64; // type:function size:0x60 +fn_801DDCC4 = .text:0x801DDCC4; // type:function size:0x58 +fn_801DDD1C = .text:0x801DDD1C; // type:function size:0x58 +fn_801DDD74 = .text:0x801DDD74; // type:function size:0x50 +fn_801DDDC4 = .text:0x801DDDC4; // type:function size:0x58 +fn_801DDE1C = .text:0x801DDE1C; // type:function size:0x60 +fn_801DDE7C = .text:0x801DDE7C; // type:function size:0x58 +fn_801DDED4 = .text:0x801DDED4; // type:function size:0x58 +fn_801DDF2C = .text:0x801DDF2C; // type:function size:0x50 +fn_801DDF7C = .text:0x801DDF7C; // type:function size:0x4C +fn_801DDFC8 = .text:0x801DDFC8; // type:function size:0x4C +fn_801DE014 = .text:0x801DE014; // type:function size:0x44 +fn_801DE058 = .text:0x801DE058; // type:function size:0x3C +fn_801DE094 = .text:0x801DE094; // type:function size:0x70 +fn_801DE104 = .text:0x801DE104; // type:function size:0x44 +fn_801DE148 = .text:0x801DE148; // type:function size:0x3C +fn_801DE184 = .text:0x801DE184; // type:function size:0x70 +__dt__8CampaignFv = .text:0x801DE1F4; // type:function size:0x118 +fn_801DE30C = .text:0x801DE30C; // type:function size:0xD4 +fn_801DE3E0 = .text:0x801DE3E0; // type:function size:0x4 +fn_801DE3E4 = .text:0x801DE3E4; // type:function size:0x8 +fn_801DE3EC = .text:0x801DE3EC; // type:function size:0x34 +fn_801DE420 = .text:0x801DE420; // type:function size:0x4 +fn_801DE424 = .text:0x801DE424; // type:function size:0x8 +fn_801DE42C = .text:0x801DE42C; // type:function size:0x8C +fn_801DE4B8 = .text:0x801DE4B8; // type:function size:0x1E0 +fn_801DE698 = .text:0x801DE698; // type:function size:0xFC +fn_801DE794 = .text:0x801DE794; // type:function size:0x58 +fn_801DE7EC = .text:0x801DE7EC; // type:function size:0x4 +fn_801DE7F0 = .text:0x801DE7F0; // type:function size:0x40 +fn_801DE830 = .text:0x801DE830; // type:function size:0x74 +fn_801DE8A4 = .text:0x801DE8A4; // type:function size:0xCC +fn_801DE970 = .text:0x801DE970; // type:function size:0xFC +fn_801DEA6C = .text:0x801DEA6C; // type:function size:0x58 +fn_801DEAC4 = .text:0x801DEAC4; // type:function size:0x8 +fn_801DEACC = .text:0x801DEACC; // type:function size:0x4 +fn_801DEAD0 = .text:0x801DEAD0; // type:function size:0x40 +fn_801DEB10 = .text:0x801DEB10; // type:function size:0x74 +fn_801DEB84 = .text:0x801DEB84; // type:function size:0x34 +fn_801DEBB8 = .text:0x801DEBB8; // type:function size:0x74 +fn_801DEC2C = .text:0x801DEC2C; // type:function size:0x2C +fn_801DEC58 = .text:0x801DEC58; // type:function size:0x30 +fn_801DEC88 = .text:0x801DEC88; // type:function size:0xA0 +fn_801DED28 = .text:0x801DED28; // type:function size:0x34 +fn_801DED5C = .text:0x801DED5C; // type:function size:0x74 +fn_801DEDD0 = .text:0x801DEDD0; // type:function size:0x2C +fn_801DEDFC = .text:0x801DEDFC; // type:function size:0x30 +fn_801DEE2C = .text:0x801DEE2C; // type:function size:0xA0 +fn_801DEECC = .text:0x801DEECC; // type:function size:0x70 +fn_801DEF3C = .text:0x801DEF3C; // type:function size:0x4C +fn_801DEF88 = .text:0x801DEF88; // type:function size:0x50 +fn_801DEFD8 = .text:0x801DEFD8; // type:function size:0x19C +fn_801DF174 = .text:0x801DF174; // type:function size:0x44 +fn_801DF1B8 = .text:0x801DF1B8; // type:function size:0xCC +fn_801DF284 = .text:0x801DF284; // type:function size:0x28 +fn_801DF2AC = .text:0x801DF2AC; // type:function size:0xC +fn_801DF2B8 = .text:0x801DF2B8; // type:function size:0x38 +fn_801DF2F0 = .text:0x801DF2F0; // type:function size:0x4 +fn_801DF2F4 = .text:0x801DF2F4; // type:function size:0x3C +fn_801DF330 = .text:0x801DF330; // type:function size:0x30 +fn_801DF360 = .text:0x801DF360; // type:function size:0x3C +fn_801DF39C = .text:0x801DF39C; // type:function size:0x68 +fn_801DF404 = .text:0x801DF404; // type:function size:0x58 +fn_801DF45C = .text:0x801DF45C; // type:function size:0x4C +fn_801DF4A8 = .text:0x801DF4A8; // type:function size:0x50 +fn_801DF4F8 = .text:0x801DF4F8; // type:function size:0x50 +fn_801DF548 = .text:0x801DF548; // type:function size:0x9C +fn_801DF5E4 = .text:0x801DF5E4; // type:function size:0xA8 +fn_801DF68C = .text:0x801DF68C; // type:function size:0x98 +fn_801DF724 = .text:0x801DF724; // type:function size:0x98 +fn_801DF7BC = .text:0x801DF7BC; // type:function size:0x9C +fn_801DF858 = .text:0x801DF858; // type:function size:0x9C +fn_801DF8F4 = .text:0x801DF8F4; // type:function size:0xA4 +fn_801DF998 = .text:0x801DF998; // type:function size:0xA4 +fn_801DFA3C = .text:0x801DFA3C; // type:function size:0xB0 +fn_801DFAEC = .text:0x801DFAEC; // type:function size:0xB0 +fn_801DFB9C = .text:0x801DFB9C; // type:function size:0xD4 +fn_801DFC70 = .text:0x801DFC70; // type:function size:0xB4 +fn_801DFD24 = .text:0x801DFD24; // type:function size:0xB8 +fn_801DFDDC = .text:0x801DFDDC; // type:function size:0x58 +fn_801DFE34 = .text:0x801DFE34; // type:function size:0x60 +fn_801DFE94 = .text:0x801DFE94; // type:function size:0xB0 +fn_801DFF44 = .text:0x801DFF44; // type:function size:0x58 +fn_801DFF9C = .text:0x801DFF9C; // type:function size:0x60 +fn_801DFFFC = .text:0x801DFFFC; // type:function size:0x4C +fn_801E0048 = .text:0x801E0048; // type:function size:0x10 +fn_801E0058 = .text:0x801E0058; // type:function size:0x8 +fn_801E0060 = .text:0x801E0060; // type:function size:0x84 +fn_801E00E4 = .text:0x801E00E4; // type:function size:0x88 +fn_801E016C = .text:0x801E016C; // type:function size:0x3C +fn_801E01A8 = .text:0x801E01A8; // type:function size:0x8 +fn_801E01B0 = .text:0x801E01B0; // type:function size:0x70 +fn_801E0220 = .text:0x801E0220; // type:function size:0x38 +fn_801E0258 = .text:0x801E0258; // type:function size:0x5C +fn_801E02B4 = .text:0x801E02B4; // type:function size:0x30 +fn_801E02E4 = .text:0x801E02E4; // type:function size:0x5C +fn_801E0340 = .text:0x801E0340; // type:function size:0x50 +fn_801E0390 = .text:0x801E0390; // type:function size:0x30 +fn_801E03C0 = .text:0x801E03C0; // type:function size:0x1C +fn_801E03DC = .text:0x801E03DC; // type:function size:0x8 +fn_801E03E4 = .text:0x801E03E4; // type:function size:0x9C +fn_801E0480 = .text:0x801E0480; // type:function size:0x4 +fn_801E0484 = .text:0x801E0484; // type:function size:0x40 +fn_801E04C4 = .text:0x801E04C4; // type:function size:0xDC +fn_801E05A0 = .text:0x801E05A0; // type:function size:0x60 +fn_801E0600 = .text:0x801E0600; // type:function size:0x54 +fn_801E0654 = .text:0x801E0654; // type:function size:0xB4 +fn_801E0708 = .text:0x801E0708; // type:function size:0x1A8 +fn_801E08B0 = .text:0x801E08B0; // type:function size:0x7C +fn_801E092C = .text:0x801E092C; // type:function size:0x50 +fn_801E097C = .text:0x801E097C; // type:function size:0x10 +fn_801E098C = .text:0x801E098C; // type:function size:0x90 +fn_801E0A1C = .text:0x801E0A1C; // type:function size:0x40 +fn_801E0A5C = .text:0x801E0A5C; // type:function size:0x30 +fn_801E0A8C = .text:0x801E0A8C; // type:function size:0x8 +fn_801E0A94 = .text:0x801E0A94; // type:function size:0x34 +fn_801E0AC8 = .text:0x801E0AC8; // type:function size:0xBC +fn_801E0B84 = .text:0x801E0B84; // type:function size:0xE4 +fn_801E0C68 = .text:0x801E0C68; // type:function size:0x40C +fn_801E1074 = .text:0x801E1074; // type:function size:0xF0 +fn_801E1164 = .text:0x801E1164; // type:function size:0x10 +fn_801E1174 = .text:0x801E1174; // type:function size:0x38 +fn_801E11AC = .text:0x801E11AC; // type:function size:0x38 +fn_801E11E4 = .text:0x801E11E4; // type:function size:0x8 +fn_801E11EC = .text:0x801E11EC; // type:function size:0x8 +fn_801E11F4 = .text:0x801E11F4; // type:function size:0xAC +fn_801E12A0 = .text:0x801E12A0; // type:function size:0x4C +fn_801E12EC = .text:0x801E12EC; // type:function size:0xEC +fn_801E13D8 = .text:0x801E13D8; // type:function size:0x50 +Handle__8CampaignFP9DataArrayb = .text:0x801E1428; // type:function size:0xC00 +fn_801E2028 = .text:0x801E2028; // type:function size:0x3C +fn_801E2064 = .text:0x801E2064; // type:function size:0x3C +fn_801E20A0 = .text:0x801E20A0; // type:function size:0x34 +fn_801E20D4 = .text:0x801E20D4; // type:function size:0x3C +fn_801E2110 = .text:0x801E2110; // type:function size:0x34 +fn_801E2144 = .text:0x801E2144; // type:function size:0x3C +fn_801E2180 = .text:0x801E2180; // type:function size:0x388 +fn_801E2508 = .text:0x801E2508; // type:function size:0x6C +fn_801E2574 = .text:0x801E2574; // type:function size:0x2C +fn_801E25A0 = .text:0x801E25A0; // type:function size:0x388 +fn_801E2928 = .text:0x801E2928; // type:function size:0x6C +fn_801E2994 = .text:0x801E2994; // type:function size:0x2C +fn_801E29C0 = .text:0x801E29C0; // type:function size:0x158 +fn_801E2B18 = .text:0x801E2B18; // type:function size:0x44 +fn_801E2B5C = .text:0x801E2B5C; // type:function size:0x104 +fn_801E2C60 = .text:0x801E2C60; // type:function size:0x5C +fn_801E2CBC = .text:0x801E2CBC; // type:function size:0x10 +fn_801E2CCC = .text:0x801E2CCC; // type:function size:0x158 +fn_801E2E24 = .text:0x801E2E24; // type:function size:0x44 +fn_801E2E68 = .text:0x801E2E68; // type:function size:0x8 +fn_801E2E70 = .text:0x801E2E70; // type:function size:0x104 +fn_801E2F74 = .text:0x801E2F74; // type:function size:0x5C +fn_801E2FD0 = .text:0x801E2FD0; // type:function size:0x10 +fn_801E2FE0 = .text:0x801E2FE0; // type:function size:0x6C +fn_801E304C = .text:0x801E304C; // type:function size:0x40 +fn_801E308C = .text:0x801E308C; // type:function size:0x44 +fn_801E30D0 = .text:0x801E30D0; // type:function size:0x8 +fn_801E30D8 = .text:0x801E30D8; // type:function size:0x5C +fn_801E3134 = .text:0x801E3134; // type:function size:0xA8 +fn_801E31DC = .text:0x801E31DC; // type:function size:0xA0 +fn_801E327C = .text:0x801E327C; // type:function size:0x88 +fn_801E3304 = .text:0x801E3304; // type:function size:0x5C +fn_801E3360 = .text:0x801E3360; // type:function size:0xC4 +fn_801E3424 = .text:0x801E3424; // type:function size:0xC0 +fn_801E34E4 = .text:0x801E34E4; // type:function size:0xAC +fn_801E3590 = .text:0x801E3590; // type:function size:0x5C +fn_801E35EC = .text:0x801E35EC; // type:function size:0x8 +fn_801E35F4 = .text:0x801E35F4; // type:function size:0x8 +fn_801E35FC = .text:0x801E35FC; // type:function size:0x80 +fn_801E367C = .text:0x801E367C; // type:function size:0x6C +fn_801E36E8 = .text:0x801E36E8; // type:function size:0x7C +fn_801E3764 = .text:0x801E3764; // type:function size:0xC8 +fn_801E382C = .text:0x801E382C; // type:function size:0xE8 +fn_801E3914 = .text:0x801E3914; // type:function size:0xCC +fn_801E39E0 = .text:0x801E39E0; // type:function size:0x4C +fn_801E3A2C = .text:0x801E3A2C; // type:function size:0x64 +fn_801E3A90 = .text:0x801E3A90; // type:function size:0x54 +fn_801E3AE4 = .text:0x801E3AE4; // type:function size:0x4 +fn_801E3AE8 = .text:0x801E3AE8; // type:function size:0xB8 +fn_801E3BA0 = .text:0x801E3BA0; // type:function size:0xB8 +fn_801E3C58 = .text:0x801E3C58; // type:function size:0xC4 +fn_801E3D1C = .text:0x801E3D1C; // type:function size:0xB8 +fn_801E3DD4 = .text:0x801E3DD4; // type:function size:0xC4 +fn_801E3E98 = .text:0x801E3E98; // type:function size:0x28 +fn_801E3EC0 = .text:0x801E3EC0; // type:function size:0x88 +fn_801E3F48 = .text:0x801E3F48; // type:function size:0x88 +fn_801E3FD0 = .text:0x801E3FD0; // type:function size:0xE8 +fn_801E40B8 = .text:0x801E40B8; // type:function size:0x64 +Handle__21CampaignSongInfoPanelFP9DataArrayb = .text:0x801E411C; // type:function size:0x240 +fn_801E435C = .text:0x801E435C; // type:function size:0x7C +fn_801E43D8 = .text:0x801E43D8; // type:function size:0x134 +fn_801E450C = .text:0x801E450C; // type:function size:0x4C +fn_801E4558 = .text:0x801E4558; // type:function size:0x4 +fn_801E455C = .text:0x801E455C; // type:function size:0xC0 +fn_801E461C = .text:0x801E461C; // type:function size:0x14 +fn_801E4630 = .text:0x801E4630; // type:function size:0x14 +fn_801E4644 = .text:0x801E4644; // type:function size:0x14 +fn_801E4658 = .text:0x801E4658; // type:function size:0x14 +fn_801E466C = .text:0x801E466C; // type:function size:0x14 +fn_801E4680 = .text:0x801E4680; // type:function size:0x14 +fn_801E4694 = .text:0x801E4694; // type:function size:0x14 +fn_801E46A8 = .text:0x801E46A8; // type:function size:0x8 +fn_801E46B0 = .text:0x801E46B0; // type:function size:0x5C +fn_801E470C = .text:0x801E470C; // type:function size:0x140 +fn_801E484C = .text:0x801E484C; // type:function size:0xF4 +fn_801E4940 = .text:0x801E4940; // type:function size:0x160 +fn_801E4AA0 = .text:0x801E4AA0; // type:function size:0x258 +fn_801E4CF8 = .text:0x801E4CF8; // type:function size:0x1B4 +fn_801E4EAC = .text:0x801E4EAC; // type:function size:0x350 +fn_801E51FC = .text:0x801E51FC; // type:function size:0xA0 +fn_801E529C = .text:0x801E529C; // type:function size:0x228 +fn_801E54C4 = .text:0x801E54C4; // type:function size:0xA0 +fn_801E5564 = .text:0x801E5564; // type:function size:0x4 +fn_801E5568 = .text:0x801E5568; // type:function size:0x100 +fn_801E5668 = .text:0x801E5668; // type:function size:0x530 +fn_801E5B98 = .text:0x801E5B98; // type:function size:0xAC +fn_801E5C44 = .text:0x801E5C44; // type:function size:0x30 +fn_801E5C74 = .text:0x801E5C74; // type:function size:0x220 +fn_801E5E94 = .text:0x801E5E94; // type:function size:0x18 +fn_801E5EAC = .text:0x801E5EAC; // type:function size:0x3C +fn_801E5EE8 = .text:0x801E5EE8; // type:function size:0x48 +fn_801E5F30 = .text:0x801E5F30; // type:function size:0x3AC +fn_801E62DC = .text:0x801E62DC; // type:function size:0x6C +fn_801E6348 = .text:0x801E6348; // type:function size:0x34 +fn_801E637C = .text:0x801E637C; // type:function size:0x98 +fn_801E6414 = .text:0x801E6414; // type:function size:0x13C +fn_801E6550 = .text:0x801E6550; // type:function size:0xC +fn_801E655C = .text:0x801E655C; // type:function size:0x88 +fn_801E65E4 = .text:0x801E65E4; // type:function size:0x210 +fn_801E67F4 = .text:0x801E67F4; // type:function size:0x284 +fn_801E6A78 = .text:0x801E6A78; // type:function size:0x110 +fn_801E6B88 = .text:0x801E6B88; // type:function size:0x64 +fn_801E6BEC = .text:0x801E6BEC; // type:function size:0x78 +fn_801E6C64 = .text:0x801E6C64; // type:function size:0x8C +fn_801E6CF0 = .text:0x801E6CF0; // type:function size:0x10 +fn_801E6D00 = .text:0x801E6D00; // type:function size:0x40 +fn_801E6D40 = .text:0x801E6D40; // type:function size:0x4C +fn_801E6D8C = .text:0x801E6D8C; // type:function size:0x8 +fn_801E6D94 = .text:0x801E6D94; // type:function size:0xC0 +fn_801E6E54 = .text:0x801E6E54; // type:function size:0x144 +Handle__16CalibrationPanelFP9DataArrayb = .text:0x801E6F98; // type:function size:0x318 +__ct__21KeyboardKeyPressedMsgFP9DataArray = .text:0x801E72B0; // type:function size:0x3C +Type__21KeyboardKeyPressedMsgFv = .text:0x801E72EC; // type:function size:0x4C +SyncProperty__16CalibrationPanelFR8DataNodeP9DataArrayi6PropOp = .text:0x801E7338; // type:function size:0x330 +PropSync__FRfR8DataNodeP9DataArrayi6PropOp = .text:0x801E7668; // type:function size:0x84 +fn_801E76EC = .text:0x801E76EC; // type:function size:0xA0 +fn_801E778C = .text:0x801E778C; // type:function size:0x44 +fn_801E77D0 = .text:0x801E77D0; // type:function size:0x54 +fn_801E7824 = .text:0x801E7824; // type:function size:0xC4 +fn_801E78E8 = .text:0x801E78E8; // type:function size:0x88 +fn_801E7970 = .text:0x801E7970; // type:function size:0xF8 +fn_801E7A68 = .text:0x801E7A68; // type:function size:0x8 +fn_801E7A70 = .text:0x801E7A70; // type:function size:0x78 +Handle__24CalibrationModesProviderFP9DataArrayb = .text:0x801E7AE8; // type:function size:0x124 +fn_801E7C0C = .text:0x801E7C0C; // type:function size:0xD0 +fn_801E7CDC = .text:0x801E7CDC; // type:function size:0x4C +fn_801E7D28 = .text:0x801E7D28; // type:function size:0x5C +fn_801E7D84 = .text:0x801E7D84; // type:function size:0x78 +fn_801E7DFC = .text:0x801E7DFC; // type:function size:0x50 +Handle__23CalibrationWelcomePanelFP9DataArrayb = .text:0x801E7E4C; // type:function size:0x1A4 +fn_801E7FF0 = .text:0x801E7FF0; // type:function size:0x8C +fn_801E807C = .text:0x801E807C; // type:function size:0x134 +fn_801E81B0 = .text:0x801E81B0; // type:function size:0x4C +fn_801E81FC = .text:0x801E81FC; // type:function size:0x4 +fn_801E8200 = .text:0x801E8200; // type:function size:0x134 +fn_801E8334 = .text:0x801E8334; // type:function size:0x4C +fn_801E8380 = .text:0x801E8380; // type:function size:0x4 +fn_801E8384 = .text:0x801E8384; // type:function size:0x14 +fn_801E8398 = .text:0x801E8398; // type:function size:0x14 +fn_801E83AC = .text:0x801E83AC; // type:function size:0x14 +fn_801E83C0 = .text:0x801E83C0; // type:function size:0x14 +fn_801E83D4 = .text:0x801E83D4; // type:function size:0x14 +fn_801E83E8 = .text:0x801E83E8; // type:function size:0x14 +fn_801E83FC = .text:0x801E83FC; // type:function size:0x14 +fn_801E8410 = .text:0x801E8410; // type:function size:0x14 +fn_801E8424 = .text:0x801E8424; // type:function size:0x8 +fn_801E842C = .text:0x801E842C; // type:function size:0x8 +fn_801E8434 = .text:0x801E8434; // type:function size:0x14 +fn_801E8448 = .text:0x801E8448; // type:function size:0x14 +fn_801E845C = .text:0x801E845C; // type:function size:0x14 +fn_801E8470 = .text:0x801E8470; // type:function size:0x14 +fn_801E8484 = .text:0x801E8484; // type:function size:0x14 +fn_801E8498 = .text:0x801E8498; // type:function size:0xA4 +fn_801E853C = .text:0x801E853C; // type:function size:0x40 +fn_801E857C = .text:0x801E857C; // type:function size:0xF0 +fn_801E866C = .text:0x801E866C; // type:function size:0x8 +fn_801E8674 = .text:0x801E8674; // type:function size:0x48 +fn_801E86BC = .text:0x801E86BC; // type:function size:0x50 +fn_801E870C = .text:0x801E870C; // type:function size:0x8 +fn_801E8714 = .text:0x801E8714; // type:function size:0x8 +fn_801E871C = .text:0x801E871C; // type:function size:0x10 +fn_801E872C = .text:0x801E872C; // type:function size:0x8 +fn_801E8734 = .text:0x801E8734; // type:function size:0x8 +fn_801E873C = .text:0x801E873C; // type:function size:0x8 +fn_801E8744 = .text:0x801E8744; // type:function size:0xA0 +fn_801E87E4 = .text:0x801E87E4; // type:function size:0x188 +fn_801E896C = .text:0x801E896C; // type:function size:0x50 +fn_801E89BC = .text:0x801E89BC; // type:function size:0x50 +fn_801E8A0C = .text:0x801E8A0C; // type:function size:0x4C +fn_801E8A58 = .text:0x801E8A58; // type:function size:0x5C +fn_801E8AB4 = .text:0x801E8AB4; // type:function size:0xF8 +fn_801E8BAC = .text:0x801E8BAC; // type:function size:0x58 +fn_801E8C04 = .text:0x801E8C04; // type:function size:0x8 +fn_801E8C0C = .text:0x801E8C0C; // type:function size:0x34 +fn_801E8C40 = .text:0x801E8C40; // type:function size:0x80 +fn_801E8CC0 = .text:0x801E8CC0; // type:function size:0x78 +fn_801E8D38 = .text:0x801E8D38; // type:function size:0x38 +fn_801E8D70 = .text:0x801E8D70; // type:function size:0x8 +fn_801E8D78 = .text:0x801E8D78; // type:function size:0x10C +fn_801E8E84 = .text:0x801E8E84; // type:function size:0x8 +fn_801E8E8C = .text:0x801E8E8C; // type:function size:0x8 +Handle__29CampaignGoalsLeaderboardPanelFP9DataArrayb = .text:0x801E8E94; // type:function size:0x408 +fn_801E929C = .text:0x801E929C; // type:function size:0x8C +fn_801E9328 = .text:0x801E9328; // type:function size:0x134 +fn_801E945C = .text:0x801E945C; // type:function size:0x4C +fn_801E94A8 = .text:0x801E94A8; // type:function size:0x4 +fn_801E94AC = .text:0x801E94AC; // type:function size:0x14 +fn_801E94C0 = .text:0x801E94C0; // type:function size:0x14 +fn_801E94D4 = .text:0x801E94D4; // type:function size:0x14 +fn_801E94E8 = .text:0x801E94E8; // type:function size:0x14 +fn_801E94FC = .text:0x801E94FC; // type:function size:0x8 +fn_801E9504 = .text:0x801E9504; // type:function size:0x8 +fn_801E950C = .text:0x801E950C; // type:function size:0x8 +fn_801E9514 = .text:0x801E9514; // type:function size:0x8 +fn_801E951C = .text:0x801E951C; // type:function size:0x8 +fn_801E9524 = .text:0x801E9524; // type:function size:0x8 +fn_801E952C = .text:0x801E952C; // type:function size:0x8 +fn_801E9534 = .text:0x801E9534; // type:function size:0x8 +fn_801E953C = .text:0x801E953C; // type:function size:0x9C +fn_801E95D8 = .text:0x801E95D8; // type:function size:0x50 +fn_801E9628 = .text:0x801E9628; // type:function size:0x188 +fn_801E97B0 = .text:0x801E97B0; // type:function size:0x50 +fn_801E9800 = .text:0x801E9800; // type:function size:0x4C +fn_801E984C = .text:0x801E984C; // type:function size:0x5C +fn_801E98A8 = .text:0x801E98A8; // type:function size:0x8C +fn_801E9934 = .text:0x801E9934; // type:function size:0x58 +fn_801E998C = .text:0x801E998C; // type:function size:0x1C +fn_801E99A8 = .text:0x801E99A8; // type:function size:0x48 +fn_801E99F0 = .text:0x801E99F0; // type:function size:0x8 +fn_801E99F8 = .text:0x801E99F8; // type:function size:0x10C +fn_801E9B04 = .text:0x801E9B04; // type:function size:0x8 +fn_801E9B0C = .text:0x801E9B0C; // type:function size:0x8 +Handle__30CampaignCareerLeaderboardPanelFP9DataArrayb = .text:0x801E9B14; // type:function size:0x380 +fn_801E9E94 = .text:0x801E9E94; // type:function size:0x8C +fn_801E9F20 = .text:0x801E9F20; // type:function size:0x134 +fn_801EA054 = .text:0x801EA054; // type:function size:0x4C +fn_801EA0A0 = .text:0x801EA0A0; // type:function size:0x4 +fn_801EA0A4 = .text:0x801EA0A4; // type:function size:0x14 +fn_801EA0B8 = .text:0x801EA0B8; // type:function size:0x14 +fn_801EA0CC = .text:0x801EA0CC; // type:function size:0x14 +fn_801EA0E0 = .text:0x801EA0E0; // type:function size:0x14 +fn_801EA0F4 = .text:0x801EA0F4; // type:function size:0x14 +fn_801EA108 = .text:0x801EA108; // type:function size:0x14 +fn_801EA11C = .text:0x801EA11C; // type:function size:0x14 +fn_801EA130 = .text:0x801EA130; // type:function size:0x8 +fn_801EA138 = .text:0x801EA138; // type:function size:0x8 +fn_801EA140 = .text:0x801EA140; // type:function size:0x8 +fn_801EA148 = .text:0x801EA148; // type:function size:0x8 +fn_801EA150 = .text:0x801EA150; // type:function size:0x8 +fn_801EA158 = .text:0x801EA158; // type:function size:0x8 +fn_801EA160 = .text:0x801EA160; // type:function size:0x8 +fn_801EA168 = .text:0x801EA168; // type:function size:0x8 +fn_801EA170 = .text:0x801EA170; // type:function size:0x8 +fn_801EA178 = .text:0x801EA178; // type:function size:0xC4 +fn_801EA23C = .text:0x801EA23C; // type:function size:0x88 +fn_801EA2C4 = .text:0x801EA2C4; // type:function size:0x100 +fn_801EA3C4 = .text:0x801EA3C4; // type:function size:0x5C +fn_801EA420 = .text:0x801EA420; // type:function size:0x1BC +fn_801EA5DC = .text:0x801EA5DC; // type:function size:0x4 +fn_801EA5E0 = .text:0x801EA5E0; // type:function size:0x110 +fn_801EA6F0 = .text:0x801EA6F0; // type:function size:0x88 +fn_801EA778 = .text:0x801EA778; // type:function size:0x148 +fn_801EA8C0 = .text:0x801EA8C0; // type:function size:0x34 +fn_801EA8F4 = .text:0x801EA8F4; // type:function size:0xB4 +fn_801EA9A8 = .text:0x801EA9A8; // type:function size:0xD4 +fn_801EAA7C = .text:0x801EAA7C; // type:function size:0x78 +fn_801EAAF4 = .text:0x801EAAF4; // type:function size:0xA4 +fn_801EAB98 = .text:0x801EAB98; // type:function size:0x88 +fn_801EAC20 = .text:0x801EAC20; // type:function size:0x1AC +fn_801EADCC = .text:0x801EADCC; // type:function size:0x30 +fn_801EADFC = .text:0x801EADFC; // type:function size:0xBC +fn_801EAEB8 = .text:0x801EAEB8; // type:function size:0x30 +fn_801EAEE8 = .text:0x801EAEE8; // type:function size:0xBC +fn_801EAFA4 = .text:0x801EAFA4; // type:function size:0x114 +fn_801EB0B8 = .text:0x801EB0B8; // type:function size:0xBC +fn_801EB174 = .text:0x801EB174; // type:function size:0x94 +fn_801EB208 = .text:0x801EB208; // type:function size:0xD4 +fn_801EB2DC = .text:0x801EB2DC; // type:function size:0xC8 +fn_801EB3A4 = .text:0x801EB3A4; // type:function size:0x200 +fn_801EB5A4 = .text:0x801EB5A4; // type:function size:0x108 +fn_801EB6AC = .text:0x801EB6AC; // type:function size:0x54 +Handle__35CampaignGoalsLeaderboardChoicePanelFP9DataArrayb = .text:0x801EB700; // type:function size:0x104 +fn_801EB804 = .text:0x801EB804; // type:function size:0x7C +fn_801EB880 = .text:0x801EB880; // type:function size:0x134 +fn_801EB9B4 = .text:0x801EB9B4; // type:function size:0x4C +fn_801EBA00 = .text:0x801EBA00; // type:function size:0x4 +fn_801EBA04 = .text:0x801EBA04; // type:function size:0xB4 +fn_801EBAB8 = .text:0x801EBAB8; // type:function size:0xDC +fn_801EBB94 = .text:0x801EBB94; // type:function size:0x78 +fn_801EBC0C = .text:0x801EBC0C; // type:function size:0x14 +fn_801EBC20 = .text:0x801EBC20; // type:function size:0x14 +fn_801EBC34 = .text:0x801EBC34; // type:function size:0x14 +fn_801EBC48 = .text:0x801EBC48; // type:function size:0x14 +fn_801EBC5C = .text:0x801EBC5C; // type:function size:0x14 +fn_801EBC70 = .text:0x801EBC70; // type:function size:0x14 +fn_801EBC84 = .text:0x801EBC84; // type:function size:0x14 +fn_801EBC98 = .text:0x801EBC98; // type:function size:0x8 +fn_801EBCA0 = .text:0x801EBCA0; // type:function size:0x8 +fn_801EBCA8 = .text:0x801EBCA8; // type:function size:0xE4 +fn_801EBD8C = .text:0x801EBD8C; // type:function size:0x58 +fn_801EBDE4 = .text:0x801EBDE4; // type:function size:0x60 +fn_801EBE44 = .text:0x801EBE44; // type:function size:0x58 +fn_801EBE9C = .text:0x801EBE9C; // type:function size:0x58 +fn_801EBEF4 = .text:0x801EBEF4; // type:function size:0x50 +fn_801EBF44 = .text:0x801EBF44; // type:function size:0x44 +fn_801EBF88 = .text:0x801EBF88; // type:function size:0x3C +fn_801EBFC4 = .text:0x801EBFC4; // type:function size:0x70 +fn_801EC034 = .text:0x801EC034; // type:function size:0xB4 +fn_801EC0E8 = .text:0x801EC0E8; // type:function size:0x4 +fn_801EC0EC = .text:0x801EC0EC; // type:function size:0x1A0 +fn_801EC28C = .text:0x801EC28C; // type:function size:0x7C +fn_801EC308 = .text:0x801EC308; // type:function size:0x4 +fn_801EC30C = .text:0x801EC30C; // type:function size:0x74 +fn_801EC380 = .text:0x801EC380; // type:function size:0x44 +fn_801EC3C4 = .text:0x801EC3C4; // type:function size:0x44 +fn_801EC408 = .text:0x801EC408; // type:function size:0x234 +fn_801EC63C = .text:0x801EC63C; // type:function size:0x80 +fn_801EC6BC = .text:0x801EC6BC; // type:function size:0x74 +fn_801EC730 = .text:0x801EC730; // type:function size:0x8 +fn_801EC738 = .text:0x801EC738; // type:function size:0x108 +fn_801EC840 = .text:0x801EC840; // type:function size:0xE0 +fn_801EC920 = .text:0x801EC920; // type:function size:0x68 +fn_801EC988 = .text:0x801EC988; // type:function size:0x74 +fn_801EC9FC = .text:0x801EC9FC; // type:function size:0x38 +fn_801ECA34 = .text:0x801ECA34; // type:function size:0x14 +fn_801ECA48 = .text:0x801ECA48; // type:function size:0xC8 +fn_801ECB10 = .text:0x801ECB10; // type:function size:0x68 +fn_801ECB78 = .text:0x801ECB78; // type:function size:0xE8 +fn_801ECC60 = .text:0x801ECC60; // type:function size:0x8 +fn_801ECC68 = .text:0x801ECC68; // type:function size:0xEC +fn_801ECD54 = .text:0x801ECD54; // type:function size:0x5C +fn_801ECDB0 = .text:0x801ECDB0; // type:function size:0x24 +fn_801ECDD4 = .text:0x801ECDD4; // type:function size:0x1C +fn_801ECDF0 = .text:0x801ECDF0; // type:function size:0xAC +fn_801ECE9C = .text:0x801ECE9C; // type:function size:0x80 +fn_801ECF1C = .text:0x801ECF1C; // type:function size:0xAC +fn_801ECFC8 = .text:0x801ECFC8; // type:function size:0x80 +fn_801ED048 = .text:0x801ED048; // type:function size:0xAC +fn_801ED0F4 = .text:0x801ED0F4; // type:function size:0x78 +fn_801ED16C = .text:0x801ED16C; // type:function size:0x78 +fn_801ED1E4 = .text:0x801ED1E4; // type:function size:0x4C +fn_801ED230 = .text:0x801ED230; // type:function size:0x8 +fn_801ED238 = .text:0x801ED238; // type:function size:0x78 +fn_801ED2B0 = .text:0x801ED2B0; // type:function size:0x4C +fn_801ED2FC = .text:0x801ED2FC; // type:function size:0x8 +fn_801ED304 = .text:0x801ED304; // type:function size:0x78 +fn_801ED37C = .text:0x801ED37C; // type:function size:0x4C +fn_801ED3C8 = .text:0x801ED3C8; // type:function size:0x8 +fn_801ED3D0 = .text:0x801ED3D0; // type:function size:0x4C +fn_801ED41C = .text:0x801ED41C; // type:function size:0x18 +fn_801ED434 = .text:0x801ED434; // type:function size:0x154 +fn_801ED588 = .text:0x801ED588; // type:function size:0xFC +fn_801ED684 = .text:0x801ED684; // type:function size:0xA8 +fn_801ED72C = .text:0x801ED72C; // type:function size:0x68 +fn_801ED794 = .text:0x801ED794; // type:function size:0xB4 +fn_801ED848 = .text:0x801ED848; // type:function size:0x44 +fn_801ED88C = .text:0x801ED88C; // type:function size:0xCC +fn_801ED958 = .text:0x801ED958; // type:function size:0x138 +fn_801EDA90 = .text:0x801EDA90; // type:function size:0x60 +fn_801EDAF0 = .text:0x801EDAF0; // type:function size:0xF4 +fn_801EDBE4 = .text:0x801EDBE4; // type:function size:0x3C +fn_801EDC20 = .text:0x801EDC20; // type:function size:0x60 +fn_801EDC80 = .text:0x801EDC80; // type:function size:0x60 +fn_801EDCE0 = .text:0x801EDCE0; // type:function size:0x7C +fn_801EDD5C = .text:0x801EDD5C; // type:function size:0x8 +fn_801EDD64 = .text:0x801EDD64; // type:function size:0x210 +fn_801EDF74 = .text:0x801EDF74; // type:function size:0x54 +fn_801EDFC8 = .text:0x801EDFC8; // type:function size:0x5C +fn_801EE024 = .text:0x801EE024; // type:function size:0x104 +fn_801EE128 = .text:0x801EE128; // type:function size:0x58 +fn_801EE180 = .text:0x801EE180; // type:function size:0x8 +fn_801EE188 = .text:0x801EE188; // type:function size:0x4 +fn_801EE18C = .text:0x801EE18C; // type:function size:0x40 +fn_801EE1CC = .text:0x801EE1CC; // type:function size:0x80 +fn_801EE24C = .text:0x801EE24C; // type:function size:0x50 +fn_801EE29C = .text:0x801EE29C; // type:function size:0x34 +fn_801EE2D0 = .text:0x801EE2D0; // type:function size:0x600 +fn_801EE8D0 = .text:0x801EE8D0; // type:function size:0x150 +Handle__21CharacterCreatorPanelFP9DataArrayb = .text:0x801EEA20; // type:function size:0xCD4 +SyncProperty__21CharacterCreatorPanelFR8DataNodeP9DataArrayi6PropOp = .text:0x801EF6F4; // type:function size:0xAC +fn_801EF7A0 = .text:0x801EF7A0; // type:function size:0x3B8 +fn_801EFB58 = .text:0x801EFB58; // type:function size:0x6C +fn_801EFBC4 = .text:0x801EFBC4; // type:function size:0x2C +fn_801EFBF0 = .text:0x801EFBF0; // type:function size:0x134 +fn_801EFD24 = .text:0x801EFD24; // type:function size:0x4C +fn_801EFD70 = .text:0x801EFD70; // type:function size:0x4 +fn_801EFD74 = .text:0x801EFD74; // type:function size:0x100 +fn_801EFE74 = .text:0x801EFE74; // type:function size:0x68 +fn_801EFEDC = .text:0x801EFEDC; // type:function size:0x15C +fn_801F0038 = .text:0x801F0038; // type:function size:0x44 +fn_801F007C = .text:0x801F007C; // type:function size:0x8 +fn_801F0084 = .text:0x801F0084; // type:function size:0x108 +fn_801F018C = .text:0x801F018C; // type:function size:0x5C +fn_801F01E8 = .text:0x801F01E8; // type:function size:0x10 +fn_801F01F8 = .text:0x801F01F8; // type:function size:0x14 +fn_801F020C = .text:0x801F020C; // type:function size:0x14 +fn_801F0220 = .text:0x801F0220; // type:function size:0x14 +fn_801F0234 = .text:0x801F0234; // type:function size:0x14 +fn_801F0248 = .text:0x801F0248; // type:function size:0x14 +fn_801F025C = .text:0x801F025C; // type:function size:0x14 +fn_801F0270 = .text:0x801F0270; // type:function size:0x14 +fn_801F0284 = .text:0x801F0284; // type:function size:0x14 +fn_801F0298 = .text:0x801F0298; // type:function size:0x8 +fn_801F02A0 = .text:0x801F02A0; // type:function size:0x8 +fn_801F02A8 = .text:0x801F02A8; // type:function size:0x3C +fn_801F02E4 = .text:0x801F02E4; // type:function size:0x68 +fn_801F034C = .text:0x801F034C; // type:function size:0x4C +fn_801F0398 = .text:0x801F0398; // type:function size:0xA4 +fn_801F043C = .text:0x801F043C; // type:function size:0x60 +fn_801F049C = .text:0x801F049C; // type:function size:0x10 +fn_801F04AC = .text:0x801F04AC; // type:function size:0x30 +fn_801F04DC = .text:0x801F04DC; // type:function size:0x54 +fn_801F0530 = .text:0x801F0530; // type:function size:0x40 +__ct__8FilePathFv = .text:0x801F0570; // type:function size:0x3C +fn_801F05AC = .text:0x801F05AC; // type:function size:0x78 +fn_801F0624 = .text:0x801F0624; // type:function size:0x44 +fn_801F0668 = .text:0x801F0668; // type:function size:0xB8 +fn_801F0720 = .text:0x801F0720; // type:function size:0x14 +fn_801F0734 = .text:0x801F0734; // type:function size:0x58 +fn_801F078C = .text:0x801F078C; // type:function size:0xA0 +fn_801F082C = .text:0x801F082C; // type:function size:0x5C +fn_801F0888 = .text:0x801F0888; // type:function size:0x64 +fn_801F08EC = .text:0x801F08EC; // type:function size:0x6C +Handle__9CharCacheFP9DataArrayb = .text:0x801F0958; // type:function size:0x208 +fn_801F0B60 = .text:0x801F0B60; // type:function size:0x3B0 +fn_801F0F10 = .text:0x801F0F10; // type:function size:0x3C +fn_801F0F4C = .text:0x801F0F4C; // type:function size:0xA0 +fn_801F0FEC = .text:0x801F0FEC; // type:function size:0x8 +fn_801F0FF4 = .text:0x801F0FF4; // type:function size:0x3C +fn_801F1030 = .text:0x801F1030; // type:function size:0xA0 +fn_801F10D0 = .text:0x801F10D0; // type:function size:0xA0 +fn_801F1170 = .text:0x801F1170; // type:function size:0x34 +fn_801F11A4 = .text:0x801F11A4; // type:function size:0x3C +__ct__8CharDataFv = .text:0x801F11E0; // type:function size:0x74 +__dt__8CharDataFv = .text:0x801F1254; // type:function size:0x70 +Handle__8CharDataFP9DataArrayb = .text:0x801F12C4; // type:function size:0xD0 +fn_801F1394 = .text:0x801F1394; // type:function size:0x120 +fn_801F14B4 = .text:0x801F14B4; // type:function size:0xB0 +__dt__10PrefabCharFv = .text:0x801F1564; // type:function size:0xCC +fn_801F1630 = .text:0x801F1630; // type:function size:0x30 +fn_801F1660 = .text:0x801F1660; // type:function size:0x8 +fn_801F1668 = .text:0x801F1668; // type:function size:0x8 +fn_801F1670 = .text:0x801F1670; // type:function size:0x60 +fn_801F16D0 = .text:0x801F16D0; // type:function size:0x8 +fn_801F16D8 = .text:0x801F16D8; // type:function size:0x8 +fn_801F16E0 = .text:0x801F16E0; // type:function size:0x8 +fn_801F16E8 = .text:0x801F16E8; // type:function size:0x38 +fn_801F1720 = .text:0x801F1720; // type:function size:0xB0 +fn_801F17D0 = .text:0x801F17D0; // type:function size:0x90 +fn_801F1860 = .text:0x801F1860; // type:function size:0x48 +fn_801F18A8 = .text:0x801F18A8; // type:function size:0x4C +fn_801F18F4 = .text:0x801F18F4; // type:function size:0x10 +fn_801F1904 = .text:0x801F1904; // type:function size:0x80 +fn_801F1984 = .text:0x801F1984; // type:function size:0x14 +fn_801F1998 = .text:0x801F1998; // type:function size:0x14 +fn_801F19AC = .text:0x801F19AC; // type:function size:0x14 +fn_801F19C0 = .text:0x801F19C0; // type:function size:0x14 +fn_801F19D4 = .text:0x801F19D4; // type:function size:0x7C +fn_801F1A50 = .text:0x801F1A50; // type:function size:0xB0 +fn_801F1B00 = .text:0x801F1B00; // type:function size:0x9C +fn_801F1B9C = .text:0x801F1B9C; // type:function size:0x884 +fn_801F2420 = .text:0x801F2420; // type:function size:0x24 +fn_801F2444 = .text:0x801F2444; // type:function size:0x4 +fn_801F2448 = .text:0x801F2448; // type:function size:0x44 +fn_801F248C = .text:0x801F248C; // type:function size:0x6C +fn_801F24F8 = .text:0x801F24F8; // type:function size:0x30 +fn_801F2528 = .text:0x801F2528; // type:function size:0x3C +fn_801F2564 = .text:0x801F2564; // type:function size:0x8 +fn_801F256C = .text:0x801F256C; // type:function size:0x8 +fn_801F2574 = .text:0x801F2574; // type:function size:0x34 +fn_801F25A8 = .text:0x801F25A8; // type:function size:0x4 +fn_801F25AC = .text:0x801F25AC; // type:function size:0x8 +fn_801F25B4 = .text:0x801F25B4; // type:function size:0x48 +fn_801F25FC = .text:0x801F25FC; // type:function size:0x4C +fn_801F2648 = .text:0x801F2648; // type:function size:0x3C +fn_801F2684 = .text:0x801F2684; // type:function size:0xB4 +Handle__8CharSyncFP9DataArrayb = .text:0x801F2738; // type:function size:0x1A0 +__ct__17ProfileChangedMsgFP9DataArray = .text:0x801F28D8; // type:function size:0x3C +fn_801F2914 = .text:0x801F2914; // type:function size:0x8C +fn_801F29A0 = .text:0x801F29A0; // type:function size:0x58 +fn_801F29F8 = .text:0x801F29F8; // type:function size:0x80 +fn_801F2A78 = .text:0x801F2A78; // type:function size:0x80 +fn_801F2AF8 = .text:0x801F2AF8; // type:function size:0x58 +fn_801F2B50 = .text:0x801F2B50; // type:function size:0x54 +fn_801F2BA4 = .text:0x801F2BA4; // type:function size:0x5C +fn_801F2C00 = .text:0x801F2C00; // type:function size:0x6C +fn_801F2C6C = .text:0x801F2C6C; // type:function size:0x28 +fn_801F2C94 = .text:0x801F2C94; // type:function size:0x8 +fn_801F2C9C = .text:0x801F2C9C; // type:function size:0x8 +fn_801F2CA4 = .text:0x801F2CA4; // type:function size:0x3C +fn_801F2CE0 = .text:0x801F2CE0; // type:function size:0x30 +fn_801F2D10 = .text:0x801F2D10; // type:function size:0x30 +fn_801F2D40 = .text:0x801F2D40; // type:function size:0x40 +fn_801F2D80 = .text:0x801F2D80; // type:function size:0x8C +fn_801F2E0C = .text:0x801F2E0C; // type:function size:0x2FC +fn_801F3108 = .text:0x801F3108; // type:function size:0x88 +fn_801F3190 = .text:0x801F3190; // type:function size:0x104 +fn_801F3294 = .text:0x801F3294; // type:function size:0x30 +fn_801F32C4 = .text:0x801F32C4; // type:function size:0xCC +fn_801F3390 = .text:0x801F3390; // type:function size:0x34 +fn_801F33C4 = .text:0x801F33C4; // type:function size:0xA4 +fn_801F3468 = .text:0x801F3468; // type:function size:0xF8 +fn_801F3560 = .text:0x801F3560; // type:function size:0xA8 +fn_801F3608 = .text:0x801F3608; // type:function size:0x6C +fn_801F3674 = .text:0x801F3674; // type:function size:0x30 +fn_801F36A4 = .text:0x801F36A4; // type:function size:0x74 +fn_801F3718 = .text:0x801F3718; // type:function size:0x88 +fn_801F37A0 = .text:0x801F37A0; // type:function size:0x80 +fn_801F3820 = .text:0x801F3820; // type:function size:0xA4 +fn_801F38C4 = .text:0x801F38C4; // type:function size:0x6C +fn_801F3930 = .text:0x801F3930; // type:function size:0xC +fn_801F393C = .text:0x801F393C; // type:function size:0x58 +fn_801F3994 = .text:0x801F3994; // type:function size:0x64 +fn_801F39F8 = .text:0x801F39F8; // type:function size:0xE0 +fn_801F3AD8 = .text:0x801F3AD8; // type:function size:0x94 +fn_801F3B6C = .text:0x801F3B6C; // type:function size:0x88 +fn_801F3BF4 = .text:0x801F3BF4; // type:function size:0xA4 +fn_801F3C98 = .text:0x801F3C98; // type:function size:0x78 +fn_801F3D10 = .text:0x801F3D10; // type:function size:0x58 +fn_801F3D68 = .text:0x801F3D68; // type:function size:0x64 +fn_801F3DCC = .text:0x801F3DCC; // type:function size:0x28 +fn_801F3DF4 = .text:0x801F3DF4; // type:function size:0x68 +fn_801F3E5C = .text:0x801F3E5C; // type:function size:0x30 +fn_801F3E8C = .text:0x801F3E8C; // type:function size:0x78 +fn_801F3F04 = .text:0x801F3F04; // type:function size:0x4 +fn_801F3F08 = .text:0x801F3F08; // type:function size:0x88 +fn_801F3F90 = .text:0x801F3F90; // type:function size:0x2C +fn_801F3FBC = .text:0x801F3FBC; // type:function size:0x10 +fn_801F3FCC = .text:0x801F3FCC; // type:function size:0x58 +fn_801F4024 = .text:0x801F4024; // type:function size:0x25C +fn_801F4280 = .text:0x801F4280; // type:function size:0xC +fn_801F428C = .text:0x801F428C; // type:function size:0x3C +fn_801F42C8 = .text:0x801F42C8; // type:function size:0x40 +fn_801F4308 = .text:0x801F4308; // type:function size:0x8C +fn_801F4394 = .text:0x801F4394; // type:function size:0x8 +fn_801F439C = .text:0x801F439C; // type:function size:0x2C +fn_801F43C8 = .text:0x801F43C8; // type:function size:0x58 +fn_801F4420 = .text:0x801F4420; // type:function size:0x28 +fn_801F4448 = .text:0x801F4448; // type:function size:0x68 +fn_801F44B0 = .text:0x801F44B0; // type:function size:0x174 +fn_801F4624 = .text:0x801F4624; // type:function size:0xD4 +fn_801F46F8 = .text:0x801F46F8; // type:function size:0x6C +fn_801F4764 = .text:0x801F4764; // type:function size:0x8 +fn_801F476C = .text:0x801F476C; // type:function size:0x84 +fn_801F47F0 = .text:0x801F47F0; // type:function size:0x7C +fn_801F486C = .text:0x801F486C; // type:function size:0x84 +fn_801F48F0 = .text:0x801F48F0; // type:function size:0x80 +fn_801F4970 = .text:0x801F4970; // type:function size:0x84 +fn_801F49F4 = .text:0x801F49F4; // type:function size:0x84 +fn_801F4A78 = .text:0x801F4A78; // type:function size:0x80 +Handle__12CharProviderFP9DataArrayb = .text:0x801F4AF8; // type:function size:0xD0 +fn_801F4BC8 = .text:0x801F4BC8; // type:function size:0x114 +fn_801F4CDC = .text:0x801F4CDC; // type:function size:0x5C +fn_801F4D38 = .text:0x801F4D38; // type:function size:0x5C +fn_801F4D94 = .text:0x801F4D94; // type:function size:0x54 +fn_801F4DE8 = .text:0x801F4DE8; // type:function size:0x5C +fn_801F4E44 = .text:0x801F4E44; // type:function size:0x5C +fn_801F4EA0 = .text:0x801F4EA0; // type:function size:0x8 +fn_801F4EA8 = .text:0x801F4EA8; // type:function size:0x8 +fn_801F4EB0 = .text:0x801F4EB0; // type:function size:0xA0 +fn_801F4F50 = .text:0x801F4F50; // type:function size:0x58 +fn_801F4FA8 = .text:0x801F4FA8; // type:function size:0x60 +fn_801F5008 = .text:0x801F5008; // type:function size:0x58 +fn_801F5060 = .text:0x801F5060; // type:function size:0x58 +fn_801F50B8 = .text:0x801F50B8; // type:function size:0x50 +fn_801F5108 = .text:0x801F5108; // type:function size:0x44 +fn_801F514C = .text:0x801F514C; // type:function size:0x3C +fn_801F5188 = .text:0x801F5188; // type:function size:0x70 +fn_801F51F8 = .text:0x801F51F8; // type:function size:0x140 +fn_801F5338 = .text:0x801F5338; // type:function size:0x10 +fn_801F5348 = .text:0x801F5348; // type:function size:0x4 +fn_801F534C = .text:0x801F534C; // type:function size:0x34 +fn_801F5380 = .text:0x801F5380; // type:function size:0x4 +fn_801F5384 = .text:0x801F5384; // type:function size:0x4 +fn_801F5388 = .text:0x801F5388; // type:function size:0x48 +fn_801F53D0 = .text:0x801F53D0; // type:function size:0x4 +fn_801F53D4 = .text:0x801F53D4; // type:function size:0x44 +fn_801F5418 = .text:0x801F5418; // type:function size:0x104 +fn_801F551C = .text:0x801F551C; // type:function size:0x58 +fn_801F5574 = .text:0x801F5574; // type:function size:0x8 +fn_801F557C = .text:0x801F557C; // type:function size:0x4 +fn_801F5580 = .text:0x801F5580; // type:function size:0x40 +fn_801F55C0 = .text:0x801F55C0; // type:function size:0x80 +fn_801F5640 = .text:0x801F5640; // type:function size:0x30 +fn_801F5670 = .text:0x801F5670; // type:function size:0x30 +fn_801F56A0 = .text:0x801F56A0; // type:function size:0x24 +Handle__16ChooseColorPanelFP9DataArrayb = .text:0x801F56C4; // type:function size:0x170 +fn_801F5834 = .text:0x801F5834; // type:function size:0xE0 +fn_801F5914 = .text:0x801F5914; // type:function size:0x8C +fn_801F59A0 = .text:0x801F59A0; // type:function size:0x3B8 +fn_801F5D58 = .text:0x801F5D58; // type:function size:0x6C +fn_801F5DC4 = .text:0x801F5DC4; // type:function size:0x2C +fn_801F5DF0 = .text:0x801F5DF0; // type:function size:0x134 +fn_801F5F24 = .text:0x801F5F24; // type:function size:0x4C +fn_801F5F70 = .text:0x801F5F70; // type:function size:0x4 +fn_801F5F74 = .text:0x801F5F74; // type:function size:0x15C +fn_801F60D0 = .text:0x801F60D0; // type:function size:0x44 +fn_801F6114 = .text:0x801F6114; // type:function size:0x8 +fn_801F611C = .text:0x801F611C; // type:function size:0x108 +fn_801F6224 = .text:0x801F6224; // type:function size:0x5C +fn_801F6280 = .text:0x801F6280; // type:function size:0x10 +fn_801F6290 = .text:0x801F6290; // type:function size:0x14 +fn_801F62A4 = .text:0x801F62A4; // type:function size:0x14 +fn_801F62B8 = .text:0x801F62B8; // type:function size:0x14 +fn_801F62CC = .text:0x801F62CC; // type:function size:0x14 +fn_801F62E0 = .text:0x801F62E0; // type:function size:0x14 +fn_801F62F4 = .text:0x801F62F4; // type:function size:0x174 +fn_801F6468 = .text:0x801F6468; // type:function size:0x44 +fn_801F64AC = .text:0x801F64AC; // type:function size:0xE8 +fn_801F6594 = .text:0x801F6594; // type:function size:0x3C +fn_801F65D0 = .text:0x801F65D0; // type:function size:0xC +fn_801F65DC = .text:0x801F65DC; // type:function size:0x70 +fn_801F664C = .text:0x801F664C; // type:function size:0xB0 +fn_801F66FC = .text:0x801F66FC; // type:function size:0x8 +fn_801F6704 = .text:0x801F6704; // type:function size:0x8 +fn_801F670C = .text:0x801F670C; // type:function size:0x88 +fn_801F6794 = .text:0x801F6794; // type:function size:0xAC +fn_801F6840 = .text:0x801F6840; // type:function size:0xF4 +fn_801F6934 = .text:0x801F6934; // type:function size:0x14 +fn_801F6948 = .text:0x801F6948; // type:function size:0x54 +fn_801F699C = .text:0x801F699C; // type:function size:0x1E4 +fn_801F6B80 = .text:0x801F6B80; // type:function size:0x8 +fn_801F6B88 = .text:0x801F6B88; // type:function size:0xC +fn_801F6B94 = .text:0x801F6B94; // type:function size:0x60 +fn_801F6BF4 = .text:0x801F6BF4; // type:function size:0xCC +fn_801F6CC0 = .text:0x801F6CC0; // type:function size:0xAC +fn_801F6D6C = .text:0x801F6D6C; // type:function size:0x78 +fn_801F6DE4 = .text:0x801F6DE4; // type:function size:0x40 +fn_801F6E24 = .text:0x801F6E24; // type:function size:0x90 +fn_801F6EB4 = .text:0x801F6EB4; // type:function size:0x158 +fn_801F700C = .text:0x801F700C; // type:function size:0x14 +fn_801F7020 = .text:0x801F7020; // type:function size:0xAC +fn_801F70CC = .text:0x801F70CC; // type:function size:0x4C +fn_801F7118 = .text:0x801F7118; // type:function size:0x4C +fn_801F7164 = .text:0x801F7164; // type:function size:0x90 +fn_801F71F4 = .text:0x801F71F4; // type:function size:0x4C +fn_801F7240 = .text:0x801F7240; // type:function size:0x4C +fn_801F728C = .text:0x801F728C; // type:function size:0x58 +fn_801F72E4 = .text:0x801F72E4; // type:function size:0x88 +fn_801F736C = .text:0x801F736C; // type:function size:0x64 +fn_801F73D0 = .text:0x801F73D0; // type:function size:0x5C +fn_801F742C = .text:0x801F742C; // type:function size:0x50 +fn_801F747C = .text:0x801F747C; // type:function size:0x30 +fn_801F74AC = .text:0x801F74AC; // type:function size:0x14 +fn_801F74C0 = .text:0x801F74C0; // type:function size:0xB0 +fn_801F7570 = .text:0x801F7570; // type:function size:0x104 +fn_801F7674 = .text:0x801F7674; // type:function size:0x114 +fn_801F7788 = .text:0x801F7788; // type:function size:0x90 +fn_801F7818 = .text:0x801F7818; // type:function size:0x10C +fn_801F7924 = .text:0x801F7924; // type:function size:0x8 +fn_801F792C = .text:0x801F792C; // type:function size:0x8 +fn_801F7934 = .text:0x801F7934; // type:function size:0x8 +fn_801F793C = .text:0x801F793C; // type:function size:0x8 +fn_801F7944 = .text:0x801F7944; // type:function size:0xF4 +fn_801F7A38 = .text:0x801F7A38; // type:function size:0x8 +fn_801F7A40 = .text:0x801F7A40; // type:function size:0x70 +fn_801F7AB0 = .text:0x801F7AB0; // type:function size:0x8 +fn_801F7AB8 = .text:0x801F7AB8; // type:function size:0x8 +fn_801F7AC0 = .text:0x801F7AC0; // type:function size:0x1C +fn_801F7ADC = .text:0x801F7ADC; // type:function size:0x70 +fn_801F7B4C = .text:0x801F7B4C; // type:function size:0x5C +Handle__9ClosetMgrFP9DataArrayb = .text:0x801F7BA8; // type:function size:0x708 +fn_801F82B0 = .text:0x801F82B0; // type:function size:0x34 +fn_801F82E4 = .text:0x801F82E4; // type:function size:0x3C +fn_801F8320 = .text:0x801F8320; // type:function size:0x8 +fn_801F8328 = .text:0x801F8328; // type:function size:0x160 +fn_801F8488 = .text:0x801F8488; // type:function size:0x5C +fn_801F84E4 = .text:0x801F84E4; // type:function size:0x10 +fn_801F84F4 = .text:0x801F84F4; // type:function size:0x84 +fn_801F8578 = .text:0x801F8578; // type:function size:0x8 +fn_801F8580 = .text:0x801F8580; // type:function size:0x2C +fn_801F85AC = .text:0x801F85AC; // type:function size:0x58 +fn_801F8604 = .text:0x801F8604; // type:function size:0x68 +fn_801F866C = .text:0x801F866C; // type:function size:0x28 +fn_801F8694 = .text:0x801F8694; // type:function size:0x68 +fn_801F86FC = .text:0x801F86FC; // type:function size:0x80 +fn_801F877C = .text:0x801F877C; // type:function size:0x5C +fn_801F87D8 = .text:0x801F87D8; // type:function size:0x10 +fn_801F87E8 = .text:0x801F87E8; // type:function size:0x54 +fn_801F883C = .text:0x801F883C; // type:function size:0x5C +fn_801F8898 = .text:0x801F8898; // type:function size:0x6C +fn_801F8904 = .text:0x801F8904; // type:function size:0x28 +fn_801F892C = .text:0x801F892C; // type:function size:0x10 +fn_801F893C = .text:0x801F893C; // type:function size:0xC +fn_801F8948 = .text:0x801F8948; // type:function size:0x8 +fn_801F8950 = .text:0x801F8950; // type:function size:0x3C +fn_801F898C = .text:0x801F898C; // type:function size:0x60 +fn_801F89EC = .text:0x801F89EC; // type:function size:0xC +fn_801F89F8 = .text:0x801F89F8; // type:function size:0x14 +fn_801F8A0C = .text:0x801F8A0C; // type:function size:0x14 +fn_801F8A20 = .text:0x801F8A20; // type:function size:0x14 +fn_801F8A34 = .text:0x801F8A34; // type:function size:0x14 +fn_801F8A48 = .text:0x801F8A48; // type:function size:0x14 +fn_801F8A5C = .text:0x801F8A5C; // type:function size:0x14 +fn_801F8A70 = .text:0x801F8A70; // type:function size:0x14 +fn_801F8A84 = .text:0x801F8A84; // type:function size:0x8C +fn_801F8B10 = .text:0x801F8B10; // type:function size:0x34 +fn_801F8B44 = .text:0x801F8B44; // type:function size:0x60 +fn_801F8BA4 = .text:0x801F8BA4; // type:function size:0x4 +fn_801F8BA8 = .text:0x801F8BA8; // type:function size:0x94 +fn_801F8C3C = .text:0x801F8C3C; // type:function size:0x8 +fn_801F8C44 = .text:0x801F8C44; // type:function size:0x40 +fn_801F8C84 = .text:0x801F8C84; // type:function size:0x34 +fn_801F8CB8 = .text:0x801F8CB8; // type:function size:0x54 +fn_801F8D0C = .text:0x801F8D0C; // type:function size:0x3C +fn_801F8D48 = .text:0x801F8D48; // type:function size:0x8 +fn_801F8D50 = .text:0x801F8D50; // type:function size:0x8 +fn_801F8D58 = .text:0x801F8D58; // type:function size:0xC4 +fn_801F8E1C = .text:0x801F8E1C; // type:function size:0xA0 +fn_801F8EBC = .text:0x801F8EBC; // type:function size:0x1F4 +fn_801F90B0 = .text:0x801F90B0; // type:function size:0x60 +fn_801F9110 = .text:0x801F9110; // type:function size:0x24 +fn_801F9134 = .text:0x801F9134; // type:function size:0x44 +fn_801F9178 = .text:0x801F9178; // type:function size:0xC +fn_801F9184 = .text:0x801F9184; // type:function size:0xA8 +fn_801F922C = .text:0x801F922C; // type:function size:0xAC +fn_801F92D8 = .text:0x801F92D8; // type:function size:0x30 +fn_801F9308 = .text:0x801F9308; // type:function size:0x1C +Handle__11ClosetPanelFP9DataArrayb = .text:0x801F9324; // type:function size:0x190 +fn_801F94B4 = .text:0x801F94B4; // type:function size:0x34 +fn_801F94E8 = .text:0x801F94E8; // type:function size:0x3C +fn_801F9524 = .text:0x801F9524; // type:function size:0x7C +fn_801F95A0 = .text:0x801F95A0; // type:function size:0x134 +fn_801F96D4 = .text:0x801F96D4; // type:function size:0x4C +fn_801F9720 = .text:0x801F9720; // type:function size:0x4 +fn_801F9724 = .text:0x801F9724; // type:function size:0x14 +fn_801F9738 = .text:0x801F9738; // type:function size:0x14 +fn_801F974C = .text:0x801F974C; // type:function size:0x14 +fn_801F9760 = .text:0x801F9760; // type:function size:0x14 +fn_801F9774 = .text:0x801F9774; // type:function size:0xE4 +fn_801F9858 = .text:0x801F9858; // type:function size:0x5C +fn_801F98B4 = .text:0x801F98B4; // type:function size:0x188 +fn_801F9A3C = .text:0x801F9A3C; // type:function size:0x30 +fn_801F9A6C = .text:0x801F9A6C; // type:function size:0x8 +fn_801F9A74 = .text:0x801F9A74; // type:function size:0x1C8 +fn_801F9C3C = .text:0x801F9C3C; // type:function size:0x20 +fn_801F9C5C = .text:0x801F9C5C; // type:function size:0x68 +fn_801F9CC4 = .text:0x801F9CC4; // type:function size:0xC +fn_801F9CD0 = .text:0x801F9CD0; // type:function size:0x18 +Handle__18ContentDeletePanelFP9DataArrayb = .text:0x801F9CE8; // type:function size:0x1CC +fn_801F9EB4 = .text:0x801F9EB4; // type:function size:0xAC +fn_801F9F60 = .text:0x801F9F60; // type:function size:0xA4 +fn_801FA004 = .text:0x801FA004; // type:function size:0x134 +fn_801FA138 = .text:0x801FA138; // type:function size:0x4C +fn_801FA184 = .text:0x801FA184; // type:function size:0x4 +fn_801FA188 = .text:0x801FA188; // type:function size:0x14 +fn_801FA19C = .text:0x801FA19C; // type:function size:0x14 +fn_801FA1B0 = .text:0x801FA1B0; // type:function size:0x14 +fn_801FA1C4 = .text:0x801FA1C4; // type:function size:0x14 +fn_801FA1D8 = .text:0x801FA1D8; // type:function size:0x14 +fn_801FA1EC = .text:0x801FA1EC; // type:function size:0x14 +fn_801FA200 = .text:0x801FA200; // type:function size:0x14 +fn_801FA214 = .text:0x801FA214; // type:function size:0x14 +fn_801FA228 = .text:0x801FA228; // type:function size:0x8 +fn_801FA230 = .text:0x801FA230; // type:function size:0x8 +fn_801FA238 = .text:0x801FA238; // type:function size:0x8 +fn_801FA240 = .text:0x801FA240; // type:function size:0xD4 +fn_801FA314 = .text:0x801FA314; // type:function size:0xC8 +fn_801FA3DC = .text:0x801FA3DC; // type:function size:0x94 +fn_801FA470 = .text:0x801FA470; // type:function size:0x5C +fn_801FA4CC = .text:0x801FA4CC; // type:function size:0xB4 +fn_801FA580 = .text:0x801FA580; // type:function size:0x78 +fn_801FA5F8 = .text:0x801FA5F8; // type:function size:0x78 +fn_801FA670 = .text:0x801FA670; // type:function size:0x54 +fn_801FA6C4 = .text:0x801FA6C4; // type:function size:0xA4 +fn_801FA768 = .text:0x801FA768; // type:function size:0x8C +fn_801FA7F4 = .text:0x801FA7F4; // type:function size:0xA0 +fn_801FA894 = .text:0x801FA894; // type:function size:0x88 +fn_801FA91C = .text:0x801FA91C; // type:function size:0x4 +fn_801FA920 = .text:0x801FA920; // type:function size:0x78 +fn_801FA998 = .text:0x801FA998; // type:function size:0x64 +fn_801FA9FC = .text:0x801FA9FC; // type:function size:0xA0 +Handle__19ContentLoadingPanelFP9DataArrayb = .text:0x801FAA9C; // type:function size:0x114 +fn_801FABB0 = .text:0x801FABB0; // type:function size:0x134 +fn_801FACE4 = .text:0x801FACE4; // type:function size:0x4C +fn_801FAD30 = .text:0x801FAD30; // type:function size:0x4 +fn_801FAD34 = .text:0x801FAD34; // type:function size:0x14 +fn_801FAD48 = .text:0x801FAD48; // type:function size:0x14 +fn_801FAD5C = .text:0x801FAD5C; // type:function size:0x14 +fn_801FAD70 = .text:0x801FAD70; // type:function size:0x14 +fn_801FAD84 = .text:0x801FAD84; // type:function size:0x14 +fn_801FAD98 = .text:0x801FAD98; // type:function size:0x14 +fn_801FADAC = .text:0x801FADAC; // type:function size:0x14 +fn_801FADC0 = .text:0x801FADC0; // type:function size:0x8 +fn_801FADC8 = .text:0x801FADC8; // type:function size:0x8 +fn_801FADD0 = .text:0x801FADD0; // type:function size:0x8 +fn_801FADD8 = .text:0x801FADD8; // type:function size:0x8 +fn_801FADE0 = .text:0x801FADE0; // type:function size:0x8 +fn_801FADE8 = .text:0x801FADE8; // type:function size:0x8 +fn_801FADF0 = .text:0x801FADF0; // type:function size:0x8 +fn_801FADF8 = .text:0x801FADF8; // type:function size:0x8 +fn_801FAE00 = .text:0x801FAE00; // type:function size:0x5C +fn_801FAE5C = .text:0x801FAE5C; // type:function size:0x78 +fn_801FAED4 = .text:0x801FAED4; // type:function size:0x70 +fn_801FAF44 = .text:0x801FAF44; // type:function size:0x70 +fn_801FAFB4 = .text:0x801FAFB4; // type:function size:0x44 +fn_801FAFF8 = .text:0x801FAFF8; // type:function size:0x6C +fn_801FB064 = .text:0x801FB064; // type:function size:0x88 +fn_801FB0EC = .text:0x801FB0EC; // type:function size:0x80 +fn_801FB16C = .text:0x801FB16C; // type:function size:0x90 +fn_801FB1FC = .text:0x801FB1FC; // type:function size:0x90 +fn_801FB28C = .text:0x801FB28C; // type:function size:0xC4 +fn_801FB350 = .text:0x801FB350; // type:function size:0x8 +fn_801FB358 = .text:0x801FB358; // type:function size:0x94 +fn_801FB3EC = .text:0x801FB3EC; // type:function size:0x74 +fn_801FB460 = .text:0x801FB460; // type:function size:0x7C +fn_801FB4DC = .text:0x801FB4DC; // type:function size:0x74 +fn_801FB550 = .text:0x801FB550; // type:function size:0x5AC +GetLine__9DataArrayFv = .text:0x801FBAFC; // type:function size:0x8 +fn_801FBB04 = .text:0x801FBB04; // type:function size:0x44 +fn_801FBB48 = .text:0x801FBB48; // type:function size:0x30 +fn_801FBB78 = .text:0x801FBB78; // type:function size:0xA0 +fn_801FBC18 = .text:0x801FBC18; // type:function size:0x4 +fn_801FBC1C = .text:0x801FBC1C; // type:function size:0x88 +fn_801FBCA4 = .text:0x801FBCA4; // type:function size:0x2C +fn_801FBCD0 = .text:0x801FBCD0; // type:function size:0x10 +fn_801FBCE0 = .text:0x801FBCE0; // type:function size:0x54 +fn_801FBD34 = .text:0x801FBD34; // type:function size:0x4C +fn_801FBD80 = .text:0x801FBD80; // type:function size:0x94 +fn_801FBE14 = .text:0x801FBE14; // type:function size:0x30 +fn_801FBE44 = .text:0x801FBE44; // type:function size:0x12C +fn_801FBF70 = .text:0x801FBF70; // type:function size:0x1DC +fn_801FC14C = .text:0x801FC14C; // type:function size:0x178 +fn_801FC2C4 = .text:0x801FC2C4; // type:function size:0x58 +fn_801FC31C = .text:0x801FC31C; // type:function size:0x80 +fn_801FC39C = .text:0x801FC39C; // type:function size:0x80 +fn_801FC41C = .text:0x801FC41C; // type:function size:0x58 +fn_801FC474 = .text:0x801FC474; // type:function size:0x54 +fn_801FC4C8 = .text:0x801FC4C8; // type:function size:0x5C +fn_801FC524 = .text:0x801FC524; // type:function size:0x6C +fn_801FC590 = .text:0x801FC590; // type:function size:0x28 +fn_801FC5B8 = .text:0x801FC5B8; // type:function size:0x8 +fn_801FC5C0 = .text:0x801FC5C0; // type:function size:0x3C +fn_801FC5FC = .text:0x801FC5FC; // type:function size:0x30 +fn_801FC62C = .text:0x801FC62C; // type:function size:0x30 +fn_801FC65C = .text:0x801FC65C; // type:function size:0x40 +fn_801FC69C = .text:0x801FC69C; // type:function size:0xC +fn_801FC6A8 = .text:0x801FC6A8; // type:function size:0x48 +fn_801FC6F0 = .text:0x801FC6F0; // type:function size:0x48 +fn_801FC738 = .text:0x801FC738; // type:function size:0x48 +fn_801FC780 = .text:0x801FC780; // type:function size:0x10 +fn_801FC790 = .text:0x801FC790; // type:function size:0x44 +fn_801FC7D4 = .text:0x801FC7D4; // type:function size:0x4C +fn_801FC820 = .text:0x801FC820; // type:function size:0xB8 +fn_801FC8D8 = .text:0x801FC8D8; // type:function size:0x114 +fn_801FC9EC = .text:0x801FC9EC; // type:function size:0x5C +fn_801FCA48 = .text:0x801FCA48; // type:function size:0x5C +fn_801FCAA4 = .text:0x801FCAA4; // type:function size:0x54 +fn_801FCAF8 = .text:0x801FCAF8; // type:function size:0x5C +fn_801FCB54 = .text:0x801FCB54; // type:function size:0x5C +fn_801FCBB0 = .text:0x801FCBB0; // type:function size:0x70 +fn_801FCC20 = .text:0x801FCC20; // type:function size:0xE8 +fn_801FCD08 = .text:0x801FCD08; // type:function size:0xA4 +fn_801FCDAC = .text:0x801FCDAC; // type:function size:0x50 +fn_801FCDFC = .text:0x801FCDFC; // type:function size:0x10 +fn_801FCE0C = .text:0x801FCE0C; // type:function size:0x88 +fn_801FCE94 = .text:0x801FCE94; // type:function size:0x154 +Handle__20CriticalUserListenerFP9DataArrayb = .text:0x801FCFE8; // type:function size:0x26C +fn_801FD254 = .text:0x801FD254; // type:function size:0x74 +fn_801FD2C8 = .text:0x801FD2C8; // type:function size:0x74 +fn_801FD33C = .text:0x801FD33C; // type:function size:0x9C +fn_801FD3D8 = .text:0x801FD3D8; // type:function size:0x60 +fn_801FD438 = .text:0x801FD438; // type:function size:0xF0 +fn_801FD528 = .text:0x801FD528; // type:function size:0x110 +fn_801FD638 = .text:0x801FD638; // type:function size:0x68 +fn_801FD6A0 = .text:0x801FD6A0; // type:function size:0x8 +fn_801FD6A8 = .text:0x801FD6A8; // type:function size:0x8 +fn_801FD6B0 = .text:0x801FD6B0; // type:function size:0x108 +__dt__14CustomizePanelFv = .text:0x801FD7B8; // type:function size:0xCC +fn_801FD884 = .text:0x801FD884; // type:function size:0x160 +fn_801FD9E4 = .text:0x801FD9E4; // type:function size:0x44 +fn_801FDA28 = .text:0x801FDA28; // type:function size:0x70 +fn_801FDA98 = .text:0x801FDA98; // type:function size:0xB8 +fn_801FDB50 = .text:0x801FDB50; // type:function size:0x44 +fn_801FDB94 = .text:0x801FDB94; // type:function size:0x74 +fn_801FDC08 = .text:0x801FDC08; // type:function size:0x160 +fn_801FDD68 = .text:0x801FDD68; // type:function size:0x30 +fn_801FDD98 = .text:0x801FDD98; // type:function size:0xC +fn_801FDDA4 = .text:0x801FDDA4; // type:function size:0xC +fn_801FDDB0 = .text:0x801FDDB0; // type:function size:0x13C +fn_801FDEEC = .text:0x801FDEEC; // type:function size:0x8 +fn_801FDEF4 = .text:0x801FDEF4; // type:function size:0x8 +fn_801FDEFC = .text:0x801FDEFC; // type:function size:0x34 +fn_801FDF30 = .text:0x801FDF30; // type:function size:0x1C +fn_801FDF4C = .text:0x801FDF4C; // type:function size:0x38 +fn_801FDF84 = .text:0x801FDF84; // type:function size:0x38 +fn_801FDFBC = .text:0x801FDFBC; // type:function size:0x4C +fn_801FE008 = .text:0x801FE008; // type:function size:0x70 +fn_801FE078 = .text:0x801FE078; // type:function size:0x44 +fn_801FE0BC = .text:0x801FE0BC; // type:function size:0x38 +fn_801FE0F4 = .text:0x801FE0F4; // type:function size:0xC +fn_801FE100 = .text:0x801FE100; // type:function size:0x210 +fn_801FE310 = .text:0x801FE310; // type:function size:0x50 +fn_801FE360 = .text:0x801FE360; // type:function size:0x60 +fn_801FE3C0 = .text:0x801FE3C0; // type:function size:0x60 +fn_801FE420 = .text:0x801FE420; // type:function size:0x60 +fn_801FE480 = .text:0x801FE480; // type:function size:0x4E8 +fn_801FE968 = .text:0x801FE968; // type:function size:0x168 +fn_801FEAD0 = .text:0x801FEAD0; // type:function size:0x1F8 +fn_801FECC8 = .text:0x801FECC8; // type:function size:0x60 +fn_801FED28 = .text:0x801FED28; // type:function size:0x60 +fn_801FED88 = .text:0x801FED88; // type:function size:0x60 +fn_801FEDE8 = .text:0x801FEDE8; // type:function size:0x60 +fn_801FEE48 = .text:0x801FEE48; // type:function size:0x1F0 +fn_801FF038 = .text:0x801FF038; // type:function size:0x8 +fn_801FF040 = .text:0x801FF040; // type:function size:0xC +fn_801FF04C = .text:0x801FF04C; // type:function size:0x150 +fn_801FF19C = .text:0x801FF19C; // type:function size:0x4 +fn_801FF1A0 = .text:0x801FF1A0; // type:function size:0x88 +fn_801FF228 = .text:0x801FF228; // type:function size:0x2C +fn_801FF254 = .text:0x801FF254; // type:function size:0x2C +fn_801FF280 = .text:0x801FF280; // type:function size:0x84 +fn_801FF304 = .text:0x801FF304; // type:function size:0x2C +fn_801FF330 = .text:0x801FF330; // type:function size:0x28 +fn_801FF358 = .text:0x801FF358; // type:function size:0x6C +fn_801FF3C4 = .text:0x801FF3C4; // type:function size:0x78 +fn_801FF43C = .text:0x801FF43C; // type:function size:0xE8 +fn_801FF524 = .text:0x801FF524; // type:function size:0x4C +fn_801FF570 = .text:0x801FF570; // type:function size:0xFC +fn_801FF66C = .text:0x801FF66C; // type:function size:0x30 +fn_801FF69C = .text:0x801FF69C; // type:function size:0xAC +fn_801FF748 = .text:0x801FF748; // type:function size:0xFC +fn_801FF844 = .text:0x801FF844; // type:function size:0x60 +fn_801FF8A4 = .text:0x801FF8A4; // type:function size:0x60 +fn_801FF904 = .text:0x801FF904; // type:function size:0x34 +fn_801FF938 = .text:0x801FF938; // type:function size:0x1B0 +fn_801FFAE8 = .text:0x801FFAE8; // type:function size:0x12C +fn_801FFC14 = .text:0x801FFC14; // type:function size:0x5C +fn_801FFC70 = .text:0x801FFC70; // type:function size:0x50 +fn_801FFCC0 = .text:0x801FFCC0; // type:function size:0x34 +fn_801FFCF4 = .text:0x801FFCF4; // type:function size:0x11C +fn_801FFE10 = .text:0x801FFE10; // type:function size:0x20C +fn_8020001C = .text:0x8020001C; // type:function size:0x20 +fn_8020003C = .text:0x8020003C; // type:function size:0x2D8 +fn_80200314 = .text:0x80200314; // type:function size:0x74 +fn_80200388 = .text:0x80200388; // type:function size:0x8 +fn_80200390 = .text:0x80200390; // type:function size:0x12C +fn_802004BC = .text:0x802004BC; // type:function size:0x4C +fn_80200508 = .text:0x80200508; // type:function size:0xC0 +fn_802005C8 = .text:0x802005C8; // type:function size:0x58 +fn_80200620 = .text:0x80200620; // type:function size:0x90 +fn_802006B0 = .text:0x802006B0; // type:function size:0x3C +fn_802006EC = .text:0x802006EC; // type:function size:0xA4 +fn_80200790 = .text:0x80200790; // type:function size:0x40 +fn_802007D0 = .text:0x802007D0; // type:function size:0x50 +fn_80200820 = .text:0x80200820; // type:function size:0x10 +fn_80200830 = .text:0x80200830; // type:function size:0x60 +Handle__14CustomizePanelFP9DataArrayb = .text:0x80200890; // type:function size:0xCDC +fn_8020156C = .text:0x8020156C; // type:function size:0x8 +SyncProperty__14CustomizePanelFR8DataNodeP9DataArrayi6PropOp = .text:0x80201574; // type:function size:0x16C +fn_802016E0 = .text:0x802016E0; // type:function size:0x114 +fn_802017F4 = .text:0x802017F4; // type:function size:0x5C +fn_80201850 = .text:0x80201850; // type:function size:0x5C +fn_802018AC = .text:0x802018AC; // type:function size:0x54 +fn_80201900 = .text:0x80201900; // type:function size:0x5C +SetType__14CustomizePanelF6Symbol = .text:0x8020195C; // type:function size:0x134 +StaticClassName__14CustomizePanelFv = .text:0x80201A90; // type:function size:0x4C +ClassName__14CustomizePanelCFv = .text:0x80201ADC; // type:function size:0x4 +fn_80201AE0 = .text:0x80201AE0; // type:function size:0x14 +fn_80201AF4 = .text:0x80201AF4; // type:function size:0x14 +fn_80201B08 = .text:0x80201B08; // type:function size:0x14 +fn_80201B1C = .text:0x80201B1C; // type:function size:0x14 +fn_80201B30 = .text:0x80201B30; // type:function size:0x14 +fn_80201B44 = .text:0x80201B44; // type:function size:0x14 +fn_80201B58 = .text:0x80201B58; // type:function size:0x14 +fn_80201B6C = .text:0x80201B6C; // type:function size:0x14 +fn_80201B80 = .text:0x80201B80; // type:function size:0x8 +fn_80201B88 = .text:0x80201B88; // type:function size:0x8 +fn_80201B90 = .text:0x80201B90; // type:function size:0x8 +fn_80201B98 = .text:0x80201B98; // type:function size:0x8 +fn_80201BA0 = .text:0x80201BA0; // type:function size:0x7C +fn_80201C1C = .text:0x80201C1C; // type:function size:0xA4 +fn_80201CC0 = .text:0x80201CC0; // type:function size:0x88 +fn_80201D48 = .text:0x80201D48; // type:function size:0x70 +fn_80201DB8 = .text:0x80201DB8; // type:function size:0x5C +fn_80201E14 = .text:0x80201E14; // type:function size:0x8 +fn_80201E1C = .text:0x80201E1C; // type:function size:0x8 +fn_80201E24 = .text:0x80201E24; // type:function size:0xF0 +fn_80201F14 = .text:0x80201F14; // type:function size:0xC0 +fn_80201FD4 = .text:0x80201FD4; // type:function size:0x38 +fn_8020200C = .text:0x8020200C; // type:function size:0x94 +fn_802020A0 = .text:0x802020A0; // type:function size:0x8C +fn_8020212C = .text:0x8020212C; // type:function size:0x78 +fn_802021A4 = .text:0x802021A4; // type:function size:0x3C +fn_802021E0 = .text:0x802021E0; // type:function size:0x70 +fn_80202250 = .text:0x80202250; // type:function size:0xB4 +fn_80202304 = .text:0x80202304; // type:function size:0xD0 +fn_802023D4 = .text:0x802023D4; // type:function size:0xF4 +fn_802024C8 = .text:0x802024C8; // type:function size:0x174 +fn_8020263C = .text:0x8020263C; // type:function size:0x94 +fn_802026D0 = .text:0x802026D0; // type:function size:0x44 +fn_80202714 = .text:0x80202714; // type:function size:0x178 +fn_8020288C = .text:0x8020288C; // type:function size:0x34 +fn_802028C0 = .text:0x802028C0; // type:function size:0x8 +fn_802028C8 = .text:0x802028C8; // type:function size:0x34 +fn_802028FC = .text:0x802028FC; // type:function size:0x8 +fn_80202904 = .text:0x80202904; // type:function size:0x198 +fn_80202A9C = .text:0x80202A9C; // type:function size:0x324 +fn_80202DC0 = .text:0x80202DC0; // type:function size:0xC4 +fn_80202E84 = .text:0x80202E84; // type:function size:0xE4 +fn_80202F68 = .text:0x80202F68; // type:function size:0x98 +fn_80203000 = .text:0x80203000; // type:function size:0x1CC +fn_802031CC = .text:0x802031CC; // type:function size:0x168 +fn_80203334 = .text:0x80203334; // type:function size:0xC +fn_80203340 = .text:0x80203340; // type:function size:0x5C +fn_8020339C = .text:0x8020339C; // type:function size:0xA8 +fn_80203444 = .text:0x80203444; // type:function size:0xB8 +Handle__16EditSetlistPanelFP9DataArrayb = .text:0x802034FC; // type:function size:0x5B0 +fn_80203AAC = .text:0x80203AAC; // type:function size:0x270 +fn_80203D1C = .text:0x80203D1C; // type:function size:0x134 +fn_80203E50 = .text:0x80203E50; // type:function size:0x4C +fn_80203E9C = .text:0x80203E9C; // type:function size:0x4 +fn_80203EA0 = .text:0x80203EA0; // type:function size:0x14 +fn_80203EB4 = .text:0x80203EB4; // type:function size:0x14 +fn_80203EC8 = .text:0x80203EC8; // type:function size:0x14 +fn_80203EDC = .text:0x80203EDC; // type:function size:0x14 +fn_80203EF0 = .text:0x80203EF0; // type:function size:0x14 +fn_80203F04 = .text:0x80203F04; // type:function size:0x14 +fn_80203F18 = .text:0x80203F18; // type:function size:0x14 +fn_80203F2C = .text:0x80203F2C; // type:function size:0x14 +fn_80203F40 = .text:0x80203F40; // type:function size:0x158 +fn_80204098 = .text:0x80204098; // type:function size:0xC8 +fn_80204160 = .text:0x80204160; // type:function size:0x54 +fn_802041B4 = .text:0x802041B4; // type:function size:0xA0 +fn_80204254 = .text:0x80204254; // type:function size:0xC +fn_80204260 = .text:0x80204260; // type:function size:0x7C +fn_802042DC = .text:0x802042DC; // type:function size:0xB4 +Handle__16EventDialogPanelFP9DataArrayb = .text:0x80204390; // type:function size:0x244 +fn_802045D4 = .text:0x802045D4; // type:function size:0x134 +fn_80204708 = .text:0x80204708; // type:function size:0x4C +fn_80204754 = .text:0x80204754; // type:function size:0x4 +fn_80204758 = .text:0x80204758; // type:function size:0x14 +fn_8020476C = .text:0x8020476C; // type:function size:0x14 +fn_80204780 = .text:0x80204780; // type:function size:0x14 +fn_80204794 = .text:0x80204794; // type:function size:0x14 +fn_802047A8 = .text:0x802047A8; // type:function size:0x84 +fn_8020482C = .text:0x8020482C; // type:function size:0x60 +fn_8020488C = .text:0x8020488C; // type:function size:0xE0 +fn_8020496C = .text:0x8020496C; // type:function size:0x90 +fn_802049FC = .text:0x802049FC; // type:function size:0x8 +fn_80204A04 = .text:0x80204A04; // type:function size:0x8 +fn_80204A0C = .text:0x80204A0C; // type:function size:0x16C +fn_80204B78 = .text:0x80204B78; // type:function size:0x98 +fn_80204C10 = .text:0x80204C10; // type:function size:0x68 +fn_80204C78 = .text:0x80204C78; // type:function size:0x44 +fn_80204CBC = .text:0x80204CBC; // type:function size:0x3C +fn_80204CF8 = .text:0x80204CF8; // type:function size:0x8 +fn_80204D00 = .text:0x80204D00; // type:function size:0x7C +fn_80204D7C = .text:0x80204D7C; // type:function size:0x54 +fn_80204DD0 = .text:0x80204DD0; // type:function size:0x98 +fn_80204E68 = .text:0x80204E68; // type:function size:0x68 +fn_80204ED0 = .text:0x80204ED0; // type:function size:0x8 +fn_80204ED8 = .text:0x80204ED8; // type:function size:0x8 +__ct__15GameplayOptionsFv = .text:0x80204EE0; // type:function size:0x9C +fn_80204F7C = .text:0x80204F7C; // type:function size:0x6C +fn_80204FE8 = .text:0x80204FE8; // type:function size:0x1C +fn_80205004 = .text:0x80205004; // type:function size:0x1C +fn_80205020 = .text:0x80205020; // type:function size:0x60 +fn_80205080 = .text:0x80205080; // type:function size:0x68 +fn_802050E8 = .text:0x802050E8; // type:function size:0x8 +Handle__15GameplayOptionsFP9DataArrayb = .text:0x802050F0; // type:function size:0x244 +fn_80205334 = .text:0x80205334; // type:function size:0x14 +fn_80205348 = .text:0x80205348; // type:function size:0x14 +fn_8020535C = .text:0x8020535C; // type:function size:0x8C +fn_802053E8 = .text:0x802053E8; // type:function size:0x44 +fn_8020542C = .text:0x8020542C; // type:function size:0x14 +fn_80205440 = .text:0x80205440; // type:function size:0x4C +fn_8020548C = .text:0x8020548C; // type:function size:0x8 +fn_80205494 = .text:0x80205494; // type:function size:0x4 +fn_80205498 = .text:0x80205498; // type:function size:0x7C +fn_80205514 = .text:0x80205514; // type:function size:0xE0 +fn_802055F4 = .text:0x802055F4; // type:function size:0x7C +fn_80205670 = .text:0x80205670; // type:function size:0x134 +fn_802057A4 = .text:0x802057A4; // type:function size:0x4C +fn_802057F0 = .text:0x802057F0; // type:function size:0x4 +fn_802057F4 = .text:0x802057F4; // type:function size:0x14 +fn_80205808 = .text:0x80205808; // type:function size:0x14 +fn_8020581C = .text:0x8020581C; // type:function size:0x14 +fn_80205830 = .text:0x80205830; // type:function size:0x14 +__ct__21SetlistScoresProviderFv = .text:0x80205844; // type:function size:0xBC +fn_80205900 = .text:0x80205900; // type:function size:0x58 +fn_80205958 = .text:0x80205958; // type:function size:0x80 +fn_802059D8 = .text:0x802059D8; // type:function size:0x80 +fn_80205A58 = .text:0x80205A58; // type:function size:0x58 +fn_80205AB0 = .text:0x80205AB0; // type:function size:0x10 +fn_80205AC0 = .text:0x80205AC0; // type:function size:0x54 +fn_80205B14 = .text:0x80205B14; // type:function size:0x3C +fn_80205B50 = .text:0x80205B50; // type:function size:0x8 +fn_80205B58 = .text:0x80205B58; // type:function size:0x3C +fn_80205B94 = .text:0x80205B94; // type:function size:0x14 +fn_80205BA8 = .text:0x80205BA8; // type:function size:0x30 +fn_80205BD8 = .text:0x80205BD8; // type:function size:0x30 +fn_80205C08 = .text:0x80205C08; // type:function size:0x40 +fn_80205C48 = .text:0x80205C48; // type:function size:0xD4 +fn_80205D1C = .text:0x80205D1C; // type:function size:0x10 +fn_80205D2C = .text:0x80205D2C; // type:function size:0xEC +fn_80205E18 = .text:0x80205E18; // type:function size:0x58 +fn_80205E70 = .text:0x80205E70; // type:function size:0x8 +fn_80205E78 = .text:0x80205E78; // type:function size:0x118 +fn_80205F90 = .text:0x80205F90; // type:function size:0x4 +fn_80205F94 = .text:0x80205F94; // type:function size:0x90 +fn_80206024 = .text:0x80206024; // type:function size:0x4 +fn_80206028 = .text:0x80206028; // type:function size:0x40 +fn_80206068 = .text:0x80206068; // type:function size:0x8C +fn_802060F4 = .text:0x802060F4; // type:function size:0x8 +fn_802060FC = .text:0x802060FC; // type:function size:0x2C +fn_80206128 = .text:0x80206128; // type:function size:0x58 +fn_80206180 = .text:0x80206180; // type:function size:0x28 +fn_802061A8 = .text:0x802061A8; // type:function size:0x68 +fn_80206210 = .text:0x80206210; // type:function size:0x4 +fn_80206214 = .text:0x80206214; // type:function size:0x90 +fn_802062A4 = .text:0x802062A4; // type:function size:0x4 +fn_802062A8 = .text:0x802062A8; // type:function size:0x40 +fn_802062E8 = .text:0x802062E8; // type:function size:0x80 +fn_80206368 = .text:0x80206368; // type:function size:0x8 +fn_80206370 = .text:0x80206370; // type:function size:0x8 +fn_80206378 = .text:0x80206378; // type:function size:0x8 +fn_80206380 = .text:0x80206380; // type:function size:0xB0 +Handle__21SetlistScoresProviderFP9DataArrayb = .text:0x80206430; // type:function size:0x18C +fn_802065BC = .text:0x802065BC; // type:function size:0x98 +fn_80206654 = .text:0x80206654; // type:function size:0x68 +fn_802066BC = .text:0x802066BC; // type:function size:0x68 +fn_80206724 = .text:0x80206724; // type:function size:0x180 +fn_802068A4 = .text:0x802068A4; // type:function size:0x20 +fn_802068C4 = .text:0x802068C4; // type:function size:0x1C +fn_802068E0 = .text:0x802068E0; // type:function size:0x58 +fn_80206938 = .text:0x80206938; // type:function size:0x58 +fn_80206990 = .text:0x80206990; // type:function size:0x38 +fn_802069C8 = .text:0x802069C8; // type:function size:0xD8 +fn_80206AA0 = .text:0x80206AA0; // type:function size:0x60 +fn_80206B00 = .text:0x80206B00; // type:function size:0x5C +fn_80206B5C = .text:0x80206B5C; // type:function size:0xC +fn_80206B68 = .text:0x80206B68; // type:function size:0x198 +fn_80206D00 = .text:0x80206D00; // type:function size:0x54 +fn_80206D54 = .text:0x80206D54; // type:function size:0x28 +fn_80206D7C = .text:0x80206D7C; // type:function size:0x68 +fn_80206DE4 = .text:0x80206DE4; // type:function size:0x8 +fn_80206DEC = .text:0x80206DEC; // type:function size:0x8 +fn_80206DF4 = .text:0x80206DF4; // type:function size:0x80 +fn_80206E74 = .text:0x80206E74; // type:function size:0x4C +__ct__8InputMgrFP11BandUserMgrP10UIEventMgrP7NetSync = .text:0x80206EC0; // type:function size:0x138 +__dt__8InputMgrFv = .text:0x80206FF8; // type:function size:0xEC +fn_802070E4 = .text:0x802070E4; // type:function size:0x15C +fn_80207240 = .text:0x80207240; // type:function size:0x13C +fn_8020737C = .text:0x8020737C; // type:function size:0x8 +fn_80207384 = .text:0x80207384; // type:function size:0x8 +fn_8020738C = .text:0x8020738C; // type:function size:0x1AC +fn_80207538 = .text:0x80207538; // type:function size:0x4 +fn_8020753C = .text:0x8020753C; // type:function size:0x4 +fn_80207540 = .text:0x80207540; // type:function size:0x108 +fn_80207648 = .text:0x80207648; // type:function size:0xA0 +fn_802076E8 = .text:0x802076E8; // type:function size:0xA0 +fn_80207788 = .text:0x80207788; // type:function size:0x54 +fn_802077DC = .text:0x802077DC; // type:function size:0x19C +fn_80207978 = .text:0x80207978; // type:function size:0xC0 +fn_80207A38 = .text:0x80207A38; // type:function size:0x90 +fn_80207AC8 = .text:0x80207AC8; // type:function size:0x90 +fn_80207B58 = .text:0x80207B58; // type:function size:0x4C +fn_80207BA4 = .text:0x80207BA4; // type:function size:0x4C +fn_80207BF0 = .text:0x80207BF0; // type:function size:0xFC +fn_80207CEC = .text:0x80207CEC; // type:function size:0xC8 +fn_80207DB4 = .text:0x80207DB4; // type:function size:0x4 +fn_80207DB8 = .text:0x80207DB8; // type:function size:0xCC +Handle__8InputMgrFP9DataArrayb = .text:0x80207E84; // type:function size:0x544 +fn_802083C8 = .text:0x802083C8; // type:function size:0x14 +fn_802083DC = .text:0x802083DC; // type:function size:0x14 +fn_802083F0 = .text:0x802083F0; // type:function size:0x14 +fn_80208404 = .text:0x80208404; // type:function size:0x14 +fn_80208418 = .text:0x80208418; // type:function size:0x14 +fn_8020842C = .text:0x8020842C; // type:function size:0x14 +fn_80208440 = .text:0x80208440; // type:function size:0x14 +fn_80208454 = .text:0x80208454; // type:function size:0x9C +fn_802084F0 = .text:0x802084F0; // type:function size:0x64 +fn_80208554 = .text:0x80208554; // type:function size:0x6C +fn_802085C0 = .text:0x802085C0; // type:function size:0x7C +fn_8020863C = .text:0x8020863C; // type:function size:0x68 +fn_802086A4 = .text:0x802086A4; // type:function size:0x1F4 +fn_80208898 = .text:0x80208898; // type:function size:0xD4 +fn_8020896C = .text:0x8020896C; // type:function size:0xD4 +fn_80208A40 = .text:0x80208A40; // type:function size:0x14 +fn_80208A54 = .text:0x80208A54; // type:function size:0x318 +fn_80208D6C = .text:0x80208D6C; // type:function size:0xD4 +fn_80208E40 = .text:0x80208E40; // type:function size:0x8C +fn_80208ECC = .text:0x80208ECC; // type:function size:0x14 +fn_80208EE0 = .text:0x80208EE0; // type:function size:0x64 +fn_80208F44 = .text:0x80208F44; // type:function size:0x58 +fn_80208F9C = .text:0x80208F9C; // type:function size:0x98 +fn_80209034 = .text:0x80209034; // type:function size:0x68 +fn_8020909C = .text:0x8020909C; // type:function size:0x44 +fn_802090E0 = .text:0x802090E0; // type:function size:0x48 +fn_80209128 = .text:0x80209128; // type:function size:0x8 +__ct__15InterstitialMgrFv = .text:0x80209130; // type:function size:0xAC +fn_802091DC = .text:0x802091DC; // type:function size:0x44 +fn_80209220 = .text:0x80209220; // type:function size:0x3C +fn_8020925C = .text:0x8020925C; // type:function size:0x70 +fn_802092CC = .text:0x802092CC; // type:function size:0x44 +fn_80209310 = .text:0x80209310; // type:function size:0x3C +fn_8020934C = .text:0x8020934C; // type:function size:0x70 +fn_802093BC = .text:0x802093BC; // type:function size:0x11C +fn_802094D8 = .text:0x802094D8; // type:function size:0x30 +fn_80209508 = .text:0x80209508; // type:function size:0x110 +fn_80209618 = .text:0x80209618; // type:function size:0x58 +fn_80209670 = .text:0x80209670; // type:function size:0x48 +fn_802096B8 = .text:0x802096B8; // type:function size:0x30 +fn_802096E8 = .text:0x802096E8; // type:function size:0xAC +fn_80209794 = .text:0x80209794; // type:function size:0x70 +fn_80209804 = .text:0x80209804; // type:function size:0x8 +fn_8020980C = .text:0x8020980C; // type:function size:0x4 +fn_80209810 = .text:0x80209810; // type:function size:0x40 +fn_80209850 = .text:0x80209850; // type:function size:0x74 +fn_802098C4 = .text:0x802098C4; // type:function size:0xFC +fn_802099C0 = .text:0x802099C0; // type:function size:0x58 +fn_80209A18 = .text:0x80209A18; // type:function size:0x8 +fn_80209A20 = .text:0x80209A20; // type:function size:0x4 +fn_80209A24 = .text:0x80209A24; // type:function size:0x40 +fn_80209A64 = .text:0x80209A64; // type:function size:0x74 +__ct__Q211stlpmtx_std130map<6Symbol,P9DataArray,Q211stlpmtx_std13less<6Symbol>,Q211stlpmtx_std57StlNodeAlloc>>Fv = .text:0x80209AD8; // type:function size:0x44 +fn_80209B1C = .text:0x80209B1C; // type:function size:0x3C +fn_80209B58 = .text:0x80209B58; // type:function size:0x1BC +fn_80209D14 = .text:0x80209D14; // type:function size:0xFC +fn_80209E10 = .text:0x80209E10; // type:function size:0x58 +fn_80209E68 = .text:0x80209E68; // type:function size:0x8 +fn_80209E70 = .text:0x80209E70; // type:function size:0x4 +fn_80209E74 = .text:0x80209E74; // type:function size:0x40 +fn_80209EB4 = .text:0x80209EB4; // type:function size:0x74 +fn_80209F28 = .text:0x80209F28; // type:function size:0x4 +fn_80209F2C = .text:0x80209F2C; // type:function size:0x8 +fn_80209F34 = .text:0x80209F34; // type:function size:0x4 +fn_80209F38 = .text:0x80209F38; // type:function size:0x118 +fn_8020A050 = .text:0x8020A050; // type:function size:0x94 +fn_8020A0E4 = .text:0x8020A0E4; // type:function size:0x2C +fn_8020A110 = .text:0x8020A110; // type:function size:0x30 +fn_8020A140 = .text:0x8020A140; // type:function size:0xA0 +fn_8020A1E0 = .text:0x8020A1E0; // type:function size:0x6C +fn_8020A24C = .text:0x8020A24C; // type:function size:0x10 +fn_8020A25C = .text:0x8020A25C; // type:function size:0x10 +fn_8020A26C = .text:0x8020A26C; // type:function size:0x4 +Handle__15InterstitialMgrFP9DataArrayb = .text:0x8020A270; // type:function size:0xE4 +fn_8020A354 = .text:0x8020A354; // type:function size:0x388 +fn_8020A6DC = .text:0x8020A6DC; // type:function size:0xB0 +fn_8020A78C = .text:0x8020A78C; // type:function size:0xB4 +fn_8020A840 = .text:0x8020A840; // type:function size:0x38 +fn_8020A878 = .text:0x8020A878; // type:function size:0x5C +fn_8020A8D4 = .text:0x8020A8D4; // type:function size:0x10 +fn_8020A8E4 = .text:0x8020A8E4; // type:function size:0x388 +fn_8020AC6C = .text:0x8020AC6C; // type:function size:0x388 +fn_8020AFF4 = .text:0x8020AFF4; // type:function size:0x158 +fn_8020B14C = .text:0x8020B14C; // type:function size:0x44 +fn_8020B190 = .text:0x8020B190; // type:function size:0x104 +fn_8020B294 = .text:0x8020B294; // type:function size:0x158 +fn_8020B3EC = .text:0x8020B3EC; // type:function size:0x44 +fn_8020B430 = .text:0x8020B430; // type:function size:0x8 +fn_8020B438 = .text:0x8020B438; // type:function size:0x104 +fn_8020B53C = .text:0x8020B53C; // type:function size:0x5C +fn_8020B598 = .text:0x8020B598; // type:function size:0x10 +fn_8020B5A8 = .text:0x8020B5A8; // type:function size:0x158 +fn_8020B700 = .text:0x8020B700; // type:function size:0x44 +fn_8020B744 = .text:0x8020B744; // type:function size:0x8 +fn_8020B74C = .text:0x8020B74C; // type:function size:0x104 +fn_8020B850 = .text:0x8020B850; // type:function size:0x5C +fn_8020B8AC = .text:0x8020B8AC; // type:function size:0x10 +fn_8020B8BC = .text:0x8020B8BC; // type:function size:0x48 +fn_8020B904 = .text:0x8020B904; // type:function size:0x8 +fn_8020B90C = .text:0x8020B90C; // type:function size:0x8 +fn_8020B914 = .text:0x8020B914; // type:function size:0x8C +fn_8020B9A0 = .text:0x8020B9A0; // type:function size:0x4 +fn_8020B9A4 = .text:0x8020B9A4; // type:function size:0x38 +fn_8020B9DC = .text:0x8020B9DC; // type:function size:0x60 +fn_8020BA3C = .text:0x8020BA3C; // type:function size:0xAC +fn_8020BAE8 = .text:0x8020BAE8; // type:function size:0x30 +fn_8020BB18 = .text:0x8020BB18; // type:function size:0xC +Handle__17InterstitialPanelFP9DataArrayb = .text:0x8020BB24; // type:function size:0x140 +fn_8020BC64 = .text:0x8020BC64; // type:function size:0x80 +fn_8020BCE4 = .text:0x8020BCE4; // type:function size:0x34 +fn_8020BD18 = .text:0x8020BD18; // type:function size:0x70 +fn_8020BD88 = .text:0x8020BD88; // type:function size:0x54 +fn_8020BDDC = .text:0x8020BDDC; // type:function size:0xC +Handle__8BackdropPanelFP9DataArrayb = .text:0x8020BDE8; // type:function size:0x128 +fn_8020BF10 = .text:0x8020BF10; // type:function size:0x7C +fn_8020BF8C = .text:0x8020BF8C; // type:function size:0x7C +fn_8020C008 = .text:0x8020C008; // type:function size:0x134 +fn_8020C13C = .text:0x8020C13C; // type:function size:0x4C +fn_8020C188 = .text:0x8020C188; // type:function size:0x4 +fn_8020C18C = .text:0x8020C18C; // type:function size:0x134 +fn_8020C2C0 = .text:0x8020C2C0; // type:function size:0x4C +fn_8020C30C = .text:0x8020C30C; // type:function size:0x4 +fn_8020C310 = .text:0x8020C310; // type:function size:0x14 +fn_8020C324 = .text:0x8020C324; // type:function size:0x14 +fn_8020C338 = .text:0x8020C338; // type:function size:0x14 +fn_8020C34C = .text:0x8020C34C; // type:function size:0x14 +fn_8020C360 = .text:0x8020C360; // type:function size:0x14 +fn_8020C374 = .text:0x8020C374; // type:function size:0x14 +fn_8020C388 = .text:0x8020C388; // type:function size:0x14 +fn_8020C39C = .text:0x8020C39C; // type:function size:0x14 +fn_8020C3B0 = .text:0x8020C3B0; // type:function size:0x14 +fn_8020C3C4 = .text:0x8020C3C4; // type:function size:0x14 +fn_8020C3D8 = .text:0x8020C3D8; // type:function size:0x14 +fn_8020C3EC = .text:0x8020C3EC; // type:function size:0x14 +fn_8020C400 = .text:0x8020C400; // type:function size:0x14 +fn_8020C414 = .text:0x8020C414; // type:function size:0x14 +fn_8020C428 = .text:0x8020C428; // type:function size:0x84 +fn_8020C4AC = .text:0x8020C4AC; // type:function size:0x8 +fn_8020C4B4 = .text:0x8020C4B4; // type:function size:0xB0 +fn_8020C564 = .text:0x8020C564; // type:function size:0x6C +fn_8020C5D0 = .text:0x8020C5D0; // type:function size:0x340 +fn_8020C910 = .text:0x8020C910; // type:function size:0x11C +fn_8020CA2C = .text:0x8020CA2C; // type:function size:0x2DC +fn_8020CD08 = .text:0x8020CD08; // type:function size:0xA0 +fn_8020CDA8 = .text:0x8020CDA8; // type:function size:0x104 +fn_8020CEAC = .text:0x8020CEAC; // type:function size:0x30 +fn_8020CEDC = .text:0x8020CEDC; // type:function size:0xC +Handle__15JoinInvitePanelFP9DataArrayb = .text:0x8020CEE8; // type:function size:0x1E4 +fn_8020D0CC = .text:0x8020D0CC; // type:function size:0x7C +fn_8020D148 = .text:0x8020D148; // type:function size:0x134 +fn_8020D27C = .text:0x8020D27C; // type:function size:0x4C +fn_8020D2C8 = .text:0x8020D2C8; // type:function size:0x4 +fn_8020D2CC = .text:0x8020D2CC; // type:function size:0x14 +fn_8020D2E0 = .text:0x8020D2E0; // type:function size:0x14 +fn_8020D2F4 = .text:0x8020D2F4; // type:function size:0x14 +fn_8020D308 = .text:0x8020D308; // type:function size:0x14 +fn_8020D31C = .text:0x8020D31C; // type:function size:0x68 +fn_8020D384 = .text:0x8020D384; // type:function size:0xD8 +fn_8020D45C = .text:0x8020D45C; // type:function size:0x58 +fn_8020D4B4 = .text:0x8020D4B4; // type:function size:0x80 +fn_8020D534 = .text:0x8020D534; // type:function size:0x80 +fn_8020D5B4 = .text:0x8020D5B4; // type:function size:0x58 +fn_8020D60C = .text:0x8020D60C; // type:function size:0x54 +fn_8020D660 = .text:0x8020D660; // type:function size:0x5C +fn_8020D6BC = .text:0x8020D6BC; // type:function size:0x6C +fn_8020D728 = .text:0x8020D728; // type:function size:0x28 +fn_8020D750 = .text:0x8020D750; // type:function size:0x8 +fn_8020D758 = .text:0x8020D758; // type:function size:0x8 +fn_8020D760 = .text:0x8020D760; // type:function size:0x3C +fn_8020D79C = .text:0x8020D79C; // type:function size:0x4C +fn_8020D7E8 = .text:0x8020D7E8; // type:function size:0x1C +fn_8020D804 = .text:0x8020D804; // type:function size:0x30 +fn_8020D834 = .text:0x8020D834; // type:function size:0x30 +fn_8020D864 = .text:0x8020D864; // type:function size:0x40 +fn_8020D8A4 = .text:0x8020D8A4; // type:function size:0xDC +fn_8020D980 = .text:0x8020D980; // type:function size:0x4 +fn_8020D984 = .text:0x8020D984; // type:function size:0x3C +fn_8020D9C0 = .text:0x8020D9C0; // type:function size:0x40 +fn_8020DA00 = .text:0x8020DA00; // type:function size:0x8C +fn_8020DA8C = .text:0x8020DA8C; // type:function size:0x8 +fn_8020DA94 = .text:0x8020DA94; // type:function size:0x2C +fn_8020DAC0 = .text:0x8020DAC0; // type:function size:0x58 +fn_8020DB18 = .text:0x8020DB18; // type:function size:0x28 +fn_8020DB40 = .text:0x8020DB40; // type:function size:0x68 +fn_8020DBA8 = .text:0x8020DBA8; // type:function size:0x9C +fn_8020DC44 = .text:0x8020DC44; // type:function size:0x74 +fn_8020DCB8 = .text:0x8020DCB8; // type:function size:0x9C +fn_8020DD54 = .text:0x8020DD54; // type:function size:0x4C +fn_8020DDA0 = .text:0x8020DDA0; // type:function size:0x64 +fn_8020DE04 = .text:0x8020DE04; // type:function size:0xA0 +fn_8020DEA4 = .text:0x8020DEA4; // type:function size:0x1D4 +fn_8020E078 = .text:0x8020E078; // type:function size:0x7C +fn_8020E0F4 = .text:0x8020E0F4; // type:function size:0xF4 +fn_8020E1E8 = .text:0x8020E1E8; // type:function size:0x8 +fn_8020E1F0 = .text:0x8020E1F0; // type:function size:0xA0 +fn_8020E290 = .text:0x8020E290; // type:function size:0x78 +fn_8020E308 = .text:0x8020E308; // type:function size:0xC +fn_8020E314 = .text:0x8020E314; // type:function size:0xCC +fn_8020E3E0 = .text:0x8020E3E0; // type:function size:0x24 +fn_8020E404 = .text:0x8020E404; // type:function size:0xCC +fn_8020E4D0 = .text:0x8020E4D0; // type:function size:0xA0 +fn_8020E570 = .text:0x8020E570; // type:function size:0x460 +fn_8020E9D0 = .text:0x8020E9D0; // type:function size:0x4 +fn_8020E9D4 = .text:0x8020E9D4; // type:function size:0x88 +fn_8020EA5C = .text:0x8020EA5C; // type:function size:0x2C +fn_8020EA88 = .text:0x8020EA88; // type:function size:0x10 +fn_8020EA98 = .text:0x8020EA98; // type:function size:0x98 +fn_8020EB30 = .text:0x8020EB30; // type:function size:0x8 +fn_8020EB38 = .text:0x8020EB38; // type:function size:0x80 +fn_8020EBB8 = .text:0x8020EBB8; // type:function size:0x164 +fn_8020ED1C = .text:0x8020ED1C; // type:function size:0x4 +fn_8020ED20 = .text:0x8020ED20; // type:function size:0x8 +fn_8020ED28 = .text:0x8020ED28; // type:function size:0x60 +fn_8020ED88 = .text:0x8020ED88; // type:function size:0x34 +fn_8020EDBC = .text:0x8020EDBC; // type:function size:0x64 +fn_8020EE20 = .text:0x8020EE20; // type:function size:0x2C +fn_8020EE4C = .text:0x8020EE4C; // type:function size:0x64 +fn_8020EEB0 = .text:0x8020EEB0; // type:function size:0x60 +Handle__11LeaderboardFP9DataArrayb = .text:0x8020EF10; // type:function size:0x264 +fn_8020F174 = .text:0x8020F174; // type:function size:0x74 +fn_8020F1E8 = .text:0x8020F1E8; // type:function size:0x64 +fn_8020F24C = .text:0x8020F24C; // type:function size:0x28 +fn_8020F274 = .text:0x8020F274; // type:function size:0xC0 +fn_8020F334 = .text:0x8020F334; // type:function size:0x74 +Handle__27LeaderboardShortcutProviderFP9DataArrayb = .text:0x8020F3A8; // type:function size:0x1B8 +fn_8020F560 = .text:0x8020F560; // type:function size:0x8 +fn_8020F568 = .text:0x8020F568; // type:function size:0x114 +fn_8020F67C = .text:0x8020F67C; // type:function size:0x5C +fn_8020F6D8 = .text:0x8020F6D8; // type:function size:0x5C +fn_8020F734 = .text:0x8020F734; // type:function size:0x54 +fn_8020F788 = .text:0x8020F788; // type:function size:0x5C +fn_8020F7E4 = .text:0x8020F7E4; // type:function size:0x5C +fn_8020F840 = .text:0x8020F840; // type:function size:0x8 +fn_8020F848 = .text:0x8020F848; // type:function size:0x8 +fn_8020F850 = .text:0x8020F850; // type:function size:0x8 +__ct__9LessonMgrFv = .text:0x8020F858; // type:function size:0x328 +fn_8020FB80 = .text:0x8020FB80; // type:function size:0x58 +fn_8020FBD8 = .text:0x8020FBD8; // type:function size:0x60 +fn_8020FC38 = .text:0x8020FC38; // type:function size:0x58 +fn_8020FC90 = .text:0x8020FC90; // type:function size:0x58 +fn_8020FCE8 = .text:0x8020FCE8; // type:function size:0x50 +fn_8020FD38 = .text:0x8020FD38; // type:function size:0xFC +fn_8020FE34 = .text:0x8020FE34; // type:function size:0x58 +fn_8020FE8C = .text:0x8020FE8C; // type:function size:0x8 +fn_8020FE94 = .text:0x8020FE94; // type:function size:0x4 +fn_8020FE98 = .text:0x8020FE98; // type:function size:0x40 +fn_8020FED8 = .text:0x8020FED8; // type:function size:0x74 +fn_8020FF4C = .text:0x8020FF4C; // type:function size:0x44 +fn_8020FF90 = .text:0x8020FF90; // type:function size:0x3C +fn_8020FFCC = .text:0x8020FFCC; // type:function size:0x70 +fn_8021003C = .text:0x8021003C; // type:function size:0x1E8 +fn_80210224 = .text:0x80210224; // type:function size:0x4 +fn_80210228 = .text:0x80210228; // type:function size:0x4 +fn_8021022C = .text:0x8021022C; // type:function size:0x8 +fn_80210234 = .text:0x80210234; // type:function size:0x38 +fn_8021026C = .text:0x8021026C; // type:function size:0xC +fn_80210278 = .text:0x80210278; // type:function size:0x34 +fn_802102AC = .text:0x802102AC; // type:function size:0x74 +fn_80210320 = .text:0x80210320; // type:function size:0x2C +fn_8021034C = .text:0x8021034C; // type:function size:0x30 +fn_8021037C = .text:0x8021037C; // type:function size:0xA0 +fn_8021041C = .text:0x8021041C; // type:function size:0x74 +fn_80210490 = .text:0x80210490; // type:function size:0x74 +fn_80210504 = .text:0x80210504; // type:function size:0x30 +fn_80210534 = .text:0x80210534; // type:function size:0x98 +fn_802105CC = .text:0x802105CC; // type:function size:0xA0 +fn_8021066C = .text:0x8021066C; // type:function size:0xA0 +fn_8021070C = .text:0x8021070C; // type:function size:0xC8 +fn_802107D4 = .text:0x802107D4; // type:function size:0x70 +fn_80210844 = .text:0x80210844; // type:function size:0x40 +fn_80210884 = .text:0x80210884; // type:function size:0x134 +fn_802109B8 = .text:0x802109B8; // type:function size:0x388 +fn_80210D40 = .text:0x80210D40; // type:function size:0x6C +fn_80210DAC = .text:0x80210DAC; // type:function size:0x2C +fn_80210DD8 = .text:0x80210DD8; // type:function size:0x158 +fn_80210F30 = .text:0x80210F30; // type:function size:0x44 +fn_80210F74 = .text:0x80210F74; // type:function size:0x104 +fn_80211078 = .text:0x80211078; // type:function size:0x5C +fn_802110D4 = .text:0x802110D4; // type:function size:0x10 +__ct__14LessonProviderFv = .text:0x802110E4; // type:function size:0x70 +fn_80211154 = .text:0x80211154; // type:function size:0x58 +fn_802111AC = .text:0x802111AC; // type:function size:0x80 +fn_8021122C = .text:0x8021122C; // type:function size:0x80 +fn_802112AC = .text:0x802112AC; // type:function size:0x58 +fn_80211304 = .text:0x80211304; // type:function size:0x54 +fn_80211358 = .text:0x80211358; // type:function size:0x5C +fn_802113B4 = .text:0x802113B4; // type:function size:0x6C +fn_80211420 = .text:0x80211420; // type:function size:0x28 +fn_80211448 = .text:0x80211448; // type:function size:0x8 +fn_80211450 = .text:0x80211450; // type:function size:0x8 +fn_80211458 = .text:0x80211458; // type:function size:0x3C +fn_80211494 = .text:0x80211494; // type:function size:0x30 +fn_802114C4 = .text:0x802114C4; // type:function size:0x30 +fn_802114F4 = .text:0x802114F4; // type:function size:0x40 +__dt__14LessonProviderFv = .text:0x80211534; // type:function size:0x74 +fn_802115A8 = .text:0x802115A8; // type:function size:0x64 +fn_8021160C = .text:0x8021160C; // type:function size:0x6C +fn_80211678 = .text:0x80211678; // type:function size:0x180 +fn_802117F8 = .text:0x802117F8; // type:function size:0x7C +fn_80211874 = .text:0x80211874; // type:function size:0xE8 +fn_8021195C = .text:0x8021195C; // type:function size:0x30 +fn_8021198C = .text:0x8021198C; // type:function size:0x8 +fn_80211994 = .text:0x80211994; // type:function size:0x120 +fn_80211AB4 = .text:0x80211AB4; // type:function size:0x4 +fn_80211AB8 = .text:0x80211AB8; // type:function size:0x88 +fn_80211B40 = .text:0x80211B40; // type:function size:0x2C +fn_80211B6C = .text:0x80211B6C; // type:function size:0x10 +fn_80211B7C = .text:0x80211B7C; // type:function size:0x44 +fn_80211BC0 = .text:0x80211BC0; // type:function size:0x40 +fn_80211C00 = .text:0x80211C00; // type:function size:0x4 +fn_80211C04 = .text:0x80211C04; // type:function size:0x3C +fn_80211C40 = .text:0x80211C40; // type:function size:0x40 +fn_80211C80 = .text:0x80211C80; // type:function size:0x8C +fn_80211D0C = .text:0x80211D0C; // type:function size:0x8 +fn_80211D14 = .text:0x80211D14; // type:function size:0x2C +fn_80211D40 = .text:0x80211D40; // type:function size:0x58 +fn_80211D98 = .text:0x80211D98; // type:function size:0x28 +fn_80211DC0 = .text:0x80211DC0; // type:function size:0x68 +fn_80211E28 = .text:0x80211E28; // type:function size:0x58 +fn_80211E80 = .text:0x80211E80; // type:function size:0x114 +fn_80211F94 = .text:0x80211F94; // type:function size:0x60 +fn_80211FF4 = .text:0x80211FF4; // type:function size:0x5C +fn_80212050 = .text:0x80212050; // type:function size:0x54 +fn_802120A4 = .text:0x802120A4; // type:function size:0x5C +fn_80212100 = .text:0x80212100; // type:function size:0x5C +fn_8021215C = .text:0x8021215C; // type:function size:0x8 +fn_80212164 = .text:0x80212164; // type:function size:0x44 +fn_802121A8 = .text:0x802121A8; // type:function size:0x5C +fn_80212204 = .text:0x80212204; // type:function size:0x8 +fn_8021220C = .text:0x8021220C; // type:function size:0x8 +fn_80212214 = .text:0x80212214; // type:function size:0xC +fn_80212220 = .text:0x80212220; // type:function size:0x10 +fn_80212230 = .text:0x80212230; // type:function size:0x4 +fn_80212234 = .text:0x80212234; // type:function size:0xA0 +fn_802122D4 = .text:0x802122D4; // type:function size:0x8 +fn_802122DC = .text:0x802122DC; // type:function size:0x8 +fn_802122E4 = .text:0x802122E4; // type:function size:0x8 +fn_802122EC = .text:0x802122EC; // type:function size:0x4 +fn_802122F0 = .text:0x802122F0; // type:function size:0x4 +fn_802122F4 = .text:0x802122F4; // type:function size:0xC8 +fn_802123BC = .text:0x802123BC; // type:function size:0x30 +fn_802123EC = .text:0x802123EC; // type:function size:0x70 +fn_8021245C = .text:0x8021245C; // type:function size:0xC +fn_80212468 = .text:0x80212468; // type:function size:0x34 +fn_8021249C = .text:0x8021249C; // type:function size:0x3C +fn_802124D8 = .text:0x802124D8; // type:function size:0x28 +fn_80212500 = .text:0x80212500; // type:function size:0x50 +fn_80212550 = .text:0x80212550; // type:function size:0x50 +fn_802125A0 = .text:0x802125A0; // type:function size:0x50 +fn_802125F0 = .text:0x802125F0; // type:function size:0x10C +fn_802126FC = .text:0x802126FC; // type:function size:0x58 +fn_80212754 = .text:0x80212754; // type:function size:0x58 +fn_802127AC = .text:0x802127AC; // type:function size:0x80 +fn_8021282C = .text:0x8021282C; // type:function size:0x80 +fn_802128AC = .text:0x802128AC; // type:function size:0x58 +fn_80212904 = .text:0x80212904; // type:function size:0x54 +fn_80212958 = .text:0x80212958; // type:function size:0x5C +fn_802129B4 = .text:0x802129B4; // type:function size:0x6C +fn_80212A20 = .text:0x80212A20; // type:function size:0x28 +fn_80212A48 = .text:0x80212A48; // type:function size:0x8 +fn_80212A50 = .text:0x80212A50; // type:function size:0x3C +fn_80212A8C = .text:0x80212A8C; // type:function size:0x40 +fn_80212ACC = .text:0x80212ACC; // type:function size:0x30 +fn_80212AFC = .text:0x80212AFC; // type:function size:0x30 +fn_80212B2C = .text:0x80212B2C; // type:function size:0x40 +__dt__11LockStepMgrFv = .text:0x80212B6C; // type:function size:0xCC +fn_80212C38 = .text:0x80212C38; // type:function size:0x10 +fn_80212C48 = .text:0x80212C48; // type:function size:0x48 +fn_80212C90 = .text:0x80212C90; // type:function size:0x110 +fn_80212DA0 = .text:0x80212DA0; // type:function size:0xE4 +fn_80212E84 = .text:0x80212E84; // type:function size:0xE4 +fn_80212F68 = .text:0x80212F68; // type:function size:0x68 +fn_80212FD0 = .text:0x80212FD0; // type:function size:0x70 +fn_80213040 = .text:0x80213040; // type:function size:0x138 +fn_80213178 = .text:0x80213178; // type:function size:0x68 +__ct__20ReleasingLockStepMsgFi = .text:0x802131E0; // type:function size:0x64 +Type__20ReleasingLockStepMsgFv = .text:0x80213244; // type:function size:0x4C +fn_80213290 = .text:0x80213290; // type:function size:0xE8 +__ct__19LockStepCompleteMsgFi = .text:0x80213378; // type:function size:0x64 +fn_802133DC = .text:0x802133DC; // type:function size:0x4 +fn_802133E0 = .text:0x802133E0; // type:function size:0xB8 +fn_80213498 = .text:0x80213498; // type:function size:0xC +fn_802134A4 = .text:0x802134A4; // type:function size:0x34 +fn_802134D8 = .text:0x802134D8; // type:function size:0x3C +Handle__11LockStepMgrFP9DataArrayb = .text:0x80213514; // type:function size:0x1A0 +fn_802136B4 = .text:0x802136B4; // type:function size:0x3C +fn_802136F0 = .text:0x802136F0; // type:function size:0x4C +fn_8021373C = .text:0x8021373C; // type:function size:0xAC +fn_802137E8 = .text:0x802137E8; // type:function size:0x4C +fn_80213834 = .text:0x80213834; // type:function size:0x4C +fn_80213880 = .text:0x80213880; // type:function size:0x94 +fn_80213914 = .text:0x80213914; // type:function size:0xA0 +fn_802139B4 = .text:0x802139B4; // type:function size:0xD0 +fn_80213A84 = .text:0x80213A84; // type:function size:0x58 +fn_80213ADC = .text:0x80213ADC; // type:function size:0x58 +fn_80213B34 = .text:0x80213B34; // type:function size:0x78 +fn_80213BAC = .text:0x80213BAC; // type:function size:0x5C +fn_80213C08 = .text:0x80213C08; // type:function size:0x4C +fn_80213C54 = .text:0x80213C54; // type:function size:0x4C +fn_80213CA0 = .text:0x80213CA0; // type:function size:0x58 +fn_80213CF8 = .text:0x80213CF8; // type:function size:0x30 +fn_80213D28 = .text:0x80213D28; // type:function size:0x4 +fn_80213D2C = .text:0x80213D2C; // type:function size:0x88 +fn_80213DB4 = .text:0x80213DB4; // type:function size:0x2C +fn_80213DE0 = .text:0x80213DE0; // type:function size:0x6C +fn_80213E4C = .text:0x80213E4C; // type:function size:0x2C +fn_80213E78 = .text:0x80213E78; // type:function size:0x84 +fn_80213EFC = .text:0x80213EFC; // type:function size:0x2C +fn_80213F28 = .text:0x80213F28; // type:function size:0x28 +fn_80213F50 = .text:0x80213F50; // type:function size:0x68 +fn_80213FB8 = .text:0x80213FB8; // type:function size:0x28 +fn_80213FE0 = .text:0x80213FE0; // type:function size:0x80 +fn_80214060 = .text:0x80214060; // type:function size:0x8 +fn_80214068 = .text:0x80214068; // type:function size:0x3C +fn_802140A4 = .text:0x802140A4; // type:function size:0x40 +fn_802140E4 = .text:0x802140E4; // type:function size:0x8C +fn_80214170 = .text:0x80214170; // type:function size:0x8 +fn_80214178 = .text:0x80214178; // type:function size:0x2C +fn_802141A4 = .text:0x802141A4; // type:function size:0x58 +fn_802141FC = .text:0x802141FC; // type:function size:0x70 +fn_8021426C = .text:0x8021426C; // type:function size:0x7C +fn_802142E8 = .text:0x802142E8; // type:function size:0x114 +fn_802143FC = .text:0x802143FC; // type:function size:0x60 +fn_8021445C = .text:0x8021445C; // type:function size:0x5C +fn_802144B8 = .text:0x802144B8; // type:function size:0x54 +fn_8021450C = .text:0x8021450C; // type:function size:0x5C +fn_80214568 = .text:0x80214568; // type:function size:0x5C +fn_802145C4 = .text:0x802145C4; // type:function size:0x4 +fn_802145C8 = .text:0x802145C8; // type:function size:0x58 +fn_80214620 = .text:0x80214620; // type:function size:0xC +fn_8021462C = .text:0x8021462C; // type:function size:0x4 +fn_80214630 = .text:0x80214630; // type:function size:0x58 +fn_80214688 = .text:0x80214688; // type:function size:0xC +fn_80214694 = .text:0x80214694; // type:function size:0x18 +fn_802146AC = .text:0x802146AC; // type:function size:0x88 +fn_80214734 = .text:0x80214734; // type:function size:0x5C +fn_80214790 = .text:0x80214790; // type:function size:0x194 +fn_80214924 = .text:0x80214924; // type:function size:0x138 +fn_80214A5C = .text:0x80214A5C; // type:function size:0x4 +fn_80214A60 = .text:0x80214A60; // type:function size:0x8 +fn_80214A68 = .text:0x80214A68; // type:function size:0x8 +fn_80214A70 = .text:0x80214A70; // type:function size:0x8 +fn_80214A78 = .text:0x80214A78; // type:function size:0x54 +fn_80214ACC = .text:0x80214ACC; // type:function size:0x30 +fn_80214AFC = .text:0x80214AFC; // type:function size:0xAC +fn_80214BA8 = .text:0x80214BA8; // type:function size:0x54 +Handle__11BandMachineFP9DataArrayb = .text:0x80214BFC; // type:function size:0x1C0 +fn_80214DBC = .text:0x80214DBC; // type:function size:0x8 +fn_80214DC4 = .text:0x80214DC4; // type:function size:0x8 +fn_80214DCC = .text:0x80214DCC; // type:function size:0x4C +fn_80214E18 = .text:0x80214E18; // type:function size:0x98 +fn_80214EB0 = .text:0x80214EB0; // type:function size:0x74 +fn_80214F24 = .text:0x80214F24; // type:function size:0x20 +fn_80214F44 = .text:0x80214F44; // type:function size:0x20 +fn_80214F64 = .text:0x80214F64; // type:function size:0x60 +fn_80214FC4 = .text:0x80214FC4; // type:function size:0x60 +fn_80215024 = .text:0x80215024; // type:function size:0x20 +fn_80215044 = .text:0x80215044; // type:function size:0x5C +fn_802150A0 = .text:0x802150A0; // type:function size:0x30 +fn_802150D0 = .text:0x802150D0; // type:function size:0x28 +fn_802150F8 = .text:0x802150F8; // type:function size:0x98 +fn_80215190 = .text:0x80215190; // type:function size:0x94 +fn_80215224 = .text:0x80215224; // type:function size:0x5C +fn_80215280 = .text:0x80215280; // type:function size:0x5C +fn_802152DC = .text:0x802152DC; // type:function size:0x44 +fn_80215320 = .text:0x80215320; // type:function size:0x10 +fn_80215330 = .text:0x80215330; // type:function size:0xC +fn_8021533C = .text:0x8021533C; // type:function size:0x8 +fn_80215344 = .text:0x80215344; // type:function size:0x8 +fn_8021534C = .text:0x8021534C; // type:function size:0x58 +fn_802153A4 = .text:0x802153A4; // type:function size:0xB0 +fn_80215454 = .text:0x80215454; // type:function size:0xB4 +fn_80215508 = .text:0x80215508; // type:function size:0x38 +fn_80215540 = .text:0x80215540; // type:function size:0x30 +fn_80215570 = .text:0x80215570; // type:function size:0x48 +fn_802155B8 = .text:0x802155B8; // type:function size:0x84 +fn_8021563C = .text:0x8021563C; // type:function size:0x58 +fn_80215694 = .text:0x80215694; // type:function size:0x6C +fn_80215700 = .text:0x80215700; // type:function size:0x7C +fn_8021577C = .text:0x8021577C; // type:function size:0x1EC +fn_80215968 = .text:0x80215968; // type:function size:0x8C +Type__23RemoteMachineUpdatedMsgFv = .text:0x802159F4; // type:function size:0x4C +fn_80215A40 = .text:0x80215A40; // type:function size:0x4C +fn_80215A8C = .text:0x80215A8C; // type:function size:0x60 +fn_80215AEC = .text:0x80215AEC; // type:function size:0x30 +fn_80215B1C = .text:0x80215B1C; // type:function size:0x3C +fn_80215B58 = .text:0x80215B58; // type:function size:0x24 +fn_80215B7C = .text:0x80215B7C; // type:function size:0x54 +fn_80215BD0 = .text:0x80215BD0; // type:function size:0x54 +fn_80215C24 = .text:0x80215C24; // type:function size:0x1B0 +fn_80215DD4 = .text:0x80215DD4; // type:function size:0x128 +fn_80215EFC = .text:0x80215EFC; // type:function size:0x8 +fn_80215F04 = .text:0x80215F04; // type:function size:0x94 +fn_80215F98 = .text:0x80215F98; // type:function size:0xA0 +fn_80216038 = .text:0x80216038; // type:function size:0x70 +fn_802160A8 = .text:0x802160A8; // type:function size:0x3C +fn_802160E4 = .text:0x802160E4; // type:function size:0xC8 +fn_802161AC = .text:0x802161AC; // type:function size:0x12C +fn_802162D8 = .text:0x802162D8; // type:function size:0x64 +Type__19NewRemoteMachineMsgFv = .text:0x8021633C; // type:function size:0x4C +fn_80216388 = .text:0x80216388; // type:function size:0xE4 +fn_8021646C = .text:0x8021646C; // type:function size:0x14C +fn_802165B8 = .text:0x802165B8; // type:function size:0x64 +fn_8021661C = .text:0x8021661C; // type:function size:0x180 +fn_8021679C = .text:0x8021679C; // type:function size:0x8C +fn_80216828 = .text:0x80216828; // type:function size:0x4C +fn_80216874 = .text:0x80216874; // type:function size:0x68 +fn_802168DC = .text:0x802168DC; // type:function size:0xD8 +fn_802169B4 = .text:0x802169B4; // type:function size:0x14C +fn_80216B00 = .text:0x80216B00; // type:function size:0xBC +fn_80216BBC = .text:0x80216BBC; // type:function size:0x74 +fn_80216C30 = .text:0x80216C30; // type:function size:0x140 +fn_80216D70 = .text:0x80216D70; // type:function size:0x4C +fn_80216DBC = .text:0x80216DBC; // type:function size:0x70 +fn_80216E2C = .text:0x80216E2C; // type:function size:0x3C +fn_80216E68 = .text:0x80216E68; // type:function size:0x48 +fn_80216EB0 = .text:0x80216EB0; // type:function size:0x24 +fn_80216ED4 = .text:0x80216ED4; // type:function size:0x100 +Handle__14BandMachineMgrFP9DataArrayb = .text:0x80216FD4; // type:function size:0x3E8 +__ct__16NewRemoteUserMsgFP9DataArray = .text:0x802173BC; // type:function size:0x3C +fn_802173F8 = .text:0x802173F8; // type:function size:0x4 +fn_802173FC = .text:0x802173FC; // type:function size:0x5C +fn_80217458 = .text:0x80217458; // type:function size:0x10 +fn_80217468 = .text:0x80217468; // type:function size:0x4 +fn_8021746C = .text:0x8021746C; // type:function size:0x5C +fn_802174C8 = .text:0x802174C8; // type:function size:0x10 +fn_802174D8 = .text:0x802174D8; // type:function size:0x4 +fn_802174DC = .text:0x802174DC; // type:function size:0x4 +fn_802174E0 = .text:0x802174E0; // type:function size:0x30 +fn_80217510 = .text:0x80217510; // type:function size:0x14 +fn_80217524 = .text:0x80217524; // type:function size:0x14 +fn_80217538 = .text:0x80217538; // type:function size:0x164 +fn_8021769C = .text:0x8021769C; // type:function size:0x88 +fn_80217724 = .text:0x80217724; // type:function size:0xB0 +fn_802177D4 = .text:0x802177D4; // type:function size:0x64 +fn_80217838 = .text:0x80217838; // type:function size:0x134 +fn_8021796C = .text:0x8021796C; // type:function size:0x68 +fn_802179D4 = .text:0x802179D4; // type:function size:0x8 +fn_802179DC = .text:0x802179DC; // type:function size:0x8 +fn_802179E4 = .text:0x802179E4; // type:function size:0x84 +fn_80217A68 = .text:0x80217A68; // type:function size:0xC +fn_80217A74 = .text:0x80217A74; // type:function size:0x8 +fn_80217A7C = .text:0x80217A7C; // type:function size:0x8 +fn_80217A84 = .text:0x80217A84; // type:function size:0xB0 +fn_80217B34 = .text:0x80217B34; // type:function size:0x8 +fn_80217B3C = .text:0x80217B3C; // type:function size:0x50 +fn_80217B8C = .text:0x80217B8C; // type:function size:0x42C +fn_80217FB8 = .text:0x80217FB8; // type:function size:0xBC +fn_80218074 = .text:0x80218074; // type:function size:0x8 +fn_8021807C = .text:0x8021807C; // type:function size:0xAC +fn_80218128 = .text:0x80218128; // type:function size:0x2C +fn_80218154 = .text:0x80218154; // type:function size:0x14 +fn_80218168 = .text:0x80218168; // type:function size:0x3C +fn_802181A4 = .text:0x802181A4; // type:function size:0x80 +fn_80218224 = .text:0x80218224; // type:function size:0x8 +fn_8021822C = .text:0x8021822C; // type:function size:0x30 +fn_8021825C = .text:0x8021825C; // type:function size:0x44 +fn_802182A0 = .text:0x802182A0; // type:function size:0x118 +fn_802183B8 = .text:0x802183B8; // type:function size:0x54 +fn_8021840C = .text:0x8021840C; // type:function size:0xFC +fn_80218508 = .text:0x80218508; // type:function size:0x27C +Type__25OvershellOverrideEndedMsgFv = .text:0x80218784; // type:function size:0x4C +fn_802187D0 = .text:0x802187D0; // type:function size:0xB0 +fn_80218880 = .text:0x80218880; // type:function size:0x88 +fn_80218908 = .text:0x80218908; // type:function size:0x1DC +fn_80218AE4 = .text:0x80218AE4; // type:function size:0x54 +fn_80218B38 = .text:0x80218B38; // type:function size:0x4 +fn_80218B3C = .text:0x80218B3C; // type:function size:0x180 +fn_80218CBC = .text:0x80218CBC; // type:function size:0xB0 +fn_80218D6C = .text:0x80218D6C; // type:function size:0x98 +fn_80218E04 = .text:0x80218E04; // type:function size:0x1B8 +fn_80218FBC = .text:0x80218FBC; // type:function size:0x1D4 +fn_80219190 = .text:0x80219190; // type:function size:0x5C +fn_802191EC = .text:0x802191EC; // type:function size:0x120 +fn_8021930C = .text:0x8021930C; // type:function size:0x14 +fn_80219320 = .text:0x80219320; // type:function size:0x138 +fn_80219458 = .text:0x80219458; // type:function size:0xC0 +fn_80219518 = .text:0x80219518; // type:function size:0x1A8 +fn_802196C0 = .text:0x802196C0; // type:function size:0x1D8 +fn_80219898 = .text:0x80219898; // type:function size:0x40 +fn_802198D8 = .text:0x802198D8; // type:function size:0x84 +fn_8021995C = .text:0x8021995C; // type:function size:0x70 +fn_802199CC = .text:0x802199CC; // type:function size:0x70 +fn_80219A3C = .text:0x80219A3C; // type:function size:0x68 +fn_80219AA4 = .text:0x80219AA4; // type:function size:0x58 +fn_80219AFC = .text:0x80219AFC; // type:function size:0x2C +fn_80219B28 = .text:0x80219B28; // type:function size:0x3C +fn_80219B64 = .text:0x80219B64; // type:function size:0x5C +fn_80219BC0 = .text:0x80219BC0; // type:function size:0x8 +fn_80219BC8 = .text:0x80219BC8; // type:function size:0x68 +fn_80219C30 = .text:0x80219C30; // type:function size:0x488 +fn_8021A0B8 = .text:0x8021A0B8; // type:function size:0x1E0 +fn_8021A298 = .text:0x8021A298; // type:function size:0x78 +fn_8021A310 = .text:0x8021A310; // type:function size:0xDC +fn_8021A3EC = .text:0x8021A3EC; // type:function size:0x12C +fn_8021A518 = .text:0x8021A518; // type:function size:0x5C +fn_8021A574 = .text:0x8021A574; // type:function size:0x28 +fn_8021A59C = .text:0x8021A59C; // type:function size:0x48 +fn_8021A5E4 = .text:0x8021A5E4; // type:function size:0xC8 +fn_8021A6AC = .text:0x8021A6AC; // type:function size:0x48 +fn_8021A6F4 = .text:0x8021A6F4; // type:function size:0x5C +Handle__12MainHubPanelFP9DataArrayb = .text:0x8021A750; // type:function size:0xB20 +__ct__12UserLoginMsgFP9DataArray = .text:0x8021B270; // type:function size:0x3C +__ct__20MatchmakerChangedMsgFP9DataArray = .text:0x8021B2AC; // type:function size:0x3C +Type__20MatchmakerChangedMsgFv = .text:0x8021B2E8; // type:function size:0x4C +__ct__25OvershellOverrideEndedMsgFP9DataArray = .text:0x8021B334; // type:function size:0x3C +__ct__20ReleasingLockStepMsgFP9DataArray = .text:0x8021B370; // type:function size:0x3C +__ct__23RemoteMachineUpdatedMsgFP9DataArray = .text:0x8021B3AC; // type:function size:0x3C +__ct__19NewRemoteMachineMsgFP9DataArray = .text:0x8021B3E8; // type:function size:0x3C +__ct__20SessionMgrUpdatedMsgFP9DataArray = .text:0x8021B424; // type:function size:0x3C +Type__20SessionMgrUpdatedMsgFv = .text:0x8021B460; // type:function size:0x4C +fn_8021B4AC = .text:0x8021B4AC; // type:function size:0x2C +fn_8021B4D8 = .text:0x8021B4D8; // type:function size:0x134 +fn_8021B60C = .text:0x8021B60C; // type:function size:0x4C +fn_8021B658 = .text:0x8021B658; // type:function size:0x4 +fn_8021B65C = .text:0x8021B65C; // type:function size:0x4 +fn_8021B660 = .text:0x8021B660; // type:function size:0x5C +fn_8021B6BC = .text:0x8021B6BC; // type:function size:0x10 +fn_8021B6CC = .text:0x8021B6CC; // type:function size:0x50 +fn_8021B71C = .text:0x8021B71C; // type:function size:0x54 +fn_8021B770 = .text:0x8021B770; // type:function size:0x114 +fn_8021B884 = .text:0x8021B884; // type:function size:0xA0 +fn_8021B924 = .text:0x8021B924; // type:function size:0x14 +fn_8021B938 = .text:0x8021B938; // type:function size:0x14 +fn_8021B94C = .text:0x8021B94C; // type:function size:0x14 +fn_8021B960 = .text:0x8021B960; // type:function size:0x14 +fn_8021B974 = .text:0x8021B974; // type:function size:0x14 +fn_8021B988 = .text:0x8021B988; // type:function size:0x14 +fn_8021B99C = .text:0x8021B99C; // type:function size:0x14 +Handle__22VignetteViewerProviderFP9DataArrayb = .text:0x8021B9B0; // type:function size:0x154 +fn_8021BB04 = .text:0x8021BB04; // type:function size:0xD4 +fn_8021BBD8 = .text:0x8021BBD8; // type:function size:0x30 +fn_8021BC08 = .text:0x8021BC08; // type:function size:0xA8 +fn_8021BCB0 = .text:0x8021BCB0; // type:function size:0x6C +fn_8021BD1C = .text:0x8021BD1C; // type:function size:0x100 +fn_8021BE1C = .text:0x8021BE1C; // type:function size:0x68 +fn_8021BE84 = .text:0x8021BE84; // type:function size:0x38 +fn_8021BEBC = .text:0x8021BEBC; // type:function size:0x38 +fn_8021BEF4 = .text:0x8021BEF4; // type:function size:0x110 +fn_8021C004 = .text:0x8021C004; // type:function size:0x178 +fn_8021C17C = .text:0x8021C17C; // type:function size:0x114 +fn_8021C290 = .text:0x8021C290; // type:function size:0x10C +fn_8021C39C = .text:0x8021C39C; // type:function size:0x40 +fn_8021C3DC = .text:0x8021C3DC; // type:function size:0x40 +fn_8021C41C = .text:0x8021C41C; // type:function size:0xD8 +fn_8021C4F4 = .text:0x8021C4F4; // type:function size:0x2C +fn_8021C520 = .text:0x8021C520; // type:function size:0x8 +fn_8021C528 = .text:0x8021C528; // type:function size:0xC +fn_8021C534 = .text:0x8021C534; // type:function size:0x8 +fn_8021C53C = .text:0x8021C53C; // type:function size:0x8 +fn_8021C544 = .text:0x8021C544; // type:function size:0x8 +fn_8021C54C = .text:0x8021C54C; // type:function size:0x8 +fn_8021C554 = .text:0x8021C554; // type:function size:0x140 +fn_8021C694 = .text:0x8021C694; // type:function size:0x108 +fn_8021C79C = .text:0x8021C79C; // type:function size:0x9C +fn_8021C838 = .text:0x8021C838; // type:function size:0x60 +fn_8021C898 = .text:0x8021C898; // type:function size:0x60 +fn_8021C8F8 = .text:0x8021C8F8; // type:function size:0x54 +fn_8021C94C = .text:0x8021C94C; // type:function size:0x8 +fn_8021C954 = .text:0x8021C954; // type:function size:0x134 +fn_8021CA88 = .text:0x8021CA88; // type:function size:0x40 +Handle__15ManageBandPanelFP9DataArrayb = .text:0x8021CAC8; // type:function size:0x5FC +fn_8021D0C4 = .text:0x8021D0C4; // type:function size:0x134 +fn_8021D1F8 = .text:0x8021D1F8; // type:function size:0x4C +fn_8021D244 = .text:0x8021D244; // type:function size:0x4 +fn_8021D248 = .text:0x8021D248; // type:function size:0x68 +fn_8021D2B0 = .text:0x8021D2B0; // type:function size:0x14 +fn_8021D2C4 = .text:0x8021D2C4; // type:function size:0x14 +fn_8021D2D8 = .text:0x8021D2D8; // type:function size:0x14 +fn_8021D2EC = .text:0x8021D2EC; // type:function size:0x14 +fn_8021D300 = .text:0x8021D300; // type:function size:0x8 +fn_8021D308 = .text:0x8021D308; // type:function size:0x8 +fn_8021D310 = .text:0x8021D310; // type:function size:0xA8 +fn_8021D3B8 = .text:0x8021D3B8; // type:function size:0x2C +fn_8021D3E4 = .text:0x8021D3E4; // type:function size:0x100 +fn_8021D4E4 = .text:0x8021D4E4; // type:function size:0x44 +fn_8021D528 = .text:0x8021D528; // type:function size:0xF4 +fn_8021D61C = .text:0x8021D61C; // type:function size:0x3C +fn_8021D658 = .text:0x8021D658; // type:function size:0x10 +fn_8021D668 = .text:0x8021D668; // type:function size:0x70 +fn_8021D6D8 = .text:0x8021D6D8; // type:function size:0xE0 +fn_8021D7B8 = .text:0x8021D7B8; // type:function size:0x58 +fn_8021D810 = .text:0x8021D810; // type:function size:0x68 +fn_8021D878 = .text:0x8021D878; // type:function size:0x6C +fn_8021D8E4 = .text:0x8021D8E4; // type:function size:0x8C +fn_8021D970 = .text:0x8021D970; // type:function size:0x74 +fn_8021D9E4 = .text:0x8021D9E4; // type:function size:0x38 +fn_8021DA1C = .text:0x8021DA1C; // type:function size:0xA8 +__ct__20MatchmakerChangedMsgFv = .text:0x8021DAC4; // type:function size:0x4C +fn_8021DB10 = .text:0x8021DB10; // type:function size:0xAC +fn_8021DBBC = .text:0x8021DBBC; // type:function size:0x50 +fn_8021DC0C = .text:0x8021DC0C; // type:function size:0x50 +fn_8021DC5C = .text:0x8021DC5C; // type:function size:0x14 +Handle__10MatchmakerFP9DataArrayb = .text:0x8021DC70; // type:function size:0x110 +fn_8021DD80 = .text:0x8021DD80; // type:function size:0x1DC +fn_8021DF5C = .text:0x8021DF5C; // type:function size:0x144 +fn_8021E0A0 = .text:0x8021E0A0; // type:function size:0xDC +fn_8021E17C = .text:0x8021E17C; // type:function size:0xEC +fn_8021E268 = .text:0x8021E268; // type:function size:0x54 +fn_8021E2BC = .text:0x8021E2BC; // type:function size:0xB0 +fn_8021E36C = .text:0x8021E36C; // type:function size:0x14 +fn_8021E380 = .text:0x8021E380; // type:function size:0x8 +fn_8021E388 = .text:0x8021E388; // type:function size:0x238 +fn_8021E5C0 = .text:0x8021E5C0; // type:function size:0x100 +fn_8021E6C0 = .text:0x8021E6C0; // type:function size:0xBC +fn_8021E77C = .text:0x8021E77C; // type:function size:0xBC +fn_8021E838 = .text:0x8021E838; // type:function size:0xE0 +fn_8021E918 = .text:0x8021E918; // type:function size:0x2B4 +fn_8021EBCC = .text:0x8021EBCC; // type:function size:0x160 +fn_8021ED2C = .text:0x8021ED2C; // type:function size:0x8 +fn_8021ED34 = .text:0x8021ED34; // type:function size:0x50 +Handle__14BandMatchmakerFP9DataArrayb = .text:0x8021ED84; // type:function size:0x2E4 +__ct__14ModeChangedMsgFP9DataArray = .text:0x8021F068; // type:function size:0x3C +fn_8021F0A4 = .text:0x8021F0A4; // type:function size:0xAC +fn_8021F150 = .text:0x8021F150; // type:function size:0x10 +fn_8021F160 = .text:0x8021F160; // type:function size:0x54 +fn_8021F1B4 = .text:0x8021F1B4; // type:function size:0x14 +fn_8021F1C8 = .text:0x8021F1C8; // type:function size:0x14 +fn_8021F1DC = .text:0x8021F1DC; // type:function size:0x14 +fn_8021F1F0 = .text:0x8021F1F0; // type:function size:0x14 +fn_8021F204 = .text:0x8021F204; // type:function size:0x14 +fn_8021F218 = .text:0x8021F218; // type:function size:0x10 +fn_8021F228 = .text:0x8021F228; // type:function size:0x10 +fn_8021F238 = .text:0x8021F238; // type:function size:0x114 +fn_8021F34C = .text:0x8021F34C; // type:function size:0xBC +fn_8021F408 = .text:0x8021F408; // type:function size:0x64 +fn_8021F46C = .text:0x8021F46C; // type:function size:0x10 +fn_8021F47C = .text:0x8021F47C; // type:function size:0x10 +fn_8021F48C = .text:0x8021F48C; // type:function size:0xB8 +fn_8021F544 = .text:0x8021F544; // type:function size:0x3C +fn_8021F580 = .text:0x8021F580; // type:function size:0x2C +fn_8021F5AC = .text:0x8021F5AC; // type:function size:0x4 +fn_8021F5B0 = .text:0x8021F5B0; // type:function size:0x58 +fn_8021F608 = .text:0x8021F608; // type:function size:0xC +fn_8021F614 = .text:0x8021F614; // type:function size:0x4 +fn_8021F618 = .text:0x8021F618; // type:function size:0x58 +fn_8021F670 = .text:0x8021F670; // type:function size:0xC +fn_8021F67C = .text:0x8021F67C; // type:function size:0x4 +fn_8021F680 = .text:0x8021F680; // type:function size:0x58 +fn_8021F6D8 = .text:0x8021F6D8; // type:function size:0xC +fn_8021F6E4 = .text:0x8021F6E4; // type:function size:0x4 +fn_8021F6E8 = .text:0x8021F6E8; // type:function size:0x58 +fn_8021F740 = .text:0x8021F740; // type:function size:0xC +fn_8021F74C = .text:0x8021F74C; // type:function size:0x10 +fn_8021F75C = .text:0x8021F75C; // type:function size:0x10 +fn_8021F76C = .text:0x8021F76C; // type:function size:0x4 +fn_8021F770 = .text:0x8021F770; // type:function size:0x58 +fn_8021F7C8 = .text:0x8021F7C8; // type:function size:0xC +fn_8021F7D4 = .text:0x8021F7D4; // type:function size:0x30 +fn_8021F804 = .text:0x8021F804; // type:function size:0x3C +fn_8021F840 = .text:0x8021F840; // type:function size:0x14 +fn_8021F854 = .text:0x8021F854; // type:function size:0x14 +fn_8021F868 = .text:0x8021F868; // type:function size:0x14 +fn_8021F87C = .text:0x8021F87C; // type:function size:0x1DC +fn_8021FA58 = .text:0x8021FA58; // type:function size:0x50 +fn_8021FAA8 = .text:0x8021FAA8; // type:function size:0x50 +fn_8021FAF8 = .text:0x8021FAF8; // type:function size:0x50 +fn_8021FB48 = .text:0x8021FB48; // type:function size:0x50 +fn_8021FB98 = .text:0x8021FB98; // type:function size:0x50 +fn_8021FBE8 = .text:0x8021FBE8; // type:function size:0x34 +fn_8021FC1C = .text:0x8021FC1C; // type:function size:0x48 +fn_8021FC64 = .text:0x8021FC64; // type:function size:0xCC +fn_8021FD30 = .text:0x8021FD30; // type:function size:0x34 +fn_8021FD64 = .text:0x8021FD64; // type:function size:0x48 +fn_8021FDAC = .text:0x8021FDAC; // type:function size:0xCC +fn_8021FE78 = .text:0x8021FE78; // type:function size:0x34 +fn_8021FEAC = .text:0x8021FEAC; // type:function size:0x48 +fn_8021FEF4 = .text:0x8021FEF4; // type:function size:0x34 +fn_8021FF28 = .text:0x8021FF28; // type:function size:0x3C +fn_8021FF64 = .text:0x8021FF64; // type:function size:0x4C +fn_8021FFB0 = .text:0x8021FFB0; // type:function size:0x34 +fn_8021FFE4 = .text:0x8021FFE4; // type:function size:0x40 +fn_80220024 = .text:0x80220024; // type:function size:0x4C +fn_80220070 = .text:0x80220070; // type:function size:0x34 +fn_802200A4 = .text:0x802200A4; // type:function size:0x34 +fn_802200D8 = .text:0x802200D8; // type:function size:0x4C +fn_80220124 = .text:0x80220124; // type:function size:0x34 +fn_80220158 = .text:0x80220158; // type:function size:0x40 +fn_80220198 = .text:0x80220198; // type:function size:0x4C +fn_802201E4 = .text:0x802201E4; // type:function size:0x34 +fn_80220218 = .text:0x80220218; // type:function size:0x40 +StaticClassName__16UGCPurchasePanelFv = .text:0x80220258; // type:function size:0x4C +fn_802202A4 = .text:0x802202A4; // type:function size:0x34 +fn_802202D8 = .text:0x802202D8; // type:function size:0x40 +StaticClassName__13TrainingPanelFv = .text:0x80220318; // type:function size:0x4C +fn_80220364 = .text:0x80220364; // type:function size:0x34 +fn_80220398 = .text:0x80220398; // type:function size:0x40 +fn_802203D8 = .text:0x802203D8; // type:function size:0x4C +fn_80220424 = .text:0x80220424; // type:function size:0x34 +fn_80220458 = .text:0x80220458; // type:function size:0x40 +fn_80220498 = .text:0x80220498; // type:function size:0x4C +fn_802204E4 = .text:0x802204E4; // type:function size:0x34 +fn_80220518 = .text:0x80220518; // type:function size:0x40 +fn_80220558 = .text:0x80220558; // type:function size:0x4C +fn_802205A4 = .text:0x802205A4; // type:function size:0x34 +fn_802205D8 = .text:0x802205D8; // type:function size:0x40 +fn_80220618 = .text:0x80220618; // type:function size:0x4C +fn_80220664 = .text:0x80220664; // type:function size:0x34 +fn_80220698 = .text:0x80220698; // type:function size:0x40 +fn_802206D8 = .text:0x802206D8; // type:function size:0x4C +fn_80220724 = .text:0x80220724; // type:function size:0x34 +fn_80220758 = .text:0x80220758; // type:function size:0x40 +StaticClassName__14StoreInfoPanelFv = .text:0x80220798; // type:function size:0x4C +fn_802207E4 = .text:0x802207E4; // type:function size:0x34 +fn_80220818 = .text:0x80220818; // type:function size:0x40 +fn_80220858 = .text:0x80220858; // type:function size:0x4C +fn_802208A4 = .text:0x802208A4; // type:function size:0x34 +fn_802208D8 = .text:0x802208D8; // type:function size:0x34 +fn_8022090C = .text:0x8022090C; // type:function size:0x4C +fn_80220958 = .text:0x80220958; // type:function size:0x34 +fn_8022098C = .text:0x8022098C; // type:function size:0x40 +fn_802209CC = .text:0x802209CC; // type:function size:0x4C +fn_80220A18 = .text:0x80220A18; // type:function size:0x34 +fn_80220A4C = .text:0x80220A4C; // type:function size:0x40 +fn_80220A8C = .text:0x80220A8C; // type:function size:0xD0 +fn_80220B5C = .text:0x80220B5C; // type:function size:0x4C +fn_80220BA8 = .text:0x80220BA8; // type:function size:0x34 +fn_80220BDC = .text:0x80220BDC; // type:function size:0x40 +fn_80220C1C = .text:0x80220C1C; // type:function size:0x4C +fn_80220C68 = .text:0x80220C68; // type:function size:0x34 +fn_80220C9C = .text:0x80220C9C; // type:function size:0x40 +fn_80220CDC = .text:0x80220CDC; // type:function size:0x4C +fn_80220D28 = .text:0x80220D28; // type:function size:0x34 +fn_80220D5C = .text:0x80220D5C; // type:function size:0x40 +fn_80220D9C = .text:0x80220D9C; // type:function size:0x34 +fn_80220DD0 = .text:0x80220DD0; // type:function size:0x40 +fn_80220E10 = .text:0x80220E10; // type:function size:0x4C +fn_80220E5C = .text:0x80220E5C; // type:function size:0x34 +fn_80220E90 = .text:0x80220E90; // type:function size:0x40 +fn_80220ED0 = .text:0x80220ED0; // type:function size:0x4C +fn_80220F1C = .text:0x80220F1C; // type:function size:0x34 +fn_80220F50 = .text:0x80220F50; // type:function size:0x40 +fn_80220F90 = .text:0x80220F90; // type:function size:0x4C +fn_80220FDC = .text:0x80220FDC; // type:function size:0x34 +fn_80221010 = .text:0x80221010; // type:function size:0x40 +fn_80221050 = .text:0x80221050; // type:function size:0x4C +fn_8022109C = .text:0x8022109C; // type:function size:0x34 +fn_802210D0 = .text:0x802210D0; // type:function size:0x40 +fn_80221110 = .text:0x80221110; // type:function size:0x4C +fn_8022115C = .text:0x8022115C; // type:function size:0x34 +fn_80221190 = .text:0x80221190; // type:function size:0x40 +StaticClassName__16PatchSelectPanelFv = .text:0x802211D0; // type:function size:0x4C +fn_8022121C = .text:0x8022121C; // type:function size:0x34 +fn_80221250 = .text:0x80221250; // type:function size:0x40 +StaticClassName__10PatchPanelFv = .text:0x80221290; // type:function size:0x4C +fn_802212DC = .text:0x802212DC; // type:function size:0x34 +fn_80221310 = .text:0x80221310; // type:function size:0x40 +fn_80221350 = .text:0x80221350; // type:function size:0x4C +fn_8022139C = .text:0x8022139C; // type:function size:0x34 +fn_802213D0 = .text:0x802213D0; // type:function size:0x40 +fn_80221410 = .text:0x80221410; // type:function size:0x98 +fn_802214A8 = .text:0x802214A8; // type:function size:0x4C +fn_802214F4 = .text:0x802214F4; // type:function size:0x34 +fn_80221528 = .text:0x80221528; // type:function size:0x40 +fn_80221568 = .text:0x80221568; // type:function size:0x4C +fn_802215B4 = .text:0x802215B4; // type:function size:0x34 +fn_802215E8 = .text:0x802215E8; // type:function size:0x40 +StaticClassName__10MoviePanelFv = .text:0x80221628; // type:function size:0x4C +fn_80221674 = .text:0x80221674; // type:function size:0x34 +fn_802216A8 = .text:0x802216A8; // type:function size:0x40 +fn_802216E8 = .text:0x802216E8; // type:function size:0x4C +fn_80221734 = .text:0x80221734; // type:function size:0x34 +fn_80221768 = .text:0x80221768; // type:function size:0x40 +fn_802217A8 = .text:0x802217A8; // type:function size:0x34 +fn_802217DC = .text:0x802217DC; // type:function size:0x40 +fn_8022181C = .text:0x8022181C; // type:function size:0x34 +fn_80221850 = .text:0x80221850; // type:function size:0x48 +fn_80221898 = .text:0x80221898; // type:function size:0x4C +fn_802218E4 = .text:0x802218E4; // type:function size:0x34 +fn_80221918 = .text:0x80221918; // type:function size:0x40 +fn_80221958 = .text:0x80221958; // type:function size:0x34 +fn_8022198C = .text:0x8022198C; // type:function size:0x40 +fn_802219CC = .text:0x802219CC; // type:function size:0x4C +fn_80221A18 = .text:0x80221A18; // type:function size:0x34 +fn_80221A4C = .text:0x80221A4C; // type:function size:0x40 +fn_80221A8C = .text:0x80221A8C; // type:function size:0x34 +fn_80221AC0 = .text:0x80221AC0; // type:function size:0x40 +fn_80221B00 = .text:0x80221B00; // type:function size:0x34 +fn_80221B34 = .text:0x80221B34; // type:function size:0x40 +fn_80221B74 = .text:0x80221B74; // type:function size:0x34 +fn_80221BA8 = .text:0x80221BA8; // type:function size:0x40 +fn_80221BE8 = .text:0x80221BE8; // type:function size:0x34 +fn_80221C1C = .text:0x80221C1C; // type:function size:0x40 +fn_80221C5C = .text:0x80221C5C; // type:function size:0x4C +fn_80221CA8 = .text:0x80221CA8; // type:function size:0x34 +fn_80221CDC = .text:0x80221CDC; // type:function size:0x40 +fn_80221D1C = .text:0x80221D1C; // type:function size:0x34 +fn_80221D50 = .text:0x80221D50; // type:function size:0x40 +fn_80221D90 = .text:0x80221D90; // type:function size:0x34 +fn_80221DC4 = .text:0x80221DC4; // type:function size:0x40 +fn_80221E04 = .text:0x80221E04; // type:function size:0x34 +fn_80221E38 = .text:0x80221E38; // type:function size:0x40 +fn_80221E78 = .text:0x80221E78; // type:function size:0x34 +fn_80221EAC = .text:0x80221EAC; // type:function size:0x40 +fn_80221EEC = .text:0x80221EEC; // type:function size:0x34 +fn_80221F20 = .text:0x80221F20; // type:function size:0x40 +fn_80221F60 = .text:0x80221F60; // type:function size:0x80 +fn_80221FE0 = .text:0x80221FE0; // type:function size:0x34 +fn_80222014 = .text:0x80222014; // type:function size:0x40 +fn_80222054 = .text:0x80222054; // type:function size:0x34 +fn_80222088 = .text:0x80222088; // type:function size:0x40 +fn_802220C8 = .text:0x802220C8; // type:function size:0x78 +fn_80222140 = .text:0x80222140; // type:function size:0x34 +fn_80222174 = .text:0x80222174; // type:function size:0x40 +fn_802221B4 = .text:0x802221B4; // type:function size:0x34 +fn_802221E8 = .text:0x802221E8; // type:function size:0x34 +fn_8022221C = .text:0x8022221C; // type:function size:0x54 +fn_80222270 = .text:0x80222270; // type:function size:0x34 +fn_802222A4 = .text:0x802222A4; // type:function size:0x40 +fn_802222E4 = .text:0x802222E4; // type:function size:0x34 +fn_80222318 = .text:0x80222318; // type:function size:0x40 +fn_80222358 = .text:0x80222358; // type:function size:0x34 +fn_8022238C = .text:0x8022238C; // type:function size:0x40 +fn_802223CC = .text:0x802223CC; // type:function size:0x4C +fn_80222418 = .text:0x80222418; // type:function size:0x34 +fn_8022244C = .text:0x8022244C; // type:function size:0x40 +fn_8022248C = .text:0x8022248C; // type:function size:0x34 +fn_802224C0 = .text:0x802224C0; // type:function size:0x40 +fn_80222500 = .text:0x80222500; // type:function size:0x34 +fn_80222534 = .text:0x80222534; // type:function size:0x40 +fn_80222574 = .text:0x80222574; // type:function size:0x34 +fn_802225A8 = .text:0x802225A8; // type:function size:0x40 +fn_802225E8 = .text:0x802225E8; // type:function size:0x34 +fn_8022261C = .text:0x8022261C; // type:function size:0x40 +__ct__9MetaPanelFv = .text:0x8022265C; // type:function size:0x2E8 +__dt__9MetaPanelFv = .text:0x80222944; // type:function size:0x18C +Load__9MetaPanelFv = .text:0x80222AD0; // type:function size:0x128 +fn_80222BF8 = .text:0x80222BF8; // type:function size:0x44 +fn_80222C3C = .text:0x80222C3C; // type:function size:0x60 +fn_80222C9C = .text:0x80222C9C; // type:function size:0x54 +fn_80222CF0 = .text:0x80222CF0; // type:function size:0x60 +fn_80222D50 = .text:0x80222D50; // type:function size:0x4 +fn_80222D54 = .text:0x80222D54; // type:function size:0x58 +fn_80222DAC = .text:0x80222DAC; // type:function size:0x48 +fn_80222DF4 = .text:0x80222DF4; // type:function size:0x34 +fn_80222E28 = .text:0x80222E28; // type:function size:0x84 +fn_80222EAC = .text:0x80222EAC; // type:function size:0x40 +fn_80222EEC = .text:0x80222EEC; // type:function size:0xC4 +fn_80222FB0 = .text:0x80222FB0; // type:function size:0x108 +fn_802230B8 = .text:0x802230B8; // type:function size:0x3C +fn_802230F4 = .text:0x802230F4; // type:function size:0x38 +fn_8022312C = .text:0x8022312C; // type:function size:0x2C +fn_80223158 = .text:0x80223158; // type:function size:0x70 +fn_802231C8 = .text:0x802231C8; // type:function size:0x5C +fn_80223224 = .text:0x80223224; // type:function size:0xAC +Handle__9MetaPanelFP9DataArrayb = .text:0x802232D0; // type:function size:0x250 +fn_80223520 = .text:0x80223520; // type:function size:0x3C +fn_8022355C = .text:0x8022355C; // type:function size:0x4C +fn_802235A8 = .text:0x802235A8; // type:function size:0x3C +fn_802235E4 = .text:0x802235E4; // type:function size:0x134 +fn_80223718 = .text:0x80223718; // type:function size:0x4 +fn_8022371C = .text:0x8022371C; // type:function size:0x14 +fn_80223730 = .text:0x80223730; // type:function size:0x14 +fn_80223744 = .text:0x80223744; // type:function size:0x14 +fn_80223758 = .text:0x80223758; // type:function size:0x14 +fn_8022376C = .text:0x8022376C; // type:function size:0x58 +fn_802237C4 = .text:0x802237C4; // type:function size:0x40 +fn_80223804 = .text:0x80223804; // type:function size:0x4C +fn_80223850 = .text:0x80223850; // type:function size:0x134 +fn_80223984 = .text:0x80223984; // type:function size:0x58 +fn_802239DC = .text:0x802239DC; // type:function size:0x58 +fn_80223A34 = .text:0x80223A34; // type:function size:0x80 +fn_80223AB4 = .text:0x80223AB4; // type:function size:0x80 +fn_80223B34 = .text:0x80223B34; // type:function size:0x58 +fn_80223B8C = .text:0x80223B8C; // type:function size:0x54 +fn_80223BE0 = .text:0x80223BE0; // type:function size:0x5C +fn_80223C3C = .text:0x80223C3C; // type:function size:0x6C +fn_80223CA8 = .text:0x80223CA8; // type:function size:0x28 +fn_80223CD0 = .text:0x80223CD0; // type:function size:0x8 +fn_80223CD8 = .text:0x80223CD8; // type:function size:0x5C +fn_80223D34 = .text:0x80223D34; // type:function size:0x8 +fn_80223D3C = .text:0x80223D3C; // type:function size:0x3C +fn_80223D78 = .text:0x80223D78; // type:function size:0x30 +fn_80223DA8 = .text:0x80223DA8; // type:function size:0x30 +fn_80223DD8 = .text:0x80223DD8; // type:function size:0x40 +fn_80223E18 = .text:0x80223E18; // type:function size:0x78 +fn_80223E90 = .text:0x80223E90; // type:function size:0x38 +fn_80223EC8 = .text:0x80223EC8; // type:function size:0x4 +fn_80223ECC = .text:0x80223ECC; // type:function size:0x3C +fn_80223F08 = .text:0x80223F08; // type:function size:0x40 +fn_80223F48 = .text:0x80223F48; // type:function size:0x8C +fn_80223FD4 = .text:0x80223FD4; // type:function size:0x8 +fn_80223FDC = .text:0x80223FDC; // type:function size:0x2C +fn_80224008 = .text:0x80224008; // type:function size:0x58 +fn_80224060 = .text:0x80224060; // type:function size:0x28 +fn_80224088 = .text:0x80224088; // type:function size:0x68 +fn_802240F0 = .text:0x802240F0; // type:function size:0x40 +fn_80224130 = .text:0x80224130; // type:function size:0xA4 +fn_802241D4 = .text:0x802241D4; // type:function size:0x20 +fn_802241F4 = .text:0x802241F4; // type:function size:0x80 +fn_80224274 = .text:0x80224274; // type:function size:0x4 +fn_80224278 = .text:0x80224278; // type:function size:0x88 +fn_80224300 = .text:0x80224300; // type:function size:0x2C +fn_8022432C = .text:0x8022432C; // type:function size:0x10 +fn_8022433C = .text:0x8022433C; // type:function size:0x40 +fn_8022437C = .text:0x8022437C; // type:function size:0xB0 +fn_8022442C = .text:0x8022442C; // type:function size:0x54 +fn_80224480 = .text:0x80224480; // type:function size:0x8 +fn_80224488 = .text:0x80224488; // type:function size:0x8 +fn_80224490 = .text:0x80224490; // type:function size:0x4C +fn_802244DC = .text:0x802244DC; // type:function size:0x4C +fn_80224528 = .text:0x80224528; // type:function size:0x3C +__ct__17MetaPerformerImplFv = .text:0x80224564; // type:function size:0x3C +fn_802245A0 = .text:0x802245A0; // type:function size:0x8 +fn_802245A8 = .text:0x802245A8; // type:function size:0x4 +fn_802245AC = .text:0x802245AC; // type:function size:0x4C +fn_802245F8 = .text:0x802245F8; // type:function size:0x350 +fn_80224948 = .text:0x80224948; // type:function size:0x68 +fn_802249B0 = .text:0x802249B0; // type:function size:0x40 +fn_802249F0 = .text:0x802249F0; // type:function size:0x20C +fn_80224BFC = .text:0x80224BFC; // type:function size:0x58 +fn_80224C54 = .text:0x80224C54; // type:function size:0xC +fn_80224C60 = .text:0x80224C60; // type:function size:0xA0 +fn_80224D00 = .text:0x80224D00; // type:function size:0x8 +fn_80224D08 = .text:0x80224D08; // type:function size:0xBC +fn_80224DC4 = .text:0x80224DC4; // type:function size:0xB0 +fn_80224E74 = .text:0x80224E74; // type:function size:0x58 +fn_80224ECC = .text:0x80224ECC; // type:function size:0x8 +fn_80224ED4 = .text:0x80224ED4; // type:function size:0x8 +fn_80224EDC = .text:0x80224EDC; // type:function size:0xB0 +fn_80224F8C = .text:0x80224F8C; // type:function size:0x44 +fn_80224FD0 = .text:0x80224FD0; // type:function size:0x34 +fn_80225004 = .text:0x80225004; // type:function size:0x54 +fn_80225058 = .text:0x80225058; // type:function size:0x8 +fn_80225060 = .text:0x80225060; // type:function size:0x10 +fn_80225070 = .text:0x80225070; // type:function size:0x11C +fn_8022518C = .text:0x8022518C; // type:function size:0x64 +fn_802251F0 = .text:0x802251F0; // type:function size:0x120 +fn_80225310 = .text:0x80225310; // type:function size:0x1C +fn_8022532C = .text:0x8022532C; // type:function size:0x1C +fn_80225348 = .text:0x80225348; // type:function size:0x44 +fn_8022538C = .text:0x8022538C; // type:function size:0x2C +fn_802253B8 = .text:0x802253B8; // type:function size:0x34 +fn_802253EC = .text:0x802253EC; // type:function size:0x38 +fn_80225424 = .text:0x80225424; // type:function size:0x30 +fn_80225454 = .text:0x80225454; // type:function size:0x8C +fn_802254E0 = .text:0x802254E0; // type:function size:0x70 +fn_80225550 = .text:0x80225550; // type:function size:0x8 +fn_80225558 = .text:0x80225558; // type:function size:0xA0 +fn_802255F8 = .text:0x802255F8; // type:function size:0xB0 +fn_802256A8 = .text:0x802256A8; // type:function size:0x70 +fn_80225718 = .text:0x80225718; // type:function size:0x9C +fn_802257B4 = .text:0x802257B4; // type:function size:0xD0 +fn_80225884 = .text:0x80225884; // type:function size:0x24 +fn_802258A8 = .text:0x802258A8; // type:function size:0x8 +fn_802258B0 = .text:0x802258B0; // type:function size:0x8 +fn_802258B8 = .text:0x802258B8; // type:function size:0x58 +fn_80225910 = .text:0x80225910; // type:function size:0x5C +fn_8022596C = .text:0x8022596C; // type:function size:0x11C +fn_80225A88 = .text:0x80225A88; // type:function size:0xA0 +fn_80225B28 = .text:0x80225B28; // type:function size:0x84 +fn_80225BAC = .text:0x80225BAC; // type:function size:0xF0 +fn_80225C9C = .text:0x80225C9C; // type:function size:0xF0 +fn_80225D8C = .text:0x80225D8C; // type:function size:0xCC +fn_80225E58 = .text:0x80225E58; // type:function size:0xA8 +fn_80225F00 = .text:0x80225F00; // type:function size:0xC4 +fn_80225FC4 = .text:0x80225FC4; // type:function size:0xF0 +fn_802260B4 = .text:0x802260B4; // type:function size:0xD8 +fn_8022618C = .text:0x8022618C; // type:function size:0x60 +fn_802261EC = .text:0x802261EC; // type:function size:0x84 +fn_80226270 = .text:0x80226270; // type:function size:0x70 +fn_802262E0 = .text:0x802262E0; // type:function size:0x48 +fn_80226328 = .text:0x80226328; // type:function size:0x4C +fn_80226374 = .text:0x80226374; // type:function size:0xC +fn_80226380 = .text:0x80226380; // type:function size:0x94 +fn_80226414 = .text:0x80226414; // type:function size:0x164 +fn_80226578 = .text:0x80226578; // type:function size:0xC4 +fn_8022663C = .text:0x8022663C; // type:function size:0x4 +fn_80226640 = .text:0x80226640; // type:function size:0x88 +fn_802266C8 = .text:0x802266C8; // type:function size:0x2C +fn_802266F4 = .text:0x802266F4; // type:function size:0x88 +fn_8022677C = .text:0x8022677C; // type:function size:0x3C +fn_802267B8 = .text:0x802267B8; // type:function size:0xD4 +fn_8022688C = .text:0x8022688C; // type:function size:0xD4 +fn_80226960 = .text:0x80226960; // type:function size:0x104 +fn_80226A64 = .text:0x80226A64; // type:function size:0xE0 +fn_80226B44 = .text:0x80226B44; // type:function size:0x270 +fn_80226DB4 = .text:0x80226DB4; // type:function size:0x58 +fn_80226E0C = .text:0x80226E0C; // type:function size:0x80 +fn_80226E8C = .text:0x80226E8C; // type:function size:0x80 +fn_80226F0C = .text:0x80226F0C; // type:function size:0x58 +fn_80226F64 = .text:0x80226F64; // type:function size:0x54 +fn_80226FB8 = .text:0x80226FB8; // type:function size:0x5C +fn_80227014 = .text:0x80227014; // type:function size:0x6C +fn_80227080 = .text:0x80227080; // type:function size:0x28 +fn_802270A8 = .text:0x802270A8; // type:function size:0x8 +fn_802270B0 = .text:0x802270B0; // type:function size:0x3C +fn_802270EC = .text:0x802270EC; // type:function size:0x14 +fn_80227100 = .text:0x80227100; // type:function size:0x30 +fn_80227130 = .text:0x80227130; // type:function size:0x30 +fn_80227160 = .text:0x80227160; // type:function size:0x40 +fn_802271A0 = .text:0x802271A0; // type:function size:0x108 +fn_802272A8 = .text:0x802272A8; // type:function size:0x10 +fn_802272B8 = .text:0x802272B8; // type:function size:0x388 +fn_80227640 = .text:0x80227640; // type:function size:0x2B0 +fn_802278F0 = .text:0x802278F0; // type:function size:0x84 +fn_80227974 = .text:0x80227974; // type:function size:0x8 +fn_8022797C = .text:0x8022797C; // type:function size:0x8 +fn_80227984 = .text:0x80227984; // type:function size:0x210 +fn_80227B94 = .text:0x80227B94; // type:function size:0x54 +fn_80227BE8 = .text:0x80227BE8; // type:function size:0x4C +fn_80227C34 = .text:0x80227C34; // type:function size:0x4C +fn_80227C80 = .text:0x80227C80; // type:function size:0x88 +fn_80227D08 = .text:0x80227D08; // type:function size:0x74 +fn_80227D7C = .text:0x80227D7C; // type:function size:0x560 +fn_802282DC = .text:0x802282DC; // type:function size:0x194 +fn_80228470 = .text:0x80228470; // type:function size:0x38 +fn_802284A8 = .text:0x802284A8; // type:function size:0xC8 +fn_80228570 = .text:0x80228570; // type:function size:0x7C +fn_802285EC = .text:0x802285EC; // type:function size:0x8 +fn_802285F4 = .text:0x802285F4; // type:function size:0x70 +fn_80228664 = .text:0x80228664; // type:function size:0x60 +fn_802286C4 = .text:0x802286C4; // type:function size:0x354 +fn_80228A18 = .text:0x80228A18; // type:function size:0x154 +fn_80228B6C = .text:0x80228B6C; // type:function size:0x114 +fn_80228C80 = .text:0x80228C80; // type:function size:0x1FC +fn_80228E7C = .text:0x80228E7C; // type:function size:0x30 +fn_80228EAC = .text:0x80228EAC; // type:function size:0x10 +fn_80228EBC = .text:0x80228EBC; // type:function size:0x70 +fn_80228F2C = .text:0x80228F2C; // type:function size:0x54 +fn_80228F80 = .text:0x80228F80; // type:function size:0x70 +fn_80228FF0 = .text:0x80228FF0; // type:function size:0x140 +fn_80229130 = .text:0x80229130; // type:function size:0x1A8 +fn_802292D8 = .text:0x802292D8; // type:function size:0x30 +fn_80229308 = .text:0x80229308; // type:function size:0x1F0 +fn_802294F8 = .text:0x802294F8; // type:function size:0x50 +fn_80229548 = .text:0x80229548; // type:function size:0x30 +fn_80229578 = .text:0x80229578; // type:function size:0x80 +fn_802295F8 = .text:0x802295F8; // type:function size:0x8 +fn_80229600 = .text:0x80229600; // type:function size:0x80 +fn_80229680 = .text:0x80229680; // type:function size:0x8 +fn_80229688 = .text:0x80229688; // type:function size:0x8C +fn_80229714 = .text:0x80229714; // type:function size:0x17C +fn_80229890 = .text:0x80229890; // type:function size:0x30 +fn_802298C0 = .text:0x802298C0; // type:function size:0xD8 +fn_80229998 = .text:0x80229998; // type:function size:0x8 +fn_802299A0 = .text:0x802299A0; // type:function size:0x60 +fn_80229A00 = .text:0x80229A00; // type:function size:0x60 +fn_80229A60 = .text:0x80229A60; // type:function size:0x60 +fn_80229AC0 = .text:0x80229AC0; // type:function size:0x60 +fn_80229B20 = .text:0x80229B20; // type:function size:0x60 +fn_80229B80 = .text:0x80229B80; // type:function size:0x128 +fn_80229CA8 = .text:0x80229CA8; // type:function size:0x1AC +fn_80229E54 = .text:0x80229E54; // type:function size:0x1AC +fn_8022A000 = .text:0x8022A000; // type:function size:0x1AC +fn_8022A1AC = .text:0x8022A1AC; // type:function size:0x74 +fn_8022A220 = .text:0x8022A220; // type:function size:0x74 +fn_8022A294 = .text:0x8022A294; // type:function size:0x8 +fn_8022A29C = .text:0x8022A29C; // type:function size:0x14 +fn_8022A2B0 = .text:0x8022A2B0; // type:function size:0x18 +fn_8022A2C8 = .text:0x8022A2C8; // type:function size:0x14 +fn_8022A2DC = .text:0x8022A2DC; // type:function size:0x8 +fn_8022A2E4 = .text:0x8022A2E4; // type:function size:0x8 +fn_8022A2EC = .text:0x8022A2EC; // type:function size:0x48 +fn_8022A334 = .text:0x8022A334; // type:function size:0x18 +Handle__13MetaPerformerFP9DataArrayb = .text:0x8022A34C; // type:function size:0x1308 +fn_8022B654 = .text:0x8022B654; // type:function size:0x28 +fn_8022B67C = .text:0x8022B67C; // type:function size:0x114 +fn_8022B790 = .text:0x8022B790; // type:function size:0x5C +fn_8022B7EC = .text:0x8022B7EC; // type:function size:0x5C +fn_8022B848 = .text:0x8022B848; // type:function size:0x54 +fn_8022B89C = .text:0x8022B89C; // type:function size:0x5C +fn_8022B8F8 = .text:0x8022B8F8; // type:function size:0x5C +fn_8022B954 = .text:0x8022B954; // type:function size:0x160 +fn_8022BAB4 = .text:0x8022BAB4; // type:function size:0x5C +fn_8022BB10 = .text:0x8022BB10; // type:function size:0x28 +fn_8022BB38 = .text:0x8022BB38; // type:function size:0x5C +fn_8022BB94 = .text:0x8022BB94; // type:function size:0x60 +fn_8022BBF4 = .text:0x8022BBF4; // type:function size:0x114 +fn_8022BD08 = .text:0x8022BD08; // type:function size:0x5C +fn_8022BD64 = .text:0x8022BD64; // type:function size:0x5C +fn_8022BDC0 = .text:0x8022BDC0; // type:function size:0x54 +fn_8022BE14 = .text:0x8022BE14; // type:function size:0x5C +fn_8022BE70 = .text:0x8022BE70; // type:function size:0x14 +fn_8022BE84 = .text:0x8022BE84; // type:function size:0x14 +fn_8022BE98 = .text:0x8022BE98; // type:function size:0x14 +fn_8022BEAC = .text:0x8022BEAC; // type:function size:0x14 +fn_8022BEC0 = .text:0x8022BEC0; // type:function size:0x14 +fn_8022BED4 = .text:0x8022BED4; // type:function size:0x14 +fn_8022BEE8 = .text:0x8022BEE8; // type:function size:0x14 +fn_8022BEFC = .text:0x8022BEFC; // type:function size:0x14 +fn_8022BF10 = .text:0x8022BF10; // type:function size:0x8 +fn_8022BF18 = .text:0x8022BF18; // type:function size:0x8 +fn_8022BF20 = .text:0x8022BF20; // type:function size:0x10 +fn_8022BF30 = .text:0x8022BF30; // type:function size:0xC +fn_8022BF3C = .text:0x8022BF3C; // type:function size:0x60 +fn_8022BF9C = .text:0x8022BF9C; // type:function size:0x60 +fn_8022BFFC = .text:0x8022BFFC; // type:function size:0x60 +fn_8022C05C = .text:0x8022C05C; // type:function size:0x60 +fn_8022C0BC = .text:0x8022C0BC; // type:function size:0x60 +fn_8022C11C = .text:0x8022C11C; // type:function size:0x60 +fn_8022C17C = .text:0x8022C17C; // type:function size:0x38 +fn_8022C1B4 = .text:0x8022C1B4; // type:function size:0x16C +fn_8022C320 = .text:0x8022C320; // type:function size:0x8 +fn_8022C328 = .text:0x8022C328; // type:function size:0xA4 +fn_8022C3CC = .text:0x8022C3CC; // type:function size:0x5C +fn_8022C428 = .text:0x8022C428; // type:function size:0x5C +fn_8022C484 = .text:0x8022C484; // type:function size:0x8 +fn_8022C48C = .text:0x8022C48C; // type:function size:0x24 +fn_8022C4B0 = .text:0x8022C4B0; // type:function size:0x8 +fn_8022C4B8 = .text:0x8022C4B8; // type:function size:0x134 +fn_8022C5EC = .text:0x8022C5EC; // type:function size:0x5C +fn_8022C648 = .text:0x8022C648; // type:function size:0x48 +fn_8022C690 = .text:0x8022C690; // type:function size:0x8 +fn_8022C698 = .text:0x8022C698; // type:function size:0x6C +fn_8022C704 = .text:0x8022C704; // type:function size:0xC +fn_8022C710 = .text:0x8022C710; // type:function size:0x6C +fn_8022C77C = .text:0x8022C77C; // type:function size:0x34 +fn_8022C7B0 = .text:0x8022C7B0; // type:function size:0x80 +fn_8022C830 = .text:0x8022C830; // type:function size:0x88 +fn_8022C8B8 = .text:0x8022C8B8; // type:function size:0x4C +fn_8022C904 = .text:0x8022C904; // type:function size:0x3C +fn_8022C940 = .text:0x8022C940; // type:function size:0x90 +fn_8022C9D0 = .text:0x8022C9D0; // type:function size:0xAC +fn_8022CA7C = .text:0x8022CA7C; // type:function size:0x74 +Handle__11ModifierMgrFP9DataArrayb = .text:0x8022CAF0; // type:function size:0x1E4 +fn_8022CCD4 = .text:0x8022CCD4; // type:function size:0x8 +fn_8022CCDC = .text:0x8022CCDC; // type:function size:0x8 +fn_8022CCE4 = .text:0x8022CCE4; // type:function size:0x8 +fn_8022CCEC = .text:0x8022CCEC; // type:function size:0x8 +fn_8022CCF4 = .text:0x8022CCF4; // type:function size:0x8 +fn_8022CCFC = .text:0x8022CCFC; // type:function size:0x8 +fn_8022CD04 = .text:0x8022CD04; // type:function size:0x9C +fn_8022CDA0 = .text:0x8022CDA0; // type:function size:0xB4 +fn_8022CE54 = .text:0x8022CE54; // type:function size:0x38 +fn_8022CE8C = .text:0x8022CE8C; // type:function size:0xA8 +fn_8022CF34 = .text:0x8022CF34; // type:function size:0x60 +fn_8022CF94 = .text:0x8022CF94; // type:function size:0xA8 +fn_8022D03C = .text:0x8022D03C; // type:function size:0x60 +fn_8022D09C = .text:0x8022D09C; // type:function size:0xA8 +fn_8022D144 = .text:0x8022D144; // type:function size:0xE0 +fn_8022D224 = .text:0x8022D224; // type:function size:0x108 +fn_8022D32C = .text:0x8022D32C; // type:function size:0xC +fn_8022D338 = .text:0x8022D338; // type:function size:0x64 +Handle__20MultiSelectListPanelFP9DataArrayb = .text:0x8022D39C; // type:function size:0x2D4 +fn_8022D670 = .text:0x8022D670; // type:function size:0x7C +fn_8022D6EC = .text:0x8022D6EC; // type:function size:0x134 +fn_8022D820 = .text:0x8022D820; // type:function size:0x4 +fn_8022D824 = .text:0x8022D824; // type:function size:0x14 +fn_8022D838 = .text:0x8022D838; // type:function size:0x14 +fn_8022D84C = .text:0x8022D84C; // type:function size:0x14 +fn_8022D860 = .text:0x8022D860; // type:function size:0x14 +fn_8022D874 = .text:0x8022D874; // type:function size:0x48 +fn_8022D8BC = .text:0x8022D8BC; // type:function size:0xBC +fn_8022D978 = .text:0x8022D978; // type:function size:0x204 +__ct__15SetlistProviderFv = .text:0x8022DB7C; // type:function size:0x4C +__dt__12MusicLibraryFv = .text:0x8022DBC8; // type:function size:0x158 +fn_8022DD20 = .text:0x8022DD20; // type:function size:0x4 +Enter__12MusicLibraryFv = .text:0x8022DD24; // type:function size:0x7A4 +fn_8022E4C8 = .text:0x8022E4C8; // type:function size:0x4C +Exit__12MusicLibraryFv = .text:0x8022E514; // type:function size:0x2F0 +fn_8022E804 = .text:0x8022E804; // type:function size:0x8 +fn_8022E80C = .text:0x8022E80C; // type:function size:0x14 +fn_8022E820 = .text:0x8022E820; // type:function size:0x10 +fn_8022E830 = .text:0x8022E830; // type:function size:0x48 +fn_8022E878 = .text:0x8022E878; // type:function size:0x4 +Unload__12MusicLibraryFv = .text:0x8022E87C; // type:function size:0x40 +fn_8022E8BC = .text:0x8022E8BC; // type:function size:0x40 +clear__Q211stlpmtx_std44vector>Fv = .text:0x8022E8FC; // type:function size:0x4 +fn_8022E900 = .text:0x8022E900; // type:function size:0x3C +fn_8022E93C = .text:0x8022E93C; // type:function size:0x64 +fn_8022E9A0 = .text:0x8022E9A0; // type:function size:0xB8 +fn_8022EA58 = .text:0x8022EA58; // type:function size:0x5C +fn_8022EAB4 = .text:0x8022EAB4; // type:function size:0x24 +fn_8022EAD8 = .text:0x8022EAD8; // type:function size:0x44 +fn_8022EB1C = .text:0x8022EB1C; // type:function size:0x8 +fn_8022EB24 = .text:0x8022EB24; // type:function size:0x11C +fn_8022EC40 = .text:0x8022EC40; // type:function size:0x30 +fn_8022EC70 = .text:0x8022EC70; // type:function size:0x4 +fn_8022EC74 = .text:0x8022EC74; // type:function size:0x8 +fn_8022EC7C = .text:0x8022EC7C; // type:function size:0x8 +fn_8022EC84 = .text:0x8022EC84; // type:function size:0x8 +fn_8022EC8C = .text:0x8022EC8C; // type:function size:0x14 +fn_8022ECA0 = .text:0x8022ECA0; // type:function size:0x10 +fn_8022ECB0 = .text:0x8022ECB0; // type:function size:0x8 +fn_8022ECB8 = .text:0x8022ECB8; // type:function size:0x8 +fn_8022ECC0 = .text:0x8022ECC0; // type:function size:0x9C +fn_8022ED5C = .text:0x8022ED5C; // type:function size:0x8 +fn_8022ED64 = .text:0x8022ED64; // type:function size:0xAC +fn_8022EE10 = .text:0x8022EE10; // type:function size:0xC4 +fn_8022EED4 = .text:0x8022EED4; // type:function size:0x2C +fn_8022EF00 = .text:0x8022EF00; // type:function size:0xFC +fn_8022EFFC = .text:0x8022EFFC; // type:function size:0x6C +fn_8022F068 = .text:0x8022F068; // type:function size:0x3C +fn_8022F0A4 = .text:0x8022F0A4; // type:function size:0x60 +fn_8022F104 = .text:0x8022F104; // type:function size:0x11C +fn_8022F220 = .text:0x8022F220; // type:function size:0x68 +fn_8022F288 = .text:0x8022F288; // type:function size:0x8 +fn_8022F290 = .text:0x8022F290; // type:function size:0x8 +fn_8022F298 = .text:0x8022F298; // type:function size:0x9C +ReportSortAndFilters__12MusicLibraryFv = .text:0x8022F334; // type:function size:0xBC +fn_8022F3F0 = .text:0x8022F3F0; // type:function size:0x110 +fn_8022F500 = .text:0x8022F500; // type:function size:0x6C +fn_8022F56C = .text:0x8022F56C; // type:function size:0x6C +fn_8022F5D8 = .text:0x8022F5D8; // type:function size:0x208 +fn_8022F7E0 = .text:0x8022F7E0; // type:function size:0x4 +fn_8022F7E4 = .text:0x8022F7E4; // type:function size:0x4 +fn_8022F7E8 = .text:0x8022F7E8; // type:function size:0xBC +fn_8022F8A4 = .text:0x8022F8A4; // type:function size:0x4C +fn_8022F8F0 = .text:0x8022F8F0; // type:function size:0x1C8 +fn_8022FAB8 = .text:0x8022FAB8; // type:function size:0x280 +fn_8022FD38 = .text:0x8022FD38; // type:function size:0x110 +Modulo__Fii = .text:0x8022FE48; // type:function size:0x28 +fn_8022FE70 = .text:0x8022FE70; // type:function size:0x50 +fn_8022FEC0 = .text:0x8022FEC0; // type:function size:0x44 +fn_8022FF04 = .text:0x8022FF04; // type:function size:0x854 +fn_80230758 = .text:0x80230758; // type:function size:0x8 +fn_80230760 = .text:0x80230760; // type:function size:0xA0 +fn_80230800 = .text:0x80230800; // type:function size:0x8 +fn_80230808 = .text:0x80230808; // type:function size:0x3C +fn_80230844 = .text:0x80230844; // type:function size:0x3C +fn_80230880 = .text:0x80230880; // type:function size:0x320 +fn_80230BA0 = .text:0x80230BA0; // type:function size:0xCC +fn_80230C6C = .text:0x80230C6C; // type:function size:0xF8 +fn_80230D64 = .text:0x80230D64; // type:function size:0x210 +fn_80230F74 = .text:0x80230F74; // type:function size:0x64 +fn_80230FD8 = .text:0x80230FD8; // type:function size:0x58 +fn_80231030 = .text:0x80231030; // type:function size:0x54 +fn_80231084 = .text:0x80231084; // type:function size:0x34 +fn_802310B8 = .text:0x802310B8; // type:function size:0x14 +fn_802310CC = .text:0x802310CC; // type:function size:0x150 +fn_8023121C = .text:0x8023121C; // type:function size:0x80 +fn_8023129C = .text:0x8023129C; // type:function size:0x94 +fn_80231330 = .text:0x80231330; // type:function size:0xB4 +fn_802313E4 = .text:0x802313E4; // type:function size:0x24 +fn_80231408 = .text:0x80231408; // type:function size:0x34 +fn_8023143C = .text:0x8023143C; // type:function size:0xDC +fn_80231518 = .text:0x80231518; // type:function size:0xEC +fn_80231604 = .text:0x80231604; // type:function size:0x14 +fn_80231618 = .text:0x80231618; // type:function size:0x168 +fn_80231780 = .text:0x80231780; // type:function size:0x480 +fn_80231C00 = .text:0x80231C00; // type:function size:0x18 +fn_80231C18 = .text:0x80231C18; // type:function size:0x8 +fn_80231C20 = .text:0x80231C20; // type:function size:0x18 +fn_80231C38 = .text:0x80231C38; // type:function size:0x14 +fn_80231C4C = .text:0x80231C4C; // type:function size:0x10 +fn_80231C5C = .text:0x80231C5C; // type:function size:0x33C +fn_80231F98 = .text:0x80231F98; // type:function size:0x4BC +fn_80232454 = .text:0x80232454; // type:function size:0x8 +fn_8023245C = .text:0x8023245C; // type:function size:0x24 +fn_80232480 = .text:0x80232480; // type:function size:0x44 +fn_802324C4 = .text:0x802324C4; // type:function size:0x60 +fn_80232524 = .text:0x80232524; // type:function size:0x68 +fn_8023258C = .text:0x8023258C; // type:function size:0x50 +fn_802325DC = .text:0x802325DC; // type:function size:0xC0 +fn_8023269C = .text:0x8023269C; // type:function size:0x1FC +fn_80232898 = .text:0x80232898; // type:function size:0x50 +fn_802328E8 = .text:0x802328E8; // type:function size:0x50 +fn_80232938 = .text:0x80232938; // type:function size:0x80 +fn_802329B8 = .text:0x802329B8; // type:function size:0x13C +fn_80232AF4 = .text:0x80232AF4; // type:function size:0x48 +fn_80232B3C = .text:0x80232B3C; // type:function size:0xC +fn_80232B48 = .text:0x80232B48; // type:function size:0xD8 +fn_80232C20 = .text:0x80232C20; // type:function size:0x84 +fn_80232CA4 = .text:0x80232CA4; // type:function size:0x4C +fn_80232CF0 = .text:0x80232CF0; // type:function size:0xC +fn_80232CFC = .text:0x80232CFC; // type:function size:0xC +fn_80232D08 = .text:0x80232D08; // type:function size:0xD4 +fn_80232DDC = .text:0x80232DDC; // type:function size:0x6C +fn_80232E48 = .text:0x80232E48; // type:function size:0x54 +fn_80232E9C = .text:0x80232E9C; // type:function size:0x50 +fn_80232EEC = .text:0x80232EEC; // type:function size:0xA8 +fn_80232F94 = .text:0x80232F94; // type:function size:0x4C +fn_80232FE0 = .text:0x80232FE0; // type:function size:0xA0 +fn_80233080 = .text:0x80233080; // type:function size:0x4C +fn_802330CC = .text:0x802330CC; // type:function size:0xB4 +fn_80233180 = .text:0x80233180; // type:function size:0x34 +fn_802331B4 = .text:0x802331B4; // type:function size:0x8 +fn_802331BC = .text:0x802331BC; // type:function size:0x68 +fn_80233224 = .text:0x80233224; // type:function size:0x5C +fn_80233280 = .text:0x80233280; // type:function size:0x8 +fn_80233288 = .text:0x80233288; // type:function size:0x78 +fn_80233300 = .text:0x80233300; // type:function size:0x138 +fn_80233438 = .text:0x80233438; // type:function size:0x8 +fn_80233440 = .text:0x80233440; // type:function size:0x8 +fn_80233448 = .text:0x80233448; // type:function size:0x54 +fn_8023349C = .text:0x8023349C; // type:function size:0x250 +fn_802336EC = .text:0x802336EC; // type:function size:0x108 +fn_802337F4 = .text:0x802337F4; // type:function size:0xE8 +fn_802338DC = .text:0x802338DC; // type:function size:0xCC +fn_802339A8 = .text:0x802339A8; // type:function size:0x58 +fn_80233A00 = .text:0x80233A00; // type:function size:0x3C +fn_80233A3C = .text:0x80233A3C; // type:function size:0x64 +fn_80233AA0 = .text:0x80233AA0; // type:function size:0x50 +fn_80233AF0 = .text:0x80233AF0; // type:function size:0x50 +fn_80233B40 = .text:0x80233B40; // type:function size:0x60 +fn_80233BA0 = .text:0x80233BA0; // type:function size:0xA8 +fn_80233C48 = .text:0x80233C48; // type:function size:0x58 +fn_80233CA0 = .text:0x80233CA0; // type:function size:0x9C +fn_80233D3C = .text:0x80233D3C; // type:function size:0x68 +fn_80233DA4 = .text:0x80233DA4; // type:function size:0x3C +fn_80233DE0 = .text:0x80233DE0; // type:function size:0x3C +fn_80233E1C = .text:0x80233E1C; // type:function size:0xF8 +fn_80233F14 = .text:0x80233F14; // type:function size:0x8 +fn_80233F1C = .text:0x80233F1C; // type:function size:0x4 +fn_80233F20 = .text:0x80233F20; // type:function size:0x8 +fn_80233F28 = .text:0x80233F28; // type:function size:0xDC +fn_80234004 = .text:0x80234004; // type:function size:0x12C +fn_80234130 = .text:0x80234130; // type:function size:0x148 +fn_80234278 = .text:0x80234278; // type:function size:0x8 +fn_80234280 = .text:0x80234280; // type:function size:0x4 +fn_80234284 = .text:0x80234284; // type:function size:0x8 +fn_8023428C = .text:0x8023428C; // type:function size:0x170 +fn_802343FC = .text:0x802343FC; // type:function size:0x148 +fn_80234544 = .text:0x80234544; // type:function size:0x38C +fn_802348D0 = .text:0x802348D0; // type:function size:0x7C +Handle__12MusicLibraryFP9DataArrayb = .text:0x8023494C; // type:function size:0x11C0 +__ct__21FriendsListChangedMsgFP9DataArray = .text:0x80235B0C; // type:function size:0x3C +fn_80235B48 = .text:0x80235B48; // type:function size:0x8 +fn_80235B50 = .text:0x80235B50; // type:function size:0x8 +fn_80235B58 = .text:0x80235B58; // type:function size:0x8 +fn_80235B60 = .text:0x80235B60; // type:function size:0x114 +fn_80235C74 = .text:0x80235C74; // type:function size:0xBC +fn_80235D30 = .text:0x80235D30; // type:function size:0xBC +fn_80235DEC = .text:0x80235DEC; // type:function size:0xBC +fn_80235EA8 = .text:0x80235EA8; // type:function size:0x8 +fn_80235EB0 = .text:0x80235EB0; // type:function size:0x8 +fn_80235EB8 = .text:0x80235EB8; // type:function size:0x8 +fn_80235EC0 = .text:0x80235EC0; // type:function size:0x8 +fn_80235EC8 = .text:0x80235EC8; // type:function size:0x8 +fn_80235ED0 = .text:0x80235ED0; // type:function size:0x8 +fn_80235ED8 = .text:0x80235ED8; // type:function size:0x8 +fn_80235EE0 = .text:0x80235EE0; // type:function size:0x8 +fn_80235EE8 = .text:0x80235EE8; // type:function size:0x8 +fn_80235EF0 = .text:0x80235EF0; // type:function size:0x8 +fn_80235EF8 = .text:0x80235EF8; // type:function size:0x8 +fn_80235F00 = .text:0x80235F00; // type:function size:0x8 +fn_80235F08 = .text:0x80235F08; // type:function size:0x8 +__ct__23MusicLibraryNetSetlistsFv = .text:0x80235F10; // type:function size:0xBC +fn_80235FCC = .text:0x80235FCC; // type:function size:0x58 +fn_80236024 = .text:0x80236024; // type:function size:0x58 +fn_8023607C = .text:0x8023607C; // type:function size:0x60 +fn_802360DC = .text:0x802360DC; // type:function size:0x58 +fn_80236134 = .text:0x80236134; // type:function size:0x30 +fn_80236164 = .text:0x80236164; // type:function size:0x30 +fn_80236194 = .text:0x80236194; // type:function size:0x60 +__dt__23MusicLibraryNetSetlistsFv = .text:0x802361F4; // type:function size:0xAC +fn_802362A0 = .text:0x802362A0; // type:function size:0x5C +fn_802362FC = .text:0x802362FC; // type:function size:0x5C +fn_80236358 = .text:0x80236358; // type:function size:0x8C +fn_802363E4 = .text:0x802363E4; // type:function size:0x124 +__dt__9RndBitmapFv = .text:0x80236508; // type:function size:0x54 +__ct__9RndBitmapFv = .text:0x8023655C; // type:function size:0x3C +fn_80236598 = .text:0x80236598; // type:function size:0x64 +fn_802365FC = .text:0x802365FC; // type:function size:0x64 +fn_80236660 = .text:0x80236660; // type:function size:0xEC +fn_8023674C = .text:0x8023674C; // type:function size:0x4 +fn_80236750 = .text:0x80236750; // type:function size:0x4 +fn_80236754 = .text:0x80236754; // type:function size:0x4 +fn_80236758 = .text:0x80236758; // type:function size:0xC +fn_80236764 = .text:0x80236764; // type:function size:0xFC +fn_80236860 = .text:0x80236860; // type:function size:0xF8 +fn_80236958 = .text:0x80236958; // type:function size:0x4C +fn_802369A4 = .text:0x802369A4; // type:function size:0x70 +fn_80236A14 = .text:0x80236A14; // type:function size:0x30 +fn_80236A44 = .text:0x80236A44; // type:function size:0x2C +fn_80236A70 = .text:0x80236A70; // type:function size:0x50 +fn_80236AC0 = .text:0x80236AC0; // type:function size:0x6C +fn_80236B2C = .text:0x80236B2C; // type:function size:0x2C +fn_80236B58 = .text:0x80236B58; // type:function size:0x34 +fn_80236B8C = .text:0x80236B8C; // type:function size:0x30 +fn_80236BBC = .text:0x80236BBC; // type:function size:0x10 +fn_80236BCC = .text:0x80236BCC; // type:function size:0x4 +fn_80236BD0 = .text:0x80236BD0; // type:function size:0x54 +fn_80236C24 = .text:0x80236C24; // type:function size:0x64 +fn_80236C88 = .text:0x80236C88; // type:function size:0x50 +fn_80236CD8 = .text:0x80236CD8; // type:function size:0x10 +fn_80236CE8 = .text:0x80236CE8; // type:function size:0x40 +fn_80236D28 = .text:0x80236D28; // type:function size:0x7C4 +fn_802374EC = .text:0x802374EC; // type:function size:0x4 +fn_802374F0 = .text:0x802374F0; // type:function size:0x4 +fn_802374F4 = .text:0x802374F4; // type:function size:0x8 +fn_802374FC = .text:0x802374FC; // type:function size:0x7C +fn_80237578 = .text:0x80237578; // type:function size:0xAC +__ct__12SavedSetlistFPCcPCc = .text:0x80237624; // type:function size:0x78 +fn_8023769C = .text:0x8023769C; // type:function size:0xC +fn_802376A8 = .text:0x802376A8; // type:function size:0x250 +fn_802378F8 = .text:0x802378F8; // type:function size:0x8 +fn_80237900 = .text:0x80237900; // type:function size:0x8 +fn_80237908 = .text:0x80237908; // type:function size:0xA0 +fn_802379A8 = .text:0x802379A8; // type:function size:0xA4 +fn_80237A4C = .text:0x80237A4C; // type:function size:0x8C +Handle__23MusicLibraryNetSetlistsFP9DataArrayb = .text:0x80237AD8; // type:function size:0x140 +fn_80237C18 = .text:0x80237C18; // type:function size:0x68 +__ct__13NameGeneratorFP9DataArray = .text:0x80237C80; // type:function size:0x88 +__dt__13NameGeneratorFv = .text:0x80237D08; // type:function size:0x84 +fn_80237D8C = .text:0x80237D8C; // type:function size:0x8 +fn_80237D94 = .text:0x80237D94; // type:function size:0x4 +fn_80237D98 = .text:0x80237D98; // type:function size:0x4 +fn_80237D9C = .text:0x80237D9C; // type:function size:0xAC +fn_80237E48 = .text:0x80237E48; // type:function size:0x74 +fn_80237EBC = .text:0x80237EBC; // type:function size:0x2C +fn_80237EE8 = .text:0x80237EE8; // type:function size:0x30 +fn_80237F18 = .text:0x80237F18; // type:function size:0xA0 +fn_80237FB8 = .text:0x80237FB8; // type:function size:0x34 +fn_80237FEC = .text:0x80237FEC; // type:function size:0x6C +Handle__13NameGeneratorFP9DataArrayb = .text:0x80238058; // type:function size:0x10C +fn_80238164 = .text:0x80238164; // type:function size:0x38 +fn_8023819C = .text:0x8023819C; // type:function size:0x50 +fn_802381EC = .text:0x802381EC; // type:function size:0x50 +fn_8023823C = .text:0x8023823C; // type:function size:0x50 +fn_8023828C = .text:0x8023828C; // type:function size:0x50 +fn_802382DC = .text:0x802382DC; // type:function size:0x50 +fn_8023832C = .text:0x8023832C; // type:function size:0x50 +fn_8023837C = .text:0x8023837C; // type:function size:0x50 +fn_802383CC = .text:0x802383CC; // type:function size:0x5C +fn_80238428 = .text:0x80238428; // type:function size:0x4C +__ct__7NetSyncFv = .text:0x80238474; // type:function size:0x84 +__dt__7NetSyncFv = .text:0x802384F8; // type:function size:0x8C +fn_80238584 = .text:0x80238584; // type:function size:0x8 +fn_8023858C = .text:0x8023858C; // type:function size:0x390 +fn_8023891C = .text:0x8023891C; // type:function size:0x50 +fn_8023896C = .text:0x8023896C; // type:function size:0xD0 +fn_80238A3C = .text:0x80238A3C; // type:function size:0x78 +fn_80238AB4 = .text:0x80238AB4; // type:function size:0x2C +fn_80238AE0 = .text:0x80238AE0; // type:function size:0x30 +fn_80238B10 = .text:0x80238B10; // type:function size:0xF8 +fn_80238C08 = .text:0x80238C08; // type:function size:0x1C8 +fn_80238DD0 = .text:0x80238DD0; // type:function size:0x8 +fn_80238DD8 = .text:0x80238DD8; // type:function size:0x8 +fn_80238DE0 = .text:0x80238DE0; // type:function size:0x40 +fn_80238E20 = .text:0x80238E20; // type:function size:0xBC +fn_80238EDC = .text:0x80238EDC; // type:function size:0x144 +fn_80239020 = .text:0x80239020; // type:function size:0xF4 +fn_80239114 = .text:0x80239114; // type:function size:0xD8 +fn_802391EC = .text:0x802391EC; // type:function size:0x80 +fn_8023926C = .text:0x8023926C; // type:function size:0xF8 +fn_80239364 = .text:0x80239364; // type:function size:0x178 +fn_802394DC = .text:0x802394DC; // type:function size:0xC +fn_802394E8 = .text:0x802394E8; // type:function size:0x198 +fn_80239680 = .text:0x80239680; // type:function size:0x24C +fn_802398CC = .text:0x802398CC; // type:function size:0x88 +fn_80239954 = .text:0x80239954; // type:function size:0x64 +Handle__7NetSyncFP9DataArrayb = .text:0x802399B8; // type:function size:0x500 +fn_80239EB8 = .text:0x80239EB8; // type:function size:0x8C +fn_80239F44 = .text:0x80239F44; // type:function size:0x74 +fn_80239FB8 = .text:0x80239FB8; // type:function size:0x44 +fn_80239FFC = .text:0x80239FFC; // type:function size:0x120 +fn_8023A11C = .text:0x8023A11C; // type:function size:0x164 +fn_8023A280 = .text:0x8023A280; // type:function size:0x68 +fn_8023A2E8 = .text:0x8023A2E8; // type:function size:0x8 +fn_8023A2F0 = .text:0x8023A2F0; // type:function size:0x8 +fn_8023A2F8 = .text:0x8023A2F8; // type:function size:0xB0 +fn_8023A3A8 = .text:0x8023A3A8; // type:function size:0x34 +fn_8023A3DC = .text:0x8023A3DC; // type:function size:0xF4 +fn_8023A4D0 = .text:0x8023A4D0; // type:function size:0x40 +fn_8023A510 = .text:0x8023A510; // type:function size:0x30 +fn_8023A540 = .text:0x8023A540; // type:function size:0x34 +fn_8023A574 = .text:0x8023A574; // type:function size:0x54 +fn_8023A5C8 = .text:0x8023A5C8; // type:function size:0x48 +fn_8023A610 = .text:0x8023A610; // type:function size:0x94 +fn_8023A6A4 = .text:0x8023A6A4; // type:function size:0x1F8 +fn_8023A89C = .text:0x8023A89C; // type:function size:0x58 +fn_8023A8F4 = .text:0x8023A8F4; // type:function size:0x8 +fn_8023A8FC = .text:0x8023A8FC; // type:function size:0x8 +fn_8023A904 = .text:0x8023A904; // type:function size:0x8 +fn_8023A90C = .text:0x8023A90C; // type:function size:0x14 +Handle__13NewAwardPanelFP9DataArrayb = .text:0x8023A920; // type:function size:0x1D8 +fn_8023AAF8 = .text:0x8023AAF8; // type:function size:0x7C +fn_8023AB74 = .text:0x8023AB74; // type:function size:0x134 +fn_8023ACA8 = .text:0x8023ACA8; // type:function size:0x4 +fn_8023ACAC = .text:0x8023ACAC; // type:function size:0x7C +fn_8023AD28 = .text:0x8023AD28; // type:function size:0xC0 +fn_8023ADE8 = .text:0x8023ADE8; // type:function size:0x140 +fn_8023AF28 = .text:0x8023AF28; // type:function size:0x80 +fn_8023AFA8 = .text:0x8023AFA8; // type:function size:0x5C +fn_8023B004 = .text:0x8023B004; // type:function size:0x14 +fn_8023B018 = .text:0x8023B018; // type:function size:0x14 +fn_8023B02C = .text:0x8023B02C; // type:function size:0x14 +fn_8023B040 = .text:0x8023B040; // type:function size:0x14 +fn_8023B054 = .text:0x8023B054; // type:function size:0x14 +fn_8023B068 = .text:0x8023B068; // type:function size:0x14 +fn_8023B07C = .text:0x8023B07C; // type:function size:0x14 +fn_8023B090 = .text:0x8023B090; // type:function size:0x8 +fn_8023B098 = .text:0x8023B098; // type:function size:0x8 +fn_8023B0A0 = .text:0x8023B0A0; // type:function size:0x118 +fn_8023B1B8 = .text:0x8023B1B8; // type:function size:0x34 +fn_8023B1EC = .text:0x8023B1EC; // type:function size:0x5C +fn_8023B248 = .text:0x8023B248; // type:function size:0x5C +fn_8023B2A4 = .text:0x8023B2A4; // type:function size:0xA0 +fn_8023B344 = .text:0x8023B344; // type:function size:0x124 +fn_8023B468 = .text:0x8023B468; // type:function size:0x8 +fn_8023B470 = .text:0x8023B470; // type:function size:0x8 +fn_8023B478 = .text:0x8023B478; // type:function size:0x174 +fn_8023B5EC = .text:0x8023B5EC; // type:function size:0x2C +fn_8023B618 = .text:0x8023B618; // type:function size:0x50 +fn_8023B668 = .text:0x8023B668; // type:function size:0x108 +fn_8023B770 = .text:0x8023B770; // type:function size:0x2C +fn_8023B79C = .text:0x8023B79C; // type:function size:0x14 +fn_8023B7B0 = .text:0x8023B7B0; // type:function size:0xC +fn_8023B7BC = .text:0x8023B7BC; // type:function size:0x30 +fn_8023B7EC = .text:0x8023B7EC; // type:function size:0x4C +fn_8023B838 = .text:0x8023B838; // type:function size:0x1D4 +fn_8023BA0C = .text:0x8023BA0C; // type:function size:0xA0 +fn_8023BAAC = .text:0x8023BAAC; // type:function size:0xA0 +fn_8023BB4C = .text:0x8023BB4C; // type:function size:0x108 +fn_8023BC54 = .text:0x8023BC54; // type:function size:0x6C +fn_8023BCC0 = .text:0x8023BCC0; // type:function size:0x400 +fn_8023C0C0 = .text:0x8023C0C0; // type:function size:0x14 +fn_8023C0D4 = .text:0x8023C0D4; // type:function size:0xC0 +fn_8023C194 = .text:0x8023C194; // type:function size:0x4C0 +fn_8023C654 = .text:0x8023C654; // type:function size:0x2740 +fn_8023ED94 = .text:0x8023ED94; // type:function size:0x8 +fn_8023ED9C = .text:0x8023ED9C; // type:function size:0x8 +fn_8023EDA4 = .text:0x8023EDA4; // type:function size:0x8 +fn_8023EDAC = .text:0x8023EDAC; // type:function size:0x568 +fn_8023F314 = .text:0x8023F314; // type:function size:0xA0 +fn_8023F3B4 = .text:0x8023F3B4; // type:function size:0x88 +Handle__13NextSongPanelFP9DataArrayb = .text:0x8023F43C; // type:function size:0x280 +fn_8023F6BC = .text:0x8023F6BC; // type:function size:0x98 +fn_8023F754 = .text:0x8023F754; // type:function size:0x134 +fn_8023F888 = .text:0x8023F888; // type:function size:0x4 +fn_8023F88C = .text:0x8023F88C; // type:function size:0x14 +fn_8023F8A0 = .text:0x8023F8A0; // type:function size:0x14 +fn_8023F8B4 = .text:0x8023F8B4; // type:function size:0x14 +fn_8023F8C8 = .text:0x8023F8C8; // type:function size:0x14 +fn_8023F8DC = .text:0x8023F8DC; // type:function size:0x14 +fn_8023F8F0 = .text:0x8023F8F0; // type:function size:0x14 +fn_8023F904 = .text:0x8023F904; // type:function size:0x14 +fn_8023F918 = .text:0x8023F918; // type:function size:0xD8 +fn_8023F9F0 = .text:0x8023F9F0; // type:function size:0x98 +fn_8023FA88 = .text:0x8023FA88; // type:function size:0x5C +fn_8023FAE4 = .text:0x8023FAE4; // type:function size:0x8 +fn_8023FAEC = .text:0x8023FAEC; // type:function size:0x8 +fn_8023FAF4 = .text:0x8023FAF4; // type:function size:0x74 +fn_8023FB68 = .text:0x8023FB68; // type:function size:0xC +__ct__25OvershellOverrideEndedMsgFii = .text:0x8023FB74; // type:function size:0x8C +fn_8023FC00 = .text:0x8023FC00; // type:function size:0xC +fn_8023FC0C = .text:0x8023FC0C; // type:function size:0x30 +fn_8023FC3C = .text:0x8023FC3C; // type:function size:0x70 +fn_8023FCAC = .text:0x8023FCAC; // type:function size:0x488 +fn_80240134 = .text:0x80240134; // type:function size:0x4C +fn_80240180 = .text:0x80240180; // type:function size:0x4C +fn_802401CC = .text:0x802401CC; // type:function size:0x4C +fn_80240218 = .text:0x80240218; // type:function size:0x2CC +fn_802404E4 = .text:0x802404E4; // type:function size:0xE4 +fn_802405C8 = .text:0x802405C8; // type:function size:0x14 +fn_802405DC = .text:0x802405DC; // type:function size:0x26C +fn_80240848 = .text:0x80240848; // type:function size:0x4C +fn_80240894 = .text:0x80240894; // type:function size:0x8 +fn_8024089C = .text:0x8024089C; // type:function size:0x5C +fn_802408F8 = .text:0x802408F8; // type:function size:0x8 +fn_80240900 = .text:0x80240900; // type:function size:0x8 +fn_80240908 = .text:0x80240908; // type:function size:0x8C +fn_80240994 = .text:0x80240994; // type:function size:0x88 +fn_80240A1C = .text:0x80240A1C; // type:function size:0xB4 +fn_80240AD0 = .text:0x80240AD0; // type:function size:0xC8 +fn_80240B98 = .text:0x80240B98; // type:function size:0xB4 +fn_80240C4C = .text:0x80240C4C; // type:function size:0x70 +fn_80240CBC = .text:0x80240CBC; // type:function size:0xB8 +fn_80240D74 = .text:0x80240D74; // type:function size:0x27C +fn_80240FF0 = .text:0x80240FF0; // type:function size:0x4E8 +fn_802414D8 = .text:0x802414D8; // type:function size:0x2C +fn_80241504 = .text:0x80241504; // type:function size:0x84 +fn_80241588 = .text:0x80241588; // type:function size:0x28 +fn_802415B0 = .text:0x802415B0; // type:function size:0x30 +fn_802415E0 = .text:0x802415E0; // type:function size:0xC4 +fn_802416A4 = .text:0x802416A4; // type:function size:0x3C +fn_802416E0 = .text:0x802416E0; // type:function size:0x3C +fn_8024171C = .text:0x8024171C; // type:function size:0x3C +fn_80241758 = .text:0x80241758; // type:function size:0x3C +fn_80241794 = .text:0x80241794; // type:function size:0x94 +fn_80241828 = .text:0x80241828; // type:function size:0x3C +fn_80241864 = .text:0x80241864; // type:function size:0xA8 +fn_8024190C = .text:0x8024190C; // type:function size:0x7C +fn_80241988 = .text:0x80241988; // type:function size:0x40 +fn_802419C8 = .text:0x802419C8; // type:function size:0x34 +fn_802419FC = .text:0x802419FC; // type:function size:0x74 +fn_80241A70 = .text:0x80241A70; // type:function size:0x14 +fn_80241A84 = .text:0x80241A84; // type:function size:0x78 +fn_80241AFC = .text:0x80241AFC; // type:function size:0x78 +fn_80241B74 = .text:0x80241B74; // type:function size:0x8 +fn_80241B7C = .text:0x80241B7C; // type:function size:0x8 +fn_80241B84 = .text:0x80241B84; // type:function size:0x8 +fn_80241B8C = .text:0x80241B8C; // type:function size:0x74 +fn_80241C00 = .text:0x80241C00; // type:function size:0xC0 +fn_80241CC0 = .text:0x80241CC0; // type:function size:0x124 +fn_80241DE4 = .text:0x80241DE4; // type:function size:0x64 +fn_80241E48 = .text:0x80241E48; // type:function size:0x188 +fn_80241FD0 = .text:0x80241FD0; // type:function size:0x20 +fn_80241FF0 = .text:0x80241FF0; // type:function size:0x174 +fn_80242164 = .text:0x80242164; // type:function size:0x32C +fn_80242490 = .text:0x80242490; // type:function size:0xD8 +fn_80242568 = .text:0x80242568; // type:function size:0x78 +fn_802425E0 = .text:0x802425E0; // type:function size:0x98 +fn_80242678 = .text:0x80242678; // type:function size:0xB0 +fn_80242728 = .text:0x80242728; // type:function size:0xB4 +fn_802427DC = .text:0x802427DC; // type:function size:0x78 +fn_80242854 = .text:0x80242854; // type:function size:0x58 +fn_802428AC = .text:0x802428AC; // type:function size:0x58 +fn_80242904 = .text:0x80242904; // type:function size:0x8 +fn_8024290C = .text:0x8024290C; // type:function size:0x1A8 +fn_80242AB4 = .text:0x80242AB4; // type:function size:0xFC +fn_80242BB0 = .text:0x80242BB0; // type:function size:0x84 +fn_80242C34 = .text:0x80242C34; // type:function size:0x98 +fn_80242CCC = .text:0x80242CCC; // type:function size:0x640 +fn_8024330C = .text:0x8024330C; // type:function size:0x8 +fn_80243314 = .text:0x80243314; // type:function size:0x188 +fn_8024349C = .text:0x8024349C; // type:function size:0x17C +fn_80243618 = .text:0x80243618; // type:function size:0x8 +fn_80243620 = .text:0x80243620; // type:function size:0x4 +fn_80243624 = .text:0x80243624; // type:function size:0xA8 +fn_802436CC = .text:0x802436CC; // type:function size:0xC +fn_802436D8 = .text:0x802436D8; // type:function size:0x8 +fn_802436E0 = .text:0x802436E0; // type:function size:0x8 +fn_802436E8 = .text:0x802436E8; // type:function size:0x8 +fn_802436F0 = .text:0x802436F0; // type:function size:0x94 +fn_80243784 = .text:0x80243784; // type:function size:0x8 +fn_8024378C = .text:0x8024378C; // type:function size:0x2C0 +fn_80243A4C = .text:0x80243A4C; // type:function size:0x28C +fn_80243CD8 = .text:0x80243CD8; // type:function size:0xA0 +fn_80243D78 = .text:0x80243D78; // type:function size:0xD0 +fn_80243E48 = .text:0x80243E48; // type:function size:0x64 +fn_80243EAC = .text:0x80243EAC; // type:function size:0x9C +fn_80243F48 = .text:0x80243F48; // type:function size:0x204 +fn_8024414C = .text:0x8024414C; // type:function size:0xC +fn_80244158 = .text:0x80244158; // type:function size:0x8 +fn_80244160 = .text:0x80244160; // type:function size:0x8 +fn_80244168 = .text:0x80244168; // type:function size:0x5C +fn_802441C4 = .text:0x802441C4; // type:function size:0x60 +fn_80244224 = .text:0x80244224; // type:function size:0x8 +fn_8024422C = .text:0x8024422C; // type:function size:0x4 +fn_80244230 = .text:0x80244230; // type:function size:0xE4 +fn_80244314 = .text:0x80244314; // type:function size:0xE4 +fn_802443F8 = .text:0x802443F8; // type:function size:0x98 +fn_80244490 = .text:0x80244490; // type:function size:0x98 +fn_80244528 = .text:0x80244528; // type:function size:0x98 +fn_802445C0 = .text:0x802445C0; // type:function size:0x7C +fn_8024463C = .text:0x8024463C; // type:function size:0xC +GetPanelDirAtIndex__FP9DataArrayi = .text:0x80244648; // type:function size:0x34 +GetPanelDir__FP8DataNodeP9DataArray = .text:0x8024467C; // type:function size:0x3C +fn_802446B8 = .text:0x802446B8; // type:function size:0x40 +fn_802446F8 = .text:0x802446F8; // type:function size:0xDC +fn_802447D4 = .text:0x802447D4; // type:function size:0xC +fn_802447E0 = .text:0x802447E0; // type:function size:0x164 +fn_80244944 = .text:0x80244944; // type:function size:0x8C +fn_802449D0 = .text:0x802449D0; // type:function size:0x6C +fn_80244A3C = .text:0x80244A3C; // type:function size:0x5C +fn_80244A98 = .text:0x80244A98; // type:function size:0x9C +fn_80244B34 = .text:0x80244B34; // type:function size:0x3C +fn_80244B70 = .text:0x80244B70; // type:function size:0x3C +fn_80244BAC = .text:0x80244BAC; // type:function size:0x3C +fn_80244BE8 = .text:0x80244BE8; // type:function size:0x3C +fn_80244C24 = .text:0x80244C24; // type:function size:0x144 +fn_80244D68 = .text:0x80244D68; // type:function size:0x64 +fn_80244DCC = .text:0x80244DCC; // type:function size:0x3C +fn_80244E08 = .text:0x80244E08; // type:function size:0x14 +fn_80244E1C = .text:0x80244E1C; // type:function size:0xC8 +fn_80244EE4 = .text:0x80244EE4; // type:function size:0x24C +fn_80245130 = .text:0x80245130; // type:function size:0x8 +fn_80245138 = .text:0x80245138; // type:function size:0x4 +fn_8024513C = .text:0x8024513C; // type:function size:0xBC +fn_802451F8 = .text:0x802451F8; // type:function size:0x11C +fn_80245314 = .text:0x80245314; // type:function size:0x98 +fn_802453AC = .text:0x802453AC; // type:function size:0x348 +fn_802456F4 = .text:0x802456F4; // type:function size:0x100 +fn_802457F4 = .text:0x802457F4; // type:function size:0x9C +fn_80245890 = .text:0x80245890; // type:function size:0x5C +fn_802458EC = .text:0x802458EC; // type:function size:0x3C +Handle__14OvershellPanelFP9DataArrayb = .text:0x80245928; // type:function size:0x1598 +fn_80246EC0 = .text:0x80246EC0; // type:function size:0x3C +__ct__14SessionBusyMsgFP9DataArray = .text:0x80246EFC; // type:function size:0x3C +fn_80246F38 = .text:0x80246F38; // type:function size:0x3C +fn_80246F74 = .text:0x80246F74; // type:function size:0x3C +__ct__17InviteReceivedMsgFP9DataArray = .text:0x80246FB0; // type:function size:0x3C +fn_80246FEC = .text:0x80246FEC; // type:function size:0x3C +fn_80247028 = .text:0x80247028; // type:function size:0x4C +fn_80247074 = .text:0x80247074; // type:function size:0x3C +fn_802470B0 = .text:0x802470B0; // type:function size:0x3C +fn_802470EC = .text:0x802470EC; // type:function size:0x3C +fn_80247128 = .text:0x80247128; // type:function size:0x3C +fn_80247164 = .text:0x80247164; // type:function size:0x134 +fn_80247298 = .text:0x80247298; // type:function size:0x4 +fn_8024729C = .text:0x8024729C; // type:function size:0x14 +fn_802472B0 = .text:0x802472B0; // type:function size:0x8 +fn_802472B8 = .text:0x802472B8; // type:function size:0x8 +fn_802472C0 = .text:0x802472C0; // type:function size:0x8 +fn_802472C8 = .text:0x802472C8; // type:function size:0x8 +fn_802472D0 = .text:0x802472D0; // type:function size:0x8 +fn_802472D8 = .text:0x802472D8; // type:function size:0x14 +fn_802472EC = .text:0x802472EC; // type:function size:0x14 +fn_80247300 = .text:0x80247300; // type:function size:0x14 +fn_80247314 = .text:0x80247314; // type:function size:0x14 +fn_80247328 = .text:0x80247328; // type:function size:0x14 +fn_8024733C = .text:0x8024733C; // type:function size:0x14 +fn_80247350 = .text:0x80247350; // type:function size:0x14 +fn_80247364 = .text:0x80247364; // type:function size:0x14 +fn_80247378 = .text:0x80247378; // type:function size:0x14 +fn_8024738C = .text:0x8024738C; // type:function size:0x14 +fn_802473A0 = .text:0x802473A0; // type:function size:0x8 +fn_802473A8 = .text:0x802473A8; // type:function size:0x8 +fn_802473B0 = .text:0x802473B0; // type:function size:0x8 +fn_802473B8 = .text:0x802473B8; // type:function size:0x8 +fn_802473C0 = .text:0x802473C0; // type:function size:0x84 +fn_80247444 = .text:0x80247444; // type:function size:0x58 +fn_8024749C = .text:0x8024749C; // type:function size:0x80 +fn_8024751C = .text:0x8024751C; // type:function size:0x80 +fn_8024759C = .text:0x8024759C; // type:function size:0x58 +fn_802475F4 = .text:0x802475F4; // type:function size:0x54 +fn_80247648 = .text:0x80247648; // type:function size:0x5C +fn_802476A4 = .text:0x802476A4; // type:function size:0x6C +fn_80247710 = .text:0x80247710; // type:function size:0x28 +fn_80247738 = .text:0x80247738; // type:function size:0x8 +fn_80247740 = .text:0x80247740; // type:function size:0x3C +fn_8024777C = .text:0x8024777C; // type:function size:0x30 +fn_802477AC = .text:0x802477AC; // type:function size:0x30 +fn_802477DC = .text:0x802477DC; // type:function size:0x40 +fn_8024781C = .text:0x8024781C; // type:function size:0x8C +fn_802478A8 = .text:0x802478A8; // type:function size:0x368 +fn_80247C10 = .text:0x80247C10; // type:function size:0xC +fn_80247C1C = .text:0x80247C1C; // type:function size:0x3C +fn_80247C58 = .text:0x80247C58; // type:function size:0x40 +fn_80247C98 = .text:0x80247C98; // type:function size:0x8C +fn_80247D24 = .text:0x80247D24; // type:function size:0x8 +fn_80247D2C = .text:0x80247D2C; // type:function size:0x2C +fn_80247D58 = .text:0x80247D58; // type:function size:0x58 +fn_80247DB0 = .text:0x80247DB0; // type:function size:0x28 +fn_80247DD8 = .text:0x80247DD8; // type:function size:0x68 +fn_80247E40 = .text:0x80247E40; // type:function size:0x1C +fn_80247E5C = .text:0x80247E5C; // type:function size:0x3A4 +fn_80248200 = .text:0x80248200; // type:function size:0x1E0 +fn_802483E0 = .text:0x802483E0; // type:function size:0x8 +fn_802483E8 = .text:0x802483E8; // type:function size:0x54 +fn_8024843C = .text:0x8024843C; // type:function size:0x68 +fn_802484A4 = .text:0x802484A4; // type:function size:0x4 +fn_802484A8 = .text:0x802484A8; // type:function size:0x88 +fn_80248530 = .text:0x80248530; // type:function size:0x2C +fn_8024855C = .text:0x8024855C; // type:function size:0x10 +fn_8024856C = .text:0x8024856C; // type:function size:0x4C +fn_802485B8 = .text:0x802485B8; // type:function size:0x114 +fn_802486CC = .text:0x802486CC; // type:function size:0x5C +fn_80248728 = .text:0x80248728; // type:function size:0x5C +fn_80248784 = .text:0x80248784; // type:function size:0x54 +fn_802487D8 = .text:0x802487D8; // type:function size:0x5C +fn_80248834 = .text:0x80248834; // type:function size:0x5C +fn_80248890 = .text:0x80248890; // type:function size:0x8 +fn_80248898 = .text:0x80248898; // type:function size:0x47C +fn_80248D14 = .text:0x80248D14; // type:function size:0x58 +fn_80248D6C = .text:0x80248D6C; // type:function size:0x80 +fn_80248DEC = .text:0x80248DEC; // type:function size:0x80 +fn_80248E6C = .text:0x80248E6C; // type:function size:0x58 +fn_80248EC4 = .text:0x80248EC4; // type:function size:0x54 +fn_80248F18 = .text:0x80248F18; // type:function size:0x5C +fn_80248F74 = .text:0x80248F74; // type:function size:0x6C +fn_80248FE0 = .text:0x80248FE0; // type:function size:0x28 +fn_80249008 = .text:0x80249008; // type:function size:0x8 +fn_80249010 = .text:0x80249010; // type:function size:0x3C +fn_8024904C = .text:0x8024904C; // type:function size:0x68 +fn_802490B4 = .text:0x802490B4; // type:function size:0x74 +fn_80249128 = .text:0x80249128; // type:function size:0x30 +fn_80249158 = .text:0x80249158; // type:function size:0x30 +fn_80249188 = .text:0x80249188; // type:function size:0x40 +fn_802491C8 = .text:0x802491C8; // type:function size:0x1F4 +fn_802493BC = .text:0x802493BC; // type:function size:0x5C +fn_80249418 = .text:0x80249418; // type:function size:0x74 +fn_8024948C = .text:0x8024948C; // type:function size:0x8 +fn_80249494 = .text:0x80249494; // type:function size:0xB8 +fn_8024954C = .text:0x8024954C; // type:function size:0x54 +fn_802495A0 = .text:0x802495A0; // type:function size:0x38 +fn_802495D8 = .text:0x802495D8; // type:function size:0x8 +fn_802495E0 = .text:0x802495E0; // type:function size:0x8 +fn_802495E8 = .text:0x802495E8; // type:function size:0x58 +fn_80249640 = .text:0x80249640; // type:function size:0x8 +fn_80249648 = .text:0x80249648; // type:function size:0x8 +fn_80249650 = .text:0x80249650; // type:function size:0x8 +fn_80249658 = .text:0x80249658; // type:function size:0xC +fn_80249664 = .text:0x80249664; // type:function size:0x3C +fn_802496A0 = .text:0x802496A0; // type:function size:0x40 +fn_802496E0 = .text:0x802496E0; // type:function size:0x8C +fn_8024976C = .text:0x8024976C; // type:function size:0x8 +fn_80249774 = .text:0x80249774; // type:function size:0x2C +fn_802497A0 = .text:0x802497A0; // type:function size:0x58 +fn_802497F8 = .text:0x802497F8; // type:function size:0x28 +fn_80249820 = .text:0x80249820; // type:function size:0x68 +fn_80249888 = .text:0x80249888; // type:function size:0xC +fn_80249894 = .text:0x80249894; // type:function size:0x88 +fn_8024991C = .text:0x8024991C; // type:function size:0x2C +fn_80249948 = .text:0x80249948; // type:function size:0x8 +fn_80249950 = .text:0x80249950; // type:function size:0x7C +fn_802499CC = .text:0x802499CC; // type:function size:0xBC +fn_80249A88 = .text:0x80249A88; // type:function size:0x10 +fn_80249A98 = .text:0x80249A98; // type:function size:0x8 +fn_80249AA0 = .text:0x80249AA0; // type:function size:0xD0 +fn_80249B70 = .text:0x80249B70; // type:function size:0x94 +fn_80249C04 = .text:0x80249C04; // type:function size:0x104 +fn_80249D08 = .text:0x80249D08; // type:function size:0x25C +fn_80249F64 = .text:0x80249F64; // type:function size:0x28 +fn_80249F8C = .text:0x80249F8C; // type:function size:0x38 +fn_80249FC4 = .text:0x80249FC4; // type:function size:0x60 +fn_8024A024 = .text:0x8024A024; // type:function size:0xCC +fn_8024A0F0 = .text:0x8024A0F0; // type:function size:0x88 +fn_8024A178 = .text:0x8024A178; // type:function size:0x174 +fn_8024A2EC = .text:0x8024A2EC; // type:function size:0xC +fn_8024A2F8 = .text:0x8024A2F8; // type:function size:0x10 +fn_8024A308 = .text:0x8024A308; // type:function size:0x10 +fn_8024A318 = .text:0x8024A318; // type:function size:0x3CC +fn_8024A6E4 = .text:0x8024A6E4; // type:function size:0xB8 +fn_8024A79C = .text:0x8024A79C; // type:function size:0x40 +fn_8024A7DC = .text:0x8024A7DC; // type:function size:0xA0 +fn_8024A87C = .text:0x8024A87C; // type:function size:0xBC +fn_8024A938 = .text:0x8024A938; // type:function size:0xD4 +fn_8024AA0C = .text:0x8024AA0C; // type:function size:0x60 +fn_8024AA6C = .text:0x8024AA6C; // type:function size:0x260 +fn_8024ACCC = .text:0x8024ACCC; // type:function size:0x9C +fn_8024AD68 = .text:0x8024AD68; // type:function size:0x60 +fn_8024ADC8 = .text:0x8024ADC8; // type:function size:0x34 +fn_8024ADFC = .text:0x8024ADFC; // type:function size:0x6C +fn_8024AE68 = .text:0x8024AE68; // type:function size:0xD4 +fn_8024AF3C = .text:0x8024AF3C; // type:function size:0xB8 +fn_8024AFF4 = .text:0x8024AFF4; // type:function size:0x94 +fn_8024B088 = .text:0x8024B088; // type:function size:0x60 +fn_8024B0E8 = .text:0x8024B0E8; // type:function size:0x60 +fn_8024B148 = .text:0x8024B148; // type:function size:0x8C +fn_8024B1D4 = .text:0x8024B1D4; // type:function size:0x98 +fn_8024B26C = .text:0x8024B26C; // type:function size:0x230 +fn_8024B49C = .text:0x8024B49C; // type:function size:0x34 +fn_8024B4D0 = .text:0x8024B4D0; // type:function size:0x8 +fn_8024B4D8 = .text:0x8024B4D8; // type:function size:0x8 +fn_8024B4E0 = .text:0x8024B4E0; // type:function size:0xC8 +fn_8024B5A8 = .text:0x8024B5A8; // type:function size:0x68 +fn_8024B610 = .text:0x8024B610; // type:function size:0x60 +fn_8024B670 = .text:0x8024B670; // type:function size:0x38 +fn_8024B6A8 = .text:0x8024B6A8; // type:function size:0x84 +fn_8024B72C = .text:0x8024B72C; // type:function size:0x78 +fn_8024B7A4 = .text:0x8024B7A4; // type:function size:0x108 +fn_8024B8AC = .text:0x8024B8AC; // type:function size:0xD8 +fn_8024B984 = .text:0x8024B984; // type:function size:0x60 +fn_8024B9E4 = .text:0x8024B9E4; // type:function size:0x60 +fn_8024BA44 = .text:0x8024BA44; // type:function size:0x60 +fn_8024BAA4 = .text:0x8024BAA4; // type:function size:0x60 +fn_8024BB04 = .text:0x8024BB04; // type:function size:0x60 +fn_8024BB64 = .text:0x8024BB64; // type:function size:0x60 +fn_8024BBC4 = .text:0x8024BBC4; // type:function size:0x60 +fn_8024BC24 = .text:0x8024BC24; // type:function size:0x60 +fn_8024BC84 = .text:0x8024BC84; // type:function size:0x14 +fn_8024BC98 = .text:0x8024BC98; // type:function size:0x8 +fn_8024BCA0 = .text:0x8024BCA0; // type:function size:0x8 +fn_8024BCA8 = .text:0x8024BCA8; // type:function size:0x30 +fn_8024BCD8 = .text:0x8024BCD8; // type:function size:0x8 +fn_8024BCE0 = .text:0x8024BCE0; // type:function size:0xCC +fn_8024BDAC = .text:0x8024BDAC; // type:function size:0x7C +fn_8024BE28 = .text:0x8024BE28; // type:function size:0x60 +fn_8024BE88 = .text:0x8024BE88; // type:function size:0x60 +fn_8024BEE8 = .text:0x8024BEE8; // type:function size:0xCC +fn_8024BFB4 = .text:0x8024BFB4; // type:function size:0x38 +fn_8024BFEC = .text:0x8024BFEC; // type:function size:0x78 +fn_8024C064 = .text:0x8024C064; // type:function size:0x40 +fn_8024C0A4 = .text:0x8024C0A4; // type:function size:0x8 +fn_8024C0AC = .text:0x8024C0AC; // type:function size:0xBC +fn_8024C168 = .text:0x8024C168; // type:function size:0x78 +fn_8024C1E0 = .text:0x8024C1E0; // type:function size:0x24 +fn_8024C204 = .text:0x8024C204; // type:function size:0x70 +fn_8024C274 = .text:0x8024C274; // type:function size:0x134 +fn_8024C3A8 = .text:0x8024C3A8; // type:function size:0x188 +fn_8024C530 = .text:0x8024C530; // type:function size:0x4C +fn_8024C57C = .text:0x8024C57C; // type:function size:0x188 +fn_8024C704 = .text:0x8024C704; // type:function size:0x2C +fn_8024C730 = .text:0x8024C730; // type:function size:0x2C +fn_8024C75C = .text:0x8024C75C; // type:function size:0xB4 +fn_8024C810 = .text:0x8024C810; // type:function size:0x94 +fn_8024C8A4 = .text:0x8024C8A4; // type:function size:0x54 +fn_8024C8F8 = .text:0x8024C8F8; // type:function size:0x18 +fn_8024C910 = .text:0x8024C910; // type:function size:0x18 +fn_8024C928 = .text:0x8024C928; // type:function size:0x18 +fn_8024C940 = .text:0x8024C940; // type:function size:0x64 +fn_8024C9A4 = .text:0x8024C9A4; // type:function size:0x84 +fn_8024CA28 = .text:0x8024CA28; // type:function size:0x50 +fn_8024CA78 = .text:0x8024CA78; // type:function size:0x68 +fn_8024CAE0 = .text:0x8024CAE0; // type:function size:0xA8 +fn_8024CB88 = .text:0x8024CB88; // type:function size:0x6C +fn_8024CBF4 = .text:0x8024CBF4; // type:function size:0x20 +fn_8024CC14 = .text:0x8024CC14; // type:function size:0x4 +fn_8024CC18 = .text:0x8024CC18; // type:function size:0x18 +fn_8024CC30 = .text:0x8024CC30; // type:function size:0x18 +fn_8024CC48 = .text:0x8024CC48; // type:function size:0x7F8 +fn_8024D440 = .text:0x8024D440; // type:function size:0x1790 +fn_8024EBD0 = .text:0x8024EBD0; // type:function size:0x144 +__as__12DataArrayPtrFP9DataArray = .text:0x8024ED14; // type:function size:0x84 +fn_8024ED98 = .text:0x8024ED98; // type:function size:0x8 +fn_8024EDA0 = .text:0x8024EDA0; // type:function size:0x8 +fn_8024EDA8 = .text:0x8024EDA8; // type:function size:0x8 +fn_8024EDB0 = .text:0x8024EDB0; // type:function size:0x34 +fn_8024EDE4 = .text:0x8024EDE4; // type:function size:0x80 +fn_8024EE64 = .text:0x8024EE64; // type:function size:0x2A4 +fn_8024F108 = .text:0x8024F108; // type:function size:0x38 +fn_8024F140 = .text:0x8024F140; // type:function size:0x8 +fn_8024F148 = .text:0x8024F148; // type:function size:0x90 +fn_8024F1D8 = .text:0x8024F1D8; // type:function size:0xF8 +fn_8024F2D0 = .text:0x8024F2D0; // type:function size:0xD0 +fn_8024F3A0 = .text:0x8024F3A0; // type:function size:0x58 +fn_8024F3F8 = .text:0x8024F3F8; // type:function size:0xB0 +fn_8024F4A8 = .text:0x8024F4A8; // type:function size:0x174 +fn_8024F61C = .text:0x8024F61C; // type:function size:0x428 +fn_8024FA44 = .text:0x8024FA44; // type:function size:0x8 +fn_8024FA4C = .text:0x8024FA4C; // type:function size:0xBC +fn_8024FB08 = .text:0x8024FB08; // type:function size:0xAC +fn_8024FBB4 = .text:0x8024FBB4; // type:function size:0x1F8 +fn_8024FDAC = .text:0x8024FDAC; // type:function size:0xB0 +fn_8024FE5C = .text:0x8024FE5C; // type:function size:0x8 +fn_8024FE64 = .text:0x8024FE64; // type:function size:0x15C +fn_8024FFC0 = .text:0x8024FFC0; // type:function size:0x114 +fn_802500D4 = .text:0x802500D4; // type:function size:0x114 +fn_802501E8 = .text:0x802501E8; // type:function size:0x13C +fn_80250324 = .text:0x80250324; // type:function size:0x168 +fn_8025048C = .text:0x8025048C; // type:function size:0x28C +fn_80250718 = .text:0x80250718; // type:function size:0x94 +fn_802507AC = .text:0x802507AC; // type:function size:0x100 +Handle__13OvershellSlotFP9DataArrayb = .text:0x802508AC; // type:function size:0x1F74 +fn_80252820 = .text:0x80252820; // type:function size:0x3C +fn_8025285C = .text:0x8025285C; // type:function size:0x4C +fn_802528A8 = .text:0x802528A8; // type:function size:0x114 +fn_802529BC = .text:0x802529BC; // type:function size:0x60 +fn_80252A1C = .text:0x80252A1C; // type:function size:0x5C +fn_80252A78 = .text:0x80252A78; // type:function size:0x54 +fn_80252ACC = .text:0x80252ACC; // type:function size:0x5C +fn_80252B28 = .text:0x80252B28; // type:function size:0x5C +fn_80252B84 = .text:0x80252B84; // type:function size:0x14 +fn_80252B98 = .text:0x80252B98; // type:function size:0x78 +fn_80252C10 = .text:0x80252C10; // type:function size:0x8 +fn_80252C18 = .text:0x80252C18; // type:function size:0x58 +fn_80252C70 = .text:0x80252C70; // type:function size:0x3C +fn_80252CAC = .text:0x80252CAC; // type:function size:0x60 +fn_80252D0C = .text:0x80252D0C; // type:function size:0x90 +fn_80252D9C = .text:0x80252D9C; // type:function size:0x74 +fn_80252E10 = .text:0x80252E10; // type:function size:0x74 +fn_80252E84 = .text:0x80252E84; // type:function size:0x74 +fn_80252EF8 = .text:0x80252EF8; // type:function size:0x74 +fn_80252F6C = .text:0x80252F6C; // type:function size:0x74 +fn_80252FE0 = .text:0x80252FE0; // type:function size:0x74 +fn_80253054 = .text:0x80253054; // type:function size:0x74 +fn_802530C8 = .text:0x802530C8; // type:function size:0x74 +fn_8025313C = .text:0x8025313C; // type:function size:0x8C +fn_802531C8 = .text:0x802531C8; // type:function size:0x74 +fn_8025323C = .text:0x8025323C; // type:function size:0x74 +fn_802532B0 = .text:0x802532B0; // type:function size:0x74 +fn_80253324 = .text:0x80253324; // type:function size:0x74 +fn_80253398 = .text:0x80253398; // type:function size:0x74 +fn_8025340C = .text:0x8025340C; // type:function size:0xCC +fn_802534D8 = .text:0x802534D8; // type:function size:0x40 +fn_80253518 = .text:0x80253518; // type:function size:0xC0 +fn_802535D8 = .text:0x802535D8; // type:function size:0x60 +fn_80253638 = .text:0x80253638; // type:function size:0x5C +fn_80253694 = .text:0x80253694; // type:function size:0x5C +fn_802536F0 = .text:0x802536F0; // type:function size:0x84 +fn_80253774 = .text:0x80253774; // type:function size:0x84 +fn_802537F8 = .text:0x802537F8; // type:function size:0x34 +fn_8025382C = .text:0x8025382C; // type:function size:0x60 +fn_8025388C = .text:0x8025388C; // type:function size:0x134 +fn_802539C0 = .text:0x802539C0; // type:function size:0x4 +fn_802539C4 = .text:0x802539C4; // type:function size:0x14 +fn_802539D8 = .text:0x802539D8; // type:function size:0x14 +fn_802539EC = .text:0x802539EC; // type:function size:0x14 +fn_80253A00 = .text:0x80253A00; // type:function size:0x14 +fn_80253A14 = .text:0x80253A14; // type:function size:0xC0 +fn_80253AD4 = .text:0x80253AD4; // type:function size:0xB8 +fn_80253B8C = .text:0x80253B8C; // type:function size:0x70 +fn_80253BFC = .text:0x80253BFC; // type:function size:0x54 +fn_80253C50 = .text:0x80253C50; // type:function size:0xBC +fn_80253D0C = .text:0x80253D0C; // type:function size:0xC4 +fn_80253DD0 = .text:0x80253DD0; // type:function size:0x108 +fn_80253ED8 = .text:0x80253ED8; // type:function size:0x174 +fn_8025404C = .text:0x8025404C; // type:function size:0x8 +Handle__20PassiveMessagesPanelFP9DataArrayb = .text:0x80254054; // type:function size:0x2B8 +__dt__14PassiveMessageFv = .text:0x8025430C; // type:function size:0x88 +fn_80254394 = .text:0x80254394; // type:function size:0x134 +fn_802544C8 = .text:0x802544C8; // type:function size:0x4 +fn_802544CC = .text:0x802544CC; // type:function size:0x14 +fn_802544E0 = .text:0x802544E0; // type:function size:0x14 +fn_802544F4 = .text:0x802544F4; // type:function size:0x14 +fn_80254508 = .text:0x80254508; // type:function size:0x14 +fn_8025451C = .text:0x8025451C; // type:function size:0x14 +fn_80254530 = .text:0x80254530; // type:function size:0x1EC +fn_8025471C = .text:0x8025471C; // type:function size:0xB30 +fn_8025524C = .text:0x8025524C; // type:function size:0x15C +fn_802553A8 = .text:0x802553A8; // type:function size:0x8 +fn_802553B0 = .text:0x802553B0; // type:function size:0x8 +fn_802553B8 = .text:0x802553B8; // type:function size:0x174 +fn_8025552C = .text:0x8025552C; // type:function size:0x8 +fn_80255534 = .text:0x80255534; // type:function size:0x8 +fn_8025553C = .text:0x8025553C; // type:function size:0x2D0 +fn_8025580C = .text:0x8025580C; // type:function size:0x5C +fn_80255868 = .text:0x80255868; // type:function size:0x10 +fn_80255878 = .text:0x80255878; // type:function size:0x10 +fn_80255888 = .text:0x80255888; // type:function size:0x3C +fn_802558C4 = .text:0x802558C4; // type:function size:0x3C +fn_80255900 = .text:0x80255900; // type:function size:0x30 +fn_80255930 = .text:0x80255930; // type:function size:0x40 +fn_80255970 = .text:0x80255970; // type:function size:0x40 +fn_802559B0 = .text:0x802559B0; // type:function size:0xB4 +fn_80255A64 = .text:0x80255A64; // type:function size:0x10 +fn_80255A74 = .text:0x80255A74; // type:function size:0x15C +fn_80255BD0 = .text:0x80255BD0; // type:function size:0x84 +fn_80255C54 = .text:0x80255C54; // type:function size:0x8 +fn_80255C5C = .text:0x80255C5C; // type:function size:0x1C +fn_80255C78 = .text:0x80255C78; // type:function size:0xA0 +fn_80255D18 = .text:0x80255D18; // type:function size:0x180 +fn_80255E98 = .text:0x80255E98; // type:function size:0x4C +fn_80255EE4 = .text:0x80255EE4; // type:function size:0x4C +fn_80255F30 = .text:0x80255F30; // type:function size:0xE8 +fn_80256018 = .text:0x80256018; // type:function size:0x5C +fn_80256074 = .text:0x80256074; // type:function size:0x1DC +fn_80256250 = .text:0x80256250; // type:function size:0xE0 +fn_80256330 = .text:0x80256330; // type:function size:0xC8 +fn_802563F8 = .text:0x802563F8; // type:function size:0x70 +fn_80256468 = .text:0x80256468; // type:function size:0x1D4 +fn_8025663C = .text:0x8025663C; // type:function size:0x114 +fn_80256750 = .text:0x80256750; // type:function size:0x100 +fn_80256850 = .text:0x80256850; // type:function size:0x100 +fn_80256950 = .text:0x80256950; // type:function size:0x100 +fn_80256A50 = .text:0x80256A50; // type:function size:0xC8 +fn_80256B18 = .text:0x80256B18; // type:function size:0x18C +fn_80256CA4 = .text:0x80256CA4; // type:function size:0x50 +fn_80256CF4 = .text:0x80256CF4; // type:function size:0x10 +fn_80256D04 = .text:0x80256D04; // type:function size:0x194 +fn_80256E98 = .text:0x80256E98; // type:function size:0x104 +fn_80256F9C = .text:0x80256F9C; // type:function size:0x8 +fn_80256FA4 = .text:0x80256FA4; // type:function size:0x8 +fn_80256FAC = .text:0x80256FAC; // type:function size:0xE0 +Handle__16PassiveMessengerFP9DataArrayb = .text:0x8025708C; // type:function size:0x3E4 +fn_80257470 = .text:0x80257470; // type:function size:0x3C +fn_802574AC = .text:0x802574AC; // type:function size:0x3C +Handle__13LayerProviderFP9DataArrayb = .text:0x802574E8; // type:function size:0x154 +fn_8025763C = .text:0x8025763C; // type:function size:0x1B0 +fn_802577EC = .text:0x802577EC; // type:function size:0x10 +fn_802577FC = .text:0x802577FC; // type:function size:0x48 +fn_80257844 = .text:0x80257844; // type:function size:0x28 +fn_8025786C = .text:0x8025786C; // type:function size:0x28 +fn_80257894 = .text:0x80257894; // type:function size:0xA4 +fn_80257938 = .text:0x80257938; // type:function size:0x54 +fn_8025798C = .text:0x8025798C; // type:function size:0x78 +fn_80257A04 = .text:0x80257A04; // type:function size:0x28 +fn_80257A2C = .text:0x80257A2C; // type:function size:0x154 +fn_80257B80 = .text:0x80257B80; // type:function size:0x7C +fn_80257BFC = .text:0x80257BFC; // type:function size:0x130 +fn_80257D2C = .text:0x80257D2C; // type:function size:0x38 +fn_80257D64 = .text:0x80257D64; // type:function size:0x10 +fn_80257D74 = .text:0x80257D74; // type:function size:0xA0 +fn_80257E14 = .text:0x80257E14; // type:function size:0x94 +fn_80257EA8 = .text:0x80257EA8; // type:function size:0x48 +fn_80257EF0 = .text:0x80257EF0; // type:function size:0x4C +fn_80257F3C = .text:0x80257F3C; // type:function size:0x88 +fn_80257FC4 = .text:0x80257FC4; // type:function size:0x7C +fn_80258040 = .text:0x80258040; // type:function size:0x88 +fn_802580C8 = .text:0x802580C8; // type:function size:0x40 +fn_80258108 = .text:0x80258108; // type:function size:0x58 +fn_80258160 = .text:0x80258160; // type:function size:0xFC +fn_8025825C = .text:0x8025825C; // type:function size:0x90 +fn_802582EC = .text:0x802582EC; // type:function size:0x5C +fn_80258348 = .text:0x80258348; // type:function size:0x5C +fn_802583A4 = .text:0x802583A4; // type:function size:0x98 +fn_8025843C = .text:0x8025843C; // type:function size:0x80 +fn_802584BC = .text:0x802584BC; // type:function size:0x80 +fn_8025853C = .text:0x8025853C; // type:function size:0x58 +fn_80258594 = .text:0x80258594; // type:function size:0x80 +fn_80258614 = .text:0x80258614; // type:function size:0x80 +fn_80258694 = .text:0x80258694; // type:function size:0x58 +fn_802586EC = .text:0x802586EC; // type:function size:0x54 +fn_80258740 = .text:0x80258740; // type:function size:0x5C +fn_8025879C = .text:0x8025879C; // type:function size:0x6C +fn_80258808 = .text:0x80258808; // type:function size:0x28 +fn_80258830 = .text:0x80258830; // type:function size:0x8 +fn_80258838 = .text:0x80258838; // type:function size:0x3C +fn_80258874 = .text:0x80258874; // type:function size:0x90 +fn_80258904 = .text:0x80258904; // type:function size:0x90 +fn_80258994 = .text:0x80258994; // type:function size:0x374 +fn_80258D08 = .text:0x80258D08; // type:function size:0x84 +fn_80258D8C = .text:0x80258D8C; // type:function size:0x4C4 +Modulo__Fff = .text:0x80259250; // type:function size:0x64 +fn_802592B4 = .text:0x802592B4; // type:function size:0x198 +fn_8025944C = .text:0x8025944C; // type:function size:0x10 +fn_8025945C = .text:0x8025945C; // type:function size:0x38 +fn_80259494 = .text:0x80259494; // type:function size:0x140 +fn_802595D4 = .text:0x802595D4; // type:function size:0x8C +fn_80259660 = .text:0x80259660; // type:function size:0x64 +fn_802596C4 = .text:0x802596C4; // type:function size:0xC4 +fn_80259788 = .text:0x80259788; // type:function size:0x20 +fn_802597A8 = .text:0x802597A8; // type:function size:0x24 +fn_802597CC = .text:0x802597CC; // type:function size:0x178 +fn_80259944 = .text:0x80259944; // type:function size:0xA0 +fn_802599E4 = .text:0x802599E4; // type:function size:0x9C +fn_80259A80 = .text:0x80259A80; // type:function size:0x24 +fn_80259AA4 = .text:0x80259AA4; // type:function size:0x8C +fn_80259B30 = .text:0x80259B30; // type:function size:0xC +fn_80259B3C = .text:0x80259B3C; // type:function size:0x148 +fn_80259C84 = .text:0x80259C84; // type:function size:0x158 +fn_80259DDC = .text:0x80259DDC; // type:function size:0x40 +Handle__10PatchPanelFP9DataArrayb = .text:0x80259E1C; // type:function size:0x6FC +fn_8025A518 = .text:0x8025A518; // type:function size:0x34 +SyncProperty__10PatchPanelFR8DataNodeP9DataArrayi6PropOp = .text:0x8025A54C; // type:function size:0x1C8 +fn_8025A714 = .text:0x8025A714; // type:function size:0xBC +fn_8025A7D0 = .text:0x8025A7D0; // type:function size:0x60 +fn_8025A830 = .text:0x8025A830; // type:function size:0x60 +SetType__10PatchPanelF6Symbol = .text:0x8025A890; // type:function size:0x134 +ClassName__10PatchPanelCFv = .text:0x8025A9C4; // type:function size:0x4 +fn_8025A9C8 = .text:0x8025A9C8; // type:function size:0x40 +fn_8025AA08 = .text:0x8025AA08; // type:function size:0x74 +fn_8025AA7C = .text:0x8025AA7C; // type:function size:0x18 +fn_8025AA94 = .text:0x8025AA94; // type:function size:0xFC +fn_8025AB90 = .text:0x8025AB90; // type:function size:0x48 +fn_8025ABD8 = .text:0x8025ABD8; // type:function size:0x4C +fn_8025AC24 = .text:0x8025AC24; // type:function size:0x6C +fn_8025AC90 = .text:0x8025AC90; // type:function size:0xC +fn_8025AC9C = .text:0x8025AC9C; // type:function size:0x2C +fn_8025ACC8 = .text:0x8025ACC8; // type:function size:0x68 +fn_8025AD30 = .text:0x8025AD30; // type:function size:0x48 +fn_8025AD78 = .text:0x8025AD78; // type:function size:0x48 +fn_8025ADC0 = .text:0x8025ADC0; // type:function size:0x80 +fn_8025AE40 = .text:0x8025AE40; // type:function size:0x98 +fn_8025AED8 = .text:0x8025AED8; // type:function size:0x11C +fn_8025AFF4 = .text:0x8025AFF4; // type:function size:0xC +fn_8025B000 = .text:0x8025B000; // type:function size:0x3C +fn_8025B03C = .text:0x8025B03C; // type:function size:0x40 +fn_8025B07C = .text:0x8025B07C; // type:function size:0x8C +fn_8025B108 = .text:0x8025B108; // type:function size:0x8 +fn_8025B110 = .text:0x8025B110; // type:function size:0x2C +fn_8025B13C = .text:0x8025B13C; // type:function size:0x58 +fn_8025B194 = .text:0x8025B194; // type:function size:0x8 +fn_8025B19C = .text:0x8025B19C; // type:function size:0x68 +fn_8025B204 = .text:0x8025B204; // type:function size:0x28 +fn_8025B22C = .text:0x8025B22C; // type:function size:0x68 +fn_8025B294 = .text:0x8025B294; // type:function size:0x68 +fn_8025B2FC = .text:0x8025B2FC; // type:function size:0x14 +fn_8025B310 = .text:0x8025B310; // type:function size:0x14 +fn_8025B324 = .text:0x8025B324; // type:function size:0x14 +fn_8025B338 = .text:0x8025B338; // type:function size:0x14 +fn_8025B34C = .text:0x8025B34C; // type:function size:0x14 +fn_8025B360 = .text:0x8025B360; // type:function size:0x14 +fn_8025B374 = .text:0x8025B374; // type:function size:0x14 +fn_8025B388 = .text:0x8025B388; // type:function size:0x14 +fn_8025B39C = .text:0x8025B39C; // type:function size:0x8 +fn_8025B3A4 = .text:0x8025B3A4; // type:function size:0x8 +fn_8025B3AC = .text:0x8025B3AC; // type:function size:0x8 +fn_8025B3B4 = .text:0x8025B3B4; // type:function size:0x8 +fn_8025B3BC = .text:0x8025B3BC; // type:function size:0x9C +fn_8025B458 = .text:0x8025B458; // type:function size:0x4 +fn_8025B45C = .text:0x8025B45C; // type:function size:0x4 +fn_8025B460 = .text:0x8025B460; // type:function size:0x6C +fn_8025B4CC = .text:0x8025B4CC; // type:function size:0x7C +fn_8025B548 = .text:0x8025B548; // type:function size:0x50 +fn_8025B598 = .text:0x8025B598; // type:function size:0x88 +fn_8025B620 = .text:0x8025B620; // type:function size:0x90 +fn_8025B6B0 = .text:0x8025B6B0; // type:function size:0x84 +fn_8025B734 = .text:0x8025B734; // type:function size:0x50 +fn_8025B784 = .text:0x8025B784; // type:function size:0x40 +fn_8025B7C4 = .text:0x8025B7C4; // type:function size:0x50 +fn_8025B814 = .text:0x8025B814; // type:function size:0x30 +fn_8025B844 = .text:0x8025B844; // type:function size:0x88 +Handle__16PatchSelectPanelFP9DataArrayb = .text:0x8025B8CC; // type:function size:0x35C +fn_8025BC28 = .text:0x8025BC28; // type:function size:0x34 +fn_8025BC5C = .text:0x8025BC5C; // type:function size:0x3C +fn_8025BC98 = .text:0x8025BC98; // type:function size:0x74 +fn_8025BD0C = .text:0x8025BD0C; // type:function size:0x3C +SyncProperty__16PatchSelectPanelFR8DataNodeP9DataArrayi6PropOp = .text:0x8025BD48; // type:function size:0x174 +fn_8025BEBC = .text:0x8025BEBC; // type:function size:0x7C +SetType__16PatchSelectPanelF6Symbol = .text:0x8025BF38; // type:function size:0x134 +ClassName__16PatchSelectPanelCFv = .text:0x8025C06C; // type:function size:0x4 +fn_8025C070 = .text:0x8025C070; // type:function size:0xD4 +fn_8025C144 = .text:0x8025C144; // type:function size:0x8 +fn_8025C14C = .text:0x8025C14C; // type:function size:0x28 +fn_8025C174 = .text:0x8025C174; // type:function size:0xC4 +fn_8025C238 = .text:0x8025C238; // type:function size:0x9C +fn_8025C2D4 = .text:0x8025C2D4; // type:function size:0x28 +fn_8025C2FC = .text:0x8025C2FC; // type:function size:0x14 +fn_8025C310 = .text:0x8025C310; // type:function size:0x14 +fn_8025C324 = .text:0x8025C324; // type:function size:0x14 +fn_8025C338 = .text:0x8025C338; // type:function size:0x14 +fn_8025C34C = .text:0x8025C34C; // type:function size:0x14 +fn_8025C360 = .text:0x8025C360; // type:function size:0x8 +__ct__15PerformanceDataFv = .text:0x8025C368; // type:function size:0xAC +fn_8025C414 = .text:0x8025C414; // type:function size:0x74 +fn_8025C488 = .text:0x8025C488; // type:function size:0xE8 +fn_8025C570 = .text:0x8025C570; // type:function size:0x788 +fn_8025CCF8 = .text:0x8025CCF8; // type:function size:0x50 +fn_8025CD48 = .text:0x8025CD48; // type:function size:0x8 +fn_8025CD50 = .text:0x8025CD50; // type:function size:0x8 +fn_8025CD58 = .text:0x8025CD58; // type:function size:0x8 +fn_8025CD60 = .text:0x8025CD60; // type:function size:0x8 +fn_8025CD68 = .text:0x8025CD68; // type:function size:0x8 +fn_8025CD70 = .text:0x8025CD70; // type:function size:0x8 +fn_8025CD78 = .text:0x8025CD78; // type:function size:0x8 +fn_8025CD80 = .text:0x8025CD80; // type:function size:0x8 +fn_8025CD88 = .text:0x8025CD88; // type:function size:0x8 +fn_8025CD90 = .text:0x8025CD90; // type:function size:0x8 +fn_8025CD98 = .text:0x8025CD98; // type:function size:0x8 +fn_8025CDA0 = .text:0x8025CDA0; // type:function size:0x8 +fn_8025CDA8 = .text:0x8025CDA8; // type:function size:0x8 +fn_8025CDB0 = .text:0x8025CDB0; // type:function size:0x50 +fn_8025CE00 = .text:0x8025CE00; // type:function size:0x8 +fn_8025CE08 = .text:0x8025CE08; // type:function size:0x50 +fn_8025CE58 = .text:0x8025CE58; // type:function size:0x8 +fn_8025CE60 = .text:0x8025CE60; // type:function size:0x50 +fn_8025CEB0 = .text:0x8025CEB0; // type:function size:0x8 +fn_8025CEB8 = .text:0x8025CEB8; // type:function size:0x50 +fn_8025CF08 = .text:0x8025CF08; // type:function size:0x8 +fn_8025CF10 = .text:0x8025CF10; // type:function size:0xA8 +fn_8025CFB8 = .text:0x8025CFB8; // type:function size:0x8 +fn_8025CFC0 = .text:0x8025CFC0; // type:function size:0x8 +fn_8025CFC8 = .text:0x8025CFC8; // type:function size:0x8 +fn_8025CFD0 = .text:0x8025CFD0; // type:function size:0xA8 +fn_8025D078 = .text:0x8025D078; // type:function size:0x9C +fn_8025D114 = .text:0x8025D114; // type:function size:0x790 +fn_8025D8A4 = .text:0x8025D8A4; // type:function size:0x50 +fn_8025D8F4 = .text:0x8025D8F4; // type:function size:0x8 +fn_8025D8FC = .text:0x8025D8FC; // type:function size:0x8 +fn_8025D904 = .text:0x8025D904; // type:function size:0x8 +fn_8025D90C = .text:0x8025D90C; // type:function size:0x8 +fn_8025D914 = .text:0x8025D914; // type:function size:0x8 +fn_8025D91C = .text:0x8025D91C; // type:function size:0x8 +fn_8025D924 = .text:0x8025D924; // type:function size:0x8 +fn_8025D92C = .text:0x8025D92C; // type:function size:0x8 +fn_8025D934 = .text:0x8025D934; // type:function size:0x8 +fn_8025D93C = .text:0x8025D93C; // type:function size:0x8 +fn_8025D944 = .text:0x8025D944; // type:function size:0x8 +fn_8025D94C = .text:0x8025D94C; // type:function size:0x50 +fn_8025D99C = .text:0x8025D99C; // type:function size:0x4C +fn_8025D9E8 = .text:0x8025D9E8; // type:function size:0x50 +fn_8025DA38 = .text:0x8025DA38; // type:function size:0x4C +fn_8025DA84 = .text:0x8025DA84; // type:function size:0x50 +fn_8025DAD4 = .text:0x8025DAD4; // type:function size:0x4C +fn_8025DB20 = .text:0x8025DB20; // type:function size:0x50 +fn_8025DB70 = .text:0x8025DB70; // type:function size:0x4C +fn_8025DBBC = .text:0x8025DBBC; // type:function size:0xBC +fn_8025DC78 = .text:0x8025DC78; // type:function size:0x8 +fn_8025DC80 = .text:0x8025DC80; // type:function size:0x8 +fn_8025DC88 = .text:0x8025DC88; // type:function size:0x8 +fn_8025DC90 = .text:0x8025DC90; // type:function size:0x8 +fn_8025DC98 = .text:0x8025DC98; // type:function size:0x8 +fn_8025DCA0 = .text:0x8025DCA0; // type:function size:0xBC +fn_8025DD5C = .text:0x8025DD5C; // type:function size:0xDC +fn_8025DE38 = .text:0x8025DE38; // type:function size:0x88 +Handle__15PerformanceDataFP9DataArrayb = .text:0x8025DEC0; // type:function size:0xC4 +fn_8025DF84 = .text:0x8025DF84; // type:function size:0x8 +fn_8025DF8C = .text:0x8025DF8C; // type:function size:0x8 +fn_8025DF94 = .text:0x8025DF94; // type:function size:0x8 +fn_8025DF9C = .text:0x8025DF9C; // type:function size:0xE0 +fn_8025E07C = .text:0x8025E07C; // type:function size:0x4C +fn_8025E0C8 = .text:0x8025E0C8; // type:function size:0x3C +fn_8025E104 = .text:0x8025E104; // type:function size:0x68 +fn_8025E16C = .text:0x8025E16C; // type:function size:0x8 +fn_8025E174 = .text:0x8025E174; // type:function size:0x28 +fn_8025E19C = .text:0x8025E19C; // type:function size:0x28 +fn_8025E1C4 = .text:0x8025E1C4; // type:function size:0x5C +fn_8025E220 = .text:0x8025E220; // type:function size:0xB0 +fn_8025E2D0 = .text:0x8025E2D0; // type:function size:0xAC +fn_8025E37C = .text:0x8025E37C; // type:function size:0x90 +fn_8025E40C = .text:0x8025E40C; // type:function size:0x54 +fn_8025E460 = .text:0x8025E460; // type:function size:0xA8 +fn_8025E508 = .text:0x8025E508; // type:function size:0xA0 +fn_8025E5A8 = .text:0x8025E5A8; // type:function size:0x88 +fn_8025E630 = .text:0x8025E630; // type:function size:0x14 +fn_8025E644 = .text:0x8025E644; // type:function size:0x8 +fn_8025E64C = .text:0x8025E64C; // type:function size:0x8 +fn_8025E654 = .text:0x8025E654; // type:function size:0x8 +fn_8025E65C = .text:0x8025E65C; // type:function size:0x60 +fn_8025E6BC = .text:0x8025E6BC; // type:function size:0xC +fn_8025E6C8 = .text:0x8025E6C8; // type:function size:0x14 +__ct__9PrefabMgrFv = .text:0x8025E6DC; // type:function size:0x4B4 +fn_8025EB90 = .text:0x8025EB90; // type:function size:0x50 +fn_8025EBE0 = .text:0x8025EBE0; // type:function size:0xD0 +fn_8025ECB0 = .text:0x8025ECB0; // type:function size:0x78 +__dt__9PrefabMgrFv = .text:0x8025ED28; // type:function size:0xE0 +fn_8025EE08 = .text:0x8025EE08; // type:function size:0x5C +fn_8025EE64 = .text:0x8025EE64; // type:function size:0x5C +fn_8025EEC0 = .text:0x8025EEC0; // type:function size:0xC +fn_8025EECC = .text:0x8025EECC; // type:function size:0x5C +fn_8025EF28 = .text:0x8025EF28; // type:function size:0x5C +fn_8025EF84 = .text:0x8025EF84; // type:function size:0x70 +fn_8025EFF4 = .text:0x8025EFF4; // type:function size:0x158 +fn_8025F14C = .text:0x8025F14C; // type:function size:0x6C +fn_8025F1B8 = .text:0x8025F1B8; // type:function size:0x90 +fn_8025F248 = .text:0x8025F248; // type:function size:0x98 +fn_8025F2E0 = .text:0x8025F2E0; // type:function size:0x54 +fn_8025F334 = .text:0x8025F334; // type:function size:0xA4 +fn_8025F3D8 = .text:0x8025F3D8; // type:function size:0xB8 +fn_8025F490 = .text:0x8025F490; // type:function size:0x8C +fn_8025F51C = .text:0x8025F51C; // type:function size:0xA4 +fn_8025F5C0 = .text:0x8025F5C0; // type:function size:0x90 +fn_8025F650 = .text:0x8025F650; // type:function size:0xE0 +fn_8025F730 = .text:0x8025F730; // type:function size:0x88 +fn_8025F7B8 = .text:0x8025F7B8; // type:function size:0xE8 +fn_8025F8A0 = .text:0x8025F8A0; // type:function size:0x30 +fn_8025F8D0 = .text:0x8025F8D0; // type:function size:0xB4 +fn_8025F984 = .text:0x8025F984; // type:function size:0x34 +fn_8025F9B8 = .text:0x8025F9B8; // type:function size:0x8C +fn_8025FA44 = .text:0x8025FA44; // type:function size:0xD4 +fn_8025FB18 = .text:0x8025FB18; // type:function size:0x98 +fn_8025FBB0 = .text:0x8025FBB0; // type:function size:0x6C +fn_8025FC1C = .text:0x8025FC1C; // type:function size:0x30 +fn_8025FC4C = .text:0x8025FC4C; // type:function size:0x40 +fn_8025FC8C = .text:0x8025FC8C; // type:function size:0x44 +fn_8025FCD0 = .text:0x8025FCD0; // type:function size:0x50 +fn_8025FD20 = .text:0x8025FD20; // type:function size:0xA4 +fn_8025FDC4 = .text:0x8025FDC4; // type:function size:0x6C +fn_8025FE30 = .text:0x8025FE30; // type:function size:0xC +fn_8025FE3C = .text:0x8025FE3C; // type:function size:0xE0 +fn_8025FF1C = .text:0x8025FF1C; // type:function size:0x94 +fn_8025FFB0 = .text:0x8025FFB0; // type:function size:0x70 +fn_80260020 = .text:0x80260020; // type:function size:0x84 +fn_802600A4 = .text:0x802600A4; // type:function size:0x6C +fn_80260110 = .text:0x80260110; // type:function size:0x58 +fn_80260168 = .text:0x80260168; // type:function size:0x58 +fn_802601C0 = .text:0x802601C0; // type:function size:0x30 +fn_802601F0 = .text:0x802601F0; // type:function size:0x60 +fn_80260250 = .text:0x80260250; // type:function size:0xD8 +fn_80260328 = .text:0x80260328; // type:function size:0xD0 +fn_802603F8 = .text:0x802603F8; // type:function size:0x6C +fn_80260464 = .text:0x80260464; // type:function size:0x78 +Handle__9PrefabMgrFP9DataArrayb = .text:0x802604DC; // type:function size:0x144 +fn_80260620 = .text:0x80260620; // type:function size:0x34 +fn_80260654 = .text:0x80260654; // type:function size:0x70 +fn_802606C4 = .text:0x802606C4; // type:function size:0x74 +fn_80260738 = .text:0x80260738; // type:function size:0x8 +fn_80260740 = .text:0x80260740; // type:function size:0x7C +fn_802607BC = .text:0x802607BC; // type:function size:0xA4 +fn_80260860 = .text:0x80260860; // type:function size:0x78 +fn_802608D8 = .text:0x802608D8; // type:function size:0x84 +fn_8026095C = .text:0x8026095C; // type:function size:0xCC +fn_80260A28 = .text:0x80260A28; // type:function size:0x8 +fn_80260A30 = .text:0x80260A30; // type:function size:0x78 +fn_80260AA8 = .text:0x80260AA8; // type:function size:0x8 +fn_80260AB0 = .text:0x80260AB0; // type:function size:0x54 +fn_80260B04 = .text:0x80260B04; // type:function size:0x54 +fn_80260B58 = .text:0x80260B58; // type:function size:0x38 +fn_80260B90 = .text:0x80260B90; // type:function size:0x228 +fn_80260DB8 = .text:0x80260DB8; // type:function size:0x264 +fn_8026101C = .text:0x8026101C; // type:function size:0x4C +fn_80261068 = .text:0x80261068; // type:function size:0x5C +fn_802610C4 = .text:0x802610C4; // type:function size:0x11C +fn_802611E0 = .text:0x802611E0; // type:function size:0xA4 +fn_80261284 = .text:0x80261284; // type:function size:0xD0 +fn_80261354 = .text:0x80261354; // type:function size:0xF0 +fn_80261444 = .text:0x80261444; // type:function size:0x78 +fn_802614BC = .text:0x802614BC; // type:function size:0x40 +fn_802614FC = .text:0x802614FC; // type:function size:0x54 +fn_80261550 = .text:0x80261550; // type:function size:0x9C +fn_802615EC = .text:0x802615EC; // type:function size:0x90 +fn_8026167C = .text:0x8026167C; // type:function size:0x104 +fn_80261780 = .text:0x80261780; // type:function size:0x88 +fn_80261808 = .text:0x80261808; // type:function size:0x1CC +fn_802619D4 = .text:0x802619D4; // type:function size:0x70 +fn_80261A44 = .text:0x80261A44; // type:function size:0x8C +fn_80261AD0 = .text:0x80261AD0; // type:function size:0x8C +fn_80261B5C = .text:0x80261B5C; // type:function size:0x88 +fn_80261BE4 = .text:0x80261BE4; // type:function size:0x100 +fn_80261CE4 = .text:0x80261CE4; // type:function size:0x100 +fn_80261DE4 = .text:0x80261DE4; // type:function size:0xF0 +fn_80261ED4 = .text:0x80261ED4; // type:function size:0x70 +fn_80261F44 = .text:0x80261F44; // type:function size:0x58 +fn_80261F9C = .text:0x80261F9C; // type:function size:0x58 +fn_80261FF4 = .text:0x80261FF4; // type:function size:0x8 +fn_80261FFC = .text:0x80261FFC; // type:function size:0x3C +fn_80262038 = .text:0x80262038; // type:function size:0xA4 +fn_802620DC = .text:0x802620DC; // type:function size:0x18 +fn_802620F4 = .text:0x802620F4; // type:function size:0xC +fn_80262100 = .text:0x80262100; // type:function size:0x8 +fn_80262108 = .text:0x80262108; // type:function size:0x10 +fn_80262118 = .text:0x80262118; // type:function size:0x40 +fn_80262158 = .text:0x80262158; // type:function size:0x30 +fn_80262188 = .text:0x80262188; // type:function size:0x1E0 +fn_80262368 = .text:0x80262368; // type:function size:0x44 +fn_802623AC = .text:0x802623AC; // type:function size:0x10 +fn_802623BC = .text:0x802623BC; // type:function size:0x274 +fn_80262630 = .text:0x80262630; // type:function size:0x4C +fn_8026267C = .text:0x8026267C; // type:function size:0x8 +fn_80262684 = .text:0x80262684; // type:function size:0x8 +fn_8026268C = .text:0x8026268C; // type:function size:0xA8 +fn_80262734 = .text:0x80262734; // type:function size:0x50 +fn_80262784 = .text:0x80262784; // type:function size:0xBC +fn_80262840 = .text:0x80262840; // type:function size:0x28 +fn_80262868 = .text:0x80262868; // type:function size:0x4D0 +fn_80262D38 = .text:0x80262D38; // type:function size:0x8 +fn_80262D40 = .text:0x80262D40; // type:function size:0x8C +StaticClassName__6FxSendFv = .text:0x80262DCC; // type:function size:0x4C +fn_80262E18 = .text:0x80262E18; // type:function size:0x10 +fn_80262E28 = .text:0x80262E28; // type:function size:0x10 +fn_80262E38 = .text:0x80262E38; // type:function size:0x10 +fn_80262E48 = .text:0x80262E48; // type:function size:0x1C +fn_80262E64 = .text:0x80262E64; // type:function size:0x10 +fn_80262E74 = .text:0x80262E74; // type:function size:0x60 +fn_80262ED4 = .text:0x80262ED4; // type:function size:0x10 +fn_80262EE4 = .text:0x80262EE4; // type:function size:0x10 +fn_80262EF4 = .text:0x80262EF4; // type:function size:0x10 +fn_80262F04 = .text:0x80262F04; // type:function size:0x90 +fn_80262F94 = .text:0x80262F94; // type:function size:0x10 +fn_80262FA4 = .text:0x80262FA4; // type:function size:0x10 +fn_80262FB4 = .text:0x80262FB4; // type:function size:0x10 +fn_80262FC4 = .text:0x80262FC4; // type:function size:0x10 +fn_80262FD4 = .text:0x80262FD4; // type:function size:0x194 +fn_80263168 = .text:0x80263168; // type:function size:0x10 +fn_80263178 = .text:0x80263178; // type:function size:0x8 +fn_80263180 = .text:0x80263180; // type:function size:0x10 +fn_80263190 = .text:0x80263190; // type:function size:0x60 +fn_802631F0 = .text:0x802631F0; // type:function size:0x80 +fn_80263270 = .text:0x80263270; // type:function size:0x78 +fn_802632E8 = .text:0x802632E8; // type:function size:0x8 +fn_802632F0 = .text:0x802632F0; // type:function size:0x10 +fn_80263300 = .text:0x80263300; // type:function size:0x10 +fn_80263310 = .text:0x80263310; // type:function size:0x58 +fn_80263368 = .text:0x80263368; // type:function size:0x50 +fn_802633B8 = .text:0x802633B8; // type:function size:0x8 +fn_802633C0 = .text:0x802633C0; // type:function size:0x28 +fn_802633E8 = .text:0x802633E8; // type:function size:0x8 +fn_802633F0 = .text:0x802633F0; // type:function size:0x10 +fn_80263400 = .text:0x80263400; // type:function size:0x10 +fn_80263410 = .text:0x80263410; // type:function size:0x1C +fn_8026342C = .text:0x8026342C; // type:function size:0x8 +fn_80263434 = .text:0x80263434; // type:function size:0x1C +fn_80263450 = .text:0x80263450; // type:function size:0x18 +fn_80263468 = .text:0x80263468; // type:function size:0x18 +fn_80263480 = .text:0x80263480; // type:function size:0x54 +fn_802634D4 = .text:0x802634D4; // type:function size:0x8 +fn_802634DC = .text:0x802634DC; // type:function size:0x8 +fn_802634E4 = .text:0x802634E4; // type:function size:0x8 +fn_802634EC = .text:0x802634EC; // type:function size:0x8 +fn_802634F4 = .text:0x802634F4; // type:function size:0x8 +fn_802634FC = .text:0x802634FC; // type:function size:0x8 +fn_80263504 = .text:0x80263504; // type:function size:0x490 +fn_80263994 = .text:0x80263994; // type:function size:0x68 +fn_802639FC = .text:0x802639FC; // type:function size:0x8 +fn_80263A04 = .text:0x80263A04; // type:function size:0x20 +fn_80263A24 = .text:0x80263A24; // type:function size:0x38 +fn_80263A5C = .text:0x80263A5C; // type:function size:0x64 +fn_80263AC0 = .text:0x80263AC0; // type:function size:0x8 +fn_80263AC8 = .text:0x80263AC8; // type:function size:0x8 +fn_80263AD0 = .text:0x80263AD0; // type:function size:0x44 +fn_80263B14 = .text:0x80263B14; // type:function size:0x3C +fn_80263B50 = .text:0x80263B50; // type:function size:0x58 +fn_80263BA8 = .text:0x80263BA8; // type:function size:0x58 +fn_80263C00 = .text:0x80263C00; // type:function size:0x38 +fn_80263C38 = .text:0x80263C38; // type:function size:0x8 +fn_80263C40 = .text:0x80263C40; // type:function size:0x38 +fn_80263C78 = .text:0x80263C78; // type:function size:0x8 +fn_80263C80 = .text:0x80263C80; // type:function size:0x38 +fn_80263CB8 = .text:0x80263CB8; // type:function size:0x38 +fn_80263CF0 = .text:0x80263CF0; // type:function size:0x8 +fn_80263CF8 = .text:0x80263CF8; // type:function size:0x38 +fn_80263D30 = .text:0x80263D30; // type:function size:0x38 +fn_80263D68 = .text:0x80263D68; // type:function size:0x8 +fn_80263D70 = .text:0x80263D70; // type:function size:0x98 +fn_80263E08 = .text:0x80263E08; // type:function size:0x64 +fn_80263E6C = .text:0x80263E6C; // type:function size:0x224 +fn_80264090 = .text:0x80264090; // type:function size:0x4C +fn_802640DC = .text:0x802640DC; // type:function size:0x148 +fn_80264224 = .text:0x80264224; // type:function size:0x98 +fn_802642BC = .text:0x802642BC; // type:function size:0x90 +fn_8026434C = .text:0x8026434C; // type:function size:0x8 +fn_80264354 = .text:0x80264354; // type:function size:0x10 +fn_80264364 = .text:0x80264364; // type:function size:0x8 +fn_8026436C = .text:0x8026436C; // type:function size:0x50 +fn_802643BC = .text:0x802643BC; // type:function size:0x10 +fn_802643CC = .text:0x802643CC; // type:function size:0x88 +fn_80264454 = .text:0x80264454; // type:function size:0x40 +fn_80264494 = .text:0x80264494; // type:function size:0x90 +fn_80264524 = .text:0x80264524; // type:function size:0x68 +fn_8026458C = .text:0x8026458C; // type:function size:0xB0 +fn_8026463C = .text:0x8026463C; // type:function size:0x28 +fn_80264664 = .text:0x80264664; // type:function size:0xF8 +fn_8026475C = .text:0x8026475C; // type:function size:0x64 +fn_802647C0 = .text:0x802647C0; // type:function size:0x40 +fn_80264800 = .text:0x80264800; // type:function size:0xCC +fn_802648CC = .text:0x802648CC; // type:function size:0x4C +fn_80264918 = .text:0x80264918; // type:function size:0x34 +fn_8026494C = .text:0x8026494C; // type:function size:0x34 +Handle__10ProfileMgrFP9DataArrayb = .text:0x80264980; // type:function size:0x18BC +__ct__26SaveLoadMgrStatusUpdateMsgFP9DataArray = .text:0x8026623C; // type:function size:0x3C +fn_80266278 = .text:0x80266278; // type:function size:0x8 +fn_80266280 = .text:0x80266280; // type:function size:0x8 +fn_80266288 = .text:0x80266288; // type:function size:0x8 +fn_80266290 = .text:0x80266290; // type:function size:0x8 +fn_80266298 = .text:0x80266298; // type:function size:0x8 +fn_802662A0 = .text:0x802662A0; // type:function size:0x8 +fn_802662A8 = .text:0x802662A8; // type:function size:0x8 +fn_802662B0 = .text:0x802662B0; // type:function size:0xB0 +fn_80266360 = .text:0x80266360; // type:function size:0x5C +fn_802663BC = .text:0x802663BC; // type:function size:0x14 +fn_802663D0 = .text:0x802663D0; // type:function size:0x14 +fn_802663E4 = .text:0x802663E4; // type:function size:0x14 +fn_802663F8 = .text:0x802663F8; // type:function size:0x14 +fn_8026640C = .text:0x8026640C; // type:function size:0x14 +fn_80266420 = .text:0x80266420; // type:function size:0x14 +fn_80266434 = .text:0x80266434; // type:function size:0x14 +fn_80266448 = .text:0x80266448; // type:function size:0x88 +fn_802664D0 = .text:0x802664D0; // type:function size:0x7C +fn_8026654C = .text:0x8026654C; // type:function size:0x90 +fn_802665DC = .text:0x802665DC; // type:function size:0x60 +fn_8026663C = .text:0x8026663C; // type:function size:0x8 +fn_80266644 = .text:0x80266644; // type:function size:0x40 +fn_80266684 = .text:0x80266684; // type:function size:0x90 +fn_80266714 = .text:0x80266714; // type:function size:0x8 +fn_8026671C = .text:0x8026671C; // type:function size:0x4 +fn_80266720 = .text:0x80266720; // type:function size:0x4C +Handle__15RetryAudioPanelFP9DataArrayb = .text:0x8026676C; // type:function size:0xD0 +fn_8026683C = .text:0x8026683C; // type:function size:0x134 +fn_80266970 = .text:0x80266970; // type:function size:0x4 +fn_80266974 = .text:0x80266974; // type:function size:0x14 +fn_80266988 = .text:0x80266988; // type:function size:0x14 +fn_8026699C = .text:0x8026699C; // type:function size:0x14 +fn_802669B0 = .text:0x802669B0; // type:function size:0x14 +fn_802669C4 = .text:0x802669C4; // type:function size:0x8 +fn_802669CC = .text:0x802669CC; // type:function size:0x8 +fn_802669D4 = .text:0x802669D4; // type:function size:0x8 +fn_802669DC = .text:0x802669DC; // type:function size:0x8 +fn_802669E4 = .text:0x802669E4; // type:function size:0xB0 +fn_80266A94 = .text:0x80266A94; // type:function size:0x80 +fn_80266B14 = .text:0x80266B14; // type:function size:0x2C +fn_80266B40 = .text:0x80266B40; // type:function size:0x8 +__ct__17LocalSavedSetlistFv = .text:0x80266B48; // type:function size:0xC8 +fn_80266C10 = .text:0x80266C10; // type:function size:0xF4 +fn_80266D04 = .text:0x80266D04; // type:function size:0x24 +fn_80266D28 = .text:0x80266D28; // type:function size:0x34 +fn_80266D5C = .text:0x80266D5C; // type:function size:0x44 +fn_80266DA0 = .text:0x80266DA0; // type:function size:0xB0 +fn_80266E50 = .text:0x80266E50; // type:function size:0xC8 +fn_80266F18 = .text:0x80266F18; // type:function size:0x1B8 +fn_802670D0 = .text:0x802670D0; // type:function size:0x8 +fn_802670D8 = .text:0x802670D8; // type:function size:0x10 +fn_802670E8 = .text:0x802670E8; // type:function size:0x50 +Handle__17LocalSavedSetlistFP9DataArrayb = .text:0x80267138; // type:function size:0x328 +fn_80267460 = .text:0x80267460; // type:function size:0xC4 +fn_80267524 = .text:0x80267524; // type:function size:0x48 +fn_8026756C = .text:0x8026756C; // type:function size:0x8 +fn_80267574 = .text:0x80267574; // type:function size:0x8 +fn_8026757C = .text:0x8026757C; // type:function size:0x54 +fn_802675D0 = .text:0x802675D0; // type:function size:0x48 +fn_80267618 = .text:0x80267618; // type:function size:0x44 +fn_8026765C = .text:0x8026765C; // type:function size:0x8 +fn_80267664 = .text:0x80267664; // type:function size:0x34 +fn_80267698 = .text:0x80267698; // type:function size:0x34 +fn_802676CC = .text:0x802676CC; // type:function size:0x8 +fn_802676D4 = .text:0x802676D4; // type:function size:0x58 +fn_8026772C = .text:0x8026772C; // type:function size:0x8 +fn_80267734 = .text:0x80267734; // type:function size:0x14 +fn_80267748 = .text:0x80267748; // type:function size:0x14 +fn_8026775C = .text:0x8026775C; // type:function size:0x8 +fn_80267764 = .text:0x80267764; // type:function size:0x8 +fn_8026776C = .text:0x8026776C; // type:function size:0x8 +fn_80267774 = .text:0x80267774; // type:function size:0x8 +fn_8026777C = .text:0x8026777C; // type:function size:0x8 +fn_80267784 = .text:0x80267784; // type:function size:0x8 +fn_8026778C = .text:0x8026778C; // type:function size:0x8 +fn_80267794 = .text:0x80267794; // type:function size:0x198 +fn_8026792C = .text:0x8026792C; // type:function size:0x118 +fn_80267A44 = .text:0x80267A44; // type:function size:0x3C +fn_80267A80 = .text:0x80267A80; // type:function size:0x24 +fn_80267AA4 = .text:0x80267AA4; // type:function size:0xE00 +fn_802688A4 = .text:0x802688A4; // type:function size:0x74 +fn_80268918 = .text:0x80268918; // type:function size:0x68 +fn_80268980 = .text:0x80268980; // type:function size:0xC4 +fn_80268A44 = .text:0x80268A44; // type:function size:0xB4 +fn_80268AF8 = .text:0x80268AF8; // type:function size:0xB8 +fn_80268BB0 = .text:0x80268BB0; // type:function size:0x48 +fn_80268BF8 = .text:0x80268BF8; // type:function size:0x88 +fn_80268C80 = .text:0x80268C80; // type:function size:0x70 +fn_80268CF0 = .text:0x80268CF0; // type:function size:0x28 +fn_80268D18 = .text:0x80268D18; // type:function size:0x50 +fn_80268D68 = .text:0x80268D68; // type:function size:0x90 +fn_80268DF8 = .text:0x80268DF8; // type:function size:0x40 +fn_80268E38 = .text:0x80268E38; // type:function size:0x10 +fn_80268E48 = .text:0x80268E48; // type:function size:0x54 +fn_80268E9C = .text:0x80268E9C; // type:function size:0x48 +fn_80268EE4 = .text:0x80268EE4; // type:function size:0x8 +fn_80268EEC = .text:0x80268EEC; // type:function size:0x78 +fn_80268F64 = .text:0x80268F64; // type:function size:0x78 +fn_80268FDC = .text:0x80268FDC; // type:function size:0x18F4 +fn_8026A8D0 = .text:0x8026A8D0; // type:function size:0x120 +fn_8026A9F0 = .text:0x8026A9F0; // type:function size:0x44 +fn_8026AA34 = .text:0x8026AA34; // type:function size:0xC4 +fn_8026AAF8 = .text:0x8026AAF8; // type:function size:0x64 +fn_8026AB5C = .text:0x8026AB5C; // type:function size:0x144 +fn_8026ACA0 = .text:0x8026ACA0; // type:function size:0x14C +fn_8026ADEC = .text:0x8026ADEC; // type:function size:0x318 +fn_8026B104 = .text:0x8026B104; // type:function size:0x74 +fn_8026B178 = .text:0x8026B178; // type:function size:0x154 +fn_8026B2CC = .text:0x8026B2CC; // type:function size:0xE0 +fn_8026B3AC = .text:0x8026B3AC; // type:function size:0xC +fn_8026B3B8 = .text:0x8026B3B8; // type:function size:0x184 +fn_8026B53C = .text:0x8026B53C; // type:function size:0x1C +fn_8026B558 = .text:0x8026B558; // type:function size:0x154C +fn_8026CAA4 = .text:0x8026CAA4; // type:function size:0x128 +fn_8026CBCC = .text:0x8026CBCC; // type:function size:0xD8 +fn_8026CCA4 = .text:0x8026CCA4; // type:function size:0x58 +fn_8026CCFC = .text:0x8026CCFC; // type:function size:0x18 +fn_8026CD14 = .text:0x8026CD14; // type:function size:0x10 +fn_8026CD24 = .text:0x8026CD24; // type:function size:0x8 +fn_8026CD2C = .text:0x8026CD2C; // type:function size:0x8 +fn_8026CD34 = .text:0x8026CD34; // type:function size:0x18 +Handle__15SaveLoadManagerFP9DataArrayb = .text:0x8026CD4C; // type:function size:0x7F0 +fn_8026D53C = .text:0x8026D53C; // type:function size:0x3C +fn_8026D578 = .text:0x8026D578; // type:function size:0x4C +fn_8026D5C4 = .text:0x8026D5C4; // type:function size:0x3C +fn_8026D600 = .text:0x8026D600; // type:function size:0x4C +fn_8026D64C = .text:0x8026D64C; // type:function size:0x3C +fn_8026D688 = .text:0x8026D688; // type:function size:0x4C +fn_8026D6D4 = .text:0x8026D6D4; // type:function size:0x50 +fn_8026D724 = .text:0x8026D724; // type:function size:0x14 +fn_8026D738 = .text:0x8026D738; // type:function size:0x14 +fn_8026D74C = .text:0x8026D74C; // type:function size:0x14 +fn_8026D760 = .text:0x8026D760; // type:function size:0x14 +fn_8026D774 = .text:0x8026D774; // type:function size:0x14 +fn_8026D788 = .text:0x8026D788; // type:function size:0x14 +fn_8026D79C = .text:0x8026D79C; // type:function size:0x14 +fn_8026D7B0 = .text:0x8026D7B0; // type:function size:0xA0 +fn_8026D850 = .text:0x8026D850; // type:function size:0x7C +fn_8026D8CC = .text:0x8026D8CC; // type:function size:0x80 +fn_8026D94C = .text:0x8026D94C; // type:function size:0xC0 +fn_8026DA0C = .text:0x8026DA0C; // type:function size:0xC +fn_8026DA18 = .text:0x8026DA18; // type:function size:0x8 +fn_8026DA20 = .text:0x8026DA20; // type:function size:0x60 +fn_8026DA80 = .text:0x8026DA80; // type:function size:0x18 +fn_8026DA98 = .text:0x8026DA98; // type:function size:0x20 +fn_8026DAB8 = .text:0x8026DAB8; // type:function size:0x90 +fn_8026DB48 = .text:0x8026DB48; // type:function size:0xE0 +Handle__19SaveLoadStatusPanelFP9DataArrayb = .text:0x8026DC28; // type:function size:0x14C +fn_8026DD74 = .text:0x8026DD74; // type:function size:0x134 +fn_8026DEA8 = .text:0x8026DEA8; // type:function size:0x4 +fn_8026DEAC = .text:0x8026DEAC; // type:function size:0x14 +fn_8026DEC0 = .text:0x8026DEC0; // type:function size:0x14 +fn_8026DED4 = .text:0x8026DED4; // type:function size:0x14 +fn_8026DEE8 = .text:0x8026DEE8; // type:function size:0x14 +fn_8026DEFC = .text:0x8026DEFC; // type:function size:0xA4 +fn_8026DFA0 = .text:0x8026DFA0; // type:function size:0x60 +fn_8026E000 = .text:0x8026E000; // type:function size:0xFC +fn_8026E0FC = .text:0x8026E0FC; // type:function size:0x778 +fn_8026E874 = .text:0x8026E874; // type:function size:0xA0 +fn_8026E914 = .text:0x8026E914; // type:function size:0x58 +fn_8026E96C = .text:0x8026E96C; // type:function size:0x2E4 +fn_8026EC50 = .text:0x8026EC50; // type:function size:0x40 +fn_8026EC90 = .text:0x8026EC90; // type:function size:0x40 +fn_8026ECD0 = .text:0x8026ECD0; // type:function size:0x58 +Handle__21SelectDifficultyPanelFP9DataArrayb = .text:0x8026ED28; // type:function size:0x100 +fn_8026EE28 = .text:0x8026EE28; // type:function size:0x8C +fn_8026EEB4 = .text:0x8026EEB4; // type:function size:0x134 +fn_8026EFE8 = .text:0x8026EFE8; // type:function size:0x4 +fn_8026EFEC = .text:0x8026EFEC; // type:function size:0x14 +fn_8026F000 = .text:0x8026F000; // type:function size:0x14 +fn_8026F014 = .text:0x8026F014; // type:function size:0x14 +fn_8026F028 = .text:0x8026F028; // type:function size:0x14 +fn_8026F03C = .text:0x8026F03C; // type:function size:0x14 +fn_8026F050 = .text:0x8026F050; // type:function size:0x14 +fn_8026F064 = .text:0x8026F064; // type:function size:0x14 +fn_8026F078 = .text:0x8026F078; // type:function size:0x8 +fn_8026F080 = .text:0x8026F080; // type:function size:0x8 +fn_8026F088 = .text:0x8026F088; // type:function size:0x8 +fn_8026F090 = .text:0x8026F090; // type:function size:0x80 +fn_8026F110 = .text:0x8026F110; // type:function size:0x3E8 +fn_8026F4F8 = .text:0x8026F4F8; // type:function size:0x8 +fn_8026F500 = .text:0x8026F500; // type:function size:0x2B8 +fn_8026F7B8 = .text:0x8026F7B8; // type:function size:0x44 +fn_8026F7FC = .text:0x8026F7FC; // type:function size:0xF4 +fn_8026F8F0 = .text:0x8026F8F0; // type:function size:0x8C +fn_8026F97C = .text:0x8026F97C; // type:function size:0x8C +fn_8026FA08 = .text:0x8026FA08; // type:function size:0x8 +fn_8026FA10 = .text:0x8026FA10; // type:function size:0x84 +fn_8026FA94 = .text:0x8026FA94; // type:function size:0x14 +fn_8026FAA8 = .text:0x8026FAA8; // type:function size:0x78 +fn_8026FB20 = .text:0x8026FB20; // type:function size:0x8 +fn_8026FB28 = .text:0x8026FB28; // type:function size:0x8 +fn_8026FB30 = .text:0x8026FB30; // type:function size:0x8 +fn_8026FB38 = .text:0x8026FB38; // type:function size:0x70 +fn_8026FBA8 = .text:0x8026FBA8; // type:function size:0x28 +fn_8026FBD0 = .text:0x8026FBD0; // type:function size:0x14 +fn_8026FBE4 = .text:0x8026FBE4; // type:function size:0xE4 +fn_8026FCC8 = .text:0x8026FCC8; // type:function size:0xB4 +fn_8026FD7C = .text:0x8026FD7C; // type:function size:0x8 +fn_8026FD84 = .text:0x8026FD84; // type:function size:0xD4 +fn_8026FE58 = .text:0x8026FE58; // type:function size:0x50 +fn_8026FEA8 = .text:0x8026FEA8; // type:function size:0x10 +fn_8026FEB8 = .text:0x8026FEB8; // type:function size:0x8 +fn_8026FEC0 = .text:0x8026FEC0; // type:function size:0x60 +fn_8026FF20 = .text:0x8026FF20; // type:function size:0x98 +fn_8026FFB8 = .text:0x8026FFB8; // type:function size:0x68 +fn_80270020 = .text:0x80270020; // type:function size:0x8 +fn_80270028 = .text:0x80270028; // type:function size:0x8 +fn_80270030 = .text:0x80270030; // type:function size:0x8 +fn_80270038 = .text:0x80270038; // type:function size:0xC8 +fn_80270100 = .text:0x80270100; // type:function size:0x78 +fn_80270178 = .text:0x80270178; // type:function size:0x64 +fn_802701DC = .text:0x802701DC; // type:function size:0x1D8 +fn_802703B4 = .text:0x802703B4; // type:function size:0x98 +fn_8027044C = .text:0x8027044C; // type:function size:0x228 +fn_80270674 = .text:0x80270674; // type:function size:0x3C +fn_802706B0 = .text:0x802706B0; // type:function size:0x8 +fn_802706B8 = .text:0x802706B8; // type:function size:0xC8 +fn_80270780 = .text:0x80270780; // type:function size:0x194 +fn_80270914 = .text:0x80270914; // type:function size:0x24 +fn_80270938 = .text:0x80270938; // type:function size:0x4C +fn_80270984 = .text:0x80270984; // type:function size:0x10 +fn_80270994 = .text:0x80270994; // type:function size:0x8 +fn_8027099C = .text:0x8027099C; // type:function size:0x80 +fn_80270A1C = .text:0x80270A1C; // type:function size:0x64 +fn_80270A80 = .text:0x80270A80; // type:function size:0x120 +fn_80270BA0 = .text:0x80270BA0; // type:function size:0x58 +fn_80270BF8 = .text:0x80270BF8; // type:function size:0xF0 +fn_80270CE8 = .text:0x80270CE8; // type:function size:0x70 +fn_80270D58 = .text:0x80270D58; // type:function size:0xC8 +fn_80270E20 = .text:0x80270E20; // type:function size:0x110 +fn_80270F30 = .text:0x80270F30; // type:function size:0x4 +fn_80270F34 = .text:0x80270F34; // type:function size:0x90 +__ct__20SessionMgrUpdatedMsgFv = .text:0x80270FC4; // type:function size:0x4C +Handle__10SessionMgrFP9DataArrayb = .text:0x80271010; // type:function size:0xA00 +__ct__16AddUserResultMsgFP9DataArray = .text:0x80271A10; // type:function size:0x3C +fn_80271A4C = .text:0x80271A4C; // type:function size:0x14 +fn_80271A60 = .text:0x80271A60; // type:function size:0x14 +fn_80271A74 = .text:0x80271A74; // type:function size:0x8 +fn_80271A7C = .text:0x80271A7C; // type:function size:0x8 +fn_80271A84 = .text:0x80271A84; // type:function size:0x8 +fn_80271A8C = .text:0x80271A8C; // type:function size:0x8 +fn_80271A94 = .text:0x80271A94; // type:function size:0x8 +fn_80271A9C = .text:0x80271A9C; // type:function size:0x30 +fn_80271ACC = .text:0x80271ACC; // type:function size:0x3C +fn_80271B08 = .text:0x80271B08; // type:function size:0x4 +fn_80271B0C = .text:0x80271B0C; // type:function size:0x50 +fn_80271B5C = .text:0x80271B5C; // type:function size:0x9C +fn_80271BF8 = .text:0x80271BF8; // type:function size:0x7C +fn_80271C74 = .text:0x80271C74; // type:function size:0xB4 +fn_80271D28 = .text:0x80271D28; // type:function size:0x54 +fn_80271D7C = .text:0x80271D7C; // type:function size:0x6C +fn_80271DE8 = .text:0x80271DE8; // type:function size:0x6C +fn_80271E54 = .text:0x80271E54; // type:function size:0x70 +fn_80271EC4 = .text:0x80271EC4; // type:function size:0x10C +fn_80271FD0 = .text:0x80271FD0; // type:function size:0xD0 +fn_802720A0 = .text:0x802720A0; // type:function size:0xA4 +fn_80272144 = .text:0x80272144; // type:function size:0x8 +Handle__20SessionUsersProviderFP9DataArrayb = .text:0x8027214C; // type:function size:0x140 +fn_8027228C = .text:0x8027228C; // type:function size:0x4 +fn_80272290 = .text:0x80272290; // type:function size:0x58 +fn_802722E8 = .text:0x802722E8; // type:function size:0xC +fn_802722F4 = .text:0x802722F4; // type:function size:0x4 +fn_802722F8 = .text:0x802722F8; // type:function size:0x4 +fn_802722FC = .text:0x802722FC; // type:function size:0x80 +fn_8027237C = .text:0x8027237C; // type:function size:0x8 +fn_80272384 = .text:0x80272384; // type:function size:0x8 +fn_8027238C = .text:0x8027238C; // type:function size:0xC8 +fn_80272454 = .text:0x80272454; // type:function size:0x58 +fn_802724AC = .text:0x802724AC; // type:function size:0x80 +fn_8027252C = .text:0x8027252C; // type:function size:0x80 +fn_802725AC = .text:0x802725AC; // type:function size:0x58 +fn_80272604 = .text:0x80272604; // type:function size:0x54 +fn_80272658 = .text:0x80272658; // type:function size:0x5C +fn_802726B4 = .text:0x802726B4; // type:function size:0x6C +fn_80272720 = .text:0x80272720; // type:function size:0x28 +fn_80272748 = .text:0x80272748; // type:function size:0x8 +fn_80272750 = .text:0x80272750; // type:function size:0x58 +fn_802727A8 = .text:0x802727A8; // type:function size:0x8 +fn_802727B0 = .text:0x802727B0; // type:function size:0x3C +fn_802727EC = .text:0x802727EC; // type:function size:0x30 +fn_8027281C = .text:0x8027281C; // type:function size:0x30 +fn_8027284C = .text:0x8027284C; // type:function size:0x40 +fn_8027288C = .text:0x8027288C; // type:function size:0xC4 +fn_80272950 = .text:0x80272950; // type:function size:0x88 +fn_802729D8 = .text:0x802729D8; // type:function size:0x74 +fn_80272A4C = .text:0x80272A4C; // type:function size:0x58 +fn_80272AA4 = .text:0x80272AA4; // type:function size:0x54 +fn_80272AF8 = .text:0x80272AF8; // type:function size:0x4 +fn_80272AFC = .text:0x80272AFC; // type:function size:0x3C +fn_80272B38 = .text:0x80272B38; // type:function size:0x40 +fn_80272B78 = .text:0x80272B78; // type:function size:0x8C +fn_80272C04 = .text:0x80272C04; // type:function size:0x8 +fn_80272C0C = .text:0x80272C0C; // type:function size:0x2C +fn_80272C38 = .text:0x80272C38; // type:function size:0x58 +fn_80272C90 = .text:0x80272C90; // type:function size:0x28 +fn_80272CB8 = .text:0x80272CB8; // type:function size:0x68 +fn_80272D20 = .text:0x80272D20; // type:function size:0x44 +fn_80272D64 = .text:0x80272D64; // type:function size:0xF0 +fn_80272E54 = .text:0x80272E54; // type:function size:0x6C +fn_80272EC0 = .text:0x80272EC0; // type:function size:0x4 +fn_80272EC4 = .text:0x80272EC4; // type:function size:0x88 +fn_80272F4C = .text:0x80272F4C; // type:function size:0x2C +fn_80272F78 = .text:0x80272F78; // type:function size:0x10 +fn_80272F88 = .text:0x80272F88; // type:function size:0x44 +fn_80272FCC = .text:0x80272FCC; // type:function size:0x44 +fn_80273010 = .text:0x80273010; // type:function size:0x348 +fn_80273358 = .text:0x80273358; // type:function size:0x10 +fn_80273368 = .text:0x80273368; // type:function size:0x5C +fn_802733C4 = .text:0x802733C4; // type:function size:0xA8 +fn_8027346C = .text:0x8027346C; // type:function size:0xD4 +fn_80273540 = .text:0x80273540; // type:function size:0x260 +fn_802737A0 = .text:0x802737A0; // type:function size:0x138 +fn_802738D8 = .text:0x802738D8; // type:function size:0x20 +fn_802738F8 = .text:0x802738F8; // type:function size:0x78 +fn_80273970 = .text:0x80273970; // type:function size:0x58 +fn_802739C8 = .text:0x802739C8; // type:function size:0x3C +fn_80273A04 = .text:0x80273A04; // type:function size:0x3C +Handle__17SetlistMergePanelFP9DataArrayb = .text:0x80273A40; // type:function size:0x468 +fn_80273EA8 = .text:0x80273EA8; // type:function size:0x114 +fn_80273FBC = .text:0x80273FBC; // type:function size:0x5C +fn_80274018 = .text:0x80274018; // type:function size:0x5C +fn_80274074 = .text:0x80274074; // type:function size:0x54 +fn_802740C8 = .text:0x802740C8; // type:function size:0x5C +fn_80274124 = .text:0x80274124; // type:function size:0x5C +fn_80274180 = .text:0x80274180; // type:function size:0x134 +fn_802742B4 = .text:0x802742B4; // type:function size:0x4 +fn_802742B8 = .text:0x802742B8; // type:function size:0x14 +fn_802742CC = .text:0x802742CC; // type:function size:0x14 +fn_802742E0 = .text:0x802742E0; // type:function size:0x14 +fn_802742F4 = .text:0x802742F4; // type:function size:0x14 +fn_80274308 = .text:0x80274308; // type:function size:0x15C +__ct__11SongSortCmpFv = .text:0x80274464; // type:function size:0x10 +fn_80274474 = .text:0x80274474; // type:function size:0x1A8 +fn_8027461C = .text:0x8027461C; // type:function size:0x158 +fn_80274774 = .text:0x80274774; // type:function size:0x4C +fn_802747C0 = .text:0x802747C0; // type:function size:0x58 +__ct__12LeafSortNodeFP11SongSortCmp = .text:0x80274818; // type:function size:0x3C +__ct__8SortNodeFP11SongSortCmp = .text:0x80274854; // type:function size:0x64 +__ct__4NodeFP11SongSortCmp = .text:0x802748B8; // type:function size:0x54 +fn_8027490C = .text:0x8027490C; // type:function size:0xC0 +fn_802749CC = .text:0x802749CC; // type:function size:0x98 +fn_80274A64 = .text:0x80274A64; // type:function size:0xC0 +fn_80274B24 = .text:0x80274B24; // type:function size:0x98 +fn_80274BBC = .text:0x80274BBC; // type:function size:0xB8 +fn_80274C74 = .text:0x80274C74; // type:function size:0x8C +fn_80274D00 = .text:0x80274D00; // type:function size:0x70 +fn_80274D70 = .text:0x80274D70; // type:function size:0x68 +fn_80274DD8 = .text:0x80274DD8; // type:function size:0x58 +fn_80274E30 = .text:0x80274E30; // type:function size:0x58 +fn_80274E88 = .text:0x80274E88; // type:function size:0x8C +fn_80274F14 = .text:0x80274F14; // type:function size:0x8 +fn_80274F1C = .text:0x80274F1C; // type:function size:0x34 +fn_80274F50 = .text:0x80274F50; // type:function size:0x34 +fn_80274F84 = .text:0x80274F84; // type:function size:0x4 +fn_80274F88 = .text:0x80274F88; // type:function size:0x60 +fn_80274FE8 = .text:0x80274FE8; // type:function size:0x5C +fn_80275044 = .text:0x80275044; // type:function size:0x5C +fn_802750A0 = .text:0x802750A0; // type:function size:0xC +fn_802750AC = .text:0x802750AC; // type:function size:0x4 +fn_802750B0 = .text:0x802750B0; // type:function size:0x3C +fn_802750EC = .text:0x802750EC; // type:function size:0x180 +Handle__19SetlistToStorePanelFP9DataArrayb = .text:0x8027526C; // type:function size:0x128 +fn_80275394 = .text:0x80275394; // type:function size:0xA4 +fn_80275438 = .text:0x80275438; // type:function size:0x134 +fn_8027556C = .text:0x8027556C; // type:function size:0x4 +fn_80275570 = .text:0x80275570; // type:function size:0x14 +fn_80275584 = .text:0x80275584; // type:function size:0x14 +fn_80275598 = .text:0x80275598; // type:function size:0x14 +fn_802755AC = .text:0x802755AC; // type:function size:0x14 +fn_802755C0 = .text:0x802755C0; // type:function size:0x14 +fn_802755D4 = .text:0x802755D4; // type:function size:0x14 +fn_802755E8 = .text:0x802755E8; // type:function size:0x14 +fn_802755FC = .text:0x802755FC; // type:function size:0x8C +fn_80275688 = .text:0x80275688; // type:function size:0x234 +fn_802758BC = .text:0x802758BC; // type:function size:0x204 +fn_80275AC0 = .text:0x80275AC0; // type:function size:0x1DC +fn_80275C9C = .text:0x80275C9C; // type:function size:0xE4 +Handle__21ShellInputInterceptorFP9DataArrayb = .text:0x80275D80; // type:function size:0x170 +fn_80275EF0 = .text:0x80275EF0; // type:function size:0x58 +fn_80275F48 = .text:0x80275F48; // type:function size:0x58 +fn_80275FA0 = .text:0x80275FA0; // type:function size:0x4 +fn_80275FA4 = .text:0x80275FA4; // type:function size:0x98 +fn_8027603C = .text:0x8027603C; // type:function size:0x19C +fn_802761D8 = .text:0x802761D8; // type:function size:0x64 +fn_8027623C = .text:0x8027623C; // type:function size:0x16C +fn_802763A8 = .text:0x802763A8; // type:function size:0x2F0 +fn_80276698 = .text:0x80276698; // type:function size:0xE0 +fn_80276778 = .text:0x80276778; // type:function size:0x28 +fn_802767A0 = .text:0x802767A0; // type:function size:0x1BC +__ct__12UIChangedMsgFP9DataArray = .text:0x8027695C; // type:function size:0x3C +Type__12UIChangedMsgFv = .text:0x80276998; // type:function size:0x4C +fn_802769E4 = .text:0x802769E4; // type:function size:0x4 +fn_802769E8 = .text:0x802769E8; // type:function size:0x128 +fn_80276B10 = .text:0x80276B10; // type:function size:0x1E4 +fn_80276CF4 = .text:0x80276CF4; // type:function size:0x4 +fn_80276CF8 = .text:0x80276CF8; // type:function size:0x90 +fn_80276D88 = .text:0x80276D88; // type:function size:0x40 +fn_80276DC8 = .text:0x80276DC8; // type:function size:0x8 +fn_80276DD0 = .text:0x80276DD0; // type:function size:0x24 +fn_80276DF4 = .text:0x80276DF4; // type:function size:0x10 +fn_80276E04 = .text:0x80276E04; // type:function size:0x1EC +fn_80276FF0 = .text:0x80276FF0; // type:function size:0x88 +fn_80277078 = .text:0x80277078; // type:function size:0x50 +fn_802770C8 = .text:0x802770C8; // type:function size:0x6C +fn_80277134 = .text:0x80277134; // type:function size:0x5C +Handle__10SongRecordFP9DataArrayb = .text:0x80277190; // type:function size:0x2A0 +fn_80277430 = .text:0x80277430; // type:function size:0x8 +fn_80277438 = .text:0x80277438; // type:function size:0x8 +fn_80277440 = .text:0x80277440; // type:function size:0x18 +fn_80277458 = .text:0x80277458; // type:function size:0xF8 +fn_80277550 = .text:0x80277550; // type:function size:0x38 +fn_80277588 = .text:0x80277588; // type:function size:0x44 +fn_802775CC = .text:0x802775CC; // type:function size:0x78 +fn_80277644 = .text:0x80277644; // type:function size:0x54 +fn_80277698 = .text:0x80277698; // type:function size:0x34 +fn_802776CC = .text:0x802776CC; // type:function size:0x14 +Handle__13SetlistRecordFP9DataArrayb = .text:0x802776E0; // type:function size:0x3D0 +fn_80277AB0 = .text:0x80277AB0; // type:function size:0x68 +fn_80277B18 = .text:0x80277B18; // type:function size:0xB4 +fn_80277BCC = .text:0x80277BCC; // type:function size:0x1C4 +fn_80277D90 = .text:0x80277D90; // type:function size:0x44 +fn_80277DD4 = .text:0x80277DD4; // type:function size:0x50 +fn_80277E24 = .text:0x80277E24; // type:function size:0x98 +fn_80277EBC = .text:0x80277EBC; // type:function size:0xA0 +fn_80277F5C = .text:0x80277F5C; // type:function size:0x50 +fn_80277FAC = .text:0x80277FAC; // type:function size:0x6C +fn_80278018 = .text:0x80278018; // type:function size:0x14C +fn_80278164 = .text:0x80278164; // type:function size:0x184 +fn_802782E8 = .text:0x802782E8; // type:function size:0x18C +fn_80278474 = .text:0x80278474; // type:function size:0x50 +fn_802784C4 = .text:0x802784C4; // type:function size:0x100 +fn_802785C4 = .text:0x802785C4; // type:function size:0xFC +Handle__15SongSelectPanelFP9DataArrayb = .text:0x802786C0; // type:function size:0x3C0 +fn_80278A80 = .text:0x80278A80; // type:function size:0x8C +fn_80278B0C = .text:0x80278B0C; // type:function size:0x134 +fn_80278C40 = .text:0x80278C40; // type:function size:0x4 +fn_80278C44 = .text:0x80278C44; // type:function size:0x14 +fn_80278C58 = .text:0x80278C58; // type:function size:0x14 +fn_80278C6C = .text:0x80278C6C; // type:function size:0x14 +fn_80278C80 = .text:0x80278C80; // type:function size:0x14 +fn_80278C94 = .text:0x80278C94; // type:function size:0x8 +fn_80278C9C = .text:0x80278C9C; // type:function size:0x8 +fn_80278CA4 = .text:0x80278CA4; // type:function size:0x8 +fn_80278CAC = .text:0x80278CAC; // type:function size:0x11C +fn_80278DC8 = .text:0x80278DC8; // type:function size:0xF4 +fn_80278EBC = .text:0x80278EBC; // type:function size:0x8 +__ct__8NodeSortFv = .text:0x80278EC4; // type:function size:0xA4 +fn_80278F68 = .text:0x80278F68; // type:function size:0x48 +fn_80278FB0 = .text:0x80278FB0; // type:function size:0x70 +fn_80279020 = .text:0x80279020; // type:function size:0xA0 +fn_802790C0 = .text:0x802790C0; // type:function size:0x58 +fn_80279118 = .text:0x80279118; // type:function size:0x58 +fn_80279170 = .text:0x80279170; // type:function size:0xE0 +fn_80279250 = .text:0x80279250; // type:function size:0x34 +fn_80279284 = .text:0x80279284; // type:function size:0x90 +fn_80279314 = .text:0x80279314; // type:function size:0x48 +fn_8027935C = .text:0x8027935C; // type:function size:0x8 +fn_80279364 = .text:0x80279364; // type:function size:0xA8 +fn_8027940C = .text:0x8027940C; // type:function size:0xD8 +fn_802794E4 = .text:0x802794E4; // type:function size:0x3C +fn_80279520 = .text:0x80279520; // type:function size:0x40 +fn_80279560 = .text:0x80279560; // type:function size:0x4C +fn_802795AC = .text:0x802795AC; // type:function size:0x2C +fn_802795D8 = .text:0x802795D8; // type:function size:0x30 +fn_80279608 = .text:0x80279608; // type:function size:0x50 +fn_80279658 = .text:0x80279658; // type:function size:0x4 +fn_8027965C = .text:0x8027965C; // type:function size:0x2E8 +fn_80279944 = .text:0x80279944; // type:function size:0x34 +fn_80279978 = .text:0x80279978; // type:function size:0x28 +fn_802799A0 = .text:0x802799A0; // type:function size:0x30 +fn_802799D0 = .text:0x802799D0; // type:function size:0x14C +fn_80279B1C = .text:0x80279B1C; // type:function size:0x30 +fn_80279B4C = .text:0x80279B4C; // type:function size:0xAC +fn_80279BF8 = .text:0x80279BF8; // type:function size:0x30 +fn_80279C28 = .text:0x80279C28; // type:function size:0xAC +fn_80279CD4 = .text:0x80279CD4; // type:function size:0x30 +fn_80279D04 = .text:0x80279D04; // type:function size:0x24 +fn_80279D28 = .text:0x80279D28; // type:function size:0x30C +fn_8027A034 = .text:0x8027A034; // type:function size:0x4C +fn_8027A080 = .text:0x8027A080; // type:function size:0x68 +fn_8027A0E8 = .text:0x8027A0E8; // type:function size:0x60 +fn_8027A148 = .text:0x8027A148; // type:function size:0x60 +fn_8027A1A8 = .text:0x8027A1A8; // type:function size:0x60 +fn_8027A208 = .text:0x8027A208; // type:function size:0x354 +fn_8027A55C = .text:0x8027A55C; // type:function size:0x30 +fn_8027A58C = .text:0x8027A58C; // type:function size:0x14C +fn_8027A6D8 = .text:0x8027A6D8; // type:function size:0x30 +fn_8027A708 = .text:0x8027A708; // type:function size:0x30 +fn_8027A738 = .text:0x8027A738; // type:function size:0x8 +fn_8027A740 = .text:0x8027A740; // type:function size:0x34 +fn_8027A774 = .text:0x8027A774; // type:function size:0x30 +fn_8027A7A4 = .text:0x8027A7A4; // type:function size:0x14C +fn_8027A8F0 = .text:0x8027A8F0; // type:function size:0x30 +fn_8027A920 = .text:0x8027A920; // type:function size:0x30 +fn_8027A950 = .text:0x8027A950; // type:function size:0x4 +fn_8027A954 = .text:0x8027A954; // type:function size:0x8 +fn_8027A95C = .text:0x8027A95C; // type:function size:0x1C4 +fn_8027AB20 = .text:0x8027AB20; // type:function size:0xB0 +fn_8027ABD0 = .text:0x8027ABD0; // type:function size:0xB0 +fn_8027AC80 = .text:0x8027AC80; // type:function size:0x60 +fn_8027ACE0 = .text:0x8027ACE0; // type:function size:0x58 +fn_8027AD38 = .text:0x8027AD38; // type:function size:0x8 +fn_8027AD40 = .text:0x8027AD40; // type:function size:0x8 +fn_8027AD48 = .text:0x8027AD48; // type:function size:0x8 +fn_8027AD50 = .text:0x8027AD50; // type:function size:0x1C0 +fn_8027AF10 = .text:0x8027AF10; // type:function size:0x4C +fn_8027AF5C = .text:0x8027AF5C; // type:function size:0x128 +fn_8027B084 = .text:0x8027B084; // type:function size:0x7C +fn_8027B100 = .text:0x8027B100; // type:function size:0x11C +fn_8027B21C = .text:0x8027B21C; // type:function size:0x4C +fn_8027B268 = .text:0x8027B268; // type:function size:0x58 +__ct__12SongSortNodeFP11SongSortCmp = .text:0x8027B2C0; // type:function size:0x3C +fn_8027B2FC = .text:0x8027B2FC; // type:function size:0xF8 +fn_8027B3F4 = .text:0x8027B3F4; // type:function size:0x8 +fn_8027B3FC = .text:0x8027B3FC; // type:function size:0x11C +fn_8027B518 = .text:0x8027B518; // type:function size:0x104 +fn_8027B61C = .text:0x8027B61C; // type:function size:0x210 +fn_8027B82C = .text:0x8027B82C; // type:function size:0x5C +fn_8027B888 = .text:0x8027B888; // type:function size:0x58 +fn_8027B8E0 = .text:0x8027B8E0; // type:function size:0x58 +fn_8027B938 = .text:0x8027B938; // type:function size:0xC +fn_8027B944 = .text:0x8027B944; // type:function size:0x8 +Compare__13DifficultyCmpCFPC11SongSortCmp12SongNodeType = .text:0x8027B94C; // type:function size:0xD0 +fn_8027BA1C = .text:0x8027BA1C; // type:function size:0x44 +fn_8027BA60 = .text:0x8027BA60; // type:function size:0x108 +__ct__13DifficultyCmpFifPCc = .text:0x8027BB68; // type:function size:0x64 +fn_8027BBCC = .text:0x8027BBCC; // type:function size:0x104 +fn_8027BCD0 = .text:0x8027BCD0; // type:function size:0xF0 +fn_8027BDC0 = .text:0x8027BDC0; // type:function size:0xF0 +fn_8027BEB0 = .text:0x8027BEB0; // type:function size:0x8 +fn_8027BEB8 = .text:0x8027BEB8; // type:function size:0x54 +fn_8027BF0C = .text:0x8027BF0C; // type:function size:0x6C +fn_8027BF78 = .text:0x8027BF78; // type:function size:0xB4 +fn_8027C02C = .text:0x8027C02C; // type:function size:0xA4 +fn_8027C0D0 = .text:0x8027C0D0; // type:function size:0xD0 +fn_8027C1A0 = .text:0x8027C1A0; // type:function size:0xD0 +fn_8027C270 = .text:0x8027C270; // type:function size:0x8 +fn_8027C278 = .text:0x8027C278; // type:function size:0x5C +fn_8027C2D4 = .text:0x8027C2D4; // type:function size:0x12C +fn_8027C400 = .text:0x8027C400; // type:function size:0x38 +fn_8027C438 = .text:0x8027C438; // type:function size:0x4 +fn_8027C43C = .text:0x8027C43C; // type:function size:0x50 +fn_8027C48C = .text:0x8027C48C; // type:function size:0x2C +fn_8027C4B8 = .text:0x8027C4B8; // type:function size:0x4 +fn_8027C4BC = .text:0x8027C4BC; // type:function size:0x3C +fn_8027C4F8 = .text:0x8027C4F8; // type:function size:0x1D0 +fn_8027C6C8 = .text:0x8027C6C8; // type:function size:0x2C +fn_8027C6F4 = .text:0x8027C6F4; // type:function size:0x30 +fn_8027C724 = .text:0x8027C724; // type:function size:0xAC +fn_8027C7D0 = .text:0x8027C7D0; // type:function size:0xB4 +fn_8027C884 = .text:0x8027C884; // type:function size:0x198 +fn_8027CA1C = .text:0x8027CA1C; // type:function size:0x198 +fn_8027CBB4 = .text:0x8027CBB4; // type:function size:0xC0 +fn_8027CC74 = .text:0x8027CC74; // type:function size:0x1C +fn_8027CC90 = .text:0x8027CC90; // type:function size:0x18C +fn_8027CE1C = .text:0x8027CE1C; // type:function size:0x30 +fn_8027CE4C = .text:0x8027CE4C; // type:function size:0x104 +fn_8027CF50 = .text:0x8027CF50; // type:function size:0x58 +fn_8027CFA8 = .text:0x8027CFA8; // type:function size:0x40 +fn_8027CFE8 = .text:0x8027CFE8; // type:function size:0x10 +fn_8027CFF8 = .text:0x8027CFF8; // type:function size:0x8 +fn_8027D000 = .text:0x8027D000; // type:function size:0x4 +fn_8027D004 = .text:0x8027D004; // type:function size:0x40 +fn_8027D044 = .text:0x8027D044; // type:function size:0x80 +fn_8027D0C4 = .text:0x8027D0C4; // type:function size:0x14C +fn_8027D210 = .text:0x8027D210; // type:function size:0x74 +fn_8027D284 = .text:0x8027D284; // type:function size:0x58 +fn_8027D2DC = .text:0x8027D2DC; // type:function size:0x60 +fn_8027D33C = .text:0x8027D33C; // type:function size:0x58 +fn_8027D394 = .text:0x8027D394; // type:function size:0x58 +fn_8027D3EC = .text:0x8027D3EC; // type:function size:0x3B8 +fn_8027D7A4 = .text:0x8027D7A4; // type:function size:0x6C +fn_8027D810 = .text:0x8027D810; // type:function size:0x2C +fn_8027D83C = .text:0x8027D83C; // type:function size:0x15C +fn_8027D998 = .text:0x8027D998; // type:function size:0x44 +fn_8027D9DC = .text:0x8027D9DC; // type:function size:0x8 +fn_8027D9E4 = .text:0x8027D9E4; // type:function size:0x108 +fn_8027DAEC = .text:0x8027DAEC; // type:function size:0x5C +fn_8027DB48 = .text:0x8027DB48; // type:function size:0x10 +fn_8027DB58 = .text:0x8027DB58; // type:function size:0x40 +fn_8027DB98 = .text:0x8027DB98; // type:function size:0x8 +fn_8027DBA0 = .text:0x8027DBA0; // type:function size:0x8 +fn_8027DBA8 = .text:0x8027DBA8; // type:function size:0xB0 +fn_8027DC58 = .text:0x8027DC58; // type:function size:0xE4 +fn_8027DD3C = .text:0x8027DD3C; // type:function size:0xAC +fn_8027DDE8 = .text:0x8027DDE8; // type:function size:0x80 +fn_8027DE68 = .text:0x8027DE68; // type:function size:0xE0 +fn_8027DF48 = .text:0x8027DF48; // type:function size:0xC0 +fn_8027E008 = .text:0x8027E008; // type:function size:0x168 +fn_8027E170 = .text:0x8027E170; // type:function size:0x168 +fn_8027E2D8 = .text:0x8027E2D8; // type:function size:0x8 +fn_8027E2E0 = .text:0x8027E2E0; // type:function size:0x7C +fn_8027E35C = .text:0x8027E35C; // type:function size:0xC8 +fn_8027E424 = .text:0x8027E424; // type:function size:0xB4 +fn_8027E4D8 = .text:0x8027E4D8; // type:function size:0xA4 +fn_8027E57C = .text:0x8027E57C; // type:function size:0xE0 +fn_8027E65C = .text:0x8027E65C; // type:function size:0xE0 +fn_8027E73C = .text:0x8027E73C; // type:function size:0xB0 +fn_8027E7EC = .text:0x8027E7EC; // type:function size:0x48 +fn_8027E834 = .text:0x8027E834; // type:function size:0x8 +Compare__7SongCmpCFPC11SongSortCmp12SongNodeType = .text:0x8027E83C; // type:function size:0x98 +fn_8027E8D4 = .text:0x8027E8D4; // type:function size:0x118 +__ct__7SongCmpFPCc6Symbol = .text:0x8027E9EC; // type:function size:0x5C +fn_8027EA48 = .text:0x8027EA48; // type:function size:0xC8 +fn_8027EB10 = .text:0x8027EB10; // type:function size:0xC4 +fn_8027EBD4 = .text:0x8027EBD4; // type:function size:0xDC +fn_8027ECB0 = .text:0x8027ECB0; // type:function size:0xDC +fn_8027ED8C = .text:0x8027ED8C; // type:function size:0x8 +fn_8027ED94 = .text:0x8027ED94; // type:function size:0x8C +fn_8027EE20 = .text:0x8027EE20; // type:function size:0xDC +fn_8027EEFC = .text:0x8027EEFC; // type:function size:0x44 +fn_8027EF40 = .text:0x8027EF40; // type:function size:0x130 +fn_8027F070 = .text:0x8027F070; // type:function size:0x118 +fn_8027F188 = .text:0x8027F188; // type:function size:0xE8 +fn_8027F270 = .text:0x8027F270; // type:function size:0xE8 +fn_8027F358 = .text:0x8027F358; // type:function size:0xB0 +fn_8027F408 = .text:0x8027F408; // type:function size:0x48 +fn_8027F450 = .text:0x8027F450; // type:function size:0x8 +fn_8027F458 = .text:0x8027F458; // type:function size:0x38 +__ct__11SongSortMgrFv = .text:0x8027F490; // type:function size:0x150 +fn_8027F5E0 = .text:0x8027F5E0; // type:function size:0x58 +fn_8027F638 = .text:0x8027F638; // type:function size:0x60 +fn_8027F698 = .text:0x8027F698; // type:function size:0x58 +fn_8027F6F0 = .text:0x8027F6F0; // type:function size:0x58 +fn_8027F748 = .text:0x8027F748; // type:function size:0x50 +fn_8027F798 = .text:0x8027F798; // type:function size:0x58 +fn_8027F7F0 = .text:0x8027F7F0; // type:function size:0x60 +fn_8027F850 = .text:0x8027F850; // type:function size:0x58 +fn_8027F8A8 = .text:0x8027F8A8; // type:function size:0x58 +fn_8027F900 = .text:0x8027F900; // type:function size:0x50 +__ct__21SetlistSortByLocationFv = .text:0x8027F950; // type:function size:0x54 +__ct__11SetlistSortFv = .text:0x8027F9A4; // type:function size:0x44 +__ct__16SongSortByReviewFv = .text:0x8027F9E8; // type:function size:0x54 +__ct__8SongSortFv = .text:0x8027FA3C; // type:function size:0x44 +__ct__15SongSortByPlaysFv = .text:0x8027FA80; // type:function size:0x54 +__ct__16SongSortByRecentFv = .text:0x8027FAD4; // type:function size:0x54 +__ct__14SongSortByRankFv = .text:0x8027FB28; // type:function size:0x64 +fn_8027FB8C = .text:0x8027FB8C; // type:function size:0x44 +fn_8027FBD0 = .text:0x8027FBD0; // type:function size:0x3C +fn_8027FC0C = .text:0x8027FC0C; // type:function size:0x70 +__ct__15SongSortByStarsFv = .text:0x8027FC7C; // type:function size:0x5C +__ct__16SongSortByArtistFv = .text:0x8027FCD8; // type:function size:0x54 +__ct__14SongSortBySongFv = .text:0x8027FD2C; // type:function size:0x54 +__ct__14SongSortByDiffFv = .text:0x8027FD80; // type:function size:0x5C +fn_8027FDDC = .text:0x8027FDDC; // type:function size:0x44 +fn_8027FE20 = .text:0x8027FE20; // type:function size:0x3C +fn_8027FE5C = .text:0x8027FE5C; // type:function size:0x70 +fn_8027FECC = .text:0x8027FECC; // type:function size:0x44 +fn_8027FF10 = .text:0x8027FF10; // type:function size:0x3C +fn_8027FF4C = .text:0x8027FF4C; // type:function size:0x70 +__dt__11SongSortMgrFv = .text:0x8027FFBC; // type:function size:0xD4 +fn_80280090 = .text:0x80280090; // type:function size:0x238 +fn_802802C8 = .text:0x802802C8; // type:function size:0x220 +fn_802804E8 = .text:0x802804E8; // type:function size:0x8 +fn_802804F0 = .text:0x802804F0; // type:function size:0x5C +fn_8028054C = .text:0x8028054C; // type:function size:0x4 +fn_80280550 = .text:0x80280550; // type:function size:0x48 +fn_80280598 = .text:0x80280598; // type:function size:0x150 +fn_802806E8 = .text:0x802806E8; // type:function size:0x30 +fn_80280718 = .text:0x80280718; // type:function size:0xAC +__ct__Q23Hmx6ObjectFRCQ23Hmx6Object = .text:0x802807C4; // type:function size:0x78 +fn_8028083C = .text:0x8028083C; // type:function size:0x48 +fn_80280884 = .text:0x80280884; // type:function size:0x4 +fn_80280888 = .text:0x80280888; // type:function size:0x288 +fn_80280B10 = .text:0x80280B10; // type:function size:0x5C +fn_80280B6C = .text:0x80280B6C; // type:function size:0x4 +fn_80280B70 = .text:0x80280B70; // type:function size:0x48 +fn_80280BB8 = .text:0x80280BB8; // type:function size:0x7C +fn_80280C34 = .text:0x80280C34; // type:function size:0x48 +fn_80280C7C = .text:0x80280C7C; // type:function size:0x4 +fn_80280C80 = .text:0x80280C80; // type:function size:0xAC +fn_80280D2C = .text:0x80280D2C; // type:function size:0xA0 +fn_80280DCC = .text:0x80280DCC; // type:function size:0x7C +fn_80280E48 = .text:0x80280E48; // type:function size:0x130 +fn_80280F78 = .text:0x80280F78; // type:function size:0x29C +fn_80281214 = .text:0x80281214; // type:function size:0x58 +fn_8028126C = .text:0x8028126C; // type:function size:0x8C +fn_802812F8 = .text:0x802812F8; // type:function size:0x7C +fn_80281374 = .text:0x80281374; // type:function size:0x340 +fn_802816B4 = .text:0x802816B4; // type:function size:0x454 +fn_80281B08 = .text:0x80281B08; // type:function size:0x18 +fn_80281B20 = .text:0x80281B20; // type:function size:0x10 +fn_80281B30 = .text:0x80281B30; // type:function size:0xE8 +fn_80281C18 = .text:0x80281C18; // type:function size:0x4 +fn_80281C1C = .text:0x80281C1C; // type:function size:0x40 +fn_80281C5C = .text:0x80281C5C; // type:function size:0xA0 +fn_80281CFC = .text:0x80281CFC; // type:function size:0x5B4 +fn_802822B0 = .text:0x802822B0; // type:function size:0x10 +fn_802822C0 = .text:0x802822C0; // type:function size:0x40 +fn_80282300 = .text:0x80282300; // type:function size:0xF0 +fn_802823F0 = .text:0x802823F0; // type:function size:0xC8 +fn_802824B8 = .text:0x802824B8; // type:function size:0xB4 +fn_8028256C = .text:0x8028256C; // type:function size:0x38 +fn_802825A4 = .text:0x802825A4; // type:function size:0x158 +fn_802826FC = .text:0x802826FC; // type:function size:0x44 +fn_80282740 = .text:0x80282740; // type:function size:0x6C +fn_802827AC = .text:0x802827AC; // type:function size:0x10 +fn_802827BC = .text:0x802827BC; // type:function size:0x2C +fn_802827E8 = .text:0x802827E8; // type:function size:0x8 +fn_802827F0 = .text:0x802827F0; // type:function size:0x158 +fn_80282948 = .text:0x80282948; // type:function size:0x44 +fn_8028298C = .text:0x8028298C; // type:function size:0x6C +fn_802829F8 = .text:0x802829F8; // type:function size:0x10 +fn_80282A08 = .text:0x80282A08; // type:function size:0x2C +fn_80282A34 = .text:0x80282A34; // type:function size:0x8 +fn_80282A3C = .text:0x80282A3C; // type:function size:0x4 +fn_80282A40 = .text:0x80282A40; // type:function size:0x104 +fn_80282B44 = .text:0x80282B44; // type:function size:0x5C +fn_80282BA0 = .text:0x80282BA0; // type:function size:0x10 +fn_80282BB0 = .text:0x80282BB0; // type:function size:0xC +fn_80282BBC = .text:0x80282BBC; // type:function size:0x104 +fn_80282CC0 = .text:0x80282CC0; // type:function size:0x5C +fn_80282D1C = .text:0x80282D1C; // type:function size:0x10 +fn_80282D2C = .text:0x80282D2C; // type:function size:0xC +__dt__4NodeFv = .text:0x80282D38; // type:function size:0x94 +fn_80282DCC = .text:0x80282DCC; // type:function size:0x58 +__ct__12ShortcutNodeFP11SongSortCmp6Symbolb = .text:0x80282E24; // type:function size:0x88 +__dt__12ShortcutNodeFv = .text:0x80282EAC; // type:function size:0x7C +GetToken__12ShortcutNodeCFv = .text:0x80282F28; // type:function size:0x8 +LocalizeToken__12ShortcutNodeCFv = .text:0x80282F30; // type:function size:0x8 +GetDateTime__12ShortcutNodeCFv = .text:0x80282F38; // type:function size:0x8 +DeleteAll__12ShortcutNodeFv = .text:0x80282F40; // type:function size:0xD8 +fn_80283018 = .text:0x80283018; // type:function size:0x12C +fn_80283144 = .text:0x80283144; // type:function size:0x78 +fn_802831BC = .text:0x802831BC; // type:function size:0x1A8 +fn_80283364 = .text:0x80283364; // type:function size:0x48 +fn_802833AC = .text:0x802833AC; // type:function size:0x78 +fn_80283424 = .text:0x80283424; // type:function size:0xE0 +fn_80283504 = .text:0x80283504; // type:function size:0x78 +fn_8028357C = .text:0x8028357C; // type:function size:0xE8 +fn_80283664 = .text:0x80283664; // type:function size:0x30 +fn_80283694 = .text:0x80283694; // type:function size:0x24 +fn_802836B8 = .text:0x802836B8; // type:function size:0x70 +fn_80283728 = .text:0x80283728; // type:function size:0x74 +fn_8028379C = .text:0x8028379C; // type:function size:0x54 +fn_802837F0 = .text:0x802837F0; // type:function size:0xA0 +fn_80283890 = .text:0x80283890; // type:function size:0xA0 +fn_80283930 = .text:0x80283930; // type:function size:0xA0 +fn_802839D0 = .text:0x802839D0; // type:function size:0x30 +fn_80283A00 = .text:0x80283A00; // type:function size:0x40 +fn_80283A40 = .text:0x80283A40; // type:function size:0xA0 +fn_80283AE0 = .text:0x80283AE0; // type:function size:0x7C +Handle__12ShortcutNodeFP9DataArrayb = .text:0x80283B5C; // type:function size:0x124 +__dt__8SortNodeFv = .text:0x80283C80; // type:function size:0xA0 +fn_80283D20 = .text:0x80283D20; // type:function size:0xD8 +fn_80283DF8 = .text:0x80283DF8; // type:function size:0xB8 +FinishSort__8SortNodeFP8SongSort = .text:0x80283EB0; // type:function size:0xA0 +fn_80283F50 = .text:0x80283F50; // type:function size:0x8 +fn_80283F58 = .text:0x80283F58; // type:function size:0x9C +fn_80283FF4 = .text:0x80283FF4; // type:function size:0xA8 +fn_8028409C = .text:0x8028409C; // type:function size:0xB0 +fn_8028414C = .text:0x8028414C; // type:function size:0xA8 +Handle__8SortNodeFP9DataArrayb = .text:0x802841F4; // type:function size:0x248 +fn_8028443C = .text:0x8028443C; // type:function size:0x70 +__dt__14HeaderSortNodeFv = .text:0x802844AC; // type:function size:0x70 +fn_8028451C = .text:0x8028451C; // type:function size:0x8 +fn_80284524 = .text:0x80284524; // type:function size:0x8 +fn_8028452C = .text:0x8028452C; // type:function size:0x8 +fn_80284534 = .text:0x80284534; // type:function size:0x1D8 +fn_8028470C = .text:0x8028470C; // type:function size:0x78 +fn_80284784 = .text:0x80284784; // type:function size:0xE8 +fn_8028486C = .text:0x8028486C; // type:function size:0xD4 +fn_80284940 = .text:0x80284940; // type:function size:0x78 +fn_802849B8 = .text:0x802849B8; // type:function size:0x1A8 +fn_80284B60 = .text:0x80284B60; // type:function size:0x78 +fn_80284BD8 = .text:0x80284BD8; // type:function size:0xE0 +fn_80284CB8 = .text:0x80284CB8; // type:function size:0x78 +fn_80284D30 = .text:0x80284D30; // type:function size:0xE8 +fn_80284E18 = .text:0x80284E18; // type:function size:0x30 +fn_80284E48 = .text:0x80284E48; // type:function size:0x1FC +fn_80285044 = .text:0x80285044; // type:function size:0xCC +fn_80285110 = .text:0x80285110; // type:function size:0x58 +fn_80285168 = .text:0x80285168; // type:function size:0xEC +fn_80285254 = .text:0x80285254; // type:function size:0x10 +Handle__14HeaderSortNodeFP9DataArrayb = .text:0x80285264; // type:function size:0x154 +fn_802853B8 = .text:0x802853B8; // type:function size:0x48 +fn_80285400 = .text:0x80285400; // type:function size:0xA4 +fn_802854A4 = .text:0x802854A4; // type:function size:0x3C +fn_802854E0 = .text:0x802854E0; // type:function size:0xAC +fn_8028558C = .text:0x8028558C; // type:function size:0x88 +fn_80285614 = .text:0x80285614; // type:function size:0x170 +fn_80285784 = .text:0x80285784; // type:function size:0x8 +fn_8028578C = .text:0x8028578C; // type:function size:0x10 +fn_8028579C = .text:0x8028579C; // type:function size:0x8 +fn_802857A4 = .text:0x802857A4; // type:function size:0x178 +fn_8028591C = .text:0x8028591C; // type:function size:0x14 +Handle__12SongSortNodeFP9DataArrayb = .text:0x80285930; // type:function size:0x124 +fn_80285A54 = .text:0x80285A54; // type:function size:0x8 +fn_80285A5C = .text:0x80285A5C; // type:function size:0x100 +fn_80285B5C = .text:0x80285B5C; // type:function size:0x74 +fn_80285BD0 = .text:0x80285BD0; // type:function size:0x28 +fn_80285BF8 = .text:0x80285BF8; // type:function size:0x28 +fn_80285C20 = .text:0x80285C20; // type:function size:0x30 +fn_80285C50 = .text:0x80285C50; // type:function size:0x28 +fn_80285C78 = .text:0x80285C78; // type:function size:0x28 +fn_80285CA0 = .text:0x80285CA0; // type:function size:0x8 +fn_80285CA8 = .text:0x80285CA8; // type:function size:0x40 +fn_80285CE8 = .text:0x80285CE8; // type:function size:0x34 +fn_80285D1C = .text:0x80285D1C; // type:function size:0x30 +Handle__17OwnedSongSortNodeFP9DataArrayb = .text:0x80285D4C; // type:function size:0x148 +fn_80285E94 = .text:0x80285E94; // type:function size:0x2C +fn_80285EC0 = .text:0x80285EC0; // type:function size:0x8 +fn_80285EC8 = .text:0x80285EC8; // type:function size:0x64 +fn_80285F2C = .text:0x80285F2C; // type:function size:0x10 +fn_80285F3C = .text:0x80285F3C; // type:function size:0x28 +fn_80285F64 = .text:0x80285F64; // type:function size:0x7C +fn_80285FE0 = .text:0x80285FE0; // type:function size:0x94 +fn_80286074 = .text:0x80286074; // type:function size:0x2C +fn_802860A0 = .text:0x802860A0; // type:function size:0x170 +fn_80286210 = .text:0x80286210; // type:function size:0x58 +fn_80286268 = .text:0x80286268; // type:function size:0x4 +fn_8028626C = .text:0x8028626C; // type:function size:0x74 +fn_802862E0 = .text:0x802862E0; // type:function size:0x8 +fn_802862E8 = .text:0x802862E8; // type:function size:0xC +fn_802862F4 = .text:0x802862F4; // type:function size:0x58 +fn_8028634C = .text:0x8028634C; // type:function size:0x8 +fn_80286354 = .text:0x80286354; // type:function size:0x4C +fn_802863A0 = .text:0x802863A0; // type:function size:0x3C +fn_802863DC = .text:0x802863DC; // type:function size:0x8 +fn_802863E4 = .text:0x802863E4; // type:function size:0x88 +fn_8028646C = .text:0x8028646C; // type:function size:0x88 +fn_802864F4 = .text:0x802864F4; // type:function size:0xC8 +fn_802865BC = .text:0x802865BC; // type:function size:0x44 +fn_80286600 = .text:0x80286600; // type:function size:0x120 +fn_80286720 = .text:0x80286720; // type:function size:0x13C +fn_8028685C = .text:0x8028685C; // type:function size:0x10 +fn_8028686C = .text:0x8028686C; // type:function size:0x10 +fn_8028687C = .text:0x8028687C; // type:function size:0x24 +fn_802868A0 = .text:0x802868A0; // type:function size:0x8 +fn_802868A8 = .text:0x802868A8; // type:function size:0x8 +fn_802868B0 = .text:0x802868B0; // type:function size:0x8 +fn_802868B8 = .text:0x802868B8; // type:function size:0x8 +fn_802868C0 = .text:0x802868C0; // type:function size:0x38 +fn_802868F8 = .text:0x802868F8; // type:function size:0x18 +fn_80286910 = .text:0x80286910; // type:function size:0x10 +fn_80286920 = .text:0x80286920; // type:function size:0x10 +fn_80286930 = .text:0x80286930; // type:function size:0x10 +fn_80286940 = .text:0x80286940; // type:function size:0x10 +fn_80286950 = .text:0x80286950; // type:function size:0x10 +fn_80286960 = .text:0x80286960; // type:function size:0x10 +fn_80286970 = .text:0x80286970; // type:function size:0x8 +fn_80286978 = .text:0x80286978; // type:function size:0x8 +fn_80286980 = .text:0x80286980; // type:function size:0x8 +fn_80286988 = .text:0x80286988; // type:function size:0x8 +fn_80286990 = .text:0x80286990; // type:function size:0x8 +fn_80286998 = .text:0x80286998; // type:function size:0x8 +fn_802869A0 = .text:0x802869A0; // type:function size:0x24 +fn_802869C4 = .text:0x802869C4; // type:function size:0x28 +fn_802869EC = .text:0x802869EC; // type:function size:0x24 +fn_80286A10 = .text:0x80286A10; // type:function size:0x10 +fn_80286A20 = .text:0x80286A20; // type:function size:0x18 +fn_80286A38 = .text:0x80286A38; // type:function size:0x18 +fn_80286A50 = .text:0x80286A50; // type:function size:0x18 +fn_80286A68 = .text:0x80286A68; // type:function size:0x18 +fn_80286A80 = .text:0x80286A80; // type:function size:0x18 +fn_80286A98 = .text:0x80286A98; // type:function size:0x18 +fn_80286AB0 = .text:0x80286AB0; // type:function size:0x18 +fn_80286AC8 = .text:0x80286AC8; // type:function size:0x18 +fn_80286AE0 = .text:0x80286AE0; // type:function size:0x2C +fn_80286B0C = .text:0x80286B0C; // type:function size:0x30 +fn_80286B3C = .text:0x80286B3C; // type:function size:0x30 +fn_80286B6C = .text:0x80286B6C; // type:function size:0x30 +fn_80286B9C = .text:0x80286B9C; // type:function size:0x30 +fn_80286BCC = .text:0x80286BCC; // type:function size:0x30 +fn_80286BFC = .text:0x80286BFC; // type:function size:0x30 +fn_80286C2C = .text:0x80286C2C; // type:function size:0x30 +fn_80286C5C = .text:0x80286C5C; // type:function size:0x30 +fn_80286C8C = .text:0x80286C8C; // type:function size:0x30 +fn_80286CBC = .text:0x80286CBC; // type:function size:0x40 +fn_80286CFC = .text:0x80286CFC; // type:function size:0x10 +fn_80286D0C = .text:0x80286D0C; // type:function size:0x4C +fn_80286D58 = .text:0x80286D58; // type:function size:0x4C +fn_80286DA4 = .text:0x80286DA4; // type:function size:0x10 +fn_80286DB4 = .text:0x80286DB4; // type:function size:0xB4 +__ct__10SongStatusFv = .text:0x80286E68; // type:function size:0x50 +fn_80286EB8 = .text:0x80286EB8; // type:function size:0x98 +fn_80286F50 = .text:0x80286F50; // type:function size:0x70 +fn_80286FC0 = .text:0x80286FC0; // type:function size:0x8 +fn_80286FC8 = .text:0x80286FC8; // type:function size:0x5C +fn_80287024 = .text:0x80287024; // type:function size:0x64 +fn_80287088 = .text:0x80287088; // type:function size:0x8 +fn_80287090 = .text:0x80287090; // type:function size:0x20 +fn_802870B0 = .text:0x802870B0; // type:function size:0x3C +fn_802870EC = .text:0x802870EC; // type:function size:0x2C +fn_80287118 = .text:0x80287118; // type:function size:0x20 +fn_80287138 = .text:0x80287138; // type:function size:0x34 +fn_8028716C = .text:0x8028716C; // type:function size:0x4C +fn_802871B8 = .text:0x802871B8; // type:function size:0x90 +fn_80287248 = .text:0x80287248; // type:function size:0xB8 +fn_80287300 = .text:0x80287300; // type:function size:0x3C +fn_8028733C = .text:0x8028733C; // type:function size:0x6C +fn_802873A8 = .text:0x802873A8; // type:function size:0x1C +fn_802873C4 = .text:0x802873C4; // type:function size:0x84 +fn_80287448 = .text:0x80287448; // type:function size:0x8C +fn_802874D4 = .text:0x802874D4; // type:function size:0x7C +fn_80287550 = .text:0x80287550; // type:function size:0x17C +fn_802876CC = .text:0x802876CC; // type:function size:0x21C +fn_802878E8 = .text:0x802878E8; // type:function size:0x8 +fn_802878F0 = .text:0x802878F0; // type:function size:0x8 +fn_802878F8 = .text:0x802878F8; // type:function size:0x8 +fn_80287900 = .text:0x80287900; // type:function size:0x58 +fn_80287958 = .text:0x80287958; // type:function size:0x60 +fn_802879B8 = .text:0x802879B8; // type:function size:0x60 +fn_80287A18 = .text:0x80287A18; // type:function size:0x60 +fn_80287A78 = .text:0x80287A78; // type:function size:0x6C +fn_80287AE4 = .text:0x80287AE4; // type:function size:0x74 +fn_80287B58 = .text:0x80287B58; // type:function size:0x74 +fn_80287BCC = .text:0x80287BCC; // type:function size:0x74 +fn_80287C40 = .text:0x80287C40; // type:function size:0x6C +fn_80287CAC = .text:0x80287CAC; // type:function size:0x74 +fn_80287D20 = .text:0x80287D20; // type:function size:0x6C +fn_80287D8C = .text:0x80287D8C; // type:function size:0x74 +fn_80287E00 = .text:0x80287E00; // type:function size:0x6C +fn_80287E6C = .text:0x80287E6C; // type:function size:0x74 +fn_80287EE0 = .text:0x80287EE0; // type:function size:0x6C +fn_80287F4C = .text:0x80287F4C; // type:function size:0x74 +fn_80287FC0 = .text:0x80287FC0; // type:function size:0x6C +fn_8028802C = .text:0x8028802C; // type:function size:0x74 +fn_802880A0 = .text:0x802880A0; // type:function size:0x6C +fn_8028810C = .text:0x8028810C; // type:function size:0x74 +fn_80288180 = .text:0x80288180; // type:function size:0x6C +fn_802881EC = .text:0x802881EC; // type:function size:0x74 +fn_80288260 = .text:0x80288260; // type:function size:0x84 +fn_802882E4 = .text:0x802882E4; // type:function size:0x10 +fn_802882F4 = .text:0x802882F4; // type:function size:0x10 +fn_80288304 = .text:0x80288304; // type:function size:0x10 +fn_80288314 = .text:0x80288314; // type:function size:0x44 +fn_80288358 = .text:0x80288358; // type:function size:0x60 +fn_802883B8 = .text:0x802883B8; // type:function size:0x44 +fn_802883FC = .text:0x802883FC; // type:function size:0x30 +fn_8028842C = .text:0x8028842C; // type:function size:0x104 +fn_80288530 = .text:0x80288530; // type:function size:0x104 +fn_80288634 = .text:0x80288634; // type:function size:0xCC +fn_80288700 = .text:0x80288700; // type:function size:0x38 +fn_80288738 = .text:0x80288738; // type:function size:0x64 +fn_8028879C = .text:0x8028879C; // type:function size:0xEC +fn_80288888 = .text:0x80288888; // type:function size:0x58 +fn_802888E0 = .text:0x802888E0; // type:function size:0x34 +fn_80288914 = .text:0x80288914; // type:function size:0x3C +fn_80288950 = .text:0x80288950; // type:function size:0x3C +fn_8028898C = .text:0x8028898C; // type:function size:0x3C +fn_802889C8 = .text:0x802889C8; // type:function size:0x68 +fn_80288A30 = .text:0x80288A30; // type:function size:0x68 +fn_80288A98 = .text:0x80288A98; // type:function size:0x68 +fn_80288B00 = .text:0x80288B00; // type:function size:0x48 +fn_80288B48 = .text:0x80288B48; // type:function size:0x48 +fn_80288B90 = .text:0x80288B90; // type:function size:0x48 +fn_80288BD8 = .text:0x80288BD8; // type:function size:0x68 +fn_80288C40 = .text:0x80288C40; // type:function size:0x68 +fn_80288CA8 = .text:0x80288CA8; // type:function size:0x68 +fn_80288D10 = .text:0x80288D10; // type:function size:0x58 +fn_80288D68 = .text:0x80288D68; // type:function size:0x68 +fn_80288DD0 = .text:0x80288DD0; // type:function size:0x7C +fn_80288E4C = .text:0x80288E4C; // type:function size:0x9C +fn_80288EE8 = .text:0x80288EE8; // type:function size:0xE8 +fn_80288FD0 = .text:0x80288FD0; // type:function size:0x2D8 +fn_802892A8 = .text:0x802892A8; // type:function size:0xA4 +fn_8028934C = .text:0x8028934C; // type:function size:0x8 +fn_80289354 = .text:0x80289354; // type:function size:0x7C +fn_802893D0 = .text:0x802893D0; // type:function size:0x44 +fn_80289414 = .text:0x80289414; // type:function size:0x88 +fn_8028949C = .text:0x8028949C; // type:function size:0xD4 +Handle__13SongStatusMgrFP9DataArrayb = .text:0x80289570; // type:function size:0x1C4 +fn_80289734 = .text:0x80289734; // type:function size:0x8 +fn_8028973C = .text:0x8028973C; // type:function size:0x8 +fn_80289744 = .text:0x80289744; // type:function size:0x8 +fn_8028974C = .text:0x8028974C; // type:function size:0x5C +fn_802897A8 = .text:0x802897A8; // type:function size:0x3C +fn_802897E4 = .text:0x802897E4; // type:function size:0x1F4 +fn_802899D8 = .text:0x802899D8; // type:function size:0xC4 +fn_80289A9C = .text:0x80289A9C; // type:function size:0x1D4 +fn_80289C70 = .text:0x80289C70; // type:function size:0x18 +fn_80289C88 = .text:0x80289C88; // type:function size:0x8 +fn_80289C90 = .text:0x80289C90; // type:function size:0x30 +fn_80289CC0 = .text:0x80289CC0; // type:function size:0x7C +fn_80289D3C = .text:0x80289D3C; // type:function size:0x10 +fn_80289D4C = .text:0x80289D4C; // type:function size:0x10 +fn_80289D5C = .text:0x80289D5C; // type:function size:0x4C +fn_80289DA8 = .text:0x80289DA8; // type:function size:0xDC +__ct__14SongUpgradeMgrFv = .text:0x80289E84; // type:function size:0x78 +fn_80289EFC = .text:0x80289EFC; // type:function size:0x44 +fn_80289F40 = .text:0x80289F40; // type:function size:0x3C +fn_80289F7C = .text:0x80289F7C; // type:function size:0x70 +fn_80289FEC = .text:0x80289FEC; // type:function size:0x54 +fn_8028A040 = .text:0x8028A040; // type:function size:0x90 +fn_8028A0D0 = .text:0x8028A0D0; // type:function size:0x2C +fn_8028A0FC = .text:0x8028A0FC; // type:function size:0x30 +fn_8028A12C = .text:0x8028A12C; // type:function size:0xAC +fn_8028A1D8 = .text:0x8028A1D8; // type:function size:0x38 +fn_8028A210 = .text:0x8028A210; // type:function size:0xE0 +fn_8028A2F0 = .text:0x8028A2F0; // type:function size:0x10 +fn_8028A300 = .text:0x8028A300; // type:function size:0xC +fn_8028A30C = .text:0x8028A30C; // type:function size:0x94 +fn_8028A3A0 = .text:0x8028A3A0; // type:function size:0xA0 +fn_8028A440 = .text:0x8028A440; // type:function size:0x7C +fn_8028A4BC = .text:0x8028A4BC; // type:function size:0x8 +fn_8028A4C4 = .text:0x8028A4C4; // type:function size:0xC +fn_8028A4D0 = .text:0x8028A4D0; // type:function size:0xD0 +fn_8028A5A0 = .text:0x8028A5A0; // type:function size:0xBC +fn_8028A65C = .text:0x8028A65C; // type:function size:0x2C +fn_8028A688 = .text:0x8028A688; // type:function size:0x40 +fn_8028A6C8 = .text:0x8028A6C8; // type:function size:0x30 +fn_8028A6F8 = .text:0x8028A6F8; // type:function size:0x30 +fn_8028A728 = .text:0x8028A728; // type:function size:0xB0 +fn_8028A7D8 = .text:0x8028A7D8; // type:function size:0x88 +fn_8028A860 = .text:0x8028A860; // type:function size:0x104 +fn_8028A964 = .text:0x8028A964; // type:function size:0x58 +fn_8028A9BC = .text:0x8028A9BC; // type:function size:0x8 +fn_8028A9C4 = .text:0x8028A9C4; // type:function size:0x4 +fn_8028A9C8 = .text:0x8028A9C8; // type:function size:0x40 +fn_8028AA08 = .text:0x8028AA08; // type:function size:0x80 +fn_8028AA88 = .text:0x8028AA88; // type:function size:0xA4 +fn_8028AB2C = .text:0x8028AB2C; // type:function size:0x4 +fn_8028AB30 = .text:0x8028AB30; // type:function size:0x4 +fn_8028AB34 = .text:0x8028AB34; // type:function size:0x8 +fn_8028AB3C = .text:0x8028AB3C; // type:function size:0x4 +fn_8028AB40 = .text:0x8028AB40; // type:function size:0xC0 +fn_8028AC00 = .text:0x8028AC00; // type:function size:0x3C +fn_8028AC3C = .text:0x8028AC3C; // type:function size:0x6C +fn_8028ACA8 = .text:0x8028ACA8; // type:function size:0x4 +fn_8028ACAC = .text:0x8028ACAC; // type:function size:0x40 +fn_8028ACEC = .text:0x8028ACEC; // type:function size:0xA0 +fn_8028AD8C = .text:0x8028AD8C; // type:function size:0x5C +fn_8028ADE8 = .text:0x8028ADE8; // type:function size:0x30 +fn_8028AE18 = .text:0x8028AE18; // type:function size:0x94 +fn_8028AEAC = .text:0x8028AEAC; // type:function size:0x2A8 +fn_8028B154 = .text:0x8028B154; // type:function size:0x4 +fn_8028B158 = .text:0x8028B158; // type:function size:0x40 +fn_8028B198 = .text:0x8028B198; // type:function size:0xA8 +fn_8028B240 = .text:0x8028B240; // type:function size:0x3B8 +fn_8028B5F8 = .text:0x8028B5F8; // type:function size:0x15C +fn_8028B754 = .text:0x8028B754; // type:function size:0x44 +fn_8028B798 = .text:0x8028B798; // type:function size:0x108 +fn_8028B8A0 = .text:0x8028B8A0; // type:function size:0x5C +fn_8028B8FC = .text:0x8028B8FC; // type:function size:0x10 +__ct__7StandInFv = .text:0x8028B90C; // type:function size:0x60 +fn_8028B96C = .text:0x8028B96C; // type:function size:0x58 +fn_8028B9C4 = .text:0x8028B9C4; // type:function size:0x4C +fn_8028BA10 = .text:0x8028BA10; // type:function size:0x38 +fn_8028BA48 = .text:0x8028BA48; // type:function size:0x5C +fn_8028BAA4 = .text:0x8028BAA4; // type:function size:0x58 +fn_8028BAFC = .text:0x8028BAFC; // type:function size:0x58 +fn_8028BB54 = .text:0x8028BB54; // type:function size:0x58 +fn_8028BBAC = .text:0x8028BBAC; // type:function size:0x24 +fn_8028BBD0 = .text:0x8028BBD0; // type:function size:0x4C +fn_8028BC1C = .text:0x8028BC1C; // type:function size:0x4C +fn_8028BC68 = .text:0x8028BC68; // type:function size:0x64 +fn_8028BCCC = .text:0x8028BCCC; // type:function size:0x8 +fn_8028BCD4 = .text:0x8028BCD4; // type:function size:0x130 +fn_8028BE04 = .text:0x8028BE04; // type:function size:0x8 +fn_8028BE0C = .text:0x8028BE0C; // type:function size:0x8 +fn_8028BE14 = .text:0x8028BE14; // type:function size:0xDC +fn_8028BEF0 = .text:0x8028BEF0; // type:function size:0x58 +fn_8028BF48 = .text:0x8028BF48; // type:function size:0x80 +fn_8028BFC8 = .text:0x8028BFC8; // type:function size:0x80 +fn_8028C048 = .text:0x8028C048; // type:function size:0x58 +fn_8028C0A0 = .text:0x8028C0A0; // type:function size:0x54 +fn_8028C0F4 = .text:0x8028C0F4; // type:function size:0x5C +fn_8028C150 = .text:0x8028C150; // type:function size:0x6C +fn_8028C1BC = .text:0x8028C1BC; // type:function size:0x28 +fn_8028C1E4 = .text:0x8028C1E4; // type:function size:0x8 +fn_8028C1EC = .text:0x8028C1EC; // type:function size:0x74 +fn_8028C260 = .text:0x8028C260; // type:function size:0x8 +fn_8028C268 = .text:0x8028C268; // type:function size:0x3C +fn_8028C2A4 = .text:0x8028C2A4; // type:function size:0x80 +fn_8028C324 = .text:0x8028C324; // type:function size:0x30 +fn_8028C354 = .text:0x8028C354; // type:function size:0x30 +fn_8028C384 = .text:0x8028C384; // type:function size:0x40 +fn_8028C3C4 = .text:0x8028C3C4; // type:function size:0x68 +__dt__14StoreInfoPanelFv = .text:0x8028C42C; // type:function size:0xC0 +fn_8028C4EC = .text:0x8028C4EC; // type:function size:0x4 +fn_8028C4F0 = .text:0x8028C4F0; // type:function size:0x1C4 +fn_8028C6B4 = .text:0x8028C6B4; // type:function size:0x34 +fn_8028C6E8 = .text:0x8028C6E8; // type:function size:0x7C +fn_8028C764 = .text:0x8028C764; // type:function size:0x58 +fn_8028C7BC = .text:0x8028C7BC; // type:function size:0x4 +fn_8028C7C0 = .text:0x8028C7C0; // type:function size:0x50 +fn_8028C810 = .text:0x8028C810; // type:function size:0x58 +fn_8028C868 = .text:0x8028C868; // type:function size:0x5C +fn_8028C8C4 = .text:0x8028C8C4; // type:function size:0x5C +fn_8028C920 = .text:0x8028C920; // type:function size:0x110 +fn_8028CA30 = .text:0x8028CA30; // type:function size:0x48 +fn_8028CA78 = .text:0x8028CA78; // type:function size:0x3C +fn_8028CAB4 = .text:0x8028CAB4; // type:function size:0x14C +fn_8028CC00 = .text:0x8028CC00; // type:function size:0x4 +fn_8028CC04 = .text:0x8028CC04; // type:function size:0x88 +fn_8028CC8C = .text:0x8028CC8C; // type:function size:0x2C +fn_8028CCB8 = .text:0x8028CCB8; // type:function size:0x10 +fn_8028CCC8 = .text:0x8028CCC8; // type:function size:0x54 +fn_8028CD1C = .text:0x8028CD1C; // type:function size:0x40 +fn_8028CD5C = .text:0x8028CD5C; // type:function size:0xEC +fn_8028CE48 = .text:0x8028CE48; // type:function size:0x78 +fn_8028CEC0 = .text:0x8028CEC0; // type:function size:0x50 +fn_8028CF10 = .text:0x8028CF10; // type:function size:0x50 +fn_8028CF60 = .text:0x8028CF60; // type:function size:0x68 +SyncProperty__14StoreInfoPanelFR8DataNodeP9DataArrayi6PropOp = .text:0x8028CFC8; // type:function size:0xC0 +fn_8028D088 = .text:0x8028D088; // type:function size:0xC0 +Handle__14StoreInfoPanelFP9DataArrayb = .text:0x8028D148; // type:function size:0x1D4 +fn_8028D31C = .text:0x8028D31C; // type:function size:0x60 +fn_8028D37C = .text:0x8028D37C; // type:function size:0x114 +fn_8028D490 = .text:0x8028D490; // type:function size:0x5C +fn_8028D4EC = .text:0x8028D4EC; // type:function size:0x5C +fn_8028D548 = .text:0x8028D548; // type:function size:0x54 +fn_8028D59C = .text:0x8028D59C; // type:function size:0x5C +fn_8028D5F8 = .text:0x8028D5F8; // type:function size:0x5C +SetType__14StoreInfoPanelF6Symbol = .text:0x8028D654; // type:function size:0x134 +ClassName__14StoreInfoPanelCFv = .text:0x8028D788; // type:function size:0x4 +fn_8028D78C = .text:0x8028D78C; // type:function size:0x14 +fn_8028D7A0 = .text:0x8028D7A0; // type:function size:0x14 +fn_8028D7B4 = .text:0x8028D7B4; // type:function size:0x14 +fn_8028D7C8 = .text:0x8028D7C8; // type:function size:0x14 +fn_8028D7DC = .text:0x8028D7DC; // type:function size:0x14 +fn_8028D7F0 = .text:0x8028D7F0; // type:function size:0x11C +fn_8028D90C = .text:0x8028D90C; // type:function size:0x58 +fn_8028D964 = .text:0x8028D964; // type:function size:0x80 +fn_8028D9E4 = .text:0x8028D9E4; // type:function size:0x80 +fn_8028DA64 = .text:0x8028DA64; // type:function size:0x58 +fn_8028DABC = .text:0x8028DABC; // type:function size:0x10 +fn_8028DACC = .text:0x8028DACC; // type:function size:0x54 +fn_8028DB20 = .text:0x8028DB20; // type:function size:0x5C +fn_8028DB7C = .text:0x8028DB7C; // type:function size:0x6C +fn_8028DBE8 = .text:0x8028DBE8; // type:function size:0x28 +fn_8028DC10 = .text:0x8028DC10; // type:function size:0x10 +fn_8028DC20 = .text:0x8028DC20; // type:function size:0x8 +fn_8028DC28 = .text:0x8028DC28; // type:function size:0x8C +fn_8028DCB4 = .text:0x8028DCB4; // type:function size:0xC +fn_8028DCC0 = .text:0x8028DCC0; // type:function size:0x8 +fn_8028DCC8 = .text:0x8028DCC8; // type:function size:0x3C +fn_8028DD04 = .text:0x8028DD04; // type:function size:0x14 +fn_8028DD18 = .text:0x8028DD18; // type:function size:0x30 +fn_8028DD48 = .text:0x8028DD48; // type:function size:0x30 +fn_8028DD78 = .text:0x8028DD78; // type:function size:0x40 +fn_8028DDB8 = .text:0x8028DDB8; // type:function size:0xB4 +fn_8028DE6C = .text:0x8028DE6C; // type:function size:0x84 +fn_8028DEF0 = .text:0x8028DEF0; // type:function size:0x1CC +fn_8028E0BC = .text:0x8028E0BC; // type:function size:0x2C0 +fn_8028E37C = .text:0x8028E37C; // type:function size:0x8 +fn_8028E384 = .text:0x8028E384; // type:function size:0x10 +fn_8028E394 = .text:0x8028E394; // type:function size:0xC4 +fn_8028E458 = .text:0x8028E458; // type:function size:0xA0 +fn_8028E4F8 = .text:0x8028E4F8; // type:function size:0x4 +fn_8028E4FC = .text:0x8028E4FC; // type:function size:0x30 +fn_8028E52C = .text:0x8028E52C; // type:function size:0x148 +fn_8028E674 = .text:0x8028E674; // type:function size:0x4 +fn_8028E678 = .text:0x8028E678; // type:function size:0x88 +fn_8028E700 = .text:0x8028E700; // type:function size:0x2C +fn_8028E72C = .text:0x8028E72C; // type:function size:0x10 +fn_8028E73C = .text:0x8028E73C; // type:function size:0x6C +fn_8028E7A8 = .text:0x8028E7A8; // type:function size:0x14 +fn_8028E7BC = .text:0x8028E7BC; // type:function size:0x4C +fn_8028E808 = .text:0x8028E808; // type:function size:0x14 +fn_8028E81C = .text:0x8028E81C; // type:function size:0x14 +fn_8028E830 = .text:0x8028E830; // type:function size:0x14 +fn_8028E844 = .text:0x8028E844; // type:function size:0x50 +fn_8028E894 = .text:0x8028E894; // type:function size:0x4 +fn_8028E898 = .text:0x8028E898; // type:function size:0x50 +fn_8028E8E8 = .text:0x8028E8E8; // type:function size:0x58 +fn_8028E940 = .text:0x8028E940; // type:function size:0x4 +fn_8028E944 = .text:0x8028E944; // type:function size:0x50 +fn_8028E994 = .text:0x8028E994; // type:function size:0x58 +fn_8028E9EC = .text:0x8028E9EC; // type:function size:0x3C +fn_8028EA28 = .text:0x8028EA28; // type:function size:0x60 +Handle__14StoreMainPanelFP9DataArrayb = .text:0x8028EA88; // type:function size:0x1AC +fn_8028EC34 = .text:0x8028EC34; // type:function size:0xCC +fn_8028ED00 = .text:0x8028ED00; // type:function size:0x5C +fn_8028ED5C = .text:0x8028ED5C; // type:function size:0xC +fn_8028ED68 = .text:0x8028ED68; // type:function size:0x5C +fn_8028EDC4 = .text:0x8028EDC4; // type:function size:0x60 +fn_8028EE24 = .text:0x8028EE24; // type:function size:0x5C +fn_8028EE80 = .text:0x8028EE80; // type:function size:0xC +fn_8028EE8C = .text:0x8028EE8C; // type:function size:0x114 +fn_8028EFA0 = .text:0x8028EFA0; // type:function size:0x5C +fn_8028EFFC = .text:0x8028EFFC; // type:function size:0x54 +fn_8028F050 = .text:0x8028F050; // type:function size:0x5C +fn_8028F0AC = .text:0x8028F0AC; // type:function size:0x134 +fn_8028F1E0 = .text:0x8028F1E0; // type:function size:0x4 +fn_8028F1E4 = .text:0x8028F1E4; // type:function size:0x10 +fn_8028F1F4 = .text:0x8028F1F4; // type:function size:0x14 +fn_8028F208 = .text:0x8028F208; // type:function size:0x14 +fn_8028F21C = .text:0x8028F21C; // type:function size:0x14 +fn_8028F230 = .text:0x8028F230; // type:function size:0x14 +fn_8028F244 = .text:0x8028F244; // type:function size:0xB0 +fn_8028F2F4 = .text:0x8028F2F4; // type:function size:0x98 +fn_8028F38C = .text:0x8028F38C; // type:function size:0x6C +fn_8028F3F8 = .text:0x8028F3F8; // type:function size:0x48 +fn_8028F440 = .text:0x8028F440; // type:function size:0x5C +fn_8028F49C = .text:0x8028F49C; // type:function size:0x5C +fn_8028F4F8 = .text:0x8028F4F8; // type:function size:0xD4 +fn_8028F5CC = .text:0x8028F5CC; // type:function size:0x70 +fn_8028F63C = .text:0x8028F63C; // type:function size:0x100 +fn_8028F73C = .text:0x8028F73C; // type:function size:0x130 +fn_8028F86C = .text:0x8028F86C; // type:function size:0x74 +fn_8028F8E0 = .text:0x8028F8E0; // type:function size:0xE4 +fn_8028F9C4 = .text:0x8028F9C4; // type:function size:0x18 +fn_8028F9DC = .text:0x8028F9DC; // type:function size:0xC0 +fn_8028FA9C = .text:0x8028FA9C; // type:function size:0x1C +Handle__14StoreMenuPanelFP9DataArrayb = .text:0x8028FAB8; // type:function size:0x28C +fn_8028FD44 = .text:0x8028FD44; // type:function size:0x134 +fn_8028FE78 = .text:0x8028FE78; // type:function size:0x4 +fn_8028FE7C = .text:0x8028FE7C; // type:function size:0x14 +fn_8028FE90 = .text:0x8028FE90; // type:function size:0x14 +fn_8028FEA4 = .text:0x8028FEA4; // type:function size:0x14 +fn_8028FEB8 = .text:0x8028FEB8; // type:function size:0x14 +fn_8028FECC = .text:0x8028FECC; // type:function size:0x108 +fn_8028FFD4 = .text:0x8028FFD4; // type:function size:0x84 +fn_80290058 = .text:0x80290058; // type:function size:0x80 +fn_802900D8 = .text:0x802900D8; // type:function size:0xFC +fn_802901D4 = .text:0x802901D4; // type:function size:0x28 +fn_802901FC = .text:0x802901FC; // type:function size:0x8 +fn_80290204 = .text:0x80290204; // type:function size:0xC +fn_80290210 = .text:0x80290210; // type:function size:0xA0 +fn_802902B0 = .text:0x802902B0; // type:function size:0x138 +fn_802903E8 = .text:0x802903E8; // type:function size:0x8 +fn_802903F0 = .text:0x802903F0; // type:function size:0x98 +Handle__17StoreMenuProviderFP9DataArrayb = .text:0x80290488; // type:function size:0x180 +fn_80290608 = .text:0x80290608; // type:function size:0x8 +fn_80290610 = .text:0x80290610; // type:function size:0x8 +fn_80290618 = .text:0x80290618; // type:function size:0x90 +fn_802906A8 = .text:0x802906A8; // type:function size:0x8C +fn_80290734 = .text:0x80290734; // type:function size:0x78 +fn_802907AC = .text:0x802907AC; // type:function size:0x4E8 +fn_80290C94 = .text:0x80290C94; // type:function size:0x8 +fn_80290C9C = .text:0x80290C9C; // type:function size:0xC +fn_80290CA8 = .text:0x80290CA8; // type:function size:0x8 +fn_80290CB0 = .text:0x80290CB0; // type:function size:0x48 +fn_80290CF8 = .text:0x80290CF8; // type:function size:0xC +fn_80290D04 = .text:0x80290D04; // type:function size:0xC4 +fn_80290DC8 = .text:0x80290DC8; // type:function size:0x90 +fn_80290E58 = .text:0x80290E58; // type:function size:0x7C +fn_80290ED4 = .text:0x80290ED4; // type:function size:0xB8 +fn_80290F8C = .text:0x80290F8C; // type:function size:0x24 +fn_80290FB0 = .text:0x80290FB0; // type:function size:0x18C +fn_8029113C = .text:0x8029113C; // type:function size:0x150 +fn_8029128C = .text:0x8029128C; // type:function size:0x150 +fn_802913DC = .text:0x802913DC; // type:function size:0x8 +fn_802913E4 = .text:0x802913E4; // type:function size:0x48 +fn_8029142C = .text:0x8029142C; // type:function size:0xC +fn_80291438 = .text:0x80291438; // type:function size:0x8C +fn_802914C4 = .text:0x802914C4; // type:function size:0x80 +fn_80291544 = .text:0x80291544; // type:function size:0x78 +fn_802915BC = .text:0x802915BC; // type:function size:0xB8 +fn_80291674 = .text:0x80291674; // type:function size:0x28 +fn_8029169C = .text:0x8029169C; // type:function size:0x708 +fn_80291DA4 = .text:0x80291DA4; // type:function size:0x48 +fn_80291DEC = .text:0x80291DEC; // type:function size:0x6C +fn_80291E58 = .text:0x80291E58; // type:function size:0x48 +fn_80291EA0 = .text:0x80291EA0; // type:function size:0x48 +fn_80291EE8 = .text:0x80291EE8; // type:function size:0x5C +fn_80291F44 = .text:0x80291F44; // type:function size:0x5C +Handle__18StoreOfferProviderFP9DataArrayb = .text:0x80291FA0; // type:function size:0x410 +fn_802923B0 = .text:0x802923B0; // type:function size:0x8 +fn_802923B8 = .text:0x802923B8; // type:function size:0x8 +fn_802923C0 = .text:0x802923C0; // type:function size:0x8 +fn_802923C8 = .text:0x802923C8; // type:function size:0x8 +fn_802923D0 = .text:0x802923D0; // type:function size:0x8 +fn_802923D8 = .text:0x802923D8; // type:function size:0x8 +fn_802923E0 = .text:0x802923E0; // type:function size:0x8 +fn_802923E8 = .text:0x802923E8; // type:function size:0x8 +fn_802923F0 = .text:0x802923F0; // type:function size:0x78 +fn_80292468 = .text:0x80292468; // type:function size:0x4 +fn_8029246C = .text:0x8029246C; // type:function size:0x4 +fn_80292470 = .text:0x80292470; // type:function size:0x4 +fn_80292474 = .text:0x80292474; // type:function size:0x8 +Handle__14StoreRootPanelFP9DataArrayb = .text:0x8029247C; // type:function size:0x14C +fn_802925C8 = .text:0x802925C8; // type:function size:0x134 +fn_802926FC = .text:0x802926FC; // type:function size:0x4 +fn_80292700 = .text:0x80292700; // type:function size:0x14 +fn_80292714 = .text:0x80292714; // type:function size:0x14 +fn_80292728 = .text:0x80292728; // type:function size:0x14 +fn_8029273C = .text:0x8029273C; // type:function size:0x14 +fn_80292750 = .text:0x80292750; // type:function size:0x6C +fn_802927BC = .text:0x802927BC; // type:function size:0x10 +fn_802927CC = .text:0x802927CC; // type:function size:0xC +fn_802927D8 = .text:0x802927D8; // type:function size:0x8 +fn_802927E0 = .text:0x802927E0; // type:function size:0x8 +fn_802927E8 = .text:0x802927E8; // type:function size:0x8 +fn_802927F0 = .text:0x802927F0; // type:function size:0x8 +fn_802927F8 = .text:0x802927F8; // type:function size:0x8 +fn_80292800 = .text:0x80292800; // type:function size:0x54 +Handle__17StoreSongSortNodeFP9DataArrayb = .text:0x80292854; // type:function size:0x17C +fn_802929D0 = .text:0x802929D0; // type:function size:0xA0 +fn_80292A70 = .text:0x80292A70; // type:function size:0x10C +fn_80292B7C = .text:0x80292B7C; // type:function size:0x28 +fn_80292BA4 = .text:0x80292BA4; // type:function size:0x28 +fn_80292BCC = .text:0x80292BCC; // type:function size:0xCC +fn_80292C98 = .text:0x80292C98; // type:function size:0x8 +fn_80292CA0 = .text:0x80292CA0; // type:function size:0x94 +fn_80292D34 = .text:0x80292D34; // type:function size:0xB0 +fn_80292DE4 = .text:0x80292DE4; // type:function size:0x64 +fn_80292E48 = .text:0x80292E48; // type:function size:0x1C +fn_80292E64 = .text:0x80292E64; // type:function size:0x4 +fn_80292E68 = .text:0x80292E68; // type:function size:0x8C +fn_80292EF4 = .text:0x80292EF4; // type:function size:0x124 +fn_80293018 = .text:0x80293018; // type:function size:0x74 +fn_8029308C = .text:0x8029308C; // type:function size:0x5C +fn_802930E8 = .text:0x802930E8; // type:function size:0x5C +fn_80293144 = .text:0x80293144; // type:function size:0x90 +fn_802931D4 = .text:0x802931D4; // type:function size:0x9C +fn_80293270 = .text:0x80293270; // type:function size:0x90 +fn_80293300 = .text:0x80293300; // type:function size:0x88 +fn_80293388 = .text:0x80293388; // type:function size:0x64 +fn_802933EC = .text:0x802933EC; // type:function size:0x118 +fn_80293504 = .text:0x80293504; // type:function size:0x7C +Handle__12TexLoadPanelFP9DataArrayb = .text:0x80293580; // type:function size:0x12C +fn_802936AC = .text:0x802936AC; // type:function size:0x134 +fn_802937E0 = .text:0x802937E0; // type:function size:0x4 +fn_802937E4 = .text:0x802937E4; // type:function size:0x14 +fn_802937F8 = .text:0x802937F8; // type:function size:0x14 +fn_8029380C = .text:0x8029380C; // type:function size:0x14 +fn_80293820 = .text:0x80293820; // type:function size:0x14 +fn_80293834 = .text:0x80293834; // type:function size:0x14 +fn_80293848 = .text:0x80293848; // type:function size:0x14 +fn_8029385C = .text:0x8029385C; // type:function size:0x14 +fn_80293870 = .text:0x80293870; // type:function size:0x8 +fn_80293878 = .text:0x80293878; // type:function size:0xE8 +fn_80293960 = .text:0x80293960; // type:function size:0x30 +fn_80293990 = .text:0x80293990; // type:function size:0x78 +fn_80293A08 = .text:0x80293A08; // type:function size:0x70 +fn_80293A78 = .text:0x80293A78; // type:function size:0xA8 +fn_80293B20 = .text:0x80293B20; // type:function size:0x8 +fn_80293B28 = .text:0x80293B28; // type:function size:0x28 +fn_80293B50 = .text:0x80293B50; // type:function size:0x38 +fn_80293B88 = .text:0x80293B88; // type:function size:0x58C +fn_80294114 = .text:0x80294114; // type:function size:0x5C +fn_80294170 = .text:0x80294170; // type:function size:0x58 +fn_802941C8 = .text:0x802941C8; // type:function size:0x58 +fn_80294220 = .text:0x80294220; // type:function size:0x60 +fn_80294280 = .text:0x80294280; // type:function size:0x58 +fn_802942D8 = .text:0x802942D8; // type:function size:0xAC +fn_80294384 = .text:0x80294384; // type:function size:0xAC +fn_80294430 = .text:0x80294430; // type:function size:0x74 +fn_802944A4 = .text:0x802944A4; // type:function size:0x280 +fn_80294724 = .text:0x80294724; // type:function size:0xA8 +fn_802947CC = .text:0x802947CC; // type:function size:0x20 +fn_802947EC = .text:0x802947EC; // type:function size:0x5F8 +Handle__20TokenRedemptionPanelFP9DataArrayb = .text:0x80294DE4; // type:function size:0x2B0 +fn_80295094 = .text:0x80295094; // type:function size:0xB0 +fn_80295144 = .text:0x80295144; // type:function size:0x68 +fn_802951AC = .text:0x802951AC; // type:function size:0x2C +fn_802951D8 = .text:0x802951D8; // type:function size:0x8 +fn_802951E0 = .text:0x802951E0; // type:function size:0x68 +fn_80295248 = .text:0x80295248; // type:function size:0x134 +fn_8029537C = .text:0x8029537C; // type:function size:0x4 +fn_80295380 = .text:0x80295380; // type:function size:0x14 +fn_80295394 = .text:0x80295394; // type:function size:0x14 +fn_802953A8 = .text:0x802953A8; // type:function size:0x14 +fn_802953BC = .text:0x802953BC; // type:function size:0x14 +fn_802953D0 = .text:0x802953D0; // type:function size:0x8 +fn_802953D8 = .text:0x802953D8; // type:function size:0x8 +fn_802953E0 = .text:0x802953E0; // type:function size:0x8 +fn_802953E8 = .text:0x802953E8; // type:function size:0x8 +fn_802953F0 = .text:0x802953F0; // type:function size:0x8 +fn_802953F8 = .text:0x802953F8; // type:function size:0x8 +fn_80295400 = .text:0x80295400; // type:function size:0x8 +__ct__15TrainerProviderFv = .text:0x80295408; // type:function size:0x78 +__dt__15TrainerProviderFv = .text:0x80295480; // type:function size:0x74 +fn_802954F4 = .text:0x802954F4; // type:function size:0x160 +fn_80295654 = .text:0x80295654; // type:function size:0x68 +fn_802956BC = .text:0x802956BC; // type:function size:0x8 +fn_802956C4 = .text:0x802956C4; // type:function size:0x8 +__ct__11TrainingMgrFv = .text:0x802956CC; // type:function size:0x98 +__dt__11TrainingMgrFv = .text:0x80295764; // type:function size:0x58 +NewObject__11TrainingMgrFv = .text:0x802957BC; // type:function size:0x38 +GetTheTrainingMgr__Fv = .text:0x802957F4; // type:function size:0xC +fn_80295800 = .text:0x80295800; // type:function size:0x8 +UnparticipateUsers__11TrainingMgrFv = .text:0x80295808; // type:function size:0xA4 +ParticipateUsers__11TrainingMgrFv = .text:0x802958AC; // type:function size:0x8C +SetDifficulty__11TrainingMgrFi = .text:0x80295938; // type:function size:0xC +SetPreferredScoreType__11TrainingMgrFi = .text:0x80295944; // type:function size:0xC +SetTrackType__11TrainingMgrFi = .text:0x80295950; // type:function size:0xC +SetMinimumDifficulty__11TrainingMgrFi = .text:0x8029595C; // type:function size:0x8 +SetReturnInfo__11TrainingMgrF6Symbol6Symbol = .text:0x80295964; // type:function size:0x48 +SetCurrentLesson__11TrainingMgrFi = .text:0x802959AC; // type:function size:0x8 +ClearCurrentLesson__11TrainingMgrFv = .text:0x802959B4; // type:function size:0xC +GetModeFromLessonName__11TrainingMgrF6Symbol = .text:0x802959C0; // type:function size:0x54 +GetModeFromTrackType__11TrainingMgrFi = .text:0x80295A14; // type:function size:0x84 +GetTrackTypeFromLessonName__11TrainingMgrF6Symbol = .text:0x80295A98; // type:function size:0x40 +GetSongFromLessonName__11TrainingMgrF6Symbol = .text:0x80295AD8; // type:function size:0x54 +GetDifficultyFromLessonName__11TrainingMgrF6Symbol = .text:0x80295B2C; // type:function size:0x40 +Handle__11TrainingMgrFP9DataArrayb = .text:0x80295B6C; // type:function size:0x544 +__ct__13TrainingPanelFv = .text:0x802960B0; // type:function size:0x88 +__dt__13TrainingPanelFv = .text:0x80296138; // type:function size:0x7C +Load__13TrainingPanelFv = .text:0x802961B4; // type:function size:0x60 +Enter__13TrainingPanelFv = .text:0x80296214; // type:function size:0x24 +Exit__13TrainingPanelFv = .text:0x80296238; // type:function size:0x38 +Unload__13TrainingPanelFv = .text:0x80296270; // type:function size:0x7C +fn_802962EC = .text:0x802962EC; // type:function size:0xD0 +fn_802963BC = .text:0x802963BC; // type:function size:0x70 +fn_8029642C = .text:0x8029642C; // type:function size:0x44 +fn_80296470 = .text:0x80296470; // type:function size:0xFC +fn_8029656C = .text:0x8029656C; // type:function size:0xA8 +fn_80296614 = .text:0x80296614; // type:function size:0x60 +fn_80296674 = .text:0x80296674; // type:function size:0x88 +fn_802966FC = .text:0x802966FC; // type:function size:0x68 +Handle__13TrainingPanelFP9DataArrayb = .text:0x80296764; // type:function size:0x28C +SetType__13TrainingPanelF6Symbol = .text:0x802969F0; // type:function size:0x134 +ClassName__13TrainingPanelCFv = .text:0x80296B24; // type:function size:0x4 +fn_80296B28 = .text:0x80296B28; // type:function size:0x14 +fn_80296B3C = .text:0x80296B3C; // type:function size:0x14 +fn_80296B50 = .text:0x80296B50; // type:function size:0x14 +fn_80296B64 = .text:0x80296B64; // type:function size:0x14 +fn_80296B78 = .text:0x80296B78; // type:function size:0x14 +fn_80296B8C = .text:0x80296B8C; // type:function size:0x14 +fn_80296BA0 = .text:0x80296BA0; // type:function size:0x14 +__ct__16UGCPurchasePanelFv = .text:0x80296BB4; // type:function size:0xB0 +Enter__16UGCPurchasePanelFv = .text:0x80296C64; // type:function size:0x88 +Exit__16UGCPurchasePanelFv = .text:0x80296CEC; // type:function size:0x4 +Unload__16UGCPurchasePanelFv = .text:0x80296CF0; // type:function size:0x94 +Poll__16UGCPurchasePanelFv = .text:0x80296D84; // type:function size:0x2E0 +fn_80297064 = .text:0x80297064; // type:function size:0x160 +fn_802971C4 = .text:0x802971C4; // type:function size:0x114 +Handle__16UGCPurchasePanelFP9DataArrayb = .text:0x802972D8; // type:function size:0x1C8 +SyncProperty__16UGCPurchasePanelFR8DataNodeP9DataArrayi6PropOp = .text:0x802974A0; // type:function size:0xE0 +fn_80297580 = .text:0x80297580; // type:function size:0xC0 +__dt__16UGCPurchasePanelFv = .text:0x80297640; // type:function size:0x8C +SetType__16UGCPurchasePanelF6Symbol = .text:0x802976CC; // type:function size:0x134 +ClassName__16UGCPurchasePanelCFv = .text:0x80297800; // type:function size:0x4 +fn_80297804 = .text:0x80297804; // type:function size:0x14 +fn_80297818 = .text:0x80297818; // type:function size:0x14 +fn_8029782C = .text:0x8029782C; // type:function size:0x14 +fn_80297840 = .text:0x80297840; // type:function size:0x14 +fn_80297854 = .text:0x80297854; // type:function size:0x14 +fn_80297868 = .text:0x80297868; // type:function size:0x80 +fn_802978E8 = .text:0x802978E8; // type:function size:0x5C +fn_80297944 = .text:0x80297944; // type:function size:0xC +fn_80297950 = .text:0x80297950; // type:function size:0x18 +fn_80297968 = .text:0x80297968; // type:function size:0x9C +fn_80297A04 = .text:0x80297A04; // type:function size:0x3C +fn_80297A40 = .text:0x80297A40; // type:function size:0x130 +fn_80297B70 = .text:0x80297B70; // type:function size:0x94 +fn_80297C04 = .text:0x80297C04; // type:function size:0x88 +fn_80297C8C = .text:0x80297C8C; // type:function size:0x4C +fn_80297CD8 = .text:0x80297CD8; // type:function size:0x6C +fn_80297D44 = .text:0x80297D44; // type:function size:0x3C +fn_80297D80 = .text:0x80297D80; // type:function size:0x54 +fn_80297DD4 = .text:0x80297DD4; // type:function size:0x58 +fn_80297E2C = .text:0x80297E2C; // type:function size:0xE0 +fn_80297F0C = .text:0x80297F0C; // type:function size:0x90 +fn_80297F9C = .text:0x80297F9C; // type:function size:0x6C +fn_80298008 = .text:0x80298008; // type:function size:0x28 +fn_80298030 = .text:0x80298030; // type:function size:0x8C +fn_802980BC = .text:0x802980BC; // type:function size:0xC +fn_802980C8 = .text:0x802980C8; // type:function size:0x44 +fn_8029810C = .text:0x8029810C; // type:function size:0x10 +fn_8029811C = .text:0x8029811C; // type:function size:0x90 +fn_802981AC = .text:0x802981AC; // type:function size:0x34 +fn_802981E0 = .text:0x802981E0; // type:function size:0x74 +fn_80298254 = .text:0x80298254; // type:function size:0x4 +fn_80298258 = .text:0x80298258; // type:function size:0x138 +fn_80298390 = .text:0x80298390; // type:function size:0x58 +fn_802983E8 = .text:0x802983E8; // type:function size:0x68 +fn_80298450 = .text:0x80298450; // type:function size:0x40 +fn_80298490 = .text:0x80298490; // type:function size:0x60 +fn_802984F0 = .text:0x802984F0; // type:function size:0x5C +fn_8029854C = .text:0x8029854C; // type:function size:0x5C +fn_802985A8 = .text:0x802985A8; // type:function size:0x68 +fn_80298610 = .text:0x80298610; // type:function size:0x94 +fn_802986A4 = .text:0x802986A4; // type:function size:0xD8 +fn_8029877C = .text:0x8029877C; // type:function size:0x64 +fn_802987E0 = .text:0x802987E0; // type:function size:0x4C +fn_8029882C = .text:0x8029882C; // type:function size:0x94 +Init__10UIEventMgrFv = .text:0x802988C0; // type:function size:0xB4 +__ct__10UIEventMgrFv = .text:0x80298974; // type:function size:0x88 +fn_802989FC = .text:0x802989FC; // type:function size:0x4C +__dt__10UIEventMgrFv = .text:0x80298A48; // type:function size:0x98 +fn_80298AE0 = .text:0x80298AE0; // type:function size:0x38 +fn_80298B18 = .text:0x80298B18; // type:function size:0x8 +fn_80298B20 = .text:0x80298B20; // type:function size:0x8 +fn_80298B28 = .text:0x80298B28; // type:function size:0xF8 +fn_80298C20 = .text:0x80298C20; // type:function size:0x80 +fn_80298CA0 = .text:0x80298CA0; // type:function size:0x5C +fn_80298CFC = .text:0x80298CFC; // type:function size:0x2C +fn_80298D28 = .text:0x80298D28; // type:function size:0x2C +fn_80298D54 = .text:0x80298D54; // type:function size:0x8C +fn_80298DE0 = .text:0x80298DE0; // type:function size:0x30 +fn_80298E10 = .text:0x80298E10; // type:function size:0x30 +fn_80298E40 = .text:0x80298E40; // type:function size:0x54 +fn_80298E94 = .text:0x80298E94; // type:function size:0x54 +fn_80298EE8 = .text:0x80298EE8; // type:function size:0xA8 +fn_80298F90 = .text:0x80298F90; // type:function size:0xC4 +fn_80299054 = .text:0x80299054; // type:function size:0x9C +Handle__10UIEventMgrFP9DataArrayb = .text:0x802990F0; // type:function size:0x310 +fn_80299400 = .text:0x80299400; // type:function size:0x14 +fn_80299414 = .text:0x80299414; // type:function size:0x14 +fn_80299428 = .text:0x80299428; // type:function size:0x14 +fn_8029943C = .text:0x8029943C; // type:function size:0x14 +fn_80299450 = .text:0x80299450; // type:function size:0x14 +fn_80299464 = .text:0x80299464; // type:function size:0x14 +fn_80299478 = .text:0x80299478; // type:function size:0x14 +__ct__7UIStatsFv = .text:0x8029948C; // type:function size:0xA4 +fn_80299530 = .text:0x80299530; // type:function size:0x54 +fn_80299584 = .text:0x80299584; // type:function size:0x4C +fn_802995D0 = .text:0x802995D0; // type:function size:0x4 +fn_802995D4 = .text:0x802995D4; // type:function size:0x20 +fn_802995F4 = .text:0x802995F4; // type:function size:0xA48 +fn_8029A03C = .text:0x8029A03C; // type:function size:0x68 +fn_8029A0A4 = .text:0x8029A0A4; // type:function size:0x28 +fn_8029A0CC = .text:0x8029A0CC; // type:function size:0xAC +fn_8029A178 = .text:0x8029A178; // type:function size:0x70 +fn_8029A1E8 = .text:0x8029A1E8; // type:function size:0x70 +fn_8029A258 = .text:0x8029A258; // type:function size:0x88 +fn_8029A2E0 = .text:0x8029A2E0; // type:function size:0xC +fn_8029A2EC = .text:0x8029A2EC; // type:function size:0x58 +fn_8029A344 = .text:0x8029A344; // type:function size:0xC +Handle__7UIStatsFP9DataArrayb = .text:0x8029A350; // type:function size:0x330 +__dt__7UIStatsFv = .text:0x8029A680; // type:function size:0x74 +fn_8029A6F4 = .text:0x8029A6F4; // type:function size:0x50 +fn_8029A744 = .text:0x8029A744; // type:function size:0x80 +fn_8029A7C4 = .text:0x8029A7C4; // type:function size:0x44 +fn_8029A808 = .text:0x8029A808; // type:function size:0x58 +fn_8029A860 = .text:0x8029A860; // type:function size:0x60 +fn_8029A8C0 = .text:0x8029A8C0; // type:function size:0x58 +fn_8029A918 = .text:0x8029A918; // type:function size:0x58 +fn_8029A970 = .text:0x8029A970; // type:function size:0x50 +fn_8029A9C0 = .text:0x8029A9C0; // type:function size:0x44 +fn_8029AA04 = .text:0x8029AA04; // type:function size:0x3C +fn_8029AA40 = .text:0x8029AA40; // type:function size:0x70 +fn_8029AAB0 = .text:0x8029AAB0; // type:function size:0x68 +fn_8029AB18 = .text:0x8029AB18; // type:function size:0x40 +fn_8029AB58 = .text:0x8029AB58; // type:function size:0x4 +Handle__14UploadErrorMgrFP9DataArrayb = .text:0x8029AB5C; // type:function size:0xF4 +fn_8029AC50 = .text:0x8029AC50; // type:function size:0x6C +fn_8029ACBC = .text:0x8029ACBC; // type:function size:0x2C +fn_8029ACE8 = .text:0x8029ACE8; // type:function size:0x104 +fn_8029ADEC = .text:0x8029ADEC; // type:function size:0x1C +fn_8029AE08 = .text:0x8029AE08; // type:function size:0x38 +fn_8029AE40 = .text:0x8029AE40; // type:function size:0xC4 +fn_8029AF04 = .text:0x8029AF04; // type:function size:0x44 +fn_8029AF48 = .text:0x8029AF48; // type:function size:0x44 +fn_8029AF8C = .text:0x8029AF8C; // type:function size:0x94 +fn_8029B020 = .text:0x8029B020; // type:function size:0x80 +fn_8029B0A0 = .text:0x8029B0A0; // type:function size:0x80 +fn_8029B120 = .text:0x8029B120; // type:function size:0x80 +fn_8029B1A0 = .text:0x8029B1A0; // type:function size:0x50 +fn_8029B1F0 = .text:0x8029B1F0; // type:function size:0x9C +fn_8029B28C = .text:0x8029B28C; // type:function size:0x84 +fn_8029B310 = .text:0x8029B310; // type:function size:0x38 +fn_8029B348 = .text:0x8029B348; // type:function size:0x80 +fn_8029B3C8 = .text:0x8029B3C8; // type:function size:0xA8 +fn_8029B470 = .text:0x8029B470; // type:function size:0x58 +fn_8029B4C8 = .text:0x8029B4C8; // type:function size:0x158 +fn_8029B620 = .text:0x8029B620; // type:function size:0x54 +fn_8029B674 = .text:0x8029B674; // type:function size:0x44 +fn_8029B6B8 = .text:0x8029B6B8; // type:function size:0x50 +fn_8029B708 = .text:0x8029B708; // type:function size:0xC +fn_8029B714 = .text:0x8029B714; // type:function size:0x6C +fn_8029B780 = .text:0x8029B780; // type:function size:0x44 +fn_8029B7C4 = .text:0x8029B7C4; // type:function size:0x24 +fn_8029B7E8 = .text:0x8029B7E8; // type:function size:0x44 +fn_8029B82C = .text:0x8029B82C; // type:function size:0x3C +fn_8029B868 = .text:0x8029B868; // type:function size:0xB0 +fn_8029B918 = .text:0x8029B918; // type:function size:0x94 +fn_8029B9AC = .text:0x8029B9AC; // type:function size:0xC +fn_8029B9B8 = .text:0x8029B9B8; // type:function size:0x10 +fn_8029B9C8 = .text:0x8029B9C8; // type:function size:0xDC +fn_8029BAA4 = .text:0x8029BAA4; // type:function size:0x78 +fn_8029BB1C = .text:0x8029BB1C; // type:function size:0xE4 +fn_8029BC00 = .text:0x8029BC00; // type:function size:0xC +fn_8029BC0C = .text:0x8029BC0C; // type:function size:0xBC +fn_8029BCC8 = .text:0x8029BCC8; // type:function size:0xC +fn_8029BCD4 = .text:0x8029BCD4; // type:function size:0xA0 +fn_8029BD74 = .text:0x8029BD74; // type:function size:0xEC +fn_8029BE60 = .text:0x8029BE60; // type:function size:0xAC +fn_8029BF0C = .text:0x8029BF0C; // type:function size:0x64 +fn_8029BF70 = .text:0x8029BF70; // type:function size:0xC +fn_8029BF7C = .text:0x8029BF7C; // type:function size:0x70 +fn_8029BFEC = .text:0x8029BFEC; // type:function size:0x78 +fn_8029C064 = .text:0x8029C064; // type:function size:0xAC +fn_8029C110 = .text:0x8029C110; // type:function size:0x6C +fn_8029C17C = .text:0x8029C17C; // type:function size:0xC +fn_8029C188 = .text:0x8029C188; // type:function size:0x58 +fn_8029C1E0 = .text:0x8029C1E0; // type:function size:0x7C +fn_8029C25C = .text:0x8029C25C; // type:function size:0x78 +fn_8029C2D4 = .text:0x8029C2D4; // type:function size:0x98 +fn_8029C36C = .text:0x8029C36C; // type:function size:0x7C +fn_8029C3E8 = .text:0x8029C3E8; // type:function size:0x58 +fn_8029C440 = .text:0x8029C440; // type:function size:0x64 +fn_8029C4A4 = .text:0x8029C4A4; // type:function size:0x28 +fn_8029C4CC = .text:0x8029C4CC; // type:function size:0x68 +fn_8029C534 = .text:0x8029C534; // type:function size:0xC +fn_8029C540 = .text:0x8029C540; // type:function size:0x68 +fn_8029C5A8 = .text:0x8029C5A8; // type:function size:0x4 +fn_8029C5AC = .text:0x8029C5AC; // type:function size:0x88 +fn_8029C634 = .text:0x8029C634; // type:function size:0x2C +fn_8029C660 = .text:0x8029C660; // type:function size:0x10 +fn_8029C670 = .text:0x8029C670; // type:function size:0x4 +fn_8029C674 = .text:0x8029C674; // type:function size:0x3C +fn_8029C6B0 = .text:0x8029C6B0; // type:function size:0x40 +fn_8029C6F0 = .text:0x8029C6F0; // type:function size:0x8C +fn_8029C77C = .text:0x8029C77C; // type:function size:0x8 +fn_8029C784 = .text:0x8029C784; // type:function size:0x2C +fn_8029C7B0 = .text:0x8029C7B0; // type:function size:0x58 +fn_8029C808 = .text:0x8029C808; // type:function size:0x28 +fn_8029C830 = .text:0x8029C830; // type:function size:0x68 +fn_8029C898 = .text:0x8029C898; // type:function size:0x13C +fn_8029C9D4 = .text:0x8029C9D4; // type:function size:0x14 +fn_8029C9E8 = .text:0x8029C9E8; // type:function size:0x30 +fn_8029CA18 = .text:0x8029CA18; // type:function size:0xA0 +fn_8029CAB8 = .text:0x8029CAB8; // type:function size:0x8 +fn_8029CAC0 = .text:0x8029CAC0; // type:function size:0xC8 +fn_8029CB88 = .text:0x8029CB88; // type:function size:0x4C +fn_8029CBD4 = .text:0x8029CBD4; // type:function size:0x30 +fn_8029CC04 = .text:0x8029CC04; // type:function size:0xBC +fn_8029CCC0 = .text:0x8029CCC0; // type:function size:0x34 +fn_8029CCF4 = .text:0x8029CCF4; // type:function size:0x38 +fn_8029CD2C = .text:0x8029CD2C; // type:function size:0x14 +fn_8029CD40 = .text:0x8029CD40; // type:function size:0xB8 +fn_8029CDF8 = .text:0x8029CDF8; // type:function size:0x50 +fn_8029CE48 = .text:0x8029CE48; // type:function size:0x3C +fn_8029CE84 = .text:0x8029CE84; // type:function size:0x5C +fn_8029CEE0 = .text:0x8029CEE0; // type:function size:0x5C +__ct__20ViewSettingsProviderFv = .text:0x8029CF3C; // type:function size:0x158 +fn_8029D094 = .text:0x8029D094; // type:function size:0x78 +fn_8029D10C = .text:0x8029D10C; // type:function size:0x58 +fn_8029D164 = .text:0x8029D164; // type:function size:0x80 +fn_8029D1E4 = .text:0x8029D1E4; // type:function size:0x80 +fn_8029D264 = .text:0x8029D264; // type:function size:0x58 +fn_8029D2BC = .text:0x8029D2BC; // type:function size:0x54 +fn_8029D310 = .text:0x8029D310; // type:function size:0x5C +fn_8029D36C = .text:0x8029D36C; // type:function size:0x6C +fn_8029D3D8 = .text:0x8029D3D8; // type:function size:0x28 +fn_8029D400 = .text:0x8029D400; // type:function size:0x8 +fn_8029D408 = .text:0x8029D408; // type:function size:0x3C +fn_8029D444 = .text:0x8029D444; // type:function size:0x58 +fn_8029D49C = .text:0x8029D49C; // type:function size:0x30 +fn_8029D4CC = .text:0x8029D4CC; // type:function size:0x30 +fn_8029D4FC = .text:0x8029D4FC; // type:function size:0x40 +__ct__11ViewSettingF6Symbol = .text:0x8029D53C; // type:function size:0x60 +__ct__20ScoreTypeViewSettingFv = .text:0x8029D59C; // type:function size:0x5C +__ct__15SortViewSettingFv = .text:0x8029D5F8; // type:function size:0x54 +__ct__17HeaderViewSettingF6Symbol = .text:0x8029D64C; // type:function size:0x48 +fn_8029D694 = .text:0x8029D694; // type:function size:0x90 +fn_8029D724 = .text:0x8029D724; // type:function size:0x5C +fn_8029D780 = .text:0x8029D780; // type:function size:0x5C +fn_8029D7DC = .text:0x8029D7DC; // type:function size:0x94 +fn_8029D870 = .text:0x8029D870; // type:function size:0x8 +fn_8029D878 = .text:0x8029D878; // type:function size:0x84 +fn_8029D8FC = .text:0x8029D8FC; // type:function size:0x16C +fn_8029DA68 = .text:0x8029DA68; // type:function size:0x84 +fn_8029DAEC = .text:0x8029DAEC; // type:function size:0x38 +fn_8029DB24 = .text:0x8029DB24; // type:function size:0x40 +fn_8029DB64 = .text:0x8029DB64; // type:function size:0x60 +fn_8029DBC4 = .text:0x8029DBC4; // type:function size:0x3C0 +fn_8029DF84 = .text:0x8029DF84; // type:function size:0x68 +fn_8029DFEC = .text:0x8029DFEC; // type:function size:0x68 +fn_8029E054 = .text:0x8029E054; // type:function size:0x14 +fn_8029E068 = .text:0x8029E068; // type:function size:0x14 +Handle__20ViewSettingsProviderFP9DataArrayb = .text:0x8029E07C; // type:function size:0x2DC +fn_8029E358 = .text:0x8029E358; // type:function size:0x34 +fn_8029E38C = .text:0x8029E38C; // type:function size:0x58 +fn_8029E3E4 = .text:0x8029E3E4; // type:function size:0x68 +fn_8029E44C = .text:0x8029E44C; // type:function size:0x114 +fn_8029E560 = .text:0x8029E560; // type:function size:0x60 +fn_8029E5C0 = .text:0x8029E5C0; // type:function size:0x5C +fn_8029E61C = .text:0x8029E61C; // type:function size:0x54 +fn_8029E670 = .text:0x8029E670; // type:function size:0x5C +fn_8029E6CC = .text:0x8029E6CC; // type:function size:0x5C +fn_8029E728 = .text:0x8029E728; // type:function size:0x8 +fn_8029E730 = .text:0x8029E730; // type:function size:0x8 +fn_8029E738 = .text:0x8029E738; // type:function size:0x104 +fn_8029E83C = .text:0x8029E83C; // type:function size:0x48 +StaticClassName__8BinkClipFv = .text:0x8029E884; // type:function size:0x4C +fn_8029E8D0 = .text:0x8029E8D0; // type:function size:0x128 +fn_8029E9F8 = .text:0x8029E9F8; // type:function size:0x78 +fn_8029EA70 = .text:0x8029EA70; // type:function size:0x78 +fn_8029EAE8 = .text:0x8029EAE8; // type:function size:0x34 +fn_8029EB1C = .text:0x8029EB1C; // type:function size:0x34 +fn_8029EB50 = .text:0x8029EB50; // type:function size:0x60 +fn_8029EBB0 = .text:0x8029EBB0; // type:function size:0x7C +fn_8029EC2C = .text:0x8029EC2C; // type:function size:0x64 +fn_8029EC90 = .text:0x8029EC90; // type:function size:0x148 +fn_8029EDD8 = .text:0x8029EDD8; // type:function size:0x1CC +fn_8029EFA4 = .text:0x8029EFA4; // type:function size:0x54 +fn_8029EFF8 = .text:0x8029EFF8; // type:function size:0x7C +fn_8029F074 = .text:0x8029F074; // type:function size:0x38 +fn_8029F0AC = .text:0x8029F0AC; // type:function size:0x58 +Handle__14VoiceoverPanelFP9DataArrayb = .text:0x8029F104; // type:function size:0x188 +fn_8029F28C = .text:0x8029F28C; // type:function size:0x134 +fn_8029F3C0 = .text:0x8029F3C0; // type:function size:0x4 +fn_8029F3C4 = .text:0x8029F3C4; // type:function size:0x14 +fn_8029F3D8 = .text:0x8029F3D8; // type:function size:0x14 +fn_8029F3EC = .text:0x8029F3EC; // type:function size:0x14 +fn_8029F400 = .text:0x8029F400; // type:function size:0x14 +fn_8029F414 = .text:0x8029F414; // type:function size:0x8 +fn_8029F41C = .text:0x8029F41C; // type:function size:0x50 +fn_8029F46C = .text:0x8029F46C; // type:function size:0x54 +fn_8029F4C0 = .text:0x8029F4C0; // type:function size:0xDC +fn_8029F59C = .text:0x8029F59C; // type:function size:0x4C +fn_8029F5E8 = .text:0x8029F5E8; // type:function size:0x30 +fn_8029F618 = .text:0x8029F618; // type:function size:0x48 +fn_8029F660 = .text:0x8029F660; // type:function size:0x98 +fn_8029F6F8 = .text:0x8029F6F8; // type:function size:0xA8 +fn_8029F7A0 = .text:0x8029F7A0; // type:function size:0x44 +fn_8029F7E4 = .text:0x8029F7E4; // type:function size:0x50 +fn_8029F834 = .text:0x8029F834; // type:function size:0x7C +fn_8029F8B0 = .text:0x8029F8B0; // type:function size:0x10 +fn_8029F8C0 = .text:0x8029F8C0; // type:function size:0xA4 +fn_8029F964 = .text:0x8029F964; // type:function size:0x74 +fn_8029F9D8 = .text:0x8029F9D8; // type:function size:0xB0 +fn_8029FA88 = .text:0x8029FA88; // type:function size:0x80 +fn_8029FB08 = .text:0x8029FB08; // type:function size:0x4 +fn_8029FB0C = .text:0x8029FB0C; // type:function size:0x90 +fn_8029FB9C = .text:0x8029FB9C; // type:function size:0x4 +fn_8029FBA0 = .text:0x8029FBA0; // type:function size:0x40 +fn_8029FBE0 = .text:0x8029FBE0; // type:function size:0x8C +fn_8029FC6C = .text:0x8029FC6C; // type:function size:0x8 +fn_8029FC74 = .text:0x8029FC74; // type:function size:0x2C +fn_8029FCA0 = .text:0x8029FCA0; // type:function size:0x58 +fn_8029FCF8 = .text:0x8029FCF8; // type:function size:0x28 +fn_8029FD20 = .text:0x8029FD20; // type:function size:0x68 +fn_8029FD88 = .text:0x8029FD88; // type:function size:0x24 +fn_8029FDAC = .text:0x8029FDAC; // type:function size:0x50 +fn_8029FDFC = .text:0x8029FDFC; // type:function size:0x50 +__ct__15WaitingUserGateFv = .text:0x8029FE4C; // type:function size:0xAC +__dt__15WaitingUserGateFv = .text:0x8029FEF8; // type:function size:0x90 +fn_8029FF88 = .text:0x8029FF88; // type:function size:0x4 +fn_8029FF8C = .text:0x8029FF8C; // type:function size:0x17C +fn_802A0108 = .text:0x802A0108; // type:function size:0x54 +fn_802A015C = .text:0x802A015C; // type:function size:0xBC +fn_802A0218 = .text:0x802A0218; // type:function size:0x5C +Handle__15WaitingUserGateFP9DataArrayb = .text:0x802A0274; // type:function size:0x238 +fn_802A04AC = .text:0x802A04AC; // type:function size:0x68 +fn_802A0514 = .text:0x802A0514; // type:function size:0x58 +fn_802A056C = .text:0x802A056C; // type:function size:0x68 +fn_802A05D4 = .text:0x802A05D4; // type:function size:0x14 +fn_802A05E8 = .text:0x802A05E8; // type:function size:0x4 +fn_802A05EC = .text:0x802A05EC; // type:function size:0x58 +fn_802A0644 = .text:0x802A0644; // type:function size:0xC +fn_802A0650 = .text:0x802A0650; // type:function size:0x4 +fn_802A0654 = .text:0x802A0654; // type:function size:0x58 +fn_802A06AC = .text:0x802A06AC; // type:function size:0xC +fn_802A06B8 = .text:0x802A06B8; // type:function size:0x8 +fn_802A06C0 = .text:0x802A06C0; // type:function size:0x190 +fn_802A0850 = .text:0x802A0850; // type:function size:0x54 +fn_802A08A4 = .text:0x802A08A4; // type:function size:0x28 +fn_802A08CC = .text:0x802A08CC; // type:function size:0x68 +fn_802A0934 = .text:0x802A0934; // type:function size:0x14 +fn_802A0948 = .text:0x802A0948; // type:function size:0x14 +fn_802A095C = .text:0x802A095C; // type:function size:0xA8 +fn_802A0A04 = .text:0x802A0A04; // type:function size:0x58 +fn_802A0A5C = .text:0x802A0A5C; // type:function size:0x80 +fn_802A0ADC = .text:0x802A0ADC; // type:function size:0x80 +fn_802A0B5C = .text:0x802A0B5C; // type:function size:0x58 +fn_802A0BB4 = .text:0x802A0BB4; // type:function size:0x54 +fn_802A0C08 = .text:0x802A0C08; // type:function size:0x5C +fn_802A0C64 = .text:0x802A0C64; // type:function size:0x6C +fn_802A0CD0 = .text:0x802A0CD0; // type:function size:0x28 +fn_802A0CF8 = .text:0x802A0CF8; // type:function size:0x8 +fn_802A0D00 = .text:0x802A0D00; // type:function size:0x8 +fn_802A0D08 = .text:0x802A0D08; // type:function size:0x3C +fn_802A0D44 = .text:0x802A0D44; // type:function size:0x30 +fn_802A0D74 = .text:0x802A0D74; // type:function size:0x30 +fn_802A0DA4 = .text:0x802A0DA4; // type:function size:0x40 +fn_802A0DE4 = .text:0x802A0DE4; // type:function size:0x98 +fn_802A0E7C = .text:0x802A0E7C; // type:function size:0x68 +fn_802A0EE4 = .text:0x802A0EE4; // type:function size:0xBC +fn_802A0FA0 = .text:0x802A0FA0; // type:function size:0x94 +fn_802A1034 = .text:0x802A1034; // type:function size:0x378 +fn_802A13AC = .text:0x802A13AC; // type:function size:0x4 +fn_802A13B0 = .text:0x802A13B0; // type:function size:0x88 +fn_802A1438 = .text:0x802A1438; // type:function size:0x2C +fn_802A1464 = .text:0x802A1464; // type:function size:0x10 +fn_802A1474 = .text:0x802A1474; // type:function size:0x5C +fn_802A14D0 = .text:0x802A14D0; // type:function size:0x50 +fn_802A1520 = .text:0x802A1520; // type:function size:0xC +fn_802A152C = .text:0x802A152C; // type:function size:0x3C +fn_802A1568 = .text:0x802A1568; // type:function size:0x40 +fn_802A15A8 = .text:0x802A15A8; // type:function size:0x8C +fn_802A1634 = .text:0x802A1634; // type:function size:0x8 +fn_802A163C = .text:0x802A163C; // type:function size:0x2C +fn_802A1668 = .text:0x802A1668; // type:function size:0x58 +fn_802A16C0 = .text:0x802A16C0; // type:function size:0x28 +fn_802A16E8 = .text:0x802A16E8; // type:function size:0x68 +fn_802A1750 = .text:0x802A1750; // type:function size:0x388 +fn_802A1AD8 = .text:0x802A1AD8; // type:function size:0x10 +fn_802A1AE8 = .text:0x802A1AE8; // type:function size:0x15C +fn_802A1C44 = .text:0x802A1C44; // type:function size:0x44 +fn_802A1C88 = .text:0x802A1C88; // type:function size:0x8 +fn_802A1C90 = .text:0x802A1C90; // type:function size:0x80 +fn_802A1D10 = .text:0x802A1D10; // type:function size:0x16C +fn_802A1E7C = .text:0x802A1E7C; // type:function size:0xC +fn_802A1E88 = .text:0x802A1E88; // type:function size:0x8 +fn_802A1E90 = .text:0x802A1E90; // type:function size:0x28 +Handle__24OvershellProfileProviderFP9DataArrayb = .text:0x802A1EB8; // type:function size:0xD0 +fn_802A1F88 = .text:0x802A1F88; // type:function size:0x114 +fn_802A209C = .text:0x802A209C; // type:function size:0x60 +fn_802A20FC = .text:0x802A20FC; // type:function size:0x5C +fn_802A2158 = .text:0x802A2158; // type:function size:0x54 +fn_802A21AC = .text:0x802A21AC; // type:function size:0x5C +fn_802A2208 = .text:0x802A2208; // type:function size:0x5C +fn_802A2264 = .text:0x802A2264; // type:function size:0x8 +fn_802A226C = .text:0x802A226C; // type:function size:0x8 +fn_802A2274 = .text:0x802A2274; // type:function size:0x4 +fn_802A2278 = .text:0x802A2278; // type:function size:0x2C +fn_802A22A4 = .text:0x802A22A4; // type:function size:0x10 +fn_802A22B4 = .text:0x802A22B4; // type:function size:0x3C +fn_802A22F0 = .text:0x802A22F0; // type:function size:0x8 +fn_802A22F8 = .text:0x802A22F8; // type:function size:0x94 +fn_802A238C = .text:0x802A238C; // type:function size:0xB8 +fn_802A2444 = .text:0x802A2444; // type:function size:0x8 +fn_802A244C = .text:0x802A244C; // type:function size:0x58 +fn_802A24A4 = .text:0x802A24A4; // type:function size:0x60 +fn_802A2504 = .text:0x802A2504; // type:function size:0x8 +fn_802A250C = .text:0x802A250C; // type:function size:0x8 +fn_802A2514 = .text:0x802A2514; // type:function size:0x4 +fn_802A2518 = .text:0x802A2518; // type:function size:0x29C +fn_802A27B4 = .text:0x802A27B4; // type:function size:0x18 +fn_802A27CC = .text:0x802A27CC; // type:function size:0x8 +fn_802A27D4 = .text:0x802A27D4; // type:function size:0x8 +fn_802A27DC = .text:0x802A27DC; // type:function size:0x4 +fn_802A27E0 = .text:0x802A27E0; // type:function size:0x50 +fn_802A2830 = .text:0x802A2830; // type:function size:0x4 +fn_802A2834 = .text:0x802A2834; // type:function size:0x304 +fn_802A2B38 = .text:0x802A2B38; // type:function size:0xC +fn_802A2B44 = .text:0x802A2B44; // type:function size:0x4 +fn_802A2B48 = .text:0x802A2B48; // type:function size:0x58 +fn_802A2BA0 = .text:0x802A2BA0; // type:function size:0x98 +fn_802A2C38 = .text:0x802A2C38; // type:function size:0xAC +fn_802A2CE4 = .text:0x802A2CE4; // type:function size:0x1A8 +fn_802A2E8C = .text:0x802A2E8C; // type:function size:0xD4 +fn_802A2F60 = .text:0x802A2F60; // type:function size:0x1BC +fn_802A311C = .text:0x802A311C; // type:function size:0x8 +fn_802A3124 = .text:0x802A3124; // type:function size:0x58 +fn_802A317C = .text:0x802A317C; // type:function size:0x64 +fn_802A31E0 = .text:0x802A31E0; // type:function size:0x44 +fn_802A3224 = .text:0x802A3224; // type:function size:0x8 +fn_802A322C = .text:0x802A322C; // type:function size:0x1E0 +fn_802A340C = .text:0x802A340C; // type:function size:0x68 +fn_802A3474 = .text:0x802A3474; // type:function size:0x8 +fn_802A347C = .text:0x802A347C; // type:function size:0x4 +fn_802A3480 = .text:0x802A3480; // type:function size:0x38 +fn_802A34B8 = .text:0x802A34B8; // type:function size:0x64 +fn_802A351C = .text:0x802A351C; // type:function size:0x40 +fn_802A355C = .text:0x802A355C; // type:function size:0x64 +fn_802A35C0 = .text:0x802A35C0; // type:function size:0x14 +fn_802A35D4 = .text:0x802A35D4; // type:function size:0xC4 +fn_802A3698 = .text:0x802A3698; // type:function size:0x78 +fn_802A3710 = .text:0x802A3710; // type:function size:0x80 +fn_802A3790 = .text:0x802A3790; // type:function size:0x3C +fn_802A37CC = .text:0x802A37CC; // type:function size:0x60 +fn_802A382C = .text:0x802A382C; // type:function size:0x80 +fn_802A38AC = .text:0x802A38AC; // type:function size:0xC4 +fn_802A3970 = .text:0x802A3970; // type:function size:0x3C +fn_802A39AC = .text:0x802A39AC; // type:function size:0x3C +fn_802A39E8 = .text:0x802A39E8; // type:function size:0x3C +fn_802A3A24 = .text:0x802A3A24; // type:function size:0x3C +fn_802A3A60 = .text:0x802A3A60; // type:function size:0x74 +fn_802A3AD4 = .text:0x802A3AD4; // type:function size:0x12C +fn_802A3C00 = .text:0x802A3C00; // type:function size:0xB8 +Handle__18WiiFriendsProviderFP9DataArrayb = .text:0x802A3CB8; // type:function size:0x5D4 +__ct__25WiiFriendMgrOpCompleteMsgFP9DataArray = .text:0x802A428C; // type:function size:0x3C +fn_802A42C8 = .text:0x802A42C8; // type:function size:0xA0 +fn_802A4368 = .text:0x802A4368; // type:function size:0xB0 +fn_802A4418 = .text:0x802A4418; // type:function size:0x8C +fn_802A44A4 = .text:0x802A44A4; // type:function size:0x8 +fn_802A44AC = .text:0x802A44AC; // type:function size:0x5C +fn_802A4508 = .text:0x802A4508; // type:function size:0x8 +fn_802A4510 = .text:0x802A4510; // type:function size:0x94 +fn_802A45A4 = .text:0x802A45A4; // type:function size:0x5C +fn_802A4600 = .text:0x802A4600; // type:function size:0x8 +fn_802A4608 = .text:0x802A4608; // type:function size:0x58 +Handle__25WiiFriendsDetailsProviderFP9DataArrayb = .text:0x802A4660; // type:function size:0x25C +fn_802A48BC = .text:0x802A48BC; // type:function size:0x8 +fn_802A48C4 = .text:0x802A48C4; // type:function size:0x10C +fn_802A49D0 = .text:0x802A49D0; // type:function size:0x5C +fn_802A4A2C = .text:0x802A4A2C; // type:function size:0x34 +fn_802A4A60 = .text:0x802A4A60; // type:function size:0xF0 +fn_802A4B50 = .text:0x802A4B50; // type:function size:0x5C +fn_802A4BAC = .text:0x802A4BAC; // type:function size:0x5C +fn_802A4C08 = .text:0x802A4C08; // type:function size:0xC +fn_802A4C14 = .text:0x802A4C14; // type:function size:0xE0 +fn_802A4CF4 = .text:0x802A4CF4; // type:function size:0x9C +fn_802A4D90 = .text:0x802A4D90; // type:function size:0x8 +fn_802A4D98 = .text:0x802A4D98; // type:function size:0x84 +fn_802A4E1C = .text:0x802A4E1C; // type:function size:0x80 +fn_802A4E9C = .text:0x802A4E9C; // type:function size:0x8 +fn_802A4EA4 = .text:0x802A4EA4; // type:function size:0x158 +fn_802A4FFC = .text:0x802A4FFC; // type:function size:0xAC +fn_802A50A8 = .text:0x802A50A8; // type:function size:0x454 +fn_802A54FC = .text:0x802A54FC; // type:function size:0xC +fn_802A5508 = .text:0x802A5508; // type:function size:0x4C +fn_802A5554 = .text:0x802A5554; // type:function size:0x4C +fn_802A55A0 = .text:0x802A55A0; // type:function size:0x8 +fn_802A55A8 = .text:0x802A55A8; // type:function size:0x8 +fn_802A55B0 = .text:0x802A55B0; // type:function size:0x4C +fn_802A55FC = .text:0x802A55FC; // type:function size:0x54 +fn_802A5650 = .text:0x802A5650; // type:function size:0x70 +fn_802A56C0 = .text:0x802A56C0; // type:function size:0x9C +fn_802A575C = .text:0x802A575C; // type:function size:0x98 +Handle__22WiiInvitationsProviderFP9DataArrayb = .text:0x802A57F4; // type:function size:0x3D0 +fn_802A5BC4 = .text:0x802A5BC4; // type:function size:0x2C +__ct__28EnumerateMessagesCompleteMsgFP9DataArray = .text:0x802A5BF0; // type:function size:0x3C +fn_802A5C2C = .text:0x802A5C2C; // type:function size:0x3C +fn_802A5C68 = .text:0x802A5C68; // type:function size:0x134 +fn_802A5D9C = .text:0x802A5D9C; // type:function size:0x4 +fn_802A5DA0 = .text:0x802A5DA0; // type:function size:0x64 +fn_802A5E04 = .text:0x802A5E04; // type:function size:0x8 +fn_802A5E0C = .text:0x802A5E0C; // type:function size:0x8 +fn_802A5E14 = .text:0x802A5E14; // type:function size:0x8 +fn_802A5E1C = .text:0x802A5E1C; // type:function size:0x8 +fn_802A5E24 = .text:0x802A5E24; // type:function size:0x8 +fn_802A5E2C = .text:0x802A5E2C; // type:function size:0x8 +fn_802A5E34 = .text:0x802A5E34; // type:function size:0x8 +fn_802A5E3C = .text:0x802A5E3C; // type:function size:0x8 +fn_802A5E44 = .text:0x802A5E44; // type:function size:0x98 +fn_802A5EDC = .text:0x802A5EDC; // type:function size:0x7C +fn_802A5F58 = .text:0x802A5F58; // type:function size:0x4 +fn_802A5F5C = .text:0x802A5F5C; // type:function size:0x4 +fn_802A5F60 = .text:0x802A5F60; // type:function size:0x4 +fn_802A5F64 = .text:0x802A5F64; // type:function size:0x104 +fn_802A6068 = .text:0x802A6068; // type:function size:0xC8 +fn_802A6130 = .text:0x802A6130; // type:function size:0x4 +fn_802A6134 = .text:0x802A6134; // type:function size:0x8 +fn_802A613C = .text:0x802A613C; // type:function size:0x8 +fn_802A6144 = .text:0x802A6144; // type:function size:0x8 +fn_802A614C = .text:0x802A614C; // type:function size:0x1A8 +fn_802A62F4 = .text:0x802A62F4; // type:function size:0x8 +fn_802A62FC = .text:0x802A62FC; // type:function size:0xC +fn_802A6308 = .text:0x802A6308; // type:function size:0x8 +fn_802A6310 = .text:0x802A6310; // type:function size:0x64 +fn_802A6374 = .text:0x802A6374; // type:function size:0x7C +fn_802A63F0 = .text:0x802A63F0; // type:function size:0x38 +fn_802A6428 = .text:0x802A6428; // type:function size:0x28 +fn_802A6450 = .text:0x802A6450; // type:function size:0x14 +fn_802A6464 = .text:0x802A6464; // type:function size:0x50 +fn_802A64B4 = .text:0x802A64B4; // type:function size:0x48 +fn_802A64FC = .text:0x802A64FC; // type:function size:0x7C +fn_802A6578 = .text:0x802A6578; // type:function size:0x58 +fn_802A65D0 = .text:0x802A65D0; // type:function size:0xC8 +fn_802A6698 = .text:0x802A6698; // type:function size:0xB4 +fn_802A674C = .text:0x802A674C; // type:function size:0xC +fn_802A6758 = .text:0x802A6758; // type:function size:0xC +fn_802A6764 = .text:0x802A6764; // type:function size:0x10 +fn_802A6774 = .text:0x802A6774; // type:function size:0xC +Handle__15WiiProfilePanelFP9DataArrayb = .text:0x802A6780; // type:function size:0x5E4 +fn_802A6D64 = .text:0x802A6D64; // type:function size:0x134 +fn_802A6E98 = .text:0x802A6E98; // type:function size:0x4 +fn_802A6E9C = .text:0x802A6E9C; // type:function size:0x14 +fn_802A6EB0 = .text:0x802A6EB0; // type:function size:0x14 +fn_802A6EC4 = .text:0x802A6EC4; // type:function size:0x14 +fn_802A6ED8 = .text:0x802A6ED8; // type:function size:0x14 +fn_802A6EEC = .text:0x802A6EEC; // type:function size:0x14 +fn_802A6F00 = .text:0x802A6F00; // type:function size:0x14 +fn_802A6F14 = .text:0x802A6F14; // type:function size:0x14 +fn_802A6F28 = .text:0x802A6F28; // type:function size:0x4C +fn_802A6F74 = .text:0x802A6F74; // type:function size:0x40 +fn_802A6FB4 = .text:0x802A6FB4; // type:function size:0x4 +fn_802A6FB8 = .text:0x802A6FB8; // type:function size:0x50 +fn_802A7008 = .text:0x802A7008; // type:function size:0x54 +fn_802A705C = .text:0x802A705C; // type:function size:0x48 +fn_802A70A4 = .text:0x802A70A4; // type:function size:0xC4 +fn_802A7168 = .text:0x802A7168; // type:function size:0xEC +fn_802A7254 = .text:0x802A7254; // type:function size:0x16C +fn_802A73C0 = .text:0x802A73C0; // type:function size:0x1A0 +fn_802A7560 = .text:0x802A7560; // type:function size:0xC4 +fn_802A7624 = .text:0x802A7624; // type:function size:0x4 +fn_802A7628 = .text:0x802A7628; // type:function size:0x128 +fn_802A7750 = .text:0x802A7750; // type:function size:0x58 +fn_802A77A8 = .text:0x802A77A8; // type:function size:0x4 +fn_802A77AC = .text:0x802A77AC; // type:function size:0x58 +fn_802A7804 = .text:0x802A7804; // type:function size:0xC +fn_802A7810 = .text:0x802A7810; // type:function size:0xC +fn_802A781C = .text:0x802A781C; // type:function size:0x74 +fn_802A7890 = .text:0x802A7890; // type:function size:0x8C +fn_802A791C = .text:0x802A791C; // type:function size:0x4 +fn_802A7920 = .text:0x802A7920; // type:function size:0x14C +fn_802A7A6C = .text:0x802A7A6C; // type:function size:0x8 +fn_802A7A74 = .text:0x802A7A74; // type:function size:0x98 +fn_802A7B0C = .text:0x802A7B0C; // type:function size:0x38 +fn_802A7B44 = .text:0x802A7B44; // type:function size:0x68 +fn_802A7BAC = .text:0x802A7BAC; // type:function size:0x14 +fn_802A7BC0 = .text:0x802A7BC0; // type:function size:0x24 +fn_802A7BE4 = .text:0x802A7BE4; // type:function size:0x84 +fn_802A7C68 = .text:0x802A7C68; // type:function size:0x28 +fn_802A7C90 = .text:0x802A7C90; // type:function size:0xC +fn_802A7C9C = .text:0x802A7C9C; // type:function size:0x8 +fn_802A7CA4 = .text:0x802A7CA4; // type:function size:0xA8 +fn_802A7D4C = .text:0x802A7D4C; // type:function size:0x10 +fn_802A7D5C = .text:0x802A7D5C; // type:function size:0x8 +fn_802A7D64 = .text:0x802A7D64; // type:function size:0x5C +fn_802A7DC0 = .text:0x802A7DC0; // type:function size:0x5C +fn_802A7E1C = .text:0x802A7E1C; // type:function size:0x68 +fn_802A7E84 = .text:0x802A7E84; // type:function size:0x58 +fn_802A7EDC = .text:0x802A7EDC; // type:function size:0x68 +fn_802A7F44 = .text:0x802A7F44; // type:function size:0xD8 +push_back__Q211stlpmtx_std44vector>FRCUs = .text:0x802A801C; // type:function size:0x4 +fn_802A8020 = .text:0x802A8020; // type:function size:0x88 +fn_802A80A8 = .text:0x802A80A8; // type:function size:0x14 +fn_802A80BC = .text:0x802A80BC; // type:function size:0x50 +fn_802A810C = .text:0x802A810C; // type:function size:0x10 +fn_802A811C = .text:0x802A811C; // type:function size:0x104 +fn_802A8220 = .text:0x802A8220; // type:function size:0x94 +fn_802A82B4 = .text:0x802A82B4; // type:function size:0x94 +fn_802A8348 = .text:0x802A8348; // type:function size:0x94 +Handle__26StoreOfferContentsProviderFP9DataArrayb = .text:0x802A83DC; // type:function size:0x300 +fn_802A86DC = .text:0x802A86DC; // type:function size:0x8 +fn_802A86E4 = .text:0x802A86E4; // type:function size:0x8 +fn_802A86EC = .text:0x802A86EC; // type:function size:0x8 +fn_802A86F4 = .text:0x802A86F4; // type:function size:0x8 +fn_802A86FC = .text:0x802A86FC; // type:function size:0x8 +fn_802A8704 = .text:0x802A8704; // type:function size:0x8 +fn_802A870C = .text:0x802A870C; // type:function size:0x8 +fn_802A8714 = .text:0x802A8714; // type:function size:0x8 +fn_802A871C = .text:0x802A871C; // type:function size:0x7C +fn_802A8798 = .text:0x802A8798; // type:function size:0x5C +fn_802A87F4 = .text:0x802A87F4; // type:function size:0xB8 +fn_802A88AC = .text:0x802A88AC; // type:function size:0x8 +fn_802A88B4 = .text:0x802A88B4; // type:function size:0x8 +fn_802A88BC = .text:0x802A88BC; // type:function size:0x8 +fn_802A88C4 = .text:0x802A88C4; // type:function size:0x7C +fn_802A8940 = .text:0x802A8940; // type:function size:0x28 +fn_802A8968 = .text:0x802A8968; // type:function size:0x110 +fn_802A8A78 = .text:0x802A8A78; // type:function size:0x74 +fn_802A8AEC = .text:0x802A8AEC; // type:function size:0x5C +fn_802A8B48 = .text:0x802A8B48; // type:function size:0x168 +fn_802A8CB0 = .text:0x802A8CB0; // type:function size:0x8 +fn_802A8CB8 = .text:0x802A8CB8; // type:function size:0x8 +fn_802A8CC0 = .text:0x802A8CC0; // type:function size:0x8 +fn_802A8CC8 = .text:0x802A8CC8; // type:function size:0x8 +fn_802A8CD0 = .text:0x802A8CD0; // type:function size:0x100 +fn_802A8DD0 = .text:0x802A8DD0; // type:function size:0x8 +fn_802A8DD8 = .text:0x802A8DD8; // type:function size:0x114 +fn_802A8EEC = .text:0x802A8EEC; // type:function size:0x80 +fn_802A8F6C = .text:0x802A8F6C; // type:function size:0x27C +fn_802A91E8 = .text:0x802A91E8; // type:function size:0x8 +fn_802A91F0 = .text:0x802A91F0; // type:function size:0x4C +fn_802A923C = .text:0x802A923C; // type:function size:0x74 +fn_802A92B0 = .text:0x802A92B0; // type:function size:0x74 +fn_802A9324 = .text:0x802A9324; // type:function size:0x8 +fn_802A932C = .text:0x802A932C; // type:function size:0x8 +fn_802A9334 = .text:0x802A9334; // type:function size:0x8 +fn_802A933C = .text:0x802A933C; // type:function size:0x10 +fn_802A934C = .text:0x802A934C; // type:function size:0x10 +fn_802A935C = .text:0x802A935C; // type:function size:0x30 +fn_802A938C = .text:0x802A938C; // type:function size:0x30 +fn_802A93BC = .text:0x802A93BC; // type:function size:0x8 +fn_802A93C4 = .text:0x802A93C4; // type:function size:0x8 +fn_802A93CC = .text:0x802A93CC; // type:function size:0x8 +fn_802A93D4 = .text:0x802A93D4; // type:function size:0x8 +fn_802A93DC = .text:0x802A93DC; // type:function size:0x8 +fn_802A93E4 = .text:0x802A93E4; // type:function size:0x8 +fn_802A93EC = .text:0x802A93EC; // type:function size:0x60 +fn_802A944C = .text:0x802A944C; // type:function size:0x68 +fn_802A94B4 = .text:0x802A94B4; // type:function size:0x4 +fn_802A94B8 = .text:0x802A94B8; // type:function size:0x14 +fn_802A94CC = .text:0x802A94CC; // type:function size:0x8 +fn_802A94D4 = .text:0x802A94D4; // type:function size:0x14 +fn_802A94E8 = .text:0x802A94E8; // type:function size:0x1C +fn_802A9504 = .text:0x802A9504; // type:function size:0x8 +fn_802A950C = .text:0x802A950C; // type:function size:0x50 +fn_802A955C = .text:0x802A955C; // type:function size:0x58 +fn_802A95B4 = .text:0x802A95B4; // type:function size:0x60 +fn_802A9614 = .text:0x802A9614; // type:function size:0x58 +fn_802A966C = .text:0x802A966C; // type:function size:0x58 +fn_802A96C4 = .text:0x802A96C4; // type:function size:0x50 +fn_802A9714 = .text:0x802A9714; // type:function size:0x58 +fn_802A976C = .text:0x802A976C; // type:function size:0x60 +fn_802A97CC = .text:0x802A97CC; // type:function size:0x58 +fn_802A9824 = .text:0x802A9824; // type:function size:0x58 +fn_802A987C = .text:0x802A987C; // type:function size:0x50 +fn_802A98CC = .text:0x802A98CC; // type:function size:0x58 +fn_802A9924 = .text:0x802A9924; // type:function size:0x60 +fn_802A9984 = .text:0x802A9984; // type:function size:0x58 +fn_802A99DC = .text:0x802A99DC; // type:function size:0x58 +fn_802A9A34 = .text:0x802A9A34; // type:function size:0x50 +fn_802A9A84 = .text:0x802A9A84; // type:function size:0x44 +fn_802A9AC8 = .text:0x802A9AC8; // type:function size:0x3C +fn_802A9B04 = .text:0x802A9B04; // type:function size:0x70 +fn_802A9B74 = .text:0x802A9B74; // type:function size:0x44 +fn_802A9BB8 = .text:0x802A9BB8; // type:function size:0x3C +fn_802A9BF4 = .text:0x802A9BF4; // type:function size:0x70 +fn_802A9C64 = .text:0x802A9C64; // type:function size:0x44 +fn_802A9CA8 = .text:0x802A9CA8; // type:function size:0x3C +fn_802A9CE4 = .text:0x802A9CE4; // type:function size:0x70 +fn_802A9D54 = .text:0x802A9D54; // type:function size:0x84 +fn_802A9DD8 = .text:0x802A9DD8; // type:function size:0x19C +fn_802A9F74 = .text:0x802A9F74; // type:function size:0x4 +fn_802A9F78 = .text:0x802A9F78; // type:function size:0x8 +fn_802A9F80 = .text:0x802A9F80; // type:function size:0x34 +fn_802A9FB4 = .text:0x802A9FB4; // type:function size:0x4 +fn_802A9FB8 = .text:0x802A9FB8; // type:function size:0x8 +fn_802A9FC0 = .text:0x802A9FC0; // type:function size:0x4 +fn_802A9FC4 = .text:0x802A9FC4; // type:function size:0x8 +fn_802A9FCC = .text:0x802A9FCC; // type:function size:0x34 +fn_802AA000 = .text:0x802AA000; // type:function size:0x4 +fn_802AA004 = .text:0x802AA004; // type:function size:0x8 +fn_802AA00C = .text:0x802AA00C; // type:function size:0x4 +fn_802AA010 = .text:0x802AA010; // type:function size:0x8 +fn_802AA018 = .text:0x802AA018; // type:function size:0x34 +fn_802AA04C = .text:0x802AA04C; // type:function size:0x4 +fn_802AA050 = .text:0x802AA050; // type:function size:0x8 +fn_802AA058 = .text:0x802AA058; // type:function size:0xB4 +fn_802AA10C = .text:0x802AA10C; // type:function size:0xEC +fn_802AA1F8 = .text:0x802AA1F8; // type:function size:0xFC +fn_802AA2F4 = .text:0x802AA2F4; // type:function size:0x58 +fn_802AA34C = .text:0x802AA34C; // type:function size:0x4 +fn_802AA350 = .text:0x802AA350; // type:function size:0x40 +fn_802AA390 = .text:0x802AA390; // type:function size:0x74 +fn_802AA404 = .text:0x802AA404; // type:function size:0x34 +fn_802AA438 = .text:0x802AA438; // type:function size:0x74 +fn_802AA4AC = .text:0x802AA4AC; // type:function size:0x2C +fn_802AA4D8 = .text:0x802AA4D8; // type:function size:0x30 +fn_802AA508 = .text:0x802AA508; // type:function size:0xA0 +fn_802AA5A8 = .text:0x802AA5A8; // type:function size:0xEC +fn_802AA694 = .text:0x802AA694; // type:function size:0xFC +fn_802AA790 = .text:0x802AA790; // type:function size:0x58 +fn_802AA7E8 = .text:0x802AA7E8; // type:function size:0x4 +fn_802AA7EC = .text:0x802AA7EC; // type:function size:0x40 +fn_802AA82C = .text:0x802AA82C; // type:function size:0x74 +fn_802AA8A0 = .text:0x802AA8A0; // type:function size:0x34 +fn_802AA8D4 = .text:0x802AA8D4; // type:function size:0x74 +fn_802AA948 = .text:0x802AA948; // type:function size:0x2C +fn_802AA974 = .text:0x802AA974; // type:function size:0x30 +fn_802AA9A4 = .text:0x802AA9A4; // type:function size:0xA0 +fn_802AAA44 = .text:0x802AAA44; // type:function size:0xE8 +fn_802AAB2C = .text:0x802AAB2C; // type:function size:0xFC +fn_802AAC28 = .text:0x802AAC28; // type:function size:0x58 +fn_802AAC80 = .text:0x802AAC80; // type:function size:0x4 +fn_802AAC84 = .text:0x802AAC84; // type:function size:0x40 +fn_802AACC4 = .text:0x802AACC4; // type:function size:0x74 +fn_802AAD38 = .text:0x802AAD38; // type:function size:0x34 +fn_802AAD6C = .text:0x802AAD6C; // type:function size:0x74 +fn_802AADE0 = .text:0x802AADE0; // type:function size:0x2C +fn_802AAE0C = .text:0x802AAE0C; // type:function size:0x30 +fn_802AAE3C = .text:0x802AAE3C; // type:function size:0xA0 +fn_802AAEDC = .text:0x802AAEDC; // type:function size:0xE4 +fn_802AAFC0 = .text:0x802AAFC0; // type:function size:0x138 +fn_802AB0F8 = .text:0x802AB0F8; // type:function size:0x388 +fn_802AB480 = .text:0x802AB480; // type:function size:0x6C +fn_802AB4EC = .text:0x802AB4EC; // type:function size:0x2C +fn_802AB518 = .text:0x802AB518; // type:function size:0x388 +fn_802AB8A0 = .text:0x802AB8A0; // type:function size:0x6C +fn_802AB90C = .text:0x802AB90C; // type:function size:0x2C +fn_802AB938 = .text:0x802AB938; // type:function size:0x388 +fn_802ABCC0 = .text:0x802ABCC0; // type:function size:0x6C +fn_802ABD2C = .text:0x802ABD2C; // type:function size:0x2C +fn_802ABD58 = .text:0x802ABD58; // type:function size:0x158 +fn_802ABEB0 = .text:0x802ABEB0; // type:function size:0x44 +fn_802ABEF4 = .text:0x802ABEF4; // type:function size:0x104 +fn_802ABFF8 = .text:0x802ABFF8; // type:function size:0x5C +fn_802AC054 = .text:0x802AC054; // type:function size:0x10 +fn_802AC064 = .text:0x802AC064; // type:function size:0x158 +fn_802AC1BC = .text:0x802AC1BC; // type:function size:0x44 +fn_802AC200 = .text:0x802AC200; // type:function size:0x104 +fn_802AC304 = .text:0x802AC304; // type:function size:0x5C +fn_802AC360 = .text:0x802AC360; // type:function size:0x10 +fn_802AC370 = .text:0x802AC370; // type:function size:0x158 +fn_802AC4C8 = .text:0x802AC4C8; // type:function size:0x44 +fn_802AC50C = .text:0x802AC50C; // type:function size:0x104 +fn_802AC610 = .text:0x802AC610; // type:function size:0x5C +fn_802AC66C = .text:0x802AC66C; // type:function size:0x10 +fn_802AC67C = .text:0x802AC67C; // type:function size:0x48 +fn_802AC6C4 = .text:0x802AC6C4; // type:function size:0x98 +fn_802AC75C = .text:0x802AC75C; // type:function size:0x100 +fn_802AC85C = .text:0x802AC85C; // type:function size:0xD0 +fn_802AC92C = .text:0x802AC92C; // type:function size:0xE8 +fn_802ACA14 = .text:0x802ACA14; // type:function size:0xA8 +fn_802ACABC = .text:0x802ACABC; // type:function size:0x34 +fn_802ACAF0 = .text:0x802ACAF0; // type:function size:0x84 +fn_802ACB74 = .text:0x802ACB74; // type:function size:0x84 +fn_802ACBF8 = .text:0x802ACBF8; // type:function size:0x54 +fn_802ACC4C = .text:0x802ACC4C; // type:function size:0x54 +fn_802ACCA0 = .text:0x802ACCA0; // type:function size:0x114 +fn_802ACDB4 = .text:0x802ACDB4; // type:function size:0x70 +fn_802ACE24 = .text:0x802ACE24; // type:function size:0x88 +fn_802ACEAC = .text:0x802ACEAC; // type:function size:0x88 +fn_802ACF34 = .text:0x802ACF34; // type:function size:0x88 +fn_802ACFBC = .text:0x802ACFBC; // type:function size:0x88 +fn_802AD044 = .text:0x802AD044; // type:function size:0x134 +fn_802AD178 = .text:0x802AD178; // type:function size:0x50 +fn_802AD1C8 = .text:0x802AD1C8; // type:function size:0x4C +fn_802AD214 = .text:0x802AD214; // type:function size:0x68 +fn_802AD27C = .text:0x802AD27C; // type:function size:0x68 +fn_802AD2E4 = .text:0x802AD2E4; // type:function size:0x68 +fn_802AD34C = .text:0x802AD34C; // type:function size:0xD0 +Handle__16QuestFilterPanelFP9DataArrayb = .text:0x802AD41C; // type:function size:0x22C +fn_802AD648 = .text:0x802AD648; // type:function size:0x7C +fn_802AD6C4 = .text:0x802AD6C4; // type:function size:0x134 +fn_802AD7F8 = .text:0x802AD7F8; // type:function size:0x4 +fn_802AD7FC = .text:0x802AD7FC; // type:function size:0x23C +fn_802ADA38 = .text:0x802ADA38; // type:function size:0x15C +fn_802ADB94 = .text:0x802ADB94; // type:function size:0xBC +fn_802ADC50 = .text:0x802ADC50; // type:function size:0x98 +fn_802ADCE8 = .text:0x802ADCE8; // type:function size:0x16C +fn_802ADE54 = .text:0x802ADE54; // type:function size:0x4C +fn_802ADEA0 = .text:0x802ADEA0; // type:function size:0x14 +fn_802ADEB4 = .text:0x802ADEB4; // type:function size:0x14 +fn_802ADEC8 = .text:0x802ADEC8; // type:function size:0x14 +fn_802ADEDC = .text:0x802ADEDC; // type:function size:0x14 +fn_802ADEF0 = .text:0x802ADEF0; // type:function size:0x8 +fn_802ADEF8 = .text:0x802ADEF8; // type:function size:0x8 +fn_802ADF00 = .text:0x802ADF00; // type:function size:0x148 +fn_802AE048 = .text:0x802AE048; // type:function size:0x58 +fn_802AE0A0 = .text:0x802AE0A0; // type:function size:0x60 +fn_802AE100 = .text:0x802AE100; // type:function size:0x58 +fn_802AE158 = .text:0x802AE158; // type:function size:0x58 +fn_802AE1B0 = .text:0x802AE1B0; // type:function size:0x50 +fn_802AE200 = .text:0x802AE200; // type:function size:0x58 +fn_802AE258 = .text:0x802AE258; // type:function size:0x80 +fn_802AE2D8 = .text:0x802AE2D8; // type:function size:0x80 +fn_802AE358 = .text:0x802AE358; // type:function size:0x58 +fn_802AE3B0 = .text:0x802AE3B0; // type:function size:0x54 +fn_802AE404 = .text:0x802AE404; // type:function size:0x5C +fn_802AE460 = .text:0x802AE460; // type:function size:0x6C +fn_802AE4CC = .text:0x802AE4CC; // type:function size:0x28 +fn_802AE4F4 = .text:0x802AE4F4; // type:function size:0x8 +fn_802AE4FC = .text:0x802AE4FC; // type:function size:0x3C +fn_802AE538 = .text:0x802AE538; // type:function size:0x58 +fn_802AE590 = .text:0x802AE590; // type:function size:0x60 +fn_802AE5F0 = .text:0x802AE5F0; // type:function size:0x58 +fn_802AE648 = .text:0x802AE648; // type:function size:0x58 +fn_802AE6A0 = .text:0x802AE6A0; // type:function size:0x50 +fn_802AE6F0 = .text:0x802AE6F0; // type:function size:0x44 +fn_802AE734 = .text:0x802AE734; // type:function size:0x3C +fn_802AE770 = .text:0x802AE770; // type:function size:0x70 +fn_802AE7E0 = .text:0x802AE7E0; // type:function size:0x30 +fn_802AE810 = .text:0x802AE810; // type:function size:0x30 +fn_802AE840 = .text:0x802AE840; // type:function size:0x40 +fn_802AE880 = .text:0x802AE880; // type:function size:0x44 +fn_802AE8C4 = .text:0x802AE8C4; // type:function size:0x3C +fn_802AE900 = .text:0x802AE900; // type:function size:0x70 +__dt__4TourFv = .text:0x802AE970; // type:function size:0xEC +fn_802AEA5C = .text:0x802AEA5C; // type:function size:0x128 +fn_802AEB84 = .text:0x802AEB84; // type:function size:0x4 +fn_802AEB88 = .text:0x802AEB88; // type:function size:0x3C +fn_802AEBC4 = .text:0x802AEBC4; // type:function size:0x40 +fn_802AEC04 = .text:0x802AEC04; // type:function size:0x8C +fn_802AEC90 = .text:0x802AEC90; // type:function size:0x8 +fn_802AEC98 = .text:0x802AEC98; // type:function size:0x2C +fn_802AECC4 = .text:0x802AECC4; // type:function size:0x58 +fn_802AED1C = .text:0x802AED1C; // type:function size:0x28 +fn_802AED44 = .text:0x802AED44; // type:function size:0x68 +fn_802AEDAC = .text:0x802AEDAC; // type:function size:0x4 +fn_802AEDB0 = .text:0x802AEDB0; // type:function size:0x8 +fn_802AEDB8 = .text:0x802AEDB8; // type:function size:0x34 +fn_802AEDEC = .text:0x802AEDEC; // type:function size:0x4 +fn_802AEDF0 = .text:0x802AEDF0; // type:function size:0x8 +fn_802AEDF8 = .text:0x802AEDF8; // type:function size:0x4 +fn_802AEDFC = .text:0x802AEDFC; // type:function size:0x8 +fn_802AEE04 = .text:0x802AEE04; // type:function size:0x34 +fn_802AEE38 = .text:0x802AEE38; // type:function size:0x4 +fn_802AEE3C = .text:0x802AEE3C; // type:function size:0x8 +fn_802AEE44 = .text:0x802AEE44; // type:function size:0x108 +fn_802AEF4C = .text:0x802AEF4C; // type:function size:0xA4 +fn_802AEFF0 = .text:0x802AEFF0; // type:function size:0x4 +fn_802AEFF4 = .text:0x802AEFF4; // type:function size:0x88 +fn_802AF07C = .text:0x802AF07C; // type:function size:0x2C +fn_802AF0A8 = .text:0x802AF0A8; // type:function size:0x10 +fn_802AF0B8 = .text:0x802AF0B8; // type:function size:0x74 +fn_802AF12C = .text:0x802AF12C; // type:function size:0x5C +fn_802AF188 = .text:0x802AF188; // type:function size:0x54 +fn_802AF1DC = .text:0x802AF1DC; // type:function size:0x84 +fn_802AF260 = .text:0x802AF260; // type:function size:0x58 +fn_802AF2B8 = .text:0x802AF2B8; // type:function size:0x2C +fn_802AF2E4 = .text:0x802AF2E4; // type:function size:0x30 +fn_802AF314 = .text:0x802AF314; // type:function size:0xA0 +fn_802AF3B4 = .text:0x802AF3B4; // type:function size:0x74 +fn_802AF428 = .text:0x802AF428; // type:function size:0xF0 +fn_802AF518 = .text:0x802AF518; // type:function size:0xFC +fn_802AF614 = .text:0x802AF614; // type:function size:0x58 +fn_802AF66C = .text:0x802AF66C; // type:function size:0x4 +fn_802AF670 = .text:0x802AF670; // type:function size:0x40 +fn_802AF6B0 = .text:0x802AF6B0; // type:function size:0x74 +fn_802AF724 = .text:0x802AF724; // type:function size:0x58 +fn_802AF77C = .text:0x802AF77C; // type:function size:0x2C +fn_802AF7A8 = .text:0x802AF7A8; // type:function size:0x30 +fn_802AF7D8 = .text:0x802AF7D8; // type:function size:0xA0 +fn_802AF878 = .text:0x802AF878; // type:function size:0x74 +fn_802AF8EC = .text:0x802AF8EC; // type:function size:0xFC +fn_802AF9E8 = .text:0x802AF9E8; // type:function size:0xFC +fn_802AFAE4 = .text:0x802AFAE4; // type:function size:0x58 +fn_802AFB3C = .text:0x802AFB3C; // type:function size:0x4 +fn_802AFB40 = .text:0x802AFB40; // type:function size:0x40 +fn_802AFB80 = .text:0x802AFB80; // type:function size:0x74 +fn_802AFBF4 = .text:0x802AFBF4; // type:function size:0x8 +fn_802AFBFC = .text:0x802AFBFC; // type:function size:0xA4 +fn_802AFCA0 = .text:0x802AFCA0; // type:function size:0x8 +fn_802AFCA8 = .text:0x802AFCA8; // type:function size:0x1C +fn_802AFCC4 = .text:0x802AFCC4; // type:function size:0xA4 +fn_802AFD68 = .text:0x802AFD68; // type:function size:0x34 +fn_802AFD9C = .text:0x802AFD9C; // type:function size:0x28 +fn_802AFDC4 = .text:0x802AFDC4; // type:function size:0xDC +fn_802AFEA0 = .text:0x802AFEA0; // type:function size:0x28 +fn_802AFEC8 = .text:0x802AFEC8; // type:function size:0x60 +fn_802AFF28 = .text:0x802AFF28; // type:function size:0x60 +fn_802AFF88 = .text:0x802AFF88; // type:function size:0x50 +fn_802AFFD8 = .text:0x802AFFD8; // type:function size:0x50 +fn_802B0028 = .text:0x802B0028; // type:function size:0x68 +fn_802B0090 = .text:0x802B0090; // type:function size:0x38 +fn_802B00C8 = .text:0x802B00C8; // type:function size:0x9C +fn_802B0164 = .text:0x802B0164; // type:function size:0x88 +fn_802B01EC = .text:0x802B01EC; // type:function size:0x80 +fn_802B026C = .text:0x802B026C; // type:function size:0xB4 +fn_802B0320 = .text:0x802B0320; // type:function size:0xAC +fn_802B03CC = .text:0x802B03CC; // type:function size:0x34 +fn_802B0400 = .text:0x802B0400; // type:function size:0x188 +fn_802B0588 = .text:0x802B0588; // type:function size:0xA0 +fn_802B0628 = .text:0x802B0628; // type:function size:0x1F8 +fn_802B0820 = .text:0x802B0820; // type:function size:0x8C +fn_802B08AC = .text:0x802B08AC; // type:function size:0x54 +fn_802B0900 = .text:0x802B0900; // type:function size:0x11C +fn_802B0A1C = .text:0x802B0A1C; // type:function size:0x1B4 +fn_802B0BD0 = .text:0x802B0BD0; // type:function size:0x1E8 +fn_802B0DB8 = .text:0x802B0DB8; // type:function size:0x64 +fn_802B0E1C = .text:0x802B0E1C; // type:function size:0x5C +fn_802B0E78 = .text:0x802B0E78; // type:function size:0x58 +fn_802B0ED0 = .text:0x802B0ED0; // type:function size:0x58 +fn_802B0F28 = .text:0x802B0F28; // type:function size:0x58 +fn_802B0F80 = .text:0x802B0F80; // type:function size:0x54 +fn_802B0FD4 = .text:0x802B0FD4; // type:function size:0x54 +fn_802B1028 = .text:0x802B1028; // type:function size:0x54 +fn_802B107C = .text:0x802B107C; // type:function size:0x74 +fn_802B10F0 = .text:0x802B10F0; // type:function size:0x74 +fn_802B1164 = .text:0x802B1164; // type:function size:0x74 +fn_802B11D8 = .text:0x802B11D8; // type:function size:0x130 +fn_802B1308 = .text:0x802B1308; // type:function size:0x130 +fn_802B1438 = .text:0x802B1438; // type:function size:0x7C +fn_802B14B4 = .text:0x802B14B4; // type:function size:0x68 +fn_802B151C = .text:0x802B151C; // type:function size:0x13C +fn_802B1658 = .text:0x802B1658; // type:function size:0xA0 +fn_802B16F8 = .text:0x802B16F8; // type:function size:0xA0 +fn_802B1798 = .text:0x802B1798; // type:function size:0xA0 +fn_802B1838 = .text:0x802B1838; // type:function size:0x8 +Handle__4TourFP9DataArrayb = .text:0x802B1840; // type:function size:0x900 +fn_802B2140 = .text:0x802B2140; // type:function size:0x10 +fn_802B2150 = .text:0x802B2150; // type:function size:0x6C +fn_802B21BC = .text:0x802B21BC; // type:function size:0x114 +fn_802B22D0 = .text:0x802B22D0; // type:function size:0x60 +fn_802B2330 = .text:0x802B2330; // type:function size:0x5C +fn_802B238C = .text:0x802B238C; // type:function size:0x54 +fn_802B23E0 = .text:0x802B23E0; // type:function size:0x5C +fn_802B243C = .text:0x802B243C; // type:function size:0x5C +fn_802B2498 = .text:0x802B2498; // type:function size:0x388 +fn_802B2820 = .text:0x802B2820; // type:function size:0x6C +fn_802B288C = .text:0x802B288C; // type:function size:0x2C +fn_802B28B8 = .text:0x802B28B8; // type:function size:0x388 +fn_802B2C40 = .text:0x802B2C40; // type:function size:0x6C +fn_802B2CAC = .text:0x802B2CAC; // type:function size:0x2C +fn_802B2CD8 = .text:0x802B2CD8; // type:function size:0x158 +fn_802B2E30 = .text:0x802B2E30; // type:function size:0x44 +fn_802B2E74 = .text:0x802B2E74; // type:function size:0x104 +fn_802B2F78 = .text:0x802B2F78; // type:function size:0x5C +fn_802B2FD4 = .text:0x802B2FD4; // type:function size:0x10 +fn_802B2FE4 = .text:0x802B2FE4; // type:function size:0x158 +fn_802B313C = .text:0x802B313C; // type:function size:0x44 +fn_802B3180 = .text:0x802B3180; // type:function size:0x104 +fn_802B3284 = .text:0x802B3284; // type:function size:0x5C +fn_802B32E0 = .text:0x802B32E0; // type:function size:0x10 +fn_802B32F0 = .text:0x802B32F0; // type:function size:0xE8 +fn_802B33D8 = .text:0x802B33D8; // type:function size:0xC8 +fn_802B34A0 = .text:0x802B34A0; // type:function size:0x7C +fn_802B351C = .text:0x802B351C; // type:function size:0x44 +fn_802B3560 = .text:0x802B3560; // type:function size:0x40 +fn_802B35A0 = .text:0x802B35A0; // type:function size:0x20C +fn_802B37AC = .text:0x802B37AC; // type:function size:0x48 +fn_802B37F4 = .text:0x802B37F4; // type:function size:0x8 +fn_802B37FC = .text:0x802B37FC; // type:function size:0x7C +fn_802B3878 = .text:0x802B3878; // type:function size:0x9C +Handle__8TourBandFP9DataArrayb = .text:0x802B3914; // type:function size:0xD0 +fn_802B39E4 = .text:0x802B39E4; // type:function size:0x14 +fn_802B39F8 = .text:0x802B39F8; // type:function size:0x14 +fn_802B3A0C = .text:0x802B3A0C; // type:function size:0x8 +fn_802B3A14 = .text:0x802B3A14; // type:function size:0x8 +fn_802B3A1C = .text:0x802B3A1C; // type:function size:0x8 +fn_802B3A24 = .text:0x802B3A24; // type:function size:0x78 +fn_802B3A9C = .text:0x802B3A9C; // type:function size:0x34 +fn_802B3AD0 = .text:0x802B3AD0; // type:function size:0x4 +fn_802B3AD4 = .text:0x802B3AD4; // type:function size:0x44 +fn_802B3B18 = .text:0x802B3B18; // type:function size:0x2C +fn_802B3B44 = .text:0x802B3B44; // type:function size:0x2C +fn_802B3B70 = .text:0x802B3B70; // type:function size:0x2C +fn_802B3B9C = .text:0x802B3B9C; // type:function size:0x2C +fn_802B3BC8 = .text:0x802B3BC8; // type:function size:0x5C +fn_802B3C24 = .text:0x802B3C24; // type:function size:0xC8 +fn_802B3CEC = .text:0x802B3CEC; // type:function size:0x68 +fn_802B3D54 = .text:0x802B3D54; // type:function size:0x68 +fn_802B3DBC = .text:0x802B3DBC; // type:function size:0x68 +fn_802B3E24 = .text:0x802B3E24; // type:function size:0x30 +Handle__25TourChallengeResultsPanelFP9DataArrayb = .text:0x802B3E54; // type:function size:0x348 +fn_802B419C = .text:0x802B419C; // type:function size:0x134 +fn_802B42D0 = .text:0x802B42D0; // type:function size:0x4 +fn_802B42D4 = .text:0x802B42D4; // type:function size:0x14 +fn_802B42E8 = .text:0x802B42E8; // type:function size:0x14 +fn_802B42FC = .text:0x802B42FC; // type:function size:0x14 +fn_802B4310 = .text:0x802B4310; // type:function size:0x14 +__ct__8TourCharFv = .text:0x802B4324; // type:function size:0x104 +fn_802B4428 = .text:0x802B4428; // type:function size:0x8 +fn_802B4430 = .text:0x802B4430; // type:function size:0x10C +fn_802B453C = .text:0x802B453C; // type:function size:0x8 +fn_802B4544 = .text:0x802B4544; // type:function size:0x8 +fn_802B454C = .text:0x802B454C; // type:function size:0xA8 +fn_802B45F4 = .text:0x802B45F4; // type:function size:0x38 +fn_802B462C = .text:0x802B462C; // type:function size:0x48 +fn_802B4674 = .text:0x802B4674; // type:function size:0x94 +fn_802B4708 = .text:0x802B4708; // type:function size:0x38 +fn_802B4740 = .text:0x802B4740; // type:function size:0xA0 +fn_802B47E0 = .text:0x802B47E0; // type:function size:0xBC +fn_802B489C = .text:0x802B489C; // type:function size:0x8 +fn_802B48A4 = .text:0x802B48A4; // type:function size:0x8 +Handle__8TourCharFP9DataArrayb = .text:0x802B48AC; // type:function size:0xD0 +fn_802B497C = .text:0x802B497C; // type:function size:0x8 +fn_802B4984 = .text:0x802B4984; // type:function size:0x8 +fn_802B498C = .text:0x802B498C; // type:function size:0x8 +fn_802B4994 = .text:0x802B4994; // type:function size:0x14 +fn_802B49A8 = .text:0x802B49A8; // type:function size:0x14 +fn_802B49BC = .text:0x802B49BC; // type:function size:0x8 +fn_802B49C4 = .text:0x802B49C4; // type:function size:0x8 +fn_802B49CC = .text:0x802B49CC; // type:function size:0x8 +fn_802B49D4 = .text:0x802B49D4; // type:function size:0x94 +fn_802B4A68 = .text:0x802B4A68; // type:function size:0x58 +fn_802B4AC0 = .text:0x802B4AC0; // type:function size:0x60 +fn_802B4B20 = .text:0x802B4B20; // type:function size:0x58 +fn_802B4B78 = .text:0x802B4B78; // type:function size:0x58 +fn_802B4BD0 = .text:0x802B4BD0; // type:function size:0x50 +fn_802B4C20 = .text:0x802B4C20; // type:function size:0x44 +fn_802B4C64 = .text:0x802B4C64; // type:function size:0x3C +fn_802B4CA0 = .text:0x802B4CA0; // type:function size:0x70 +fn_802B4D10 = .text:0x802B4D10; // type:function size:0x140 +fn_802B4E50 = .text:0x802B4E50; // type:function size:0x4 +fn_802B4E54 = .text:0x802B4E54; // type:function size:0x8 +fn_802B4E5C = .text:0x802B4E5C; // type:function size:0x34 +fn_802B4E90 = .text:0x802B4E90; // type:function size:0xC +fn_802B4E9C = .text:0x802B4E9C; // type:function size:0x8 +fn_802B4EA4 = .text:0x802B4EA4; // type:function size:0x1C +fn_802B4EC0 = .text:0x802B4EC0; // type:function size:0x6C +fn_802B4F2C = .text:0x802B4F2C; // type:function size:0x8 +fn_802B4F34 = .text:0x802B4F34; // type:function size:0x54 +fn_802B4F88 = .text:0x802B4F88; // type:function size:0x130 +fn_802B50B8 = .text:0x802B50B8; // type:function size:0x4 +fn_802B50BC = .text:0x802B50BC; // type:function size:0x40 +Handle__13TourCharLocalFP9DataArrayb = .text:0x802B50FC; // type:function size:0x11C +fn_802B5218 = .text:0x802B5218; // type:function size:0x6C +fn_802B5284 = .text:0x802B5284; // type:function size:0x2C +fn_802B52B0 = .text:0x802B52B0; // type:function size:0x8 +fn_802B52B8 = .text:0x802B52B8; // type:function size:0x14 +fn_802B52CC = .text:0x802B52CC; // type:function size:0x14 +fn_802B52E0 = .text:0x802B52E0; // type:function size:0x8 +fn_802B52E8 = .text:0x802B52E8; // type:function size:0x8 +fn_802B52F0 = .text:0x802B52F0; // type:function size:0x8 +fn_802B52F8 = .text:0x802B52F8; // type:function size:0xA4 +fn_802B539C = .text:0x802B539C; // type:function size:0x58 +fn_802B53F4 = .text:0x802B53F4; // type:function size:0x80 +fn_802B5474 = .text:0x802B5474; // type:function size:0x80 +fn_802B54F4 = .text:0x802B54F4; // type:function size:0x58 +fn_802B554C = .text:0x802B554C; // type:function size:0x54 +fn_802B55A0 = .text:0x802B55A0; // type:function size:0x5C +fn_802B55FC = .text:0x802B55FC; // type:function size:0x6C +fn_802B5668 = .text:0x802B5668; // type:function size:0x28 +fn_802B5690 = .text:0x802B5690; // type:function size:0x8 +fn_802B5698 = .text:0x802B5698; // type:function size:0x3C +fn_802B56D4 = .text:0x802B56D4; // type:function size:0x30 +fn_802B5704 = .text:0x802B5704; // type:function size:0x30 +fn_802B5734 = .text:0x802B5734; // type:function size:0x40 +fn_802B5774 = .text:0x802B5774; // type:function size:0x8C +fn_802B5800 = .text:0x802B5800; // type:function size:0x64 +fn_802B5864 = .text:0x802B5864; // type:function size:0xC4 +Handle__14TourCharRemoteFP9DataArrayb = .text:0x802B5928; // type:function size:0xD0 +fn_802B59F8 = .text:0x802B59F8; // type:function size:0x8 +fn_802B5A00 = .text:0x802B5A00; // type:function size:0x14 +fn_802B5A14 = .text:0x802B5A14; // type:function size:0x14 +fn_802B5A28 = .text:0x802B5A28; // type:function size:0x8 +fn_802B5A30 = .text:0x802B5A30; // type:function size:0x8 +fn_802B5A38 = .text:0x802B5A38; // type:function size:0x18 +fn_802B5A50 = .text:0x802B5A50; // type:function size:0x40 +fn_802B5A90 = .text:0x802B5A90; // type:function size:0x8 +fn_802B5A98 = .text:0x802B5A98; // type:function size:0x18 +fn_802B5AB0 = .text:0x802B5AB0; // type:function size:0x230 +fn_802B5CE0 = .text:0x802B5CE0; // type:function size:0x240 +fn_802B5F20 = .text:0x802B5F20; // type:function size:0x84 +fn_802B5FA4 = .text:0x802B5FA4; // type:function size:0x84 +fn_802B6028 = .text:0x802B6028; // type:function size:0x64 +fn_802B608C = .text:0x802B608C; // type:function size:0x90 +fn_802B611C = .text:0x802B611C; // type:function size:0x90 +fn_802B61AC = .text:0x802B61AC; // type:function size:0x94 +fn_802B6240 = .text:0x802B6240; // type:function size:0x94 +fn_802B62D4 = .text:0x802B62D4; // type:function size:0x90 +fn_802B6364 = .text:0x802B6364; // type:function size:0x94 +fn_802B63F8 = .text:0x802B63F8; // type:function size:0xD8 +fn_802B64D0 = .text:0x802B64D0; // type:function size:0x6C +fn_802B653C = .text:0x802B653C; // type:function size:0x7C +fn_802B65B8 = .text:0x802B65B8; // type:function size:0x5C +fn_802B6614 = .text:0x802B6614; // type:function size:0x39C +fn_802B69B0 = .text:0x802B69B0; // type:function size:0xBC +fn_802B6A6C = .text:0x802B6A6C; // type:function size:0x8 +fn_802B6A74 = .text:0x802B6A74; // type:function size:0x48 +fn_802B6ABC = .text:0x802B6ABC; // type:function size:0x48 +fn_802B6B04 = .text:0x802B6B04; // type:function size:0x48 +fn_802B6B4C = .text:0x802B6B4C; // type:function size:0x8 +fn_802B6B54 = .text:0x802B6B54; // type:function size:0x8 +fn_802B6B5C = .text:0x802B6B5C; // type:function size:0x54 +fn_802B6BB0 = .text:0x802B6BB0; // type:function size:0x24 +fn_802B6BD4 = .text:0x802B6BD4; // type:function size:0x24 +fn_802B6BF8 = .text:0x802B6BF8; // type:function size:0x5C +fn_802B6C54 = .text:0x802B6C54; // type:function size:0x34 +fn_802B6C88 = .text:0x802B6C88; // type:function size:0x34 +fn_802B6CBC = .text:0x802B6CBC; // type:function size:0x2C +fn_802B6CE8 = .text:0x802B6CE8; // type:function size:0x34 +fn_802B6D1C = .text:0x802B6D1C; // type:function size:0x24 +fn_802B6D40 = .text:0x802B6D40; // type:function size:0x24 +fn_802B6D64 = .text:0x802B6D64; // type:function size:0x24 +fn_802B6D88 = .text:0x802B6D88; // type:function size:0x24 +fn_802B6DAC = .text:0x802B6DAC; // type:function size:0x24 +fn_802B6DD0 = .text:0x802B6DD0; // type:function size:0x24 +fn_802B6DF4 = .text:0x802B6DF4; // type:function size:0x24 +fn_802B6E18 = .text:0x802B6E18; // type:function size:0x24 +fn_802B6E3C = .text:0x802B6E3C; // type:function size:0x68 +fn_802B6EA4 = .text:0x802B6EA4; // type:function size:0x64 +fn_802B6F08 = .text:0x802B6F08; // type:function size:0x74 +fn_802B6F7C = .text:0x802B6F7C; // type:function size:0x74 +fn_802B6FF0 = .text:0x802B6FF0; // type:function size:0x74 +fn_802B7064 = .text:0x802B7064; // type:function size:0x8 +fn_802B706C = .text:0x802B706C; // type:function size:0x8 +fn_802B7074 = .text:0x802B7074; // type:function size:0x8 +fn_802B707C = .text:0x802B707C; // type:function size:0x34 +fn_802B70B0 = .text:0x802B70B0; // type:function size:0x8 +fn_802B70B8 = .text:0x802B70B8; // type:function size:0x8 +fn_802B70C0 = .text:0x802B70C0; // type:function size:0x34 +fn_802B70F4 = .text:0x802B70F4; // type:function size:0x34 +fn_802B7128 = .text:0x802B7128; // type:function size:0x48 +fn_802B7170 = .text:0x802B7170; // type:function size:0x10 +fn_802B7180 = .text:0x802B7180; // type:function size:0x8 +fn_802B7188 = .text:0x802B7188; // type:function size:0x8 +fn_802B7190 = .text:0x802B7190; // type:function size:0x84 +fn_802B7214 = .text:0x802B7214; // type:function size:0x88 +fn_802B729C = .text:0x802B729C; // type:function size:0x100 +fn_802B739C = .text:0x802B739C; // type:function size:0x5C +fn_802B73F8 = .text:0x802B73F8; // type:function size:0x8 +fn_802B7400 = .text:0x802B7400; // type:function size:0x34 +fn_802B7434 = .text:0x802B7434; // type:function size:0x48 +fn_802B747C = .text:0x802B747C; // type:function size:0x80 +fn_802B74FC = .text:0x802B74FC; // type:function size:0x34 +fn_802B7530 = .text:0x802B7530; // type:function size:0x54 +fn_802B7584 = .text:0x802B7584; // type:function size:0x74 +fn_802B75F8 = .text:0x802B75F8; // type:function size:0x1FC +fn_802B77F4 = .text:0x802B77F4; // type:function size:0x40 +fn_802B7834 = .text:0x802B7834; // type:function size:0x30 +fn_802B7864 = .text:0x802B7864; // type:function size:0x40 +fn_802B78A4 = .text:0x802B78A4; // type:function size:0x30 +fn_802B78D4 = .text:0x802B78D4; // type:function size:0x128 +fn_802B79FC = .text:0x802B79FC; // type:function size:0xDC +fn_802B7AD8 = .text:0x802B7AD8; // type:function size:0x34 +fn_802B7B0C = .text:0x802B7B0C; // type:function size:0xB4 +fn_802B7BC0 = .text:0x802B7BC0; // type:function size:0xD4 +fn_802B7C94 = .text:0x802B7C94; // type:function size:0x78 +fn_802B7D0C = .text:0x802B7D0C; // type:function size:0xA4 +fn_802B7DB0 = .text:0x802B7DB0; // type:function size:0x88 +fn_802B7E38 = .text:0x802B7E38; // type:function size:0x1AC +fn_802B7FE4 = .text:0x802B7FE4; // type:function size:0x30 +fn_802B8014 = .text:0x802B8014; // type:function size:0xBC +fn_802B80D0 = .text:0x802B80D0; // type:function size:0x30 +fn_802B8100 = .text:0x802B8100; // type:function size:0xBC +fn_802B81BC = .text:0x802B81BC; // type:function size:0x114 +fn_802B82D0 = .text:0x802B82D0; // type:function size:0xBC +fn_802B838C = .text:0x802B838C; // type:function size:0x94 +fn_802B8420 = .text:0x802B8420; // type:function size:0xD4 +fn_802B84F4 = .text:0x802B84F4; // type:function size:0xC8 +fn_802B85BC = .text:0x802B85BC; // type:function size:0x200 +fn_802B87BC = .text:0x802B87BC; // type:function size:0x108 +fn_802B88C4 = .text:0x802B88C4; // type:function size:0x54 +fn_802B8918 = .text:0x802B8918; // type:function size:0xCC +fn_802B89E4 = .text:0x802B89E4; // type:function size:0x84 +fn_802B8A68 = .text:0x802B8A68; // type:function size:0x60 +fn_802B8AC8 = .text:0x802B8AC8; // type:function size:0x90 +fn_802B8B58 = .text:0x802B8B58; // type:function size:0x8C +fn_802B8BE4 = .text:0x802B8BE4; // type:function size:0x84 +fn_802B8C68 = .text:0x802B8C68; // type:function size:0x10C +Handle__13TourDescPanelFP9DataArrayb = .text:0x802B8D74; // type:function size:0x198 +fn_802B8F0C = .text:0x802B8F0C; // type:function size:0x134 +fn_802B9040 = .text:0x802B9040; // type:function size:0x4 +fn_802B9044 = .text:0x802B9044; // type:function size:0x64 +fn_802B90A8 = .text:0x802B90A8; // type:function size:0x270 +fn_802B9318 = .text:0x802B9318; // type:function size:0x2FC +fn_802B9614 = .text:0x802B9614; // type:function size:0x78 +fn_802B968C = .text:0x802B968C; // type:function size:0x34C +fn_802B99D8 = .text:0x802B99D8; // type:function size:0x178 +fn_802B9B50 = .text:0x802B9B50; // type:function size:0x79C +fn_802BA2EC = .text:0x802BA2EC; // type:function size:0x7C +fn_802BA368 = .text:0x802BA368; // type:function size:0x14 +fn_802BA37C = .text:0x802BA37C; // type:function size:0x14 +fn_802BA390 = .text:0x802BA390; // type:function size:0x14 +fn_802BA3A4 = .text:0x802BA3A4; // type:function size:0x14 +fn_802BA3B8 = .text:0x802BA3B8; // type:function size:0x8 +fn_802BA3C0 = .text:0x802BA3C0; // type:function size:0x8 +fn_802BA3C8 = .text:0x802BA3C8; // type:function size:0x40 +fn_802BA408 = .text:0x802BA408; // type:function size:0x5C +fn_802BA464 = .text:0x802BA464; // type:function size:0x8C +fn_802BA4F0 = .text:0x802BA4F0; // type:function size:0x64 +fn_802BA554 = .text:0x802BA554; // type:function size:0x5C +fn_802BA5B0 = .text:0x802BA5B0; // type:function size:0xF8 +fn_802BA6A8 = .text:0x802BA6A8; // type:function size:0x8 +fn_802BA6B0 = .text:0x802BA6B0; // type:function size:0x8 +fn_802BA6B8 = .text:0x802BA6B8; // type:function size:0x4C +fn_802BA704 = .text:0x802BA704; // type:function size:0x8 +fn_802BA70C = .text:0x802BA70C; // type:function size:0x84 +fn_802BA790 = .text:0x802BA790; // type:function size:0x58 +fn_802BA7E8 = .text:0x802BA7E8; // type:function size:0x80 +fn_802BA868 = .text:0x802BA868; // type:function size:0x80 +fn_802BA8E8 = .text:0x802BA8E8; // type:function size:0x58 +fn_802BA940 = .text:0x802BA940; // type:function size:0x54 +fn_802BA994 = .text:0x802BA994; // type:function size:0x5C +fn_802BA9F0 = .text:0x802BA9F0; // type:function size:0x6C +fn_802BAA5C = .text:0x802BAA5C; // type:function size:0x28 +fn_802BAA84 = .text:0x802BAA84; // type:function size:0x8 +fn_802BAA8C = .text:0x802BAA8C; // type:function size:0x3C +fn_802BAAC8 = .text:0x802BAAC8; // type:function size:0x30 +fn_802BAAF8 = .text:0x802BAAF8; // type:function size:0x30 +fn_802BAB28 = .text:0x802BAB28; // type:function size:0x40 +fn_802BAB68 = .text:0x802BAB68; // type:function size:0x68 +fn_802BABD0 = .text:0x802BABD0; // type:function size:0x10 +fn_802BABE0 = .text:0x802BABE0; // type:function size:0x10 +fn_802BABF0 = .text:0x802BABF0; // type:function size:0x2C +fn_802BAC1C = .text:0x802BAC1C; // type:function size:0x5C +fn_802BAC78 = .text:0x802BAC78; // type:function size:0x5C +fn_802BACD4 = .text:0x802BACD4; // type:function size:0x5C +fn_802BAD30 = .text:0x802BAD30; // type:function size:0x8 +fn_802BAD38 = .text:0x802BAD38; // type:function size:0x2C +fn_802BAD64 = .text:0x802BAD64; // type:function size:0x14 +fn_802BAD78 = .text:0x802BAD78; // type:function size:0x8 +fn_802BAD80 = .text:0x802BAD80; // type:function size:0x4 +fn_802BAD84 = .text:0x802BAD84; // type:function size:0x3C +fn_802BADC0 = .text:0x802BADC0; // type:function size:0x40 +fn_802BAE00 = .text:0x802BAE00; // type:function size:0x8C +fn_802BAE8C = .text:0x802BAE8C; // type:function size:0x8 +fn_802BAE94 = .text:0x802BAE94; // type:function size:0x2C +fn_802BAEC0 = .text:0x802BAEC0; // type:function size:0x58 +fn_802BAF18 = .text:0x802BAF18; // type:function size:0x28 +fn_802BAF40 = .text:0x802BAF40; // type:function size:0x68 +fn_802BAFA8 = .text:0x802BAFA8; // type:function size:0x10C +fn_802BB0B4 = .text:0x802BB0B4; // type:function size:0x4 +fn_802BB0B8 = .text:0x802BB0B8; // type:function size:0x88 +fn_802BB140 = .text:0x802BB140; // type:function size:0x2C +fn_802BB16C = .text:0x802BB16C; // type:function size:0x10 +fn_802BB17C = .text:0x802BB17C; // type:function size:0x8 +fn_802BB184 = .text:0x802BB184; // type:function size:0x4 +fn_802BB188 = .text:0x802BB188; // type:function size:0xE4 +fn_802BB26C = .text:0x802BB26C; // type:function size:0xC8 +fn_802BB334 = .text:0x802BB334; // type:function size:0x100 +fn_802BB434 = .text:0x802BB434; // type:function size:0x60 +fn_802BB494 = .text:0x802BB494; // type:function size:0x4 +fn_802BB498 = .text:0x802BB498; // type:function size:0x3C +fn_802BB4D4 = .text:0x802BB4D4; // type:function size:0x2C +fn_802BB500 = .text:0x802BB500; // type:function size:0x8 +fn_802BB508 = .text:0x802BB508; // type:function size:0x40 +fn_802BB548 = .text:0x802BB548; // type:function size:0x24 +fn_802BB56C = .text:0x802BB56C; // type:function size:0x84 +fn_802BB5F0 = .text:0x802BB5F0; // type:function size:0xA0 +fn_802BB690 = .text:0x802BB690; // type:function size:0x6C +fn_802BB6FC = .text:0x802BB6FC; // type:function size:0x24 +fn_802BB720 = .text:0x802BB720; // type:function size:0x24 +fn_802BB744 = .text:0x802BB744; // type:function size:0x38 +fn_802BB77C = .text:0x802BB77C; // type:function size:0x3C +fn_802BB7B8 = .text:0x802BB7B8; // type:function size:0x3C +fn_802BB7F4 = .text:0x802BB7F4; // type:function size:0x64 +fn_802BB858 = .text:0x802BB858; // type:function size:0x64 +fn_802BB8BC = .text:0x802BB8BC; // type:function size:0x48 +fn_802BB904 = .text:0x802BB904; // type:function size:0x98 +fn_802BB99C = .text:0x802BB99C; // type:function size:0x8 +fn_802BB9A4 = .text:0x802BB9A4; // type:function size:0xA8 +fn_802BBA4C = .text:0x802BBA4C; // type:function size:0x52C +fn_802BBF78 = .text:0x802BBF78; // type:function size:0x114 +fn_802BC08C = .text:0x802BC08C; // type:function size:0x60 +fn_802BC0EC = .text:0x802BC0EC; // type:function size:0x5C +fn_802BC148 = .text:0x802BC148; // type:function size:0x54 +fn_802BC19C = .text:0x802BC19C; // type:function size:0x5C +fn_802BC1F8 = .text:0x802BC1F8; // type:function size:0x5C +fn_802BC254 = .text:0x802BC254; // type:function size:0xC +fn_802BC260 = .text:0x802BC260; // type:function size:0x68 +fn_802BC2C8 = .text:0x802BC2C8; // type:function size:0x20 +fn_802BC2E8 = .text:0x802BC2E8; // type:function size:0x3C +fn_802BC324 = .text:0x802BC324; // type:function size:0x58 +fn_802BC37C = .text:0x802BC37C; // type:function size:0xCC +fn_802BC448 = .text:0x802BC448; // type:function size:0x2C +fn_802BC474 = .text:0x802BC474; // type:function size:0xB8 +fn_802BC52C = .text:0x802BC52C; // type:function size:0x64 +fn_802BC590 = .text:0x802BC590; // type:function size:0x64 +fn_802BC5F4 = .text:0x802BC5F4; // type:function size:0x70 +fn_802BC664 = .text:0x802BC664; // type:function size:0x48 +fn_802BC6AC = .text:0x802BC6AC; // type:function size:0x6C +fn_802BC718 = .text:0x802BC718; // type:function size:0x1E8 +fn_802BC900 = .text:0x802BC900; // type:function size:0x40 +fn_802BC940 = .text:0x802BC940; // type:function size:0x30 +fn_802BC970 = .text:0x802BC970; // type:function size:0x34C +fn_802BCCBC = .text:0x802BCCBC; // type:function size:0x40 +fn_802BCCFC = .text:0x802BCCFC; // type:function size:0x30 +fn_802BCD2C = .text:0x802BCD2C; // type:function size:0x154 +fn_802BCE80 = .text:0x802BCE80; // type:function size:0x234 +fn_802BD0B4 = .text:0x802BD0B4; // type:function size:0x1F0 +fn_802BD2A4 = .text:0x802BD2A4; // type:function size:0x40 +fn_802BD2E4 = .text:0x802BD2E4; // type:function size:0x30 +fn_802BD314 = .text:0x802BD314; // type:function size:0x1D4 +fn_802BD4E8 = .text:0x802BD4E8; // type:function size:0xBC +fn_802BD5A4 = .text:0x802BD5A4; // type:function size:0x3A4 +fn_802BD948 = .text:0x802BD948; // type:function size:0x220 +fn_802BDB68 = .text:0x802BDB68; // type:function size:0x13C +fn_802BDCA4 = .text:0x802BDCA4; // type:function size:0x43C +fn_802BE0E0 = .text:0x802BE0E0; // type:function size:0x124 +fn_802BE204 = .text:0x802BE204; // type:function size:0x3C +fn_802BE240 = .text:0x802BE240; // type:function size:0x58 +fn_802BE298 = .text:0x802BE298; // type:function size:0xE0 +fn_802BE378 = .text:0x802BE378; // type:function size:0x70 +__ct__12TourProgressFv = .text:0x802BE3E8; // type:function size:0x160 +fn_802BE548 = .text:0x802BE548; // type:function size:0xD4 +fn_802BE61C = .text:0x802BE61C; // type:function size:0xD4 +fn_802BE6F0 = .text:0x802BE6F0; // type:function size:0xBC +fn_802BE7AC = .text:0x802BE7AC; // type:function size:0xE4 +fn_802BE890 = .text:0x802BE890; // type:function size:0x88 +fn_802BE918 = .text:0x802BE918; // type:function size:0x8 +fn_802BE920 = .text:0x802BE920; // type:function size:0x6C +fn_802BE98C = .text:0x802BE98C; // type:function size:0x44 +fn_802BE9D0 = .text:0x802BE9D0; // type:function size:0x64 +fn_802BEA34 = .text:0x802BEA34; // type:function size:0xD4 +fn_802BEB08 = .text:0x802BEB08; // type:function size:0x48 +fn_802BEB50 = .text:0x802BEB50; // type:function size:0xC4 +fn_802BEC14 = .text:0x802BEC14; // type:function size:0x8 +fn_802BEC1C = .text:0x802BEC1C; // type:function size:0x8 +fn_802BEC24 = .text:0x802BEC24; // type:function size:0x8 +fn_802BEC2C = .text:0x802BEC2C; // type:function size:0x8 +fn_802BEC34 = .text:0x802BEC34; // type:function size:0xC +fn_802BEC40 = .text:0x802BEC40; // type:function size:0x98 +fn_802BECD8 = .text:0x802BECD8; // type:function size:0x4C +fn_802BED24 = .text:0x802BED24; // type:function size:0xC +fn_802BED30 = .text:0x802BED30; // type:function size:0x8 +fn_802BED38 = .text:0x802BED38; // type:function size:0x8 +fn_802BED40 = .text:0x802BED40; // type:function size:0x3C +fn_802BED7C = .text:0x802BED7C; // type:function size:0x80 +fn_802BEDFC = .text:0x802BEDFC; // type:function size:0x88 +fn_802BEE84 = .text:0x802BEE84; // type:function size:0x70 +fn_802BEEF4 = .text:0x802BEEF4; // type:function size:0x80 +fn_802BEF74 = .text:0x802BEF74; // type:function size:0x44 +fn_802BEFB8 = .text:0x802BEFB8; // type:function size:0x40 +fn_802BEFF8 = .text:0x802BEFF8; // type:function size:0x74 +fn_802BF06C = .text:0x802BF06C; // type:function size:0x64 +fn_802BF0D0 = .text:0x802BF0D0; // type:function size:0x64 +fn_802BF134 = .text:0x802BF134; // type:function size:0xC +fn_802BF140 = .text:0x802BF140; // type:function size:0x8 +fn_802BF148 = .text:0x802BF148; // type:function size:0x5C +fn_802BF1A4 = .text:0x802BF1A4; // type:function size:0x8 +fn_802BF1AC = .text:0x802BF1AC; // type:function size:0xC +fn_802BF1B8 = .text:0x802BF1B8; // type:function size:0x3C +fn_802BF1F4 = .text:0x802BF1F4; // type:function size:0xCC +fn_802BF2C0 = .text:0x802BF2C0; // type:function size:0x30 +fn_802BF2F0 = .text:0x802BF2F0; // type:function size:0x14 +fn_802BF304 = .text:0x802BF304; // type:function size:0x14 +fn_802BF318 = .text:0x802BF318; // type:function size:0x8 +fn_802BF320 = .text:0x802BF320; // type:function size:0x8 +fn_802BF328 = .text:0x802BF328; // type:function size:0x6C +fn_802BF394 = .text:0x802BF394; // type:function size:0x5C +fn_802BF3F0 = .text:0x802BF3F0; // type:function size:0x40 +fn_802BF430 = .text:0x802BF430; // type:function size:0x48 +fn_802BF478 = .text:0x802BF478; // type:function size:0x40 +fn_802BF4B8 = .text:0x802BF4B8; // type:function size:0x48 +fn_802BF500 = .text:0x802BF500; // type:function size:0x10 +fn_802BF510 = .text:0x802BF510; // type:function size:0x68 +fn_802BF578 = .text:0x802BF578; // type:function size:0x58 +fn_802BF5D0 = .text:0x802BF5D0; // type:function size:0x58 +fn_802BF628 = .text:0x802BF628; // type:function size:0x70 +fn_802BF698 = .text:0x802BF698; // type:function size:0x10 +fn_802BF6A8 = .text:0x802BF6A8; // type:function size:0xC4 +fn_802BF76C = .text:0x802BF76C; // type:function size:0x48 +fn_802BF7B4 = .text:0x802BF7B4; // type:function size:0x60 +fn_802BF814 = .text:0x802BF814; // type:function size:0x7C +fn_802BF890 = .text:0x802BF890; // type:function size:0x7C +fn_802BF90C = .text:0x802BF90C; // type:function size:0xC +fn_802BF918 = .text:0x802BF918; // type:function size:0x3C +fn_802BF954 = .text:0x802BF954; // type:function size:0x30 +fn_802BF984 = .text:0x802BF984; // type:function size:0x3C +Handle__12TourProgressFP9DataArrayb = .text:0x802BF9C0; // type:function size:0x650 +fn_802C0010 = .text:0x802C0010; // type:function size:0xB0 +fn_802C00C0 = .text:0x802C00C0; // type:function size:0x14 +fn_802C00D4 = .text:0x802C00D4; // type:function size:0x14 +fn_802C00E8 = .text:0x802C00E8; // type:function size:0x8 +fn_802C00F0 = .text:0x802C00F0; // type:function size:0x8 +fn_802C00F8 = .text:0x802C00F8; // type:function size:0x8 +fn_802C0100 = .text:0x802C0100; // type:function size:0x90 +fn_802C0190 = .text:0x802C0190; // type:function size:0x40 +fn_802C01D0 = .text:0x802C01D0; // type:function size:0x148 +fn_802C0318 = .text:0x802C0318; // type:function size:0x8 +fn_802C0320 = .text:0x802C0320; // type:function size:0x8 +fn_802C0328 = .text:0x802C0328; // type:function size:0x8 +fn_802C0330 = .text:0x802C0330; // type:function size:0x8 +__ct__22TourPropertyCollectionFv = .text:0x802C0338; // type:function size:0x50 +fn_802C0388 = .text:0x802C0388; // type:function size:0x68 +fn_802C03F0 = .text:0x802C03F0; // type:function size:0x8 +fn_802C03F8 = .text:0x802C03F8; // type:function size:0xAC +fn_802C04A4 = .text:0x802C04A4; // type:function size:0xC0 +fn_802C0564 = .text:0x802C0564; // type:function size:0x18 +fn_802C057C = .text:0x802C057C; // type:function size:0x8 +fn_802C0584 = .text:0x802C0584; // type:function size:0x18 +fn_802C059C = .text:0x802C059C; // type:function size:0x44 +fn_802C05E0 = .text:0x802C05E0; // type:function size:0x68 +fn_802C0648 = .text:0x802C0648; // type:function size:0x60 +fn_802C06A8 = .text:0x802C06A8; // type:function size:0x18 +fn_802C06C0 = .text:0x802C06C0; // type:function size:0x40 +fn_802C0700 = .text:0x802C0700; // type:function size:0x8 +fn_802C0708 = .text:0x802C0708; // type:function size:0x154 +fn_802C085C = .text:0x802C085C; // type:function size:0x1AC +fn_802C0A08 = .text:0x802C0A08; // type:function size:0x80 +fn_802C0A88 = .text:0x802C0A88; // type:function size:0x6C +fn_802C0AF4 = .text:0x802C0AF4; // type:function size:0xB4 +fn_802C0BA8 = .text:0x802C0BA8; // type:function size:0xB4 +fn_802C0C5C = .text:0x802C0C5C; // type:function size:0xB4 +fn_802C0D10 = .text:0x802C0D10; // type:function size:0xB4 +__ct__11TourSavableFv = .text:0x802C0DC4; // type:function size:0xC8 +fn_802C0E8C = .text:0x802C0E8C; // type:function size:0x70 +fn_802C0EFC = .text:0x802C0EFC; // type:function size:0x8 +fn_802C0F04 = .text:0x802C0F04; // type:function size:0x8 +fn_802C0F0C = .text:0x802C0F0C; // type:function size:0x8 +fn_802C0F14 = .text:0x802C0F14; // type:function size:0x8C +fn_802C0FA0 = .text:0x802C0FA0; // type:function size:0x40 +fn_802C0FE0 = .text:0x802C0FE0; // type:function size:0x14 +fn_802C0FF4 = .text:0x802C0FF4; // type:function size:0x8 +fn_802C0FFC = .text:0x802C0FFC; // type:function size:0x18 +Handle__11TourSavableFP9DataArrayb = .text:0x802C1014; // type:function size:0xE8 +fn_802C10FC = .text:0x802C10FC; // type:function size:0x14 +fn_802C1110 = .text:0x802C1110; // type:function size:0x14 +fn_802C1124 = .text:0x802C1124; // type:function size:0x40 +fn_802C1164 = .text:0x802C1164; // type:function size:0x6C +fn_802C11D0 = .text:0x802C11D0; // type:function size:0x8 +fn_802C11D8 = .text:0x802C11D8; // type:function size:0x60 +fn_802C1238 = .text:0x802C1238; // type:function size:0xA8 +fn_802C12E0 = .text:0x802C12E0; // type:function size:0x50 +fn_802C1330 = .text:0x802C1330; // type:function size:0x70 +fn_802C13A0 = .text:0x802C13A0; // type:function size:0x58 +fn_802C13F8 = .text:0x802C13F8; // type:function size:0x90 +fn_802C1488 = .text:0x802C1488; // type:function size:0x218 +fn_802C16A0 = .text:0x802C16A0; // type:function size:0x58 +fn_802C16F8 = .text:0x802C16F8; // type:function size:0x154 +__dt__14CritSecTrackerFv = .text:0x802C184C; // type:function size:0x60 +fn_802C18AC = .text:0x802C18AC; // type:function size:0x28 +fn_802C18D4 = .text:0x802C18D4; // type:function size:0x10 +__ct__14CritSecTrackerFP15CriticalSection = .text:0x802C18E4; // type:function size:0x40 +fn_802C1924 = .text:0x802C1924; // type:function size:0x9C +fn_802C19C0 = .text:0x802C19C0; // type:function size:0x10C +fn_802C1ACC = .text:0x802C1ACC; // type:function size:0xF0 +fn_802C1BBC = .text:0x802C1BBC; // type:function size:0x48 +fn_802C1C04 = .text:0x802C1C04; // type:function size:0xA0 +fn_802C1CA4 = .text:0x802C1CA4; // type:function size:0x2C +fn_802C1CD0 = .text:0x802C1CD0; // type:function size:0x30 +fn_802C1D00 = .text:0x802C1D00; // type:function size:0xA0 +__ct__14DataResultListFv = .text:0x802C1DA0; // type:function size:0x74 +fn_802C1E14 = .text:0x802C1E14; // type:function size:0x58 +fn_802C1E6C = .text:0x802C1E6C; // type:function size:0x58 +fn_802C1EC4 = .text:0x802C1EC4; // type:function size:0x60 +fn_802C1F24 = .text:0x802C1F24; // type:function size:0x58 +fn_802C1F7C = .text:0x802C1F7C; // type:function size:0x30 +fn_802C1FAC = .text:0x802C1FAC; // type:function size:0x30 +fn_802C1FDC = .text:0x802C1FDC; // type:function size:0x60 +__ct__9UpdatableFv = .text:0x802C203C; // type:function size:0x18 +__dt__14DataResultListFv = .text:0x802C2054; // type:function size:0x80 +fn_802C20D4 = .text:0x802C20D4; // type:function size:0x3BC +fn_802C2490 = .text:0x802C2490; // type:function size:0x68 +fn_802C24F8 = .text:0x802C24F8; // type:function size:0x58 +fn_802C2550 = .text:0x802C2550; // type:function size:0x60 +fn_802C25B0 = .text:0x802C25B0; // type:function size:0x58 +fn_802C2608 = .text:0x802C2608; // type:function size:0x58 +fn_802C2660 = .text:0x802C2660; // type:function size:0x50 +fn_802C26B0 = .text:0x802C26B0; // type:function size:0x4 +fn_802C26B4 = .text:0x802C26B4; // type:function size:0x54 +fn_802C2708 = .text:0x802C2708; // type:function size:0x64 +fn_802C276C = .text:0x802C276C; // type:function size:0x50 +fn_802C27BC = .text:0x802C27BC; // type:function size:0x10 +__as__10DataResultFRC10DataResult = .text:0x802C27CC; // type:function size:0x5C +fn_802C2828 = .text:0x802C2828; // type:function size:0x30 +fn_802C2858 = .text:0x802C2858; // type:function size:0xAC +fn_802C2904 = .text:0x802C2904; // type:function size:0x70 +fn_802C2974 = .text:0x802C2974; // type:function size:0x68 +fn_802C29DC = .text:0x802C29DC; // type:function size:0x4 +fn_802C29E0 = .text:0x802C29E0; // type:function size:0x48 +fn_802C2A28 = .text:0x802C2A28; // type:function size:0x4 +fn_802C2A2C = .text:0x802C2A2C; // type:function size:0x48 +__ct__10DataResultFv = .text:0x802C2A74; // type:function size:0x48 +fn_802C2ABC = .text:0x802C2ABC; // type:function size:0x44 +fn_802C2B00 = .text:0x802C2B00; // type:function size:0x3C +fn_802C2B3C = .text:0x802C2B3C; // type:function size:0x4 +fn_802C2B40 = .text:0x802C2B40; // type:function size:0x3C +fn_802C2B7C = .text:0x802C2B7C; // type:function size:0x78 +fn_802C2BF4 = .text:0x802C2BF4; // type:function size:0x24 +fn_802C2C18 = .text:0x802C2C18; // type:function size:0x70 +fn_802C2C88 = .text:0x802C2C88; // type:function size:0x158 +fn_802C2DE0 = .text:0x802C2DE0; // type:function size:0x44 +fn_802C2E24 = .text:0x802C2E24; // type:function size:0x8 +fn_802C2E2C = .text:0x802C2E2C; // type:function size:0x6C +fn_802C2E98 = .text:0x802C2E98; // type:function size:0x2C +fn_802C2EC4 = .text:0x802C2EC4; // type:function size:0x8 +fn_802C2ECC = .text:0x802C2ECC; // type:function size:0xB4 +fn_802C2F80 = .text:0x802C2F80; // type:function size:0x38 +fn_802C2FB8 = .text:0x802C2FB8; // type:function size:0x5C +fn_802C3014 = .text:0x802C3014; // type:function size:0x10 +fn_802C3024 = .text:0x802C3024; // type:function size:0x68 +fn_802C308C = .text:0x802C308C; // type:function size:0x2C +fn_802C30B8 = .text:0x802C30B8; // type:function size:0x104 +fn_802C31BC = .text:0x802C31BC; // type:function size:0x8C +fn_802C3248 = .text:0x802C3248; // type:function size:0x3C +fn_802C3284 = .text:0x802C3284; // type:function size:0x68 +fn_802C32EC = .text:0x802C32EC; // type:function size:0x44 +fn_802C3330 = .text:0x802C3330; // type:function size:0xA4 +fn_802C33D4 = .text:0x802C33D4; // type:function size:0x58 +fn_802C342C = .text:0x802C342C; // type:function size:0xC4 +fn_802C34F0 = .text:0x802C34F0; // type:function size:0x104 +fn_802C35F4 = .text:0x802C35F4; // type:function size:0x140 +fn_802C3734 = .text:0x802C3734; // type:function size:0xC +__ct__11RockCentralFv = .text:0x802C3740; // type:function size:0xF4 +__dt__11RockCentralFv = .text:0x802C3834; // type:function size:0xC0 +fn_802C38F4 = .text:0x802C38F4; // type:function size:0x64 +fn_802C3958 = .text:0x802C3958; // type:function size:0x1BC +fn_802C3B14 = .text:0x802C3B14; // type:function size:0x4C +fn_802C3B60 = .text:0x802C3B60; // type:function size:0x3A8 +fn_802C3F08 = .text:0x802C3F08; // type:function size:0x1E0 +fn_802C40E8 = .text:0x802C40E8; // type:function size:0x178 +fn_802C4260 = .text:0x802C4260; // type:function size:0x70 +fn_802C42D0 = .text:0x802C42D0; // type:function size:0x3DC +fn_802C46AC = .text:0x802C46AC; // type:function size:0x4 +fn_802C46B0 = .text:0x802C46B0; // type:function size:0x50 +fn_802C4700 = .text:0x802C4700; // type:function size:0x4 +fn_802C4704 = .text:0x802C4704; // type:function size:0x4 +fn_802C4708 = .text:0x802C4708; // type:function size:0x40 +fn_802C4748 = .text:0x802C4748; // type:function size:0x40 +fn_802C4788 = .text:0x802C4788; // type:function size:0x40 +fn_802C47C8 = .text:0x802C47C8; // type:function size:0xBC +fn_802C4884 = .text:0x802C4884; // type:function size:0x9C +fn_802C4920 = .text:0x802C4920; // type:function size:0xB0 +fn_802C49D0 = .text:0x802C49D0; // type:function size:0x3C +fn_802C4A0C = .text:0x802C4A0C; // type:function size:0x80 +fn_802C4A8C = .text:0x802C4A8C; // type:function size:0x1D8 +fn_802C4C64 = .text:0x802C4C64; // type:function size:0x64 +fn_802C4CC8 = .text:0x802C4CC8; // type:function size:0x4C +fn_802C4D14 = .text:0x802C4D14; // type:function size:0x100 +fn_802C4E14 = .text:0x802C4E14; // type:function size:0x64 +fn_802C4E78 = .text:0x802C4E78; // type:function size:0x10 +fn_802C4E88 = .text:0x802C4E88; // type:function size:0x3C +fn_802C4EC4 = .text:0x802C4EC4; // type:function size:0x10 +fn_802C4ED4 = .text:0x802C4ED4; // type:function size:0x114 +fn_802C4FE8 = .text:0x802C4FE8; // type:function size:0xF4 +fn_802C50DC = .text:0x802C50DC; // type:function size:0xBC +fn_802C5198 = .text:0x802C5198; // type:function size:0x78 +fn_802C5210 = .text:0x802C5210; // type:function size:0x2C +fn_802C523C = .text:0x802C523C; // type:function size:0xA0 +fn_802C52DC = .text:0x802C52DC; // type:function size:0xC4 +fn_802C53A0 = .text:0x802C53A0; // type:function size:0x4 +fn_802C53A4 = .text:0x802C53A4; // type:function size:0xE8 +fn_802C548C = .text:0x802C548C; // type:function size:0x50 +fn_802C54DC = .text:0x802C54DC; // type:function size:0xC +fn_802C54E8 = .text:0x802C54E8; // type:function size:0xC +fn_802C54F4 = .text:0x802C54F4; // type:function size:0xA8 +fn_802C559C = .text:0x802C559C; // type:function size:0x12C +fn_802C56C8 = .text:0x802C56C8; // type:function size:0x48 +fn_802C5710 = .text:0x802C5710; // type:function size:0x28 +fn_802C5738 = .text:0x802C5738; // type:function size:0x1C8 +fn_802C5900 = .text:0x802C5900; // type:function size:0x4C +fn_802C594C = .text:0x802C594C; // type:function size:0x28 +fn_802C5974 = .text:0x802C5974; // type:function size:0x44 +fn_802C59B8 = .text:0x802C59B8; // type:function size:0x218 +fn_802C5BD0 = .text:0x802C5BD0; // type:function size:0x220 +fn_802C5DF0 = .text:0x802C5DF0; // type:function size:0x4C +fn_802C5E3C = .text:0x802C5E3C; // type:function size:0x28 +fn_802C5E64 = .text:0x802C5E64; // type:function size:0x28 +fn_802C5E8C = .text:0x802C5E8C; // type:function size:0x190 +fn_802C601C = .text:0x802C601C; // type:function size:0x48 +fn_802C6064 = .text:0x802C6064; // type:function size:0x28 +fn_802C608C = .text:0x802C608C; // type:function size:0x190 +fn_802C621C = .text:0x802C621C; // type:function size:0x330 +fn_802C654C = .text:0x802C654C; // type:function size:0x28 +fn_802C6574 = .text:0x802C6574; // type:function size:0x2A0 +fn_802C6814 = .text:0x802C6814; // type:function size:0x2A0 +fn_802C6AB4 = .text:0x802C6AB4; // type:function size:0x330 +fn_802C6DE4 = .text:0x802C6DE4; // type:function size:0x2A0 +fn_802C7084 = .text:0x802C7084; // type:function size:0x2A0 +fn_802C7324 = .text:0x802C7324; // type:function size:0x24C +fn_802C7570 = .text:0x802C7570; // type:function size:0x4C +fn_802C75BC = .text:0x802C75BC; // type:function size:0x30 +fn_802C75EC = .text:0x802C75EC; // type:function size:0x4C +fn_802C7638 = .text:0x802C7638; // type:function size:0x28 +fn_802C7660 = .text:0x802C7660; // type:function size:0xAC +fn_802C770C = .text:0x802C770C; // type:function size:0x310 +fn_802C7A1C = .text:0x802C7A1C; // type:function size:0x6AC +fn_802C80C8 = .text:0x802C80C8; // type:function size:0x50 +fn_802C8118 = .text:0x802C8118; // type:function size:0x28 +fn_802C8140 = .text:0x802C8140; // type:function size:0x28 +fn_802C8168 = .text:0x802C8168; // type:function size:0x1BA8 +fn_802C9D10 = .text:0x802C9D10; // type:function size:0x4C +fn_802C9D5C = .text:0x802C9D5C; // type:function size:0x28 +fn_802C9D84 = .text:0x802C9D84; // type:function size:0x54 +fn_802C9DD8 = .text:0x802C9DD8; // type:function size:0x28 +fn_802C9E00 = .text:0x802C9E00; // type:function size:0x48 +fn_802C9E48 = .text:0x802C9E48; // type:function size:0x28 +fn_802C9E70 = .text:0x802C9E70; // type:function size:0x28 +fn_802C9E98 = .text:0x802C9E98; // type:function size:0x28 +fn_802C9EC0 = .text:0x802C9EC0; // type:function size:0x48 +fn_802C9F08 = .text:0x802C9F08; // type:function size:0x28 +fn_802C9F30 = .text:0x802C9F30; // type:function size:0x1258 +fn_802CB188 = .text:0x802CB188; // type:function size:0x8AC +fn_802CBA34 = .text:0x802CBA34; // type:function size:0x1FC +fn_802CBC30 = .text:0x802CBC30; // type:function size:0x2E0 +fn_802CBF10 = .text:0x802CBF10; // type:function size:0x2E0 +fn_802CC1F0 = .text:0x802CC1F0; // type:function size:0x320 +fn_802CC510 = .text:0x802CC510; // type:function size:0x58 +fn_802CC568 = .text:0x802CC568; // type:function size:0x80 +fn_802CC5E8 = .text:0x802CC5E8; // type:function size:0x80 +fn_802CC668 = .text:0x802CC668; // type:function size:0x58 +fn_802CC6C0 = .text:0x802CC6C0; // type:function size:0x54 +fn_802CC714 = .text:0x802CC714; // type:function size:0x5C +fn_802CC770 = .text:0x802CC770; // type:function size:0x6C +fn_802CC7DC = .text:0x802CC7DC; // type:function size:0x28 +fn_802CC804 = .text:0x802CC804; // type:function size:0x8 +fn_802CC80C = .text:0x802CC80C; // type:function size:0x3C +fn_802CC848 = .text:0x802CC848; // type:function size:0x28 +fn_802CC870 = .text:0x802CC870; // type:function size:0x4 +fn_802CC874 = .text:0x802CC874; // type:function size:0x88 +fn_802CC8FC = .text:0x802CC8FC; // type:function size:0x2C +fn_802CC928 = .text:0x802CC928; // type:function size:0x10 +fn_802CC938 = .text:0x802CC938; // type:function size:0x30 +fn_802CC968 = .text:0x802CC968; // type:function size:0x30 +fn_802CC998 = .text:0x802CC998; // type:function size:0x40 +fn_802CC9D8 = .text:0x802CC9D8; // type:function size:0x78 +fn_802CCA50 = .text:0x802CCA50; // type:function size:0x168 +Eof__9MemStreamFv = .text:0x802CCBB8; // type:function size:0x40 +fn_802CCBF8 = .text:0x802CCBF8; // type:function size:0x43C +fn_802CD034 = .text:0x802CD034; // type:function size:0x28 +fn_802CD05C = .text:0x802CD05C; // type:function size:0x280 +fn_802CD2DC = .text:0x802CD2DC; // type:function size:0x134 +fn_802CD410 = .text:0x802CD410; // type:function size:0x4C4 +fn_802CD8D4 = .text:0x802CD8D4; // type:function size:0x70 +fn_802CD944 = .text:0x802CD944; // type:function size:0x204 +fn_802CDB48 = .text:0x802CDB48; // type:function size:0x68 +__ct__14SaveArtUpdaterFv = .text:0x802CDBB0; // type:function size:0x44 +fn_802CDBF4 = .text:0x802CDBF4; // type:function size:0xB0 +fn_802CDCA4 = .text:0x802CDCA4; // type:function size:0x7C +fn_802CDD20 = .text:0x802CDD20; // type:function size:0x80 +fn_802CDDA0 = .text:0x802CDDA0; // type:function size:0x130 +fn_802CDED0 = .text:0x802CDED0; // type:function size:0x98 +fn_802CDF68 = .text:0x802CDF68; // type:function size:0x98 +fn_802CE000 = .text:0x802CE000; // type:function size:0x17C +fn_802CE17C = .text:0x802CE17C; // type:function size:0x48 +fn_802CE1C4 = .text:0x802CE1C4; // type:function size:0x4 +fn_802CE1C8 = .text:0x802CE1C8; // type:function size:0x110 +fn_802CE2D8 = .text:0x802CE2D8; // type:function size:0x2F4 +fn_802CE5CC = .text:0x802CE5CC; // type:function size:0x15C +fn_802CE728 = .text:0x802CE728; // type:function size:0x15C +fn_802CE884 = .text:0x802CE884; // type:function size:0x138 +fn_802CE9BC = .text:0x802CE9BC; // type:function size:0x138 +fn_802CEAF4 = .text:0x802CEAF4; // type:function size:0x58 +fn_802CEB4C = .text:0x802CEB4C; // type:function size:0x368 +fn_802CEEB4 = .text:0x802CEEB4; // type:function size:0x27C +fn_802CF130 = .text:0x802CF130; // type:function size:0x2C +fn_802CF15C = .text:0x802CF15C; // type:function size:0x40 +fn_802CF19C = .text:0x802CF19C; // type:function size:0x30 +fn_802CF1CC = .text:0x802CF1CC; // type:function size:0x38C +fn_802CF558 = .text:0x802CF558; // type:function size:0x10 +fn_802CF568 = .text:0x802CF568; // type:function size:0x58 +fn_802CF5C0 = .text:0x802CF5C0; // type:function size:0x54 +fn_802CF614 = .text:0x802CF614; // type:function size:0x5C +fn_802CF670 = .text:0x802CF670; // type:function size:0x78 +fn_802CF6E8 = .text:0x802CF6E8; // type:function size:0x84 +fn_802CF76C = .text:0x802CF76C; // type:function size:0x4C +fn_802CF7B8 = .text:0x802CF7B8; // type:function size:0x28 +fn_802CF7E0 = .text:0x802CF7E0; // type:function size:0x144 +Handle__11RockCentralFP9DataArrayb = .text:0x802CF924; // type:function size:0x848 +fn_802D016C = .text:0x802D016C; // type:function size:0x18 +__ct__21DeleteUserCompleteMsgFP9DataArray = .text:0x802D0184; // type:function size:0x3C +__ct__21DeleteQueueUpdatedMsgFP9DataArray = .text:0x802D01C0; // type:function size:0x3C +fn_802D01FC = .text:0x802D01FC; // type:function size:0x28 +fn_802D0224 = .text:0x802D0224; // type:function size:0xA8 +fn_802D02CC = .text:0x802D02CC; // type:function size:0x114 +fn_802D03E0 = .text:0x802D03E0; // type:function size:0x60 +fn_802D0440 = .text:0x802D0440; // type:function size:0x5C +fn_802D049C = .text:0x802D049C; // type:function size:0x54 +fn_802D04F0 = .text:0x802D04F0; // type:function size:0x5C +fn_802D054C = .text:0x802D054C; // type:function size:0x5C +fn_802D05A8 = .text:0x802D05A8; // type:function size:0x158 +fn_802D0700 = .text:0x802D0700; // type:function size:0x44 +fn_802D0744 = .text:0x802D0744; // type:function size:0x8 +fn_802D074C = .text:0x802D074C; // type:function size:0x58 +fn_802D07A4 = .text:0x802D07A4; // type:function size:0x104 +fn_802D08A8 = .text:0x802D08A8; // type:function size:0x5C +fn_802D0904 = .text:0x802D0904; // type:function size:0x10 +fn_802D0914 = .text:0x802D0914; // type:function size:0x48 +fn_802D095C = .text:0x802D095C; // type:function size:0x74 +fn_802D09D0 = .text:0x802D09D0; // type:function size:0x14 +fn_802D09E4 = .text:0x802D09E4; // type:function size:0x14 +fn_802D09F8 = .text:0x802D09F8; // type:function size:0x14 +fn_802D0A0C = .text:0x802D0A0C; // type:function size:0x14 +fn_802D0A20 = .text:0x802D0A20; // type:function size:0x14 +fn_802D0A34 = .text:0x802D0A34; // type:function size:0x14 +fn_802D0A48 = .text:0x802D0A48; // type:function size:0x14 +fn_802D0A5C = .text:0x802D0A5C; // type:function size:0x4 +fn_802D0A60 = .text:0x802D0A60; // type:function size:0x84 +fn_802D0AE4 = .text:0x802D0AE4; // type:function size:0x3C +fn_802D0B20 = .text:0x802D0B20; // type:function size:0x9C +fn_802D0BBC = .text:0x802D0BBC; // type:function size:0x5C +fn_802D0C18 = .text:0x802D0C18; // type:function size:0x5C +fn_802D0C74 = .text:0x802D0C74; // type:function size:0xC +fn_802D0C80 = .text:0x802D0C80; // type:function size:0x30 +fn_802D0CB0 = .text:0x802D0CB0; // type:function size:0xFC +fn_802D0DAC = .text:0x802D0DAC; // type:function size:0x84 +fn_802D0E30 = .text:0x802D0E30; // type:function size:0x14 +fn_802D0E44 = .text:0x802D0E44; // type:function size:0xD0 +Handle__20UpdateFriendsListJobFP9DataArrayb = .text:0x802D0F14; // type:function size:0x17C +fn_802D1090 = .text:0x802D1090; // type:function size:0x3C +fn_802D10CC = .text:0x802D10CC; // type:function size:0x7C +fn_802D1148 = .text:0x802D1148; // type:function size:0xA8 +fn_802D11F0 = .text:0x802D11F0; // type:function size:0x2C +fn_802D121C = .text:0x802D121C; // type:function size:0x1A0 +fn_802D13BC = .text:0x802D13BC; // type:function size:0x8 +fn_802D13C4 = .text:0x802D13C4; // type:function size:0x68 +fn_802D142C = .text:0x802D142C; // type:function size:0x14 +fn_802D1440 = .text:0x802D1440; // type:function size:0xD0 +Handle__33UpdateMasterProfileFriendsListJobFP9DataArrayb = .text:0x802D1510; // type:function size:0x17C +fn_802D168C = .text:0x802D168C; // type:function size:0x8 +fn_802D1694 = .text:0x802D1694; // type:function size:0x8 +fn_802D169C = .text:0x802D169C; // type:function size:0x8 +fn_802D16A4 = .text:0x802D16A4; // type:function size:0x8 +__ct__14EntityUploaderFv = .text:0x802D16AC; // type:function size:0x60 +Init__14EntityUploaderFv = .text:0x802D170C; // type:function size:0x74 +fn_802D1780 = .text:0x802D1780; // type:function size:0x110 +fn_802D1890 = .text:0x802D1890; // type:function size:0x110 +fn_802D19A0 = .text:0x802D19A0; // type:function size:0x184 +fn_802D1B24 = .text:0x802D1B24; // type:function size:0x184 +fn_802D1CA8 = .text:0x802D1CA8; // type:function size:0x188 +fn_802D1E30 = .text:0x802D1E30; // type:function size:0xC4 +fn_802D1EF4 = .text:0x802D1EF4; // type:function size:0x48 +fn_802D1F3C = .text:0x802D1F3C; // type:function size:0x14 +fn_802D1F50 = .text:0x802D1F50; // type:function size:0x118 +fn_802D2068 = .text:0x802D2068; // type:function size:0xF8 +fn_802D2160 = .text:0x802D2160; // type:function size:0xE4 +fn_802D2244 = .text:0x802D2244; // type:function size:0x28 +fn_802D226C = .text:0x802D226C; // type:function size:0x328 +fn_802D2594 = .text:0x802D2594; // type:function size:0x2A0 +fn_802D2834 = .text:0x802D2834; // type:function size:0x68 +fn_802D289C = .text:0x802D289C; // type:function size:0x1B8 +fn_802D2A54 = .text:0x802D2A54; // type:function size:0x18 +fn_802D2A6C = .text:0x802D2A6C; // type:function size:0x2A4 +fn_802D2D10 = .text:0x802D2D10; // type:function size:0x90 +fn_802D2DA0 = .text:0x802D2DA0; // type:function size:0x34 +fn_802D2DD4 = .text:0x802D2DD4; // type:function size:0x3C +fn_802D2E10 = .text:0x802D2E10; // type:function size:0x90 +fn_802D2EA0 = .text:0x802D2EA0; // type:function size:0x7C +fn_802D2F1C = .text:0x802D2F1C; // type:function size:0x88 +fn_802D2FA4 = .text:0x802D2FA4; // type:function size:0x1B0 +fn_802D3154 = .text:0x802D3154; // type:function size:0x8 +fn_802D315C = .text:0x802D315C; // type:function size:0x7C +Handle__14EntityUploaderFP9DataArrayb = .text:0x802D31D8; // type:function size:0x244 +fn_802D341C = .text:0x802D341C; // type:function size:0x24 +fn_802D3440 = .text:0x802D3440; // type:function size:0x8 +fn_802D3448 = .text:0x802D3448; // type:function size:0xAC +fn_802D34F4 = .text:0x802D34F4; // type:function size:0xC8 +fn_802D35BC = .text:0x802D35BC; // type:function size:0x228 +fn_802D37E4 = .text:0x802D37E4; // type:function size:0x228 +fn_802D3A0C = .text:0x802D3A0C; // type:function size:0x2B4 +fn_802D3CC0 = .text:0x802D3CC0; // type:function size:0x6BC +fn_802D437C = .text:0x802D437C; // type:function size:0x15C +fn_802D44D8 = .text:0x802D44D8; // type:function size:0x5C +fn_802D4534 = .text:0x802D4534; // type:function size:0x18C +fn_802D46C0 = .text:0x802D46C0; // type:function size:0x19C +fn_802D485C = .text:0x802D485C; // type:function size:0x148 +fn_802D49A4 = .text:0x802D49A4; // type:function size:0x58 +fn_802D49FC = .text:0x802D49FC; // type:function size:0x50 +fn_802D4A4C = .text:0x802D4A4C; // type:function size:0x3C +fn_802D4A88 = .text:0x802D4A88; // type:function size:0xC +fn_802D4A94 = .text:0x802D4A94; // type:function size:0x3C +fn_802D4AD0 = .text:0x802D4AD0; // type:function size:0xC +InitDOClasses__6QuazalFv = .text:0x802D4ADC; // type:function size:0x50 +fn_802D4B2C = .text:0x802D4B2C; // type:function size:0x48 +__ct__Q26Quazal23RockBandDDLDeclarationsFv = .text:0x802D4B74; // type:function size:0x40 +fn_802D4BB4 = .text:0x802D4BB4; // type:function size:0x8C +fn_802D4C40 = .text:0x802D4C40; // type:function size:0x13C +fn_802D4D7C = .text:0x802D4D7C; // type:function size:0x124 +fn_802D4EA0 = .text:0x802D4EA0; // type:function size:0xA8 +fn_802D4F48 = .text:0x802D4F48; // type:function size:0x4 +fn_802D4F4C = .text:0x802D4F4C; // type:function size:0x164 +fn_802D50B0 = .text:0x802D50B0; // type:function size:0x16C +fn_802D521C = .text:0x802D521C; // type:function size:0x4 +fn_802D5220 = .text:0x802D5220; // type:function size:0xA8 +fn_802D52C8 = .text:0x802D52C8; // type:function size:0xEC +fn_802D53B4 = .text:0x802D53B4; // type:function size:0x4 +fn_802D53B8 = .text:0x802D53B8; // type:function size:0x38 +fn_802D53F0 = .text:0x802D53F0; // type:function size:0xA8 +fn_802D5498 = .text:0x802D5498; // type:function size:0x8 +fn_802D54A0 = .text:0x802D54A0; // type:function size:0x8 +Sqrt = .text:0x802D54A8; // type:function size:0x40 +fn_802D54E8 = .text:0x802D54E8; // type:function size:0x30 +__ct__5CSHA1Fv = .text:0x802D5518; // type:function size:0x38 +__dt__5CSHA1Fv = .text:0x802D5550; // type:function size:0x54 +Reset__5CSHA1Fv = .text:0x802D55A4; // type:function size:0x4C +Transform__5CSHA1FPUlPCUc = .text:0x802D55F0; // type:function size:0x16F4 +Update__5CSHA1FPCUcUl = .text:0x802D6CE4; // type:function size:0xEC +Final__5CSHA1Fv = .text:0x802D6DD0; // type:function size:0x150 +fn_802D6F20 = .text:0x802D6F20; // type:function size:0x14 +fn_802D6F34 = .text:0x802D6F34; // type:function size:0x120 +fn_802D7054 = .text:0x802D7054; // type:function size:0x34 +HashString__FPCci = .text:0x802D7088; // type:function size:0x34 +SetBSPParams__FP9DataArray = .text:0x802D70BC; // type:function size:0xB0 +GeoInit__Fv = .text:0x802D716C; // type:function size:0x148 +fn_802D72B4 = .text:0x802D72B4; // type:function size:0xB4 +fn_802D7368 = .text:0x802D7368; // type:function size:0x9C +fn_802D7404 = .text:0x802D7404; // type:function size:0x54 +fn_802D7458 = .text:0x802D7458; // type:function size:0x10 +fn_802D7468 = .text:0x802D7468; // type:function size:0x108 +fn_802D7570 = .text:0x802D7570; // type:function size:0xC +fn_802D757C = .text:0x802D757C; // type:function size:0x78 +Add__FRC7Vector3RC7Vector3R7Vector3 = .text:0x802D75F4; // type:function size:0x30 +Multiply__FRC3BoxfR3Box = .text:0x802D7624; // type:function size:0xBC +Length__FRC7Vector3 = .text:0x802D76E0; // type:function size:0x4C +Dot__5PlaneCFRC7Vector3 = .text:0x802D772C; // type:function size:0x30 +fn_802D775C = .text:0x802D775C; // type:function size:0x10 +Multiply__FRC5PlaneRC9TransformR5Plane = .text:0x802D776C; // type:function size:0x88 +On__5PlaneCFv = .text:0x802D77F4; // type:function size:0x34 +fn_802D7828 = .text:0x802D7828; // type:function size:0x80 +fn_802D78A8 = .text:0x802D78A8; // type:function size:0x6C +fn_802D7914 = .text:0x802D7914; // type:function size:0x24 +fn_802D7938 = .text:0x802D7938; // type:function size:0x20 +Intersect__FRC9TransformRC5PlaneRQ23Hmx3Ray = .text:0x802D7958; // type:function size:0xF0 +fn_802D7A48 = .text:0x802D7A48; // type:function size:0x50 +fn_802D7A98 = .text:0x802D7A98; // type:function size:0x34 +fn_802D7ACC = .text:0x802D7ACC; // type:function size:0x20C +fn_802D7CD8 = .text:0x802D7CD8; // type:function size:0x34 +fn_802D7D0C = .text:0x802D7D0C; // type:function size:0xA8 +fn_802D7DB4 = .text:0x802D7DB4; // type:function size:0x54 +fn_802D7E08 = .text:0x802D7E08; // type:function size:0x1C +LengthSquared__FRC7Vector3 = .text:0x802D7E24; // type:function size:0x1C +fn_802D7E40 = .text:0x802D7E40; // type:function size:0x14 +fn_802D7E54 = .text:0x802D7E54; // type:function size:0x1C +fn_802D7E70 = .text:0x802D7E70; // type:function size:0x24 +fn_802D7E94 = .text:0x802D7E94; // type:function size:0x34 +Intersect__FRC7Vector3PC7BSPNode = .text:0x802D7EC8; // type:function size:0x8C +Intersect__FRC7SegmentPC7BSPNodeRfR5Plane = .text:0x802D7F54; // type:function size:0x300 +fn_802D8254 = .text:0x802D8254; // type:function size:0x2C +Intersect__FRC9TransformRCQ23Hmx7PolygonPC7BSPNode = .text:0x802D8280; // type:function size:0x1E8 +fn_802D8468 = .text:0x802D8468; // type:function size:0x1C +__dt__Q211stlpmtx_std56vector<7Vector2,Q211stlpmtx_std22StlNodeAlloc<7Vector2>>Fv = .text:0x802D8484; // type:function size:0x58 +fn_802D84DC = .text:0x802D84DC; // type:function size:0x58 +fn_802D8534 = .text:0x802D8534; // type:function size:0x80 +fn_802D85B4 = .text:0x802D85B4; // type:function size:0x80 +fn_802D8634 = .text:0x802D8634; // type:function size:0x58 +fn_802D868C = .text:0x802D868C; // type:function size:0x54 +fn_802D86E0 = .text:0x802D86E0; // type:function size:0x5C +fn_802D873C = .text:0x802D873C; // type:function size:0x6C +fn_802D87A8 = .text:0x802D87A8; // type:function size:0x28 +fn_802D87D0 = .text:0x802D87D0; // type:function size:0x8 +fn_802D87D8 = .text:0x802D87D8; // type:function size:0x3C +__ct__Q23Hmx7PolygonFv = .text:0x802D8814; // type:function size:0x40 +__ct__Q211stlpmtx_std56vector<7Vector2,Q211stlpmtx_std22StlNodeAlloc<7Vector2>>FRCQ211stlpmtx_std22StlNodeAlloc<7Vector2> = .text:0x802D8854; // type:function size:0x30 +fn_802D8884 = .text:0x802D8884; // type:function size:0x30 +fn_802D88B4 = .text:0x802D88B4; // type:function size:0x40 +fn_802D88F4 = .text:0x802D88F4; // type:function size:0x104 +fn_802D89F8 = .text:0x802D89F8; // type:function size:0x30 +Normalize__FRC7Vector3R7Vector3 = .text:0x802D8A28; // type:function size:0x8C +SetBSPParams__Fffiif = .text:0x802D8AB4; // type:function size:0x20 +CheckBSPTree__FPC7BSPNodeRC3Box = .text:0x802D8AD4; // type:function size:0x7D0 +Set__Q23Hmx7Matrix3Ffffffffff = .text:0x802D92A4; // type:function size:0xCC +erase__Q211stlpmtx_std56vector<7Vector2,Q211stlpmtx_std22StlNodeAlloc<7Vector2>>FP7Vector2P7Vector2 = .text:0x802D9370; // type:function size:0x4 +fn_802D9374 = .text:0x802D9374; // type:function size:0x3C +fn_802D93B0 = .text:0x802D93B0; // type:function size:0x40 +fn_802D93F0 = .text:0x802D93F0; // type:function size:0x8C +fn_802D947C = .text:0x802D947C; // type:function size:0x8 +fn_802D9484 = .text:0x802D9484; // type:function size:0x2C +fn_802D94B0 = .text:0x802D94B0; // type:function size:0x58 +fn_802D9508 = .text:0x802D9508; // type:function size:0x28 +fn_802D9530 = .text:0x802D9530; // type:function size:0x68 +resize__Q211stlpmtx_std56vector<7Vector2,Q211stlpmtx_std22StlNodeAlloc<7Vector2>>FUlRC7Vector2 = .text:0x802D9598; // type:function size:0x4 +fn_802D959C = .text:0x802D959C; // type:function size:0x90 +fn_802D962C = .text:0x802D962C; // type:function size:0x4 +fn_802D9630 = .text:0x802D9630; // type:function size:0xB8 +fn_802D96E8 = .text:0x802D96E8; // type:function size:0x68 +fn_802D9750 = .text:0x802D9750; // type:function size:0xA8 +fn_802D97F8 = .text:0x802D97F8; // type:function size:0x18 +OnSide__7BSPFaceFRC5PlaneRbRb = .text:0x802D9810; // type:function size:0xC4 +fn_802D98D4 = .text:0x802D98D4; // type:function size:0x1D0 +fn_802D9AA4 = .text:0x802D9AA4; // type:function size:0x3C +fn_802D9AE0 = .text:0x802D9AE0; // type:function size:0x4 +fn_802D9AE4 = .text:0x802D9AE4; // type:function size:0x54 +fn_802D9B38 = .text:0x802D9B38; // type:function size:0x64 +fn_802D9B9C = .text:0x802D9B9C; // type:function size:0x50 +fn_802D9BEC = .text:0x802D9BEC; // type:function size:0x10 +fn_802D9BFC = .text:0x802D9BFC; // type:function size:0x4 +fn_802D9C00 = .text:0x802D9C00; // type:function size:0x4 +fn_802D9C04 = .text:0x802D9C04; // type:function size:0x1C +fn_802D9C20 = .text:0x802D9C20; // type:function size:0x130 +fn_802D9D50 = .text:0x802D9D50; // type:function size:0x4 +fn_802D9D54 = .text:0x802D9D54; // type:function size:0x88 +fn_802D9DDC = .text:0x802D9DDC; // type:function size:0x2C +fn_802D9E08 = .text:0x802D9E08; // type:function size:0x10 +MakeBSPTree__FRP7BSPNodeRQ211stlpmtx_std54list<7BSPFace,Q211stlpmtx_std22StlNodeAlloc<7BSPFace>>i = .text:0x802D9E18; // type:function size:0x704 +fn_802DA51C = .text:0x802DA51C; // type:function size:0x58 +fn_802DA574 = .text:0x802DA574; // type:function size:0x58 +fn_802DA5CC = .text:0x802DA5CC; // type:function size:0x60 +fn_802DA62C = .text:0x802DA62C; // type:function size:0x58 +fn_802DA684 = .text:0x802DA684; // type:function size:0x68 +fn_802DA6EC = .text:0x802DA6EC; // type:function size:0x58 +fn_802DA744 = .text:0x802DA744; // type:function size:0x58 +fn_802DA79C = .text:0x802DA79C; // type:function size:0x60 +fn_802DA7FC = .text:0x802DA7FC; // type:function size:0x58 +fn_802DA854 = .text:0x802DA854; // type:function size:0x4 +fn_802DA858 = .text:0x802DA858; // type:function size:0x54 +fn_802DA8AC = .text:0x802DA8AC; // type:function size:0x64 +fn_802DA910 = .text:0x802DA910; // type:function size:0x50 +fn_802DA960 = .text:0x802DA960; // type:function size:0x10 +fn_802DA970 = .text:0x802DA970; // type:function size:0x5C +fn_802DA9CC = .text:0x802DA9CC; // type:function size:0x30 +fn_802DA9FC = .text:0x802DA9FC; // type:function size:0x90 +fn_802DAA8C = .text:0x802DAA8C; // type:function size:0x60 +fn_802DAAEC = .text:0x802DAAEC; // type:function size:0x90 +fn_802DAB7C = .text:0x802DAB7C; // type:function size:0x2C +fn_802DABA8 = .text:0x802DABA8; // type:function size:0x30 +fn_802DABD8 = .text:0x802DABD8; // type:function size:0x8 +fn_802DABE0 = .text:0x802DABE0; // type:function size:0x60 +fn_802DAC40 = .text:0x802DAC40; // type:function size:0x30 +fn_802DAC70 = .text:0x802DAC70; // type:function size:0x30 +fn_802DACA0 = .text:0x802DACA0; // type:function size:0x98 +fn_802DAD38 = .text:0x802DAD38; // type:function size:0x5C +fn_802DAD94 = .text:0x802DAD94; // type:function size:0x70 +fn_802DAE04 = .text:0x802DAE04; // type:function size:0xC +fn_802DAE10 = .text:0x802DAE10; // type:function size:0x4 +fn_802DAE14 = .text:0x802DAE14; // type:function size:0x50 +fn_802DAE64 = .text:0x802DAE64; // type:function size:0x30 +fn_802DAE94 = .text:0x802DAE94; // type:function size:0x30 +fn_802DAEC4 = .text:0x802DAEC4; // type:function size:0x68 +fn_802DAF2C = .text:0x802DAF2C; // type:function size:0x9C +fn_802DAFC8 = .text:0x802DAFC8; // type:function size:0x34 +fn_802DAFFC = .text:0x802DAFFC; // type:function size:0x50 +fn_802DB04C = .text:0x802DB04C; // type:function size:0x6C +fn_802DB0B8 = .text:0x802DB0B8; // type:function size:0x10 +fn_802DB0C8 = .text:0x802DB0C8; // type:function size:0x2C +fn_802DB0F4 = .text:0x802DB0F4; // type:function size:0x8 +fn_802DB0FC = .text:0x802DB0FC; // type:function size:0x30 +fn_802DB12C = .text:0x802DB12C; // type:function size:0x30 +fn_802DB15C = .text:0x802DB15C; // type:function size:0x60 +fn_802DB1BC = .text:0x802DB1BC; // type:function size:0x4 +fn_802DB1C0 = .text:0x802DB1C0; // type:function size:0x4 +fn_802DB1C4 = .text:0x802DB1C4; // type:function size:0x4 +fn_802DB1C8 = .text:0x802DB1C8; // type:function size:0x4 +fn_802DB1CC = .text:0x802DB1CC; // type:function size:0x8 +fn_802DB1D4 = .text:0x802DB1D4; // type:function size:0x4C +fn_802DB220 = .text:0x802DB220; // type:function size:0x70 +fn_802DB290 = .text:0x802DB290; // type:function size:0x30 +fn_802DB2C0 = .text:0x802DB2C0; // type:function size:0x2C +fn_802DB2EC = .text:0x802DB2EC; // type:function size:0x4 +fn_802DB2F0 = .text:0x802DB2F0; // type:function size:0x2C +fn_802DB31C = .text:0x802DB31C; // type:function size:0x1D0 +fn_802DB4EC = .text:0x802DB4EC; // type:function size:0x13C +fn_802DB628 = .text:0x802DB628; // type:function size:0xAC +fn_802DB6D4 = .text:0x802DB6D4; // type:function size:0x58 +fn_802DB72C = .text:0x802DB72C; // type:function size:0x6C +fn_802DB798 = .text:0x802DB798; // type:function size:0x48 +fn_802DB7E0 = .text:0x802DB7E0; // type:function size:0x40 +fn_802DB820 = .text:0x802DB820; // type:function size:0x184 +fn_802DB9A4 = .text:0x802DB9A4; // type:function size:0x20 +fn_802DB9C4 = .text:0x802DB9C4; // type:function size:0x4C +fn_802DBA10 = .text:0x802DBA10; // type:function size:0x184 +fn_802DBB94 = .text:0x802DBB94; // type:function size:0x74 +fn_802DBC08 = .text:0x802DBC08; // type:function size:0x28 +fn_802DBC30 = .text:0x802DBC30; // type:function size:0x34 +fn_802DBC64 = .text:0x802DBC64; // type:function size:0xB0 +fn_802DBD14 = .text:0x802DBD14; // type:function size:0x5C +fn_802DBD70 = .text:0x802DBD70; // type:function size:0x60 +fn_802DBDD0 = .text:0x802DBDD0; // type:function size:0x44 +fn_802DBE14 = .text:0x802DBE14; // type:function size:0x1E4 +fn_802DBFF8 = .text:0x802DBFF8; // type:function size:0x30 +fn_802DC028 = .text:0x802DC028; // type:function size:0x8C +fn_802DC0B4 = .text:0x802DC0B4; // type:function size:0x24 +fn_802DC0D8 = .text:0x802DC0D8; // type:function size:0x4 +fn_802DC0DC = .text:0x802DC0DC; // type:function size:0x68 +fn_802DC144 = .text:0x802DC144; // type:function size:0x68 +fn_802DC1AC = .text:0x802DC1AC; // type:function size:0xCC +fn_802DC278 = .text:0x802DC278; // type:function size:0x60 +fn_802DC2D8 = .text:0x802DC2D8; // type:function size:0x5C +fn_802DC334 = .text:0x802DC334; // type:function size:0x60 +fn_802DC394 = .text:0x802DC394; // type:function size:0x160 +fn_802DC4F4 = .text:0x802DC4F4; // type:function size:0x28 +fn_802DC51C = .text:0x802DC51C; // type:function size:0x60 +fn_802DC57C = .text:0x802DC57C; // type:function size:0x114 +fn_802DC690 = .text:0x802DC690; // type:function size:0x5C +fn_802DC6EC = .text:0x802DC6EC; // type:function size:0x54 +fn_802DC740 = .text:0x802DC740; // type:function size:0x5C +fn_802DC79C = .text:0x802DC79C; // type:function size:0x68 +fn_802DC804 = .text:0x802DC804; // type:function size:0x2C +fn_802DC830 = .text:0x802DC830; // type:function size:0x10 +fn_802DC840 = .text:0x802DC840; // type:function size:0x190 +fn_802DC9D0 = .text:0x802DC9D0; // type:function size:0x54 +fn_802DCA24 = .text:0x802DCA24; // type:function size:0x28 +fn_802DCA4C = .text:0x802DCA4C; // type:function size:0x68 +fn_802DCAB4 = .text:0x802DCAB4; // type:function size:0x16C +fn_802DCC20 = .text:0x802DCC20; // type:function size:0x40 +fn_802DCC60 = .text:0x802DCC60; // type:function size:0x170 +__ls__FR10TextStreamRCQ23Hmx5Color = .text:0x802DCDD0; // type:function size:0x88 +fn_802DCE58 = .text:0x802DCE58; // type:function size:0x84 +__ct__18LinearInterpolatorFffff = .text:0x802DCEDC; // type:function size:0x74 +__ct__12InterpolatorFv = .text:0x802DCF50; // type:function size:0x10 +__ct__18LinearInterpolatorFv = .text:0x802DCF60; // type:function size:0x3C +Reset__18LinearInterpolatorFffff = .text:0x802DCF9C; // type:function size:0xC0 +Reset__18LinearInterpolatorFPC9DataArray = .text:0x802DD05C; // type:function size:0x94 +__ct__15ExpInterpolatorFfffff = .text:0x802DD0F0; // type:function size:0x7C +Reset__15ExpInterpolatorFfffff = .text:0x802DD16C; // type:function size:0xCC +Reset__15ExpInterpolatorFPC9DataArray = .text:0x802DD238; // type:function size:0xF4 +Eval__15ExpInterpolatorFf = .text:0x802DD32C; // type:function size:0x4C +PowThunk__Fdd = .text:0x802DD378; // type:function size:0x4 +__ct__18InvExpInterpolatorFfffff = .text:0x802DD37C; // type:function size:0x7C +Reset__18InvExpInterpolatorFfffff = .text:0x802DD3F8; // type:function size:0xCC +Reset__18InvExpInterpolatorFPC9DataArray = .text:0x802DD4C4; // type:function size:0xF4 +Eval__18InvExpInterpolatorFf = .text:0x802DD5B8; // type:function size:0x64 +__ct__16ATanInterpolatorFfffff = .text:0x802DD61C; // type:function size:0xD8 +__ct__16ATanInterpolatorFv = .text:0x802DD6F4; // type:function size:0x44 +Reset__16ATanInterpolatorFfffff = .text:0x802DD738; // type:function size:0xF0 +ATanThunk__Fd = .text:0x802DD828; // type:function size:0x4 +ATanFloat__Fd = .text:0x802DD82C; // type:function size:0x24 +Reset__16ATanInterpolatorFPC9DataArray = .text:0x802DD850; // type:function size:0xF4 +Eval__16ATanInterpolatorFf = .text:0x802DD944; // type:function size:0x50 +Eval__18LinearInterpolatorFf = .text:0x802DD994; // type:function size:0x10 +__ct__4RandFi = .text:0x802DD9A4; // type:function size:0x60 +Seed__4RandFi = .text:0x802DDA04; // type:function size:0x50 +Int__4RandFii = .text:0x802DDA54; // type:function size:0x4C +Float__4RandFff = .text:0x802DDAA0; // type:function size:0x50 +Float__4RandFv = .text:0x802DDAF0; // type:function size:0x50 +Int__4RandFv = .text:0x802DDB40; // type:function size:0x68 +Gaussian__4RandFv = .text:0x802DDBA8; // type:function size:0x124 +SeedRand__Fi = .text:0x802DDCCC; // type:function size:0x10 +RandomInt__Fv = .text:0x802DDCDC; // type:function size:0x2C +MainThread__Fv = .text:0x802DDD08; // type:function size:0x58 +RandomInt__Fii = .text:0x802DDD60; // type:function size:0x4C +RandomFloat__Fv = .text:0x802DDDAC; // type:function size:0x2C +RandomFloat__Fff = .text:0x802DDDD8; // type:function size:0x4C +__sinit_\rand_cpp = .text:0x802DDE24; // type:function size:0x10 scope:local +__ct__5Rand2Fi = .text:0x802DDE34; // type:function size:0x28 +Int__5Rand2Fv = .text:0x802DDE5C; // type:function size:0x44 +fn_802DDEA0 = .text:0x802DDEA0; // type:function size:0x58 +ToQuat__9ShortQuatCFRQ23Hmx4Quat = .text:0x802DDEF8; // type:function size:0xA4 +__as__14ShortTransformFRC9Transform = .text:0x802DDF9C; // type:function size:0x44 +Set__9ShortQuatFRCQ23Hmx4Quat = .text:0x802DDFE0; // type:function size:0xF0 +__as__14ShortTransformFRC14ShortTransform = .text:0x802DE0D0; // type:function size:0x44 +__as__9ShortQuatFRC9ShortQuat = .text:0x802DE114; // type:function size:0x24 +Set__9ShortQuatFRCQ23Hmx7Matrix3 = .text:0x802DE138; // type:function size:0x3C +__ct__Q23Hmx4QuatFRCQ23Hmx7Matrix3 = .text:0x802DE174; // type:function size:0x30 +fn_802DE1A4 = .text:0x802DE1A4; // type:function size:0x30 +SetThunk__9ShortQuatFRCQ23Hmx4Quat = .text:0x802DE1D4; // type:function size:0x4 +__ct__14ShortTransformFv = .text:0x802DE1D8; // type:function size:0x30 +__eq__7Vector3CFRC7Vector3 = .text:0x802DE208; // type:function size:0x40 +__ne__7Vector3CFRC7Vector3 = .text:0x802DE248; // type:function size:0x40 +__ls__FR9BinStreamRC7Vector3 = .text:0x802DE288; // type:function size:0x50 +fn_802DE2D8 = .text:0x802DE2D8; // type:function size:0x60 +__rs__FR9BinStreamR7Vector3 = .text:0x802DE338; // type:function size:0x4C +__rs__FR9BinStreamRQ23Hmx7Matrix3 = .text:0x802DE384; // type:function size:0x4C +Normalize__FRCQ23Hmx4QuatRQ23Hmx4Quat = .text:0x802DE3D0; // type:function size:0x68 +Set__Q23Hmx4QuatFRC7Vector3f = .text:0x802DE438; // type:function size:0x9C +Cosine__Ff = .text:0x802DE4D4; // type:function size:0x10 +MakeEuler__FRCQ23Hmx7Matrix3R7Vector3 = .text:0x802DE4E4; // type:function size:0xD0 +ASinFloat__Fd = .text:0x802DE5B4; // type:function size:0x24 +MakeVertical__FRQ23Hmx7Matrix3 = .text:0x802DE5D8; // type:function size:0x70 +MakeScale__FRCQ23Hmx7Matrix3R7Vector3 = .text:0x802DE648; // type:function size:0xB8 +MakeEulerScale__FRCQ23Hmx7Matrix3R7Vector3R7Vector3 = .text:0x802DE700; // type:function size:0xD8 +GetXAngle__FRCQ23Hmx7Matrix3 = .text:0x802DE7D8; // type:function size:0xC +GetYAngle__FRCQ23Hmx7Matrix3 = .text:0x802DE7E4; // type:function size:0x10 +GetZAngle__FRCQ23Hmx7Matrix3 = .text:0x802DE7F4; // type:function size:0x2C +Multiply__FRCQ23Hmx4QuatRCQ23Hmx4QuatRQ23Hmx4Quat = .text:0x802DE820; // type:function size:0x6C +__ct__Q23Hmx4QuatFRC7Vector3f = .text:0x802DE88C; // type:function size:0x30 +Set__Q23Hmx4QuatFRC7Vector3 = .text:0x802DE8BC; // type:function size:0x104 +Set__Q23Hmx4QuatFRCQ23Hmx7Matrix3 = .text:0x802DE9C0; // type:function size:0x168 +FastInterp__FRCQ23Hmx4QuatRCQ23Hmx4QuatfRQ23Hmx4Quat = .text:0x802DEB28; // type:function size:0x148 +__ml__FRCQ23Hmx4QuatRCQ23Hmx4Quat = .text:0x802DEC70; // type:function size:0x34 +IdentityInterp__FRCQ23Hmx4QuatfRQ23Hmx4Quat = .text:0x802DECA4; // type:function size:0x90 +InterpThunk__FRCQ23Hmx4QuatRCQ23Hmx4QuatfRQ23Hmx4Quat = .text:0x802DED34; // type:function size:0x4 +Interp__FRCQ23Hmx4QuatRCQ23Hmx4QuatfRQ23Hmx4Quat = .text:0x802DED38; // type:function size:0x148 +Interp__FRCQ23Hmx7Matrix3RCQ23Hmx7Matrix3fRQ23Hmx7Matrix3 = .text:0x802DEE80; // type:function size:0x78 +ACosFloat__Fd = .text:0x802DEEF8; // type:function size:0x24 +MakeRotMatrix__FRC7Vector3RQ23Hmx7Matrix3b = .text:0x802DEF1C; // type:function size:0x174 +MakeRotMatrix__FRC7Vector3RC7Vector3RQ23Hmx7Matrix3 = .text:0x802DF090; // type:function size:0x7C +MakeRotMatrix__FRCQ23Hmx4QuatRQ23Hmx7Matrix3 = .text:0x802DF10C; // type:function size:0xA8 +RotateAboutX__FRCQ23Hmx7Matrix3fRQ23Hmx7Matrix3 = .text:0x802DF1B4; // type:function size:0xCC +RotateAboutZ__FRCQ23Hmx7Matrix3fRQ23Hmx7Matrix3 = .text:0x802DF280; // type:function size:0xCC +MakeEuler__FRCQ23Hmx4QuatR7Vector3 = .text:0x802DF34C; // type:function size:0x54 +MakeRotQuat__FRC7Vector3RC7Vector3RQ23Hmx4Quat = .text:0x802DF3A0; // type:function size:0xFC +MakeRotQuatUnitX__FRC7Vector3RQ23Hmx4Quat = .text:0x802DF49C; // type:function size:0xAC +Multiply__FRC7Vector3RCQ23Hmx4QuatR7Vector3 = .text:0x802DF548; // type:function size:0x10C +__ls__FR10TextStreamRCQ23Hmx4Quat = .text:0x802DF654; // type:function size:0x88 +__ls__FR10TextStreamRC7Vector3 = .text:0x802DF6DC; // type:function size:0x78 +__ls__FR10TextStreamRC7Vector2 = .text:0x802DF754; // type:function size:0x68 +__ls__FR10TextStreamRCQ23Hmx7Matrix3 = .text:0x802DF7BC; // type:function size:0x70 +__ls__FR10TextStreamRC9Transform = .text:0x802DF82C; // type:function size:0x54 +Multiply__FRC9TransformRC9TransformR9Transform = .text:0x802DF880; // type:function size:0x170 +fn_802DF9F0 = .text:0x802DF9F0; // type:function size:0x24C +FastInvert__FRCQ23Hmx7Matrix3RQ23Hmx7Matrix3 = .text:0x802DFC3C; // type:function size:0xE4 +Invert__FRCQ23Hmx7Matrix3RQ23Hmx7Matrix3 = .text:0x802DFD20; // type:function size:0x140 +__ct__11AdjacenciesFv = .text:0x802DFE60; // type:function size:0x1C +__dt__11AdjacenciesFv = .text:0x802DFE7C; // type:function size:0x6C +Init__11AdjacenciesFR17ADJACENCIESCREATE = .text:0x802DFEE8; // type:function size:0x148 +AddTriangle__11AdjacenciesFUiUiUi = .text:0x802E0030; // type:function size:0x150 +AddEdge__11AdjacenciesFUiUiUi = .text:0x802E0180; // type:function size:0x4C +CreateDatabase__11AdjacenciesFv = .text:0x802E01CC; // type:function size:0x278 +UpdateLink__11AdjacenciesFUiUiUiUi = .text:0x802E0444; // type:function size:0xC8 +FindEdge__11AdjTriangleFUiUi = .text:0x802E050C; // type:function size:0xB8 +OppositeVertex__11AdjTriangleFUiUi = .text:0x802E05C4; // type:function size:0xB8 +fn_802E067C = .text:0x802E067C; // type:function size:0x44 +fn_802E06C0 = .text:0x802E06C0; // type:function size:0x4 +fn_802E06C4 = .text:0x802E06C4; // type:function size:0x88 +fn_802E074C = .text:0x802E074C; // type:function size:0x2C +fn_802E0778 = .text:0x802E0778; // type:function size:0x10 +HasFileChecksumData__Fv = .text:0x802E0788; // type:function size:0x8 +GetFileChecksum__FPCcb = .text:0x802E0790; // type:function size:0xA0 +fn_802E0830 = .text:0x802E0830; // type:function size:0x114 +fn_802E0944 = .text:0x802E0944; // type:function size:0x60 +fn_802E09A4 = .text:0x802E09A4; // type:function size:0x5C +fn_802E0A00 = .text:0x802E0A00; // type:function size:0x54 +fn_802E0A54 = .text:0x802E0A54; // type:function size:0x5C +fn_802E0AB0 = .text:0x802E0AB0; // type:function size:0x6C +fn_802E0B1C = .text:0x802E0B1C; // type:function size:0x28 +fn_802E0B44 = .text:0x802E0B44; // type:function size:0x8 +fn_802E0B4C = .text:0x802E0B4C; // type:function size:0x3C +fn_802E0B88 = .text:0x802E0B88; // type:function size:0x5C +fn_802E0BE4 = .text:0x802E0BE4; // type:function size:0x5C +fn_802E0C40 = .text:0x802E0C40; // type:function size:0x60 +fn_802E0CA0 = .text:0x802E0CA0; // type:function size:0x58 +fn_802E0CF8 = .text:0x802E0CF8; // type:function size:0x80 +fn_802E0D78 = .text:0x802E0D78; // type:function size:0x80 +fn_802E0DF8 = .text:0x802E0DF8; // type:function size:0x58 +fn_802E0E50 = .text:0x802E0E50; // type:function size:0x54 +fn_802E0EA4 = .text:0x802E0EA4; // type:function size:0x30 +fn_802E0ED4 = .text:0x802E0ED4; // type:function size:0x30 +fn_802E0F04 = .text:0x802E0F04; // type:function size:0x40 +__ct__11CustomArrayFUlPv = .text:0x802E0F44; // type:function size:0x90 +__dt__11CustomArrayFv = .text:0x802E0FD4; // type:function size:0x8C +fn_802E1060 = .text:0x802E1060; // type:function size:0x5C +__dt__Q211CustomArray11CustomBlockFv = .text:0x802E10BC; // type:function size:0x60 +NewBlock__11CustomArrayFPQ211CustomArray10CustomCellUl = .text:0x802E111C; // type:function size:0x90 +fn_802E11AC = .text:0x802E11AC; // type:function size:0x3C +CheckArray__11CustomArrayFUl = .text:0x802E11E8; // type:function size:0x50 +GetOffset__11CustomArrayFv = .text:0x802E1238; // type:function size:0x30 +Collapse__11CustomArrayFPv = .text:0x802E1268; // type:function size:0xCC +Store__11CustomArrayFUc = .text:0x802E1334; // type:function size:0x6C +Store__11CustomArrayFUs = .text:0x802E13A0; // type:function size:0x6C +Store__11CustomArrayFUi = .text:0x802E140C; // type:function size:0x6C +StoreBit__11CustomArrayFb = .text:0x802E1478; // type:function size:0x80 +EndBits__11CustomArrayFv = .text:0x802E14F8; // type:function size:0x48 +DbToRatio__Ff = .text:0x802E1540; // type:function size:0x40 +RatioToDb__Ff = .text:0x802E1580; // type:function size:0x60 +NextHashPrime__Fi = .text:0x802E15E0; // type:function size:0x34 +__ct__11RadixSorterFv = .text:0x802E1614; // type:function size:0x5C +__dt__11RadixSorterFv = .text:0x802E1670; // type:function size:0x84 +Sort__11RadixSorterFPUiUib = .text:0x802E16F4; // type:function size:0x39C +MemSetZero__FPvUi = .text:0x802E1A90; // type:function size:0xC +ResetIndices__11RadixSorterFv = .text:0x802E1A9C; // type:function size:0x2C +fn_802E1AC8 = .text:0x802E1AC8; // type:function size:0x48 +fn_802E1B10 = .text:0x802E1B10; // type:function size:0x74 +fn_802E1B84 = .text:0x802E1B84; // type:function size:0x50 +fn_802E1BD4 = .text:0x802E1BD4; // type:function size:0x44 +Begin__14StreamChecksumFPCcb = .text:0x802E1C18; // type:function size:0xC +Update__14StreamChecksumFPCUcUi = .text:0x802E1C24; // type:function size:0x4 +fn_802E1C28 = .text:0x802E1C28; // type:function size:0x4 +fn_802E1C2C = .text:0x802E1C2C; // type:function size:0x60 +fn_802E1C8C = .text:0x802E1C8C; // type:function size:0x10 +SetFileChecksum__14StreamChecksumFb = .text:0x802E1C9C; // type:function size:0xA8 +fn_802E1D44 = .text:0x802E1D44; // type:function size:0x8C +fn_802E1DD0 = .text:0x802E1DD0; // type:function size:0xC +fn_802E1DDC = .text:0x802E1DDC; // type:function size:0x14 +fn_802E1DF0 = .text:0x802E1DF0; // type:function size:0x40 +fn_802E1E30 = .text:0x802E1E30; // type:function size:0x5C +fn_802E1E8C = .text:0x802E1E8C; // type:function size:0x30 +fn_802E1EBC = .text:0x802E1EBC; // type:function size:0x88 +fn_802E1F44 = .text:0x802E1F44; // type:function size:0x58 +fn_802E1F9C = .text:0x802E1F9C; // type:function size:0x4C +__ct__7StriperFv = .text:0x802E1FE8; // type:function size:0x1C +__dt__7StriperFv = .text:0x802E2004; // type:function size:0x54 +FreeUsedRam__7StriperFv = .text:0x802E2058; // type:function size:0x84 +Init__7StriperFR13STRIPERCREATE = .text:0x802E20DC; // type:function size:0x138 +fn_802E2214 = .text:0x802E2214; // type:function size:0x14 +Compute__7StriperFR13STRIPERRESULT = .text:0x802E2228; // type:function size:0x3BC +fn_802E25E4 = .text:0x802E25E4; // type:function size:0x4 +ComputeBestStrip__7StriperFUi = .text:0x802E25E8; // type:function size:0x440 +fn_802E2A28 = .text:0x802E2A28; // type:function size:0x10 +TrackStrip__7StriperFUiUiUiPUiPUiPb = .text:0x802E2A38; // type:function size:0x104 +fn_802E2B3C = .text:0x802E2B3C; // type:function size:0x1E8 +__apl__7Vector3FRC7Vector3 = .text:0x802E2D24; // type:function size:0x34 +__ami__7Vector3FRC7Vector3 = .text:0x802E2D58; // type:function size:0x34 +Normalize__FRCQ23Hmx7Matrix3RQ23Hmx7Matrix3 = .text:0x802E2D8C; // type:function size:0x6C +__ct__Q23Hmx4QuatFRC7Vector3 = .text:0x802E2DF8; // type:function size:0x30 +TrigTableInit__Fv = .text:0x802E2E28; // type:function size:0x10C +TrigTableNOP__Fv = .text:0x802E2F34; // type:function size:0x4 +Sine__Ff = .text:0x802E2F38; // type:function size:0x58 +Lookup__Ff = .text:0x802E2F90; // type:function size:0x58 +FastSin__Ff = .text:0x802E2FE8; // type:function size:0x84 +DataSin__FP9DataArray = .text:0x802E306C; // type:function size:0x44 +DegreesToRadians__Ff = .text:0x802E30B0; // type:function size:0x10 +DataCos__FP9DataArray = .text:0x802E30C0; // type:function size:0x44 +DataTan__FP9DataArray = .text:0x802E3104; // type:function size:0x44 +TanThunk__Fd = .text:0x802E3148; // type:function size:0x4 +TanFloat__Fd = .text:0x802E314C; // type:function size:0x24 +DataASin__FP9DataArray = .text:0x802E3170; // type:function size:0x7C +RadiansToDegrees__Ff = .text:0x802E31EC; // type:function size:0x10 +ASinThunk__Fd = .text:0x802E31FC; // type:function size:0x4 +IsNan__Ff = .text:0x802E3200; // type:function size:0x14 +DataACos__FP9DataArray = .text:0x802E3214; // type:function size:0x7C +ACosThunk__Fd = .text:0x802E3290; // type:function size:0x4 +DataATan__FP9DataArray = .text:0x802E3294; // type:function size:0x7C +DataInitTrigFuncs__Fv = .text:0x802E3310; // type:function size:0xBC +fn_802E33CC = .text:0x802E33CC; // type:function size:0x1DC +fn_802E35A8 = .text:0x802E35A8; // type:function size:0x12C +fn_802E36D4 = .text:0x802E36D4; // type:function size:0x26C +fn_802E3940 = .text:0x802E3940; // type:function size:0x6C +fn_802E39AC = .text:0x802E39AC; // type:function size:0x13C +fn_802E3AE8 = .text:0x802E3AE8; // type:function size:0x110 +fn_802E3BF8 = .text:0x802E3BF8; // type:function size:0x24 +fn_802E3C1C = .text:0x802E3C1C; // type:function size:0x1E0 +fn_802E3DFC = .text:0x802E3DFC; // type:function size:0x64 +fn_802E3E60 = .text:0x802E3E60; // type:function size:0x13C +fn_802E3F9C = .text:0x802E3F9C; // type:function size:0x110 +fn_802E40AC = .text:0x802E40AC; // type:function size:0x24 +fn_802E40D0 = .text:0x802E40D0; // type:function size:0x104 +fn_802E41D4 = .text:0x802E41D4; // type:function size:0x178 +fn_802E434C = .text:0x802E434C; // type:function size:0x48 +fn_802E4394 = .text:0x802E4394; // type:function size:0x54 +fn_802E43E8 = .text:0x802E43E8; // type:function size:0xC +fn_802E43F4 = .text:0x802E43F4; // type:function size:0x68 +fn_802E445C = .text:0x802E445C; // type:function size:0x58 +fn_802E44B4 = .text:0x802E44B4; // type:function size:0x48 +EnableAppChild__FP9DataArray = .text:0x802E44FC; // type:function size:0x4C +DisableAppChild__FP9DataArray = .text:0x802E4548; // type:function size:0x4C +SyncAppChild__FP9DataArray = .text:0x802E4594; // type:function size:0x48 +Init__8AppChildFv = .text:0x802E45DC; // type:function size:0x104 +Terminate__8AppChildFv = .text:0x802E46E0; // type:function size:0x3C +__ct__8AppChildFPCc = .text:0x802E471C; // type:function size:0x90 +fn_802E47AC = .text:0x802E47AC; // type:function size:0xC +fn_802E47B8 = .text:0x802E47B8; // type:function size:0x30 +fn_802E47E8 = .text:0x802E47E8; // type:function size:0x10 +__dt__8AppChildFv = .text:0x802E47F8; // type:function size:0x70 +Sync__8AppChildFv = .text:0x802E4868; // type:function size:0x50 +fn_802E48B8 = .text:0x802E48B8; // type:function size:0x94 +fn_802E494C = .text:0x802E494C; // type:function size:0x38 +fn_802E4984 = .text:0x802E4984; // type:function size:0xAC +fn_802E4A30 = .text:0x802E4A30; // type:function size:0x124 +fn_802E4B54 = .text:0x802E4B54; // type:function size:0x68 +fn_802E4BBC = .text:0x802E4BBC; // type:function size:0x6C +fn_802E4C28 = .text:0x802E4C28; // type:function size:0x28 +fn_802E4C50 = .text:0x802E4C50; // type:function size:0x8 +fn_802E4C58 = .text:0x802E4C58; // type:function size:0x3C +fn_802E4C94 = .text:0x802E4C94; // type:function size:0x1C +fn_802E4CB0 = .text:0x802E4CB0; // type:function size:0x10C +fn_802E4DBC = .text:0x802E4DBC; // type:function size:0xD0 +fn_802E4E8C = .text:0x802E4E8C; // type:function size:0x30 +fn_802E4EBC = .text:0x802E4EBC; // type:function size:0x30 +fn_802E4EEC = .text:0x802E4EEC; // type:function size:0x40 +GetFileInfo__7ArchiveFPCcRiRUxRiRi = .text:0x802E4F2C; // type:function size:0x198 +fn_802E50C4 = .text:0x802E50C4; // type:function size:0xC +fn_802E50D0 = .text:0x802E50D0; // type:function size:0x64 +fn_802E5134 = .text:0x802E5134; // type:function size:0xA0 +fn_802E51D4 = .text:0x802E51D4; // type:function size:0x24 +fn_802E51F8 = .text:0x802E51F8; // type:function size:0x14 +fn_802E520C = .text:0x802E520C; // type:function size:0x18 +fn_802E5224 = .text:0x802E5224; // type:function size:0x24 +fn_802E5248 = .text:0x802E5248; // type:function size:0x14 +fn_802E525C = .text:0x802E525C; // type:function size:0x5C +fn_802E52B8 = .text:0x802E52B8; // type:function size:0x2D0 +fn_802E5588 = .text:0x802E5588; // type:function size:0x7C +fn_802E5604 = .text:0x802E5604; // type:function size:0x4 +fn_802E5608 = .text:0x802E5608; // type:function size:0x90 +fn_802E5698 = .text:0x802E5698; // type:function size:0x4 +fn_802E569C = .text:0x802E569C; // type:function size:0x40 +fn_802E56DC = .text:0x802E56DC; // type:function size:0x80 +fn_802E575C = .text:0x802E575C; // type:function size:0x8 +fn_802E5764 = .text:0x802E5764; // type:function size:0x8C +fn_802E57F0 = .text:0x802E57F0; // type:function size:0x94 +fn_802E5884 = .text:0x802E5884; // type:function size:0x108 +fn_802E598C = .text:0x802E598C; // type:function size:0x30 +fn_802E59BC = .text:0x802E59BC; // type:function size:0xD4 +fn_802E5A90 = .text:0x802E5A90; // type:function size:0x34 +fn_802E5AC4 = .text:0x802E5AC4; // type:function size:0xB0 +fn_802E5B74 = .text:0x802E5B74; // type:function size:0xF4 +fn_802E5C68 = .text:0x802E5C68; // type:function size:0xA0 +fn_802E5D08 = .text:0x802E5D08; // type:function size:0x6C +fn_802E5D74 = .text:0x802E5D74; // type:function size:0x30 +fn_802E5DA4 = .text:0x802E5DA4; // type:function size:0x7C +fn_802E5E20 = .text:0x802E5E20; // type:function size:0x88 +fn_802E5EA8 = .text:0x802E5EA8; // type:function size:0x98 +fn_802E5F40 = .text:0x802E5F40; // type:function size:0x6C +fn_802E5FAC = .text:0x802E5FAC; // type:function size:0xC +fn_802E5FB8 = .text:0x802E5FB8; // type:function size:0x58 +fn_802E6010 = .text:0x802E6010; // type:function size:0xC0 +fn_802E60D0 = .text:0x802E60D0; // type:function size:0x94 +fn_802E6164 = .text:0x802E6164; // type:function size:0x88 +fn_802E61EC = .text:0x802E61EC; // type:function size:0xA0 +fn_802E628C = .text:0x802E628C; // type:function size:0x70 +fn_802E62FC = .text:0x802E62FC; // type:function size:0x58 +fn_802E6354 = .text:0x802E6354; // type:function size:0x64 +fn_802E63B8 = .text:0x802E63B8; // type:function size:0x28 +fn_802E63E0 = .text:0x802E63E0; // type:function size:0x68 +fn_802E6448 = .text:0x802E6448; // type:function size:0x30 +fn_802E6478 = .text:0x802E6478; // type:function size:0x78 +fn_802E64F0 = .text:0x802E64F0; // type:function size:0x50 +fn_802E6540 = .text:0x802E6540; // type:function size:0x18 +fn_802E6558 = .text:0x802E6558; // type:function size:0x10 +fn_802E6568 = .text:0x802E6568; // type:function size:0x4 +fn_802E656C = .text:0x802E656C; // type:function size:0x90 +fn_802E65FC = .text:0x802E65FC; // type:function size:0x4 +fn_802E6600 = .text:0x802E6600; // type:function size:0x40 +fn_802E6640 = .text:0x802E6640; // type:function size:0x8C +fn_802E66CC = .text:0x802E66CC; // type:function size:0x8 +fn_802E66D4 = .text:0x802E66D4; // type:function size:0x2C +fn_802E6700 = .text:0x802E6700; // type:function size:0x58 +fn_802E6758 = .text:0x802E6758; // type:function size:0x28 +fn_802E6780 = .text:0x802E6780; // type:function size:0x68 +fn_802E67E8 = .text:0x802E67E8; // type:function size:0x8 +fn_802E67F0 = .text:0x802E67F0; // type:function size:0xC +Enumerate__7ArchiveFPCcPFPCcPCc_vbPCc = .text:0x802E67FC; // type:function size:0x19C +fn_802E6998 = .text:0x802E6998; // type:function size:0x4C +fn_802E69E4 = .text:0x802E69E4; // type:function size:0x3C +fn_802E6A20 = .text:0x802E6A20; // type:function size:0x10 +fn_802E6A30 = .text:0x802E6A30; // type:function size:0x4C +fn_802E6A7C = .text:0x802E6A7C; // type:function size:0x68 +fn_802E6AE4 = .text:0x802E6AE4; // type:function size:0x68 +fn_802E6B4C = .text:0x802E6B4C; // type:function size:0x2C +fn_802E6B78 = .text:0x802E6B78; // type:function size:0x180 +fn_802E6CF8 = .text:0x802E6CF8; // type:function size:0x58 +fn_802E6D50 = .text:0x802E6D50; // type:function size:0x58 +fn_802E6DA8 = .text:0x802E6DA8; // type:function size:0x18C +fn_802E6F34 = .text:0x802E6F34; // type:function size:0x5C +fn_802E6F90 = .text:0x802E6F90; // type:function size:0x10 +fn_802E6FA0 = .text:0x802E6FA0; // type:function size:0x54 +fn_802E6FF4 = .text:0x802E6FF4; // type:function size:0x5C +fn_802E7050 = .text:0x802E7050; // type:function size:0x114 +fn_802E7164 = .text:0x802E7164; // type:function size:0x5C +fn_802E71C0 = .text:0x802E71C0; // type:function size:0x5C +fn_802E721C = .text:0x802E721C; // type:function size:0x54 +fn_802E7270 = .text:0x802E7270; // type:function size:0x5C +__ct__7ArkFileFPCci = .text:0x802E72CC; // type:function size:0xC0 +__dt__4FileFv = .text:0x802E738C; // type:function size:0x50 +__ct__4FileFv = .text:0x802E73DC; // type:function size:0x20 +__dt__7ArkFileFv = .text:0x802E73FC; // type:function size:0x90 +Read__7ArkFileFPvi = .text:0x802E748C; // type:function size:0x74 +ReadAsync__7ArkFileFPvi = .text:0x802E7500; // type:function size:0x1D8 +V_Unk5__7ArkFileFPvi = .text:0x802E76D8; // type:function size:0x8 +Seek__7ArkFileFii = .text:0x802E76E0; // type:function size:0x48 +Tell__7ArkFileFv = .text:0x802E7728; // type:function size:0x8 +Eof__7ArkFileFv = .text:0x802E7730; // type:function size:0x18 +Fail__7ArkFileFv = .text:0x802E7748; // type:function size:0x10 +Size__7ArkFileFv = .text:0x802E7758; // type:function size:0x8 +UncompressedSize__7ArkFileFv = .text:0x802E7760; // type:function size:0x8 +TaskDone__7ArkFileFi = .text:0x802E7768; // type:function size:0x28 +ReadDone__7ArkFileFRi = .text:0x802E7790; // type:function size:0x54 +V_Unk16__7ArkFileFPi = .text:0x802E77E4; // type:function size:0x28 +Filename__4FileFv = .text:0x802E780C; // type:function size:0x4 +Filename__7ArkFileFv = .text:0x802E7810; // type:function size:0x8 +V_Unk15__4FileFPi = .text:0x802E7818; // type:function size:0x10 +fn_802E7828 = .text:0x802E7828; // type:function size:0x280 +New__9AsyncFileFPCci = .text:0x802E7AA8; // type:function size:0xC0 +__ct__9AsyncFileFPCci = .text:0x802E7B68; // type:function size:0x7C +Init__9AsyncFileFv = .text:0x802E7BE4; // type:function size:0x1F8 +EndianSwapEq__FRi_v = .text:0x802E7DDC; // type:function size:0x34 +SwapDataWord__Fi = .text:0x802E7E10; // type:function size:0x1C +Terminate__9AsyncFileFv = .text:0x802E7E2C; // type:function size:0x60 +Read__9AsyncFileFPvi = .text:0x802E7E8C; // type:function size:0x74 +V_Unk5__9AsyncFileFPvi = .text:0x802E7F00; // type:function size:0x7C +ReadAsync__9AsyncFileFPvi = .text:0x802E7F7C; // type:function size:0xB4 +ReadDone__9AsyncFileFRi = .text:0x802E8030; // type:function size:0x17C +V_Unk15__9AsyncFileFPi = .text:0x802E81AC; // type:function size:0x24 +fn_802E81D0 = .text:0x802E81D0; // type:function size:0x4 +Write__9AsyncFileFPCvi = .text:0x802E81D4; // type:function size:0x12C +Seek__9AsyncFileFii = .text:0x802E8300; // type:function size:0x138 +fn_802E8438__FPxPxPx = .text:0x802E8438; // type:function size:0x74 +Tell__9AsyncFileFv = .text:0x802E84AC; // type:function size:0x8 +Flush__9AsyncFileFv = .text:0x802E84B4; // type:function size:0x7C +FillBuffer__9AsyncFileFv = .text:0x802E8530; // type:function size:0xA0 +Minimum__FUiUi = .text:0x802E85D0; // type:function size:0x10 +Eof__9AsyncFileFv = .text:0x802E85E0; // type:function size:0x18 +Fail__9AsyncFileFv = .text:0x802E85F8; // type:function size:0x8 +Size__9AsyncFileFv = .text:0x802E8600; // type:function size:0x8 +UncompressedSize__9AsyncFileFv = .text:0x802E8608; // type:function size:0x8 +__dt__9AsyncFileFv = .text:0x802E8610; // type:function size:0x68 +Filename__9AsyncFileFv = .text:0x802E8678; // type:function size:0x8 +__ct__12AsyncFileCNTFPCci = .text:0x802E8680; // type:function size:0xF4 +V_Unk16__12AsyncFileCNTFPi = .text:0x802E8774; // type:function size:0x10 +_Open__12AsyncFileCNTFv = .text:0x802E8784; // type:function size:0x13C +V_Unk19__12AsyncFileCNTFv = .text:0x802E88C0; // type:function size:0x8 +_Write__12AsyncFileCNTFPCvi = .text:0x802E88C8; // type:function size:0x4 +V_Unk21__12AsyncFileCNTFv = .text:0x802E88CC; // type:function size:0x8 +_SeekToTell__12AsyncFileCNTFv = .text:0x802E88D4; // type:function size:0x58 +_ReadAsync__12AsyncFileCNTFPvi = .text:0x802E892C; // type:function size:0x90 +ReadAsyncCNT__FPv = .text:0x802E89BC; // type:function size:0x40 +_ReadDone__12AsyncFileCNTFv = .text:0x802E89FC; // type:function size:0xA8 +_Close__12AsyncFileCNTFv = .text:0x802E8AA4; // type:function size:0x6C +__dt__12AsyncFileCNTFv = .text:0x802E8B10; // type:function size:0x6C +__ct__12AsyncFileWiiFPCci = .text:0x802E8B7C; // type:function size:0x50 +_Open__12AsyncFileWiiFv = .text:0x802E8BCC; // type:function size:0x7C +V_Unk19__12AsyncFileWiiFv = .text:0x802E8C48; // type:function size:0x8 +_Write__12AsyncFileWiiFPCvi = .text:0x802E8C50; // type:function size:0x4 +V_Unk21__12AsyncFileWiiFv = .text:0x802E8C54; // type:function size:0x8 +_SeekToTell__12AsyncFileWiiFv = .text:0x802E8C5C; // type:function size:0x5C +_ReadAsync__12AsyncFileWiiFPvi = .text:0x802E8CB8; // type:function size:0x70 +_ReadDone__12AsyncFileWiiFv = .text:0x802E8D28; // type:function size:0x1DC +fn_802E8F04 = .text:0x802E8F04; // type:function size:0xC +fn_802E8F10 = .text:0x802E8F10; // type:function size:0xC +_Close__12AsyncFileWiiFv = .text:0x802E8F1C; // type:function size:0x6C +fn_802E8F88__Fv = .text:0x802E8F88; // type:function size:0x40 +__dt__12AsyncFileWiiFv = .text:0x802E8FC8; // type:function size:0x6C +fn_802E9034 = .text:0x802E9034; // type:function size:0xC +__ct__9AsyncTaskFP7ArkFilePviiiiPCc = .text:0x802E9040; // type:function size:0x20 +fn_802E9060 = .text:0x802E9060; // type:function size:0x30 +FillData__9AsyncTaskFv = .text:0x802E9090; // type:function size:0x8C +fn_802E911C = .text:0x802E911C; // type:function size:0x1C +fn_802E9138 = .text:0x802E9138; // type:function size:0x1C +fn_802E9154 = .text:0x802E9154; // type:function size:0x40 +fn_802E9194 = .text:0x802E9194; // type:function size:0x14 +fn_802E91A8 = .text:0x802E91A8; // type:function size:0x2C +fn_802E91D4 = .text:0x802E91D4; // type:function size:0x30 +fn_802E9204 = .text:0x802E9204; // type:function size:0x6C +UpdateTimestamp__5BlockFv = .text:0x802E9270; // type:function size:0x18 +fn_802E9288 = .text:0x802E9288; // type:function size:0x28 +fn_802E92B0 = .text:0x802E92B0; // type:function size:0x30 +fn_802E92E0 = .text:0x802E92E0; // type:function size:0x58 +fn_802E9338 = .text:0x802E9338; // type:function size:0x58 +fn_802E9390 = .text:0x802E9390; // type:function size:0x60 +fn_802E93F0 = .text:0x802E93F0; // type:function size:0x58 +fn_802E9448 = .text:0x802E9448; // type:function size:0x30 +fn_802E9478 = .text:0x802E9478; // type:function size:0x30 +fn_802E94A8 = .text:0x802E94A8; // type:function size:0x60 +fn_802E9508 = .text:0x802E9508; // type:function size:0x7C +fn_802E9584 = .text:0x802E9584; // type:function size:0x4 +fn_802E9588 = .text:0x802E9588; // type:function size:0x54 +fn_802E95DC = .text:0x802E95DC; // type:function size:0x64 +fn_802E9640 = .text:0x802E9640; // type:function size:0x50 +fn_802E9690 = .text:0x802E9690; // type:function size:0x4C +fn_802E96DC = .text:0x802E96DC; // type:function size:0x4 +fn_802E96E0 = .text:0x802E96E0; // type:function size:0x28 +fn_802E9708 = .text:0x802E9708; // type:function size:0x3C +fn_802E9744 = .text:0x802E9744; // type:function size:0xE0 +GetAssociatedBlocks__8BlockMgrFUxiRiRiRi = .text:0x802E9824; // type:function size:0x64 +KillBlockRequests__8BlockMgrFP7ArkFile = .text:0x802E9888; // type:function size:0x1A0 +fn_802E9A28 = .text:0x802E9A28; // type:function size:0x4 +fn_802E9A2C = .text:0x802E9A2C; // type:function size:0x4 +fn_802E9A30 = .text:0x802E9A30; // type:function size:0x34 +fn_802E9A64 = .text:0x802E9A64; // type:function size:0x50 +fn_802E9AB4 = .text:0x802E9AB4; // type:function size:0x6C +fn_802E9B20 = .text:0x802E9B20; // type:function size:0x2C +fn_802E9B4C = .text:0x802E9B4C; // type:function size:0x8 +fn_802E9B54 = .text:0x802E9B54; // type:function size:0x5C +fn_802E9BB0 = .text:0x802E9BB0; // type:function size:0x4C +fn_802E9BFC = .text:0x802E9BFC; // type:function size:0x70 +fn_802E9C6C = .text:0x802E9C6C; // type:function size:0x30 +fn_802E9C9C = .text:0x802E9C9C; // type:function size:0x2C +fn_802E9CC8 = .text:0x802E9CC8; // type:function size:0x4 +fn_802E9CCC = .text:0x802E9CCC; // type:function size:0x34 +fn_802E9D00 = .text:0x802E9D00; // type:function size:0x50 +fn_802E9D50 = .text:0x802E9D50; // type:function size:0x6C +fn_802E9DBC = .text:0x802E9DBC; // type:function size:0x2C +fn_802E9DE8 = .text:0x802E9DE8; // type:function size:0x8 +fn_802E9DF0 = .text:0x802E9DF0; // type:function size:0x14 +fn_802E9E04 = .text:0x802E9E04; // type:function size:0x4 +fn_802E9E08 = .text:0x802E9E08; // type:function size:0x8 +fn_802E9E10 = .text:0x802E9E10; // type:function size:0xC +GetBlockData__8BlockMgrFiii = .text:0x802E9E1C; // type:function size:0x5C +AddTask__8BlockMgrFRC9AsyncTask = .text:0x802E9E78; // type:function size:0x178 +fn_802E9FF0 = .text:0x802E9FF0; // type:function size:0x4 +fn_802E9FF4 = .text:0x802E9FF4; // type:function size:0x54 +fn_802EA048 = .text:0x802EA048; // type:function size:0x64 +fn_802EA0AC = .text:0x802EA0AC; // type:function size:0x50 +fn_802EA0FC = .text:0x802EA0FC; // type:function size:0x10 +fn_802EA10C = .text:0x802EA10C; // type:function size:0x50 +fn_802EA15C = .text:0x802EA15C; // type:function size:0x30 +fn_802EA18C = .text:0x802EA18C; // type:function size:0x90 +fn_802EA21C = .text:0x802EA21C; // type:function size:0x60 +fn_802EA27C = .text:0x802EA27C; // type:function size:0x90 +fn_802EA30C = .text:0x802EA30C; // type:function size:0x58 +fn_802EA364 = .text:0x802EA364; // type:function size:0x74 +fn_802EA3D8 = .text:0x802EA3D8; // type:function size:0xB0 +Poll__8BlockMgrFv = .text:0x802EA488; // type:function size:0x398 +fn_802EA820 = .text:0x802EA820; // type:function size:0x4C +fn_802EA86C = .text:0x802EA86C; // type:function size:0x70 +fn_802EA8DC = .text:0x802EA8DC; // type:function size:0x4 +fn_802EA8E0 = .text:0x802EA8E0; // type:function size:0x90 +fn_802EA970 = .text:0x802EA970; // type:function size:0xFC +fn_802EAA6C = .text:0x802EAA6C; // type:function size:0x98 +fn_802EAB04 = .text:0x802EAB04; // type:function size:0xE8 +fn_802EABEC = .text:0x802EABEC; // type:function size:0x8 +fn_802EABF4 = .text:0x802EABF4; // type:function size:0x68 +fn_802EAC5C = .text:0x802EAC5C; // type:function size:0x50 +fn_802EACAC = .text:0x802EACAC; // type:function size:0x68 +fn_802EAD14 = .text:0x802EAD14; // type:function size:0x58 +fn_802EAD6C = .text:0x802EAD6C; // type:function size:0x58 +fn_802EADC4 = .text:0x802EADC4; // type:function size:0x60 +fn_802EAE24 = .text:0x802EAE24; // type:function size:0x58 +fn_802EAE7C = .text:0x802EAE7C; // type:function size:0x60 +fn_802EAEDC = .text:0x802EAEDC; // type:function size:0x30 +fn_802EAF0C = .text:0x802EAF0C; // type:function size:0x30 +fn_802EAF3C = .text:0x802EAF3C; // type:function size:0x60 +fn_802EAF9C = .text:0x802EAF9C; // type:function size:0x68 +fn_802EB004 = .text:0x802EB004; // type:function size:0x218 +fn_802EB21C = .text:0x802EB21C; // type:function size:0x8 +fn_802EB224 = .text:0x802EB224; // type:function size:0x200 +fn_802EB424 = .text:0x802EB424; // type:function size:0x4 +fn_802EB428 = .text:0x802EB428; // type:function size:0x90 +fn_802EB4B8 = .text:0x802EB4B8; // type:function size:0x4 +fn_802EB4BC = .text:0x802EB4BC; // type:function size:0x40 +fn_802EB4FC = .text:0x802EB4FC; // type:function size:0x8C +fn_802EB588 = .text:0x802EB588; // type:function size:0x8 +fn_802EB590 = .text:0x802EB590; // type:function size:0x2C +fn_802EB5BC = .text:0x802EB5BC; // type:function size:0x58 +fn_802EB614 = .text:0x802EB614; // type:function size:0x28 +fn_802EB63C = .text:0x802EB63C; // type:function size:0x68 +fn_802EB6A4 = .text:0x802EB6A4; // type:function size:0x40 +fn_802EB6E4 = .text:0x802EB6E4; // type:function size:0x10 +fn_802EB6F4 = .text:0x802EB6F4; // type:function size:0x68 +fn_802EB75C = .text:0x802EB75C; // type:function size:0x2C +fn_802EB788 = .text:0x802EB788; // type:function size:0x1AC +fn_802EB934 = .text:0x802EB934; // type:function size:0x5C +fn_802EB990 = .text:0x802EB990; // type:function size:0x38 +fn_802EB9C8 = .text:0x802EB9C8; // type:function size:0x54 +fn_802EBA1C = .text:0x802EBA1C; // type:function size:0x28 +fn_802EBA44 = .text:0x802EBA44; // type:function size:0x68 +fn_802EBAAC = .text:0x802EBAAC; // type:function size:0x5C +fn_802EBB08 = .text:0x802EBB08; // type:function size:0x38 +fn_802EBB40 = .text:0x802EBB40; // type:function size:0x114 +fn_802EBC54 = .text:0x802EBC54; // type:function size:0x5C +fn_802EBCB0 = .text:0x802EBCB0; // type:function size:0x5C +fn_802EBD0C = .text:0x802EBD0C; // type:function size:0x54 +fn_802EBD60 = .text:0x802EBD60; // type:function size:0x5C +fn_802EBDBC = .text:0x802EBDBC; // type:function size:0x6C +fn_802EBE28 = .text:0x802EBE28; // type:function size:0x28 +fn_802EBE50 = .text:0x802EBE50; // type:function size:0x8 +fn_802EBE58 = .text:0x802EBE58; // type:function size:0x3C +fn_802EBE94 = .text:0x802EBE94; // type:function size:0x94 +fn_802EBF28 = .text:0x802EBF28; // type:function size:0x58 +fn_802EBF80 = .text:0x802EBF80; // type:function size:0x80 +fn_802EC000 = .text:0x802EC000; // type:function size:0x80 +fn_802EC080 = .text:0x802EC080; // type:function size:0x58 +fn_802EC0D8 = .text:0x802EC0D8; // type:function size:0x54 +fn_802EC12C = .text:0x802EC12C; // type:function size:0x30 +fn_802EC15C = .text:0x802EC15C; // type:function size:0x30 +fn_802EC18C = .text:0x802EC18C; // type:function size:0x40 +fn_802EC1CC = .text:0x802EC1CC; // type:function size:0x40 +fn_802EC20C = .text:0x802EC20C; // type:function size:0x4C +fn_802EC258 = .text:0x802EC258; // type:function size:0x4C +fn_802EC2A4 = .text:0x802EC2A4; // type:function size:0x14 +fn_802EC2B8 = .text:0x802EC2B8; // type:function size:0x80 +fn_802EC338 = .text:0x802EC338; // type:function size:0x130 +fn_802EC468 = .text:0x802EC468; // type:function size:0x8C +fn_802EC4F4 = .text:0x802EC4F4; // type:function size:0x50 +fn_802EC544 = .text:0x802EC544; // type:function size:0x444 +fn_802EC988 = .text:0x802EC988; // type:function size:0x64 +fn_802EC9EC = .text:0x802EC9EC; // type:function size:0x4C +fn_802ECA38 = .text:0x802ECA38; // type:function size:0x1C8 +fn_802ECC00 = .text:0x802ECC00; // type:function size:0xAC +fn_802ECCAC = .text:0x802ECCAC; // type:function size:0x4C +fn_802ECCF8 = .text:0x802ECCF8; // type:function size:0x210 +fn_802ECF08 = .text:0x802ECF08; // type:function size:0x48 +fn_802ECF50 = .text:0x802ECF50; // type:function size:0x34 +fn_802ECF84 = .text:0x802ECF84; // type:function size:0x290 +fn_802ED214 = .text:0x802ED214; // type:function size:0x4 +fn_802ED218 = .text:0x802ED218; // type:function size:0xC +fn_802ED224 = .text:0x802ED224; // type:function size:0x14 +fn_802ED238 = .text:0x802ED238; // type:function size:0xD4 +fn_802ED30C = .text:0x802ED30C; // type:function size:0x12C +fn_802ED438 = .text:0x802ED438; // type:function size:0x14 +fn_802ED44C = .text:0x802ED44C; // type:function size:0x200 +fn_802ED64C = .text:0x802ED64C; // type:function size:0x158 +fn_802ED7A4 = .text:0x802ED7A4; // type:function size:0x64 +fn_802ED808 = .text:0x802ED808; // type:function size:0x94 +fn_802ED89C = .text:0x802ED89C; // type:function size:0x78 +fn_802ED914 = .text:0x802ED914; // type:function size:0x7C +fn_802ED990 = .text:0x802ED990; // type:function size:0x15C +fn_802EDAEC = .text:0x802EDAEC; // type:function size:0xE0 +fn_802EDBCC = .text:0x802EDBCC; // type:function size:0x1CC +fn_802EDD98 = .text:0x802EDD98; // type:function size:0x1D0 +fn_802EDF68 = .text:0x802EDF68; // type:function size:0x10C +fn_802EE074 = .text:0x802EE074; // type:function size:0x98 +fn_802EE10C = .text:0x802EE10C; // type:function size:0x4C +fn_802EE158 = .text:0x802EE158; // type:function size:0x58 +fn_802EE1B0 = .text:0x802EE1B0; // type:function size:0x3C +fn_802EE1EC = .text:0x802EE1EC; // type:function size:0x70 +fn_802EE25C = .text:0x802EE25C; // type:function size:0x58 +fn_802EE2B4 = .text:0x802EE2B4; // type:function size:0x58 +fn_802EE30C = .text:0x802EE30C; // type:function size:0x10 +fn_802EE31C = .text:0x802EE31C; // type:function size:0x1AC +fn_802EE4C8 = .text:0x802EE4C8; // type:function size:0xC0 +fn_802EE588 = .text:0x802EE588; // type:function size:0x4 +fn_802EE58C = .text:0x802EE58C; // type:function size:0x50 +fn_802EE5DC = .text:0x802EE5DC; // type:function size:0x64 +fn_802EE640 = .text:0x802EE640; // type:function size:0x70 +fn_802EE6B0 = .text:0x802EE6B0; // type:function size:0xD8 +fn_802EE788 = .text:0x802EE788; // type:function size:0x90 +fn_802EE818 = .text:0x802EE818; // type:function size:0xC +fn_802EE824 = .text:0x802EE824; // type:function size:0xC8 +fn_802EE8EC = .text:0x802EE8EC; // type:function size:0xC8 +fn_802EE9B4 = .text:0x802EE9B4; // type:function size:0x50 +fn_802EEA04 = .text:0x802EEA04; // type:function size:0x110 +fn_802EEB14 = .text:0x802EEB14; // type:function size:0x1E4 +fn_802EECF8 = .text:0x802EECF8; // type:function size:0xC +fn_802EED04 = .text:0x802EED04; // type:function size:0x170 +fn_802EEE74 = .text:0x802EEE74; // type:function size:0x11C +fn_802EEF90 = .text:0x802EEF90; // type:function size:0x40 +fn_802EEFD0 = .text:0x802EEFD0; // type:function size:0x9C +fn_802EF06C = .text:0x802EF06C; // type:function size:0x108 +fn_802EF174 = .text:0x802EF174; // type:function size:0xC +fn_802EF180 = .text:0x802EF180; // type:function size:0x118 +fn_802EF298 = .text:0x802EF298; // type:function size:0x5C +fn_802EF2F4 = .text:0x802EF2F4; // type:function size:0x54 +fn_802EF348 = .text:0x802EF348; // type:function size:0x54 +fn_802EF39C = .text:0x802EF39C; // type:function size:0x60 +fn_802EF3FC = .text:0x802EF3FC; // type:function size:0x20 +fn_802EF41C = .text:0x802EF41C; // type:function size:0xC +fn_802EF428 = .text:0x802EF428; // type:function size:0x68 +fn_802EF490 = .text:0x802EF490; // type:function size:0x4C +Handle__14WiiCommerceMgrFP9DataArrayb = .text:0x802EF4DC; // type:function size:0xAE4 +fn_802EFFC0 = .text:0x802EFFC0; // type:function size:0x8 +fn_802EFFC8 = .text:0x802EFFC8; // type:function size:0x8 +fn_802EFFD0 = .text:0x802EFFD0; // type:function size:0x8 +fn_802EFFD8 = .text:0x802EFFD8; // type:function size:0x8 +fn_802EFFE0 = .text:0x802EFFE0; // type:function size:0x8 +fn_802EFFE8 = .text:0x802EFFE8; // type:function size:0x14 +fn_802EFFFC = .text:0x802EFFFC; // type:function size:0x10 +fn_802F000C = .text:0x802F000C; // type:function size:0x10 +fn_802F001C = .text:0x802F001C; // type:function size:0x34 +fn_802F0050 = .text:0x802F0050; // type:function size:0x3C +fn_802F008C = .text:0x802F008C; // type:function size:0xCC +fn_802F0158 = .text:0x802F0158; // type:function size:0x60 +fn_802F01B8 = .text:0x802F01B8; // type:function size:0xC +fn_802F01C4 = .text:0x802F01C4; // type:function size:0x6C +fn_802F0230 = .text:0x802F0230; // type:function size:0x2C +fn_802F025C = .text:0x802F025C; // type:function size:0x10 +fn_802F026C = .text:0x802F026C; // type:function size:0x80 +fn_802F02EC = .text:0x802F02EC; // type:function size:0x14 +fn_802F0300 = .text:0x802F0300; // type:function size:0x14 +fn_802F0314 = .text:0x802F0314; // type:function size:0x14 +fn_802F0328 = .text:0x802F0328; // type:function size:0x14 +fn_802F033C = .text:0x802F033C; // type:function size:0x14 +fn_802F0350 = .text:0x802F0350; // type:function size:0x14 +fn_802F0364 = .text:0x802F0364; // type:function size:0x14 +fn_802F0378 = .text:0x802F0378; // type:function size:0x68 +fn_802F03E0 = .text:0x802F03E0; // type:function size:0x18 +fn_802F03F8 = .text:0x802F03F8; // type:function size:0x7C +fn_802F0474 = .text:0x802F0474; // type:function size:0x68 +fn_802F04DC = .text:0x802F04DC; // type:function size:0x4 +fn_802F04E0 = .text:0x802F04E0; // type:function size:0x54 +fn_802F0534 = .text:0x802F0534; // type:function size:0x64 +fn_802F0598 = .text:0x802F0598; // type:function size:0x50 +fn_802F05E8 = .text:0x802F05E8; // type:function size:0x10 +fn_802F05F8 = .text:0x802F05F8; // type:function size:0x58 +fn_802F0650 = .text:0x802F0650; // type:function size:0x4 +fn_802F0654 = .text:0x802F0654; // type:function size:0x58 +fn_802F06AC = .text:0x802F06AC; // type:function size:0x14 +fn_802F06C0 = .text:0x802F06C0; // type:function size:0x10 +fn_802F06D0 = .text:0x802F06D0; // type:function size:0x28 +fn_802F06F8 = .text:0x802F06F8; // type:function size:0x9C0 +fn_802F10B8 = .text:0x802F10B8; // type:function size:0x60 +fn_802F1118 = .text:0x802F1118; // type:function size:0x58 +fn_802F1170 = .text:0x802F1170; // type:function size:0x60 +fn_802F11D0 = .text:0x802F11D0; // type:function size:0x58 +fn_802F1228 = .text:0x802F1228; // type:function size:0x58 +fn_802F1280 = .text:0x802F1280; // type:function size:0x50 +fn_802F12D0 = .text:0x802F12D0; // type:function size:0x8 +fn_802F12D8 = .text:0x802F12D8; // type:function size:0x4 +fn_802F12DC = .text:0x802F12DC; // type:function size:0x40 +fn_802F131C = .text:0x802F131C; // type:function size:0xA0 +fn_802F13BC = .text:0x802F13BC; // type:function size:0xFC +fn_802F14B8 = .text:0x802F14B8; // type:function size:0x58 +fn_802F1510 = .text:0x802F1510; // type:function size:0x4 +fn_802F1514 = .text:0x802F1514; // type:function size:0x40 +fn_802F1554 = .text:0x802F1554; // type:function size:0x74 +fn_802F15C8 = .text:0x802F15C8; // type:function size:0x44 +fn_802F160C = .text:0x802F160C; // type:function size:0x3C +fn_802F1648 = .text:0x802F1648; // type:function size:0x70 +fn_802F16B8 = .text:0x802F16B8; // type:function size:0x4 +fn_802F16BC = .text:0x802F16BC; // type:function size:0x44 +fn_802F1700 = .text:0x802F1700; // type:function size:0x6C +fn_802F176C = .text:0x802F176C; // type:function size:0x2C +fn_802F1798 = .text:0x802F1798; // type:function size:0x8 +fn_802F17A0 = .text:0x802F17A0; // type:function size:0x8 +fn_802F17A8 = .text:0x802F17A8; // type:function size:0x30 +fn_802F17D8 = .text:0x802F17D8; // type:function size:0x3C +fn_802F1814 = .text:0x802F1814; // type:function size:0x3C +fn_802F1850 = .text:0x802F1850; // type:function size:0x3C +fn_802F188C = .text:0x802F188C; // type:function size:0x3C +fn_802F18C8 = .text:0x802F18C8; // type:function size:0x128 +fn_802F19F0 = .text:0x802F19F0; // type:function size:0x28 +fn_802F1A18 = .text:0x802F1A18; // type:function size:0x54 +fn_802F1A6C = .text:0x802F1A6C; // type:function size:0x3C +fn_802F1AA8 = .text:0x802F1AA8; // type:function size:0x30 +fn_802F1AD8 = .text:0x802F1AD8; // type:function size:0x30 +fn_802F1B08 = .text:0x802F1B08; // type:function size:0x34 +fn_802F1B3C = .text:0x802F1B3C; // type:function size:0x3C +fn_802F1B78 = .text:0x802F1B78; // type:function size:0x1F0 +fn_802F1D68 = .text:0x802F1D68; // type:function size:0x2C +fn_802F1D94 = .text:0x802F1D94; // type:function size:0xC4 +fn_802F1E58 = .text:0x802F1E58; // type:function size:0x1C +fn_802F1E74 = .text:0x802F1E74; // type:function size:0x4C +fn_802F1EC0 = .text:0x802F1EC0; // type:function size:0x44 +fn_802F1F04 = .text:0x802F1F04; // type:function size:0x10 +fn_802F1F14 = .text:0x802F1F14; // type:function size:0x8C +fn_802F1FA0 = .text:0x802F1FA0; // type:function size:0x88 +fn_802F2028 = .text:0x802F2028; // type:function size:0xF0 +fn_802F2118 = .text:0x802F2118; // type:function size:0x50 +fn_802F2168 = .text:0x802F2168; // type:function size:0x6C +Handle__10ContentMgrFP9DataArrayb = .text:0x802F21D4; // type:function size:0x2C4 +fn_802F2498 = .text:0x802F2498; // type:function size:0x98 +fn_802F2530 = .text:0x802F2530; // type:function size:0x58 +fn_802F2588 = .text:0x802F2588; // type:function size:0x58 +fn_802F25E0 = .text:0x802F25E0; // type:function size:0x60 +fn_802F2640 = .text:0x802F2640; // type:function size:0x58 +fn_802F2698 = .text:0x802F2698; // type:function size:0x58 +fn_802F26F0 = .text:0x802F26F0; // type:function size:0x58 +fn_802F2748 = .text:0x802F2748; // type:function size:0x60 +fn_802F27A8 = .text:0x802F27A8; // type:function size:0x58 +fn_802F2800 = .text:0x802F2800; // type:function size:0x388 +fn_802F2B88 = .text:0x802F2B88; // type:function size:0x6C +fn_802F2BF4 = .text:0x802F2BF4; // type:function size:0x2C +fn_802F2C20 = .text:0x802F2C20; // type:function size:0x10 +fn_802F2C30 = .text:0x802F2C30; // type:function size:0x68 +fn_802F2C98 = .text:0x802F2C98; // type:function size:0x68 +fn_802F2D00 = .text:0x802F2D00; // type:function size:0x158 +fn_802F2E58 = .text:0x802F2E58; // type:function size:0x44 +fn_802F2E9C = .text:0x802F2E9C; // type:function size:0x8 +fn_802F2EA4 = .text:0x802F2EA4; // type:function size:0x104 +fn_802F2FA8 = .text:0x802F2FA8; // type:function size:0x5C +fn_802F3004 = .text:0x802F3004; // type:function size:0x10 +fn_802F3014 = .text:0x802F3014; // type:function size:0x14 +fn_802F3028 = .text:0x802F3028; // type:function size:0x68 +fn_802F3090 = .text:0x802F3090; // type:function size:0x34 +fn_802F30C4 = .text:0x802F30C4; // type:function size:0x2C +fn_802F30F0 = .text:0x802F30F0; // type:function size:0x20 +fn_802F3110 = .text:0x802F3110; // type:function size:0x8 +fn_802F3118 = .text:0x802F3118; // type:function size:0x10 +fn_802F3128 = .text:0x802F3128; // type:function size:0x10 +fn_802F3138 = .text:0x802F3138; // type:function size:0x10 +fn_802F3148 = .text:0x802F3148; // type:function size:0x10 +fn_802F3158 = .text:0x802F3158; // type:function size:0xD0 +fn_802F3228 = .text:0x802F3228; // type:function size:0x10 +fn_802F3238 = .text:0x802F3238; // type:function size:0x10 +fn_802F3248 = .text:0x802F3248; // type:function size:0x10 +fn_802F3258 = .text:0x802F3258; // type:function size:0xC8 +fn_802F3320 = .text:0x802F3320; // type:function size:0xFC +fn_802F341C = .text:0x802F341C; // type:function size:0x4 +fn_802F3420 = .text:0x802F3420; // type:function size:0x54 +fn_802F3474 = .text:0x802F3474; // type:function size:0x64 +fn_802F34D8 = .text:0x802F34D8; // type:function size:0x50 +fn_802F3528 = .text:0x802F3528; // type:function size:0x10 +fn_802F3538 = .text:0x802F3538; // type:function size:0x2C +fn_802F3564 = .text:0x802F3564; // type:function size:0x4AC +fn_802F3A10 = .text:0x802F3A10; // type:function size:0x10 +fn_802F3A20 = .text:0x802F3A20; // type:function size:0x40 +fn_802F3A60 = .text:0x802F3A60; // type:function size:0xC +fn_802F3A6C = .text:0x802F3A6C; // type:function size:0x130 +fn_802F3B9C = .text:0x802F3B9C; // type:function size:0xC4 +fn_802F3C60 = .text:0x802F3C60; // type:function size:0x10 +fn_802F3C70 = .text:0x802F3C70; // type:function size:0x10 +fn_802F3C80 = .text:0x802F3C80; // type:function size:0xEC +fn_802F3D6C = .text:0x802F3D6C; // type:function size:0x31C +fn_802F4088 = .text:0x802F4088; // type:function size:0x8 +fn_802F4090 = .text:0x802F4090; // type:function size:0x8 +fn_802F4098 = .text:0x802F4098; // type:function size:0xC +fn_802F40A4 = .text:0x802F40A4; // type:function size:0xC +fn_802F40B0 = .text:0x802F40B0; // type:function size:0x48 +fn_802F40F8 = .text:0x802F40F8; // type:function size:0x84 +fn_802F417C = .text:0x802F417C; // type:function size:0x38 +fn_802F41B4 = .text:0x802F41B4; // type:function size:0xE8 +fn_802F429C = .text:0x802F429C; // type:function size:0xB0 +fn_802F434C = .text:0x802F434C; // type:function size:0xAC +fn_802F43F8 = .text:0x802F43F8; // type:function size:0x80 +fn_802F4478 = .text:0x802F4478; // type:function size:0xA8 +fn_802F4520 = .text:0x802F4520; // type:function size:0x184 +fn_802F46A4 = .text:0x802F46A4; // type:function size:0x13C +fn_802F47E0 = .text:0x802F47E0; // type:function size:0x5C +fn_802F483C = .text:0x802F483C; // type:function size:0xA8 +fn_802F48E4 = .text:0x802F48E4; // type:function size:0x8 +fn_802F48EC = .text:0x802F48EC; // type:function size:0x1B4 +fn_802F4AA0 = .text:0x802F4AA0; // type:function size:0x4 +fn_802F4AA4 = .text:0x802F4AA4; // type:function size:0xC +fn_802F4AB0 = .text:0x802F4AB0; // type:function size:0x8 +fn_802F4AB8 = .text:0x802F4AB8; // type:function size:0x10 +fn_802F4AC8 = .text:0x802F4AC8; // type:function size:0x34 +fn_802F4AFC = .text:0x802F4AFC; // type:function size:0x2C +__ct__13WiiContentMgrFv = .text:0x802F4B28; // type:function size:0x4C +__ct__10ContentMgrFv = .text:0x802F4B74; // type:function size:0xA4 +fn_802F4C18 = .text:0x802F4C18; // type:function size:0x30 +fn_802F4C48 = .text:0x802F4C48; // type:function size:0x30 +fn_802F4C78 = .text:0x802F4C78; // type:function size:0x60 +fn_802F4CD8 = .text:0x802F4CD8; // type:function size:0x30 +fn_802F4D08 = .text:0x802F4D08; // type:function size:0x30 +fn_802F4D38 = .text:0x802F4D38; // type:function size:0x60 +fn_802F4D98 = .text:0x802F4D98; // type:function size:0x4 +fn_802F4D9C = .text:0x802F4D9C; // type:function size:0x188 +fn_802F4F24 = .text:0x802F4F24; // type:function size:0xC4 +fn_802F4FE8 = .text:0x802F4FE8; // type:function size:0x78 +fn_802F5060 = .text:0x802F5060; // type:function size:0x58 +fn_802F50B8 = .text:0x802F50B8; // type:function size:0xA8 +fn_802F5160 = .text:0x802F5160; // type:function size:0x50 +fn_802F51B0 = .text:0x802F51B0; // type:function size:0x240 +fn_802F53F0 = .text:0x802F53F0; // type:function size:0x1C +fn_802F540C = .text:0x802F540C; // type:function size:0xC +fn_802F5418 = .text:0x802F5418; // type:function size:0x10 +fn_802F5428 = .text:0x802F5428; // type:function size:0x1C +fn_802F5444 = .text:0x802F5444; // type:function size:0xC +fn_802F5450 = .text:0x802F5450; // type:function size:0x10 +fn_802F5460 = .text:0x802F5460; // type:function size:0x110 +fn_802F5570 = .text:0x802F5570; // type:function size:0xC8 +fn_802F5638 = .text:0x802F5638; // type:function size:0x100 +fn_802F5738 = .text:0x802F5738; // type:function size:0xC8 +fn_802F5800 = .text:0x802F5800; // type:function size:0x74 +fn_802F5874 = .text:0x802F5874; // type:function size:0xA8 +fn_802F591C = .text:0x802F591C; // type:function size:0x138 +fn_802F5A54 = .text:0x802F5A54; // type:function size:0x34 +fn_802F5A88 = .text:0x802F5A88; // type:function size:0xCC +fn_802F5B54 = .text:0x802F5B54; // type:function size:0xD8 +fn_802F5C2C = .text:0x802F5C2C; // type:function size:0x9C +fn_802F5CC8 = .text:0x802F5CC8; // type:function size:0x48 +fn_802F5D10 = .text:0x802F5D10; // type:function size:0x16C +fn_802F5E7C = .text:0x802F5E7C; // type:function size:0x54 +fn_802F5ED0 = .text:0x802F5ED0; // type:function size:0x184 +fn_802F6054 = .text:0x802F6054; // type:function size:0x60 +fn_802F60B4 = .text:0x802F60B4; // type:function size:0x84 +fn_802F6138 = .text:0x802F6138; // type:function size:0x4 +fn_802F613C = .text:0x802F613C; // type:function size:0x4B0 +fn_802F65EC = .text:0x802F65EC; // type:function size:0x10 +fn_802F65FC = .text:0x802F65FC; // type:function size:0x1A4 +fn_802F67A0 = .text:0x802F67A0; // type:function size:0x464 +fn_802F6C04 = .text:0x802F6C04; // type:function size:0x8 +fn_802F6C0C = .text:0x802F6C0C; // type:function size:0x10 +fn_802F6C1C = .text:0x802F6C1C; // type:function size:0x58 +fn_802F6C74 = .text:0x802F6C74; // type:function size:0x8 +fn_802F6C7C = .text:0x802F6C7C; // type:function size:0x154 +fn_802F6DD0 = .text:0x802F6DD0; // type:function size:0xFC +fn_802F6ECC = .text:0x802F6ECC; // type:function size:0x1A0 +fn_802F706C = .text:0x802F706C; // type:function size:0xDC +fn_802F7148 = .text:0x802F7148; // type:function size:0x6C +fn_802F71B4 = .text:0x802F71B4; // type:function size:0x110 +fn_802F72C4 = .text:0x802F72C4; // type:function size:0x194 +fn_802F7458 = .text:0x802F7458; // type:function size:0xE8 +fn_802F7540 = .text:0x802F7540; // type:function size:0x8 +fn_802F7548 = .text:0x802F7548; // type:function size:0xA8 +fn_802F75F0 = .text:0x802F75F0; // type:function size:0xBC +fn_802F76AC = .text:0x802F76AC; // type:function size:0x30 +fn_802F76DC = .text:0x802F76DC; // type:function size:0x30 +fn_802F770C = .text:0x802F770C; // type:function size:0xEC +fn_802F77F8 = .text:0x802F77F8; // type:function size:0xD0 +fn_802F78C8 = .text:0x802F78C8; // type:function size:0xE8 +fn_802F79B0 = .text:0x802F79B0; // type:function size:0x34 +fn_802F79E4 = .text:0x802F79E4; // type:function size:0x19C +fn_802F7B80 = .text:0x802F7B80; // type:function size:0x60 +Handle__13WiiContentMgrFP9DataArrayb = .text:0x802F7BE0; // type:function size:0x5B4 +fn_802F8194 = .text:0x802F8194; // type:function size:0x8 +fn_802F819C = .text:0x802F819C; // type:function size:0x10 +fn_802F81AC = .text:0x802F81AC; // type:function size:0x10 +__ct__19ContentInstalledMsgFP9DataArray = .text:0x802F81BC; // type:function size:0x3C +Type__19ContentInstalledMsgFv = .text:0x802F81F8; // type:function size:0x4C +__ct__17StorageChangedMsgFP9DataArray = .text:0x802F8244; // type:function size:0x3C +Type__17StorageChangedMsgFv = .text:0x802F8280; // type:function size:0x4C +fn_802F82CC = .text:0x802F82CC; // type:function size:0x68 +fn_802F8334 = .text:0x802F8334; // type:function size:0x58 +fn_802F838C = .text:0x802F838C; // type:function size:0x34 +fn_802F83C0 = .text:0x802F83C0; // type:function size:0x8C +fn_802F844C = .text:0x802F844C; // type:function size:0x58 +fn_802F84A4 = .text:0x802F84A4; // type:function size:0x58 +fn_802F84FC = .text:0x802F84FC; // type:function size:0x60 +fn_802F855C = .text:0x802F855C; // type:function size:0x58 +fn_802F85B4 = .text:0x802F85B4; // type:function size:0x30 +fn_802F85E4 = .text:0x802F85E4; // type:function size:0x30 +fn_802F8614 = .text:0x802F8614; // type:function size:0x60 +fn_802F8674 = .text:0x802F8674; // type:function size:0x68 +fn_802F86DC = .text:0x802F86DC; // type:function size:0x8 +fn_802F86E4 = .text:0x802F86E4; // type:function size:0x8 +fn_802F86EC = .text:0x802F86EC; // type:function size:0x8 +fn_802F86F4 = .text:0x802F86F4; // type:function size:0x48 +__ct__15CriticalSectionFv = .text:0x802F873C; // type:function size:0x3C +fn_802F8778 = .text:0x802F8778; // type:function size:0x40 +fn_802F87B8 = .text:0x802F87B8; // type:function size:0x10 +fn_802F87C8 = .text:0x802F87C8; // type:function size:0x3C +Exit__15CriticalSectionFv = .text:0x802F8804; // type:function size:0x14 +DateTimeInit__Fv = .text:0x802F8818; // type:function size:0x4 +GetDateAndTime__FR8DateTime = .text:0x802F881C; // type:function size:0x68 +__ct__8DateTimeFUi = .text:0x802F8884; // type:function size:0x8C +__ct__8DateTimeFUsUcUcUcUcUc = .text:0x802F8910; // type:function size:0x24 +ToCode__8DateTimeCFv = .text:0x802F8934; // type:function size:0x60 +fn_802F8994 = .text:0x802F8994; // type:function size:0x5C +MakeString__FPCciii_PCc = .text:0x802F89F0; // type:function size:0x68 +fn_802F8A58 = .text:0x802F8A58; // type:function size:0x60 +fn_802F8AB8 = .text:0x802F8AB8; // type:function size:0x5C +Year__8DateTimeCFv = .text:0x802F8B14; // type:function size:0xC +fn_802F8B20 = .text:0x802F8B20; // type:function size:0xC +fn_802F8B2C = .text:0x802F8B2C; // type:function size:0xF4 +Format__8DateTimeCFR6String = .text:0x802F8C20; // type:function size:0x334 +fn_802F8F54 = .text:0x802F8F54; // type:function size:0x4C +__ls__FR9BinStreamRC8DateTime = .text:0x802F8FA0; // type:function size:0x68 +__rs__FR9BinStreamR8DateTime = .text:0x802F9008; // type:function size:0x64 +SetModalCallback__5DebugFPFRbPcb_v = .text:0x802F906C; // type:function size:0x94 +Init__5DebugFv = .text:0x802F9100; // type:function size:0xF0 +Poll__5DebugFv = .text:0x802F91F0; // type:function size:0x54 +DebugModal__FRbPcb = .text:0x802F9244; // type:function size:0xC0 +fn_802F9304 = .text:0x802F9304; // type:function size:0x8 +fn_802F930C = .text:0x802F930C; // type:function size:0x30 +fn_802F933C = .text:0x802F933C; // type:function size:0x1B4 +fn_802F94F0 = .text:0x802F94F0; // type:function size:0x3C +fn_802F952C = .text:0x802F952C; // type:function size:0x3C +fn_802F9568 = .text:0x802F9568; // type:function size:0x54 +fn_802F95BC = .text:0x802F95BC; // type:function size:0x34 +fn_802F95F0 = .text:0x802F95F0; // type:function size:0x4 +Exit__5DebugFib = .text:0x802F95F4; // type:function size:0xCC +fn_802F96C0 = .text:0x802F96C0; // type:function size:0x38 +Print__5DebugFPCc = .text:0x802F96F8; // type:function size:0x38 +StartLog__5DebugFPCcb = .text:0x802F9730; // type:function size:0x4 +fn_802F9734 = .text:0x802F9734; // type:function size:0x4 +__ct__5DebugFv = .text:0x802F9738; // type:function size:0xA8 +__dt__5DebugFv = .text:0x802F97E0; // type:function size:0x80 +fn_802F9860 = .text:0x802F9860; // type:function size:0x7C +fn_802F98DC = .text:0x802F98DC; // type:function size:0x40 +FileRoot__Fv = .text:0x802F991C; // type:function size:0xC +FileExecRoot__Fv = .text:0x802F9928; // type:function size:0xC +FileSystemRoot__Fv = .text:0x802F9934; // type:function size:0xC +OnFileExecRoot__FP9DataArray = .text:0x802F9940; // type:function size:0xC +OnFileRoot__FP9DataArray = .text:0x802F994C; // type:function size:0xC +OnFileGetDrive__FP9DataArray = .text:0x802F9958; // type:function size:0x44 +OnFileGetPath__FP9DataArray = .text:0x802F999C; // type:function size:0x48 +OnFileGetBase__FP9DataArray = .text:0x802F99E4; // type:function size:0x48 +OnFileGetExt__FP9DataArray = .text:0x802F9A2C; // type:function size:0x44 +OnFileMatch__FP9DataArray = .text:0x802F9A70; // type:function size:0x64 +OnFileAbsolutePath__FP9DataArray = .text:0x802F9AD4; // type:function size:0x68 +OnFileRelativePath__FP9DataArray = .text:0x802F9B3C; // type:function size:0x64 +OnWithFileRoot__FP9DataArray = .text:0x802F9BA0; // type:function size:0xB4 +EvaluateNodeAtIndex__FP9DataArrayi = .text:0x802F9C54; // type:function size:0x24 +OnSynchProc__FP9DataArray = .text:0x802F9C78; // type:function size:0x4C +FileInit = .text:0x802F9CC4; // type:function size:0x1AC +FileTerminate = .text:0x802F9E70; // type:function size:0x60 +NewFile__FPCci = .text:0x802F9ED0; // type:function size:0x258 +fn_802FA128 = .text:0x802FA128; // type:function size:0xC +FileGetStat = .text:0x802FA134; // type:function size:0x54 +fn_802FA188 = .text:0x802FA188; // type:function size:0x8 +FileQualifiedFilename__FR6StringPCc = .text:0x802FA190; // type:function size:0x44 +FileNormalizePath = .text:0x802FA1D4; // type:function size:0x64 +FileMakePath = .text:0x802FA238; // type:function size:0x2F4 +FileRelativePath = .text:0x802FA52C; // type:function size:0x2B0 +fn_802FA7DC = .text:0x802FA7DC; // type:function size:0x30 +fn_802FA80C = .text:0x802FA80C; // type:function size:0x3C +FileGetPath = .text:0x802FA848; // type:function size:0xD0 +FileGetExt = .text:0x802FA918; // type:function size:0x7C +FileGetDrive = .text:0x802FA994; // type:function size:0x7C +FileGetBase = .text:0x802FAA10; // type:function size:0xB0 +FileGetName = .text:0x802FAAC0; // type:function size:0x80 +fn_802FAB40 = .text:0x802FAB40; // type:function size:0x70 +fn_802FABB0 = .text:0x802FABB0; // type:function size:0x8C +fn_802FAC3C = .text:0x802FAC3C; // type:function size:0x9C +fn_802FACD8 = .text:0x802FACD8; // type:function size:0x84 +FileLocalize__FPCcPc = .text:0x802FAD5C; // type:function size:0x10C +FileMatchInternal__FPCcPCcb = .text:0x802FAE68; // type:function size:0xA4 +FileMatch = .text:0x802FAF0C; // type:function size:0xD8 +FileRecursePattern = .text:0x802FAFE4; // type:function size:0x37C +MakeString<6String,6String,6String>__FPCc6String6String6String_PCc = .text:0x802FB360; // type:function size:0x68 +fn_802FB3C8 = .text:0x802FB3C8; // type:function size:0x30 +fn_802FB3F8 = .text:0x802FB3F8; // type:function size:0x98 +fn_802FB490 = .text:0x802FB490; // type:function size:0x8 +fn_802FB498 = .text:0x802FB498; // type:function size:0x8 +fn_802FB4A0 = .text:0x802FB4A0; // type:function size:0xC +fn_802FB4AC = .text:0x802FB4AC; // type:function size:0x9C +fn_802FB548 = .text:0x802FB548; // type:function size:0x4 +fn_802FB54C = .text:0x802FB54C; // type:function size:0x64 +fn_802FB5B0 = .text:0x802FB5B0; // type:function size:0x28 +fn_802FB5D8 = .text:0x802FB5D8; // type:function size:0xAC +fn_802FB684 = .text:0x802FB684; // type:function size:0x8 +fn_802FB68C = .text:0x802FB68C; // type:function size:0x8 +FileEnumerate = .text:0x802FB694; // type:function size:0x28 +FileQualifiedFilename__FPciPCc = .text:0x802FB6BC; // type:function size:0x8 +__ct__13FileCacheFileFP14FileCacheEntry = .text:0x802FB6C4; // type:function size:0x64 +fn_802FB728 = .text:0x802FB728; // type:function size:0x1C +__dt__13FileCacheFileFv = .text:0x802FB744; // type:function size:0x70 +fn_802FB7B4 = .text:0x802FB7B4; // type:function size:0x10 +fn_802FB7C4 = .text:0x802FB7C4; // type:function size:0x10 +Read__13FileCacheFileFPvi = .text:0x802FB7D4; // type:function size:0xA4 +fn_802FB878 = .text:0x802FB878; // type:function size:0x28 +ReadAsync__13FileCacheFileFPvi = .text:0x802FB8A0; // type:function size:0x94 +fn_802FB934 = .text:0x802FB934; // type:function size:0xE4 +ReadDone__13FileCacheFileFRi = .text:0x802FBA18; // type:function size:0xA8 +Seek__13FileCacheFileFii = .text:0x802FBAC0; // type:function size:0xB8 +Eof__13FileCacheFileFv = .text:0x802FBB78; // type:function size:0x44 +Size__13FileCacheFileFv = .text:0x802FBBBC; // type:function size:0x8 +Fail__13FileCacheFileFv = .text:0x802FBBC4; // type:function size:0x8 +fn_802FBBCC = .text:0x802FBBCC; // type:function size:0x4 +fn_802FBBD0 = .text:0x802FBBD0; // type:function size:0x4 +fn_802FBBD4 = .text:0x802FBBD4; // type:function size:0x7C +fn_802FBC50 = .text:0x802FBC50; // type:function size:0x3C +fn_802FBC8C = .text:0x802FBC8C; // type:function size:0x3C +fn_802FBCC8 = .text:0x802FBCC8; // type:function size:0x9C +fn_802FBD64 = .text:0x802FBD64; // type:function size:0x98 +fn_802FBDFC = .text:0x802FBDFC; // type:function size:0x84 +fn_802FBE80 = .text:0x802FBE80; // type:function size:0xF0 +fn_802FBF70 = .text:0x802FBF70; // type:function size:0x74 +fn_802FBFE4 = .text:0x802FBFE4; // type:function size:0x8C +fn_802FC070 = .text:0x802FC070; // type:function size:0x34 +fn_802FC0A4 = .text:0x802FC0A4; // type:function size:0x100 +fn_802FC1A4 = .text:0x802FC1A4; // type:function size:0x6C +fn_802FC210 = .text:0x802FC210; // type:function size:0x8C +fn_802FC29C = .text:0x802FC29C; // type:function size:0xB0 +fn_802FC34C = .text:0x802FC34C; // type:function size:0x90 +fn_802FC3DC = .text:0x802FC3DC; // type:function size:0x10 +fn_802FC3EC = .text:0x802FC3EC; // type:function size:0xE4 +fn_802FC4D0 = .text:0x802FC4D0; // type:function size:0x20 +fn_802FC4F0 = .text:0x802FC4F0; // type:function size:0x64 +fn_802FC554 = .text:0x802FC554; // type:function size:0x88 +fn_802FC5DC = .text:0x802FC5DC; // type:function size:0xE8 +fn_802FC6C4 = .text:0x802FC6C4; // type:function size:0x30 +fn_802FC6F4 = .text:0x802FC6F4; // type:function size:0xB4 +fn_802FC7A8 = .text:0x802FC7A8; // type:function size:0x34 +fn_802FC7DC = .text:0x802FC7DC; // type:function size:0x8C +fn_802FC868 = .text:0x802FC868; // type:function size:0xD4 +fn_802FC93C = .text:0x802FC93C; // type:function size:0x98 +fn_802FC9D4 = .text:0x802FC9D4; // type:function size:0x6C +fn_802FCA40 = .text:0x802FCA40; // type:function size:0x30 +fn_802FCA70 = .text:0x802FCA70; // type:function size:0x40 +fn_802FCAB0 = .text:0x802FCAB0; // type:function size:0x44 +fn_802FCAF4 = .text:0x802FCAF4; // type:function size:0x58 +fn_802FCB4C = .text:0x802FCB4C; // type:function size:0xA4 +fn_802FCBF0 = .text:0x802FCBF0; // type:function size:0x6C +fn_802FCC5C = .text:0x802FCC5C; // type:function size:0xC +fn_802FCC68 = .text:0x802FCC68; // type:function size:0xE0 +fn_802FCD48 = .text:0x802FCD48; // type:function size:0x94 +fn_802FCDDC = .text:0x802FCDDC; // type:function size:0x70 +fn_802FCE4C = .text:0x802FCE4C; // type:function size:0x84 +fn_802FCED0 = .text:0x802FCED0; // type:function size:0x6C +fn_802FCF3C = .text:0x802FCF3C; // type:function size:0x58 +fn_802FCF94 = .text:0x802FCF94; // type:function size:0x58 +fn_802FCFEC = .text:0x802FCFEC; // type:function size:0x30 +fn_802FD01C = .text:0x802FD01C; // type:function size:0x60 +fn_802FD07C = .text:0x802FD07C; // type:function size:0x224 +fn_802FD2A0 = .text:0x802FD2A0; // type:function size:0x78 +fn_802FD318 = .text:0x802FD318; // type:function size:0x50 +fn_802FD368 = .text:0x802FD368; // type:function size:0xF8 +fn_802FD460 = .text:0x802FD460; // type:function size:0x7C +fn_802FD4DC = .text:0x802FD4DC; // type:function size:0xA8 +fn_802FD584 = .text:0x802FD584; // type:function size:0xDC +fn_802FD660 = .text:0x802FD660; // type:function size:0x70 +fn_802FD6D0 = .text:0x802FD6D0; // type:function size:0x88 +fn_802FD758 = .text:0x802FD758; // type:function size:0x130 +fn_802FD888 = .text:0x802FD888; // type:function size:0x100 +fn_802FD988 = .text:0x802FD988; // type:function size:0x80 +fn_802FDA08 = .text:0x802FDA08; // type:function size:0x78 +fn_802FDA80 = .text:0x802FDA80; // type:function size:0x60 +fn_802FDAE0 = .text:0x802FDAE0; // type:function size:0xB0 +fn_802FDB90 = .text:0x802FDB90; // type:function size:0x80 +fn_802FDC10 = .text:0x802FDC10; // type:function size:0x528 +fn_802FE138 = .text:0x802FE138; // type:function size:0x24 +fn_802FE15C = .text:0x802FE15C; // type:function size:0x88 +fn_802FE1E4 = .text:0x802FE1E4; // type:function size:0x5C +fn_802FE240 = .text:0x802FE240; // type:function size:0xE0 +fn_802FE320 = .text:0x802FE320; // type:function size:0xAC +fn_802FE3CC = .text:0x802FE3CC; // type:function size:0x2D0 +fn_802FE69C = .text:0x802FE69C; // type:function size:0x110 +fn_802FE7AC = .text:0x802FE7AC; // type:function size:0x2C +fn_802FE7D8 = .text:0x802FE7D8; // type:function size:0x60 +fn_802FE838 = .text:0x802FE838; // type:function size:0x58 +fn_802FE890 = .text:0x802FE890; // type:function size:0x16C +fn_802FE9FC = .text:0x802FE9FC; // type:function size:0x2C +fn_802FEA28 = .text:0x802FEA28; // type:function size:0x13C +fn_802FEB64 = .text:0x802FEB64; // type:function size:0xB0 +fn_802FEC14 = .text:0x802FEC14; // type:function size:0x424 +fn_802FF038 = .text:0x802FF038; // type:function size:0x4 +fn_802FF03C = .text:0x802FF03C; // type:function size:0x4 +fn_802FF040 = .text:0x802FF040; // type:function size:0x48 +fn_802FF088 = .text:0x802FF088; // type:function size:0x14 +fn_802FF09C = .text:0x802FF09C; // type:function size:0x68 +fn_802FF104 = .text:0x802FF104; // type:function size:0x34 +fn_802FF138 = .text:0x802FF138; // type:function size:0x54 +fn_802FF18C = .text:0x802FF18C; // type:function size:0x40 +fn_802FF1CC = .text:0x802FF1CC; // type:function size:0x8 +__ct__8HomeMenuFv = .text:0x802FF1D4; // type:function size:0xB0 +fn_802FF284 = .text:0x802FF284; // type:function size:0x64 +fn_802FF2E8 = .text:0x802FF2E8; // type:function size:0x5C +fn_802FF344 = .text:0x802FF344; // type:function size:0xB4 +fn_802FF3F8 = .text:0x802FF3F8; // type:function size:0xF8 +fn_802FF4F0 = .text:0x802FF4F0; // type:function size:0x20 +fn_802FF510 = .text:0x802FF510; // type:function size:0x28 +fn_802FF538 = .text:0x802FF538; // type:function size:0x28 +fn_802FF560 = .text:0x802FF560; // type:function size:0x90 +fn_802FF5F0 = .text:0x802FF5F0; // type:function size:0x18 +fn_802FF608 = .text:0x802FF608; // type:function size:0x200 +fn_802FF808 = .text:0x802FF808; // type:function size:0xC +fn_802FF814 = .text:0x802FF814; // type:function size:0x18C +fn_802FF9A0 = .text:0x802FF9A0; // type:function size:0x180 +fn_802FFB20 = .text:0x802FFB20; // type:function size:0x88 +fn_802FFBA8 = .text:0x802FFBA8; // type:function size:0x2C +fn_802FFBD4 = .text:0x802FFBD4; // type:function size:0xF8 +fn_802FFCCC = .text:0x802FFCCC; // type:function size:0x14 +fn_802FFCE0 = .text:0x802FFCE0; // type:function size:0xFC +fn_802FFDDC = .text:0x802FFDDC; // type:function size:0x8 +fn_802FFDE4 = .text:0x802FFDE4; // type:function size:0xB4 +__dt__8HomeMenuFv = .text:0x802FFE98; // type:function size:0xC +fn_802FFEA4 = .text:0x802FFEA4; // type:function size:0xC +fn_802FFEB0 = .text:0x802FFEB0; // type:function size:0xA8 +fn_802FFF58 = .text:0x802FFF58; // type:function size:0x340 +fn_80300298 = .text:0x80300298; // type:function size:0x3C +fn_803002D4 = .text:0x803002D4; // type:function size:0x4 +fn_803002D8 = .text:0x803002D8; // type:function size:0x4 +fn_803002DC = .text:0x803002DC; // type:function size:0xE4 +fn_803003C0 = .text:0x803003C0; // type:function size:0x8 +fn_803003C8 = .text:0x803003C8; // type:function size:0x8C +fn_80300454 = .text:0x80300454; // type:function size:0x3C +fn_80300490 = .text:0x80300490; // type:function size:0x3C +fn_803004CC = .text:0x803004CC; // type:function size:0x8C +fn_80300558 = .text:0x80300558; // type:function size:0x88 +fn_803005E0 = .text:0x803005E0; // type:function size:0x9C +fn_8030067C = .text:0x8030067C; // type:function size:0x9C +fn_80300718 = .text:0x80300718; // type:function size:0x10 +fn_80300728 = .text:0x80300728; // type:function size:0x10 +fn_80300738 = .text:0x80300738; // type:function size:0x16C +fn_803008A4 = .text:0x803008A4; // type:function size:0x58 +fn_803008FC = .text:0x803008FC; // type:function size:0x11C +fn_80300A18 = .text:0x80300A18; // type:function size:0x12C +fn_80300B44 = .text:0x80300B44; // type:function size:0x60 +fn_80300BA4 = .text:0x80300BA4; // type:function size:0x14 +fn_80300BB8 = .text:0x80300BB8; // type:function size:0x14 +fn_80300BCC = .text:0x80300BCC; // type:function size:0x128 +fn_80300CF4 = .text:0x80300CF4; // type:function size:0xC +fn_80300D00 = .text:0x80300D00; // type:function size:0xC +fn_80300D0C = .text:0x80300D0C; // type:function size:0x8 +fn_80300D14 = .text:0x80300D14; // type:function size:0x2C +fn_80300D40 = .text:0x80300D40; // type:function size:0x90 +fn_80300DD0 = .text:0x80300DD0; // type:function size:0x3C +fn_80300E0C = .text:0x80300E0C; // type:function size:0x3C +fn_80300E48 = .text:0x80300E48; // type:function size:0x90 +fn_80300ED8 = .text:0x80300ED8; // type:function size:0xC0 +OnJoypadSetVibrate__20@unnamed@joypad_cpp@FP9DataArray = .text:0x80300F98; // type:function size:0x68 +OnJoypadVibrate__20@unnamed@joypad_cpp@FP9DataArray = .text:0x80301000; // type:function size:0x44 +OnJoypadControllerTypePadNum__20@unnamed@joypad_cpp@FP9DataArray = .text:0x80301044; // type:function size:0x48 +OnJoypadIsConnectedPadNum__20@unnamed@joypad_cpp@FP9DataArray = .text:0x8030108C; // type:function size:0x44 +OnJoypadIsButtonDownPadNum__20@unnamed@joypad_cpp@FP9DataArray = .text:0x803010D0; // type:function size:0x7C +OnJoypadIsCalbertGuitar__20@unnamed@joypad_cpp@FP9DataArray = .text:0x8030114C; // type:function size:0x44 +fn_80301190 = .text:0x80301190; // type:function size:0x3B0 +DataJoypadReset__20@unnamed@joypad_cpp@FP9DataArray = .text:0x80301540; // type:function size:0x38 +fn_80301578 = .text:0x80301578; // type:function size:0xFC +GetAxis__10JoypadDataCF6Symbol = .text:0x80301674; // type:function size:0x2CC +fn_80301940 = .text:0x80301940; // type:function size:0x8 +FloatToBucket__10JoypadDataCFf = .text:0x80301948; // type:function size:0x98 +GetVelocityBucket__10JoypadDataCF6Symbol = .text:0x803019E0; // type:function size:0x5C +GetPressureBucket__10JoypadDataCF12JoypadButton = .text:0x80301A3C; // type:function size:0x90 +ButtonToVelocityBucket = .text:0x80301ACC; // type:function size:0x180 +JoypadInitCommon = .text:0x80301C4C; // type:function size:0x21C +fn_80301E68 = .text:0x80301E68; // type:function size:0x48 +fn_80301EB0 = .text:0x80301EB0; // type:function size:0x120 +fn_80301FD0 = .text:0x80301FD0; // type:function size:0x58 +fn_80302028 = .text:0x80302028; // type:function size:0x80 +fn_803020A8 = .text:0x803020A8; // type:function size:0x80 +fn_80302128 = .text:0x80302128; // type:function size:0x58 +fn_80302180 = .text:0x80302180; // type:function size:0x54 +fn_803021D4 = .text:0x803021D4; // type:function size:0x5C +fn_80302230 = .text:0x80302230; // type:function size:0x6C +fn_8030229C = .text:0x8030229C; // type:function size:0x28 +fn_803022C4 = .text:0x803022C4; // type:function size:0x8 +fn_803022CC = .text:0x803022CC; // type:function size:0x3C +fn_80302308 = .text:0x80302308; // type:function size:0x4 +fn_8030230C = .text:0x8030230C; // type:function size:0x88 +fn_80302394 = .text:0x80302394; // type:function size:0x2C +fn_803023C0 = .text:0x803023C0; // type:function size:0x10 +fn_803023D0 = .text:0x803023D0; // type:function size:0x1C +fn_803023EC = .text:0x803023EC; // type:function size:0x30 +fn_8030241C = .text:0x8030241C; // type:function size:0x30 +fn_8030244C = .text:0x8030244C; // type:function size:0x40 +fn_8030248C = .text:0x8030248C; // type:function size:0x2DC +fn_80302768 = .text:0x80302768; // type:function size:0x5C +fn_803027C4 = .text:0x803027C4; // type:function size:0x14 +fn_803027D8 = .text:0x803027D8; // type:function size:0x20 +fn_803027F8 = .text:0x803027F8; // type:function size:0x574 +fn_80302D6C = .text:0x80302D6C; // type:function size:0x64 +fn_80302DD0 = .text:0x80302DD0; // type:function size:0x5C +fn_80302E2C = .text:0x80302E2C; // type:function size:0xC0 +fn_80302EEC = .text:0x80302EEC; // type:function size:0x14 +JoypadSetVibrate__Fib = .text:0x80302F00; // type:function size:0x4C +JoypadVibrate__Fi = .text:0x80302F4C; // type:function size:0x24 +JoypadSubscribe__FPQ23Hmx6Object = .text:0x80302F70; // type:function size:0x78 +JoypadUnsubscribe__FPQ23Hmx6Object = .text:0x80302FE8; // type:function size:0x60 +fn_80303048 = .text:0x80303048; // type:function size:0x4 +fn_8030304C = .text:0x8030304C; // type:function size:0x18 +fn_80303064 = .text:0x80303064; // type:function size:0x40 +fn_803030A4 = .text:0x803030A4; // type:function size:0x5C +fn_80303100 = .text:0x80303100; // type:function size:0x18 +fn_80303118 = .text:0x80303118; // type:function size:0x4 +fn_8030311C = .text:0x8030311C; // type:function size:0x24C +JoypadControllerTypePadNum__Fi = .text:0x80303368; // type:function size:0xF8 +JoypadIsConnectedPadNum__Fi = .text:0x80303460; // type:function size:0x28 +JoypadIsCalbertGuitar = .text:0x80303488; // type:function size:0x54 +fn_803034DC = .text:0x803034DC; // type:function size:0x2C +fn_80303508 = .text:0x80303508; // type:function size:0x5C +fn_80303564 = .text:0x80303564; // type:function size:0xF0 +fn_80303654 = .text:0x80303654; // type:function size:0x68 +fn_803036BC = .text:0x803036BC; // type:function size:0x60 +fn_8030371C = .text:0x8030371C; // type:function size:0x58 +fn_80303774 = .text:0x80303774; // type:function size:0x58 +fn_803037CC = .text:0x803037CC; // type:function size:0xF8 +fn_803038C4 = .text:0x803038C4; // type:function size:0xA0 +fn_80303964 = .text:0x80303964; // type:function size:0x84 +fn_803039E8 = .text:0x803039E8; // type:function size:0x60 +fn_80303A48 = .text:0x80303A48; // type:function size:0x100 +fn_80303B48 = .text:0x80303B48; // type:function size:0x114 +fn_80303C5C = .text:0x80303C5C; // type:function size:0x60 +fn_80303CBC = .text:0x80303CBC; // type:function size:0x5C +fn_80303D18 = .text:0x80303D18; // type:function size:0x54 +fn_80303D6C = .text:0x80303D6C; // type:function size:0x5C +fn_80303DC8 = .text:0x80303DC8; // type:function size:0x5C +fn_80303E24 = .text:0x80303E24; // type:function size:0x20 +fn_80303E44 = .text:0x80303E44; // type:function size:0x84 +fn_80303EC8 = .text:0x80303EC8; // type:function size:0x1C +fn_80303EE4 = .text:0x80303EE4; // type:function size:0x14 +fn_80303EF8 = .text:0x80303EF8; // type:function size:0x18 +fn_80303F10 = .text:0x80303F10; // type:function size:0x40 +fn_80303F50 = .text:0x80303F50; // type:function size:0x28 +fn_80303F78 = .text:0x80303F78; // type:function size:0x70 +fn_80303FE8 = .text:0x80303FE8; // type:function size:0x14 +fn_80303FFC = .text:0x80303FFC; // type:function size:0x4C +fn_80304048 = .text:0x80304048; // type:function size:0x40 +fn_80304088 = .text:0x80304088; // type:function size:0xB0 +fn_80304138 = .text:0x80304138; // type:function size:0x70 +fn_803041A8 = .text:0x803041A8; // type:function size:0x10 +fn_803041B8 = .text:0x803041B8; // type:function size:0x84 +fn_8030423C = .text:0x8030423C; // type:function size:0x8 +fn_80304244 = .text:0x80304244; // type:function size:0x28 +fn_8030426C = .text:0x8030426C; // type:function size:0x48 +fn_803042B4 = .text:0x803042B4; // type:function size:0x38 +fn_803042EC = .text:0x803042EC; // type:function size:0x30 +fn_8030431C = .text:0x8030431C; // type:function size:0x68 +fn_80304384 = .text:0x80304384; // type:function size:0x8C +fn_80304410 = .text:0x80304410; // type:function size:0x78 +fn_80304488 = .text:0x80304488; // type:function size:0x11C +fn_803045A4 = .text:0x803045A4; // type:function size:0xBC +fn_80304660 = .text:0x80304660; // type:function size:0x18 +fn_80304678 = .text:0x80304678; // type:function size:0xC +fn_80304684 = .text:0x80304684; // type:function size:0xF8 +fn_8030477C = .text:0x8030477C; // type:function size:0xF0 +JoypadReset__Fv = .text:0x8030486C; // type:function size:0xBC +fn_80304928 = .text:0x80304928; // type:function size:0x80 +fn_803049A8 = .text:0x803049A8; // type:function size:0x54 +fn_803049FC = .text:0x803049FC; // type:function size:0x68 +JoypadSetActuatorsImp = .text:0x80304A64; // type:function size:0x4 +fn_80304A68 = .text:0x80304A68; // type:function size:0xB0 +fn_80304B18 = .text:0x80304B18; // type:function size:0x8 +fn_80304B20 = .text:0x80304B20; // type:function size:0x288 +fn_80304DA8 = .text:0x80304DA8; // type:function size:0x20 +fn_80304DC8 = .text:0x80304DC8; // type:function size:0x10 +fn_80304DD8 = .text:0x80304DD8; // type:function size:0x64 +fn_80304E3C = .text:0x80304E3C; // type:function size:0x18 +fn_80304E54 = .text:0x80304E54; // type:function size:0x8 +fn_80304E5C = .text:0x80304E5C; // type:function size:0xC +fn_80304E68 = .text:0x80304E68; // type:function size:0x20 +fn_80304E88 = .text:0x80304E88; // type:function size:0x1C +fn_80304EA4 = .text:0x80304EA4; // type:function size:0xC +fn_80304EB0 = .text:0x80304EB0; // type:function size:0x4C +JoypadWiiEnableDPD__Fb = .text:0x80304EFC; // type:function size:0x5C +fn_80304F58 = .text:0x80304F58; // type:function size:0xF4 +fn_8030504C = .text:0x8030504C; // type:function size:0x198 +fn_803051E4 = .text:0x803051E4; // type:function size:0x4C +fn_80305230 = .text:0x80305230; // type:function size:0x5C +fn_8030528C = .text:0x8030528C; // type:function size:0xDC +GetWiiJoypadType__Fi = .text:0x80305368; // type:function size:0x34 +fn_8030539C = .text:0x8030539C; // type:function size:0x100 +fn_8030549C = .text:0x8030549C; // type:function size:0x18 +fn_803054B4 = .text:0x803054B4; // type:function size:0x30 +fn_803054E4 = .text:0x803054E4; // type:function size:0x28 +fn_8030550C = .text:0x8030550C; // type:function size:0x68 +fn_80305574 = .text:0x80305574; // type:function size:0x20 +fn_80305594 = .text:0x80305594; // type:function size:0x24 +fn_803055B8 = .text:0x803055B8; // type:function size:0x9C +fn_80305654 = .text:0x80305654; // type:function size:0x138 +fn_8030578C = .text:0x8030578C; // type:function size:0xC8 +fn_80305854 = .text:0x80305854; // type:function size:0xCC +fn_80305920 = .text:0x80305920; // type:function size:0x128 +fn_80305A48 = .text:0x80305A48; // type:function size:0x94 +fn_80305ADC = .text:0x80305ADC; // type:function size:0xC +fn_80305AE8 = .text:0x80305AE8; // type:function size:0x37C +fn_80305E64 = .text:0x80305E64; // type:function size:0x38 +fn_80305E9C = .text:0x80305E9C; // type:function size:0x34 +fn_80305ED0 = .text:0x80305ED0; // type:function size:0x58 +fn_80305F28 = .text:0x80305F28; // type:function size:0x1C +fn_80305F44 = .text:0x80305F44; // type:function size:0x18 +fn_80305F5C = .text:0x80305F5C; // type:function size:0x4C +fn_80305FA8 = .text:0x80305FA8; // type:function size:0x54 +fn_80305FFC = .text:0x80305FFC; // type:function size:0x60 +fn_8030605C = .text:0x8030605C; // type:function size:0x44 +fn_803060A0 = .text:0x803060A0; // type:function size:0xE4 +fn_80306184 = .text:0x80306184; // type:function size:0x20 +fn_803061A4 = .text:0x803061A4; // type:function size:0x40 +fn_803061E4 = .text:0x803061E4; // type:function size:0xAC +fn_80306290 = .text:0x80306290; // type:function size:0x98 +fn_80306328 = .text:0x80306328; // type:function size:0x104 +fn_8030642C = .text:0x8030642C; // type:function size:0x3C +fn_80306468 = .text:0x80306468; // type:function size:0xA4 +fn_8030650C = .text:0x8030650C; // type:function size:0x24 +fn_80306530 = .text:0x80306530; // type:function size:0x70 +fn_803065A0 = .text:0x803065A0; // type:function size:0x8 +fn_803065A8 = .text:0x803065A8; // type:function size:0x8 +fn_803065B0 = .text:0x803065B0; // type:function size:0x64 +fn_80306614 = .text:0x80306614; // type:function size:0x60 +Handle__12JoypadClientFP9DataArrayb = .text:0x80306674; // type:function size:0x1E0 +fn_80306854 = .text:0x80306854; // type:function size:0x25C +fn_80306AB0 = .text:0x80306AB0; // type:function size:0x1D8 +fn_80306C88 = .text:0x80306C88; // type:function size:0x60 +__ct__13ButtonDownMsgFP9LocalUser12JoypadButton12JoypadActioni = .text:0x80306CE8; // type:function size:0xD8 +fn_80306DC0 = .text:0x80306DC0; // type:function size:0xC +__ct__11ButtonUpMsgFP9LocalUser12JoypadButton12JoypadActioni = .text:0x80306DCC; // type:function size:0xD8 +fn_80306EA4 = .text:0x80306EA4; // type:function size:0xC +__ct__19JoypadConnectionMsgFP9LocalUserbi = .text:0x80306EB0; // type:function size:0xB8 +fn_80306F68 = .text:0x80306F68; // type:function size:0xC +fn_80306F74 = .text:0x80306F74; // type:function size:0x28 +fn_80306F9C = .text:0x80306F9C; // type:function size:0x4C +KeyboardSubscribe__FPQ23Hmx6Object = .text:0x80306FE8; // type:function size:0x78 +fn_80307060 = .text:0x80307060; // type:function size:0x60 +fn_803070C0 = .text:0x803070C0; // type:function size:0xE8 +fn_803071A8 = .text:0x803071A8; // type:function size:0xCC +Type__14KeyboardKeyMsgFv = .text:0x80307274; // type:function size:0x4C +fn_803072C0 = .text:0x803072C0; // type:function size:0x50 +__dt__32ObjPtrFv = .text:0x80307310; // type:function size:0x80 +__ct__32ObjPtrFPQ23Hmx6ObjectPQ23Hmx6Object = .text:0x80307390; // type:function size:0x68 +fn_803073F8 = .text:0x803073F8; // type:function size:0x18 +fn_80307410 = .text:0x80307410; // type:function size:0xDC +fn_803074EC = .text:0x803074EC; // type:function size:0x4C +fn_80307538 = .text:0x80307538; // type:function size:0x4 +fn_8030753C = .text:0x8030753C; // type:function size:0xB0 +fn_803075EC = .text:0x803075EC; // type:function size:0x4C +fn_80307638 = .text:0x80307638; // type:function size:0x4 +fn_8030763C = .text:0x8030763C; // type:function size:0x80 +fn_803076BC = .text:0x803076BC; // type:function size:0x20 +fn_803076DC = .text:0x803076DC; // type:function size:0x4 +fn_803076E0 = .text:0x803076E0; // type:function size:0x4 +fn_803076E4 = .text:0x803076E4; // type:function size:0x7C +fn_80307760 = .text:0x80307760; // type:function size:0x64 +fn_803077C4 = .text:0x803077C4; // type:function size:0x8 +fn_803077CC = .text:0x803077CC; // type:function size:0x50 +fn_8030781C = .text:0x8030781C; // type:function size:0x78 +fn_80307894 = .text:0x80307894; // type:function size:0x8 +fn_8030789C = .text:0x8030789C; // type:function size:0x8 +fn_803078A4 = .text:0x803078A4; // type:function size:0x8 +fn_803078AC = .text:0x803078AC; // type:function size:0x7C +fn_80307928 = .text:0x80307928; // type:function size:0x4 +fn_8030792C = .text:0x8030792C; // type:function size:0x4 +fn_80307930 = .text:0x80307930; // type:function size:0x8 +fn_80307938 = .text:0x80307938; // type:function size:0x40 +fn_80307978 = .text:0x80307978; // type:function size:0x3C +fn_803079B4 = .text:0x803079B4; // type:function size:0x20 +fn_803079D4 = .text:0x803079D4; // type:function size:0x3C +fn_80307A10 = .text:0x80307A10; // type:function size:0x3C +fn_80307A4C = .text:0x80307A4C; // type:function size:0x8 +fn_80307A54 = .text:0x80307A54; // type:function size:0x8 +fn_80307A5C = .text:0x80307A5C; // type:function size:0x58 +fn_80307AB4 = .text:0x80307AB4; // type:function size:0x8 +fn_80307ABC = .text:0x80307ABC; // type:function size:0x8 +fn_80307AC4 = .text:0x80307AC4; // type:function size:0xC0 +fn_80307B84 = .text:0x80307B84; // type:function size:0x8 +fn_80307B8C = .text:0x80307B8C; // type:function size:0x8 +fn_80307B94 = .text:0x80307B94; // type:function size:0x40 +fn_80307BD4 = .text:0x80307BD4; // type:function size:0x8 +fn_80307BDC = .text:0x80307BDC; // type:function size:0x8 +__ct__9MCFileWiiFP11MCContainer = .text:0x80307BE4; // type:function size:0x44 +__ct__6MCFileFP11MCContainer = .text:0x80307C28; // type:function size:0x14 +fn_80307C3C = .text:0x80307C3C; // type:function size:0x58 +fn_80307C94 = .text:0x80307C94; // type:function size:0xE4 +fn_80307D78 = .text:0x80307D78; // type:function size:0xAC +fn_80307E24 = .text:0x80307E24; // type:function size:0xAC +fn_80307ED0 = .text:0x80307ED0; // type:function size:0xA0 +fn_80307F70 = .text:0x80307F70; // type:function size:0xA0 +fn_80308010 = .text:0x80308010; // type:function size:0x8 +fn_80308018 = .text:0x80308018; // type:function size:0x60 +fn_80308078 = .text:0x80308078; // type:function size:0x58 +fn_803080D0 = .text:0x803080D0; // type:function size:0x134 +fn_80308204 = .text:0x80308204; // type:function size:0xC8 +fn_803082CC = .text:0x803082CC; // type:function size:0xF0 +fn_803083BC = .text:0x803083BC; // type:function size:0x2C +fn_803083E8 = .text:0x803083E8; // type:function size:0x70 +fn_80308458 = .text:0x80308458; // type:function size:0x70 +__dt__10MemcardWiiFv = .text:0x803084C8; // type:function size:0x58 +__dt__14MCContainerWiiFv = .text:0x80308520; // type:function size:0x58 +fn_80308578 = .text:0x80308578; // type:function size:0x48 +__ct__10MemcardWiiFv = .text:0x803085C0; // type:function size:0x3C +__ct__7MemcardFv = .text:0x803085FC; // type:function size:0x3C +__ct__9NetStreamFv = .text:0x80308638; // type:function size:0x68 +__dt__9NetStreamFv = .text:0x803086A0; // type:function size:0xA8 +ClientConnect__9NetStreamFRC10NetAddress = .text:0x80308748; // type:function size:0x138 +Eof__9NetStreamFv = .text:0x80308880; // type:function size:0x38 +SeekImpl__9NetStreamFiQ29BinStream8SeekType = .text:0x803088B8; // type:function size:0x4 +ReadImpl__9NetStreamFPvi = .text:0x803088BC; // type:function size:0x118 +WriteImpl__9NetStreamFPCvi = .text:0x803089D4; // type:function size:0xF8 +fn_80308ACC = .text:0x80308ACC; // type:function size:0x8 +Create__13NetworkSocketFb = .text:0x80308AD4; // type:function size:0x40 +fn_80308B14 = .text:0x80308B14; // type:function size:0x44 +fn_80308B58 = .text:0x80308B58; // type:function size:0x8 +__ct__16WiiNetworkSocketFb = .text:0x80308B60; // type:function size:0xC8 +__ct__13NetworkSocketFv = .text:0x80308C28; // type:function size:0x10 +__ct__16WiiNetworkSocketFib = .text:0x80308C38; // type:function size:0x88 +__dt__16WiiNetworkSocketFv = .text:0x80308CC0; // type:function size:0x74 +Connect__16WiiNetworkSocketFUlUs = .text:0x80308D34; // type:function size:0x74 +Listen__16WiiNetworkSocketFv = .text:0x80308DA8; // type:function size:0xC +Accept__16WiiNetworkSocketFv = .text:0x80308DB4; // type:function size:0x74 +GetRemoteIP__16WiiNetworkSocketFv = .text:0x80308E28; // type:function size:0xC +Disconnect__16WiiNetworkSocketFv = .text:0x80308E34; // type:function size:0x50 +Fail__16WiiNetworkSocketFv = .text:0x80308E84; // type:function size:0x8 +Bind__16WiiNetworkSocketFUs = .text:0x80308E8C; // type:function size:0x84 +InqBoundPort__16WiiNetworkSocketFv = .text:0x80308F10; // type:function size:0x30 +Send__16WiiNetworkSocketFiUi = .text:0x80308F40; // type:function size:0xE0 +SendTo__16WiiNetworkSocketFv = .text:0x80309020; // type:function size:0x30 +BroadcastTo__16WiiNetworkSocketFv = .text:0x80309050; // type:function size:0x30 +BytesAvailable__16WiiNetworkSocketFv = .text:0x80309080; // type:function size:0x90 +Recv__16WiiNetworkSocketFPvUl = .text:0x80309110; // type:function size:0xD0 +RecvFrom__16WiiNetworkSocketFv = .text:0x803091E0; // type:function size:0x30 +CanSend__16WiiNetworkSocketFv = .text:0x80309210; // type:function size:0x70 +SetNoDelay__16WiiNetworkSocketFi = .text:0x80309280; // type:function size:0x40 +__ct__8OnlineIDFv = .text:0x803092C0; // type:function size:0xC +fn_803092CC = .text:0x803092CC; // type:function size:0x10 +fn_803092DC = .text:0x803092DC; // type:function size:0x8 +fn_803092E4 = .text:0x803092E4; // type:function size:0x30 +fn_80309314 = .text:0x80309314; // type:function size:0x44 +__ls__FR9BinStreamRC8OnlineID = .text:0x80309358; // type:function size:0x34 +fn_8030938C = .text:0x8030938C; // type:function size:0x44 +fn_803093D0 = .text:0x803093D0; // type:function size:0xC +fn_803093DC = .text:0x803093DC; // type:function size:0xC +PlatformRegionToSymbol__F14PlatformRegion = .text:0x803093E8; // type:function size:0x94 +SymbolToPlatformRegion__F6Symbol = .text:0x8030947C; // type:function size:0x6C +fn_803094E8 = .text:0x803094E8; // type:function size:0x9C +fn_80309584 = .text:0x80309584; // type:function size:0x1C +fn_803095A0 = .text:0x803095A0; // type:function size:0x48 +fn_803095E8 = .text:0x803095E8; // type:function size:0x54 +fn_8030963C = .text:0x8030963C; // type:function size:0x48 +fn_80309684 = .text:0x80309684; // type:function size:0x60 +fn_803096E4 = .text:0x803096E4; // type:function size:0x48 +fn_8030972C = .text:0x8030972C; // type:function size:0x8 +fn_80309734 = .text:0x80309734; // type:function size:0x8 +fn_8030973C = .text:0x8030973C; // type:function size:0x58 +SetRegion__11PlatformMgrF14PlatformRegion = .text:0x80309794; // type:function size:0x11C +Handle__11PlatformMgrFP9DataArrayb = .text:0x803098B0; // type:function size:0xB6C +fn_8030A41C = .text:0x8030A41C; // type:function size:0x10 +fn_8030A42C = .text:0x8030A42C; // type:function size:0xC +fn_8030A438 = .text:0x8030A438; // type:function size:0x10 +__sinit_\platformmgr_cpp = .text:0x8030A448; // type:function size:0x4C scope:local +fn_8030A494 = .text:0x8030A494; // type:function size:0x18 +fn_8030A4AC = .text:0x8030A4AC; // type:function size:0x18 +fn_8030A4C4 = .text:0x8030A4C4; // type:function size:0x18 +fn_8030A4DC = .text:0x8030A4DC; // type:function size:0x18 +fn_8030A4F4 = .text:0x8030A4F4; // type:function size:0x18 +fn_8030A50C = .text:0x8030A50C; // type:function size:0x18 +fn_8030A524 = .text:0x8030A524; // type:function size:0x18 +fn_8030A53C = .text:0x8030A53C; // type:function size:0x8 +fn_8030A544 = .text:0x8030A544; // type:function size:0x8 +fn_8030A54C = .text:0x8030A54C; // type:function size:0x8 +fn_8030A554 = .text:0x8030A554; // type:function size:0x8 +fn_8030A55C = .text:0x8030A55C; // type:function size:0xA0 +fn_8030A5FC = .text:0x8030A5FC; // type:function size:0x28 +fn_8030A624 = .text:0x8030A624; // type:function size:0x1C +fn_8030A640 = .text:0x8030A640; // type:function size:0xC +fn_8030A64C = .text:0x8030A64C; // type:function size:0xC +fn_8030A658 = .text:0x8030A658; // type:function size:0x9C +fn_8030A6F4 = .text:0x8030A6F4; // type:function size:0x14 +fn_8030A708 = .text:0x8030A708; // type:function size:0x114 +__ct__11PlatformMgrFv = .text:0x8030A81C; // type:function size:0x1B4 +__dt__11PlatformMgrFv = .text:0x8030A9D0; // type:function size:0xE0 +fn_8030AAB0 = .text:0x8030AAB0; // type:function size:0x4C +RegionInit__11PlatformMgrFv = .text:0x8030AAFC; // type:function size:0xC8 +Init__11PlatformMgrFv = .text:0x8030ABC4; // type:function size:0xC8 +fn_8030AC8C = .text:0x8030AC8C; // type:function size:0x14C +__ct__12UIChangedMsgFi = .text:0x8030ADD8; // type:function size:0x64 +fn_8030AE3C = .text:0x8030AE3C; // type:function size:0x38 +fn_8030AE74 = .text:0x8030AE74; // type:function size:0x18 +fn_8030AE8C = .text:0x8030AE8C; // type:function size:0x18 +fn_8030AEA4 = .text:0x8030AEA4; // type:function size:0x34 +fn_8030AED8 = .text:0x8030AED8; // type:function size:0x3B8 +__ct__17StorageChangedMsgFv = .text:0x8030B290; // type:function size:0x4C +__ct__21DWCProfanityResultMsgFii = .text:0x8030B2DC; // type:function size:0x8C +__ct__26ConnectionStatusChangedMsgFi = .text:0x8030B368; // type:function size:0x64 +__ct__24WiiControllerOverflowMsgFv = .text:0x8030B3CC; // type:function size:0x4C +Type__24WiiControllerOverflowMsgFv = .text:0x8030B418; // type:function size:0x4C +fn_8030B464 = .text:0x8030B464; // type:function size:0x4 +fn_8030B468 = .text:0x8030B468; // type:function size:0x4 +fn_8030B46C = .text:0x8030B46C; // type:function size:0x90 +__ct__16SigninChangedMsgFii = .text:0x8030B4FC; // type:function size:0x8C +fn_8030B588 = .text:0x8030B588; // type:function size:0x34 +fn_8030B5BC = .text:0x8030B5BC; // type:function size:0x34 +fn_8030B5F0 = .text:0x8030B5F0; // type:function size:0xA8 +fn_8030B698 = .text:0x8030B698; // type:function size:0xC +fn_8030B6A4 = .text:0x8030B6A4; // type:function size:0xC +fn_8030B6B0 = .text:0x8030B6B0; // type:function size:0xC +fn_8030B6BC = .text:0x8030B6BC; // type:function size:0xC +fn_8030B6C8 = .text:0x8030B6C8; // type:function size:0x6C +fn_8030B734 = .text:0x8030B734; // type:function size:0xB4 +fn_8030B7E8 = .text:0x8030B7E8; // type:function size:0x4C +fn_8030B834 = .text:0x8030B834; // type:function size:0x4C +fn_8030B880 = .text:0x8030B880; // type:function size:0x40 +fn_8030B8C0 = .text:0x8030B8C0; // type:function size:0x50 +fn_8030B910 = .text:0x8030B910; // type:function size:0x180 +fn_8030BA90 = .text:0x8030BA90; // type:function size:0x8 +fn_8030BA98 = .text:0x8030BA98; // type:function size:0x64 +fn_8030BAFC = .text:0x8030BAFC; // type:function size:0x10C +fn_8030BC08 = .text:0x8030BC08; // type:function size:0xE8 +fn_8030BCF0 = .text:0x8030BCF0; // type:function size:0x130 +fn_8030BE20 = .text:0x8030BE20; // type:function size:0x108 +fn_8030BF28 = .text:0x8030BF28; // type:function size:0x184 +fn_8030C0AC = .text:0x8030C0AC; // type:function size:0xB0 +fn_8030C15C = .text:0x8030C15C; // type:function size:0x114 +fn_8030C270 = .text:0x8030C270; // type:function size:0x9C +fn_8030C30C = .text:0x8030C30C; // type:function size:0x3C +fn_8030C348 = .text:0x8030C348; // type:function size:0x58 +fn_8030C3A0 = .text:0x8030C3A0; // type:function size:0xB0 +fn_8030C450 = .text:0x8030C450; // type:function size:0x48 +fn_8030C498 = .text:0x8030C498; // type:function size:0x3C +fn_8030C4D4 = .text:0x8030C4D4; // type:function size:0x68 +fn_8030C53C = .text:0x8030C53C; // type:function size:0x4 +fn_8030C540 = .text:0x8030C540; // type:function size:0x104 +fn_8030C644 = .text:0x8030C644; // type:function size:0xD4 +fn_8030C718 = .text:0x8030C718; // type:function size:0x8C +fn_8030C7A4 = .text:0x8030C7A4; // type:function size:0x4A4 +fn_8030CC48 = .text:0x8030CC48; // type:function size:0x28 +fn_8030CC70 = .text:0x8030CC70; // type:function size:0x88 +fn_8030CCF8 = .text:0x8030CCF8; // type:function size:0x58 +fn_8030CD50 = .text:0x8030CD50; // type:function size:0x4 +fn_8030CD54 = .text:0x8030CD54; // type:function size:0x10 +fn_8030CD64 = .text:0x8030CD64; // type:function size:0x8 +fn_8030CD6C = .text:0x8030CD6C; // type:function size:0xC8 +fn_8030CE34 = .text:0x8030CE34; // type:function size:0x48 +SetDiskError__11PlatformMgrF9DiskError = .text:0x8030CE7C; // type:function size:0x1E0 +fn_8030D05C = .text:0x8030D05C; // type:function size:0x4C +fn_8030D0A8 = .text:0x8030D0A8; // type:function size:0x4C +fn_8030D0F4 = .text:0x8030D0F4; // type:function size:0x68 +fn_8030D15C = .text:0x8030D15C; // type:function size:0x8 +fn_8030D164 = .text:0x8030D164; // type:function size:0x8 +fn_8030D16C = .text:0x8030D16C; // type:function size:0x10 +fn_8030D17C = .text:0x8030D17C; // type:function size:0x10 +fn_8030D18C = .text:0x8030D18C; // type:function size:0x34 +fn_8030D1C0 = .text:0x8030D1C0; // type:function size:0xA0 +fn_8030D260 = .text:0x8030D260; // type:function size:0xC +fn_8030D26C = .text:0x8030D26C; // type:function size:0x80 +fn_8030D2EC = .text:0x8030D2EC; // type:function size:0x64 +fn_8030D350 = .text:0x8030D350; // type:function size:0x4C +fn_8030D39C = .text:0x8030D39C; // type:function size:0x14 +fn_8030D3B0 = .text:0x8030D3B0; // type:function size:0x6C +fn_8030D41C = .text:0x8030D41C; // type:function size:0x168 +fn_8030D584 = .text:0x8030D584; // type:function size:0x8 +fn_8030D58C = .text:0x8030D58C; // type:function size:0xC +GetName__11PlatformMgrCFi = .text:0x8030D598; // type:function size:0x84 +fn_8030D61C = .text:0x8030D61C; // type:function size:0xA8 +fn_8030D6C4 = .text:0x8030D6C4; // type:function size:0x48 +fn_8030D70C = .text:0x8030D70C; // type:function size:0x4 +fn_8030D710 = .text:0x8030D710; // type:function size:0x9C +fn_8030D7AC = .text:0x8030D7AC; // type:function size:0x4C +fn_8030D7F8 = .text:0x8030D7F8; // type:function size:0x2C +fn_8030D824 = .text:0x8030D824; // type:function size:0xAC +fn_8030D8D0 = .text:0x8030D8D0; // type:function size:0x118 +fn_8030D9E8 = .text:0x8030D9E8; // type:function size:0xE4 +fn_8030DACC = .text:0x8030DACC; // type:function size:0xC +fn_8030DAD8 = .text:0x8030DAD8; // type:function size:0x78 +fn_8030DB50 = .text:0x8030DB50; // type:function size:0x60 +fn_8030DBB0 = .text:0x8030DBB0; // type:function size:0x30 +fn_8030DBE0 = .text:0x8030DBE0; // type:function size:0x8 +fn_8030DBE8 = .text:0x8030DBE8; // type:function size:0x8 +fn_8030DBF0 = .text:0x8030DBF0; // type:function size:0x8 +fn_8030DBF8 = .text:0x8030DBF8; // type:function size:0x68 +fn_8030DC60 = .text:0x8030DC60; // type:function size:0x8C +fn_8030DCEC = .text:0x8030DCEC; // type:function size:0x7C +fn_8030DD68 = .text:0x8030DD68; // type:function size:0x74 +fn_8030DDDC = .text:0x8030DDDC; // type:function size:0x64 +fn_8030DE40 = .text:0x8030DE40; // type:function size:0x4C +fn_8030DE8C = .text:0x8030DE8C; // type:function size:0x58 +fn_8030DEE4 = .text:0x8030DEE4; // type:function size:0x4 +fn_8030DEE8 = .text:0x8030DEE8; // type:function size:0x8 +fn_8030DEF0 = .text:0x8030DEF0; // type:function size:0x4 +fn_8030DEF4 = .text:0x8030DEF4; // type:function size:0x8 +fn_8030DEFC = .text:0x8030DEFC; // type:function size:0x6C +fn_8030DF68 = .text:0x8030DF68; // type:function size:0x5C +fn_8030DFC4 = .text:0x8030DFC4; // type:function size:0x30 +fn_8030DFF4 = .text:0x8030DFF4; // type:function size:0x44 +fn_8030E038 = .text:0x8030E038; // type:function size:0x38 +fn_8030E070 = .text:0x8030E070; // type:function size:0x40 +fn_8030E0B0 = .text:0x8030E0B0; // type:function size:0x38 +fn_8030E0E8 = .text:0x8030E0E8; // type:function size:0x18C +PlatformSymbol__F8Platform = .text:0x8030E274; // type:function size:0xB0 +fn_8030E324 = .text:0x8030E324; // type:function size:0x20 +fn_8030E344 = .text:0x8030E344; // type:function size:0x8 +fn_8030E34C = .text:0x8030E34C; // type:function size:0x34 +fn_8030E380 = .text:0x8030E380; // type:function size:0x23C +fn_8030E5BC = .text:0x8030E5BC; // type:function size:0x120 +InitSystem__FPCc = .text:0x8030E6DC; // type:function size:0xEC +fn_8030E7C8 = .text:0x8030E7C8; // type:function size:0xCC +fn_8030E894 = .text:0x8030E894; // type:function size:0x8C +SystemPreInit__FPCc = .text:0x8030E920; // type:function size:0x2A8 +fn_8030EBC8 = .text:0x8030EBC8; // type:function size:0xAC +fn_8030EC74 = .text:0x8030EC74; // type:function size:0x78 +fn_8030ECEC = .text:0x8030ECEC; // type:function size:0x120 +fn_8030EE0C = .text:0x8030EE0C; // type:function size:0x84 +fn_8030EE90 = .text:0x8030EE90; // type:function size:0x100 +fn_8030EF90 = .text:0x8030EF90; // type:function size:0x44 +SetUsingCD__Fb = .text:0x8030EFD4; // type:function size:0xC +SystemConfig__Fv = .text:0x8030EFE0; // type:function size:0xC +SystemConfig__F6Symbol = .text:0x8030EFEC; // type:function size:0x38 +SystemConfig__F6Symbol6Symbol = .text:0x8030F024; // type:function size:0x4C +SystemConfig__F6Symbol6Symbol6Symbol = .text:0x8030F070; // type:function size:0x60 +SystemConfig__F6Symbol6Symbol6Symbol6Symbol = .text:0x8030F0D0; // type:function size:0x74 +SystemConfig__F6Symbol6Symbol6Symbol6Symbol6Symbol = .text:0x8030F144; // type:function size:0x88 +SystemLanguage__Fv = .text:0x8030F1CC; // type:function size:0xC +SupportedLanguages__Fb = .text:0x8030F1D8; // type:function size:0xA8 +IsSupportedLanguage__F6Symbolb = .text:0x8030F280; // type:function size:0x88 +fn_8030F308 = .text:0x8030F308; // type:function size:0x170 +fn_8030F478 = .text:0x8030F478; // type:function size:0x8 +fn_8030F480 = .text:0x8030F480; // type:function size:0x70 +SystemPreInit__FiPPcPCc = .text:0x8030F4F0; // type:function size:0x5C +fn_8030F54C = .text:0x8030F54C; // type:function size:0x9C +fn_8030F5E8 = .text:0x8030F5E8; // type:function size:0xAC +fn_8030F694 = .text:0x8030F694; // type:function size:0x8 +fn_8030F69C = .text:0x8030F69C; // type:function size:0x28 +fn_8030F6C4 = .text:0x8030F6C4; // type:function size:0x94 +fn_8030F758 = .text:0x8030F758; // type:function size:0x28 +fn_8030F780 = .text:0x8030F780; // type:function size:0x60 +fn_8030F7E0 = .text:0x8030F7E0; // type:function size:0x20 +fn_8030F800 = .text:0x8030F800; // type:function size:0x60 +fn_8030F860 = .text:0x8030F860; // type:function size:0xD4 +fn_8030F934 = .text:0x8030F934; // type:function size:0xB8 +__ct__5TimerFv = .text:0x8030F9EC; // type:function size:0x78 +__ct__5TimerFP9DataArray = .text:0x8030FA64; // type:function size:0xD8 +Sleep__5TimerFi = .text:0x8030FB3C; // type:function size:0x44 +Reset__5TimerFv = .text:0x8030FB80; // type:function size:0xAC +Restart__5TimerFv = .text:0x8030FC2C; // type:function size:0x78 +SetLastMs__5TimerFf = .text:0x8030FCA4; // type:function size:0x28 +__ct__10TimerStatsFP9DataArray = .text:0x8030FCCC; // type:function size:0xCC +fn_8030FD98 = .text:0x8030FD98; // type:function size:0x1AC +fn_8030FF44 = .text:0x8030FF44; // type:function size:0x90 +fn_8030FFD4 = .text:0x8030FFD4; // type:function size:0x1C +Clear__10TimerStatsFv = .text:0x8030FFF0; // type:function size:0x44 +GetTimer__9AutoTimerF6Symbol = .text:0x80310034; // type:function size:0x7C +fn_803100B0 = .text:0x803100B0; // type:function size:0x14 +fn_803100C4 = .text:0x803100C4; // type:function size:0x4 +fn_803100C8 = .text:0x803100C8; // type:function size:0x88 +fn_80310150 = .text:0x80310150; // type:function size:0x2C +fn_8031017C = .text:0x8031017C; // type:function size:0x10 +fn_8031018C = .text:0x8031018C; // type:function size:0x48 +fn_803101D4 = .text:0x803101D4; // type:function size:0x70 +fn_80310244 = .text:0x80310244; // type:function size:0x94 +fn_803102D8 = .text:0x803102D8; // type:function size:0x48 +fn_80310320 = .text:0x80310320; // type:function size:0x68 +fn_80310388 = .text:0x80310388; // type:function size:0x1C +fn_803103A4 = .text:0x803103A4; // type:function size:0x8 +fn_803103AC = .text:0x803103AC; // type:function size:0xA0 +fn_8031044C = .text:0x8031044C; // type:function size:0x88 +fn_803104D4 = .text:0x803104D4; // type:function size:0xA8 +OnPrintTimers__FP9DataArray = .text:0x8031057C; // type:function size:0x4C +PrintTimers__9AutoTimerFb = .text:0x803105C8; // type:function size:0x88 +OnShowTier__FP9DataArray = .text:0x80310650; // type:function size:0x80 +SetTimerMs__FP9DataArray = .text:0x803106D0; // type:function size:0x78 +TimerMs__FP9DataArray = .text:0x80310748; // type:function size:0x64 +Init__9AutoTimerFv = .text:0x803107AC; // type:function size:0x144 +fn_803108F0 = .text:0x803108F0; // type:function size:0x4 +fn_803108F4 = .text:0x803108F4; // type:function size:0x2C +fn_80310920 = .text:0x80310920; // type:function size:0x1D0 +fn_80310AF0 = .text:0x80310AF0; // type:function size:0x13C +fn_80310C2C = .text:0x80310C2C; // type:function size:0xAC +fn_80310CD8 = .text:0x80310CD8; // type:function size:0x58 +fn_80310D30 = .text:0x80310D30; // type:function size:0x6C +fn_80310D9C = .text:0x80310D9C; // type:function size:0x9C +fn_80310E38 = .text:0x80310E38; // type:function size:0x40 +fn_80310E78 = .text:0x80310E78; // type:function size:0x4C +fn_80310EC4 = .text:0x80310EC4; // type:function size:0x70 +fn_80310F34 = .text:0x80310F34; // type:function size:0xC +fn_80310F40 = .text:0x80310F40; // type:function size:0x10 +fn_80310F50 = .text:0x80310F50; // type:function size:0x114 +fn_80311064 = .text:0x80311064; // type:function size:0x5C +fn_803110C0 = .text:0x803110C0; // type:function size:0x5C +fn_8031111C = .text:0x8031111C; // type:function size:0x10 +fn_8031112C = .text:0x8031112C; // type:function size:0x54 +fn_80311180 = .text:0x80311180; // type:function size:0x5C +fn_803111DC = .text:0x803111DC; // type:function size:0x6C +fn_80311248 = .text:0x80311248; // type:function size:0x28 +fn_80311270 = .text:0x80311270; // type:function size:0x10 +fn_80311280 = .text:0x80311280; // type:function size:0xC +fn_8031128C = .text:0x8031128C; // type:function size:0x8 +fn_80311294 = .text:0x80311294; // type:function size:0x3C +fn_803112D0 = .text:0x803112D0; // type:function size:0x5C +fn_8031132C = .text:0x8031132C; // type:function size:0x5C +fn_80311388 = .text:0x80311388; // type:function size:0xC +fn_80311394 = .text:0x80311394; // type:function size:0xB8 +_PoolAlloc__Fi = .text:0x8031144C; // type:function size:0x10 +fn_8031145C = .text:0x8031145C; // type:function size:0x58 +fn_803114B4 = .text:0x803114B4; // type:function size:0x80 +fn_80311534 = .text:0x80311534; // type:function size:0x80 +fn_803115B4 = .text:0x803115B4; // type:function size:0x58 +fn_8031160C = .text:0x8031160C; // type:function size:0x54 +fn_80311660 = .text:0x80311660; // type:function size:0x30 +fn_80311690 = .text:0x80311690; // type:function size:0x30 +fn_803116C0 = .text:0x803116C0; // type:function size:0x40 +__ct__4UserFv = .text:0x80311700; // type:function size:0x6C +Reset__4UserFv = .text:0x8031176C; // type:function size:0xC +ComesBefore__4UserFPC4User = .text:0x80311778; // type:function size:0xC +SetUserGuid__4UserFRC8UserGuid = .text:0x80311784; // type:function size:0x50 +SyncSave__4UserCFR9BinStreamUi = .text:0x803117D4; // type:function size:0x6C +Handle__4UserFP9DataArrayb = .text:0x80311840; // type:function size:0x1B8 +SyncProperty__4UserFR8DataNodeP9DataArrayi6PropOp = .text:0x803119F8; // type:function size:0x6C +__ct__9LocalUserFv = .text:0x80311A64; // type:function size:0x74 +IsLocal__9LocalUserCFv = .text:0x80311AD8; // type:function size:0x8 +GetLocalUser__9LocalUserFv = .text:0x80311AE0; // type:function size:0x4 +GetLocalUser__9LocalUserCFv = .text:0x80311AE4; // type:function size:0x4 +GetRemoteUser__9LocalUserFv = .text:0x80311AE8; // type:function size:0x8 +GetRemoteUser__9LocalUserCFv = .text:0x80311AF0; // type:function size:0x8 +fn_80311AF8 = .text:0x80311AF8; // type:function size:0x4 +fn_80311AFC = .text:0x80311AFC; // type:function size:0x30 +fn_80311B2C = .text:0x80311B2C; // type:function size:0x70 +fn_80311B9C = .text:0x80311B9C; // type:function size:0x30 +fn_80311BCC = .text:0x80311BCC; // type:function size:0x10 +fn_80311BDC = .text:0x80311BDC; // type:function size:0x10 +fn_80311BEC = .text:0x80311BEC; // type:function size:0x10 +fn_80311BFC = .text:0x80311BFC; // type:function size:0x10 +fn_80311C0C = .text:0x80311C0C; // type:function size:0x98 +UserName__9LocalUserCFv = .text:0x80311CA4; // type:function size:0x3C +Handle__9LocalUserFP9DataArrayb = .text:0x80311CE0; // type:function size:0x198 +__ct__10RemoteUserFv = .text:0x80311E78; // type:function size:0x74 +fn_80311EEC = .text:0x80311EEC; // type:function size:0x8 +fn_80311EF4 = .text:0x80311EF4; // type:function size:0x8 +fn_80311EFC = .text:0x80311EFC; // type:function size:0x8 +fn_80311F04 = .text:0x80311F04; // type:function size:0x4 +fn_80311F08 = .text:0x80311F08; // type:function size:0x4 +fn_80311F0C = .text:0x80311F0C; // type:function size:0x8 +fn_80311F14 = .text:0x80311F14; // type:function size:0x60 +fn_80311F74 = .text:0x80311F74; // type:function size:0x14 +fn_80311F88 = .text:0x80311F88; // type:function size:0x14 +fn_80311F9C = .text:0x80311F9C; // type:function size:0x14 +fn_80311FB0 = .text:0x80311FB0; // type:function size:0x14 +fn_80311FC4 = .text:0x80311FC4; // type:function size:0x14 +fn_80311FD8 = .text:0x80311FD8; // type:function size:0x14 +fn_80311FEC = .text:0x80311FEC; // type:function size:0x14 +fn_80312000 = .text:0x80312000; // type:function size:0x14 +fn_80312014 = .text:0x80312014; // type:function size:0x14 +fn_80312028 = .text:0x80312028; // type:function size:0x14 +fn_8031203C = .text:0x8031203C; // type:function size:0x14 +fn_80312050 = .text:0x80312050; // type:function size:0x14 +fn_80312064 = .text:0x80312064; // type:function size:0x14 +fn_80312078 = .text:0x80312078; // type:function size:0x14 +fn_8031208C = .text:0x8031208C; // type:function size:0x14 +fn_803120A0 = .text:0x803120A0; // type:function size:0xC +__ct__7UserMgrFv = .text:0x803120AC; // type:function size:0x60 +fn_8031210C = .text:0x8031210C; // type:function size:0x8 +fn_80312114 = .text:0x80312114; // type:function size:0x8 +fn_8031211C = .text:0x8031211C; // type:function size:0xE0 +fn_803121FC = .text:0x803121FC; // type:function size:0xE0 +fn_803122DC = .text:0x803122DC; // type:function size:0x8 +Handle__7UserMgrFP9DataArrayb = .text:0x803122E4; // type:function size:0x108 +fn_803123EC = .text:0x803123EC; // type:function size:0x40 +fn_8031242C = .text:0x8031242C; // type:function size:0x40 +fn_8031246C = .text:0x8031246C; // type:function size:0x44 +fn_803124B0 = .text:0x803124B0; // type:function size:0x74 +__ct__15VirtualKeyboardFv = .text:0x80312524; // type:function size:0x6C +__dt__15VirtualKeyboardFv = .text:0x80312590; // type:function size:0x74 +fn_80312604 = .text:0x80312604; // type:function size:0x20 +fn_80312624 = .text:0x80312624; // type:function size:0xC4 +fn_803126E8 = .text:0x803126E8; // type:function size:0xA0 +fn_80312788 = .text:0x80312788; // type:function size:0x4 +fn_8031278C = .text:0x8031278C; // type:function size:0x18C +fn_80312918 = .text:0x80312918; // type:function size:0xC +Handle__15VirtualKeyboardFP9DataArrayb = .text:0x80312924; // type:function size:0x154 +fn_80312A78 = .text:0x80312A78; // type:function size:0x48 +fn_80312AC0 = .text:0x80312AC0; // type:function size:0x14 +fn_80312AD4 = .text:0x80312AD4; // type:function size:0x38 +fn_80312B0C = .text:0x80312B0C; // type:function size:0x1C +fn_80312B28 = .text:0x80312B28; // type:function size:0x54 +fn_80312B7C = .text:0x80312B7C; // type:function size:0x40 +WiiRndBeginDrawing = .text:0x80312BBC; // type:function size:0x10 +WiiRndEndDrawing = .text:0x80312BCC; // type:function size:0xC +KeyboardMemAlloc = .text:0x80312BD8; // type:function size:0xEC +KeyboardMemFree = .text:0x80312CC4; // type:function size:0x4 +KeyboardEncodeUTF8 = .text:0x80312CC8; // type:function size:0x74 +KeyboardUTF8RemoveSpaces = .text:0x80312D3C; // type:function size:0x4 +KeyboardUTF8toWChar_t = .text:0x80312D40; // type:function size:0x4 +KeyboardGetKpadsInfo = .text:0x80312D44; // type:function size:0x4 +KeyboardUSBPoll = .text:0x80312D48; // type:function size:0x4 +KeyboardSysLanguage = .text:0x80312D4C; // type:function size:0x118 +KeyboardShowHomeMenuBannedIcon = .text:0x80312E64; // type:function size:0xC +fn_80312E70 = .text:0x80312E70; // type:function size:0xC +KeyboardHomeMenuBannedIconActive = .text:0x80312E7C; // type:function size:0xC +KeyboardActivateHomeMenuBannedIcon = .text:0x80312E88; // type:function size:0x10 +KeyboardWiiPoll = .text:0x80312E98; // type:function size:0x38 +fn_80312ED0 = .text:0x80312ED0; // type:function size:0x4 +fn_80312ED4 = .text:0x80312ED4; // type:function size:0x190 +fn_80313064 = .text:0x80313064; // type:function size:0x10 +fn_80313074 = .text:0x80313074; // type:function size:0x150 +fn_803131C4 = .text:0x803131C4; // type:function size:0x14 +fn_803131D8 = .text:0x803131D8; // type:function size:0x8 +fn_803131E0 = .text:0x803131E0; // type:function size:0x88 +fn_80313268 = .text:0x80313268; // type:function size:0x3C +fn_803132A4 = .text:0x803132A4; // type:function size:0x3C +fn_803132E0 = .text:0x803132E0; // type:function size:0x88 +fn_80313368 = .text:0x80313368; // type:function size:0x130 +fn_80313498 = .text:0x80313498; // type:function size:0x78 +fn_80313510 = .text:0x80313510; // type:function size:0x54 +fn_80313564 = .text:0x80313564; // type:function size:0x3C +fn_803135A0 = .text:0x803135A0; // type:function size:0x588 +fn_80313B28 = .text:0x80313B28; // type:function size:0x4 +fn_80313B2C = .text:0x80313B2C; // type:function size:0x34 +fn_80313B60 = .text:0x80313B60; // type:function size:0xC +fn_80313B6C = .text:0x80313B6C; // type:function size:0xC +fn_80313B78 = .text:0x80313B78; // type:function size:0x18 +fn_80313B90 = .text:0x80313B90; // type:function size:0x18 +fn_80313BA8 = .text:0x80313BA8; // type:function size:0x30 +fn_80313BD8 = .text:0x80313BD8; // type:function size:0x10 +fn_80313BE8 = .text:0x80313BE8; // type:function size:0x10 +fn_80313BF8 = .text:0x80313BF8; // type:function size:0x10 +fn_80313C08 = .text:0x80313C08; // type:function size:0xC +fn_80313C14 = .text:0x80313C14; // type:function size:0x10 +fn_80313C24 = .text:0x80313C24; // type:function size:0x14 +fn_80313C38 = .text:0x80313C38; // type:function size:0x18 +fn_80313C50 = .text:0x80313C50; // type:function size:0x18 +fn_80313C68 = .text:0x80313C68; // type:function size:0x18 +fn_80313C80 = .text:0x80313C80; // type:function size:0x10 +fn_80313C90 = .text:0x80313C90; // type:function size:0x10 +fn_80313CA0 = .text:0x80313CA0; // type:function size:0x10 +fn_80313CB0 = .text:0x80313CB0; // type:function size:0xC +fn_80313CBC = .text:0x80313CBC; // type:function size:0x10 +fn_80313CCC = .text:0x80313CCC; // type:function size:0x14 +fn_80313CE0 = .text:0x80313CE0; // type:function size:0x38 +fn_80313D18 = .text:0x80313D18; // type:function size:0x74 +fn_80313D8C = .text:0x80313D8C; // type:function size:0x9C +fn_80313E28 = .text:0x80313E28; // type:function size:0x70 +__ct__17StringStrummedMsgFiiii = .text:0x80313E98; // type:function size:0xCC +Type__17StringStrummedMsgFv = .text:0x80313F64; // type:function size:0x4C +Type__16StringStoppedMsgFv = .text:0x80313FB0; // type:function size:0x4C +__ct__18RGAccelerometerMsgFiiii = .text:0x80313FFC; // type:function size:0xCC +Type__18RGAccelerometerMsgFv = .text:0x803140C8; // type:function size:0x4C +__ct__25RGConnectedAccessoriesMsgFii = .text:0x80314114; // type:function size:0x8C +Type__25RGConnectedAccessoriesMsgFv = .text:0x803141A0; // type:function size:0x4C +__ct__14RGPitchBendMsgFii = .text:0x803141EC; // type:function size:0x8C +Type__14RGPitchBendMsgFv = .text:0x80314278; // type:function size:0x4C +__ct__11RGMutingMsgFii = .text:0x803142C4; // type:function size:0x8C +Type__11RGMutingMsgFv = .text:0x80314350; // type:function size:0x4C +__ct__13RGStompBoxMsgFii = .text:0x8031439C; // type:function size:0x8C +Type__13RGStompBoxMsgFv = .text:0x80314428; // type:function size:0x4C +__ct__18RGProgramChangeMsgFii = .text:0x80314474; // type:function size:0x8C +Type__18RGProgramChangeMsgFv = .text:0x80314500; // type:function size:0x4C +__ct__10RGSwingMsgFii = .text:0x8031454C; // type:function size:0x8C +Type__10RGSwingMsgFv = .text:0x803145D8; // type:function size:0x4C +__ct__19RGFretButtonDownMsgFiii = .text:0x80314624; // type:function size:0xAC +Type__19RGFretButtonDownMsgFv = .text:0x803146D0; // type:function size:0x4C +__ct__17RGFretButtonUpMsgFiii = .text:0x8031471C; // type:function size:0xAC +Type__17RGFretButtonUpMsgFv = .text:0x803147C8; // type:function size:0x4C +fn_80314814 = .text:0x80314814; // type:function size:0x64 +fn_80314878 = .text:0x80314878; // type:function size:0x58 +fn_803148D0 = .text:0x803148D0; // type:function size:0x30 +fn_80314900 = .text:0x80314900; // type:function size:0xBC +fn_803149BC = .text:0x803149BC; // type:function size:0x6C +fn_80314A28 = .text:0x80314A28; // type:function size:0x94 +fn_80314ABC = .text:0x80314ABC; // type:function size:0x3C +fn_80314AF8 = .text:0x80314AF8; // type:function size:0x4C0 +fn_80314FB8 = .text:0x80314FB8; // type:function size:0x4 +fn_80314FBC = .text:0x80314FBC; // type:function size:0x90 +fn_8031504C = .text:0x8031504C; // type:function size:0x30 +fn_8031507C = .text:0x8031507C; // type:function size:0xC +fn_80315088 = .text:0x80315088; // type:function size:0xC +fn_80315094 = .text:0x80315094; // type:function size:0x10 +fn_803150A4 = .text:0x803150A4; // type:function size:0x10 +fn_803150B4 = .text:0x803150B4; // type:function size:0x10 +fn_803150C4 = .text:0x803150C4; // type:function size:0x10 +fn_803150D4 = .text:0x803150D4; // type:function size:0x10 +fn_803150E4 = .text:0x803150E4; // type:function size:0x20 +fn_80315104 = .text:0x80315104; // type:function size:0x28 +fn_8031512C = .text:0x8031512C; // type:function size:0x18 +fn_80315144 = .text:0x80315144; // type:function size:0xC +fn_80315150 = .text:0x80315150; // type:function size:0xC +fn_8031515C = .text:0x8031515C; // type:function size:0x10 +fn_8031516C = .text:0x8031516C; // type:function size:0x10 +fn_8031517C = .text:0x8031517C; // type:function size:0x10 +fn_8031518C = .text:0x8031518C; // type:function size:0x10 +fn_8031519C = .text:0x8031519C; // type:function size:0x10 +fn_803151AC = .text:0x803151AC; // type:function size:0x18 +fn_803151C4 = .text:0x803151C4; // type:function size:0x20 +fn_803151E4 = .text:0x803151E4; // type:function size:0x8 +fn_803151EC = .text:0x803151EC; // type:function size:0xAC +__ct__22KeyboardKeyReleasedMsgFii = .text:0x80315298; // type:function size:0x8C +Type__22KeyboardKeyReleasedMsgFv = .text:0x80315324; // type:function size:0x4C +__ct__14KeyboardModMsgFii = .text:0x80315370; // type:function size:0x8C +Type__14KeyboardModMsgFv = .text:0x803153FC; // type:function size:0x4C +__ct__26KeyboardExpressionPedalMsgFii = .text:0x80315448; // type:function size:0x8C +Type__26KeyboardExpressionPedalMsgFv = .text:0x803154D4; // type:function size:0x4C +__ct__31KeyboardConnectedAccessoriesMsgFii = .text:0x80315520; // type:function size:0x8C +Type__31KeyboardConnectedAccessoriesMsgFv = .text:0x803155AC; // type:function size:0x4C +__ct__18KeyboardSustainMsgFii = .text:0x803155F8; // type:function size:0x8C +Type__18KeyboardSustainMsgFv = .text:0x80315684; // type:function size:0x4C +__ct__19KeyboardStompBoxMsgFii = .text:0x803156D0; // type:function size:0x8C +Type__19KeyboardStompBoxMsgFv = .text:0x8031575C; // type:function size:0x4C +__ct__20KeysAccelerometerMsgFiiii = .text:0x803157A8; // type:function size:0xCC +Type__20KeysAccelerometerMsgFv = .text:0x80315874; // type:function size:0x4C +__ct__27KeyboardLowHandPlacementMsgFii = .text:0x803158C0; // type:function size:0x8C +Type__27KeyboardLowHandPlacementMsgFv = .text:0x8031594C; // type:function size:0x4C +__ct__28KeyboardHighHandPlacementMsgFii = .text:0x80315998; // type:function size:0x8C +Type__28KeyboardHighHandPlacementMsgFv = .text:0x80315A24; // type:function size:0x4C +Print__9DataArrayCFR10TextStream8DataTypeb = .text:0x80315A70; // type:function size:0x1CC +fn_80315C3C = .text:0x80315C3C; // type:function size:0x28 +NodesAlloc__Fi = .text:0x80315C64; // type:function size:0x18 +fn_80315C7C = .text:0x80315C7C; // type:function size:0x34 +NodesFree__FiP8DataNode = .text:0x80315CB0; // type:function size:0x4C +Insert__9DataArrayFiRC8DataNode = .text:0x80315CFC; // type:function size:0x120 +InsertNodes__9DataArrayFiPC9DataArray = .text:0x80315E1C; // type:function size:0x158 +Resize__9DataArrayFi = .text:0x80315F74; // type:function size:0xF0 +Remove__9DataArrayFi = .text:0x80316064; // type:function size:0xEC +Remove__9DataArrayFRC8DataNode = .text:0x80316150; // type:function size:0x40 +Contains__9DataArrayCFRC8DataNode = .text:0x80316190; // type:function size:0x44 +FindArray__9DataArrayCFib = .text:0x803161D4; // type:function size:0x84 +GetDataNodeValueAtIndex__9DataArrayCFi = .text:0x80316258; // type:function size:0x24 +FindArray__9DataArrayCF6Symbolb = .text:0x8031627C; // type:function size:0x40 +FindArray__9DataArrayCF6Symbol6Symbol = .text:0x803162BC; // type:function size:0x44 +FindArray__9DataArrayCF6Symbol6Symbol6Symbol = .text:0x80316300; // type:function size:0x58 +FindArray__9DataArrayCF6SymbolPCc = .text:0x80316358; // type:function size:0x60 +FindData__9DataArrayCF6SymbolRPCcb = .text:0x803163B8; // type:function size:0x5C +FindData__9DataArrayCF6SymbolR6Symbolb = .text:0x80316414; // type:function size:0x68 +FindData__9DataArrayCF6SymbolR6Stringb = .text:0x8031647C; // type:function size:0x5C +FindData__9DataArrayCF6SymbolRib = .text:0x803164D8; // type:function size:0x5C +FindData__9DataArrayCF6SymbolRfb = .text:0x80316534; // type:function size:0x5C +FindData__9DataArrayCF6SymbolRbb = .text:0x80316590; // type:function size:0x64 +FindData__9DataArrayCF6SymbolR5Planeb = .text:0x803165F4; // type:function size:0x98 +FindData__9DataArrayCF6SymbolRQ23Hmx5Colorb = .text:0x8031668C; // type:function size:0xB8 +fn_80316744 = .text:0x80316744; // type:function size:0x4 +fn_80316748 = .text:0x80316748; // type:function size:0x90 +fn_803167D8 = .text:0x803167D8; // type:function size:0x4 +fn_803167DC = .text:0x803167DC; // type:function size:0x40 +fn_8031681C = .text:0x8031681C; // type:function size:0x8C +fn_803168A8 = .text:0x803168A8; // type:function size:0x8 +fn_803168B0 = .text:0x803168B0; // type:function size:0x2C +fn_803168DC = .text:0x803168DC; // type:function size:0x58 +fn_80316934 = .text:0x80316934; // type:function size:0x28 +fn_8031695C = .text:0x8031695C; // type:function size:0x68 +Clone__9DataArrayFbbi = .text:0x803169C4; // type:function size:0x130 +__ct__9DataArrayFi = .text:0x80316AF4; // type:function size:0x8C +__ct__9DataArrayFPCvi = .text:0x80316B80; // type:function size:0x78 +__dt__9DataArrayFv = .text:0x80316BF8; // type:function size:0xA8 +fn_80316CA0 = .text:0x80316CA0; // type:function size:0x10 +SetFileLine__9DataArrayF6Symboli = .text:0x80316CB0; // type:function size:0x40 +NodeCmp__FPCvPCv = .text:0x80316CF0; // type:function size:0x194 +SortNodes__9DataArrayFv = .text:0x80316E84; // type:function size:0x24 +Execute__9DataArrayFv = .text:0x80316EA8; // type:function size:0x254 +__ct__8DataNodeFPFP9DataArray_8DataNode = .text:0x803170FC; // type:function size:0x10 +fn_8031710C = .text:0x8031710C; // type:function size:0x8 +fn_80317114 = .text:0x80317114; // type:function size:0x4 +fn_80317118 = .text:0x80317118; // type:function size:0x40 +fn_80317158 = .text:0x80317158; // type:function size:0xA0 +Save__9DataArrayCFR9BinStream = .text:0x803171F8; // type:function size:0x80 +__ls__FR9BinStreamPC8DataNode = .text:0x80317278; // type:function size:0x38 +fn_803172B0 = .text:0x803172B0; // type:function size:0x8C +fn_8031733C = .text:0x8031733C; // type:function size:0x4 +fn_80317340 = .text:0x80317340; // type:function size:0x4 +fn_80317344 = .text:0x80317344; // type:function size:0xC +Load__9DataArrayFR9BinStream = .text:0x80317350; // type:function size:0x588 +fn_803178D8 = .text:0x803178D8; // type:function size:0x4 +fn_803178DC = .text:0x803178DC; // type:function size:0x58 +fn_80317934 = .text:0x80317934; // type:function size:0x6C +fn_803179A0 = .text:0x803179A0; // type:function size:0x34 +fn_803179D4 = .text:0x803179D4; // type:function size:0x4 +fn_803179D8 = .text:0x803179D8; // type:function size:0x54 +fn_80317A2C = .text:0x80317A2C; // type:function size:0x64 +fn_80317A90 = .text:0x80317A90; // type:function size:0x50 +__rs__FR9BinStreamP8DataNode = .text:0x80317AE0; // type:function size:0x38 +SaveGlob__9DataArrayCFR9BinStreamb = .text:0x80317B18; // type:function size:0x84 +LoadGlob__9DataArrayFR9BinStreamb = .text:0x80317B9C; // type:function size:0xD0 +SetFile__9DataArrayF6Symbol = .text:0x80317C6C; // type:function size:0x10 +RunCommandsFromIndex__9DataArrayFi = .text:0x80317C7C; // type:function size:0x8C +ExecuteScript__9DataArrayFiPQ23Hmx6ObjectPC9DataArrayi = .text:0x80317D08; // type:function size:0x154 +__ls__FR10TextStreamPC9DataArray = .text:0x80317E5C; // type:function size:0x5C +__rs__FR9BinStreamRP9DataArray = .text:0x80317EB8; // type:function size:0x84 +__ls__FR9BinStreamPC9DataArray = .text:0x80317F3C; // type:function size:0x60 +fn_80317F9C = .text:0x80317F9C; // type:function size:0x68 +fn_80318004 = .text:0x80318004; // type:function size:0x2C +fn_80318030 = .text:0x80318030; // type:function size:0x18C +fn_803181BC = .text:0x803181BC; // type:function size:0x5C +fn_80318218 = .text:0x80318218; // type:function size:0x10 +fn_80318228 = .text:0x80318228; // type:function size:0x54 +fn_8031827C = .text:0x8031827C; // type:function size:0x28 +fn_803182A4 = .text:0x803182A4; // type:function size:0x68 +fn_8031830C = .text:0x8031830C; // type:function size:0x5C +fn_80318368 = .text:0x80318368; // type:function size:0x114 +fn_8031847C = .text:0x8031847C; // type:function size:0x5C +fn_803184D8 = .text:0x803184D8; // type:function size:0x5C +fn_80318534 = .text:0x80318534; // type:function size:0x54 +__sinit_\dataarray_cpp = .text:0x80318588; // type:function size:0x68 scope:local +fn_803185F0 = .text:0x803185F0; // type:function size:0x58 +fn_80318648 = .text:0x80318648; // type:function size:0x58 +fn_803186A0 = .text:0x803186A0; // type:function size:0x60 +fn_80318700 = .text:0x80318700; // type:function size:0x58 +fn_80318758 = .text:0x80318758; // type:function size:0x30 +fn_80318788 = .text:0x80318788; // type:function size:0x30 +fn_803187B8 = .text:0x803187B8; // type:function size:0x60 +fn_80318818 = .text:0x80318818; // type:function size:0x68 +DataFail = .text:0x80318880; // type:function size:0x4 +fn_80318884 = .text:0x80318884; // type:function size:0xD4 +PushBack__FRC8DataNode = .text:0x80318958; // type:function size:0xA8 +fn_80318A00 = .text:0x80318A00; // type:function size:0x8C +fn_80318A8C = .text:0x80318A8C; // type:function size:0x4 +fn_80318A90 = .text:0x80318A90; // type:function size:0x4 +fn_80318A94 = .text:0x80318A94; // type:function size:0xC +ParseNode__Fv = .text:0x80318AA0; // type:function size:0xA18 +__ct__8DataNodeFP8DataNode = .text:0x803194B8; // type:function size:0x10 +fn_803194C8 = .text:0x803194C8; // type:function size:0x4 +fn_803194CC = .text:0x803194CC; // type:function size:0x58 +fn_80319524 = .text:0x80319524; // type:function size:0x6C +fn_80319590 = .text:0x80319590; // type:function size:0x2C +fn_803195BC = .text:0x803195BC; // type:function size:0x34 +fn_803195F0 = .text:0x803195F0; // type:function size:0x4 +fn_803195F4 = .text:0x803195F4; // type:function size:0x54 +fn_80319648 = .text:0x80319648; // type:function size:0x64 +fn_803196AC = .text:0x803196AC; // type:function size:0x50 +fn_803196FC = .text:0x803196FC; // type:function size:0x24 +ParseArray__Fv = .text:0x80319720; // type:function size:0xA0 +DataInput = .text:0x803197C0; // type:function size:0xA8 +fn_80319868 = .text:0x80319868; // type:function size:0x84 +DataReadString__FPCc = .text:0x803198EC; // type:function size:0x5C +CachedDataFile__FPCcRb = .text:0x80319948; // type:function size:0xB4 +fn_803199FC = .text:0x803199FC; // type:function size:0x30 +FinishDataRead__Fv = .text:0x80319A2C; // type:function size:0x48 +fn_80319A74 = .text:0x80319A74; // type:function size:0x4 +fn_80319A78 = .text:0x80319A78; // type:function size:0xD4 +fn_80319B4C = .text:0x80319B4C; // type:function size:0x38 +fn_80319B84 = .text:0x80319B84; // type:function size:0x58 +DataReadFile__FPCcb = .text:0x80319BDC; // type:function size:0x1E8 +fn_80319DC4 = .text:0x80319DC4; // type:function size:0x110 +fn_80319ED4 = .text:0x80319ED4; // type:function size:0x58 +fn_80319F2C = .text:0x80319F2C; // type:function size:0x8 +fn_80319F34 = .text:0x80319F34; // type:function size:0x4 +fn_80319F38 = .text:0x80319F38; // type:function size:0x40 +fn_80319F78 = .text:0x80319F78; // type:function size:0x74 +DataReadStream__FP9BinStream = .text:0x80319FEC; // type:function size:0xAC +fn_8031A098 = .text:0x8031A098; // type:function size:0x4C +fn_8031A0E4 = .text:0x8031A0E4; // type:function size:0x70 +fn_8031A154 = .text:0x8031A154; // type:function size:0x30 +fn_8031A184 = .text:0x8031A184; // type:function size:0x2C +__ct__10DataLoaderFRC8FilePath9LoaderPosb = .text:0x8031A1B0; // type:function size:0xFC +fn_8031A2AC = .text:0x8031A2AC; // type:function size:0xF8 +fn_8031A3A4 = .text:0x8031A3A4; // type:function size:0xE4 +fn_8031A488 = .text:0x8031A488; // type:function size:0x7C +fn_8031A504 = .text:0x8031A504; // type:function size:0x4 +fn_8031A508 = .text:0x8031A508; // type:function size:0xEC +fn_8031A5F4 = .text:0x8031A5F4; // type:function size:0x3C +fn_8031A630 = .text:0x8031A630; // type:function size:0x34 +fn_8031A664 = .text:0x8031A664; // type:function size:0x84 +fn_8031A6E8 = .text:0x8031A6E8; // type:function size:0x4C +fn_8031A734 = .text:0x8031A734; // type:function size:0x30 +fn_8031A764 = .text:0x8031A764; // type:function size:0x3C +fn_8031A7A0 = .text:0x8031A7A0; // type:function size:0x40 +fn_8031A7E0 = .text:0x8031A7E0; // type:function size:0xBC +fn_8031A89C = .text:0x8031A89C; // type:function size:0x58 +fn_8031A8F4 = .text:0x8031A8F4; // type:function size:0xD8 +DataWriteFile__FPCcPC9DataArrayi = .text:0x8031A9CC; // type:function size:0xE0 +fn_8031AAAC = .text:0x8031AAAC; // type:function size:0x388 +fn_8031AE34 = .text:0x8031AE34; // type:function size:0xC +fn_8031AE40 = .text:0x8031AE40; // type:function size:0x8 +fn_8031AE48 = .text:0x8031AE48; // type:function size:0x130 +fn_8031AF78 = .text:0x8031AF78; // type:function size:0x10 +fn_8031AF88 = .text:0x8031AF88; // type:function size:0xA0 +fn_8031B028 = .text:0x8031B028; // type:function size:0x58 +fn_8031B080 = .text:0x8031B080; // type:function size:0x58 +fn_8031B0D8 = .text:0x8031B0D8; // type:function size:0x60 +fn_8031B138 = .text:0x8031B138; // type:function size:0x58 +fn_8031B190 = .text:0x8031B190; // type:function size:0x30 +fn_8031B1C0 = .text:0x8031B1C0; // type:function size:0x30 +fn_8031B1F0 = .text:0x8031B1F0; // type:function size:0x60 +fn_8031B250 = .text:0x8031B250; // type:function size:0x68 +DataRegisterFunc__F6SymbolPFP9DataArray_8DataNode = .text:0x8031B2B8; // type:function size:0x40 +fn_8031B2F8 = .text:0x8031B2F8; // type:function size:0xFC +fn_8031B3F4 = .text:0x8031B3F4; // type:function size:0x58 +fn_8031B44C = .text:0x8031B44C; // type:function size:0x4 +fn_8031B450 = .text:0x8031B450; // type:function size:0x40 +fn_8031B490 = .text:0x8031B490; // type:function size:0x74 +New__11DataFuncObjFP9DataArray = .text:0x8031B504; // type:function size:0xA8 +__ct__11DataFuncObjFP9DataArray = .text:0x8031B5AC; // type:function size:0x80 +DataSprintf__FP9DataArray = .text:0x8031B62C; // type:function size:0x94 +DataPrintf__FP9DataArray = .text:0x8031B6C0; // type:function size:0xA4 +DataPrint__FP9DataArray = .text:0x8031B764; // type:function size:0x78 +DataSprint__FP9DataArray = .text:0x8031B7DC; // type:function size:0x90 +DataSet__FP9DataArray = .text:0x8031B86C; // type:function size:0x98 +DataSetVar__FP9DataArray = .text:0x8031B904; // type:function size:0x6C +DataIfElse__FP9DataArray = .text:0x8031B970; // type:function size:0x80 +DataIf__FP9DataArray = .text:0x8031B9F0; // type:function size:0xA8 +DataUnless__FP9DataArray = .text:0x8031BA98; // type:function size:0xA8 +DataNodeIsNull__FP8DataNode = .text:0x8031BB40; // type:function size:0x28 +DataEq__FP9DataArray = .text:0x8031BB68; // type:function size:0x68 +DataFindElem__FP9DataArray = .text:0x8031BBD0; // type:function size:0xF8 +DataNe__FP9DataArray = .text:0x8031BCC8; // type:function size:0x54 +DataLe__FP9DataArray = .text:0x8031BD1C; // type:function size:0x70 +DataLt__FP9DataArray = .text:0x8031BD8C; // type:function size:0x6C +DataGe__FP9DataArray = .text:0x8031BDF8; // type:function size:0x70 +DataGt__FP9DataArray = .text:0x8031BE68; // type:function size:0x6C +DataNot__FP9DataArray = .text:0x8031BED4; // type:function size:0x44 +DataAnd__FP9DataArray = .text:0x8031BF18; // type:function size:0x84 +DataOr__FP9DataArray = .text:0x8031BF9C; // type:function size:0x84 +DataXor__FP9DataArray = .text:0x8031C020; // type:function size:0x6C +DataBitAnd__FP9DataArray = .text:0x8031C08C; // type:function size:0x7C +DataAndEqual__FP9DataArray = .text:0x8031C108; // type:function size:0x11C +DataMaskEqual__FP9DataArray = .text:0x8031C224; // type:function size:0x11C +DataOrEqual__FP9DataArray = .text:0x8031C340; // type:function size:0x11C +DataBitOr__FP9DataArray = .text:0x8031C45C; // type:function size:0x7C +DataBitXor__FP9DataArray = .text:0x8031C4D8; // type:function size:0x5C +DataBitNot__FP9DataArray = .text:0x8031C534; // type:function size:0x40 +DataLowestBit__FP9DataArray = .text:0x8031C574; // type:function size:0x44 +GetLowestBit__Fi = .text:0x8031C5B8; // type:function size:0x2C +DataCountBits__FP9DataArray = .text:0x8031C5E4; // type:function size:0x44 +DataWhile__FP9DataArray = .text:0x8031C628; // type:function size:0x9C +DataVar__FP9DataArray = .text:0x8031C6C4; // type:function size:0x4C +DataPackColor__FP9DataArray = .text:0x8031C710; // type:function size:0xB4 +DataUnpackColor__FP9DataArray = .text:0x8031C7C4; // type:function size:0x140 +DataDo__FP9DataArray = .text:0x8031C904; // type:function size:0x110 +DataMin__FP9DataArray = .text:0x8031CA14; // type:function size:0xDC +DataMax__FP9DataArray = .text:0x8031CAF0; // type:function size:0xDC +DataAbs__FP9DataArray = .text:0x8031CBCC; // type:function size:0x90 +DataAdd__FP9DataArray = .text:0x8031CC5C; // type:function size:0x114 +DataAddEq__FP9DataArray = .text:0x8031CD70; // type:function size:0x84 +DataSub__FP9DataArray = .text:0x8031CDF4; // type:function size:0x130 +DataMean__FP9DataArray = .text:0x8031CF24; // type:function size:0xAC +DataClamp__FP9DataArray = .text:0x8031CFD0; // type:function size:0x12C +DataSubEq__FP9DataArray = .text:0x8031D0FC; // type:function size:0x84 +DataClampEq__FP9DataArray = .text:0x8031D180; // type:function size:0x84 +DataMultiply__FP9DataArray = .text:0x8031D204; // type:function size:0xD8 +DataMultiplyEq__FP9DataArray = .text:0x8031D2DC; // type:function size:0x84 +DataDivide__FP9DataArray = .text:0x8031D360; // type:function size:0x6C +DataDivideEq__FP9DataArray = .text:0x8031D3CC; // type:function size:0x84 +DataSqrt__FP9DataArray = .text:0x8031D450; // type:function size:0x40 +DataMod__FP9DataArray = .text:0x8031D490; // type:function size:0xDC +DataDist__FP9DataArray = .text:0x8031D56C; // type:function size:0xF8 +DataSymbol__FP9DataArray = .text:0x8031D664; // type:function size:0x44 +DataChar__FP9DataArray = .text:0x8031D6A8; // type:function size:0x58 +DataInt__FP9DataArray = .text:0x8031D700; // type:function size:0xC4 +DataRound__FP9DataArray = .text:0x8031D7C4; // type:function size:0x4C +DataFloor__FP9DataArray = .text:0x8031D810; // type:function size:0x40 +DataCeil__FP9DataArray = .text:0x8031D850; // type:function size:0x40 +DataDelete__FP9DataArray = .text:0x8031D890; // type:function size:0x5C +DataNew__FP9DataArray = .text:0x8031D8EC; // type:function size:0x130 +DataForEach__FP9DataArray = .text:0x8031DA1C; // type:function size:0x104 +DataForEachInt__FP9DataArray = .text:0x8031DB20; // type:function size:0x120 +DataGetElem__FP9DataArray = .text:0x8031DC40; // type:function size:0x64 +DataGetLastElem__FP9DataArray = .text:0x8031DCA4; // type:function size:0x68 +DataObject__FP9DataArray = .text:0x8031DD0C; // type:function size:0xFC +DataExists__FP9DataArray = .text:0x8031DE08; // type:function size:0xB0 +DataLocalize__FP9DataArray = .text:0x8031DEB8; // type:function size:0x60 +DataLocalizeSeparatedInt__FP9DataArray = .text:0x8031DF18; // type:function size:0x44 +DataLocalizeFloat__FP9DataArray = .text:0x8031DF5C; // type:function size:0x6C +DataStartsWith__FP9DataArray = .text:0x8031DFC8; // type:function size:0xA4 +DataTime__FP9DataArray = .text:0x8031E06C; // type:function size:0x104 +DataRandomInt__FP9DataArray = .text:0x8031E170; // type:function size:0x64 +DataRandomFloat__FP9DataArray = .text:0x8031E1D4; // type:function size:0x88 +DataRandomElem__FP9DataArray = .text:0x8031E25C; // type:function size:0x70 +DataRandom__FP9DataArray = .text:0x8031E2CC; // type:function size:0x60 +DataRandomSeed__FP9DataArray = .text:0x8031E32C; // type:function size:0x44 +DataNotify__FP9DataArray = .text:0x8031E370; // type:function size:0x8 +DataNotifyBeta__FP9DataArray = .text:0x8031E378; // type:function size:0x8 +DataFail__FP9DataArray = .text:0x8031E380; // type:function size:0x8 +DataNotifyOnce__FP9DataArray = .text:0x8031E388; // type:function size:0x8 +DataCond__FP9DataArray = .text:0x8031E390; // type:function size:0xE0 +DataSwitch__FP9DataArray = .text:0x8031E470; // type:function size:0xF4 +DNArrayNodeEquals__FP8DataNodeP8DataNode = .text:0x8031E564; // type:function size:0x98 +DataInsertElems__FP9DataArray = .text:0x8031E5FC; // type:function size:0x78 +DataInsertElem__FP9DataArray = .text:0x8031E674; // type:function size:0x7C +DataPrintArray__FP9DataArray = .text:0x8031E6F0; // type:function size:0x54 +DataSize__FP9DataArray = .text:0x8031E744; // type:function size:0x90 +DataRemoveElem__FP9DataArray = .text:0x8031E7D4; // type:function size:0x68 +DataResize__FP9DataArray = .text:0x8031E83C; // type:function size:0x64 +DataNewArray__FP9DataArray = .text:0x8031E8A0; // type:function size:0x100 +DataSetElem__FP9DataArray = .text:0x8031E9A0; // type:function size:0x84 +DataQuote__FP9DataArray = .text:0x8031EA24; // type:function size:0x40 +DataEval__FP9DataArray = .text:0x8031EA64; // type:function size:0x44 +DataReverseInterp__FP9DataArray = .text:0x8031EAA8; // type:function size:0xAC +InverseLerp__Ffff = .text:0x8031EB54; // type:function size:0x24 +DataInterp__FP9DataArray = .text:0x8031EB78; // type:function size:0x84 +DataInc__FP9DataArray = .text:0x8031EBFC; // type:function size:0xFC +DataDec__FP9DataArray = .text:0x8031ECF8; // type:function size:0xFC +DataHandleType__FP9DataArray = .text:0x8031EDF4; // type:function size:0xD4 +DataHandleTypeRet__FP9DataArray = .text:0x8031EEC8; // type:function size:0x98 +DataExport__FP9DataArray = .text:0x8031EF60; // type:function size:0xCC +DataHandle__FP9DataArray = .text:0x8031F02C; // type:function size:0xFC +DataHandleRet__FP9DataArray = .text:0x8031F128; // type:function size:0xA8 +DataRun__FP9DataArray = .text:0x8031F1D0; // type:function size:0xAC +OnReadFile__FP9DataArray = .text:0x8031F27C; // type:function size:0x90 +OnWriteFile__FP9DataArray = .text:0x8031F30C; // type:function size:0x68 +OnFileExists__FP9DataArray = .text:0x8031F374; // type:function size:0x48 +OnFileReadOnly__FP9DataArray = .text:0x8031F3BC; // type:function size:0x44 +DataExit__FP9DataArray = .text:0x8031F400; // type:function size:0x48 +DataContains__FP9DataArray = .text:0x8031F448; // type:function size:0xA8 +DataFindExists__FP9DataArray = .text:0x8031F4F0; // type:function size:0x108 +DataFind__FP9DataArray = .text:0x8031F5F8; // type:function size:0x98 +DataFindObj__FP9DataArray = .text:0x8031F690; // type:function size:0xF4 +GetObjectDir__FP8DataNodeP9DataArray = .text:0x8031F784; // type:function size:0x3C +DataBasename__FP9DataArray = .text:0x8031F7C0; // type:function size:0x48 +DataDirname__FP9DataArray = .text:0x8031F808; // type:function size:0xA0 +DataHasSubStr__FP9DataArray = .text:0x8031F8A8; // type:function size:0x64 +DataHasAnySubStr__FP9DataArray = .text:0x8031F90C; // type:function size:0xA8 +DataFindSubStr__FP9DataArray = .text:0x8031F9B4; // type:function size:0x7C +DataSubStr__FP9DataArray = .text:0x8031FA30; // type:function size:0xA0 +DataStrCat__FP9DataArray = .text:0x8031FAD0; // type:function size:0xDC +DataStringFlags__FP9DataArray = .text:0x8031FBAC; // type:function size:0x114 +DataStrToLower__FP9DataArray = .text:0x8031FCC0; // type:function size:0x60 +DataStrToUpper__FP9DataArray = .text:0x8031FD20; // type:function size:0x60 +DataStrlen__FP9DataArray = .text:0x8031FD80; // type:function size:0x44 +DataStrElem__FP9DataArray = .text:0x8031FDC4; // type:function size:0x80 +DataStrIEq__FP9DataArray = .text:0x8031FE44; // type:function size:0x64 +StrICmpIsDifferent__FPCcPCc = .text:0x8031FEA8; // type:function size:0x28 +DataSearchReplace__FP9DataArray = .text:0x8031FED0; // type:function size:0xAC +DataPushBack__FP9DataArray = .text:0x8031FF7C; // type:function size:0x88 +DataSort__FP9DataArray = .text:0x80320004; // type:function size:0x44 +DataGetType__FP9DataArray = .text:0x80320048; // type:function size:0x44 +DataWith__FP9DataArray = .text:0x8032008C; // type:function size:0x5C +OnSetThis__FP9DataArray = .text:0x803200E8; // type:function size:0x64 +fn_8032014C = .text:0x8032014C; // type:function size:0x4 +DataMacroElem__FP9DataArray = .text:0x80320150; // type:function size:0xA4 +__dt__15DataMergeFilterFv = .text:0x803201F4; // type:function size:0x58 +DataMergeDirs__FP9DataArray = .text:0x8032024C; // type:function size:0x94 +GetObjectDirAtIndex__FP9DataArrayi = .text:0x803202E0; // type:function size:0x34 +__ct__15DataMergeFilterFP8DataNodei = .text:0x80320314; // type:function size:0x144 +__ct__11MergeFilterFii = .text:0x80320458; // type:function size:0x18 +DataReplaceObject__FP9DataArray = .text:0x80320470; // type:function size:0xFC +DataNextName__FP9DataArray = .text:0x8032056C; // type:function size:0x7C +Quasiquote__FRC8DataNode = .text:0x803205E8; // type:function size:0x1C8 +__ct__12DataArrayPtrFP9DataArray = .text:0x803207B0; // type:function size:0x5C +DataQuasiquote__FP9DataArray = .text:0x8032080C; // type:function size:0x40 +DataUnquote__FP9DataArray = .text:0x8032084C; // type:function size:0x40 +DataGetDateTime__FP9DataArray = .text:0x8032088C; // type:function size:0x1C8 +fn_80320A54 = .text:0x80320A54; // type:function size:0xE0 +DataFileList__FP9DataArray = .text:0x80320B34; // type:function size:0xA4 +DataFileListPaths__FP9DataArray = .text:0x80320BD8; // type:function size:0x48 +DataObjectList__FP9DataArray = .text:0x80320C20; // type:function size:0xAC +DataDisableNotify__FP9DataArray = .text:0x80320CCC; // type:function size:0x8 +DataFilterNotify__FP9DataArray = .text:0x80320CD4; // type:function size:0x8 +DataInitFuncs__Fv = .text:0x80320CDC; // type:function size:0xEA4 +DataTermFuncs__Fv = .text:0x80321B80; // type:function size:0x10 +clear__Q211stlpmtx_std359_Rb_tree<6Symbol,Q211stlpmtx_std13less<6Symbol>,Q211stlpmtx_std38pair,Q211stlpmtx_std67_Select1st>,Q29stlp_priv68_MapTraitsT>,Q211stlpmtx_std69StlNodeAlloc>>Fv = .text:0x80321B90; // type:function size:0x50 +DataFuncName__FPFP9DataArray_8DataNode = .text:0x80321BE0; // type:function size:0xB4 +fn_80321C94 = .text:0x80321C94; // type:function size:0x4 +fn_80321C98 = .text:0x80321C98; // type:function size:0x8 +fn_80321CA0 = .text:0x80321CA0; // type:function size:0x388 +_M_erase__Q211stlpmtx_std359_Rb_tree<6Symbol,Q211stlpmtx_std13less<6Symbol>,Q211stlpmtx_std38pair,Q211stlpmtx_std67_Select1st>,Q29stlp_priv68_MapTraitsT>,Q211stlpmtx_std69StlNodeAlloc>>FPQ211stlpmtx_std18_Rb_tree_node_base = .text:0x80322028; // type:function size:0x6C +fn_80322094 = .text:0x80322094; // type:function size:0x2C +__dt__11DataFuncObjFv = .text:0x803220C0; // type:function size:0x70 +PoolFree__11DataFuncObjFv = .text:0x80322130; // type:function size:0x10 +Handle__11DataFuncObjFP9DataArrayb = .text:0x80322140; // type:function size:0x1C +Filter__15DataMergeFilterFPQ23Hmx6ObjectPQ23Hmx6Object = .text:0x8032215C; // type:function size:0x188 +fn_803222E4 = .text:0x803222E4; // type:function size:0x10 +fn_803222F4 = .text:0x803222F4; // type:function size:0x158 +fn_8032244C = .text:0x8032244C; // type:function size:0x44 +fn_80322490 = .text:0x80322490; // type:function size:0x104 +fn_80322594 = .text:0x80322594; // type:function size:0x5C +fn_803225F0 = .text:0x803225F0; // type:function size:0x10 +__sinit_\datafunc_cpp = .text:0x80322600; // type:function size:0x64 scope:local +__dt__11DataThisPtrFv = .text:0x80322664; // type:function size:0x58 +__ct__11DataThisPtrFv = .text:0x803226BC; // type:function size:0x44 +__dt__Q211stlpmtx_std154map<6Symbol,PFP9DataArray_8DataNode,Q211stlpmtx_std13less<6Symbol>,Q211stlpmtx_std69StlNodeAlloc>>Fv = .text:0x80322700; // type:function size:0x58 +fn_80322758 = .text:0x80322758; // type:function size:0x60 +fn_803227B8 = .text:0x803227B8; // type:function size:0x58 +fn_80322810 = .text:0x80322810; // type:function size:0x58 +__ct__Q211stlpmtx_std154map<6Symbol,PFP9DataArray_8DataNode,Q211stlpmtx_std13less<6Symbol>,Q211stlpmtx_std69StlNodeAlloc>>Fv = .text:0x80322868; // type:function size:0x44 +fn_803228AC = .text:0x803228AC; // type:function size:0x3C +fn_803228E8 = .text:0x803228E8; // type:function size:0x70 +Replace__11DataThisPtrFPQ23Hmx6ObjectPQ23Hmx6Object = .text:0x80322958; // type:function size:0x54 +DataVariable__F6Symbol = .text:0x803229AC; // type:function size:0x10 +fn_803229BC = .text:0x803229BC; // type:function size:0x110 +fn_80322ACC = .text:0x80322ACC; // type:function size:0x58 +fn_80322B24 = .text:0x80322B24; // type:function size:0x48 +fn_80322B6C = .text:0x80322B6C; // type:function size:0x8 +fn_80322B74 = .text:0x80322B74; // type:function size:0x4 +fn_80322B78 = .text:0x80322B78; // type:function size:0x40 +fn_80322BB8 = .text:0x80322BB8; // type:function size:0x74 +fn_80322C2C = .text:0x80322C2C; // type:function size:0x6C +fn_80322C98 = .text:0x80322C98; // type:function size:0x4 +fn_80322C9C = .text:0x80322C9C; // type:function size:0x40 +fn_80322CDC = .text:0x80322CDC; // type:function size:0xA0 +DataVarName__FPC8DataNode = .text:0x80322D7C; // type:function size:0xB8 +fn_80322E34 = .text:0x80322E34; // type:function size:0x4 +AddToBuffer__8DataNodeFv = .text:0x80322E38; // type:function size:0x64 +Evaluate__8DataNodeCFv = .text:0x80322E9C; // type:function size:0x8C +Int__8DataNodeCFPC9DataArray = .text:0x80322F28; // type:function size:0x24 +LiteralInt__8DataNodeCFPC9DataArray = .text:0x80322F4C; // type:function size:0x8 +Sym__8DataNodeCFPC9DataArray = .text:0x80322F54; // type:function size:0x24 +LiteralSym__8DataNodeCFPC9DataArray = .text:0x80322F78; // type:function size:0x8 +ForceSym__8DataNodeCFPC9DataArray = .text:0x80322F80; // type:function size:0x48 +Str__8DataNodeCFPC9DataArray = .text:0x80322FC8; // type:function size:0x3C +LiteralStr__8DataNodeCFPC9DataArray = .text:0x80323004; // type:function size:0x20 +Float__8DataNodeCFPC9DataArray = .text:0x80323024; // type:function size:0x58 +LiteralFloat__8DataNodeCFPC9DataArray = .text:0x8032307C; // type:function size:0x44 +Func__8DataNodeCFPC9DataArray = .text:0x803230C0; // type:function size:0x8 +GetObj__8DataNodeCFPC9DataArray = .text:0x803230C8; // type:function size:0x74 +Array__8DataNodeCFPC9DataArray = .text:0x8032313C; // type:function size:0x24 +LiteralArray__8DataNodeCFPC9DataArray = .text:0x80323160; // type:function size:0x8 +Command__8DataNodeCFPC9DataArray = .text:0x80323168; // type:function size:0x8 +Var__8DataNodeCFPC9DataArray = .text:0x80323170; // type:function size:0x8 +__ct__8DataNodeFRC8DataNode = .text:0x80323178; // type:function size:0x54 +__ct__8DataNodeFPCc = .text:0x803231CC; // type:function size:0x80 +__ct__8DataNodeFRC6String = .text:0x8032324C; // type:function size:0x88 +__ct__8DataNodeFRC12DataArrayPtr = .text:0x803232D4; // type:function size:0x44 +__ct__8DataNodeFP9DataArray8DataType = .text:0x80323318; // type:function size:0x48 +__eq__8DataNodeCFRC8DataNode = .text:0x80323360; // type:function size:0x1A8 +__ne__8DataNodeCFRC8DataNode = .text:0x80323508; // type:function size:0x28 +NotNull__8DataNodeCFv = .text:0x80323530; // type:function size:0xA4 +__as__8DataNodeFRC8DataNode = .text:0x803235D4; // type:function size:0x78 +Print__8DataNodeCFR10TextStreamb = .text:0x8032364C; // type:function size:0x344 +__ls__FR10TextStreamPCQ23Hmx6Object = .text:0x80323990; // type:function size:0x58 +HasSpace__FPCc = .text:0x803239E8; // type:function size:0x30 +Save__8DataNodeCFR9BinStream = .text:0x80323A18; // type:function size:0x14C +Load__8DataNodeFR9BinStream = .text:0x80323B64; // type:function size:0x204 +fn_80323D68 = .text:0x80323D68; // type:function size:0x388 +__sinit_\datanode_cpp = .text:0x803240F0; // type:function size:0x7C scope:local +fn_8032416C = .text:0x8032416C; // type:function size:0x1C +__ct__Q211stlpmtx_std126map<6Symbol,8DataNode,Q211stlpmtx_std13less<6Symbol>,Q211stlpmtx_std55StlNodeAlloc>>Fv = .text:0x80324188; // type:function size:0x44 +fn_803241CC = .text:0x803241CC; // type:function size:0x3C +fn_80324208 = .text:0x80324208; // type:function size:0x70 +DataFactory__FRC8FilePath9LoaderPos = .text:0x80324278; // type:function size:0x54 +DataInit__Fv = .text:0x803242CC; // type:function size:0x6C +TextFileInit__Fv = .text:0x80324338; // type:function size:0x34 +NewObject__8TextFileFv = .text:0x8032436C; // type:function size:0x30 +__ct__8TextFileFv = .text:0x8032439C; // type:function size:0x54 +StaticClassName__8TextFileFv = .text:0x803243F0; // type:function size:0x4C +DataTerminate__Fv = .text:0x8032443C; // type:function size:0xD8 +fn_80324514 = .text:0x80324514; // type:function size:0x8 +fn_8032451C = .text:0x8032451C; // type:function size:0xA4 +DataGetMacro__F6Symbol = .text:0x803245C0; // type:function size:0x78 +fn_80324638 = .text:0x80324638; // type:function size:0x4 +fn_8032463C = .text:0x8032463C; // type:function size:0x40 +DataMergeTags__FP9DataArrayP9DataArray = .text:0x8032467C; // type:function size:0x120 +DataReplaceTags__FP9DataArrayP9DataArray = .text:0x8032479C; // type:function size:0x178 +DataSetThis__FPQ23Hmx6Object = .text:0x80324914; // type:function size:0xD0 +DataThis__Fv = .text:0x803249E4; // type:function size:0xC +DataPushVar__FP8DataNode = .text:0x803249F0; // type:function size:0x24 +DataPopVar__Fv = .text:0x80324A14; // type:function size:0x6C +fn_80324A80 = .text:0x80324A80; // type:function size:0x7C +fn_80324AFC = .text:0x80324AFC; // type:function size:0x1C +__ct__8VarStackFv = .text:0x80324B18; // type:function size:0x34 +yylex = .text:0x80324B4C; // type:function size:0x428 +yy_get_next_buffer = .text:0x80324F74; // type:function size:0x22C +yy_get_previous_state = .text:0x803251A0; // type:function size:0xE8 +yy_try_NUL_trans = .text:0x80325288; // type:function size:0x98 +yyrestart = .text:0x80325320; // type:function size:0x68 +yy_load_buffer_state = .text:0x80325388; // type:function size:0x34 +yy_create_buffer = .text:0x803253BC; // type:function size:0x98 +yy_init_buffer = .text:0x80325454; // type:function size:0x4C +yy_flush_buffer = .text:0x803254A0; // type:function size:0x4C +yy_fatal_error = .text:0x803254EC; // type:function size:0x48 +yy_flex_alloc = .text:0x80325534; // type:function size:0x4 +yy_flex_realloc = .text:0x80325538; // type:function size:0x4 +fn_8032553C = .text:0x8032553C; // type:function size:0x68 +fn_803255A4 = .text:0x803255A4; // type:function size:0x48 +Reserve__9ObjectDirFii = .text:0x803255EC; // type:function size:0x64 +SyncObjects__9ObjectDirFv = .text:0x80325650; // type:function size:0x50 +SetSubDir__9ObjectDirFv = .text:0x803256A0; // type:function size:0x6C +fn_8032570C = .text:0x8032570C; // type:function size:0x68 +fn_80325774 = .text:0x80325774; // type:function size:0x64 +fn_803257D8 = .text:0x803257D8; // type:function size:0x3C +fn_80325814 = .text:0x80325814; // type:function size:0x58 +Save__9ObjectDirFR9BinStream = .text:0x8032586C; // type:function size:0x4 +fn_80325870 = .text:0x80325870; // type:function size:0x40 +fn_803258B0 = .text:0x803258B0; // type:function size:0x58 +fn_80325908 = .text:0x80325908; // type:function size:0x80 +fn_80325988 = .text:0x80325988; // type:function size:0x80 +fn_80325A08 = .text:0x80325A08; // type:function size:0x58 +fn_80325A60 = .text:0x80325A60; // type:function size:0x54 +fn_80325AB4 = .text:0x80325AB4; // type:function size:0x5C +fn_80325B10 = .text:0x80325B10; // type:function size:0x6C +fn_80325B7C = .text:0x80325B7C; // type:function size:0x28 +fn_80325BA4 = .text:0x80325BA4; // type:function size:0x8 +fn_80325BAC = .text:0x80325BAC; // type:function size:0x3C +fn_80325BE8 = .text:0x80325BE8; // type:function size:0x58 +fn_80325C40 = .text:0x80325C40; // type:function size:0x80 +fn_80325CC0 = .text:0x80325CC0; // type:function size:0x80 +fn_80325D40 = .text:0x80325D40; // type:function size:0x54 +fn_80325D94 = .text:0x80325D94; // type:function size:0x5C +fn_80325DF0 = .text:0x80325DF0; // type:function size:0x6C +fn_80325E5C = .text:0x80325E5C; // type:function size:0x28 +fn_80325E84 = .text:0x80325E84; // type:function size:0x8 +fn_80325E8C = .text:0x80325E8C; // type:function size:0x68 +fn_80325EF4 = .text:0x80325EF4; // type:function size:0x8 +fn_80325EFC = .text:0x80325EFC; // type:function size:0x3C +fn_80325F38 = .text:0x80325F38; // type:function size:0x4 +fn_80325F3C = .text:0x80325F3C; // type:function size:0x50 +fn_80325F8C = .text:0x80325F8C; // type:function size:0x58 +fn_80325FE4 = .text:0x80325FE4; // type:function size:0x30 +fn_80326014 = .text:0x80326014; // type:function size:0x30 +fn_80326044 = .text:0x80326044; // type:function size:0x40 +fn_80326084 = .text:0x80326084; // type:function size:0x8 +fn_8032608C = .text:0x8032608C; // type:function size:0x84 +fn_80326110 = .text:0x80326110; // type:function size:0x4 +fn_80326114 = .text:0x80326114; // type:function size:0x88 +fn_8032619C = .text:0x8032619C; // type:function size:0x2C +fn_803261C8 = .text:0x803261C8; // type:function size:0x10 +fn_803261D8 = .text:0x803261D8; // type:function size:0x6C +fn_80326244 = .text:0x80326244; // type:function size:0x30 +fn_80326274 = .text:0x80326274; // type:function size:0x30 +fn_803262A4 = .text:0x803262A4; // type:function size:0x40 +Export__9ObjectDirFP9DataArrayb = .text:0x803262E4; // type:function size:0x10 +fn_803262F4 = .text:0x803262F4; // type:function size:0x4 +fn_803262F8 = .text:0x803262F8; // type:function size:0x88 +fn_80326380 = .text:0x80326380; // type:function size:0x2C +fn_803263AC = .text:0x803263AC; // type:function size:0x10 +fn_803263BC = .text:0x803263BC; // type:function size:0x58 +fn_80326414 = .text:0x80326414; // type:function size:0x38 +fn_8032644C = .text:0x8032644C; // type:function size:0x84 +PostLoadInlined__9ObjectDirFv = .text:0x803264D0; // type:function size:0x108 +fn_803265D8 = .text:0x803265D8; // type:function size:0x4 +fn_803265DC = .text:0x803265DC; // type:function size:0x3C +fn_80326618 = .text:0x80326618; // type:function size:0x2C +fn_80326644 = .text:0x80326644; // type:function size:0x24 +Load__9ObjectDirFR9BinStream = .text:0x80326668; // type:function size:0xA4 +fn_8032670C = .text:0x8032670C; // type:function size:0x28 +fn_80326734 = .text:0x80326734; // type:function size:0x48 +fn_8032677C = .text:0x8032677C; // type:function size:0x44 +PreLoad__9ObjectDirFR9BinStream = .text:0x803267C0; // type:function size:0xA0C +fn_803271CC = .text:0x803271CC; // type:function size:0x80 +fn_8032724C = .text:0x8032724C; // type:function size:0x4 +fn_80327250 = .text:0x80327250; // type:function size:0x90 +fn_803272E0 = .text:0x803272E0; // type:function size:0x4 +fn_803272E4 = .text:0x803272E4; // type:function size:0x40 +fn_80327324 = .text:0x80327324; // type:function size:0x8C +fn_803273B0 = .text:0x803273B0; // type:function size:0x8 +fn_803273B8 = .text:0x803273B8; // type:function size:0x2C +fn_803273E4 = .text:0x803273E4; // type:function size:0x58 +fn_8032743C = .text:0x8032743C; // type:function size:0x28 +fn_80327464 = .text:0x80327464; // type:function size:0x68 +fn_803274CC = .text:0x803274CC; // type:function size:0x30 +fn_803274FC = .text:0x803274FC; // type:function size:0x8C +fn_80327588 = .text:0x80327588; // type:function size:0x4 +fn_8032758C = .text:0x8032758C; // type:function size:0x90 +fn_8032761C = .text:0x8032761C; // type:function size:0x4 +fn_80327620 = .text:0x80327620; // type:function size:0x40 +fn_80327660 = .text:0x80327660; // type:function size:0x8C +fn_803276EC = .text:0x803276EC; // type:function size:0x8 +fn_803276F4 = .text:0x803276F4; // type:function size:0x2C +fn_80327720 = .text:0x80327720; // type:function size:0x58 +fn_80327778 = .text:0x80327778; // type:function size:0x28 +fn_803277A0 = .text:0x803277A0; // type:function size:0x68 +fn_80327808 = .text:0x80327808; // type:function size:0xA4 +fn_803278AC = .text:0x803278AC; // type:function size:0x48 +fn_803278F4 = .text:0x803278F4; // type:function size:0x58 +fn_8032794C = .text:0x8032794C; // type:function size:0x4 +fn_80327950 = .text:0x80327950; // type:function size:0x88 +fn_803279D8 = .text:0x803279D8; // type:function size:0x2C +fn_80327A04 = .text:0x80327A04; // type:function size:0x10 +fn_80327A14 = .text:0x80327A14; // type:function size:0x44 +fn_80327A58 = .text:0x80327A58; // type:function size:0x68 +fn_80327AC0 = .text:0x80327AC0; // type:function size:0x44 +fn_80327B04 = .text:0x80327B04; // type:function size:0x4 +fn_80327B08 = .text:0x80327B08; // type:function size:0x90 +fn_80327B98 = .text:0x80327B98; // type:function size:0x4 +fn_80327B9C = .text:0x80327B9C; // type:function size:0x40 +fn_80327BDC = .text:0x80327BDC; // type:function size:0x8C +fn_80327C68 = .text:0x80327C68; // type:function size:0x8 +fn_80327C70 = .text:0x80327C70; // type:function size:0x2C +fn_80327C9C = .text:0x80327C9C; // type:function size:0x58 +fn_80327CF4 = .text:0x80327CF4; // type:function size:0x28 +fn_80327D1C = .text:0x80327D1C; // type:function size:0x68 +fn_80327D84 = .text:0x80327D84; // type:function size:0x4 +fn_80327D88 = .text:0x80327D88; // type:function size:0x4 +fn_80327D8C = .text:0x80327D8C; // type:function size:0x3C +fn_80327DC8 = .text:0x80327DC8; // type:function size:0x58 +fn_80327E20 = .text:0x80327E20; // type:function size:0x80 +fn_80327EA0 = .text:0x80327EA0; // type:function size:0x80 +fn_80327F20 = .text:0x80327F20; // type:function size:0x58 +fn_80327F78 = .text:0x80327F78; // type:function size:0x54 +fn_80327FCC = .text:0x80327FCC; // type:function size:0x5C +fn_80328028 = .text:0x80328028; // type:function size:0x6C +fn_80328094 = .text:0x80328094; // type:function size:0x28 +fn_803280BC = .text:0x803280BC; // type:function size:0x8 +fn_803280C4 = .text:0x803280C4; // type:function size:0x3C +fn_80328100 = .text:0x80328100; // type:function size:0x30 +fn_80328130 = .text:0x80328130; // type:function size:0x30 +fn_80328160 = .text:0x80328160; // type:function size:0x40 +fn_803281A0 = .text:0x803281A0; // type:function size:0x50 +fn_803281F0 = .text:0x803281F0; // type:function size:0x8 +fn_803281F8 = .text:0x803281F8; // type:function size:0x58 +fn_80328250 = .text:0x80328250; // type:function size:0x80 +fn_803282D0 = .text:0x803282D0; // type:function size:0x80 +fn_80328350 = .text:0x80328350; // type:function size:0x58 +fn_803283A8 = .text:0x803283A8; // type:function size:0x54 +fn_803283FC = .text:0x803283FC; // type:function size:0x5C +fn_80328458 = .text:0x80328458; // type:function size:0x6C +fn_803284C4 = .text:0x803284C4; // type:function size:0x28 +fn_803284EC = .text:0x803284EC; // type:function size:0x8 +fn_803284F4 = .text:0x803284F4; // type:function size:0x3C +fn_80328530 = .text:0x80328530; // type:function size:0x30 +fn_80328560 = .text:0x80328560; // type:function size:0x30 +fn_80328590 = .text:0x80328590; // type:function size:0x40 +PostLoad__9ObjectDirFR9BinStream = .text:0x803285D0; // type:function size:0x4D0 +fn_80328AA0 = .text:0x80328AA0; // type:function size:0x78 +fn_80328B18 = .text:0x80328B18; // type:function size:0x4 +fn_80328B1C = .text:0x80328B1C; // type:function size:0x3C +fn_80328B58 = .text:0x80328B58; // type:function size:0x2C +fn_80328B84 = .text:0x80328B84; // type:function size:0x8 +fn_80328B8C = .text:0x80328B8C; // type:function size:0x24 +fn_80328BB0 = .text:0x80328BB0; // type:function size:0x58 +SetProxyFile__9ObjectDirFRC8FilePathb = .text:0x80328C08; // type:function size:0xC8 +Copy__9ObjectDirFPCQ23Hmx6ObjectQ33Hmx6Object8CopyType = .text:0x80328CD0; // type:function size:0x108 +fn_80328DD8 = .text:0x80328DD8; // type:function size:0x30 +FindObject__9ObjectDirFPCcb = .text:0x80328E08; // type:function size:0x158 +fn_80328F60 = .text:0x80328F60; // type:function size:0x18 +fn_80328F78 = .text:0x80328F78; // type:function size:0xB8 +fn_80329030 = .text:0x80329030; // type:function size:0x50 +fn_80329080 = .text:0x80329080; // type:function size:0xAC +fn_8032912C = .text:0x8032912C; // type:function size:0x78 +fn_803291A4 = .text:0x803291A4; // type:function size:0xA4 +__ct__9ObjectDirFv = .text:0x80329248; // type:function size:0x124 +fn_8032936C = .text:0x8032936C; // type:function size:0xC +fn_80329378 = .text:0x80329378; // type:function size:0xC8 +fn_80329440 = .text:0x80329440; // type:function size:0x6C +fn_803294AC = .text:0x803294AC; // type:function size:0x4 +fn_803294B0 = .text:0x803294B0; // type:function size:0x3C +fn_803294EC = .text:0x803294EC; // type:function size:0x70 +__dt__9ObjectDirFv = .text:0x8032955C; // type:function size:0x1C0 +FindEntry__9ObjectDirFPCcb = .text:0x8032971C; // type:function size:0xA8 +fn_803297C4 = .text:0x803297C4; // type:function size:0xAC +fn_80329870 = .text:0x80329870; // type:function size:0x44 +fn_803298B4 = .text:0x803298B4; // type:function size:0x24 +fn_803298D8 = .text:0x803298D8; // type:function size:0x90 +fn_80329968 = .text:0x80329968; // type:function size:0x2C +fn_80329994 = .text:0x80329994; // type:function size:0x84 +fn_80329A18 = .text:0x80329A18; // type:function size:0x2C +fn_80329A44 = .text:0x80329A44; // type:function size:0x18 +OnLoadObjects__FP9DataArray = .text:0x80329A5C; // type:function size:0x74 +OnPathName__FP9DataArray = .text:0x80329AD0; // type:function size:0x44 +OnReserveToFit__FP9DataArray = .text:0x80329B14; // type:function size:0x78 +OnInitObject__FP9DataArray = .text:0x80329B8C; // type:function size:0x44 +fn_80329BD0 = .text:0x80329BD0; // type:function size:0x4 +fn_80329BD4 = .text:0x80329BD4; // type:function size:0x2C +fn_80329C00 = .text:0x80329C00; // type:function size:0xFC +Init__9ObjectDirFv = .text:0x80329CFC; // type:function size:0x1D0 +New__9DirLoaderFRC8FilePath9LoaderPos = .text:0x80329ECC; // type:function size:0x68 +fn_80329F34 = .text:0x80329F34; // type:function size:0x34 +fn_80329F68 = .text:0x80329F68; // type:function size:0x40 +fn_80329FA8 = .text:0x80329FA8; // type:function size:0x34 +fn_80329FDC = .text:0x80329FDC; // type:function size:0x44 +StaticClassName__9ObjectDirFv = .text:0x8032A020; // type:function size:0x4C +fn_8032A06C = .text:0x8032A06C; // type:function size:0x34 +NewObject__Q23Hmx6ObjectFv = .text:0x8032A0A0; // type:function size:0x30 +fn_8032A0D0 = .text:0x8032A0D0; // type:function size:0x4 +fn_8032A0D4 = .text:0x8032A0D4; // type:function size:0x34 +fn_8032A108 = .text:0x8032A108; // type:function size:0x4 +Iterate__9ObjectDirFP9DataArrayb = .text:0x8032A10C; // type:function size:0x214 +Type__Q23Hmx6ObjectCFv = .text:0x8032A320; // type:function size:0x40 +LoadSubDir__9ObjectDirFiRC8FilePathR9BinStream = .text:0x8032A360; // type:function size:0x1E4 +fn_8032A544 = .text:0x8032A544; // type:function size:0xB8 +HasDirPtrs__9ObjectDirCFv = .text:0x8032A5FC; // type:function size:0xA0 +fn_8032A69C = .text:0x8032A69C; // type:function size:0x28 +fn_8032A6C4 = .text:0x8032A6C4; // type:function size:0x38 +fn_8032A6FC = .text:0x8032A6FC; // type:function size:0x3C +fn_8032A738 = .text:0x8032A738; // type:function size:0x3C +Handle__9ObjectDirFP9DataArrayb = .text:0x8032A774; // type:function size:0x4B0 +fn_8032AC24 = .text:0x8032AC24; // type:function size:0x8 +fn_8032AC2C = .text:0x8032AC2C; // type:function size:0xB8 +OnFind__9ObjectDirFP9DataArray = .text:0x8032ACE4; // type:function size:0x80 +fn_8032AD64 = .text:0x8032AD64; // type:function size:0x1F0 +fn_8032AF54 = .text:0x8032AF54; // type:function size:0x68 +fn_8032AFBC = .text:0x8032AFBC; // type:function size:0xB0 +SyncProperty__9ObjectDirFR8DataNodeP9DataArrayi6PropOp = .text:0x8032B06C; // type:function size:0x22C +ProxyFile__9ObjectDirFv = .text:0x8032B298; // type:function size:0x8 +fn_8032B2A0 = .text:0x8032B2A0; // type:function size:0x124 +fn_8032B3C4 = .text:0x8032B3C4; // type:function size:0xCC +fn_8032B490 = .text:0x8032B490; // type:function size:0x60 +fn_8032B4F0 = .text:0x8032B4F0; // type:function size:0x5C +fn_8032B54C = .text:0x8032B54C; // type:function size:0x54 +fn_8032B5A0 = .text:0x8032B5A0; // type:function size:0x5C +fn_8032B5FC = .text:0x8032B5FC; // type:function size:0x6C +fn_8032B668 = .text:0x8032B668; // type:function size:0x28 +fn_8032B690 = .text:0x8032B690; // type:function size:0x8 +fn_8032B698 = .text:0x8032B698; // type:function size:0x3C +fn_8032B6D4 = .text:0x8032B6D4; // type:function size:0x60 +fn_8032B734 = .text:0x8032B734; // type:function size:0x5C +fn_8032B790 = .text:0x8032B790; // type:function size:0xC +fn_8032B79C = .text:0x8032B79C; // type:function size:0x114 +fn_8032B8B0 = .text:0x8032B8B0; // type:function size:0x5C +fn_8032B90C = .text:0x8032B90C; // type:function size:0x54 +fn_8032B960 = .text:0x8032B960; // type:function size:0x5C +fn_8032B9BC = .text:0x8032B9BC; // type:function size:0x68 +fn_8032BA24 = .text:0x8032BA24; // type:function size:0x58 +fn_8032BA7C = .text:0x8032BA7C; // type:function size:0xCC +fn_8032BB48 = .text:0x8032BB48; // type:function size:0x5C +fn_8032BBA4 = .text:0x8032BBA4; // type:function size:0x5C +fn_8032BC00 = .text:0x8032BC00; // type:function size:0x60 +fn_8032BC60 = .text:0x8032BC60; // type:function size:0x5C +fn_8032BCBC = .text:0x8032BCBC; // type:function size:0x160 +fn_8032BE1C = .text:0x8032BE1C; // type:function size:0x28 +fn_8032BE44 = .text:0x8032BE44; // type:function size:0x60 +fn_8032BEA4 = .text:0x8032BEA4; // type:function size:0x114 +fn_8032BFB8 = .text:0x8032BFB8; // type:function size:0x5C +fn_8032C014 = .text:0x8032C014; // type:function size:0x54 +fn_8032C068 = .text:0x8032C068; // type:function size:0x5C +fn_8032C0C4 = .text:0x8032C0C4; // type:function size:0x114 +fn_8032C1D8 = .text:0x8032C1D8; // type:function size:0x60 +fn_8032C238 = .text:0x8032C238; // type:function size:0x5C +fn_8032C294 = .text:0x8032C294; // type:function size:0x54 +fn_8032C2E8 = .text:0x8032C2E8; // type:function size:0x5C +fn_8032C344 = .text:0x8032C344; // type:function size:0x5C +fn_8032C3A0 = .text:0x8032C3A0; // type:function size:0x68 +fn_8032C408 = .text:0x8032C408; // type:function size:0x2C +fn_8032C434 = .text:0x8032C434; // type:function size:0x68 +fn_8032C49C = .text:0x8032C49C; // type:function size:0x2C +Resize__35KeylessHashFiPQ29ObjectDir5Entry = .text:0x8032C4C8; // type:function size:0x15C +Insert__35KeylessHashFRCQ29ObjectDir5Entry = .text:0x8032C624; // type:function size:0x18C +fn_8032C7B0 = .text:0x8032C7B0; // type:function size:0x2C +fn_8032C7DC = .text:0x8032C7DC; // type:function size:0x24 +Find__35KeylessHashFRCPCc = .text:0x8032C800; // type:function size:0xD8 +fn_8032C8D8 = .text:0x8032C8D8; // type:function size:0x70 +fn_8032C948 = .text:0x8032C948; // type:function size:0x10C +SetType__9ObjectDirF6Symbol = .text:0x8032CA54; // type:function size:0x134 +ClassName__9ObjectDirCFv = .text:0x8032CB88; // type:function size:0x4 +fn_8032CB8C = .text:0x8032CB8C; // type:function size:0x10 +fn_8032CB9C = .text:0x8032CB9C; // type:function size:0x198 +fn_8032CD34 = .text:0x8032CD34; // type:function size:0x54 +fn_8032CD88 = .text:0x8032CD88; // type:function size:0x28 +fn_8032CDB0 = .text:0x8032CDB0; // type:function size:0x68 +fn_8032CE18 = .text:0x8032CE18; // type:function size:0x18C +fn_8032CFA4 = .text:0x8032CFA4; // type:function size:0x5C +fn_8032D000 = .text:0x8032D000; // type:function size:0x10 +fn_8032D010 = .text:0x8032D010; // type:function size:0x54 +fn_8032D064 = .text:0x8032D064; // type:function size:0x28 +fn_8032D08C = .text:0x8032D08C; // type:function size:0x68 +fn_8032D0F4 = .text:0x8032D0F4; // type:function size:0x5C +fn_8032D150 = .text:0x8032D150; // type:function size:0x38 +fn_8032D188 = .text:0x8032D188; // type:function size:0x114 +fn_8032D29C = .text:0x8032D29C; // type:function size:0x5C +fn_8032D2F8 = .text:0x8032D2F8; // type:function size:0x5C +fn_8032D354 = .text:0x8032D354; // type:function size:0x54 +fn_8032D3A8 = .text:0x8032D3A8; // type:function size:0x198 +fn_8032D540 = .text:0x8032D540; // type:function size:0x5C +fn_8032D59C = .text:0x8032D59C; // type:function size:0x10 +fn_8032D5AC = .text:0x8032D5AC; // type:function size:0x54 +fn_8032D600 = .text:0x8032D600; // type:function size:0x28 +fn_8032D628 = .text:0x8032D628; // type:function size:0x68 +fn_8032D690 = .text:0x8032D690; // type:function size:0x5C +fn_8032D6EC = .text:0x8032D6EC; // type:function size:0x114 +fn_8032D800 = .text:0x8032D800; // type:function size:0x5C +fn_8032D85C = .text:0x8032D85C; // type:function size:0x5C +fn_8032D8B8 = .text:0x8032D8B8; // type:function size:0x54 +fn_8032D90C = .text:0x8032D90C; // type:function size:0x58 +fn_8032D964 = .text:0x8032D964; // type:function size:0x1C +fn_8032D980 = .text:0x8032D980; // type:function size:0x14 +fn_8032D994 = .text:0x8032D994; // type:function size:0x14 +fn_8032D9A8 = .text:0x8032D9A8; // type:function size:0x14 +fn_8032D9BC = .text:0x8032D9BC; // type:function size:0x14 +fn_8032D9D0 = .text:0x8032D9D0; // type:function size:0x14 +fn_8032D9E4 = .text:0x8032D9E4; // type:function size:0x14 +fn_8032D9F8 = .text:0x8032D9F8; // type:function size:0x14 +fn_8032DA0C = .text:0x8032DA0C; // type:function size:0x14 +fn_8032DA20 = .text:0x8032DA20; // type:function size:0x14 +fn_8032DA34 = .text:0x8032DA34; // type:function size:0x14 +fn_8032DA48 = .text:0x8032DA48; // type:function size:0x14 +fn_8032DA5C = .text:0x8032DA5C; // type:function size:0x14 +fn_8032DA70 = .text:0x8032DA70; // type:function size:0x5C +fn_8032DACC = .text:0x8032DACC; // type:function size:0x30 +fn_8032DAFC = .text:0x8032DAFC; // type:function size:0x228 +fn_8032DD24 = .text:0x8032DD24; // type:function size:0x104 +fn_8032DE28 = .text:0x8032DE28; // type:function size:0x58 +fn_8032DE80 = .text:0x8032DE80; // type:function size:0x8 +fn_8032DE88 = .text:0x8032DE88; // type:function size:0x4 +fn_8032DE8C = .text:0x8032DE8C; // type:function size:0x40 +fn_8032DECC = .text:0x8032DECC; // type:function size:0x80 +fn_8032DF4C = .text:0x8032DF4C; // type:function size:0x50 +fn_8032DF9C = .text:0x8032DF9C; // type:function size:0x8 +fn_8032DFA4 = .text:0x8032DFA4; // type:function size:0x18 +fn_8032DFBC = .text:0x8032DFBC; // type:function size:0xE8 +fn_8032E0A4 = .text:0x8032E0A4; // type:function size:0x30 +fn_8032E0D4 = .text:0x8032E0D4; // type:function size:0x30 +fn_8032E104 = .text:0x8032E104; // type:function size:0xDC +fn_8032E1E0 = .text:0x8032E1E0; // type:function size:0x28 +fn_8032E208 = .text:0x8032E208; // type:function size:0x38 +fn_8032E240 = .text:0x8032E240; // type:function size:0x40 +fn_8032E280 = .text:0x8032E280; // type:function size:0x30 +fn_8032E2B0 = .text:0x8032E2B0; // type:function size:0x30 +fn_8032E2E0 = .text:0x8032E2E0; // type:function size:0x34 +fn_8032E314 = .text:0x8032E314; // type:function size:0x40 +fn_8032E354 = .text:0x8032E354; // type:function size:0x148 +GetDir__9DirLoaderFv = .text:0x8032E49C; // type:function size:0x44 +LoadObjects__9DirLoaderFRC8FilePathPQ29DirLoader8CallbackP9BinStream = .text:0x8032E4E0; // type:function size:0x78 +fn_8032E558 = .text:0x8032E558; // type:function size:0xC4 +fn_8032E61C = .text:0x8032E61C; // type:function size:0x3C +fn_8032E658 = .text:0x8032E658; // type:function size:0x3C +fn_8032E694 = .text:0x8032E694; // type:function size:0xAC +fn_8032E740 = .text:0x8032E740; // type:function size:0x58 +fn_8032E798 = .text:0x8032E798; // type:function size:0x6C +fn_8032E804 = .text:0x8032E804; // type:function size:0x9C +fn_8032E8A0 = .text:0x8032E8A0; // type:function size:0x8 +fn_8032E8A8 = .text:0x8032E8A8; // type:function size:0x40 +CachedPath__9DirLoaderFPCcb = .text:0x8032E8E8; // type:function size:0xB0 +MakeString__FPCcPCcPCc6Symbol_PCc = .text:0x8032E998; // type:function size:0x70 +SaveObjects__9DirLoaderFPCcP9ObjectDir = .text:0x8032EA08; // type:function size:0x8 +__ct__9DirLoaderFRC8FilePath9LoaderPosPQ29DirLoader8CallbackP9BinStreamP9ObjectDir = .text:0x8032EA10; // type:function size:0x1B0 +fn_8032EBC0 = .text:0x8032EBC0; // type:function size:0x68 +fn_8032EC28 = .text:0x8032EC28; // type:function size:0x34 +fn_8032EC5C = .text:0x8032EC5C; // type:function size:0x134 +fn_8032ED90 = .text:0x8032ED90; // type:function size:0x84 +fn_8032EE14 = .text:0x8032EE14; // type:function size:0x38C +fn_8032F1A0 = .text:0x8032F1A0; // type:function size:0x23C +fn_8032F3DC = .text:0x8032F3DC; // type:function size:0x1FC +fn_8032F5D8 = .text:0x8032F5D8; // type:function size:0x78 +fn_8032F650 = .text:0x8032F650; // type:function size:0x5C +fn_8032F6AC = .text:0x8032F6AC; // type:function size:0x330 +fn_8032F9DC = .text:0x8032F9DC; // type:function size:0x8 +fn_8032F9E4 = .text:0x8032F9E4; // type:function size:0x8 +fn_8032F9EC = .text:0x8032F9EC; // type:function size:0x1CC +fn_8032FBB8 = .text:0x8032FBB8; // type:function size:0x4C +fn_8032FC04 = .text:0x8032FC04; // type:function size:0x78 +fn_8032FC7C = .text:0x8032FC7C; // type:function size:0xEC +fn_8032FD68 = .text:0x8032FD68; // type:function size:0x98 +fn_8032FE00 = .text:0x8032FE00; // type:function size:0x1E0 +fn_8032FFE0 = .text:0x8032FFE0; // type:function size:0x24C +fn_8033022C = .text:0x8033022C; // type:function size:0x40 +fn_8033026C = .text:0x8033026C; // type:function size:0x4 +fn_80330270 = .text:0x80330270; // type:function size:0x2C +fn_8033029C = .text:0x8033029C; // type:function size:0x218 +__dt__9DirLoaderFv = .text:0x803304B4; // type:function size:0x168 +fn_8033061C = .text:0x8033061C; // type:function size:0x10 +fn_8033062C = .text:0x8033062C; // type:function size:0x3B8 +fn_803309E4 = .text:0x803309E4; // type:function size:0x6C +fn_80330A50 = .text:0x80330A50; // type:function size:0x2C +fn_80330A7C = .text:0x80330A7C; // type:function size:0x15C +fn_80330BD8 = .text:0x80330BD8; // type:function size:0x44 +fn_80330C1C = .text:0x80330C1C; // type:function size:0x108 +fn_80330D24 = .text:0x80330D24; // type:function size:0x5C +fn_80330D80 = .text:0x80330D80; // type:function size:0x10 +fn_80330D90 = .text:0x80330D90; // type:function size:0x64 +fn_80330DF4 = .text:0x80330DF4; // type:function size:0x8 +fn_80330DFC = .text:0x80330DFC; // type:function size:0x58 +fn_80330E54 = .text:0x80330E54; // type:function size:0x60 +fn_80330EB4 = .text:0x80330EB4; // type:function size:0x58 +fn_80330F0C = .text:0x80330F0C; // type:function size:0x58 +fn_80330F64 = .text:0x80330F64; // type:function size:0x44 +fn_80330FA8 = .text:0x80330FA8; // type:function size:0x3C +fn_80330FE4 = .text:0x80330FE4; // type:function size:0x70 +fn_80331054 = .text:0x80331054; // type:function size:0x8 +fn_8033105C = .text:0x8033105C; // type:function size:0x8 +fn_80331064 = .text:0x80331064; // type:function size:0x8 +fn_8033106C = .text:0x8033106C; // type:function size:0x154 +fn_803311C0 = .text:0x803311C0; // type:function size:0x58 +fn_80331218 = .text:0x80331218; // type:function size:0x80 +fn_80331298 = .text:0x80331298; // type:function size:0x80 +fn_80331318 = .text:0x80331318; // type:function size:0x58 +fn_80331370 = .text:0x80331370; // type:function size:0x54 +fn_803313C4 = .text:0x803313C4; // type:function size:0x5C +fn_80331420 = .text:0x80331420; // type:function size:0x6C +fn_8033148C = .text:0x8033148C; // type:function size:0x28 +fn_803314B4 = .text:0x803314B4; // type:function size:0x8 +fn_803314BC = .text:0x803314BC; // type:function size:0x3C +fn_803314F8 = .text:0x803314F8; // type:function size:0x4 +fn_803314FC = .text:0x803314FC; // type:function size:0x88 +fn_80331584 = .text:0x80331584; // type:function size:0x2C +fn_803315B0 = .text:0x803315B0; // type:function size:0x10 +fn_803315C0 = .text:0x803315C0; // type:function size:0x4 +fn_803315C4 = .text:0x803315C4; // type:function size:0x30 +fn_803315F4 = .text:0x803315F4; // type:function size:0x30 +fn_80331624 = .text:0x80331624; // type:function size:0x40 +fn_80331664 = .text:0x80331664; // type:function size:0x90 +fn_803316F4 = .text:0x803316F4; // type:function size:0x8 +fn_803316FC = .text:0x803316FC; // type:function size:0xFC +fn_803317F8 = .text:0x803317F8; // type:function size:0x4 +fn_803317FC = .text:0x803317FC; // type:function size:0x3C +fn_80331838 = .text:0x80331838; // type:function size:0x2C +fn_80331864 = .text:0x80331864; // type:function size:0x24 +fn_80331888 = .text:0x80331888; // type:function size:0x34 +fn_803318BC = .text:0x803318BC; // type:function size:0xCC +fn_80331988 = .text:0x80331988; // type:function size:0x5C +fn_803319E4 = .text:0x803319E4; // type:function size:0x5C +fn_80331A40 = .text:0x80331A40; // type:function size:0x60 +fn_80331AA0 = .text:0x80331AA0; // type:function size:0x5C +fn_80331AFC = .text:0x80331AFC; // type:function size:0x114 +fn_80331C10 = .text:0x80331C10; // type:function size:0x5C +fn_80331C6C = .text:0x80331C6C; // type:function size:0x54 +fn_80331CC0 = .text:0x80331CC0; // type:function size:0x5C +fn_80331D1C = .text:0x80331D1C; // type:function size:0xC +fn_80331D28 = .text:0x80331D28; // type:function size:0x10 +fn_80331D38 = .text:0x80331D38; // type:function size:0x8 +fn_80331D40 = .text:0x80331D40; // type:function size:0xC4 +__ct__9MsgSourceFv = .text:0x80331E04; // type:function size:0xA4 +fn_80331EA8 = .text:0x80331EA8; // type:function size:0x58 +fn_80331F00 = .text:0x80331F00; // type:function size:0x58 +fn_80331F58 = .text:0x80331F58; // type:function size:0x60 +fn_80331FB8 = .text:0x80331FB8; // type:function size:0x58 +fn_80332010 = .text:0x80332010; // type:function size:0x58 +fn_80332068 = .text:0x80332068; // type:function size:0x58 +fn_803320C0 = .text:0x803320C0; // type:function size:0x60 +fn_80332120 = .text:0x80332120; // type:function size:0x58 +fn_80332178 = .text:0x80332178; // type:function size:0x30 +fn_803321A8 = .text:0x803321A8; // type:function size:0x30 +fn_803321D8 = .text:0x803321D8; // type:function size:0x60 +fn_80332238 = .text:0x80332238; // type:function size:0x30 +fn_80332268 = .text:0x80332268; // type:function size:0x30 +fn_80332298 = .text:0x80332298; // type:function size:0x60 +__dt__9MsgSourceFv = .text:0x803322F8; // type:function size:0x1F8 +fn_803324F0 = .text:0x803324F0; // type:function size:0x4 +fn_803324F4 = .text:0x803324F4; // type:function size:0x4 +fn_803324F8 = .text:0x803324F8; // type:function size:0x4 +fn_803324FC = .text:0x803324FC; // type:function size:0x4 +fn_80332500 = .text:0x80332500; // type:function size:0x4 +fn_80332504 = .text:0x80332504; // type:function size:0x8 +fn_8033250C = .text:0x8033250C; // type:function size:0xC +fn_80332518 = .text:0x80332518; // type:function size:0x4 +fn_8033251C = .text:0x8033251C; // type:function size:0x4 +fn_80332520 = .text:0x80332520; // type:function size:0x4 +fn_80332524 = .text:0x80332524; // type:function size:0x8 +fn_8033252C = .text:0x8033252C; // type:function size:0x130 +AddSink__9MsgSourceFPQ23Hmx6Object6Symbol6SymbolQ29MsgSource8SinkMode = .text:0x8033265C; // type:function size:0x1D0 +fn_8033282C = .text:0x8033282C; // type:function size:0x34 +fn_80332860 = .text:0x80332860; // type:function size:0x5C +fn_803328BC = .text:0x803328BC; // type:function size:0x58 +fn_80332914 = .text:0x80332914; // type:function size:0x58 +fn_8033296C = .text:0x8033296C; // type:function size:0x60 +fn_803329CC = .text:0x803329CC; // type:function size:0x58 +fn_80332A24 = .text:0x80332A24; // type:function size:0x4 +fn_80332A28 = .text:0x80332A28; // type:function size:0x54 +fn_80332A7C = .text:0x80332A7C; // type:function size:0x64 +fn_80332AE0 = .text:0x80332AE0; // type:function size:0x50 +fn_80332B30 = .text:0x80332B30; // type:function size:0x10 +fn_80332B40 = .text:0x80332B40; // type:function size:0x48 +fn_80332B88 = .text:0x80332B88; // type:function size:0x30 +fn_80332BB8 = .text:0x80332BB8; // type:function size:0x90 +fn_80332C48 = .text:0x80332C48; // type:function size:0x60 +fn_80332CA8 = .text:0x80332CA8; // type:function size:0x90 +fn_80332D38 = .text:0x80332D38; // type:function size:0x64 +fn_80332D9C = .text:0x80332D9C; // type:function size:0x50 +fn_80332DEC = .text:0x80332DEC; // type:function size:0x10 +fn_80332DFC = .text:0x80332DFC; // type:function size:0x48 +fn_80332E44 = .text:0x80332E44; // type:function size:0x2C +fn_80332E70 = .text:0x80332E70; // type:function size:0x30 +fn_80332EA0 = .text:0x80332EA0; // type:function size:0x60 +fn_80332F00 = .text:0x80332F00; // type:function size:0x48 +fn_80332F48 = .text:0x80332F48; // type:function size:0x30 +fn_80332F78 = .text:0x80332F78; // type:function size:0x30 +fn_80332FA8 = .text:0x80332FA8; // type:function size:0x4 +fn_80332FAC = .text:0x80332FAC; // type:function size:0x54 +fn_80333000 = .text:0x80333000; // type:function size:0x64 +fn_80333064 = .text:0x80333064; // type:function size:0x50 +fn_803330B4 = .text:0x803330B4; // type:function size:0x4 +fn_803330B8 = .text:0x803330B8; // type:function size:0x54 +fn_8033310C = .text:0x8033310C; // type:function size:0x80 +fn_8033318C = .text:0x8033318C; // type:function size:0x4 +fn_80333190 = .text:0x80333190; // type:function size:0x54 +fn_803331E4 = .text:0x803331E4; // type:function size:0x4 +fn_803331E8 = .text:0x803331E8; // type:function size:0x54 +fn_8033323C = .text:0x8033323C; // type:function size:0x34 +fn_80333270 = .text:0x80333270; // type:function size:0xEC +fn_8033335C = .text:0x8033335C; // type:function size:0x50 +fn_803333AC = .text:0x803333AC; // type:function size:0x6C +fn_80333418 = .text:0x80333418; // type:function size:0x2C +Replace__9MsgSourceFPQ23Hmx6ObjectPQ23Hmx6Object = .text:0x80333444; // type:function size:0x54 +RemoveSink__9MsgSourceFPQ23Hmx6Object6Symbol = .text:0x80333498; // type:function size:0x214 +fn_803336AC = .text:0x803336AC; // type:function size:0x50 +fn_803336FC = .text:0x803336FC; // type:function size:0x6C +fn_80333768 = .text:0x80333768; // type:function size:0x2C +fn_80333794 = .text:0x80333794; // type:function size:0x1B8 +Export__9MsgSourceFP9DataArrayb = .text:0x8033394C; // type:function size:0x31C +fn_80333C68 = .text:0x80333C68; // type:function size:0x50 +fn_80333CB8 = .text:0x80333CB8; // type:function size:0x6C +fn_80333D24 = .text:0x80333D24; // type:function size:0x2C +fn_80333D50 = .text:0x80333D50; // type:function size:0x8 +fn_80333D58 = .text:0x80333D58; // type:function size:0x34 +fn_80333D8C = .text:0x80333D8C; // type:function size:0x34 +Handle__9MsgSourceFP9DataArrayb = .text:0x80333DC0; // type:function size:0x1C0 +OnAddSink__9MsgSourceFP9DataArray = .text:0x80333F80; // type:function size:0x204 +GetLiteralSymAtIndex__9DataArrayCFi = .text:0x80334184; // type:function size:0x34 +OnRemoveSink__9MsgSourceFP9DataArray = .text:0x803341B8; // type:function size:0xD0 +fn_80334288 = .text:0x80334288; // type:function size:0xE0 +fn_80334368 = .text:0x80334368; // type:function size:0x94 +fn_803343FC = .text:0x803343FC; // type:function size:0x114 +fn_80334510 = .text:0x80334510; // type:function size:0xE0 +fn_803345F0 = .text:0x803345F0; // type:function size:0x194 +fn_80334784 = .text:0x80334784; // type:function size:0x58 +fn_803347DC = .text:0x803347DC; // type:function size:0x4C +fn_80334828 = .text:0x80334828; // type:function size:0x70 +SyncProperty__9MsgSourceFR8DataNodeP9DataArrayi6PropOp = .text:0x80334898; // type:function size:0xE0 +fn_80334978 = .text:0x80334978; // type:function size:0x18C +fn_80334B04 = .text:0x80334B04; // type:function size:0x58 +fn_80334B5C = .text:0x80334B5C; // type:function size:0x4C +fn_80334BA8 = .text:0x80334BA8; // type:function size:0x70 +fn_80334C18 = .text:0x80334C18; // type:function size:0x30 +fn_80334C48 = .text:0x80334C48; // type:function size:0x2C +fn_80334C74 = .text:0x80334C74; // type:function size:0x1AC +fn_80334E20 = .text:0x80334E20; // type:function size:0x58 +fn_80334E78 = .text:0x80334E78; // type:function size:0x48 +fn_80334EC0 = .text:0x80334EC0; // type:function size:0x34 +fn_80334EF4 = .text:0x80334EF4; // type:function size:0x4C +fn_80334F40 = .text:0x80334F40; // type:function size:0x70 +fn_80334FB0 = .text:0x80334FB0; // type:function size:0x30 +fn_80334FE0 = .text:0x80334FE0; // type:function size:0x2C +fn_8033500C = .text:0x8033500C; // type:function size:0x68 +fn_80335074 = .text:0x80335074; // type:function size:0x68 +fn_803350DC = .text:0x803350DC; // type:function size:0x68 +fn_80335144 = .text:0x80335144; // type:function size:0x14 +fn_80335158 = .text:0x80335158; // type:function size:0x14 +fn_8033516C = .text:0x8033516C; // type:function size:0x14 +fn_80335180 = .text:0x80335180; // type:function size:0x14 +fn_80335194 = .text:0x80335194; // type:function size:0x14 +fn_803351A8 = .text:0x803351A8; // type:function size:0x14 +fn_803351BC = .text:0x803351BC; // type:function size:0x14 +DataDir__Q23Hmx6ObjectFv = .text:0x803351D0; // type:function size:0x18 +NewObject__Q23Hmx6ObjectF6Symbol = .text:0x803351E8; // type:function size:0x80 +fn_80335268 = .text:0x80335268; // type:function size:0x8 +fn_80335270 = .text:0x80335270; // type:function size:0x4 +fn_80335274 = .text:0x80335274; // type:function size:0x40 +fn_803352B4 = .text:0x803352B4; // type:function size:0xA0 +RegisterFactory__Q23Hmx6ObjectF6SymbolPFv_PQ23Hmx6Object = .text:0x80335354; // type:function size:0x40 +fn_80335394 = .text:0x80335394; // type:function size:0xFC +fn_80335490 = .text:0x80335490; // type:function size:0x58 +fn_803354E8 = .text:0x803354E8; // type:function size:0x4 +fn_803354EC = .text:0x803354EC; // type:function size:0x40 +fn_8033552C = .text:0x8033552C; // type:function size:0x74 +fn_803355A0 = .text:0x803355A0; // type:function size:0x6C +__ct__Q23Hmx6ObjectFv = .text:0x8033560C; // type:function size:0x74 +__as__Q23Hmx6ObjectFRCQ23Hmx6Object = .text:0x80335680; // type:function size:0x6C +__dt__Q23Hmx6ObjectFv = .text:0x803356EC; // type:function size:0x140 +fn_8033582C = .text:0x8033582C; // type:function size:0x28 +fn_80335854 = .text:0x80335854; // type:function size:0x38 +fn_8033588C = .text:0x8033588C; // type:function size:0x3C +fn_803358C8 = .text:0x803358C8; // type:function size:0x3C +SetName__Q23Hmx6ObjectFPCcP9ObjectDir = .text:0x80335904; // type:function size:0xA0 +RemoveFromDir__Q23Hmx6ObjectFv = .text:0x803359A4; // type:function size:0x88 +SetTypeDef__Q23Hmx6ObjectFP9DataArray = .text:0x80335A2C; // type:function size:0x78 +Property__Q23Hmx6ObjectFP9DataArrayb = .text:0x80335AA4; // type:function size:0x1D8 +Property__Q23Hmx6ObjectF6Symbolb = .text:0x80335C7C; // type:function size:0xD4 +OnGetArray__Q23Hmx6ObjectFPC9DataArray6Symbol = .text:0x80335D50; // type:function size:0x200 +HandleProperty__Q23Hmx6ObjectFP9DataArrayP9DataArrayb = .text:0x80335F50; // type:function size:0x104 +SetProperty__Q23Hmx6ObjectFP9DataArrayRC8DataNode = .text:0x80336054; // type:function size:0xE8 +SetProperty__Q23Hmx6ObjectF6SymbolRC8DataNode = .text:0x8033613C; // type:function size:0xD4 +PropertySize__Q23Hmx6ObjectFP9DataArray = .text:0x80336210; // type:function size:0x13C +ClearProperties__Q23Hmx6ObjectFP9DataArray = .text:0x8033634C; // type:function size:0xB0 +RemoveProperty__Q23Hmx6ObjectFP9DataArray = .text:0x803363FC; // type:function size:0xD8 +InsertProperty__Q23Hmx6ObjectFP9DataArrayRC8DataNode = .text:0x803364D4; // type:function size:0xA0 +AddRef__Q23Hmx6ObjectFP6ObjRef = .text:0x80336574; // type:function size:0x5C +Release__Q23Hmx6ObjectFP6ObjRef = .text:0x803365D0; // type:function size:0xD0 +Save__Q23Hmx6ObjectFR9BinStream = .text:0x803366A0; // type:function size:0x44 +SaveType__Q23Hmx6ObjectFR9BinStream = .text:0x803366E4; // type:function size:0x64 +SaveRest__Q23Hmx6ObjectFR9BinStream = .text:0x80336748; // type:function size:0x40 +Copy__Q23Hmx6ObjectFPCQ23Hmx6ObjectQ33Hmx6Object8CopyType = .text:0x80336788; // type:function size:0x114 +LoadType__Q23Hmx6ObjectFR9BinStream = .text:0x8033689C; // type:function size:0xA0 +LoadRest__Q23Hmx6ObjectFR9BinStream = .text:0x8033693C; // type:function size:0xB8 +Load__Q23Hmx6ObjectFR9BinStream = .text:0x803369F4; // type:function size:0x44 +FormatPathName__FPCcPCc = .text:0x80336A38; // type:function size:0x4C +FindPathName__Q23Hmx6ObjectFv = .text:0x80336A84; // type:function size:0x1E0 +fn_80336C64 = .text:0x80336C64; // type:function size:0x24 +Replace__Q23Hmx6ObjectFPQ23Hmx6ObjectPQ23Hmx6Object = .text:0x80336C88; // type:function size:0xC +Handle__Q23Hmx6ObjectFP9DataArrayb = .text:0x80336C94; // type:function size:0xA48 +HandleType__Q23Hmx6ObjectFP9DataArray = .text:0x803376DC; // type:function size:0xBC +OnIterateRefs__Q23Hmx6ObjectFPC9DataArray = .text:0x80337798; // type:function size:0x138 +OnSet__Q23Hmx6ObjectFPC9DataArray = .text:0x803378D0; // type:function size:0xD0 +OnAppendToArray__Q23Hmx6ObjectFPC9DataArray = .text:0x803379A0; // type:function size:0xD8 +OnGet__Q23Hmx6ObjectFPC9DataArray = .text:0x80337A78; // type:function size:0x104 +SyncProperty__Q23Hmx6ObjectFR8DataNodeP9DataArrayi6PropOp = .text:0x80337B7C; // type:function size:0x6C +fn_80337BE8 = .text:0x80337BE8; // type:function size:0x388 +fn_80337F70 = .text:0x80337F70; // type:function size:0x158 +fn_803380C8 = .text:0x803380C8; // type:function size:0x44 +fn_8033810C = .text:0x8033810C; // type:function size:0x8 +fn_80338114 = .text:0x80338114; // type:function size:0x104 +fn_80338218 = .text:0x80338218; // type:function size:0x5C +fn_80338274 = .text:0x80338274; // type:function size:0x10 +fn_80338284 = .text:0x80338284; // type:function size:0x7C +fn_80338300 = .text:0x80338300; // type:function size:0x58 +fn_80338358 = .text:0x80338358; // type:function size:0x80 +fn_803383D8 = .text:0x803383D8; // type:function size:0x80 +fn_80338458 = .text:0x80338458; // type:function size:0x58 +fn_803384B0 = .text:0x803384B0; // type:function size:0x30 +fn_803384E0 = .text:0x803384E0; // type:function size:0x30 +fn_80338510 = .text:0x80338510; // type:function size:0x40 +fn_80338550 = .text:0x80338550; // type:function size:0x58 +fn_803385A8 = .text:0x803385A8; // type:function size:0x60 +fn_80338608 = .text:0x80338608; // type:function size:0x58 +fn_80338660 = .text:0x80338660; // type:function size:0x58 +fn_803386B8 = .text:0x803386B8; // type:function size:0x50 +fn_80338708 = .text:0x80338708; // type:function size:0x44 +fn_8033874C = .text:0x8033874C; // type:function size:0x3C +fn_80338788 = .text:0x80338788; // type:function size:0x70 +fn_803387F8 = .text:0x803387F8; // type:function size:0x6C +fn_80338864 = .text:0x80338864; // type:function size:0x2C +PropSync__FR6StringR8DataNodeP9DataArrayi6PropOp = .text:0x80338890; // type:function size:0x94 +PropSync__FR8FilePathR8DataNodeP9DataArrayi6PropOp = .text:0x80338924; // type:function size:0x94 +PropSync__FRQ23Hmx5ColorR8DataNodeP9DataArrayi6PropOp = .text:0x803389B8; // type:function size:0x94 +fn_80338A4C = .text:0x80338A4C; // type:function size:0x5C +fn_80338AA8 = .text:0x80338AA8; // type:function size:0xC +PropSync__FRQ23Hmx7Matrix3R8DataNodeP9DataArrayi6PropOp = .text:0x80338AB4; // type:function size:0x39C +PropSync__FR6SphereR8DataNodeP9DataArrayi6PropOp = .text:0x80338E50; // type:function size:0x148 +PropSync__FR7Vector2R8DataNodeP9DataArrayi6PropOp = .text:0x80338F98; // type:function size:0xE0 +PropSync__FR7Vector3R8DataNodeP9DataArrayi6PropOp = .text:0x80339078; // type:function size:0x114 +PropSync__FR9TransformR8DataNodeP9DataArrayi6PropOp = .text:0x8033918C; // type:function size:0x128 +PropSync__FRQ23Hmx4RectR8DataNodeP9DataArrayi6PropOp = .text:0x803392B4; // type:function size:0x148 +PropSync__FR3BoxR8DataNodeP9DataArrayi6PropOp = .text:0x803393FC; // type:function size:0x1B0 +fn_803395AC = .text:0x803395AC; // type:function size:0x68 +fn_80339614 = .text:0x80339614; // type:function size:0x80 +fn_80339694 = .text:0x80339694; // type:function size:0x68 +__ct__4TaskFv = .text:0x803396FC; // type:function size:0x3C +fn_80339738 = .text:0x80339738; // type:function size:0x90 +fn_803397C8 = .text:0x803397C8; // type:function size:0x84 +fn_8033984C = .text:0x8033984C; // type:function size:0x6C +fn_803398B8 = .text:0x803398B8; // type:function size:0xB0 +fn_80339968 = .text:0x80339968; // type:function size:0x160 +fn_80339AC8 = .text:0x80339AC8; // type:function size:0x58 +fn_80339B20 = .text:0x80339B20; // type:function size:0x58 +fn_80339B78 = .text:0x80339B78; // type:function size:0x60 +fn_80339BD8 = .text:0x80339BD8; // type:function size:0x58 +fn_80339C30 = .text:0x80339C30; // type:function size:0x4 +fn_80339C34 = .text:0x80339C34; // type:function size:0x54 +fn_80339C88 = .text:0x80339C88; // type:function size:0x64 +fn_80339CEC = .text:0x80339CEC; // type:function size:0x50 +fn_80339D3C = .text:0x80339D3C; // type:function size:0x10 +fn_80339D4C = .text:0x80339D4C; // type:function size:0x40 +fn_80339D8C = .text:0x80339D8C; // type:function size:0x4 +fn_80339D90 = .text:0x80339D90; // type:function size:0x38 +fn_80339DC8 = .text:0x80339DC8; // type:function size:0x30 +fn_80339DF8 = .text:0x80339DF8; // type:function size:0x30 +fn_80339E28 = .text:0x80339E28; // type:function size:0x60 +fn_80339E88 = .text:0x80339E88; // type:function size:0xEC +fn_80339F74 = .text:0x80339F74; // type:function size:0x8C +fn_8033A000 = .text:0x8033A000; // type:function size:0x74 +fn_8033A074 = .text:0x8033A074; // type:function size:0x3C +fn_8033A0B0 = .text:0x8033A0B0; // type:function size:0x8C +fn_8033A13C = .text:0x8033A13C; // type:function size:0x30 +fn_8033A16C = .text:0x8033A16C; // type:function size:0x30 +OnScriptTask__FP9DataArray = .text:0x8033A19C; // type:function size:0x1B0 +fn_8033A34C = .text:0x8033A34C; // type:function size:0x204 +fn_8033A550 = .text:0x8033A550; // type:function size:0x4 +fn_8033A554 = .text:0x8033A554; // type:function size:0xC +fn_8033A560 = .text:0x8033A560; // type:function size:0x34 +fn_8033A594 = .text:0x8033A594; // type:function size:0x78 +fn_8033A60C = .text:0x8033A60C; // type:function size:0x58 +fn_8033A664 = .text:0x8033A664; // type:function size:0x144 +fn_8033A7A8 = .text:0x8033A7A8; // type:function size:0x6C +OnThreadTask__FP9DataArray = .text:0x8033A814; // type:function size:0x164 +fn_8033A978 = .text:0x8033A978; // type:function size:0x6C +fn_8033A9E4 = .text:0x8033A9E4; // type:function size:0x44 +fn_8033AA28 = .text:0x8033AA28; // type:function size:0x2C +fn_8033AA54 = .text:0x8033AA54; // type:function size:0xCC +fn_8033AB20 = .text:0x8033AB20; // type:function size:0x4 +fn_8033AB24 = .text:0x8033AB24; // type:function size:0x14 +fn_8033AB38 = .text:0x8033AB38; // type:function size:0x30 +fn_8033AB68 = .text:0x8033AB68; // type:function size:0x110 +fn_8033AC78 = .text:0x8033AC78; // type:function size:0x58 +fn_8033ACD0 = .text:0x8033ACD0; // type:function size:0x390 +fn_8033B060 = .text:0x8033B060; // type:function size:0x50 +fn_8033B0B0 = .text:0x8033B0B0; // type:function size:0x8 +fn_8033B0B8 = .text:0x8033B0B8; // type:function size:0x58 +fn_8033B110 = .text:0x8033B110; // type:function size:0x104 +fn_8033B214 = .text:0x8033B214; // type:function size:0x6C +fn_8033B280 = .text:0x8033B280; // type:function size:0x10 +fn_8033B290 = .text:0x8033B290; // type:function size:0x54 +Init__7TaskMgrFv = .text:0x8033B2E4; // type:function size:0xC0 +__dt__12TaskTimelineFv = .text:0x8033B3A4; // type:function size:0x68 +fn_8033B40C = .text:0x8033B40C; // type:function size:0x58 +fn_8033B464 = .text:0x8033B464; // type:function size:0x58 +fn_8033B4BC = .text:0x8033B4BC; // type:function size:0x60 +fn_8033B51C = .text:0x8033B51C; // type:function size:0x58 +__ct__12TaskTimelineFv = .text:0x8033B574; // type:function size:0x70 +fn_8033B5E4 = .text:0x8033B5E4; // type:function size:0x30 +fn_8033B614 = .text:0x8033B614; // type:function size:0x30 +fn_8033B644 = .text:0x8033B644; // type:function size:0x60 +fn_8033B6A4 = .text:0x8033B6A4; // type:function size:0x64 +fn_8033B708 = .text:0x8033B708; // type:function size:0xC +SetTime__12TaskTimelineFfb = .text:0x8033B714; // type:function size:0x20 +fn_8033B734 = .text:0x8033B734; // type:function size:0xC +fn_8033B740 = .text:0x8033B740; // type:function size:0xC +fn_8033B74C = .text:0x8033B74C; // type:function size:0x10 +fn_8033B75C = .text:0x8033B75C; // type:function size:0x10 +fn_8033B76C = .text:0x8033B76C; // type:function size:0x20 +fn_8033B78C = .text:0x8033B78C; // type:function size:0x20 +fn_8033B7AC = .text:0x8033B7AC; // type:function size:0x64 +SetSeconds__7TaskMgrFfb = .text:0x8033B810; // type:function size:0x98 +fn_8033B8A8 = .text:0x8033B8A8; // type:function size:0x10 +fn_8033B8B8 = .text:0x8033B8B8; // type:function size:0x8 +Seconds__7TaskMgrCFQ27TaskMgr13TimeReference = .text:0x8033B8C0; // type:function size:0x4C +fn_8033B90C = .text:0x8033B90C; // type:function size:0x8 +Beat__7TaskMgrCFv = .text:0x8033B914; // type:function size:0xC +fn_8033B920 = .text:0x8033B920; // type:function size:0xC +fn_8033B92C = .text:0x8033B92C; // type:function size:0xC +fn_8033B938 = .text:0x8033B938; // type:function size:0xC +fn_8033B944 = .text:0x8033B944; // type:function size:0xB8 +fn_8033B9FC = .text:0x8033B9FC; // type:function size:0x180 +fn_8033BB7C = .text:0x8033BB7C; // type:function size:0x4 +fn_8033BB80 = .text:0x8033BB80; // type:function size:0xE0 +fn_8033BC60 = .text:0x8033BC60; // type:function size:0x58 +fn_8033BCB8 = .text:0x8033BCB8; // type:function size:0x64 +fn_8033BD1C = .text:0x8033BD1C; // type:function size:0x50 +fn_8033BD6C = .text:0x8033BD6C; // type:function size:0x10 +fn_8033BD7C = .text:0x8033BD7C; // type:function size:0x44 +fn_8033BDC0 = .text:0x8033BDC0; // type:function size:0x80 +fn_8033BE40 = .text:0x8033BE40; // type:function size:0x68 +fn_8033BEA8 = .text:0x8033BEA8; // type:function size:0x4 +fn_8033BEAC = .text:0x8033BEAC; // type:function size:0x54 +fn_8033BF00 = .text:0x8033BF00; // type:function size:0x4 +fn_8033BF04 = .text:0x8033BF04; // type:function size:0x4 +fn_8033BF08 = .text:0x8033BF08; // type:function size:0x50 +fn_8033BF58 = .text:0x8033BF58; // type:function size:0x6C +fn_8033BFC4 = .text:0x8033BFC4; // type:function size:0x2C +fn_8033BFF0 = .text:0x8033BFF0; // type:function size:0x8 +fn_8033BFF8 = .text:0x8033BFF8; // type:function size:0x58 +fn_8033C050 = .text:0x8033C050; // type:function size:0xC +fn_8033C05C = .text:0x8033C05C; // type:function size:0x54 +fn_8033C0B0 = .text:0x8033C0B0; // type:function size:0xAC +fn_8033C15C = .text:0x8033C15C; // type:function size:0x10 +fn_8033C16C = .text:0x8033C16C; // type:function size:0x10 +fn_8033C17C = .text:0x8033C17C; // type:function size:0x50 +fn_8033C1CC = .text:0x8033C1CC; // type:function size:0x48 +fn_8033C214 = .text:0x8033C214; // type:function size:0x68 +fn_8033C27C = .text:0x8033C27C; // type:function size:0x6C +Handle__7TaskMgrFP9DataArrayb = .text:0x8033C2E8; // type:function size:0x380 +fn_8033C668 = .text:0x8033C668; // type:function size:0xDC +fn_8033C744 = .text:0x8033C744; // type:function size:0x68 +fn_8033C7AC = .text:0x8033C7AC; // type:function size:0x2C +fn_8033C7D8 = .text:0x8033C7D8; // type:function size:0x8 +fn_8033C7E0 = .text:0x8033C7E0; // type:function size:0x68 +fn_8033C848 = .text:0x8033C848; // type:function size:0x60 +fn_8033C8A8 = .text:0x8033C8A8; // type:function size:0x48 +__ct__7TaskMgrFv = .text:0x8033C8F0; // type:function size:0x4C +SetName__8TextFileFPCcP9ObjectDir = .text:0x8033C93C; // type:function size:0x54 +Print__8TextFileFPCc = .text:0x8033C990; // type:function size:0xB8 +Handle__8TextFileFP9DataArrayb = .text:0x8033CA48; // type:function size:0x20C +OnPrint__8TextFileFP9DataArray = .text:0x8033CC54; // type:function size:0x84 +OnPrintf__8TextFileFP9DataArray = .text:0x8033CCD8; // type:function size:0xBC +OnReflect__8TextFileFP9DataArray = .text:0x8033CD94; // type:function size:0xB8 +fn_8033CE4C = .text:0x8033CE4C; // type:function size:0x10 +ClassName__8TextFileCFv = .text:0x8033CE5C; // type:function size:0x4 +SetType__8TextFileF6Symbol = .text:0x8033CE60; // type:function size:0x128 +__dt__8TextFileFv = .text:0x8033CF88; // type:function size:0xA0 +@28@Print__8TextFileFPCc = .text:0x8033D028; // type:function size:0x8 +@28@__dt__8TextFileFv = .text:0x8033D030; // type:function size:0x8 +GetArray__9TypePropsF6SymbolP9DataArrayP6ObjRef = .text:0x8033D038; // type:function size:0xE4 +SetArrayValue__9TypePropsF6SymboliRC8DataNodeP9DataArrayP6ObjRef = .text:0x8033D11C; // type:function size:0xAC +RemoveArrayValue__9TypePropsF6SymboliP9DataArrayP6ObjRef = .text:0x8033D1C8; // type:function size:0x88 +InsertArrayValue__9TypePropsF6SymboliRC8DataNodeP9DataArrayP6ObjRef = .text:0x8033D250; // type:function size:0x80 +SetKeyValue__9TypePropsF6SymbolRC8DataNodebP6ObjRef = .text:0x8033D2D0; // type:function size:0x1B4 +KeyValue__9TypePropsF6Symbolb = .text:0x8033D484; // type:function size:0x90 +fn_8033D514 = .text:0x8033D514; // type:function size:0xCC +Save__9TypePropsFR9BinStream = .text:0x8033D5E0; // type:function size:0x234 +Load__9TypePropsFR9BinStreamb = .text:0x8033D814; // type:function size:0x198 +ReplaceObject__9TypePropsFR8DataNodePQ23Hmx6ObjectPQ23Hmx6ObjectP6ObjRef = .text:0x8033D9AC; // type:function size:0x84 +Replace__9TypePropsFPQ23Hmx6ObjectPQ23Hmx6ObjectP6ObjRef = .text:0x8033DA30; // type:function size:0x100 +Size__9TypePropsCFv = .text:0x8033DB30; // type:function size:0x3C +ReleaseObjects__9TypePropsFP6ObjRef = .text:0x8033DB6C; // type:function size:0xF0 +AddRefObjects__9TypePropsFP6ObjRef = .text:0x8033DC5C; // type:function size:0xF0 +Assign__9TypePropsFRC9TypePropsP6ObjRef = .text:0x8033DD4C; // type:function size:0x6C +fn_8033DDB8 = .text:0x8033DDB8; // type:function size:0x2C +fn_8033DDE4 = .text:0x8033DDE4; // type:function size:0x10 +ClearAll__9TypePropsFP6ObjRef = .text:0x8033DDF4; // type:function size:0x44 +InitObject__FPQ23Hmx6Object = .text:0x8033DE38; // type:function size:0xFC +PathName__FPCQ23Hmx6Object = .text:0x8033DF34; // type:function size:0x28 +SafeName__FPQ23Hmx6Object = .text:0x8033DF5C; // type:function size:0x1C +RecurseSuperClasses__F6SymbolRQ211stlpmtx_std54vector<6Symbol,Q211stlpmtx_std21StlNodeAlloc<6Symbol>> = .text:0x8033DF78; // type:function size:0x10C +fn_8033E084 = .text:0x8033E084; // type:function size:0x24 +fn_8033E0A8 = .text:0x8033E0A8; // type:function size:0x58 +RecurseSuperClassesSearch__F6Symbol6Symbol = .text:0x8033E100; // type:function size:0x11C +IsASubclass__F6Symbol6Symbol = .text:0x8033E21C; // type:function size:0x88 +fn_8033E2A4 = .text:0x8033E2A4; // type:function size:0x10C +fn_8033E3B0 = .text:0x8033E3B0; // type:function size:0x4 +CopyTypeProperties__FPQ23Hmx6ObjectPQ23Hmx6Object = .text:0x8033E3B4; // type:function size:0x708 +fn_8033EABC = .text:0x8033EABC; // type:function size:0xEC +fn_8033EBA8 = .text:0x8033EBA8; // type:function size:0x10C +fn_8033ECB4 = .text:0x8033ECB4; // type:function size:0x74 +fn_8033ED28 = .text:0x8033ED28; // type:function size:0x244 +MergeDirs__FP9ObjectDirP9ObjectDirR11MergeFilterb = .text:0x8033EF6C; // type:function size:0xA4 +ReserveToFit__FP9ObjectDirP9ObjectDiri = .text:0x8033F010; // type:function size:0x80 +SubDirStringUsed__FP9ObjectDir = .text:0x8033F090; // type:function size:0x7C +SubDirHashUsed__FP9ObjectDir = .text:0x8033F10C; // type:function size:0x7C +CopyObject__FPQ23Hmx6ObjectPQ23Hmx6ObjectQ33Hmx6Object8CopyTypeb = .text:0x8033F188; // type:function size:0xDC +CloneObject__FPQ23Hmx6Objectb = .text:0x8033F264; // type:function size:0x68 +NextName__FPCcP9ObjectDir = .text:0x8033F2CC; // type:function size:0x130 +fn_8033F3FC = .text:0x8033F3FC; // type:function size:0xE0 +fn_8033F4DC = .text:0x8033F4DC; // type:function size:0x74 +fn_8033F550 = .text:0x8033F550; // type:function size:0x3C +fn_8033F58C = .text:0x8033F58C; // type:function size:0x8C +fn_8033F618 = .text:0x8033F618; // type:function size:0x30 +fn_8033F648 = .text:0x8033F648; // type:function size:0x30 +fn_8033F678 = .text:0x8033F678; // type:function size:0x18C +fn_8033F804 = .text:0x8033F804; // type:function size:0x70 +fn_8033F874 = .text:0x8033F874; // type:function size:0x160 +fn_8033F9D4 = .text:0x8033F9D4; // type:function size:0xC0 +IsPropPathValid__FPQ23Hmx6ObjectP9DataArray = .text:0x8033FA94; // type:function size:0x9C +PathCompare__FP9DataArrayP9DataArray = .text:0x8033FB30; // type:function size:0x134 +GetPropertyVal__FPQ23Hmx6ObjectP9DataArrayb = .text:0x8033FC64; // type:function size:0x5C +ObjectList__FP9ObjectDir6Symbolb = .text:0x8033FCC0; // type:function size:0x20C +fn_8033FECC = .text:0x8033FECC; // type:function size:0x3C +fn_8033FF08 = .text:0x8033FF08; // type:function size:0x3C +fn_8033FF44 = .text:0x8033FF44; // type:function size:0x8C +fn_8033FFD0 = .text:0x8033FFD0; // type:function size:0x68 +fn_80340038 = .text:0x80340038; // type:function size:0x14C +fn_80340184 = .text:0x80340184; // type:function size:0x4 +fn_80340188 = .text:0x80340188; // type:function size:0x2C +fn_803401B4 = .text:0x803401B4; // type:function size:0xFC +fn_803402B0 = .text:0x803402B0; // type:function size:0x4 +fn_803402B4 = .text:0x803402B4; // type:function size:0x2C +fn_803402E0 = .text:0x803402E0; // type:function size:0x1D0 +fn_803404B0 = .text:0x803404B0; // type:function size:0x13C +fn_803405EC = .text:0x803405EC; // type:function size:0xAC +fn_80340698 = .text:0x80340698; // type:function size:0x58 +fn_803406F0 = .text:0x803406F0; // type:function size:0x6C +fn_8034075C = .text:0x8034075C; // type:function size:0x9C +fn_803407F8 = .text:0x803407F8; // type:function size:0x4 +fn_803407FC = .text:0x803407FC; // type:function size:0x40 +fn_8034083C = .text:0x8034083C; // type:function size:0xC4 +fn_80340900 = .text:0x80340900; // type:function size:0x198 +fn_80340A98 = .text:0x80340A98; // type:function size:0x2C +fn_80340AC4 = .text:0x80340AC4; // type:function size:0x2C +fn_80340AF0 = .text:0x80340AF0; // type:function size:0x1D0 +fn_80340CC0 = .text:0x80340CC0; // type:function size:0x154 +fn_80340E14 = .text:0x80340E14; // type:function size:0x2C +fn_80340E40 = .text:0x80340E40; // type:function size:0x98 +fn_80340ED8 = .text:0x80340ED8; // type:function size:0xC +ResetTheBeatMap__Fv = .text:0x80340EE4; // type:function size:0x14 +fn_80340EF8 = .text:0x80340EF8; // type:function size:0x1C +__ct__7BeatMapFv = .text:0x80340F14; // type:function size:0x40 +fn_80340F54 = .text:0x80340F54; // type:function size:0x58 +fn_80340FAC = .text:0x80340FAC; // type:function size:0x80 +fn_8034102C = .text:0x8034102C; // type:function size:0x80 +fn_803410AC = .text:0x803410AC; // type:function size:0x58 +fn_80341104 = .text:0x80341104; // type:function size:0x54 +fn_80341158 = .text:0x80341158; // type:function size:0x5C +fn_803411B4 = .text:0x803411B4; // type:function size:0x6C +fn_80341220 = .text:0x80341220; // type:function size:0x28 +fn_80341248 = .text:0x80341248; // type:function size:0x8 +fn_80341250 = .text:0x80341250; // type:function size:0x3C +fn_8034128C = .text:0x8034128C; // type:function size:0x30 +fn_803412BC = .text:0x803412BC; // type:function size:0x30 +fn_803412EC = .text:0x803412EC; // type:function size:0x40 +fn_8034132C = .text:0x8034132C; // type:function size:0x80 +fn_803413AC = .text:0x803413AC; // type:function size:0x4 +fn_803413B0 = .text:0x803413B0; // type:function size:0x88 +fn_80341438 = .text:0x80341438; // type:function size:0x2C +fn_80341464 = .text:0x80341464; // type:function size:0x10 +fn_80341474 = .text:0x80341474; // type:function size:0x24 +fn_80341498 = .text:0x80341498; // type:function size:0x110 +fn_803415A8 = .text:0x803415A8; // type:function size:0x8 +fn_803415B0 = .text:0x803415B0; // type:function size:0xAC +fn_8034165C = .text:0x8034165C; // type:function size:0x24 +Beat__7BeatMapCFi = .text:0x80341680; // type:function size:0x104 +BeatToTick__7BeatMapCFf = .text:0x80341784; // type:function size:0x144 +fn_803418C8 = .text:0x803418C8; // type:function size:0x90 +fn_80341958 = .text:0x80341958; // type:function size:0xC4 +fn_80341A1C = .text:0x80341A1C; // type:function size:0xD0 +fn_80341AEC = .text:0x80341AEC; // type:function size:0x114 +fn_80341C00 = .text:0x80341C00; // type:function size:0x60 +fn_80341C60 = .text:0x80341C60; // type:function size:0x5C +fn_80341CBC = .text:0x80341CBC; // type:function size:0x54 +fn_80341D10 = .text:0x80341D10; // type:function size:0x5C +fn_80341D6C = .text:0x80341D6C; // type:function size:0x5C +__sinit_\beatmap_cpp = .text:0x80341DC8; // type:function size:0x48 scope:local +__dt__7BeatMapFv = .text:0x80341E10; // type:function size:0x58 +BinkInit__Fv = .text:0x80341E68; // type:function size:0x68 +BinkAlloc__FUi = .text:0x80341ED0; // type:function size:0x8 +BinkFree__FPv = .text:0x80341ED8; // type:function size:0x4 +intelendian__FPvUi = .text:0x80341EDC; // type:function size:0x5C +ReverseByte__FPUiUi = .text:0x80341F38; // type:function size:0x8 +BinkFileOpen__FP6BINKIOPCcUi = .text:0x80341F40; // type:function size:0xD4 +BinkFileReadHeader__FP6BINKIOiPvUi = .text:0x80342014; // type:function size:0x2A0 +SwapDataDoubleWord__Fx = .text:0x803422B4; // type:function size:0x94 +ReadFunc__FP6BINKIOb = .text:0x80342348; // type:function size:0x23C +BinkFileReadFrame__FP6BINKIOUiiPvUi = .text:0x80342584; // type:function size:0x398 +BinkFileGetBufferSize__FP6BINKIOUi = .text:0x8034291C; // type:function size:0x1C +BinkFileClose__FP6BINKIO = .text:0x80342938; // type:function size:0x70 +BinkFileIdle__FP6BINKIO = .text:0x803429A8; // type:function size:0x68 +BinkFileSetInfo__FP6BINKIOPvUiUiUi = .text:0x80342A10; // type:function size:0x30 +BinkFileBGControl__FP6BINKIOUi = .text:0x80342A40; // type:function size:0x8C +Name__9BinStreamCFv = .text:0x80342ACC; // type:function size:0xC +__ls__9BinStreamFPCc = .text:0x80342AD8; // type:function size:0x60 +__ls__9BinStreamFRC6Symbol = .text:0x80342B38; // type:function size:0x60 +__ls__9BinStreamFRC6String = .text:0x80342B98; // type:function size:0x68 +ReadString__9BinStreamFPci = .text:0x80342C00; // type:function size:0x58 +__rs__9BinStreamFR6Symbol = .text:0x80342C58; // type:function size:0x5C +__rs__9BinStreamFR6String = .text:0x80342CB4; // type:function size:0x64 +__ct__9BinStreamFb = .text:0x80342D18; // type:function size:0x1C +__dt__9BinStreamFv = .text:0x80342D34; // type:function size:0x64 +EnableReadEncryption__9BinStreamFv = .text:0x80342D98; // type:function size:0x4C +EnableWriteEncryption__9BinStreamFi = .text:0x80342DE4; // type:function size:0x60 +DisableEncryption__9BinStreamFv = .text:0x80342E44; // type:function size:0x38 +Read__9BinStreamFPvi = .text:0x80342E7C; // type:function size:0xCC +Write__9BinStreamFPCvi = .text:0x80342F48; // type:function size:0x110 +Seek__9BinStreamFiQ29BinStream8SeekType = .text:0x80343058; // type:function size:0x64 +ReadEndian__9BinStreamFPvi = .text:0x803430BC; // type:function size:0x58 +SwapData__FPCvPvi = .text:0x80343114; // type:function size:0x7C +WriteEndian__9BinStreamFPCvi = .text:0x80343190; // type:function size:0x64 +__ct__9BufStreamFPvib = .text:0x803431F4; // type:function size:0x7C +__dt__9BufStreamFv = .text:0x80343270; // type:function size:0x78 +DeleteChecksum__9BufStreamFv = .text:0x803432E8; // type:function size:0x40 +fn_80343328 = .text:0x80343328; // type:function size:0x58 +fn_80343380 = .text:0x80343380; // type:function size:0x5C +fn_803433DC = .text:0x803433DC; // type:function size:0x6C +fn_80343448 = .text:0x80343448; // type:function size:0x3C +fn_80343484 = .text:0x80343484; // type:function size:0x3C +fn_803434C0 = .text:0x803434C0; // type:function size:0x78 +ReadImpl__9BufStreamFPvi = .text:0x80343538; // type:function size:0xAC +WriteImpl__9BufStreamFPCvi = .text:0x803435E4; // type:function size:0x74 +SeekImpl__9BufStreamFiQ29BinStream8SeekType = .text:0x80343658; // type:function size:0x64 +Name__9BufStreamCFv = .text:0x803436BC; // type:function size:0x4C +SetName__9BufStreamFPCc = .text:0x80343708; // type:function size:0x8 +Eof__9BufStreamFv = .text:0x80343710; // type:function size:0x18 +__ct__13BufStreamNANDFPviiPcb = .text:0x80343728; // type:function size:0x80 +__dt__13BufStreamNANDFv = .text:0x803437A8; // type:function size:0x6C +fn_80343814 = .text:0x80343814; // type:function size:0x34 +fn_80343848 = .text:0x80343848; // type:function size:0x54 +fn_8034389C = .text:0x8034389C; // type:function size:0x9C +fn_80343938 = .text:0x80343938; // type:function size:0x94 +fn_803439CC = .text:0x803439CC; // type:function size:0x180 +fn_80343B4C = .text:0x80343B4C; // type:function size:0x8 +fn_80343B54 = .text:0x80343B54; // type:function size:0x8 +fn_80343B5C = .text:0x80343B5C; // type:function size:0x3C +fn_80343B98 = .text:0x80343B98; // type:function size:0x104 +fn_80343C9C = .text:0x80343C9C; // type:function size:0xF4 +fn_80343D90 = .text:0x80343D90; // type:function size:0xA8 +fn_80343E38 = .text:0x80343E38; // type:function size:0x108 +fn_80343F40 = .text:0x80343F40; // type:function size:0x90 +fn_80343FD0 = .text:0x80343FD0; // type:function size:0x40 +fn_80344010 = .text:0x80344010; // type:function size:0x8 +fn_80344018 = .text:0x80344018; // type:function size:0xD4 +fn_803440EC = .text:0x803440EC; // type:function size:0x3C +fn_80344128 = .text:0x80344128; // type:function size:0xF8 +fn_80344220 = .text:0x80344220; // type:function size:0x18 +fn_80344238 = .text:0x80344238; // type:function size:0x8 +fn_80344240 = .text:0x80344240; // type:function size:0x1C +fn_8034425C = .text:0x8034425C; // type:function size:0x40 +fn_8034429C = .text:0x8034429C; // type:function size:0x10 +fn_803442AC = .text:0x803442AC; // type:function size:0x8 +fn_803442B4 = .text:0x803442B4; // type:function size:0x48 +__ct__10CacheIDWiiFv = .text:0x803442FC; // type:function size:0x54 +__ct__7CacheIDFv = .text:0x80344350; // type:function size:0x10 +__dt__10CacheIDWiiFv = .text:0x80344360; // type:function size:0x80 +GetCachePath__10CacheIDWiiFPCc = .text:0x803443E0; // type:function size:0xD4 +GetCacheSearchPath__10CacheIDWiiFPCc = .text:0x803444B4; // type:function size:0x7C +fn_80344530 = .text:0x80344530; // type:function size:0xD0 +fn_80344600 = .text:0x80344600; // type:function size:0x74 +fn_80344674 = .text:0x80344674; // type:function size:0xC4 +fn_80344738 = .text:0x80344738; // type:function size:0x8 +fn_80344740 = .text:0x80344740; // type:function size:0x4 +fn_80344744 = .text:0x80344744; // type:function size:0x8 +fn_8034474C = .text:0x8034474C; // type:function size:0x58 +fn_803447A4 = .text:0x803447A4; // type:function size:0x108 +fn_803448AC = .text:0x803448AC; // type:function size:0xD4 +fn_80344980 = .text:0x80344980; // type:function size:0xCC +fn_80344A4C = .text:0x80344A4C; // type:function size:0xE4 +fn_80344B30 = .text:0x80344B30; // type:function size:0x2AC +fn_80344DDC = .text:0x80344DDC; // type:function size:0xC4 +fn_80344EA0 = .text:0x80344EA0; // type:function size:0x128 +fn_80344FC8 = .text:0x80344FC8; // type:function size:0x244 +fn_8034520C = .text:0x8034520C; // type:function size:0x144 +fn_80345350 = .text:0x80345350; // type:function size:0x4 +fn_80345354 = .text:0x80345354; // type:function size:0x88 +fn_803453DC = .text:0x803453DC; // type:function size:0x2C +fn_80345408 = .text:0x80345408; // type:function size:0x10 +fn_80345418 = .text:0x80345418; // type:function size:0x50 +fn_80345468 = .text:0x80345468; // type:function size:0x38 +fn_803454A0 = .text:0x803454A0; // type:function size:0xC0 +fn_80345560 = .text:0x80345560; // type:function size:0x138 +fn_80345698 = .text:0x80345698; // type:function size:0x144 +fn_803457DC = .text:0x803457DC; // type:function size:0xC8 +fn_803458A4 = .text:0x803458A4; // type:function size:0x114 +fn_803459B8 = .text:0x803459B8; // type:function size:0x5C +fn_80345A14 = .text:0x80345A14; // type:function size:0x5C +fn_80345A70 = .text:0x80345A70; // type:function size:0x54 +fn_80345AC4 = .text:0x80345AC4; // type:function size:0x5C +fn_80345B20 = .text:0x80345B20; // type:function size:0x6C +fn_80345B8C = .text:0x80345B8C; // type:function size:0x28 +fn_80345BB4 = .text:0x80345BB4; // type:function size:0x8 +fn_80345BBC = .text:0x80345BBC; // type:function size:0x8 +fn_80345BC4 = .text:0x80345BC4; // type:function size:0x3C +fn_80345C00 = .text:0x80345C00; // type:function size:0x5C +fn_80345C5C = .text:0x80345C5C; // type:function size:0x5C +fn_80345CB8 = .text:0x80345CB8; // type:function size:0x8 +fn_80345CC0 = .text:0x80345CC0; // type:function size:0x8 +fn_80345CC8 = .text:0x80345CC8; // type:function size:0x8 +fn_80345CD0 = .text:0x80345CD0; // type:function size:0x28 +fn_80345CF8 = .text:0x80345CF8; // type:function size:0x4C +fn_80345D44 = .text:0x80345D44; // type:function size:0x30 +fn_80345D74 = .text:0x80345D74; // type:function size:0x5C +fn_80345DD0 = .text:0x80345DD0; // type:function size:0x58 +fn_80345E28 = .text:0x80345E28; // type:function size:0x80 +fn_80345EA8 = .text:0x80345EA8; // type:function size:0x80 +fn_80345F28 = .text:0x80345F28; // type:function size:0x58 +fn_80345F80 = .text:0x80345F80; // type:function size:0x54 +fn_80345FD4 = .text:0x80345FD4; // type:function size:0x5C +fn_80346030 = .text:0x80346030; // type:function size:0x6C +fn_8034609C = .text:0x8034609C; // type:function size:0x28 +fn_803460C4 = .text:0x803460C4; // type:function size:0x8 +fn_803460CC = .text:0x803460CC; // type:function size:0x3C +fn_80346108 = .text:0x80346108; // type:function size:0x30 +fn_80346138 = .text:0x80346138; // type:function size:0x30 +fn_80346168 = .text:0x80346168; // type:function size:0x40 +fn_803461A8 = .text:0x803461A8; // type:function size:0x5C +fn_80346204 = .text:0x80346204; // type:function size:0x28 +fn_8034622C = .text:0x8034622C; // type:function size:0x28 +fn_80346254 = .text:0x80346254; // type:function size:0x28 +fn_8034627C = .text:0x8034627C; // type:function size:0x28 +fn_803462A4 = .text:0x803462A4; // type:function size:0x10 +fn_803462B4 = .text:0x803462B4; // type:function size:0x8 +fn_803462BC = .text:0x803462BC; // type:function size:0x9C +fn_80346358 = .text:0x80346358; // type:function size:0x4 +fn_8034635C = .text:0x8034635C; // type:function size:0x88 +fn_803463E4 = .text:0x803463E4; // type:function size:0x2C +fn_80346410 = .text:0x80346410; // type:function size:0x10 +fn_80346420 = .text:0x80346420; // type:function size:0x40 +fn_80346460 = .text:0x80346460; // type:function size:0x70 +fn_803464D0 = .text:0x803464D0; // type:function size:0x2C +fn_803464FC = .text:0x803464FC; // type:function size:0x84 +fn_80346580 = .text:0x80346580; // type:function size:0x2C +fn_803465AC = .text:0x803465AC; // type:function size:0x28 +fn_803465D4 = .text:0x803465D4; // type:function size:0x68 +fn_8034663C = .text:0x8034663C; // type:function size:0x7C +fn_803466B8 = .text:0x803466B8; // type:function size:0x8 +fn_803466C0 = .text:0x803466C0; // type:function size:0x8 +fn_803466C8 = .text:0x803466C8; // type:function size:0x8 +fn_803466D0 = .text:0x803466D0; // type:function size:0x114 +fn_803467E4 = .text:0x803467E4; // type:function size:0x60 +fn_80346844 = .text:0x80346844; // type:function size:0x5C +fn_803468A0 = .text:0x803468A0; // type:function size:0x54 +fn_803468F4 = .text:0x803468F4; // type:function size:0x5C +fn_80346950 = .text:0x80346950; // type:function size:0x5C +fn_803469AC = .text:0x803469AC; // type:function size:0x74 +fn_80346A20 = .text:0x80346A20; // type:function size:0x15C +fn_80346B7C = .text:0x80346B7C; // type:function size:0x80 +fn_80346BFC = .text:0x80346BFC; // type:function size:0x68 +fn_80346C64 = .text:0x80346C64; // type:function size:0xD0 +fn_80346D34 = .text:0x80346D34; // type:function size:0xC8 +fn_80346DFC = .text:0x80346DFC; // type:function size:0xE8 +fn_80346EE4 = .text:0x80346EE4; // type:function size:0xA4 +fn_80346F88 = .text:0x80346F88; // type:function size:0x8 +fn_80346F90 = .text:0x80346F90; // type:function size:0x1A0 +fn_80347130 = .text:0x80347130; // type:function size:0x64 +fn_80347194 = .text:0x80347194; // type:function size:0x184 +fn_80347318 = .text:0x80347318; // type:function size:0x170 +__ct__13CheatsManagerFv = .text:0x80347488; // type:function size:0x12C +fn_803475B4 = .text:0x803475B4; // type:function size:0x58 +fn_8034760C = .text:0x8034760C; // type:function size:0x58 +fn_80347664 = .text:0x80347664; // type:function size:0x60 +fn_803476C4 = .text:0x803476C4; // type:function size:0x58 +fn_8034771C = .text:0x8034771C; // type:function size:0x58 +fn_80347774 = .text:0x80347774; // type:function size:0x80 +fn_803477F4 = .text:0x803477F4; // type:function size:0x80 +fn_80347874 = .text:0x80347874; // type:function size:0x58 +fn_803478CC = .text:0x803478CC; // type:function size:0x54 +fn_80347920 = .text:0x80347920; // type:function size:0x5C +fn_8034797C = .text:0x8034797C; // type:function size:0x6C +fn_803479E8 = .text:0x803479E8; // type:function size:0x28 +fn_80347A10 = .text:0x80347A10; // type:function size:0x8 +fn_80347A18 = .text:0x80347A18; // type:function size:0x3C +fn_80347A54 = .text:0x80347A54; // type:function size:0x58 +fn_80347AAC = .text:0x80347AAC; // type:function size:0x80 +fn_80347B2C = .text:0x80347B2C; // type:function size:0x80 +fn_80347BAC = .text:0x80347BAC; // type:function size:0x58 +fn_80347C04 = .text:0x80347C04; // type:function size:0x54 +fn_80347C58 = .text:0x80347C58; // type:function size:0x5C +fn_80347CB4 = .text:0x80347CB4; // type:function size:0x6C +fn_80347D20 = .text:0x80347D20; // type:function size:0x28 +fn_80347D48 = .text:0x80347D48; // type:function size:0x8 +fn_80347D50 = .text:0x80347D50; // type:function size:0x8 +fn_80347D58 = .text:0x80347D58; // type:function size:0x3C +fn_80347D94 = .text:0x80347D94; // type:function size:0x30 +fn_80347DC4 = .text:0x80347DC4; // type:function size:0x30 +fn_80347DF4 = .text:0x80347DF4; // type:function size:0x60 +fn_80347E54 = .text:0x80347E54; // type:function size:0x40 +fn_80347E94 = .text:0x80347E94; // type:function size:0x30 +fn_80347EC4 = .text:0x80347EC4; // type:function size:0x30 +fn_80347EF4 = .text:0x80347EF4; // type:function size:0x40 +fn_80347F34 = .text:0x80347F34; // type:function size:0x58 +fn_80347F8C = .text:0x80347F8C; // type:function size:0x80 +fn_8034800C = .text:0x8034800C; // type:function size:0x80 +fn_8034808C = .text:0x8034808C; // type:function size:0x58 +fn_803480E4 = .text:0x803480E4; // type:function size:0x54 +fn_80348138 = .text:0x80348138; // type:function size:0x5C +fn_80348194 = .text:0x80348194; // type:function size:0x6C +fn_80348200 = .text:0x80348200; // type:function size:0x28 +fn_80348228 = .text:0x80348228; // type:function size:0x8 +fn_80348230 = .text:0x80348230; // type:function size:0x3C +fn_8034826C = .text:0x8034826C; // type:function size:0x40 +fn_803482AC = .text:0x803482AC; // type:function size:0x30 +fn_803482DC = .text:0x803482DC; // type:function size:0x30 +fn_8034830C = .text:0x8034830C; // type:function size:0x40 +fn_8034834C = .text:0x8034834C; // type:function size:0x30 +fn_8034837C = .text:0x8034837C; // type:function size:0x30 +fn_803483AC = .text:0x803483AC; // type:function size:0x40 +CallCheatScript__13CheatsManagerFbP9DataArrayP9LocalUserb = .text:0x803483EC; // type:function size:0x3C4 +Handle__13CheatsManagerFP9DataArrayb = .text:0x803487B0; // type:function size:0x178 +__ct__14KeyboardKeyMsgFP9DataArray = .text:0x80348928; // type:function size:0x3C +OnMsg__13CheatsManagerFRC13ButtonDownMsg = .text:0x80348964; // type:function size:0x2F4 +OnMsg__13CheatsManagerFRC14KeyboardKeyMsg = .text:0x80348C58; // type:function size:0xF8 +fn_80348D50 = .text:0x80348D50; // type:function size:0x30 +InitLongJoyCheats__FPC9DataArray = .text:0x80348D80; // type:function size:0xFC +fn_80348E7C = .text:0x80348E7C; // type:function size:0xC +fn_80348E88 = .text:0x80348E88; // type:function size:0x88 +fn_80348F10 = .text:0x80348F10; // type:function size:0x2C +fn_80348F3C = .text:0x80348F3C; // type:function size:0x10 +fn_80348F4C = .text:0x80348F4C; // type:function size:0x4C +fn_80348F98 = .text:0x80348F98; // type:function size:0x4C +fn_80348FE4 = .text:0x80348FE4; // type:function size:0x1B8 +EnableKeyCheats__Fb = .text:0x8034919C; // type:function size:0x2C +fn_803491C8 = .text:0x803491C8; // type:function size:0x8 +SetKeyCheatsEnabled__FP9DataArray = .text:0x803491D0; // type:function size:0x4C +SetCheatMode__FP9DataArray = .text:0x8034921C; // type:function size:0x4C +GetCheatMode__FP9DataArray = .text:0x80349268; // type:function size:0x3C +CheatsInit__Fv = .text:0x803492A4; // type:function size:0xE8 +fn_8034938C = .text:0x8034938C; // type:function size:0x70 +fn_803493FC = .text:0x803493FC; // type:function size:0xBC +fn_803494B8 = .text:0x803494B8; // type:function size:0x20 +fn_803494D8 = .text:0x803494D8; // type:function size:0xA8 +fn_80349580 = .text:0x80349580; // type:function size:0x5C +fn_803495DC = .text:0x803495DC; // type:function size:0x4 +fn_803495E0 = .text:0x803495E0; // type:function size:0x58 +fn_80349638 = .text:0x80349638; // type:function size:0x6C +fn_803496A4 = .text:0x803496A4; // type:function size:0x2C +fn_803496D0 = .text:0x803496D0; // type:function size:0x8 +fn_803496D8 = .text:0x803496D8; // type:function size:0x4 +fn_803496DC = .text:0x803496DC; // type:function size:0x4C +fn_80349728 = .text:0x80349728; // type:function size:0x70 +fn_80349798 = .text:0x80349798; // type:function size:0x30 +fn_803497C8 = .text:0x803497C8; // type:function size:0x2C +fn_803497F4 = .text:0x803497F4; // type:function size:0x4 +fn_803497F8 = .text:0x803497F8; // type:function size:0x54 +fn_8034984C = .text:0x8034984C; // type:function size:0x64 +fn_803498B0 = .text:0x803498B0; // type:function size:0x50 +fn_80349900 = .text:0x80349900; // type:function size:0x10 +fn_80349910 = .text:0x80349910; // type:function size:0x48 +fn_80349958 = .text:0x80349958; // type:function size:0x8 +fn_80349960 = .text:0x80349960; // type:function size:0x34 +fn_80349994 = .text:0x80349994; // type:function size:0x34 +fn_803499C8 = .text:0x803499C8; // type:function size:0x5C +fn_80349A24 = .text:0x80349A24; // type:function size:0xC +fn_80349A30 = .text:0x80349A30; // type:function size:0x68 +fn_80349A98 = .text:0x80349A98; // type:function size:0x114 +fn_80349BAC = .text:0x80349BAC; // type:function size:0x60 +fn_80349C0C = .text:0x80349C0C; // type:function size:0x5C +fn_80349C68 = .text:0x80349C68; // type:function size:0x54 +fn_80349CBC = .text:0x80349CBC; // type:function size:0x5C +fn_80349D18 = .text:0x80349D18; // type:function size:0x5C +fn_80349D74 = .text:0x80349D74; // type:function size:0xA0 +fn_80349E14 = .text:0x80349E14; // type:function size:0x2C +fn_80349E40 = .text:0x80349E40; // type:function size:0x40 +fn_80349E80 = .text:0x80349E80; // type:function size:0xE0 +fn_80349F60 = .text:0x80349F60; // type:function size:0x4C +fn_80349FAC = .text:0x80349FAC; // type:function size:0x54 +fn_8034A000 = .text:0x8034A000; // type:function size:0x3C +fn_8034A03C = .text:0x8034A03C; // type:function size:0x84 +fn_8034A0C0 = .text:0x8034A0C0; // type:function size:0x100 +fn_8034A1C0 = .text:0x8034A1C0; // type:function size:0x64 +fn_8034A224 = .text:0x8034A224; // type:function size:0x84 +fn_8034A2A8 = .text:0x8034A2A8; // type:function size:0x128 +fn_8034A3D0 = .text:0x8034A3D0; // type:function size:0x48 +fn_8034A418 = .text:0x8034A418; // type:function size:0x3C +fn_8034A454 = .text:0x8034A454; // type:function size:0xB0 +fn_8034A504 = .text:0x8034A504; // type:function size:0x68 +fn_8034A56C = .text:0x8034A56C; // type:function size:0x60 +fn_8034A5CC = .text:0x8034A5CC; // type:function size:0x50 +fn_8034A61C = .text:0x8034A61C; // type:function size:0x1C +fn_8034A638 = .text:0x8034A638; // type:function size:0xC4 +fn_8034A6FC = .text:0x8034A6FC; // type:function size:0x28 +fn_8034A724 = .text:0x8034A724; // type:function size:0x20 +fn_8034A744 = .text:0x8034A744; // type:function size:0x70 +fn_8034A7B4 = .text:0x8034A7B4; // type:function size:0xC +fn_8034A7C0 = .text:0x8034A7C0; // type:function size:0xC +fn_8034A7CC = .text:0x8034A7CC; // type:function size:0x10 +fn_8034A7DC = .text:0x8034A7DC; // type:function size:0xF0 +fn_8034A8CC = .text:0x8034A8CC; // type:function size:0x34 +fn_8034A900 = .text:0x8034A900; // type:function size:0x54 +fn_8034A954 = .text:0x8034A954; // type:function size:0x8 +fn_8034A95C = .text:0x8034A95C; // type:function size:0x9C +fn_8034A9F8 = .text:0x8034A9F8; // type:function size:0x98 +fn_8034AA90 = .text:0x8034AA90; // type:function size:0x17C +fn_8034AC0C = .text:0x8034AC0C; // type:function size:0x54 +fn_8034AC60 = .text:0x8034AC60; // type:function size:0x1B8 +fn_8034AE18 = .text:0x8034AE18; // type:function size:0x60 +fn_8034AE78 = .text:0x8034AE78; // type:function size:0xD4 +fn_8034AF4C = .text:0x8034AF4C; // type:function size:0x4 +fn_8034AF50 = .text:0x8034AF50; // type:function size:0x20 +fn_8034AF70 = .text:0x8034AF70; // type:function size:0x1C +fn_8034AF8C = .text:0x8034AF8C; // type:function size:0x11C +fn_8034B0A8 = .text:0x8034B0A8; // type:function size:0x360 +fn_8034B408 = .text:0x8034B408; // type:function size:0x8 +fn_8034B410 = .text:0x8034B410; // type:function size:0x150 +fn_8034B560 = .text:0x8034B560; // type:function size:0x40 +fn_8034B5A0 = .text:0x8034B5A0; // type:function size:0x11C +fn_8034B6BC = .text:0x8034B6BC; // type:function size:0x100 +fn_8034B7BC = .text:0x8034B7BC; // type:function size:0x4 +fn_8034B7C0 = .text:0x8034B7C0; // type:function size:0x54 +fn_8034B814 = .text:0x8034B814; // type:function size:0x64 +fn_8034B878 = .text:0x8034B878; // type:function size:0x50 +fn_8034B8C8 = .text:0x8034B8C8; // type:function size:0x10 +fn_8034B8D8 = .text:0x8034B8D8; // type:function size:0x4 +fn_8034B8DC = .text:0x8034B8DC; // type:function size:0x1C +fn_8034B8F8 = .text:0x8034B8F8; // type:function size:0x6C +fn_8034B964 = .text:0x8034B964; // type:function size:0x4 +fn_8034B968 = .text:0x8034B968; // type:function size:0x44 +fn_8034B9AC = .text:0x8034B9AC; // type:function size:0x6C +fn_8034BA18 = .text:0x8034BA18; // type:function size:0x2C +fn_8034BA44 = .text:0x8034BA44; // type:function size:0x8 +fn_8034BA4C = .text:0x8034BA4C; // type:function size:0x30 +fn_8034BA7C = .text:0x8034BA7C; // type:function size:0x4C +fn_8034BAC8 = .text:0x8034BAC8; // type:function size:0x70 +fn_8034BB38 = .text:0x8034BB38; // type:function size:0x30 +fn_8034BB68 = .text:0x8034BB68; // type:function size:0x2C +fn_8034BB94 = .text:0x8034BB94; // type:function size:0x6C +fn_8034BC00 = .text:0x8034BC00; // type:function size:0xD8 +fn_8034BCD8 = .text:0x8034BCD8; // type:function size:0x38 +fn_8034BD10 = .text:0x8034BD10; // type:function size:0x8 +fn_8034BD18 = .text:0x8034BD18; // type:function size:0x8 +fn_8034BD20 = .text:0x8034BD20; // type:function size:0x60 +fn_8034BD80 = .text:0x8034BD80; // type:function size:0x58 +fn_8034BDD8 = .text:0x8034BDD8; // type:function size:0x58 +fn_8034BE30 = .text:0x8034BE30; // type:function size:0x60 +fn_8034BE90 = .text:0x8034BE90; // type:function size:0x58 +fn_8034BEE8 = .text:0x8034BEE8; // type:function size:0x30 +fn_8034BF18 = .text:0x8034BF18; // type:function size:0x30 +fn_8034BF48 = .text:0x8034BF48; // type:function size:0x60 +fn_8034BFA8 = .text:0x8034BFA8; // type:function size:0x68 +ZAlloc__FPvUiUi = .text:0x8034C010; // type:function size:0xC +ZFree__FPvPv = .text:0x8034C01C; // type:function size:0x8 +DecompressMem__FPCviPvRi = .text:0x8034C024; // type:function size:0x98 +CompressMem__FPCviPvRi = .text:0x8034C0BC; // type:function size:0x9C +fn_8034C158 = .text:0x8034C158; // type:function size:0x38 +fn_8034C190 = .text:0x8034C190; // type:function size:0x5C +fn_8034C1EC = .text:0x8034C1EC; // type:function size:0x90 +fn_8034C27C = .text:0x8034C27C; // type:function size:0x4C +fn_8034C2C8 = .text:0x8034C2C8; // type:function size:0x28 +fn_8034C2F0 = .text:0x8034C2F0; // type:function size:0x40 +fn_8034C330 = .text:0x8034C330; // type:function size:0x98 +fn_8034C3C8 = .text:0x8034C3C8; // type:function size:0x4 +fn_8034C3CC = .text:0x8034C3CC; // type:function size:0xC +fn_8034C3D8 = .text:0x8034C3D8; // type:function size:0x10 +fn_8034C3E8 = .text:0x8034C3E8; // type:function size:0x20 +fn_8034C408 = .text:0x8034C408; // type:function size:0x3C +fn_8034C444 = .text:0x8034C444; // type:function size:0x5C +fn_8034C4A0 = .text:0x8034C4A0; // type:function size:0x1A0 +fn_8034C640 = .text:0x8034C640; // type:function size:0x24 +__ct__18XTEABlockEncrypterFv = .text:0x8034C664; // type:function size:0x18 +SetKey__18XTEABlockEncrypterFPCUc = .text:0x8034C67C; // type:function size:0xC +SetNonce__18XTEABlockEncrypterFPCUxUi = .text:0x8034C688; // type:function size:0x34 +Encrypt__18XTEABlockEncrypterFPC9XTEABlockP9XTEABlock = .text:0x8034C6BC; // type:function size:0xA8 +Encipher__18XTEABlockEncrypterFUxPUi = .text:0x8034C764; // type:function size:0x70 +fn_8034C7D4 = .text:0x8034C7D4; // type:function size:0x64 +fn_8034C838 = .text:0x8034C838; // type:function size:0x88 +fn_8034C8C0 = .text:0x8034C8C0; // type:function size:0x3C +fn_8034C8FC = .text:0x8034C8FC; // type:function size:0x10 +fn_8034C90C = .text:0x8034C90C; // type:function size:0x10 +Set__8FilePathFPCcPCc = .text:0x8034C91C; // type:function size:0x6C +fn_8034C988 = .text:0x8034C988; // type:function size:0x70 +__ct__10FileStreamFPCcQ210FileStream8FileTypeb = .text:0x8034C9F8; // type:function size:0xC0 +__ct__10FileStreamFP4Fileb = .text:0x8034CAB8; // type:function size:0x68 +__dt__10FileStreamFv = .text:0x8034CB20; // type:function size:0xAC +ReadImpl__10FileStreamFPvi = .text:0x8034CBCC; // type:function size:0x84 +WriteImpl__10FileStreamFPCvi = .text:0x8034CC50; // type:function size:0x58 +Flush__10FileStreamFv = .text:0x8034CCA8; // type:function size:0x14 +SeekImpl__10FileStreamFiQ29BinStream8SeekType = .text:0x8034CCBC; // type:function size:0x74 +Tell__10FileStreamFv = .text:0x8034CD30; // type:function size:0x14 +Eof__10FileStreamFv = .text:0x8034CD44; // type:function size:0x38 +Fail__10FileStreamFv = .text:0x8034CD7C; // type:function size:0x8 +DeleteChecksum__10FileStreamFv = .text:0x8034CD84; // type:function size:0x40 +StartChecksum__10FileStreamFv = .text:0x8034CDC4; // type:function size:0x78 +ValidateChecksum__10FileStreamFv = .text:0x8034CE3C; // type:function size:0x84 +fn_8034CEC0 = .text:0x8034CEC0; // type:function size:0x44 +fn_8034CF04 = .text:0x8034CF04; // type:function size:0xA0 +fn_8034CFA4 = .text:0x8034CFA4; // type:function size:0x5C +fn_8034D000 = .text:0x8034D000; // type:function size:0x68 +fn_8034D068 = .text:0x8034D068; // type:function size:0x7C +fn_8034D0E4 = .text:0x8034D0E4; // type:function size:0x4 +fn_8034D0E8 = .text:0x8034D0E8; // type:function size:0x50 +fn_8034D138 = .text:0x8034D138; // type:function size:0x34 +fn_8034D16C = .text:0x8034D16C; // type:function size:0x10 +fn_8034D17C = .text:0x8034D17C; // type:function size:0xE0 +fn_8034D25C = .text:0x8034D25C; // type:function size:0x8 +fn_8034D264 = .text:0x8034D264; // type:function size:0x50 +fn_8034D2B4 = .text:0x8034D2B4; // type:function size:0x40 +fn_8034D2F4 = .text:0x8034D2F4; // type:function size:0x204 +fn_8034D4F8 = .text:0x8034D4F8; // type:function size:0x54 +fn_8034D54C = .text:0x8034D54C; // type:function size:0x14 +fn_8034D560 = .text:0x8034D560; // type:function size:0x48 +fn_8034D5A8 = .text:0x8034D5A8; // type:function size:0xB0 +fn_8034D658 = .text:0x8034D658; // type:function size:0x108 +fn_8034D760 = .text:0x8034D760; // type:function size:0x270 +fn_8034D9D0 = .text:0x8034D9D0; // type:function size:0x44 +fn_8034DA14 = .text:0x8034DA14; // type:function size:0x50 +fn_8034DA64 = .text:0x8034DA64; // type:function size:0x48 +__ct__6HxGuidFv = .text:0x8034DAAC; // type:function size:0x30 +Generate__6HxGuidFv = .text:0x8034DADC; // type:function size:0x68 +Clear__6HxGuidFv = .text:0x8034DB44; // type:function size:0x18 +IsNull__6HxGuidCFv = .text:0x8034DB5C; // type:function size:0x40 +fn_8034DB9C = .text:0x8034DB9C; // type:function size:0xC +ToString__6HxGuidCFv = .text:0x8034DBA8; // type:function size:0x20 +fn_8034DBC8 = .text:0x8034DBC8; // type:function size:0x74 +__eq__6HxGuidCFRC6HxGuid = .text:0x8034DC3C; // type:function size:0x50 +__lt__6HxGuidCFRC6HxGuid = .text:0x8034DC8C; // type:function size:0xAC +fn_8034DD38 = .text:0x8034DD38; // type:function size:0x8 +__ls__FR9BinStreamRC6HxGuid = .text:0x8034DD40; // type:function size:0x64 +__rs__FR9BinStreamR6HxGuid = .text:0x8034DDA4; // type:function size:0x64 +fn_8034DE08 = .text:0x8034DE08; // type:function size:0x48 +fn_8034DE50 = .text:0x8034DE50; // type:function size:0x4C +fn_8034DE9C = .text:0x8034DE9C; // type:function size:0x8 +fn_8034DEA4 = .text:0x8034DEA4; // type:function size:0x4 +fn_8034DEA8 = .text:0x8034DEA8; // type:function size:0x4 +fn_8034DEAC = .text:0x8034DEAC; // type:function size:0x54 +fn_8034DF00 = .text:0x8034DF00; // type:function size:0x2C +fn_8034DF2C = .text:0x8034DF2C; // type:function size:0x44 +fn_8034DF70 = .text:0x8034DF70; // type:function size:0x50 +fn_8034DFC0 = .text:0x8034DFC0; // type:function size:0x8 +fn_8034DFC8 = .text:0x8034DFC8; // type:function size:0x24 +fn_8034DFEC = .text:0x8034DFEC; // type:function size:0x50 +fn_8034E03C = .text:0x8034E03C; // type:function size:0x60 +fn_8034E09C = .text:0x8034E09C; // type:function size:0xEC +fn_8034E188 = .text:0x8034E188; // type:function size:0x30 +fn_8034E1B8 = .text:0x8034E1B8; // type:function size:0x3C +fn_8034E1F4 = .text:0x8034E1F4; // type:function size:0x68 +fn_8034E25C = .text:0x8034E25C; // type:function size:0xB0 +fn_8034E30C = .text:0x8034E30C; // type:function size:0x3C +fn_8034E348 = .text:0x8034E348; // type:function size:0x198 +fn_8034E4E0 = .text:0x8034E4E0; // type:function size:0x5C +fn_8034E53C = .text:0x8034E53C; // type:function size:0xE8 +fn_8034E624 = .text:0x8034E624; // type:function size:0x30 +fn_8034E654 = .text:0x8034E654; // type:function size:0x90 +fn_8034E6E4 = .text:0x8034E6E4; // type:function size:0x60 +fn_8034E744 = .text:0x8034E744; // type:function size:0x90 +fn_8034E7D4 = .text:0x8034E7D4; // type:function size:0x90 +fn_8034E864 = .text:0x8034E864; // type:function size:0x58 +fn_8034E8BC = .text:0x8034E8BC; // type:function size:0x58 +fn_8034E914 = .text:0x8034E914; // type:function size:0x60 +fn_8034E974 = .text:0x8034E974; // type:function size:0x58 +fn_8034E9CC = .text:0x8034E9CC; // type:function size:0x30 +fn_8034E9FC = .text:0x8034E9FC; // type:function size:0x30 +fn_8034EA2C = .text:0x8034EA2C; // type:function size:0x60 +fn_8034EA8C = .text:0x8034EA8C; // type:function size:0x74 +fn_8034EB00 = .text:0x8034EB00; // type:function size:0x54 +fn_8034EB54 = .text:0x8034EB54; // type:function size:0x48 +fn_8034EB9C = .text:0x8034EB9C; // type:function size:0x48 +fn_8034EBE4 = .text:0x8034EBE4; // type:function size:0xAC +fn_8034EC90 = .text:0x8034EC90; // type:function size:0xD0 +fn_8034ED60 = .text:0x8034ED60; // type:function size:0xC8 +fn_8034EE28 = .text:0x8034EE28; // type:function size:0x14C +fn_8034EF74 = .text:0x8034EF74; // type:function size:0x4 +fn_8034EF78 = .text:0x8034EF78; // type:function size:0x4 +fn_8034EF7C = .text:0x8034EF7C; // type:function size:0xC +PollUntilLoaded__7LoadMgrFP6Loader = .text:0x8034EF88; // type:function size:0xF0 +fn_8034F078 = .text:0x8034F078; // type:function size:0x74 +fn_8034F0EC = .text:0x8034F0EC; // type:function size:0x3C +fn_8034F128 = .text:0x8034F128; // type:function size:0x8C +fn_8034F1B4 = .text:0x8034F1B4; // type:function size:0x7C +fn_8034F230 = .text:0x8034F230; // type:function size:0x3C +fn_8034F26C = .text:0x8034F26C; // type:function size:0x8 +fn_8034F274 = .text:0x8034F274; // type:function size:0x10 +fn_8034F284 = .text:0x8034F284; // type:function size:0x10 +fn_8034F294 = .text:0x8034F294; // type:function size:0xB8 +fn_8034F34C = .text:0x8034F34C; // type:function size:0x84 +RegisterFactory__7LoadMgrFPCcPFRC8FilePath9LoaderPos_P6Loader = .text:0x8034F3D0; // type:function size:0x68 +fn_8034F438 = .text:0x8034F438; // type:function size:0x4 +fn_8034F43C = .text:0x8034F43C; // type:function size:0x54 +fn_8034F490 = .text:0x8034F490; // type:function size:0x64 +fn_8034F4F4 = .text:0x8034F4F4; // type:function size:0x50 +fn_8034F544 = .text:0x8034F544; // type:function size:0x10 +fn_8034F554 = .text:0x8034F554; // type:function size:0x44 +__ct__6LoaderFRC8FilePath9LoaderPos = .text:0x8034F598; // type:function size:0x14C +fn_8034F6E4 = .text:0x8034F6E4; // type:function size:0x68 +__dt__6LoaderFv = .text:0x8034F74C; // type:function size:0x90 +__ct__10FileLoaderFRC8FilePathPCc9LoaderPosibbP9BinStream = .text:0x8034F7DC; // type:function size:0xFC +fn_8034F8D8 = .text:0x8034F8D8; // type:function size:0x60 +fn_8034F938 = .text:0x8034F938; // type:function size:0x19C +fn_8034FAD4 = .text:0x8034FAD4; // type:function size:0x38 +fn_8034FB0C = .text:0x8034FB0C; // type:function size:0xC4 +fn_8034FBD0 = .text:0x8034FBD0; // type:function size:0x4 +__dt__10FileLoaderFv = .text:0x8034FBD4; // type:function size:0xA8 +fn_8034FC7C = .text:0x8034FC7C; // type:function size:0x8 +fn_8034FC84 = .text:0x8034FC84; // type:function size:0x60 +fn_8034FCE4 = .text:0x8034FCE4; // type:function size:0x34 +fn_8034FD18 = .text:0x8034FD18; // type:function size:0x84 +fn_8034FD9C = .text:0x8034FD9C; // type:function size:0x16C +fn_8034FF08 = .text:0x8034FF08; // type:function size:0x68 +fn_8034FF70 = .text:0x8034FF70; // type:function size:0x2C +fn_8034FF9C = .text:0x8034FF9C; // type:function size:0x8 +fn_8034FFA4 = .text:0x8034FFA4; // type:function size:0x50 +fn_8034FFF4 = .text:0x8034FFF4; // type:function size:0x74 +fn_80350068 = .text:0x80350068; // type:function size:0x10 +fn_80350078 = .text:0x80350078; // type:function size:0x44 +DataSetLocaleVerboseNotify__FP9DataArray = .text:0x803500BC; // type:function size:0x4C +fn_80350108 = .text:0x80350108; // type:function size:0x8 +fn_80350110 = .text:0x80350110; // type:function size:0x40 +Init__6LocaleFv = .text:0x80350150; // type:function size:0x46C +fn_803505BC = .text:0x803505BC; // type:function size:0x74 +fn_80350630 = .text:0x80350630; // type:function size:0x40 +fn_80350670 = .text:0x80350670; // type:function size:0x84 +Localize__6LocaleCF6Symbolb = .text:0x803506F4; // type:function size:0xA8 +FindDataIndex__6LocaleCF6SymbolRib = .text:0x8035079C; // type:function size:0x9C +Localize__F6SymbolPb = .text:0x80350838; // type:function size:0x74 +LocalizeSeparatedInt__Fi = .text:0x803508AC; // type:function size:0x1BC +LocalizeFloat__FPCcf = .text:0x80350A68; // type:function size:0xF0 +fn_80350B58 = .text:0x80350B58; // type:function size:0x48 +fn_80350BA0 = .text:0x80350BA0; // type:function size:0x54 +LocalizeOrdinal__Fi12LocaleGender12LocaleNumber = .text:0x80350BF4; // type:function size:0x36C +__ct__7LogFileFPCc = .text:0x80350F60; // type:function size:0x68 +__dt__7LogFileFv = .text:0x80350FC8; // type:function size:0xA0 +Reset__7LogFileFv = .text:0x80351068; // type:function size:0x4 +Print__7LogFileFPCc = .text:0x8035106C; // type:function size:0x74 +AdvanceFile__7LogFileFv = .text:0x803510E0; // type:function size:0xD0 +NextBuf__Fv = .text:0x803511B0; // type:function size:0x140 +fn_803512F0 = .text:0x803512F0; // type:function size:0xD8 +fn_803513C8 = .text:0x803513C8; // type:function size:0x14 +fn_803513DC = .text:0x803513DC; // type:function size:0x4 +__ct__12FormatStringFv = .text:0x803513E0; // type:function size:0x44 +__ct__12FormatStringFPCc = .text:0x80351424; // type:function size:0x60 +InitArray__12FormatStringFPCcb = .text:0x80351484; // type:function size:0x6C +UpdateType__12FormatStringFv = .text:0x803514F0; // type:function size:0xE0 +__ls__12FormatStringFUi = .text:0x803515D0; // type:function size:0x80 +fn_80351650 = .text:0x80351650; // type:function size:0x80 +__ls__12FormatStringFi = .text:0x803516D0; // type:function size:0x80 +__ls__12FormatStringFRC8DataNode = .text:0x80351750; // type:function size:0x124 +__ls__12FormatStringFPCc = .text:0x80351874; // type:function size:0x80 +__ls__12FormatStringFf = .text:0x803518F4; // type:function size:0x7C +__ls__12FormatStringFRC6String = .text:0x80351970; // type:function size:0x8C +__ls__12FormatStringF6Symbol = .text:0x803519FC; // type:function size:0x84 +Str__12FormatStringFv = .text:0x80351A80; // type:function size:0x50 +fn_80351AD0 = .text:0x80351AD0; // type:function size:0xD4 +fn_80351BA4 = .text:0x80351BA4; // type:function size:0x74 +fn_80351C18 = .text:0x80351C18; // type:function size:0x70 +fn_80351C88 = .text:0x80351C88; // type:function size:0x58 +fn_80351CE0 = .text:0x80351CE0; // type:function size:0x80 +fn_80351D60 = .text:0x80351D60; // type:function size:0x80 +fn_80351DE0 = .text:0x80351DE0; // type:function size:0x58 +fn_80351E38 = .text:0x80351E38; // type:function size:0x54 +fn_80351E8C = .text:0x80351E8C; // type:function size:0x5C +fn_80351EE8 = .text:0x80351EE8; // type:function size:0x6C +fn_80351F54 = .text:0x80351F54; // type:function size:0x28 +fn_80351F7C = .text:0x80351F7C; // type:function size:0x8 +fn_80351F84 = .text:0x80351F84; // type:function size:0x3C +fn_80351FC0 = .text:0x80351FC0; // type:function size:0x4 +fn_80351FC4 = .text:0x80351FC4; // type:function size:0x88 +fn_8035204C = .text:0x8035204C; // type:function size:0x2C +fn_80352078 = .text:0x80352078; // type:function size:0x2C +fn_803520A4 = .text:0x803520A4; // type:function size:0x30 +fn_803520D4 = .text:0x803520D4; // type:function size:0x30 +fn_80352104 = .text:0x80352104; // type:function size:0x40 +fn_80352144 = .text:0x80352144; // type:function size:0x9C +fn_803521E0 = .text:0x803521E0; // type:function size:0x8 +fn_803521E8 = .text:0x803521E8; // type:function size:0xAC +fn_80352294 = .text:0x80352294; // type:function size:0x24 +fn_803522B8 = .text:0x803522B8; // type:function size:0x24 +fn_803522DC = .text:0x803522DC; // type:function size:0xC4 +fn_803523A0 = .text:0x803523A0; // type:function size:0xEC +fn_8035248C = .text:0x8035248C; // type:function size:0x24 +fn_803524B0 = .text:0x803524B0; // type:function size:0x4 +fn_803524B4 = .text:0x803524B4; // type:function size:0x3C +fn_803524F0 = .text:0x803524F0; // type:function size:0x2C +fn_8035251C = .text:0x8035251C; // type:function size:0x1C +fn_80352538 = .text:0x80352538; // type:function size:0x1C +fn_80352554 = .text:0x80352554; // type:function size:0x114 +fn_80352668 = .text:0x80352668; // type:function size:0x60 +fn_803526C8 = .text:0x803526C8; // type:function size:0x5C +fn_80352724 = .text:0x80352724; // type:function size:0x54 +fn_80352778 = .text:0x80352778; // type:function size:0x5C +fn_803527D4 = .text:0x803527D4; // type:function size:0x5C +AttemptMerge__9FreeBlockFP9FreeBlocki = .text:0x80352830; // type:function size:0xA0 +fn_803528D0 = .text:0x803528D0; // type:function size:0x28 +fn_803528F8 = .text:0x803528F8; // type:function size:0x10 +fn_80352908 = .text:0x80352908; // type:function size:0x10 +fn_80352918 = .text:0x80352918; // type:function size:0x10 +fn_80352928 = .text:0x80352928; // type:function size:0x138 +fn_80352A60 = .text:0x80352A60; // type:function size:0x60 +fn_80352AC0 = .text:0x80352AC0; // type:function size:0x40 +fn_80352B00 = .text:0x80352B00; // type:function size:0x80 +InsertFreeBlock__4HeapFP9FreeBlockiP9FreeBlockP9FreeBlocki = .text:0x80352B80; // type:function size:0x68 +fn_80352BE8 = .text:0x80352BE8; // type:function size:0xD4 +fn_80352CBC = .text:0x80352CBC; // type:function size:0xC8 +fn_80352D84 = .text:0x80352D84; // type:function size:0x78 +fn_80352DFC = .text:0x80352DFC; // type:function size:0x8C +fn_80352E88 = .text:0x80352E88; // type:function size:0x28 +fn_80352EB0 = .text:0x80352EB0; // type:function size:0xFC +fn_80352FAC = .text:0x80352FAC; // type:function size:0x20 +fn_80352FCC = .text:0x80352FCC; // type:function size:0xC0 +fn_8035308C = .text:0x8035308C; // type:function size:0x60 +fn_803530EC = .text:0x803530EC; // type:function size:0xA8 +fn_80353194 = .text:0x80353194; // type:function size:0x88 +fn_8035321C = .text:0x8035321C; // type:function size:0x28C +fn_803534A8 = .text:0x803534A8; // type:function size:0xC +fn_803534B4 = .text:0x803534B4; // type:function size:0x38 +fn_803534EC = .text:0x803534EC; // type:function size:0x10 +fn_803534FC = .text:0x803534FC; // type:function size:0x54 +Truncate__4HeapFPiiRi = .text:0x80353550; // type:function size:0x128 +fn_80353678 = .text:0x80353678; // type:function size:0x18 +fn_80353690 = .text:0x80353690; // type:function size:0x18 +fn_803536A8 = .text:0x803536A8; // type:function size:0x50 +FindFreeNeighbors__4HeapFP10AllocBlockRP9FreeBlockRP9FreeBlock = .text:0x803536F8; // type:function size:0x64 +Free__4HeapFPi = .text:0x8035375C; // type:function size:0x110 +fn_8035386C = .text:0x8035386C; // type:function size:0x44 +fn_803538B0 = .text:0x803538B0; // type:function size:0x30 +fn_803538E0 = .text:0x803538E0; // type:function size:0x8 +fn_803538E8 = .text:0x803538E8; // type:function size:0xBC +fn_803539A4 = .text:0x803539A4; // type:function size:0x40 +fn_803539E4 = .text:0x803539E4; // type:function size:0x98 +fn_80353A7C = .text:0x80353A7C; // type:function size:0x1B4 +fn_80353C30 = .text:0x80353C30; // type:function size:0xB0 +fn_80353CE0 = .text:0x80353CE0; // type:function size:0x8C +fn_80353D6C = .text:0x80353D6C; // type:function size:0x74 +fn_80353DE0 = .text:0x80353DE0; // type:function size:0x4 +fn_80353DE4 = .text:0x80353DE4; // type:function size:0x34 +_MemAlloc__Fii = .text:0x80353E18; // type:function size:0x370 +fn_80354188 = .text:0x80354188; // type:function size:0x30 +MemAllocTemp__Fii = .text:0x803541B8; // type:function size:0x80 +MemFree__FPv = .text:0x80354238; // type:function size:0xD8 +fn_80354310 = .text:0x80354310; // type:function size:0x108 +fn_80354418 = .text:0x80354418; // type:function size:0xC0 +MemRealloc__FPvii = .text:0x803544D8; // type:function size:0xCC +fn_803545A4 = .text:0x803545A4; // type:function size:0xC +fn_803545B0 = .text:0x803545B0; // type:function size:0x8C +fn_8035463C = .text:0x8035463C; // type:function size:0x30 +fn_8035466C = .text:0x8035466C; // type:function size:0x14 +fn_80354680 = .text:0x80354680; // type:function size:0x8C +fn_8035470C = .text:0x8035470C; // type:function size:0x14 +fn_80354720 = .text:0x80354720; // type:function size:0x18 +fn_80354738 = .text:0x80354738; // type:function size:0x1C +fn_80354754 = .text:0x80354754; // type:function size:0x14 +fn_80354768 = .text:0x80354768; // type:function size:0x74 +fn_803547DC = .text:0x803547DC; // type:function size:0x44 +fn_80354820 = .text:0x80354820; // type:function size:0x10 +__nw__FUl = .text:0x80354830; // type:function size:0x8 +__dl__FPv = .text:0x80354838; // type:function size:0x4 +__nwa__FUl = .text:0x8035483C; // type:function size:0x8 +__dla__FPv = .text:0x80354844; // type:function size:0x4 +MemOrPoolAlloc__Fi8PoolType = .text:0x80354848; // type:function size:0x30 +MemOrPoolFree__Fi8PoolTypePv = .text:0x80354878; // type:function size:0x20 +_MemOrPoolAllocSTL__Fi8PoolType = .text:0x80354898; // type:function size:0x30 +_MemOrPoolFreeSTL__Fi8PoolTypePv = .text:0x803548C8; // type:function size:0x20 +fn_803548E8 = .text:0x803548E8; // type:function size:0x4 +fn_803548EC = .text:0x803548EC; // type:function size:0xD4 +fn_803549C0 = .text:0x803549C0; // type:function size:0x70 +InitDefaultHeap__21@unnamed@Mem_Wii_cpp@Fv = .text:0x80354A30; // type:function size:0xC8 +fn_80354AF8 = .text:0x80354AF8; // type:function size:0x8 +WiiAllocHeapAlign = .text:0x80354B00; // type:function size:0xB8 +WiiMalloc = .text:0x80354BB8; // type:function size:0x70 +WiiFree = .text:0x80354C28; // type:function size:0x78 +fn_80354CA0 = .text:0x80354CA0; // type:function size:0x38 +fn_80354CD8 = .text:0x80354CD8; // type:function size:0x78 +fn_80354D50 = .text:0x80354D50; // type:function size:0x38 +fn_80354D88 = .text:0x80354D88; // type:function size:0x7C +fn_80354E04 = .text:0x80354E04; // type:function size:0x68 +__ct__9MemStreamFb = .text:0x80354E6C; // type:function size:0x6C +fn_80354ED8 = .text:0x80354ED8; // type:function size:0x30 +fn_80354F08 = .text:0x80354F08; // type:function size:0x30 +fn_80354F38 = .text:0x80354F38; // type:function size:0x40 +ReadImpl__9MemStreamFPvi = .text:0x80354F78; // type:function size:0x8C +WriteImpl__9MemStreamFPCvi = .text:0x80355004; // type:function size:0xAC +SeekImpl__9MemStreamFiQ29BinStream8SeekType = .text:0x803550B0; // type:function size:0x9C +fn_8035514C = .text:0x8035514C; // type:function size:0x44 +__sinit_\messageset1_cpp = .text:0x80355190; // type:function size:0xC88 +__sinit_\messageset2_cpp = .text:0x80355E18; // type:function size:0xA30 +__sinit_\messageset3_cpp = .text:0x80356848; // type:function size:0xAA8 +__sinit_\messageset4_cpp = .text:0x803572F0; // type:function size:0xB20 +__ct__18MultiTempoTempoMapFv = .text:0x80357E10; // type:function size:0x64 +fn_80357E74 = .text:0x80357E74; // type:function size:0x58 +fn_80357ECC = .text:0x80357ECC; // type:function size:0x80 +fn_80357F4C = .text:0x80357F4C; // type:function size:0x80 +fn_80357FCC = .text:0x80357FCC; // type:function size:0x58 +fn_80358024 = .text:0x80358024; // type:function size:0x54 +fn_80358078 = .text:0x80358078; // type:function size:0x5C +fn_803580D4 = .text:0x803580D4; // type:function size:0x6C +fn_80358140 = .text:0x80358140; // type:function size:0x28 +fn_80358168 = .text:0x80358168; // type:function size:0x8 +fn_80358170 = .text:0x80358170; // type:function size:0x3C +fn_803581AC = .text:0x803581AC; // type:function size:0x30 +fn_803581DC = .text:0x803581DC; // type:function size:0x30 +fn_8035820C = .text:0x8035820C; // type:function size:0x40 +__ct__8TempoMapFv = .text:0x8035824C; // type:function size:0x10 +GetTempo__18MultiTempoTempoMapCFi = .text:0x8035825C; // type:function size:0x9C +GetTempoUSecs__18MultiTempoTempoMapFi = .text:0x803582F8; // type:function size:0x78 +GetTempoBPM__18MultiTempoTempoMapCFi = .text:0x80358370; // type:function size:0x38 +TickToTime__18MultiTempoTempoMapCFf = .text:0x803583A8; // type:function size:0x180 +TimeToTick__18MultiTempoTempoMapCFf = .text:0x80358528; // type:function size:0x16C +fn_80358694 = .text:0x80358694; // type:function size:0xE4 +fn_80358778 = .text:0x80358778; // type:function size:0x4 +fn_8035877C = .text:0x8035877C; // type:function size:0x88 +fn_80358804 = .text:0x80358804; // type:function size:0x2C +fn_80358830 = .text:0x80358830; // type:function size:0x10 +fn_80358840 = .text:0x80358840; // type:function size:0x24 +V_Unk10__18MultiTempoTempoMapFv = .text:0x80358864; // type:function size:0x1C +V_Unk11__18MultiTempoTempoMapFii = .text:0x80358880; // type:function size:0x94 +V_Unk12__18MultiTempoTempoMapFiPi = .text:0x80358914; // type:function size:0xA4 +V_Unk13__18MultiTempoTempoMapFiPi = .text:0x803589B8; // type:function size:0x30 +V_Unk14__18MultiTempoTempoMapFv = .text:0x803589E8; // type:function size:0xCC +GetNumTempoChangePoints__18MultiTempoTempoMapCFv = .text:0x80358AB4; // type:function size:0x8 +GetTempoChangePoint__18MultiTempoTempoMapCFi = .text:0x80358ABC; // type:function size:0x4C +V_Unk9__18MultiTempoTempoMapFv = .text:0x80358B08; // type:function size:0x8 +fn_80358B10 = .text:0x80358B10; // type:function size:0x4C +fn_80358B5C = .text:0x80358B5C; // type:function size:0x4 +fn_80358B60 = .text:0x80358B60; // type:function size:0x50 +fn_80358BB0 = .text:0x80358BB0; // type:function size:0x58 +fn_80358C08 = .text:0x80358C08; // type:function size:0x30 +fn_80358C38 = .text:0x80358C38; // type:function size:0x98 +fn_80358CD0 = .text:0x80358CD0; // type:function size:0x5C +fn_80358D2C = .text:0x80358D2C; // type:function size:0x70 +fn_80358D9C = .text:0x80358D9C; // type:function size:0x80 +fn_80358E1C = .text:0x80358E1C; // type:function size:0x8 +fn_80358E24 = .text:0x80358E24; // type:function size:0xAC +fn_80358ED0 = .text:0x80358ED0; // type:function size:0x24 +fn_80358EF4 = .text:0x80358EF4; // type:function size:0x3C +fn_80358F30 = .text:0x80358F30; // type:function size:0x64 +fn_80358F94 = .text:0x80358F94; // type:function size:0x14 +__dt__18MultiTempoTempoMapFv = .text:0x80358FA8; // type:function size:0x68 +fn_80359010 = .text:0x80359010; // type:function size:0x114 +fn_80359124 = .text:0x80359124; // type:function size:0x5C +fn_80359180 = .text:0x80359180; // type:function size:0x5C +fn_803591DC = .text:0x803591DC; // type:function size:0x54 +fn_80359230 = .text:0x80359230; // type:function size:0x5C +fn_8035928C = .text:0x8035928C; // type:function size:0x70 +fn_803592FC = .text:0x803592FC; // type:function size:0x60 +fn_8035935C = .text:0x8035935C; // type:function size:0x84 +fn_803593E0 = .text:0x803593E0; // type:function size:0x8 +fn_803593E8 = .text:0x803593E8; // type:function size:0x8 +fn_803593F0 = .text:0x803593F0; // type:function size:0x8 +fn_803593F8 = .text:0x803593F8; // type:function size:0x1C +fn_80359414 = .text:0x80359414; // type:function size:0x28 +fn_8035943C = .text:0x8035943C; // type:function size:0x58 +fn_80359494 = .text:0x80359494; // type:function size:0x8 +fn_8035949C = .text:0x8035949C; // type:function size:0x4 +fn_803594A0 = .text:0x803594A0; // type:function size:0x14 +fn_803594B4 = .text:0x803594B4; // type:function size:0x144 +fn_803595F8 = .text:0x803595F8; // type:function size:0x94 +fn_8035968C = .text:0x8035968C; // type:function size:0xC8 +fn_80359754 = .text:0x80359754; // type:function size:0x10 +fn_80359764 = .text:0x80359764; // type:function size:0x6C +fn_803597D0 = .text:0x803597D0; // type:function size:0x88 +fn_80359858 = .text:0x80359858; // type:function size:0x12C +fn_80359984 = .text:0x80359984; // type:function size:0x5C +fn_803599E0 = .text:0x803599E0; // type:function size:0x30 +fn_80359A10 = .text:0x80359A10; // type:function size:0x68 +fn_80359A78 = .text:0x80359A78; // type:function size:0x68 +fn_80359AE0 = .text:0x80359AE0; // type:function size:0xAC +fn_80359B8C = .text:0x80359B8C; // type:function size:0x60 +fn_80359BEC = .text:0x80359BEC; // type:function size:0xA4 +fn_80359C90 = .text:0x80359C90; // type:function size:0x60 +fn_80359CF0 = .text:0x80359CF0; // type:function size:0x7C +fn_80359D6C = .text:0x80359D6C; // type:function size:0x60 +fn_80359DCC = .text:0x80359DCC; // type:function size:0x9C +fn_80359E68 = .text:0x80359E68; // type:function size:0x5C +fn_80359EC4 = .text:0x80359EC4; // type:function size:0x8 +fn_80359ECC = .text:0x80359ECC; // type:function size:0x1A0 +fn_8035A06C = .text:0x8035A06C; // type:function size:0x20 +fn_8035A08C = .text:0x8035A08C; // type:function size:0x9C +fn_8035A128 = .text:0x8035A128; // type:function size:0x64 +fn_8035A18C = .text:0x8035A18C; // type:function size:0x14 +fn_8035A1A0 = .text:0x8035A1A0; // type:function size:0x14 +fn_8035A1B4 = .text:0x8035A1B4; // type:function size:0x8 +fn_8035A1BC = .text:0x8035A1BC; // type:function size:0x128 +fn_8035A2E4 = .text:0x8035A2E4; // type:function size:0x8 +fn_8035A2EC = .text:0x8035A2EC; // type:function size:0x24 +fn_8035A310 = .text:0x8035A310; // type:function size:0x2C +fn_8035A33C = .text:0x8035A33C; // type:function size:0x30 +fn_8035A36C = .text:0x8035A36C; // type:function size:0x214 +fn_8035A580 = .text:0x8035A580; // type:function size:0x9C +fn_8035A61C = .text:0x8035A61C; // type:function size:0x38 +fn_8035A654 = .text:0x8035A654; // type:function size:0x3C +fn_8035A690 = .text:0x8035A690; // type:function size:0x4C +fn_8035A6DC = .text:0x8035A6DC; // type:function size:0xCC +fn_8035A7A8 = .text:0x8035A7A8; // type:function size:0x58 +fn_8035A800 = .text:0x8035A800; // type:function size:0x58 +fn_8035A858 = .text:0x8035A858; // type:function size:0x60 +fn_8035A8B8 = .text:0x8035A8B8; // type:function size:0x58 +fn_8035A910 = .text:0x8035A910; // type:function size:0x58 +fn_8035A968 = .text:0x8035A968; // type:function size:0x58 +fn_8035A9C0 = .text:0x8035A9C0; // type:function size:0x60 +fn_8035AA20 = .text:0x8035AA20; // type:function size:0x58 +fn_8035AA78 = .text:0x8035AA78; // type:function size:0x30 +fn_8035AAA8 = .text:0x8035AAA8; // type:function size:0x30 +fn_8035AAD8 = .text:0x8035AAD8; // type:function size:0x60 +fn_8035AB38 = .text:0x8035AB38; // type:function size:0x30 +fn_8035AB68 = .text:0x8035AB68; // type:function size:0x30 +fn_8035AB98 = .text:0x8035AB98; // type:function size:0x60 +fn_8035ABF8 = .text:0x8035ABF8; // type:function size:0x80 +fn_8035AC78 = .text:0x8035AC78; // type:function size:0x230 +fn_8035AEA8 = .text:0x8035AEA8; // type:function size:0x4 +fn_8035AEAC = .text:0x8035AEAC; // type:function size:0x4 +fn_8035AEB0 = .text:0x8035AEB0; // type:function size:0xC +fn_8035AEBC = .text:0x8035AEBC; // type:function size:0x4 +fn_8035AEC0 = .text:0x8035AEC0; // type:function size:0x54 +fn_8035AF14 = .text:0x8035AF14; // type:function size:0x64 +fn_8035AF78 = .text:0x8035AF78; // type:function size:0x50 +fn_8035AFC8 = .text:0x8035AFC8; // type:function size:0x10 +fn_8035AFD8 = .text:0x8035AFD8; // type:function size:0x5C +fn_8035B034 = .text:0x8035B034; // type:function size:0x24 +fn_8035B058 = .text:0x8035B058; // type:function size:0x24 +fn_8035B07C = .text:0x8035B07C; // type:function size:0x24 +fn_8035B0A0 = .text:0x8035B0A0; // type:function size:0x24 +fn_8035B0C4 = .text:0x8035B0C4; // type:function size:0x8C +fn_8035B150 = .text:0x8035B150; // type:function size:0x1B0 +fn_8035B300 = .text:0x8035B300; // type:function size:0x50 +fn_8035B350 = .text:0x8035B350; // type:function size:0x6C +fn_8035B3BC = .text:0x8035B3BC; // type:function size:0x2C +fn_8035B3E8 = .text:0x8035B3E8; // type:function size:0x8 +fn_8035B3F0 = .text:0x8035B3F0; // type:function size:0x4 +fn_8035B3F4 = .text:0x8035B3F4; // type:function size:0x4 +fn_8035B3F8 = .text:0x8035B3F8; // type:function size:0x5C +fn_8035B454 = .text:0x8035B454; // type:function size:0x4 +fn_8035B458 = .text:0x8035B458; // type:function size:0x8 +fn_8035B460 = .text:0x8035B460; // type:function size:0x44 +fn_8035B4A4 = .text:0x8035B4A4; // type:function size:0x28 +fn_8035B4CC = .text:0x8035B4CC; // type:function size:0x44 +fn_8035B510 = .text:0x8035B510; // type:function size:0x44 +fn_8035B554 = .text:0x8035B554; // type:function size:0x290 +fn_8035B7E4 = .text:0x8035B7E4; // type:function size:0x34 +fn_8035B818 = .text:0x8035B818; // type:function size:0x4 +fn_8035B81C = .text:0x8035B81C; // type:function size:0x54 +fn_8035B870 = .text:0x8035B870; // type:function size:0x64 +fn_8035B8D4 = .text:0x8035B8D4; // type:function size:0x50 +fn_8035B924 = .text:0x8035B924; // type:function size:0x10 +fn_8035B934 = .text:0x8035B934; // type:function size:0x54 +fn_8035B988 = .text:0x8035B988; // type:function size:0x30 +fn_8035B9B8 = .text:0x8035B9B8; // type:function size:0x4 +fn_8035B9BC = .text:0x8035B9BC; // type:function size:0x54 +fn_8035BA10 = .text:0x8035BA10; // type:function size:0x4C +fn_8035BA5C = .text:0x8035BA5C; // type:function size:0x54 +fn_8035BAB0 = .text:0x8035BAB0; // type:function size:0x4C +fn_8035BAFC = .text:0x8035BAFC; // type:function size:0x40 +fn_8035BB3C = .text:0x8035BB3C; // type:function size:0xB0 +fn_8035BBEC = .text:0x8035BBEC; // type:function size:0xB0 +fn_8035BC9C = .text:0x8035BC9C; // type:function size:0x14 +fn_8035BCB0 = .text:0x8035BCB0; // type:function size:0x34 +fn_8035BCE4 = .text:0x8035BCE4; // type:function size:0x8 +fn_8035BCEC = .text:0x8035BCEC; // type:function size:0x54 +fn_8035BD40 = .text:0x8035BD40; // type:function size:0xBC +fn_8035BDFC = .text:0x8035BDFC; // type:function size:0x7C +fn_8035BE78 = .text:0x8035BE78; // type:function size:0xE8 +fn_8035BF60 = .text:0x8035BF60; // type:function size:0xEC +fn_8035C04C = .text:0x8035C04C; // type:function size:0x2C +fn_8035C078 = .text:0x8035C078; // type:function size:0x14 +fn_8035C08C = .text:0x8035C08C; // type:function size:0x30 +fn_8035C0BC = .text:0x8035C0BC; // type:function size:0x80 +fn_8035C13C = .text:0x8035C13C; // type:function size:0x3C +fn_8035C178 = .text:0x8035C178; // type:function size:0x94 +fn_8035C20C = .text:0x8035C20C; // type:function size:0x2C +fn_8035C238 = .text:0x8035C238; // type:function size:0x30 +Handle__11NetCacheMgrFP9DataArrayb = .text:0x8035C268; // type:function size:0xB8 +fn_8035C320 = .text:0x8035C320; // type:function size:0x10 +fn_8035C330 = .text:0x8035C330; // type:function size:0x10 +fn_8035C340 = .text:0x8035C340; // type:function size:0x74 +fn_8035C3B4 = .text:0x8035C3B4; // type:function size:0x20 +fn_8035C3D4 = .text:0x8035C3D4; // type:function size:0x74 +fn_8035C448 = .text:0x8035C448; // type:function size:0x54 +fn_8035C49C = .text:0x8035C49C; // type:function size:0x54 +fn_8035C4F0 = .text:0x8035C4F0; // type:function size:0x68 +fn_8035C558 = .text:0x8035C558; // type:function size:0x68 +fn_8035C5C0 = .text:0x8035C5C0; // type:function size:0x68 +fn_8035C628 = .text:0x8035C628; // type:function size:0x2C +fn_8035C654 = .text:0x8035C654; // type:function size:0x58 +DataOptionStr__FP9DataArray = .text:0x8035C6AC; // type:function size:0x98 +DataOptionSym__FP9DataArray = .text:0x8035C744; // type:function size:0xB4 +DataOptionBool__FP9DataArray = .text:0x8035C7F8; // type:function size:0x48 +OptionInit__Fv = .text:0x8035C840; // type:function size:0x74 +FindOption__FPCc = .text:0x8035C8B4; // type:function size:0x80 +OptionBool__FPCcb = .text:0x8035C934; // type:function size:0x68 +OptionStr__FPCcPCc = .text:0x8035C99C; // type:function size:0x80 +fn_8035CA1C = .text:0x8035CA1C; // type:function size:0x30 +fn_8035CA4C = .text:0x8035CA4C; // type:function size:0x44 +fn_8035CA90 = .text:0x8035CA90; // type:function size:0x28 +fn_8035CAB8 = .text:0x8035CAB8; // type:function size:0x68 +fn_8035CB20 = .text:0x8035CB20; // type:function size:0x28 +fn_8035CB48 = .text:0x8035CB48; // type:function size:0xC +fn_8035CB54 = .text:0x8035CB54; // type:function size:0x78 +fn_8035CBCC = .text:0x8035CBCC; // type:function size:0x114 +fn_8035CCE0 = .text:0x8035CCE0; // type:function size:0x30 +fn_8035CD10 = .text:0x8035CD10; // type:function size:0x60 +fn_8035CD70 = .text:0x8035CD70; // type:function size:0x1C +fn_8035CD8C = .text:0x8035CD8C; // type:function size:0x98 +fn_8035CE24 = .text:0x8035CE24; // type:function size:0x8 +fn_8035CE2C = .text:0x8035CE2C; // type:function size:0xE0 +fn_8035CF0C = .text:0x8035CF0C; // type:function size:0x40 +fn_8035CF4C = .text:0x8035CF4C; // type:function size:0x50 +_PoolAlloc__Fii8PoolType = .text:0x8035CF9C; // type:function size:0x238 +fn_8035D1D4 = .text:0x8035D1D4; // type:function size:0x80 +_PoolFree__Fi8PoolTypePv = .text:0x8035D254; // type:function size:0x94 +fn_8035D2E8 = .text:0x8035D2E8; // type:function size:0x30 +fn_8035D318 = .text:0x8035D318; // type:function size:0x6C +fn_8035D384 = .text:0x8035D384; // type:function size:0x8 +fn_8035D38C = .text:0x8035D38C; // type:function size:0x100 +fn_8035D48C = .text:0x8035D48C; // type:function size:0x3C +fn_8035D4C8 = .text:0x8035D4C8; // type:function size:0x3C +fn_8035D504 = .text:0x8035D504; // type:function size:0x34 +fn_8035D538 = .text:0x8035D538; // type:function size:0x11C +fn_8035D654 = .text:0x8035D654; // type:function size:0x7C +fn_8035D6D0 = .text:0x8035D6D0; // type:function size:0x50 +fn_8035D720 = .text:0x8035D720; // type:function size:0x7C +fn_8035D79C = .text:0x8035D79C; // type:function size:0x18 +fn_8035D7B4 = .text:0x8035D7B4; // type:function size:0x7C +fn_8035D830 = .text:0x8035D830; // type:function size:0x38 +fn_8035D868 = .text:0x8035D868; // type:function size:0x198 +fn_8035DA00 = .text:0x8035DA00; // type:function size:0x12C +fn_8035DB2C = .text:0x8035DB2C; // type:function size:0x54 +fn_8035DB80 = .text:0x8035DB80; // type:function size:0xF4 +__ct__4SongFv = .text:0x8035DC74; // type:function size:0x1A0 +__dt__4SongFv = .text:0x8035DE14; // type:function size:0x13C +Copy__4SongFPCQ23Hmx6ObjectQ33Hmx6Object8CopyType = .text:0x8035DF50; // type:function size:0x4 +Save__4SongFR9BinStream = .text:0x8035DF54; // type:function size:0x4 +Load__4SongFR9BinStream = .text:0x8035DF58; // type:function size:0xC4 +fn_8035E01C = .text:0x8035E01C; // type:function size:0x94 +fn_8035E0B0 = .text:0x8035E0B0; // type:function size:0xBC +fn_8035E16C = .text:0x8035E16C; // type:function size:0xA0 +fn_8035E20C = .text:0x8035E20C; // type:function size:0x24 +fn_8035E230 = .text:0x8035E230; // type:function size:0x24 +fn_8035E254 = .text:0x8035E254; // type:function size:0x24 +fn_8035E278 = .text:0x8035E278; // type:function size:0x144 +fn_8035E3BC = .text:0x8035E3BC; // type:function size:0x1A4 +fn_8035E560 = .text:0x8035E560; // type:function size:0xFC +fn_8035E65C = .text:0x8035E65C; // type:function size:0x1E8 +fn_8035E844 = .text:0x8035E844; // type:function size:0x10 +fn_8035E854 = .text:0x8035E854; // type:function size:0x84 +fn_8035E8D8 = .text:0x8035E8D8; // type:function size:0x114 +fn_8035E9EC = .text:0x8035E9EC; // type:function size:0x80 +fn_8035EA6C = .text:0x8035EA6C; // type:function size:0x38 +fn_8035EAA4 = .text:0x8035EAA4; // type:function size:0x10C +fn_8035EBB0 = .text:0x8035EBB0; // type:function size:0xE4 +fn_8035EC94 = .text:0x8035EC94; // type:function size:0xCC +fn_8035ED60 = .text:0x8035ED60; // type:function size:0x4 +fn_8035ED64 = .text:0x8035ED64; // type:function size:0x94 +fn_8035EDF8 = .text:0x8035EDF8; // type:function size:0x524 +fn_8035F31C = .text:0x8035F31C; // type:function size:0x3C +fn_8035F358 = .text:0x8035F358; // type:function size:0x3C +Handle__4SongFP9DataArrayb = .text:0x8035F394; // type:function size:0x3D4 +fn_8035F768 = .text:0x8035F768; // type:function size:0x160 +fn_8035F8C8 = .text:0x8035F8C8; // type:function size:0x160 +fn_8035FA28 = .text:0x8035FA28; // type:function size:0x30 +fn_8035FA58 = .text:0x8035FA58; // type:function size:0x30 +fn_8035FA88 = .text:0x8035FA88; // type:function size:0x8C +fn_8035FB14 = .text:0x8035FB14; // type:function size:0xC +fn_8035FB20 = .text:0x8035FB20; // type:function size:0xC +fn_8035FB2C = .text:0x8035FB2C; // type:function size:0x74 +fn_8035FBA0 = .text:0x8035FBA0; // type:function size:0x74 +fn_8035FC14 = .text:0x8035FC14; // type:function size:0xA4 +fn_8035FCB8 = .text:0x8035FCB8; // type:function size:0x6C +fn_8035FD24 = .text:0x8035FD24; // type:function size:0x70 +fn_8035FD94 = .text:0x8035FD94; // type:function size:0x18 +fn_8035FDAC = .text:0x8035FDAC; // type:function size:0x114 +SyncProperty__4SongFR8DataNodeP9DataArrayi6PropOp = .text:0x8035FEC0; // type:function size:0x25C +fn_8036011C = .text:0x8036011C; // type:function size:0x1E8 +fn_80360304 = .text:0x80360304; // type:function size:0x6C +fn_80360370 = .text:0x80360370; // type:function size:0x44 +fn_803603B4 = .text:0x803603B4; // type:function size:0x10 +fn_803603C4 = .text:0x803603C4; // type:function size:0x10 +SetType__4SongF6Symbol = .text:0x803603D4; // type:function size:0x134 +StaticClassName__4SongFv = .text:0x80360508; // type:function size:0x4C +ClassName__4SongCFv = .text:0x80360554; // type:function size:0x4 +fn_80360558 = .text:0x80360558; // type:function size:0x14 +fn_8036056C = .text:0x8036056C; // type:function size:0x14 +fn_80360580 = .text:0x80360580; // type:function size:0x14 +fn_80360594 = .text:0x80360594; // type:function size:0x14 +fn_803605A8 = .text:0x803605A8; // type:function size:0x14 +fn_803605BC = .text:0x803605BC; // type:function size:0x14 +fn_803605D0 = .text:0x803605D0; // type:function size:0x14 +fn_803605E4 = .text:0x803605E4; // type:function size:0x14 +fn_803605F8 = .text:0x803605F8; // type:function size:0x8 +fn_80360600 = .text:0x80360600; // type:function size:0x8 +fn_80360608 = .text:0x80360608; // type:function size:0x8 +fn_80360610 = .text:0x80360610; // type:function size:0x8 +fn_80360618 = .text:0x80360618; // type:function size:0x8 +fn_80360620 = .text:0x80360620; // type:function size:0x8 +fn_80360628 = .text:0x80360628; // type:function size:0x8 +fn_80360630 = .text:0x80360630; // type:function size:0x8 +fn_80360638 = .text:0x80360638; // type:function size:0xE4 +fn_8036071C = .text:0x8036071C; // type:function size:0x440 +fn_80360B5C = .text:0x80360B5C; // type:function size:0x58 +fn_80360BB4 = .text:0x80360BB4; // type:function size:0x80 +fn_80360C34 = .text:0x80360C34; // type:function size:0x80 +fn_80360CB4 = .text:0x80360CB4; // type:function size:0x58 +fn_80360D0C = .text:0x80360D0C; // type:function size:0x54 +fn_80360D60 = .text:0x80360D60; // type:function size:0x5C +fn_80360DBC = .text:0x80360DBC; // type:function size:0x6C +fn_80360E28 = .text:0x80360E28; // type:function size:0x28 +fn_80360E50 = .text:0x80360E50; // type:function size:0x8 +fn_80360E58 = .text:0x80360E58; // type:function size:0x8 +fn_80360E60 = .text:0x80360E60; // type:function size:0x3C +fn_80360E9C = .text:0x80360E9C; // type:function size:0x4 +fn_80360EA0 = .text:0x80360EA0; // type:function size:0x30 +fn_80360ED0 = .text:0x80360ED0; // type:function size:0x30 +fn_80360F00 = .text:0x80360F00; // type:function size:0x30 +fn_80360F30 = .text:0x80360F30; // type:function size:0x40 +__ct__8SongInfoFv = .text:0x80360F70; // type:function size:0x10 +__ct__12SongInfoCopyFv = .text:0x80360F80; // type:function size:0x234 +__dt__12SongInfoCopyFv = .text:0x803611B4; // type:function size:0xD4 +fn_80361288 = .text:0x80361288; // type:function size:0x8 +fn_80361290 = .text:0x80361290; // type:function size:0x48 +fn_803612D8 = .text:0x803612D8; // type:function size:0x8 +fn_803612E0 = .text:0x803612E0; // type:function size:0xB0 +fn_80361390 = .text:0x80361390; // type:function size:0x7C +fn_8036140C = .text:0x8036140C; // type:function size:0x44 +fn_80361450 = .text:0x80361450; // type:function size:0x74 +fn_803614C4 = .text:0x803614C4; // type:function size:0x8 +fn_803614CC = .text:0x803614CC; // type:function size:0x8 +fn_803614D4 = .text:0x803614D4; // type:function size:0x8 +fn_803614DC = .text:0x803614DC; // type:function size:0x8 +fn_803614E4 = .text:0x803614E4; // type:function size:0x8 +fn_803614EC = .text:0x803614EC; // type:function size:0x8 +fn_803614F4 = .text:0x803614F4; // type:function size:0x8 +fn_803614FC = .text:0x803614FC; // type:function size:0x8 +fn_80361504 = .text:0x80361504; // type:function size:0x8 +fn_8036150C = .text:0x8036150C; // type:function size:0x8 +fn_80361514 = .text:0x80361514; // type:function size:0x8 +fn_8036151C = .text:0x8036151C; // type:function size:0x8 +fn_80361524 = .text:0x80361524; // type:function size:0x28 +fn_8036154C = .text:0x8036154C; // type:function size:0x160 +fn_803616AC = .text:0x803616AC; // type:function size:0x5C +fn_80361708 = .text:0x80361708; // type:function size:0x10 +fn_80361718 = .text:0x80361718; // type:function size:0x40 +fn_80361758 = .text:0x80361758; // type:function size:0x8 +fn_80361760 = .text:0x80361760; // type:function size:0x2C +fn_8036178C = .text:0x8036178C; // type:function size:0x58 +fn_803617E4 = .text:0x803617E4; // type:function size:0x28 +fn_8036180C = .text:0x8036180C; // type:function size:0x68 +fn_80361874 = .text:0x80361874; // type:function size:0x40 +fn_803618B4 = .text:0x803618B4; // type:function size:0x5C +fn_80361910 = .text:0x80361910; // type:function size:0x60 +fn_80361970 = .text:0x80361970; // type:function size:0xCC +fn_80361A3C = .text:0x80361A3C; // type:function size:0x5C +fn_80361A98 = .text:0x80361A98; // type:function size:0x60 +fn_80361AF8 = .text:0x80361AF8; // type:function size:0x10 +fn_80361B08 = .text:0x80361B08; // type:function size:0x4 +fn_80361B0C = .text:0x80361B0C; // type:function size:0x4 +__ct__6StringFv = .text:0x80361B10; // type:function size:0x4C +__ct__6StringFPCc = .text:0x80361B5C; // type:function size:0x64 +__ct__6StringF6Symbol = .text:0x80361BC0; // type:function size:0x64 +__ct__6StringFRC6String = .text:0x80361C24; // type:function size:0x6C +reserve__6StringFUi = .text:0x80361C90; // type:function size:0x8C +__ct__6StringFUic = .text:0x80361D1C; // type:function size:0x94 +__dt__6StringFv = .text:0x80361DB0; // type:function size:0x84 +Print__6StringFPCc = .text:0x80361E34; // type:function size:0x4 +__pl__6StringCFPCc = .text:0x80361E38; // type:function size:0x44 +__pl__6StringFc = .text:0x80361E7C; // type:function size:0x44 +__pl__6StringFP6String = .text:0x80361EC0; // type:function size:0x44 +__apl__6StringFPCc = .text:0x80361F04; // type:function size:0x84 +__apl__6StringFRC6String = .text:0x80361F88; // type:function size:0x3C +__apl__6StringFc = .text:0x80361FC4; // type:function size:0x64 +__as__6StringFPCc = .text:0x80362028; // type:function size:0x8C +__as__6StringF6Symbol = .text:0x803620B4; // type:function size:0x8 +__as__6StringFRC6String = .text:0x803620BC; // type:function size:0x54 +__vc__6StringFUi = .text:0x80362110; // type:function size:0xC +rcharAt__6StringFi = .text:0x8036211C; // type:function size:0x14 +rindex__6StringFi = .text:0x80362130; // type:function size:0x14 +__ne__6StringCFPCc = .text:0x80362144; // type:function size:0x44 +__ne__6StringCFRC6String = .text:0x80362188; // type:function size:0x34 +__eq__6StringCFPCc = .text:0x803621BC; // type:function size:0x44 +__eq__6StringCFRC6String = .text:0x80362200; // type:function size:0x34 +__lt__6StringCFRC6String = .text:0x80362234; // type:function size:0x2C +resize__6StringFUi = .text:0x80362260; // type:function size:0x44 +find__6StringFci = .text:0x803622A4; // type:function size:0x40 +find__6StringFc = .text:0x803622E4; // type:function size:0xC +find__6StringCFPCc = .text:0x803622F0; // type:function size:0x8 +find__6StringCFPCcUi = .text:0x803622F8; // type:function size:0x44 +find_first_of__6StringCFPCcUi = .text:0x8036233C; // type:function size:0x64 +find_last_of__6StringCFc = .text:0x803623A0; // type:function size:0x48 +find_last_of__6StringCFPCc = .text:0x803623E8; // type:function size:0x90 +rfind__6StringCFPCc = .text:0x80362478; // type:function size:0xB8 +contains__6StringCFPCc = .text:0x80362530; // type:function size:0x30 +split__6StringFPCcRQ211stlpmtx_std54vector<6String,Q211stlpmtx_std21StlNodeAlloc<6String>> = .text:0x80362560; // type:function size:0x100 +substr__6StringFUi = .text:0x80362660; // type:function size:0xC +substr__6StringCFUiUi = .text:0x8036266C; // type:function size:0x7C +ToLower__6StringFv = .text:0x803626E8; // type:function size:0x48 +ToUpper__6StringFv = .text:0x80362730; // type:function size:0x48 +ReplaceAll__6StringFcc = .text:0x80362778; // type:function size:0x30 +swap__6StringFR6String = .text:0x803627A8; // type:function size:0x24 +replace__6StringFUiUiPCc = .text:0x803627CC; // type:function size:0x12C +erase__6StringFv = .text:0x803628F8; // type:function size:0x10 +erase__6StringFUi = .text:0x80362908; // type:function size:0x1C +erase__6StringFUiUi = .text:0x80362924; // type:function size:0xC +insert__6StringFiUic = .text:0x80362930; // type:function size:0xC4 +replace__6StringFUiPCc = .text:0x803629F4; // type:function size:0xC +replace__6StringFUiP6String = .text:0x80362A00; // type:function size:0x50 +SearchReplace__FPCcPCcPCcPc = .text:0x80362A50; // type:function size:0xA4 +StrNCopy__FPcPCci = .text:0x80362AF4; // type:function size:0x58 +__ct__11StringTableFi = .text:0x80362B4C; // type:function size:0x70 +fn_80362BBC = .text:0x80362BBC; // type:function size:0x58 +fn_80362C14 = .text:0x80362C14; // type:function size:0x80 +fn_80362C94 = .text:0x80362C94; // type:function size:0x80 +fn_80362D14 = .text:0x80362D14; // type:function size:0x58 +fn_80362D6C = .text:0x80362D6C; // type:function size:0x54 +fn_80362DC0 = .text:0x80362DC0; // type:function size:0x5C +fn_80362E1C = .text:0x80362E1C; // type:function size:0x6C +fn_80362E88 = .text:0x80362E88; // type:function size:0x28 +fn_80362EB0 = .text:0x80362EB0; // type:function size:0x8 +fn_80362EB8 = .text:0x80362EB8; // type:function size:0x3C +fn_80362EF4 = .text:0x80362EF4; // type:function size:0x30 +fn_80362F24 = .text:0x80362F24; // type:function size:0x30 +fn_80362F54 = .text:0x80362F54; // type:function size:0x40 +AddBuf__11StringTableFi = .text:0x80362F94; // type:function size:0x5C +push_back__Q211stlpmtx_std78vector>FRCQ211StringTable3Buf = .text:0x80362FF0; // type:function size:0x4 +fn_80362FF4 = .text:0x80362FF4; // type:function size:0x88 +fn_8036307C = .text:0x8036307C; // type:function size:0x2C +fn_803630A8 = .text:0x803630A8; // type:function size:0x60 +fn_80363108 = .text:0x80363108; // type:function size:0x68 +fn_80363170 = .text:0x80363170; // type:function size:0x4 +fn_80363174 = .text:0x80363174; // type:function size:0x3C +fn_803631B0 = .text:0x803631B0; // type:function size:0x40 +fn_803631F0 = .text:0x803631F0; // type:function size:0x8C +fn_8036327C = .text:0x8036327C; // type:function size:0x8 +fn_80363284 = .text:0x80363284; // type:function size:0x2C +fn_803632B0 = .text:0x803632B0; // type:function size:0x58 +fn_80363308 = .text:0x80363308; // type:function size:0x28 +fn_80363330 = .text:0x80363330; // type:function size:0x68 +Reserve__11StringTableFi = .text:0x80363398; // type:function size:0x80 +Add__11StringTableFPCc = .text:0x80363418; // type:function size:0xFC +UsedSize__11StringTableCFv = .text:0x80363514; // type:function size:0x88 +Size__11StringTableCFv = .text:0x8036359C; // type:function size:0x68 +fn_80363604 = .text:0x80363604; // type:function size:0x114 +fn_80363718 = .text:0x80363718; // type:function size:0x60 +fn_80363778 = .text:0x80363778; // type:function size:0x5C +fn_803637D4 = .text:0x803637D4; // type:function size:0x54 +fn_80363828 = .text:0x80363828; // type:function size:0x5C +fn_80363884 = .text:0x80363884; // type:function size:0x5C +fn_803638E0 = .text:0x803638E0; // type:function size:0x624 +fn_80363F04 = .text:0x80363F04; // type:function size:0x8 +fn_80363F0C = .text:0x80363F0C; // type:function size:0x54 +__ct__6SymbolFPCc = .text:0x80363F60; // type:function size:0xBC +PrintSymbolTable__FP9DataArray = .text:0x8036401C; // type:function size:0x144 +fn_80364160 = .text:0x80364160; // type:function size:0x88 +fn_803641E8 = .text:0x803641E8; // type:function size:0xE8 +fn_803642D0 = .text:0x803642D0; // type:function size:0x30 +fn_80364300 = .text:0x80364300; // type:function size:0xB4 +fn_803643B4 = .text:0x803643B4; // type:function size:0x34 +fn_803643E8 = .text:0x803643E8; // type:function size:0x94 +fn_8036447C = .text:0x8036447C; // type:function size:0xD4 +fn_80364550 = .text:0x80364550; // type:function size:0x98 +fn_803645E8 = .text:0x803645E8; // type:function size:0x6C +fn_80364654 = .text:0x80364654; // type:function size:0x30 +fn_80364684 = .text:0x80364684; // type:function size:0x40 +fn_803646C4 = .text:0x803646C4; // type:function size:0x44 +fn_80364708 = .text:0x80364708; // type:function size:0x2C +fn_80364734 = .text:0x80364734; // type:function size:0xA4 +fn_803647D8 = .text:0x803647D8; // type:function size:0x6C +fn_80364844 = .text:0x80364844; // type:function size:0xC +fn_80364850 = .text:0x80364850; // type:function size:0xE0 +fn_80364930 = .text:0x80364930; // type:function size:0x94 +fn_803649C4 = .text:0x803649C4; // type:function size:0x70 +fn_80364A34 = .text:0x80364A34; // type:function size:0x84 +fn_80364AB8 = .text:0x80364AB8; // type:function size:0x6C +fn_80364B24 = .text:0x80364B24; // type:function size:0x58 +fn_80364B7C = .text:0x80364B7C; // type:function size:0x58 +fn_80364BD4 = .text:0x80364BD4; // type:function size:0x30 +fn_80364C04 = .text:0x80364C04; // type:function size:0x60 +fn_80364C64 = .text:0x80364C64; // type:function size:0x8 +fn_80364C6C = .text:0x80364C6C; // type:function size:0x8 +PreInit__6SymbolFii = .text:0x80364C74; // type:function size:0xB4 +Init__6SymbolFv = .text:0x80364D28; // type:function size:0x60 +fn_80364D88 = .text:0x80364D88; // type:function size:0x4 +__ct__20KeylessHashFiRCPCcRCPCcPPCc = .text:0x80364D8C; // type:function size:0xCC +FirstFrom__20KeylessHashFPPCc = .text:0x80364E58; // type:function size:0x54 +Insert__20KeylessHashFRCPCc = .text:0x80364EAC; // type:function size:0x138 +Find__20KeylessHashFRCPCc = .text:0x80364FE4; // type:function size:0xB0 +Resize__20KeylessHashFiPPCc = .text:0x80365094; // type:function size:0x11C +__ct__20StringTableLockBeginFv = .text:0x803651B0; // type:function size:0x58 +__ct__18StringTableLockEndFv = .text:0x80365208; // type:function size:0xC +__sinit_\symbolset1_cpp = .text:0x80365214; // type:function size:0x638C scope:local +__sinit_\symbolset2_cpp = .text:0x8036B5A0; // type:function size:0x4F3C scope:local +__sinit_\symbolset3_cpp = .text:0x803704DC; // type:function size:0x4F90 scope:local +__sinit_\symbolset4_cpp = .text:0x8037546C; // type:function size:0x4F6C scope:local +fn_8037A3D8 = .text:0x8037A3D8; // type:function size:0x38 +__dt__14SimpleTempoMapFv = .text:0x8037A410; // type:function size:0x58 +SetTheTempoMap__FP8TempoMap = .text:0x8037A468; // type:function size:0xC +ResetTheTempoMap__Fv = .text:0x8037A474; // type:function size:0x14 +fn_8037A488 = .text:0x8037A488; // type:function size:0x14 +__ct__14SimpleTempoMapFf = .text:0x8037A49C; // type:function size:0x60 +TickToTime__14SimpleTempoMapCFf = .text:0x8037A4FC; // type:function size:0xC +TimeToTick__14SimpleTempoMapCFf = .text:0x8037A508; // type:function size:0xC +GetTempo__14SimpleTempoMapCFi = .text:0x8037A514; // type:function size:0x14 +GetTempoBPM__14SimpleTempoMapCFi = .text:0x8037A528; // type:function size:0x20 +GetTempoUSecs__14SimpleTempoMapFi = .text:0x8037A548; // type:function size:0x44 +__ct__14TextFileStreamFPCcb = .text:0x8037A58C; // type:function size:0x6C +Print__14TextFileStreamFPCc = .text:0x8037A5F8; // type:function size:0x84 +__ct__10TextStreamFv = .text:0x8037A67C; // type:function size:0x10 +__ls__10TextStreamFc = .text:0x8037A68C; // type:function size:0x60 +__ls__10TextStreamFi = .text:0x8037A6EC; // type:function size:0x64 +__ls__10TextStreamFl = .text:0x8037A750; // type:function size:0x64 +__ls__10TextStreamFUi = .text:0x8037A7B4; // type:function size:0x64 +__ls__10TextStreamFUs = .text:0x8037A818; // type:function size:0x64 +__ls__10TextStreamFUl = .text:0x8037A87C; // type:function size:0x64 +__ls__10TextStreamFf = .text:0x8037A8E0; // type:function size:0x60 +__ls__10TextStreamFPCc = .text:0x8037A940; // type:function size:0x3C +__ls__10TextStreamF6Symbol = .text:0x8037A97C; // type:function size:0x40 +__ls__10TextStreamFb = .text:0x8037A9BC; // type:function size:0x54 +Space__10TextStreamFi = .text:0x8037AA10; // type:function size:0x64 +OnSecondsToBeat__FP9DataArray = .text:0x8037AA74; // type:function size:0x40 +OnBeatToSeconds__FP9DataArray = .text:0x8037AAB4; // type:function size:0x40 +OnBeatToMs__FP9DataArray = .text:0x8037AAF4; // type:function size:0x40 +OnMsToTick__FP9DataArray = .text:0x8037AB34; // type:function size:0x40 +TimeConversionInit__Fv = .text:0x8037AB74; // type:function size:0x8C +MsToTick__Ff = .text:0x8037AC00; // type:function size:0x18 +MsToBeat__Ff = .text:0x8037AC18; // type:function size:0x40 +TickToMs__Ff = .text:0x8037AC58; // type:function size:0x18 +BeatToMs__Ff = .text:0x8037AC70; // type:function size:0x40 +BeatToTick__Ff = .text:0x8037ACB0; // type:function size:0xC +TickToBeat__Fi = .text:0x8037ACBC; // type:function size:0x10 +SecondsToBeat__Ff = .text:0x8037ACCC; // type:function size:0x10 +TickToSeconds__Ff = .text:0x8037ACDC; // type:function size:0x2C +BeatToSeconds__Ff = .text:0x8037AD08; // type:function size:0x2C +fn_8037AD34 = .text:0x8037AD34; // type:function size:0xC +DecodeUTF8__FRUsPCc = .text:0x8037AD40; // type:function size:0x94 +EncodeUTF8__FR6StringUi = .text:0x8037ADD4; // type:function size:0x16C +UTF8toASCIIs__FPciPCcc = .text:0x8037AF40; // type:function size:0x94 +ASCIItoUTF8__FPciPCc = .text:0x8037AFD4; // type:function size:0xC8 +fn_8037B09C = .text:0x8037B09C; // type:function size:0xEC +fn_8037B188 = .text:0x8037B188; // type:function size:0x4 +fn_8037B18C = .text:0x8037B18C; // type:function size:0x88 +fn_8037B214 = .text:0x8037B214; // type:function size:0x4 +fn_8037B218 = .text:0x8037B218; // type:function size:0x3C +fn_8037B254 = .text:0x8037B254; // type:function size:0x40 +fn_8037B294 = .text:0x8037B294; // type:function size:0x6C +fn_8037B300 = .text:0x8037B300; // type:function size:0x58 +fn_8037B358 = .text:0x8037B358; // type:function size:0x80 +fn_8037B3D8 = .text:0x8037B3D8; // type:function size:0x80 +fn_8037B458 = .text:0x8037B458; // type:function size:0x3C +fn_8037B494 = .text:0x8037B494; // type:function size:0x30 +fn_8037B4C4 = .text:0x8037B4C4; // type:function size:0x30 +fn_8037B4F4 = .text:0x8037B4F4; // type:function size:0x40 +UTF8StrLen__FPCc = .text:0x8037B534; // type:function size:0x64 +fn_8037B598 = .text:0x8037B598; // type:function size:0x74 +UTF8ToLower__FUsPc = .text:0x8037B60C; // type:function size:0xC0 +UTF8ToUpper__FUsPc = .text:0x8037B6CC; // type:function size:0xC0 +fn_8037B78C = .text:0x8037B78C; // type:function size:0xC4 +UTF8RemoveSpaces__FPciPCc = .text:0x8037B850; // type:function size:0xE0 +fn_8037B930 = .text:0x8037B930; // type:function size:0x60 +fn_8037B990 = .text:0x8037B990; // type:function size:0x60 +fn_8037B9F0 = .text:0x8037B9F0; // type:function size:0xA4 +ASCIItoWideVector__FRQ211stlpmtx_std44vector>PCc = .text:0x8037BA94; // type:function size:0x9C +WideVectorToASCII__FRQ211stlpmtx_std44vector> = .text:0x8037BB30; // type:function size:0x88 +WideVectorToUTF8__FRQ211stlpmtx_std44vector>R6String = .text:0x8037BBB8; // type:function size:0x118 +fn_8037BCD0 = .text:0x8037BCD0; // type:function size:0xD4 +fn_8037BDA4 = .text:0x8037BDA4; // type:function size:0x50 +fn_8037BDF4 = .text:0x8037BDF4; // type:function size:0x5C +fn_8037BE50 = .text:0x8037BE50; // type:function size:0x48 +fn_8037BE98 = .text:0x8037BE98; // type:function size:0x3C +fn_8037BED4 = .text:0x8037BED4; // type:function size:0x5C +fn_8037BF30 = .text:0x8037BF30; // type:function size:0x60 +fn_8037BF90 = .text:0x8037BF90; // type:function size:0x68 +fn_8037BFF8 = .text:0x8037BFF8; // type:function size:0x50 +fn_8037C048 = .text:0x8037C048; // type:function size:0x190 +fn_8037C1D8 = .text:0x8037C1D8; // type:function size:0x34 +fn_8037C20C = .text:0x8037C20C; // type:function size:0x4 +fn_8037C210 = .text:0x8037C210; // type:function size:0x34 +fn_8037C244 = .text:0x8037C244; // type:function size:0x38 +fn_8037C27C = .text:0x8037C27C; // type:function size:0x20 +fn_8037C29C = .text:0x8037C29C; // type:function size:0x78 +fn_8037C314 = .text:0x8037C314; // type:function size:0x58 +fn_8037C36C = .text:0x8037C36C; // type:function size:0x80 +fn_8037C3EC = .text:0x8037C3EC; // type:function size:0x80 +fn_8037C46C = .text:0x8037C46C; // type:function size:0x58 +fn_8037C4C4 = .text:0x8037C4C4; // type:function size:0x54 +fn_8037C518 = .text:0x8037C518; // type:function size:0x5C +fn_8037C574 = .text:0x8037C574; // type:function size:0x6C +fn_8037C5E0 = .text:0x8037C5E0; // type:function size:0x28 +fn_8037C608 = .text:0x8037C608; // type:function size:0x8 +fn_8037C610 = .text:0x8037C610; // type:function size:0x5C +fn_8037C66C = .text:0x8037C66C; // type:function size:0x8 +fn_8037C674 = .text:0x8037C674; // type:function size:0x3C +fn_8037C6B0 = .text:0x8037C6B0; // type:function size:0x30 +fn_8037C6E0 = .text:0x8037C6E0; // type:function size:0x30 +fn_8037C710 = .text:0x8037C710; // type:function size:0x40 +fn_8037C750 = .text:0x8037C750; // type:function size:0x68 +fn_8037C7B8 = .text:0x8037C7B8; // type:function size:0xA8 +fn_8037C860 = .text:0x8037C860; // type:function size:0x35C +fn_8037CBBC = .text:0x8037CBBC; // type:function size:0x78 +fn_8037CC34 = .text:0x8037CC34; // type:function size:0xE4 +fn_8037CD18 = .text:0x8037CD18; // type:function size:0xC +fn_8037CD24 = .text:0x8037CD24; // type:function size:0xBC +fn_8037CDE0 = .text:0x8037CDE0; // type:function size:0xC +fn_8037CDEC = .text:0x8037CDEC; // type:function size:0xA0 +fn_8037CE8C = .text:0x8037CE8C; // type:function size:0xEC +fn_8037CF78 = .text:0x8037CF78; // type:function size:0xAC +fn_8037D024 = .text:0x8037D024; // type:function size:0x64 +fn_8037D088 = .text:0x8037D088; // type:function size:0xC +fn_8037D094 = .text:0x8037D094; // type:function size:0x70 +fn_8037D104 = .text:0x8037D104; // type:function size:0x78 +fn_8037D17C = .text:0x8037D17C; // type:function size:0xAC +fn_8037D228 = .text:0x8037D228; // type:function size:0x6C +fn_8037D294 = .text:0x8037D294; // type:function size:0xC +fn_8037D2A0 = .text:0x8037D2A0; // type:function size:0x58 +fn_8037D2F8 = .text:0x8037D2F8; // type:function size:0x7C +fn_8037D374 = .text:0x8037D374; // type:function size:0x78 +fn_8037D3EC = .text:0x8037D3EC; // type:function size:0x98 +fn_8037D484 = .text:0x8037D484; // type:function size:0x7C +fn_8037D500 = .text:0x8037D500; // type:function size:0x58 +fn_8037D558 = .text:0x8037D558; // type:function size:0x64 +fn_8037D5BC = .text:0x8037D5BC; // type:function size:0x28 +fn_8037D5E4 = .text:0x8037D5E4; // type:function size:0x68 +fn_8037D64C = .text:0x8037D64C; // type:function size:0xC +fn_8037D658 = .text:0x8037D658; // type:function size:0x68 +fn_8037D6C0 = .text:0x8037D6C0; // type:function size:0x4 +fn_8037D6C4 = .text:0x8037D6C4; // type:function size:0x88 +fn_8037D74C = .text:0x8037D74C; // type:function size:0x2C +fn_8037D778 = .text:0x8037D778; // type:function size:0x10 +fn_8037D788 = .text:0x8037D788; // type:function size:0x48 +fn_8037D7D0 = .text:0x8037D7D0; // type:function size:0x40 +fn_8037D810 = .text:0x8037D810; // type:function size:0x4 +fn_8037D814 = .text:0x8037D814; // type:function size:0x88 +fn_8037D89C = .text:0x8037D89C; // type:function size:0x2C +fn_8037D8C8 = .text:0x8037D8C8; // type:function size:0x10 +fn_8037D8D8 = .text:0x8037D8D8; // type:function size:0x40 +fn_8037D918 = .text:0x8037D918; // type:function size:0x8 +fn_8037D920 = .text:0x8037D920; // type:function size:0x4 +fn_8037D924 = .text:0x8037D924; // type:function size:0x88 +fn_8037D9AC = .text:0x8037D9AC; // type:function size:0x2C +fn_8037D9D8 = .text:0x8037D9D8; // type:function size:0x10 +fn_8037D9E8 = .text:0x8037D9E8; // type:function size:0xC +fn_8037D9F4 = .text:0x8037D9F4; // type:function size:0x58 +fn_8037DA4C = .text:0x8037DA4C; // type:function size:0x80 +fn_8037DACC = .text:0x8037DACC; // type:function size:0x80 +fn_8037DB4C = .text:0x8037DB4C; // type:function size:0x58 +fn_8037DBA4 = .text:0x8037DBA4; // type:function size:0x54 +fn_8037DBF8 = .text:0x8037DBF8; // type:function size:0x5C +fn_8037DC54 = .text:0x8037DC54; // type:function size:0x6C +fn_8037DCC0 = .text:0x8037DCC0; // type:function size:0x28 +fn_8037DCE8 = .text:0x8037DCE8; // type:function size:0x8 +fn_8037DCF0 = .text:0x8037DCF0; // type:function size:0x3C +fn_8037DD2C = .text:0x8037DD2C; // type:function size:0x58 +fn_8037DD84 = .text:0x8037DD84; // type:function size:0x80 +fn_8037DE04 = .text:0x8037DE04; // type:function size:0x80 +fn_8037DE84 = .text:0x8037DE84; // type:function size:0x58 +fn_8037DEDC = .text:0x8037DEDC; // type:function size:0x54 +fn_8037DF30 = .text:0x8037DF30; // type:function size:0x5C +fn_8037DF8C = .text:0x8037DF8C; // type:function size:0x6C +fn_8037DFF8 = .text:0x8037DFF8; // type:function size:0x28 +fn_8037E020 = .text:0x8037E020; // type:function size:0x8 +fn_8037E028 = .text:0x8037E028; // type:function size:0x8 +fn_8037E030 = .text:0x8037E030; // type:function size:0x3C +fn_8037E06C = .text:0x8037E06C; // type:function size:0x30 +fn_8037E09C = .text:0x8037E09C; // type:function size:0x30 +fn_8037E0CC = .text:0x8037E0CC; // type:function size:0x40 +fn_8037E10C = .text:0x8037E10C; // type:function size:0x30 +fn_8037E13C = .text:0x8037E13C; // type:function size:0x30 +fn_8037E16C = .text:0x8037E16C; // type:function size:0x40 +fn_8037E1AC = .text:0x8037E1AC; // type:function size:0x58 +fn_8037E204 = .text:0x8037E204; // type:function size:0x4C +fn_8037E250 = .text:0x8037E250; // type:function size:0x5C +fn_8037E2AC = .text:0x8037E2AC; // type:function size:0x58 +fn_8037E304 = .text:0x8037E304; // type:function size:0x114 +fn_8037E418 = .text:0x8037E418; // type:function size:0x5C +fn_8037E474 = .text:0x8037E474; // type:function size:0x5C +fn_8037E4D0 = .text:0x8037E4D0; // type:function size:0x54 +fn_8037E524 = .text:0x8037E524; // type:function size:0x5C +fn_8037E580 = .text:0x8037E580; // type:function size:0x5C +fn_8037E5DC = .text:0x8037E5DC; // type:function size:0x114 +fn_8037E6F0 = .text:0x8037E6F0; // type:function size:0x60 +fn_8037E750 = .text:0x8037E750; // type:function size:0x5C +fn_8037E7AC = .text:0x8037E7AC; // type:function size:0x54 +fn_8037E800 = .text:0x8037E800; // type:function size:0x5C +fn_8037E85C = .text:0x8037E85C; // type:function size:0x5C +fn_8037E8B8 = .text:0x8037E8B8; // type:function size:0x114 +fn_8037E9CC = .text:0x8037E9CC; // type:function size:0x60 +fn_8037EA2C = .text:0x8037EA2C; // type:function size:0x5C +fn_8037EA88 = .text:0x8037EA88; // type:function size:0x54 +fn_8037EADC = .text:0x8037EADC; // type:function size:0x5C +fn_8037EB38 = .text:0x8037EB38; // type:function size:0x5C +adler32 = .text:0x8037EB94; // type:function size:0x188 +get_crc_table = .text:0x8037ED1C; // type:function size:0xC +crc32 = .text:0x8037ED28; // type:function size:0x13C +deflateInit_ = .text:0x8037EE64; // type:function size:0x1C +deflateInit2_ = .text:0x8037EE80; // type:function size:0x2C4 +deflateReset = .text:0x8037F144; // type:function size:0x104 +putShortMSB = .text:0x8037F248; // type:function size:0x2C +flush_pending = .text:0x8037F274; // type:function size:0xBC +deflate = .text:0x8037F330; // type:function size:0x5BC +deflateEnd = .text:0x8037F8EC; // type:function size:0x11C +read_buf = .text:0x8037FA08; // type:function size:0xD0 +lm_init = .text:0x8037FAD8; // type:function size:0xC0 +longest_match = .text:0x8037FB98; // type:function size:0x1C4 +longest_match_fast = .text:0x8037FD5C; // type:function size:0x100 +fill_window = .text:0x8037FE5C; // type:function size:0x188 +deflate_stored = .text:0x8037FFE4; // type:function size:0x1FC +deflate_fast = .text:0x803801E0; // type:function size:0x440 +deflate_slow = .text:0x80380620; // type:function size:0x558 +_tr_init = .text:0x80380B78; // type:function size:0x50 +init_block = .text:0x80380BC8; // type:function size:0x80 +pqdownheap = .text:0x80380C48; // type:function size:0xD4 +gen_bitlen = .text:0x80380D1C; // type:function size:0x234 +gen_codes = .text:0x80380F50; // type:function size:0xAC +build_tree = .text:0x80380FFC; // type:function size:0x27C +scan_tree = .text:0x80381278; // type:function size:0x13C +send_tree = .text:0x803813B4; // type:function size:0x5A4 +build_bl_tree = .text:0x80381958; // type:function size:0xA4 +send_all_trees = .text:0x803819FC; // type:function size:0x2D0 +_tr_stored_block = .text:0x80381CCC; // type:function size:0x90 +_tr_align = .text:0x80381D5C; // type:function size:0x2A0 +_tr_flush_block = .text:0x80381FFC; // type:function size:0x264 +compress_block = .text:0x80382260; // type:function size:0x47C +set_data_type = .text:0x803826DC; // type:function size:0x9C +bi_reverse = .text:0x80382778; // type:function size:0x24 +bi_flush = .text:0x8038279C; // type:function size:0x88 +bi_windup = .text:0x80382824; // type:function size:0x70 +copy_block = .text:0x80382894; // type:function size:0xCC +zcalloc = .text:0x80382960; // type:function size:0x8 +zcfree = .text:0x80382968; // type:function size:0x30 +inflateReset = .text:0x80382998; // type:function size:0x64 +inflateInit2_ = .text:0x803829FC; // type:function size:0x154 +inflateInit_ = .text:0x80382B50; // type:function size:0x10 +fixedtables = .text:0x80382B60; // type:function size:0x2C +updatewindow = .text:0x80382B8C; // type:function size:0x16C +inflate = .text:0x80382CF8; // type:function size:0x14C8 +inflateEnd = .text:0x803841C0; // type:function size:0x88 +inflate_table = .text:0x80384248; // type:function size:0x4A4 +inflate_fast = .text:0x803846EC; // type:function size:0x4BC +fn_80384BA8 = .text:0x80384BA8; // type:function size:0x19C +fn_80384D44 = .text:0x80384D44; // type:function size:0x48 +fn_80384D8C = .text:0x80384D8C; // type:function size:0x4C +fn_80384DD8 = .text:0x80384DD8; // type:function size:0x48 +fn_80384E20 = .text:0x80384E20; // type:function size:0x48 +StaticClassName__16RndTransformableFv = .text:0x80384E68; // type:function size:0x4C +fn_80384EB4 = .text:0x80384EB4; // type:function size:0x144 +fn_80384FF8 = .text:0x80384FF8; // type:function size:0xE0 +fn_803850D8 = .text:0x803850D8; // type:function size:0x80 +fn_80385158 = .text:0x80385158; // type:function size:0x58 +fn_803851B0 = .text:0x803851B0; // type:function size:0x58 +fn_80385208 = .text:0x80385208; // type:function size:0x80 +fn_80385288 = .text:0x80385288; // type:function size:0x80 +fn_80385308 = .text:0x80385308; // type:function size:0x58 +fn_80385360 = .text:0x80385360; // type:function size:0x54 +fn_803853B4 = .text:0x803853B4; // type:function size:0x5C +fn_80385410 = .text:0x80385410; // type:function size:0x6C +fn_8038547C = .text:0x8038547C; // type:function size:0x28 +fn_803854A4 = .text:0x803854A4; // type:function size:0x8 +fn_803854AC = .text:0x803854AC; // type:function size:0x3C +fn_803854E8 = .text:0x803854E8; // type:function size:0x58 +fn_80385540 = .text:0x80385540; // type:function size:0x58 +fn_80385598 = .text:0x80385598; // type:function size:0x80 +fn_80385618 = .text:0x80385618; // type:function size:0x80 +fn_80385698 = .text:0x80385698; // type:function size:0x58 +fn_803856F0 = .text:0x803856F0; // type:function size:0x54 +fn_80385744 = .text:0x80385744; // type:function size:0x5C +fn_803857A0 = .text:0x803857A0; // type:function size:0x6C +fn_8038580C = .text:0x8038580C; // type:function size:0x28 +fn_80385834 = .text:0x80385834; // type:function size:0x8 +fn_8038583C = .text:0x8038583C; // type:function size:0x3C +fn_80385878 = .text:0x80385878; // type:function size:0x58 +fn_803858D0 = .text:0x803858D0; // type:function size:0x58 +fn_80385928 = .text:0x80385928; // type:function size:0x80 +fn_803859A8 = .text:0x803859A8; // type:function size:0x80 +fn_80385A28 = .text:0x80385A28; // type:function size:0x58 +fn_80385A80 = .text:0x80385A80; // type:function size:0x54 +fn_80385AD4 = .text:0x80385AD4; // type:function size:0x5C +fn_80385B30 = .text:0x80385B30; // type:function size:0x6C +fn_80385B9C = .text:0x80385B9C; // type:function size:0x28 +fn_80385BC4 = .text:0x80385BC4; // type:function size:0x8 +fn_80385BCC = .text:0x80385BCC; // type:function size:0x3C +fn_80385C08 = .text:0x80385C08; // type:function size:0x58 +fn_80385C60 = .text:0x80385C60; // type:function size:0x58 +fn_80385CB8 = .text:0x80385CB8; // type:function size:0x58 +fn_80385D10 = .text:0x80385D10; // type:function size:0x80 +fn_80385D90 = .text:0x80385D90; // type:function size:0x80 +fn_80385E10 = .text:0x80385E10; // type:function size:0x58 +fn_80385E68 = .text:0x80385E68; // type:function size:0x54 +fn_80385EBC = .text:0x80385EBC; // type:function size:0x5C +fn_80385F18 = .text:0x80385F18; // type:function size:0x6C +fn_80385F84 = .text:0x80385F84; // type:function size:0x28 +fn_80385FAC = .text:0x80385FAC; // type:function size:0x8 +fn_80385FB4 = .text:0x80385FB4; // type:function size:0x58 +fn_8038600C = .text:0x8038600C; // type:function size:0x58 +fn_80386064 = .text:0x80386064; // type:function size:0x8 +fn_8038606C = .text:0x8038606C; // type:function size:0x3C +fn_803860A8 = .text:0x803860A8; // type:function size:0xAC +fn_80386154 = .text:0x80386154; // type:function size:0xAC +fn_80386200 = .text:0x80386200; // type:function size:0x4C +fn_8038624C = .text:0x8038624C; // type:function size:0xAC +fn_803862F8 = .text:0x803862F8; // type:function size:0x98 +fn_80386390 = .text:0x80386390; // type:function size:0x48 +fn_803863D8 = .text:0x803863D8; // type:function size:0xDC +fn_803864B4 = .text:0x803864B4; // type:function size:0x8 +fn_803864BC = .text:0x803864BC; // type:function size:0x78 +fn_80386534 = .text:0x80386534; // type:function size:0x54 +fn_80386588 = .text:0x80386588; // type:function size:0x28 +fn_803865B0 = .text:0x803865B0; // type:function size:0xF0 +fn_803866A0 = .text:0x803866A0; // type:function size:0xA0 +fn_80386740 = .text:0x80386740; // type:function size:0xD4 +fn_80386814 = .text:0x80386814; // type:function size:0x3C +fn_80386850 = .text:0x80386850; // type:function size:0x3C +fn_8038688C = .text:0x8038688C; // type:function size:0x5C +fn_803868E8 = .text:0x803868E8; // type:function size:0x30 +fn_80386918 = .text:0x80386918; // type:function size:0x50 +fn_80386968 = .text:0x80386968; // type:function size:0x70 +fn_803869D8 = .text:0x803869D8; // type:function size:0xF8 +fn_80386AD0 = .text:0x80386AD0; // type:function size:0x34 +fn_80386B04 = .text:0x80386B04; // type:function size:0x3C +fn_80386B40 = .text:0x80386B40; // type:function size:0x1B8 +fn_80386CF8 = .text:0x80386CF8; // type:function size:0x34 +NewObject__12BandSongPrefFv = .text:0x80386D2C; // type:function size:0x34 +StaticClassName__12BandSongPrefFv = .text:0x80386D60; // type:function size:0x4C +fn_80386DAC = .text:0x80386DAC; // type:function size:0x34 +fn_80386DE0 = .text:0x80386DE0; // type:function size:0x44 +StaticClassName__21SongSectionControllerFv = .text:0x80386E24; // type:function size:0x4C +fn_80386E70 = .text:0x80386E70; // type:function size:0x34 +fn_80386EA4 = .text:0x80386EA4; // type:function size:0x44 +fn_80386EE8 = .text:0x80386EE8; // type:function size:0x4C +fn_80386F34 = .text:0x80386F34; // type:function size:0x34 +fn_80386F68 = .text:0x80386F68; // type:function size:0x44 +fn_80386FAC = .text:0x80386FAC; // type:function size:0x4C +fn_80386FF8 = .text:0x80386FF8; // type:function size:0x34 +fn_8038702C = .text:0x8038702C; // type:function size:0x44 +fn_80387070 = .text:0x80387070; // type:function size:0x4C +fn_803870BC = .text:0x803870BC; // type:function size:0x34 +fn_803870F0 = .text:0x803870F0; // type:function size:0x34 +StaticClassName__19ChordShapeGeneratorFv = .text:0x80387124; // type:function size:0x4C +fn_80387170 = .text:0x80387170; // type:function size:0x34 +fn_803871A4 = .text:0x803871A4; // type:function size:0x44 +fn_803871E8 = .text:0x803871E8; // type:function size:0x4C +fn_80387234 = .text:0x80387234; // type:function size:0x34 +fn_80387268 = .text:0x80387268; // type:function size:0x44 +fn_803872AC = .text:0x803872AC; // type:function size:0x4C +fn_803872F8 = .text:0x803872F8; // type:function size:0x34 +fn_8038732C = .text:0x8038732C; // type:function size:0x44 +fn_80387370 = .text:0x80387370; // type:function size:0x4C +fn_803873BC = .text:0x803873BC; // type:function size:0x34 +fn_803873F0 = .text:0x803873F0; // type:function size:0x44 +fn_80387434 = .text:0x80387434; // type:function size:0x4C +fn_80387480 = .text:0x80387480; // type:function size:0x34 +fn_803874B4 = .text:0x803874B4; // type:function size:0x44 +fn_803874F8 = .text:0x803874F8; // type:function size:0x4C +fn_80387544 = .text:0x80387544; // type:function size:0x34 +fn_80387578 = .text:0x80387578; // type:function size:0x44 +fn_803875BC = .text:0x803875BC; // type:function size:0x4C +fn_80387608 = .text:0x80387608; // type:function size:0x34 +fn_8038763C = .text:0x8038763C; // type:function size:0x44 +fn_80387680 = .text:0x80387680; // type:function size:0x4C +fn_803876CC = .text:0x803876CC; // type:function size:0x34 +fn_80387700 = .text:0x80387700; // type:function size:0x44 +fn_80387744 = .text:0x80387744; // type:function size:0x4C +fn_80387790 = .text:0x80387790; // type:function size:0x34 +fn_803877C4 = .text:0x803877C4; // type:function size:0x44 +fn_80387808 = .text:0x80387808; // type:function size:0x88 +fn_80387890 = .text:0x80387890; // type:function size:0x4C +fn_803878DC = .text:0x803878DC; // type:function size:0x34 +fn_80387910 = .text:0x80387910; // type:function size:0x34 +fn_80387944 = .text:0x80387944; // type:function size:0x4C +fn_80387990 = .text:0x80387990; // type:function size:0x34 +fn_803879C4 = .text:0x803879C4; // type:function size:0x44 +fn_80387A08 = .text:0x80387A08; // type:function size:0x4C +fn_80387A54 = .text:0x80387A54; // type:function size:0x34 +fn_80387A88 = .text:0x80387A88; // type:function size:0x44 +fn_80387ACC = .text:0x80387ACC; // type:function size:0x4C +fn_80387B18 = .text:0x80387B18; // type:function size:0x34 +fn_80387B4C = .text:0x80387B4C; // type:function size:0x44 +fn_80387B90 = .text:0x80387B90; // type:function size:0x4C +fn_80387BDC = .text:0x80387BDC; // type:function size:0x34 +fn_80387C10 = .text:0x80387C10; // type:function size:0x44 +fn_80387C54 = .text:0x80387C54; // type:function size:0x4C +fn_80387CA0 = .text:0x80387CA0; // type:function size:0x34 +fn_80387CD4 = .text:0x80387CD4; // type:function size:0x44 +fn_80387D18 = .text:0x80387D18; // type:function size:0x4C +fn_80387D64 = .text:0x80387D64; // type:function size:0x34 +fn_80387D98 = .text:0x80387D98; // type:function size:0x44 +fn_80387DDC = .text:0x80387DDC; // type:function size:0x4C +fn_80387E28 = .text:0x80387E28; // type:function size:0x34 +fn_80387E5C = .text:0x80387E5C; // type:function size:0x34 +fn_80387E90 = .text:0x80387E90; // type:function size:0x4C +fn_80387EDC = .text:0x80387EDC; // type:function size:0x34 +fn_80387F10 = .text:0x80387F10; // type:function size:0x44 +fn_80387F54 = .text:0x80387F54; // type:function size:0x4C +fn_80387FA0 = .text:0x80387FA0; // type:function size:0x54 +fn_80387FF4 = .text:0x80387FF4; // type:function size:0x40 +fn_80388034 = .text:0x80388034; // type:function size:0x34 +fn_80388068 = .text:0x80388068; // type:function size:0x48 +fn_803880B0 = .text:0x803880B0; // type:function size:0x4C +fn_803880FC = .text:0x803880FC; // type:function size:0xE0 +fn_803881DC = .text:0x803881DC; // type:function size:0x98 +fn_80388274 = .text:0x80388274; // type:function size:0x11C +fn_80388390 = .text:0x80388390; // type:function size:0x4 +fn_80388394 = .text:0x80388394; // type:function size:0x4 +fn_80388398 = .text:0x80388398; // type:function size:0x5C +fn_803883F4 = .text:0x803883F4; // type:function size:0x3AC +fn_803887A0 = .text:0x803887A0; // type:function size:0x138 +fn_803888D8 = .text:0x803888D8; // type:function size:0x4 +fn_803888DC = .text:0x803888DC; // type:function size:0x6C +fn_80388948 = .text:0x80388948; // type:function size:0x40 +fn_80388988 = .text:0x80388988; // type:function size:0x104 +fn_80388A8C = .text:0x80388A8C; // type:function size:0x84 +__ct__27ObjPtr<7RndMesh,9ObjectDir>FPQ23Hmx6ObjectP7RndMesh = .text:0x80388B10; // type:function size:0x6C +fn_80388B7C = .text:0x80388B7C; // type:function size:0x13C +fn_80388CB8 = .text:0x80388CB8; // type:function size:0x8 +fn_80388CC0 = .text:0x80388CC0; // type:function size:0x1B4 +fn_80388E74 = .text:0x80388E74; // type:function size:0xAC +fn_80388F20 = .text:0x80388F20; // type:function size:0xAC +fn_80388FCC = .text:0x80388FCC; // type:function size:0xC8 +fn_80389094 = .text:0x80389094; // type:function size:0x18C +fn_80389220 = .text:0x80389220; // type:function size:0x48 +fn_80389268 = .text:0x80389268; // type:function size:0x4C +fn_803892B4 = .text:0x803892B4; // type:function size:0x134 +fn_803893E8 = .text:0x803893E8; // type:function size:0x8C +fn_80389474 = .text:0x80389474; // type:function size:0x70 +fn_803894E4 = .text:0x803894E4; // type:function size:0x14 +fn_803894F8 = .text:0x803894F8; // type:function size:0x14 +fn_8038950C = .text:0x8038950C; // type:function size:0x8 +fn_80389514 = .text:0x80389514; // type:function size:0x8 +fn_8038951C = .text:0x8038951C; // type:function size:0x8 +fn_80389524 = .text:0x80389524; // type:function size:0x8 +fn_8038952C = .text:0x8038952C; // type:function size:0x8 +fn_80389534 = .text:0x80389534; // type:function size:0x8 +fn_8038953C = .text:0x8038953C; // type:function size:0x8 +fn_80389544 = .text:0x80389544; // type:function size:0x8 +fn_8038954C = .text:0x8038954C; // type:function size:0x14 +fn_80389560 = .text:0x80389560; // type:function size:0x14 +fn_80389574 = .text:0x80389574; // type:function size:0x14 +fn_80389588 = .text:0x80389588; // type:function size:0x14 +fn_8038959C = .text:0x8038959C; // type:function size:0x14 +fn_803895B0 = .text:0x803895B0; // type:function size:0x14 +fn_803895C4 = .text:0x803895C4; // type:function size:0x14 +fn_803895D8 = .text:0x803895D8; // type:function size:0x14 +fn_803895EC = .text:0x803895EC; // type:function size:0x14 +fn_80389600 = .text:0x80389600; // type:function size:0x14 +fn_80389614 = .text:0x80389614; // type:function size:0x14 +fn_80389628 = .text:0x80389628; // type:function size:0x14 +fn_8038963C = .text:0x8038963C; // type:function size:0x14 +fn_80389650 = .text:0x80389650; // type:function size:0x8 +fn_80389658 = .text:0x80389658; // type:function size:0x8 +fn_80389660 = .text:0x80389660; // type:function size:0x8 +fn_80389668 = .text:0x80389668; // type:function size:0x8 +fn_80389670 = .text:0x80389670; // type:function size:0x8 +fn_80389678 = .text:0x80389678; // type:function size:0x94 +fn_8038970C = .text:0x8038970C; // type:function size:0x4 +fn_80389710 = .text:0x80389710; // type:function size:0x8 +fn_80389718 = .text:0x80389718; // type:function size:0x30 +fn_80389748 = .text:0x80389748; // type:function size:0x4 +fn_8038974C = .text:0x8038974C; // type:function size:0x54 +fn_803897A0 = .text:0x803897A0; // type:function size:0x64 +fn_80389804 = .text:0x80389804; // type:function size:0x50 +fn_80389854 = .text:0x80389854; // type:function size:0x10 +fn_80389864 = .text:0x80389864; // type:function size:0x58 +fn_803898BC = .text:0x803898BC; // type:function size:0x30 +fn_803898EC = .text:0x803898EC; // type:function size:0x38 +fn_80389924 = .text:0x80389924; // type:function size:0xD8 +fn_803899FC = .text:0x803899FC; // type:function size:0x8 +fn_80389A04 = .text:0x80389A04; // type:function size:0x3C +fn_80389A40 = .text:0x80389A40; // type:function size:0x50 +fn_80389A90 = .text:0x80389A90; // type:function size:0x6C +fn_80389AFC = .text:0x80389AFC; // type:function size:0x2C +fn_80389B28 = .text:0x80389B28; // type:function size:0x148 +fn_80389C70 = .text:0x80389C70; // type:function size:0x80 +fn_80389CF0 = .text:0x80389CF0; // type:function size:0x6C +fn_80389D5C = .text:0x80389D5C; // type:function size:0x40 +fn_80389D9C = .text:0x80389D9C; // type:function size:0x44 +fn_80389DE0 = .text:0x80389DE0; // type:function size:0x54 +fn_80389E34 = .text:0x80389E34; // type:function size:0xF0 +fn_80389F24 = .text:0x80389F24; // type:function size:0x58 +fn_80389F7C = .text:0x80389F7C; // type:function size:0x58 +fn_80389FD4 = .text:0x80389FD4; // type:function size:0x80 +fn_8038A054 = .text:0x8038A054; // type:function size:0x80 +fn_8038A0D4 = .text:0x8038A0D4; // type:function size:0x58 +fn_8038A12C = .text:0x8038A12C; // type:function size:0x54 +fn_8038A180 = .text:0x8038A180; // type:function size:0x5C +fn_8038A1DC = .text:0x8038A1DC; // type:function size:0x6C +fn_8038A248 = .text:0x8038A248; // type:function size:0x28 +fn_8038A270 = .text:0x8038A270; // type:function size:0x8 +fn_8038A278 = .text:0x8038A278; // type:function size:0x5C +fn_8038A2D4 = .text:0x8038A2D4; // type:function size:0x8 +fn_8038A2DC = .text:0x8038A2DC; // type:function size:0x3C +fn_8038A318 = .text:0x8038A318; // type:function size:0x2C +fn_8038A344 = .text:0x8038A344; // type:function size:0x8 +fn_8038A34C = .text:0x8038A34C; // type:function size:0x68 +fn_8038A3B4 = .text:0x8038A3B4; // type:function size:0x68 +fn_8038A41C = .text:0x8038A41C; // type:function size:0x50 +fn_8038A46C = .text:0x8038A46C; // type:function size:0x30 +fn_8038A49C = .text:0x8038A49C; // type:function size:0x30 +fn_8038A4CC = .text:0x8038A4CC; // type:function size:0x40 +fn_8038A50C = .text:0x8038A50C; // type:function size:0x19C +fn_8038A6A8 = .text:0x8038A6A8; // type:function size:0x3C +fn_8038A6E4 = .text:0x8038A6E4; // type:function size:0x3E0 +fn_8038AAC4 = .text:0x8038AAC4; // type:function size:0x40 +fn_8038AB04 = .text:0x8038AB04; // type:function size:0x104 +fn_8038AC08 = .text:0x8038AC08; // type:function size:0x4 +fn_8038AC0C = .text:0x8038AC0C; // type:function size:0x48 +fn_8038AC54 = .text:0x8038AC54; // type:function size:0x88 +fn_8038ACDC = .text:0x8038ACDC; // type:function size:0x48 +fn_8038AD24 = .text:0x8038AD24; // type:function size:0x4C +fn_8038AD70 = .text:0x8038AD70; // type:function size:0x4C4 +fn_8038B234 = .text:0x8038B234; // type:function size:0x74 +fn_8038B2A8 = .text:0x8038B2A8; // type:function size:0x5C +fn_8038B304 = .text:0x8038B304; // type:function size:0x4 +fn_8038B308 = .text:0x8038B308; // type:function size:0x90 +fn_8038B398 = .text:0x8038B398; // type:function size:0x4 +fn_8038B39C = .text:0x8038B39C; // type:function size:0x40 +fn_8038B3DC = .text:0x8038B3DC; // type:function size:0x8C +fn_8038B468 = .text:0x8038B468; // type:function size:0x8 +fn_8038B470 = .text:0x8038B470; // type:function size:0x2C +fn_8038B49C = .text:0x8038B49C; // type:function size:0x58 +fn_8038B4F4 = .text:0x8038B4F4; // type:function size:0x28 +fn_8038B51C = .text:0x8038B51C; // type:function size:0x68 +fn_8038B584 = .text:0x8038B584; // type:function size:0x78 +fn_8038B5FC = .text:0x8038B5FC; // type:function size:0x8 +fn_8038B604 = .text:0x8038B604; // type:function size:0xA0 +fn_8038B6A4 = .text:0x8038B6A4; // type:function size:0x68 +fn_8038B70C = .text:0x8038B70C; // type:function size:0x40 +fn_8038B74C = .text:0x8038B74C; // type:function size:0x104 +fn_8038B850 = .text:0x8038B850; // type:function size:0x80 +fn_8038B8D0 = .text:0x8038B8D0; // type:function size:0x4 +fn_8038B8D4 = .text:0x8038B8D4; // type:function size:0x90 +fn_8038B964 = .text:0x8038B964; // type:function size:0x4 +fn_8038B968 = .text:0x8038B968; // type:function size:0x40 +fn_8038B9A8 = .text:0x8038B9A8; // type:function size:0x8C +fn_8038BA34 = .text:0x8038BA34; // type:function size:0x8 +fn_8038BA3C = .text:0x8038BA3C; // type:function size:0x2C +fn_8038BA68 = .text:0x8038BA68; // type:function size:0x58 +fn_8038BAC0 = .text:0x8038BAC0; // type:function size:0x28 +fn_8038BAE8 = .text:0x8038BAE8; // type:function size:0x68 +fn_8038BB50 = .text:0x8038BB50; // type:function size:0x34 +fn_8038BB84 = .text:0x8038BB84; // type:function size:0x40 +fn_8038BBC4 = .text:0x8038BBC4; // type:function size:0x104 +fn_8038BCC8 = .text:0x8038BCC8; // type:function size:0x3C +fn_8038BD04 = .text:0x8038BD04; // type:function size:0x11C +fn_8038BE20 = .text:0x8038BE20; // type:function size:0x3C +fn_8038BE5C = .text:0x8038BE5C; // type:function size:0x11C +fn_8038BF78 = .text:0x8038BF78; // type:function size:0x40 +fn_8038BFB8 = .text:0x8038BFB8; // type:function size:0x44 +fn_8038BFFC = .text:0x8038BFFC; // type:function size:0x54 +fn_8038C050 = .text:0x8038C050; // type:function size:0x4C +fn_8038C09C = .text:0x8038C09C; // type:function size:0x78 +fn_8038C114 = .text:0x8038C114; // type:function size:0xE8 +fn_8038C1FC = .text:0x8038C1FC; // type:function size:0x2C +fn_8038C228 = .text:0x8038C228; // type:function size:0x8 +fn_8038C230 = .text:0x8038C230; // type:function size:0x80 +fn_8038C2B0 = .text:0x8038C2B0; // type:function size:0x8 +__ct__33ObjPtr<12EventTrigger,9ObjectDir>FPQ23Hmx6ObjectP12EventTrigger = .text:0x8038C2B8; // type:function size:0x68 +fn_8038C320 = .text:0x8038C320; // type:function size:0x58 +fn_8038C378 = .text:0x8038C378; // type:function size:0x80 +fn_8038C3F8 = .text:0x8038C3F8; // type:function size:0x80 +fn_8038C478 = .text:0x8038C478; // type:function size:0x58 +fn_8038C4D0 = .text:0x8038C4D0; // type:function size:0x54 +fn_8038C524 = .text:0x8038C524; // type:function size:0x5C +fn_8038C580 = .text:0x8038C580; // type:function size:0x6C +fn_8038C5EC = .text:0x8038C5EC; // type:function size:0x28 +fn_8038C614 = .text:0x8038C614; // type:function size:0x8 +fn_8038C61C = .text:0x8038C61C; // type:function size:0x3C +fn_8038C658 = .text:0x8038C658; // type:function size:0x6C +fn_8038C6C4 = .text:0x8038C6C4; // type:function size:0x34 +fn_8038C6F8 = .text:0x8038C6F8; // type:function size:0x4 +fn_8038C6FC = .text:0x8038C6FC; // type:function size:0x3C +fn_8038C738 = .text:0x8038C738; // type:function size:0x5C +fn_8038C794 = .text:0x8038C794; // type:function size:0x68 +fn_8038C7FC = .text:0x8038C7FC; // type:function size:0x80 +fn_8038C87C = .text:0x8038C87C; // type:function size:0x4 +fn_8038C880 = .text:0x8038C880; // type:function size:0x4C +fn_8038C8CC = .text:0x8038C8CC; // type:function size:0x70 +fn_8038C93C = .text:0x8038C93C; // type:function size:0x30 +fn_8038C96C = .text:0x8038C96C; // type:function size:0x2C +fn_8038C998 = .text:0x8038C998; // type:function size:0x34 +fn_8038C9CC = .text:0x8038C9CC; // type:function size:0x4 +fn_8038C9D0 = .text:0x8038C9D0; // type:function size:0x3C +fn_8038CA0C = .text:0x8038CA0C; // type:function size:0x5C +fn_8038CA68 = .text:0x8038CA68; // type:function size:0x5C +fn_8038CAC4 = .text:0x8038CAC4; // type:function size:0x58 +fn_8038CB1C = .text:0x8038CB1C; // type:function size:0x58 +fn_8038CB74 = .text:0x8038CB74; // type:function size:0x58 +fn_8038CBCC = .text:0x8038CBCC; // type:function size:0x60 +fn_8038CC2C = .text:0x8038CC2C; // type:function size:0x58 +fn_8038CC84 = .text:0x8038CC84; // type:function size:0x4 +fn_8038CC88 = .text:0x8038CC88; // type:function size:0x4C +fn_8038CCD4 = .text:0x8038CCD4; // type:function size:0x70 +fn_8038CD44 = .text:0x8038CD44; // type:function size:0x30 +fn_8038CD74 = .text:0x8038CD74; // type:function size:0x2C +fn_8038CDA0 = .text:0x8038CDA0; // type:function size:0x30 +fn_8038CDD0 = .text:0x8038CDD0; // type:function size:0x30 +fn_8038CE00 = .text:0x8038CE00; // type:function size:0x40 +fn_8038CE40 = .text:0x8038CE40; // type:function size:0x4C +fn_8038CE8C = .text:0x8038CE8C; // type:function size:0x78 +fn_8038CF04 = .text:0x8038CF04; // type:function size:0x9C +fn_8038CFA0 = .text:0x8038CFA0; // type:function size:0xB8 +fn_8038D058 = .text:0x8038D058; // type:function size:0x70 +fn_8038D0C8 = .text:0x8038D0C8; // type:function size:0x5C +fn_8038D124 = .text:0x8038D124; // type:function size:0x30 +fn_8038D154 = .text:0x8038D154; // type:function size:0x8 +fn_8038D15C = .text:0x8038D15C; // type:function size:0x18C +fn_8038D2E8 = .text:0x8038D2E8; // type:function size:0x3C +fn_8038D324 = .text:0x8038D324; // type:function size:0x4D8 +fn_8038D7FC = .text:0x8038D7FC; // type:function size:0x8 +fn_8038D804 = .text:0x8038D804; // type:function size:0x8 +fn_8038D80C = .text:0x8038D80C; // type:function size:0x8 +fn_8038D814 = .text:0x8038D814; // type:function size:0x8 +fn_8038D81C = .text:0x8038D81C; // type:function size:0xC0 +fn_8038D8DC = .text:0x8038D8DC; // type:function size:0x30 +fn_8038D90C = .text:0x8038D90C; // type:function size:0x5C +fn_8038D968 = .text:0x8038D968; // type:function size:0x64 +fn_8038D9CC = .text:0x8038D9CC; // type:function size:0x8 +fn_8038D9D4 = .text:0x8038D9D4; // type:function size:0x1FC +fn_8038DBD0 = .text:0x8038DBD0; // type:function size:0x14 +fn_8038DBE4 = .text:0x8038DBE4; // type:function size:0x1A8 +fn_8038DD8C = .text:0x8038DD8C; // type:function size:0x30 +fn_8038DDBC = .text:0x8038DDBC; // type:function size:0x48 +fn_8038DE04 = .text:0x8038DE04; // type:function size:0x74 +fn_8038DE78 = .text:0x8038DE78; // type:function size:0x1A8 +fn_8038E020 = .text:0x8038E020; // type:function size:0x58 +fn_8038E078 = .text:0x8038E078; // type:function size:0xF8 +fn_8038E170 = .text:0x8038E170; // type:function size:0x114 +fn_8038E284 = .text:0x8038E284; // type:function size:0x14 +fn_8038E298 = .text:0x8038E298; // type:function size:0xC8 +fn_8038E360 = .text:0x8038E360; // type:function size:0xAC +fn_8038E40C = .text:0x8038E40C; // type:function size:0x24 +fn_8038E430 = .text:0x8038E430; // type:function size:0x48 +fn_8038E478 = .text:0x8038E478; // type:function size:0x3C +fn_8038E4B4 = .text:0x8038E4B4; // type:function size:0xCC +fn_8038E580 = .text:0x8038E580; // type:function size:0x3C +fn_8038E5BC = .text:0x8038E5BC; // type:function size:0x3C +fn_8038E5F8 = .text:0x8038E5F8; // type:function size:0x68 +fn_8038E660 = .text:0x8038E660; // type:function size:0xCC +fn_8038E72C = .text:0x8038E72C; // type:function size:0x58 +fn_8038E784 = .text:0x8038E784; // type:function size:0x154 +fn_8038E8D8 = .text:0x8038E8D8; // type:function size:0x10C +fn_8038E9E4 = .text:0x8038E9E4; // type:function size:0x4 +fn_8038E9E8 = .text:0x8038E9E8; // type:function size:0x48 +fn_8038EA30 = .text:0x8038EA30; // type:function size:0x78 +fn_8038EAA8 = .text:0x8038EAA8; // type:function size:0x8 +fn_8038EAB0 = .text:0x8038EAB0; // type:function size:0x98 +fn_8038EB48 = .text:0x8038EB48; // type:function size:0x7C +fn_8038EBC4 = .text:0x8038EBC4; // type:function size:0x56C +fn_8038F130 = .text:0x8038F130; // type:function size:0xC0 +fn_8038F1F0 = .text:0x8038F1F0; // type:function size:0x258 +fn_8038F448 = .text:0x8038F448; // type:function size:0x170 +fn_8038F5B8 = .text:0x8038F5B8; // type:function size:0x2C +fn_8038F5E4 = .text:0x8038F5E4; // type:function size:0x84 +fn_8038F668 = .text:0x8038F668; // type:function size:0x2C +fn_8038F694 = .text:0x8038F694; // type:function size:0x1E8 +fn_8038F87C = .text:0x8038F87C; // type:function size:0xBC +fn_8038F938 = .text:0x8038F938; // type:function size:0x44 +Handle__11BandCamShotFP9DataArrayb = .text:0x8038F97C; // type:function size:0x468 +fn_8038FDE4 = .text:0x8038FDE4; // type:function size:0xCC +fn_8038FEB0 = .text:0x8038FEB0; // type:function size:0x2AC +fn_8039015C = .text:0x8039015C; // type:function size:0x8 +fn_80390164 = .text:0x80390164; // type:function size:0x8 +fn_8039016C = .text:0x8039016C; // type:function size:0x110 +fn_8039027C = .text:0x8039027C; // type:function size:0x2A4 +fn_80390520 = .text:0x80390520; // type:function size:0x6C +fn_8039058C = .text:0x8039058C; // type:function size:0x8C +fn_80390618 = .text:0x80390618; // type:function size:0x50 +fn_80390668 = .text:0x80390668; // type:function size:0x50 +fn_803906B8 = .text:0x803906B8; // type:function size:0xD0 +fn_80390788 = .text:0x80390788; // type:function size:0x6C +fn_803907F4 = .text:0x803907F4; // type:function size:0x78 +fn_8039086C = .text:0x8039086C; // type:function size:0x120 +fn_8039098C = .text:0x8039098C; // type:function size:0xA4 +fn_80390A30 = .text:0x80390A30; // type:function size:0x68 +fn_80390A98 = .text:0x80390A98; // type:function size:0x2C +fn_80390AC4 = .text:0x80390AC4; // type:function size:0x58 +fn_80390B1C = .text:0x80390B1C; // type:function size:0x160 +fn_80390C7C = .text:0x80390C7C; // type:function size:0x5C +fn_80390CD8 = .text:0x80390CD8; // type:function size:0x10 +fn_80390CE8 = .text:0x80390CE8; // type:function size:0x7C +fn_80390D64 = .text:0x80390D64; // type:function size:0x68 +fn_80390DCC = .text:0x80390DCC; // type:function size:0x28 +fn_80390DF4 = .text:0x80390DF4; // type:function size:0x5C +fn_80390E50 = .text:0x80390E50; // type:function size:0x60 +fn_80390EB0 = .text:0x80390EB0; // type:function size:0x68 +fn_80390F18 = .text:0x80390F18; // type:function size:0x2C +fn_80390F44 = .text:0x80390F44; // type:function size:0x68 +fn_80390FAC = .text:0x80390FAC; // type:function size:0x2C +fn_80390FD8 = .text:0x80390FD8; // type:function size:0x8 +fn_80390FE0 = .text:0x80390FE0; // type:function size:0xE4 +fn_803910C4 = .text:0x803910C4; // type:function size:0x54 +fn_80391118 = .text:0x80391118; // type:function size:0x6C +fn_80391184 = .text:0x80391184; // type:function size:0x64 +fn_803911E8 = .text:0x803911E8; // type:function size:0x50 +fn_80391238 = .text:0x80391238; // type:function size:0x10 +fn_80391248 = .text:0x80391248; // type:function size:0x48 +fn_80391290 = .text:0x80391290; // type:function size:0x6C +fn_803912FC = .text:0x803912FC; // type:function size:0x6C +fn_80391368 = .text:0x80391368; // type:function size:0x8C +fn_803913F4 = .text:0x803913F4; // type:function size:0x6C +fn_80391460 = .text:0x80391460; // type:function size:0x34 +fn_80391494 = .text:0x80391494; // type:function size:0x8 +fn_8039149C = .text:0x8039149C; // type:function size:0xE4 +fn_80391580 = .text:0x80391580; // type:function size:0x54 +fn_803915D4 = .text:0x803915D4; // type:function size:0x6C +fn_80391640 = .text:0x80391640; // type:function size:0x64 +fn_803916A4 = .text:0x803916A4; // type:function size:0x50 +fn_803916F4 = .text:0x803916F4; // type:function size:0x10 +fn_80391704 = .text:0x80391704; // type:function size:0x40 +fn_80391744 = .text:0x80391744; // type:function size:0x44 +fn_80391788 = .text:0x80391788; // type:function size:0x30 +fn_803917B8 = .text:0x803917B8; // type:function size:0x90 +fn_80391848 = .text:0x80391848; // type:function size:0x60 +fn_803918A8 = .text:0x803918A8; // type:function size:0x90 +fn_80391938 = .text:0x80391938; // type:function size:0x60 +fn_80391998 = .text:0x80391998; // type:function size:0x8C +fn_80391A24 = .text:0x80391A24; // type:function size:0x6C +fn_80391A90 = .text:0x80391A90; // type:function size:0x2C +fn_80391ABC = .text:0x80391ABC; // type:function size:0x8 +fn_80391AC4 = .text:0x80391AC4; // type:function size:0x34 +fn_80391AF8 = .text:0x80391AF8; // type:function size:0x8 +fn_80391B00 = .text:0x80391B00; // type:function size:0x6C +fn_80391B6C = .text:0x80391B6C; // type:function size:0x6C +fn_80391BD8 = .text:0x80391BD8; // type:function size:0x6C +fn_80391C44 = .text:0x80391C44; // type:function size:0x10C +fn_80391D50 = .text:0x80391D50; // type:function size:0x8 +fn_80391D58 = .text:0x80391D58; // type:function size:0x134 +fn_80391E8C = .text:0x80391E8C; // type:function size:0x4 +fn_80391E90 = .text:0x80391E90; // type:function size:0x198 +fn_80392028 = .text:0x80392028; // type:function size:0x5C +fn_80392084 = .text:0x80392084; // type:function size:0x54 +fn_803920D8 = .text:0x803920D8; // type:function size:0x28 +fn_80392100 = .text:0x80392100; // type:function size:0x68 +fn_80392168 = .text:0x80392168; // type:function size:0x38 +fn_803921A0 = .text:0x803921A0; // type:function size:0x114 +fn_803922B4 = .text:0x803922B4; // type:function size:0x5C +fn_80392310 = .text:0x80392310; // type:function size:0x5C +fn_8039236C = .text:0x8039236C; // type:function size:0x54 +fn_803923C0 = .text:0x803923C0; // type:function size:0x190 +fn_80392550 = .text:0x80392550; // type:function size:0x5C +fn_803925AC = .text:0x803925AC; // type:function size:0x10 +fn_803925BC = .text:0x803925BC; // type:function size:0x54 +fn_80392610 = .text:0x80392610; // type:function size:0x28 +fn_80392638 = .text:0x80392638; // type:function size:0x68 +fn_803926A0 = .text:0x803926A0; // type:function size:0x5C +fn_803926FC = .text:0x803926FC; // type:function size:0x40 +fn_8039273C = .text:0x8039273C; // type:function size:0x114 +fn_80392850 = .text:0x80392850; // type:function size:0x60 +fn_803928B0 = .text:0x803928B0; // type:function size:0x5C +fn_8039290C = .text:0x8039290C; // type:function size:0x54 +fn_80392960 = .text:0x80392960; // type:function size:0x60 +fn_803929C0 = .text:0x803929C0; // type:function size:0x58 +fn_80392A18 = .text:0x80392A18; // type:function size:0x58 +fn_80392A70 = .text:0x80392A70; // type:function size:0x60 +fn_80392AD0 = .text:0x80392AD0; // type:function size:0x58 +fn_80392B28 = .text:0x80392B28; // type:function size:0x30 +fn_80392B58 = .text:0x80392B58; // type:function size:0x30 +fn_80392B88 = .text:0x80392B88; // type:function size:0x60 +fn_80392BE8 = .text:0x80392BE8; // type:function size:0x68 +fn_80392C50 = .text:0x80392C50; // type:function size:0x14 +fn_80392C64 = .text:0x80392C64; // type:function size:0x14 +fn_80392C78 = .text:0x80392C78; // type:function size:0x14 +fn_80392C8C = .text:0x80392C8C; // type:function size:0x14 +fn_80392CA0 = .text:0x80392CA0; // type:function size:0x14 +fn_80392CB4 = .text:0x80392CB4; // type:function size:0x14 +fn_80392CC8 = .text:0x80392CC8; // type:function size:0x14 +fn_80392CDC = .text:0x80392CDC; // type:function size:0x14 +fn_80392CF0 = .text:0x80392CF0; // type:function size:0xE8 +fn_80392DD8 = .text:0x80392DD8; // type:function size:0x8 +fn_80392DE0 = .text:0x80392DE0; // type:function size:0x8 +fn_80392DE8 = .text:0x80392DE8; // type:function size:0x48 +fn_80392E30 = .text:0x80392E30; // type:function size:0x4C +fn_80392E7C = .text:0x80392E7C; // type:function size:0x50 +fn_80392ECC = .text:0x80392ECC; // type:function size:0x38 +fn_80392F04 = .text:0x80392F04; // type:function size:0xA4 +fn_80392FA8 = .text:0x80392FA8; // type:function size:0xA8 +fn_80393050 = .text:0x80393050; // type:function size:0x9C +fn_803930EC = .text:0x803930EC; // type:function size:0xC0 +fn_803931AC = .text:0x803931AC; // type:function size:0x4 +fn_803931B0 = .text:0x803931B0; // type:function size:0xB4 +fn_80393264 = .text:0x80393264; // type:function size:0x8 +fn_8039326C = .text:0x8039326C; // type:function size:0xB0 +fn_8039331C = .text:0x8039331C; // type:function size:0x40 +Handle__17BandConfigurationFP9DataArrayb = .text:0x8039335C; // type:function size:0x1B4 +fn_80393510 = .text:0x80393510; // type:function size:0xC8 +fn_803935D8 = .text:0x803935D8; // type:function size:0x8 +fn_803935E0 = .text:0x803935E0; // type:function size:0x8 +fn_803935E8 = .text:0x803935E8; // type:function size:0x78 +fn_80393660 = .text:0x80393660; // type:function size:0x6C +fn_803936CC = .text:0x803936CC; // type:function size:0x4 +fn_803936D0 = .text:0x803936D0; // type:function size:0x128 +fn_803937F8 = .text:0x803937F8; // type:function size:0x50 +fn_80393848 = .text:0x80393848; // type:function size:0x10 +fn_80393858 = .text:0x80393858; // type:function size:0x8C +fn_803938E4 = .text:0x803938E4; // type:function size:0x110 +fn_803939F4 = .text:0x803939F4; // type:function size:0xF0 +fn_80393AE4 = .text:0x80393AE4; // type:function size:0x8C +fn_80393B70 = .text:0x80393B70; // type:function size:0x48 +fn_80393BB8 = .text:0x80393BB8; // type:function size:0x34 +fn_80393BEC = .text:0x80393BEC; // type:function size:0x44 +fn_80393C30 = .text:0x80393C30; // type:function size:0x4C +fn_80393C7C = .text:0x80393C7C; // type:function size:0xC +fn_80393C88 = .text:0x80393C88; // type:function size:0x32C +fn_80393FB4 = .text:0x80393FB4; // type:function size:0x58 +fn_8039400C = .text:0x8039400C; // type:function size:0x58 +fn_80394064 = .text:0x80394064; // type:function size:0x80 +fn_803940E4 = .text:0x803940E4; // type:function size:0x80 +fn_80394164 = .text:0x80394164; // type:function size:0x58 +fn_803941BC = .text:0x803941BC; // type:function size:0x54 +fn_80394210 = .text:0x80394210; // type:function size:0x5C +fn_8039426C = .text:0x8039426C; // type:function size:0x6C +fn_803942D8 = .text:0x803942D8; // type:function size:0x28 +fn_80394300 = .text:0x80394300; // type:function size:0x8 +fn_80394308 = .text:0x80394308; // type:function size:0x3C +fn_80394344 = .text:0x80394344; // type:function size:0x58 +fn_8039439C = .text:0x8039439C; // type:function size:0x58 +fn_803943F4 = .text:0x803943F4; // type:function size:0x80 +fn_80394474 = .text:0x80394474; // type:function size:0x80 +fn_803944F4 = .text:0x803944F4; // type:function size:0x58 +fn_8039454C = .text:0x8039454C; // type:function size:0x54 +fn_803945A0 = .text:0x803945A0; // type:function size:0x5C +fn_803945FC = .text:0x803945FC; // type:function size:0x6C +fn_80394668 = .text:0x80394668; // type:function size:0x28 +fn_80394690 = .text:0x80394690; // type:function size:0x8 +fn_80394698 = .text:0x80394698; // type:function size:0x3C +fn_803946D4 = .text:0x803946D4; // type:function size:0x80 +fn_80394754 = .text:0x80394754; // type:function size:0x80 +fn_803947D4 = .text:0x803947D4; // type:function size:0x80 +fn_80394854 = .text:0x80394854; // type:function size:0x80 +fn_803948D4 = .text:0x803948D4; // type:function size:0x70 +fn_80394944 = .text:0x80394944; // type:function size:0x108 +fn_80394A4C = .text:0x80394A4C; // type:function size:0x108 +fn_80394B54 = .text:0x80394B54; // type:function size:0x80 +fn_80394BD4 = .text:0x80394BD4; // type:function size:0x4 +fn_80394BD8 = .text:0x80394BD8; // type:function size:0x40 +fn_80394C18 = .text:0x80394C18; // type:function size:0x30 +fn_80394C48 = .text:0x80394C48; // type:function size:0x30 +fn_80394C78 = .text:0x80394C78; // type:function size:0x40 +fn_80394CB8 = .text:0x80394CB8; // type:function size:0x40 +fn_80394CF8 = .text:0x80394CF8; // type:function size:0x30 +fn_80394D28 = .text:0x80394D28; // type:function size:0x30 +fn_80394D58 = .text:0x80394D58; // type:function size:0x40 +fn_80394D98 = .text:0x80394D98; // type:function size:0x68 +fn_80394E00 = .text:0x80394E00; // type:function size:0x68 +fn_80394E68 = .text:0x80394E68; // type:function size:0x68 +fn_80394ED0 = .text:0x80394ED0; // type:function size:0x68 +fn_80394F38 = .text:0x80394F38; // type:function size:0x48 +__ct__11RndPollableFv = .text:0x80394F80; // type:function size:0x6C +fn_80394FEC = .text:0x80394FEC; // type:function size:0x1F4 +fn_803951E0 = .text:0x803951E0; // type:function size:0xA0 +fn_80395280 = .text:0x80395280; // type:function size:0xA8 +fn_80395328 = .text:0x80395328; // type:function size:0x698 +fn_803959C0 = .text:0x803959C0; // type:function size:0xF8 +fn_80395AB8 = .text:0x80395AB8; // type:function size:0x40 +fn_80395AF8 = .text:0x80395AF8; // type:function size:0x128 +fn_80395C20 = .text:0x80395C20; // type:function size:0x24 +fn_80395C44 = .text:0x80395C44; // type:function size:0x8 +fn_80395C4C = .text:0x80395C4C; // type:function size:0x8 +fn_80395C54 = .text:0x80395C54; // type:function size:0xA0 +fn_80395CF4 = .text:0x80395CF4; // type:function size:0x7C +fn_80395D70 = .text:0x80395D70; // type:function size:0x130 +fn_80395EA0 = .text:0x80395EA0; // type:function size:0x218 +fn_803960B8 = .text:0x803960B8; // type:function size:0x4 +fn_803960BC = .text:0x803960BC; // type:function size:0x48 +fn_80396104 = .text:0x80396104; // type:function size:0x50 +fn_80396154 = .text:0x80396154; // type:function size:0x48 +fn_8039619C = .text:0x8039619C; // type:function size:0x6C +fn_80396208 = .text:0x80396208; // type:function size:0x4 +fn_8039620C = .text:0x8039620C; // type:function size:0xD0 +fn_803962DC = .text:0x803962DC; // type:function size:0x70 +fn_8039634C = .text:0x8039634C; // type:function size:0x54 +fn_803963A0 = .text:0x803963A0; // type:function size:0x4C +fn_803963EC = .text:0x803963EC; // type:function size:0x68 +fn_80396454 = .text:0x80396454; // type:function size:0x9C +fn_803964F0 = .text:0x803964F0; // type:function size:0x10 +fn_80396500 = .text:0x80396500; // type:function size:0x3C +fn_8039653C = .text:0x8039653C; // type:function size:0x3C +fn_80396578 = .text:0x80396578; // type:function size:0x7C +fn_803965F4 = .text:0x803965F4; // type:function size:0x6C +fn_80396660 = .text:0x80396660; // type:function size:0x1B0 +fn_80396810 = .text:0x80396810; // type:function size:0x58 +fn_80396868 = .text:0x80396868; // type:function size:0x80 +fn_803968E8 = .text:0x803968E8; // type:function size:0x80 +fn_80396968 = .text:0x80396968; // type:function size:0x58 +fn_803969C0 = .text:0x803969C0; // type:function size:0x54 +fn_80396A14 = .text:0x80396A14; // type:function size:0x5C +fn_80396A70 = .text:0x80396A70; // type:function size:0x6C +fn_80396ADC = .text:0x80396ADC; // type:function size:0x28 +fn_80396B04 = .text:0x80396B04; // type:function size:0x8 +fn_80396B0C = .text:0x80396B0C; // type:function size:0x8 +fn_80396B14 = .text:0x80396B14; // type:function size:0x3C +fn_80396B50 = .text:0x80396B50; // type:function size:0x68 +fn_80396BB8 = .text:0x80396BB8; // type:function size:0x4 +fn_80396BBC = .text:0x80396BBC; // type:function size:0x88 +fn_80396C44 = .text:0x80396C44; // type:function size:0x2C +fn_80396C70 = .text:0x80396C70; // type:function size:0x10 +fn_80396C80 = .text:0x80396C80; // type:function size:0x50 +fn_80396CD0 = .text:0x80396CD0; // type:function size:0x8 +fn_80396CD8 = .text:0x80396CD8; // type:function size:0x38 +fn_80396D10 = .text:0x80396D10; // type:function size:0x30 +fn_80396D40 = .text:0x80396D40; // type:function size:0x30 +fn_80396D70 = .text:0x80396D70; // type:function size:0x40 +fn_80396DB0 = .text:0x80396DB0; // type:function size:0x2D4 +fn_80397084 = .text:0x80397084; // type:function size:0x19C +fn_80397220 = .text:0x80397220; // type:function size:0x84 +fn_803972A4 = .text:0x803972A4; // type:function size:0x104 +fn_803973A8 = .text:0x803973A8; // type:function size:0x3C +fn_803973E4 = .text:0x803973E4; // type:function size:0x120 +fn_80397504 = .text:0x80397504; // type:function size:0x8 +fn_8039750C = .text:0x8039750C; // type:function size:0x1C +fn_80397528 = .text:0x80397528; // type:function size:0x204 +fn_8039772C = .text:0x8039772C; // type:function size:0x4C +fn_80397778 = .text:0x80397778; // type:function size:0xC0 +fn_80397838 = .text:0x80397838; // type:function size:0x27C +fn_80397AB4 = .text:0x80397AB4; // type:function size:0x50 +fn_80397B04 = .text:0x80397B04; // type:function size:0xD0 +fn_80397BD4 = .text:0x80397BD4; // type:function size:0x78 +fn_80397C4C = .text:0x80397C4C; // type:function size:0x4C +fn_80397C98 = .text:0x80397C98; // type:function size:0x44 +fn_80397CDC = .text:0x80397CDC; // type:function size:0x74 +fn_80397D50 = .text:0x80397D50; // type:function size:0x90 +fn_80397DE0 = .text:0x80397DE0; // type:function size:0x13C +fn_80397F1C = .text:0x80397F1C; // type:function size:0xF8 +fn_80398014 = .text:0x80398014; // type:function size:0x10 +fn_80398024 = .text:0x80398024; // type:function size:0x128 +fn_8039814C = .text:0x8039814C; // type:function size:0x24 +fn_80398170 = .text:0x80398170; // type:function size:0x8 +fn_80398178 = .text:0x80398178; // type:function size:0x4 +fn_8039817C = .text:0x8039817C; // type:function size:0x3C +fn_803981B8 = .text:0x803981B8; // type:function size:0x40 +fn_803981F8 = .text:0x803981F8; // type:function size:0x8C +fn_80398284 = .text:0x80398284; // type:function size:0x8 +fn_8039828C = .text:0x8039828C; // type:function size:0x2C +fn_803982B8 = .text:0x803982B8; // type:function size:0x58 +fn_80398310 = .text:0x80398310; // type:function size:0x28 +fn_80398338 = .text:0x80398338; // type:function size:0x68 +fn_803983A0 = .text:0x803983A0; // type:function size:0x35C +fn_803986FC = .text:0x803986FC; // type:function size:0x10 +fn_8039870C = .text:0x8039870C; // type:function size:0x14 +fn_80398720 = .text:0x80398720; // type:function size:0x2C +fn_8039874C = .text:0x8039874C; // type:function size:0x30 +fn_8039877C = .text:0x8039877C; // type:function size:0x2C +fn_803987A8 = .text:0x803987A8; // type:function size:0xFC +fn_803988A4 = .text:0x803988A4; // type:function size:0xD0 +fn_80398974 = .text:0x80398974; // type:function size:0x4 +fn_80398978 = .text:0x80398978; // type:function size:0x3C +fn_803989B4 = .text:0x803989B4; // type:function size:0x40 +fn_803989F4 = .text:0x803989F4; // type:function size:0x8C +fn_80398A80 = .text:0x80398A80; // type:function size:0x8 +fn_80398A88 = .text:0x80398A88; // type:function size:0x2C +fn_80398AB4 = .text:0x80398AB4; // type:function size:0x58 +fn_80398B0C = .text:0x80398B0C; // type:function size:0x28 +fn_80398B34 = .text:0x80398B34; // type:function size:0x68 +fn_80398B9C = .text:0x80398B9C; // type:function size:0x1B0 +fn_80398D4C = .text:0x80398D4C; // type:function size:0x38 +fn_80398D84 = .text:0x80398D84; // type:function size:0x10 +fn_80398D94 = .text:0x80398D94; // type:function size:0x2C +fn_80398DC0 = .text:0x80398DC0; // type:function size:0x84 +fn_80398E44 = .text:0x80398E44; // type:function size:0x2C +fn_80398E70 = .text:0x80398E70; // type:function size:0x68 +fn_80398ED8 = .text:0x80398ED8; // type:function size:0x8 +fn_80398EE0 = .text:0x80398EE0; // type:function size:0x8 +fn_80398EE8 = .text:0x80398EE8; // type:function size:0x90 +fn_80398F78 = .text:0x80398F78; // type:function size:0xD6C +fn_80399CE4 = .text:0x80399CE4; // type:function size:0xBC +fn_80399DA0 = .text:0x80399DA0; // type:function size:0x110 +fn_80399EB0 = .text:0x80399EB0; // type:function size:0x2C8 +fn_8039A178 = .text:0x8039A178; // type:function size:0x98 +fn_8039A210 = .text:0x8039A210; // type:function size:0x8 +fn_8039A218 = .text:0x8039A218; // type:function size:0x80 +fn_8039A298 = .text:0x8039A298; // type:function size:0xA0 +fn_8039A338 = .text:0x8039A338; // type:function size:0x270 +fn_8039A5A8 = .text:0x8039A5A8; // type:function size:0x10F0 +fn_8039B698 = .text:0x8039B698; // type:function size:0x180 +fn_8039B818 = .text:0x8039B818; // type:function size:0xA0 +fn_8039B8B8 = .text:0x8039B8B8; // type:function size:0xA0 +fn_8039B958 = .text:0x8039B958; // type:function size:0x8 +fn_8039B960 = .text:0x8039B960; // type:function size:0x134 +fn_8039BA94 = .text:0x8039BA94; // type:function size:0x4 +fn_8039BA98 = .text:0x8039BA98; // type:function size:0xA0 +fn_8039BB38 = .text:0x8039BB38; // type:function size:0x6C +fn_8039BBA4 = .text:0x8039BBA4; // type:function size:0x8 +fn_8039BBAC = .text:0x8039BBAC; // type:function size:0x8 +fn_8039BBB4 = .text:0x8039BBB4; // type:function size:0x1A0 +fn_8039BD54 = .text:0x8039BD54; // type:function size:0x180 +fn_8039BED4 = .text:0x8039BED4; // type:function size:0xE8 +fn_8039BFBC = .text:0x8039BFBC; // type:function size:0x98 +fn_8039C054 = .text:0x8039C054; // type:function size:0x318 +fn_8039C36C = .text:0x8039C36C; // type:function size:0x4 +fn_8039C370 = .text:0x8039C370; // type:function size:0x88 +fn_8039C3F8 = .text:0x8039C3F8; // type:function size:0x2C +fn_8039C424 = .text:0x8039C424; // type:function size:0x10 +fn_8039C434 = .text:0x8039C434; // type:function size:0x2C4 +fn_8039C6F8 = .text:0x8039C6F8; // type:function size:0x44 +fn_8039C73C = .text:0x8039C73C; // type:function size:0x14 +fn_8039C750 = .text:0x8039C750; // type:function size:0x13C +fn_8039C88C = .text:0x8039C88C; // type:function size:0x110 +fn_8039C99C = .text:0x8039C99C; // type:function size:0x94 +fn_8039CA30 = .text:0x8039CA30; // type:function size:0x8C +fn_8039CABC = .text:0x8039CABC; // type:function size:0x110 +fn_8039CBCC = .text:0x8039CBCC; // type:function size:0xF0 +fn_8039CCBC = .text:0x8039CCBC; // type:function size:0x84 +fn_8039CD40 = .text:0x8039CD40; // type:function size:0x34 +fn_8039CD74 = .text:0x8039CD74; // type:function size:0xC0 +fn_8039CE34 = .text:0x8039CE34; // type:function size:0x34 +fn_8039CE68 = .text:0x8039CE68; // type:function size:0x3C +fn_8039CEA4 = .text:0x8039CEA4; // type:function size:0x108 +fn_8039CFAC = .text:0x8039CFAC; // type:function size:0x128 +fn_8039D0D4 = .text:0x8039D0D4; // type:function size:0x44 +fn_8039D118 = .text:0x8039D118; // type:function size:0x1D8 +fn_8039D2F0 = .text:0x8039D2F0; // type:function size:0x26C +fn_8039D55C = .text:0x8039D55C; // type:function size:0x4 +fn_8039D560 = .text:0x8039D560; // type:function size:0x110 +fn_8039D670 = .text:0x8039D670; // type:function size:0x3C +fn_8039D6AC = .text:0x8039D6AC; // type:function size:0xA0 +fn_8039D74C = .text:0x8039D74C; // type:function size:0x140 +fn_8039D88C = .text:0x8039D88C; // type:function size:0x174 +fn_8039DA00 = .text:0x8039DA00; // type:function size:0x288 +fn_8039DC88 = .text:0x8039DC88; // type:function size:0x4 +fn_8039DC8C = .text:0x8039DC8C; // type:function size:0x1EC +fn_8039DE78 = .text:0x8039DE78; // type:function size:0x84 +fn_8039DEFC = .text:0x8039DEFC; // type:function size:0x104 +fn_8039E000 = .text:0x8039E000; // type:function size:0x58 +fn_8039E058 = .text:0x8039E058; // type:function size:0x40 +fn_8039E098 = .text:0x8039E098; // type:function size:0x3C +fn_8039E0D4 = .text:0x8039E0D4; // type:function size:0x30 +fn_8039E104 = .text:0x8039E104; // type:function size:0x8 +fn_8039E10C = .text:0x8039E10C; // type:function size:0x128 +fn_8039E234 = .text:0x8039E234; // type:function size:0x24 +fn_8039E258 = .text:0x8039E258; // type:function size:0x48 +fn_8039E2A0 = .text:0x8039E2A0; // type:function size:0x13C +fn_8039E3DC = .text:0x8039E3DC; // type:function size:0x110 +fn_8039E4EC = .text:0x8039E4EC; // type:function size:0xF0 +fn_8039E5DC = .text:0x8039E5DC; // type:function size:0x12C +fn_8039E708 = .text:0x8039E708; // type:function size:0xB0 +fn_8039E7B8 = .text:0x8039E7B8; // type:function size:0x4 +fn_8039E7BC = .text:0x8039E7BC; // type:function size:0x100 +fn_8039E8BC = .text:0x8039E8BC; // type:function size:0x3A8 +fn_8039EC64 = .text:0x8039EC64; // type:function size:0x50 +fn_8039ECB4 = .text:0x8039ECB4; // type:function size:0x1208 +fn_8039FEBC = .text:0x8039FEBC; // type:function size:0xC0 +fn_8039FF7C = .text:0x8039FF7C; // type:function size:0xC0 +fn_803A003C = .text:0x803A003C; // type:function size:0xCC +fn_803A0108 = .text:0x803A0108; // type:function size:0x6C +fn_803A0174 = .text:0x803A0174; // type:function size:0x6C +fn_803A01E0 = .text:0x803A01E0; // type:function size:0x6C +fn_803A024C = .text:0x803A024C; // type:function size:0x60 +fn_803A02AC = .text:0x803A02AC; // type:function size:0x60 +fn_803A030C = .text:0x803A030C; // type:function size:0x10 +fn_803A031C = .text:0x803A031C; // type:function size:0x58 +fn_803A0374 = .text:0x803A0374; // type:function size:0x58 +fn_803A03CC = .text:0x803A03CC; // type:function size:0x114 +fn_803A04E0 = .text:0x803A04E0; // type:function size:0x60 +fn_803A0540 = .text:0x803A0540; // type:function size:0x5C +fn_803A059C = .text:0x803A059C; // type:function size:0x54 +fn_803A05F0 = .text:0x803A05F0; // type:function size:0x5C +fn_803A064C = .text:0x803A064C; // type:function size:0x5C +fn_803A06A8 = .text:0x803A06A8; // type:function size:0x58 +fn_803A0700 = .text:0x803A0700; // type:function size:0xCC +fn_803A07CC = .text:0x803A07CC; // type:function size:0x60 +fn_803A082C = .text:0x803A082C; // type:function size:0x5C +fn_803A0888 = .text:0x803A0888; // type:function size:0x60 +fn_803A08E8 = .text:0x803A08E8; // type:function size:0x5C +fn_803A0944 = .text:0x803A0944; // type:function size:0x10 +fn_803A0954 = .text:0x803A0954; // type:function size:0x114 +fn_803A0A68 = .text:0x803A0A68; // type:function size:0x5C +fn_803A0AC4 = .text:0x803A0AC4; // type:function size:0x5C +fn_803A0B20 = .text:0x803A0B20; // type:function size:0x54 +fn_803A0B74 = .text:0x803A0B74; // type:function size:0x5C +fn_803A0BD0 = .text:0x803A0BD0; // type:function size:0x5C +fn_803A0C2C = .text:0x803A0C2C; // type:function size:0xC +fn_803A0C38 = .text:0x803A0C38; // type:function size:0x134 +fn_803A0D6C = .text:0x803A0D6C; // type:function size:0x4 +fn_803A0D70 = .text:0x803A0D70; // type:function size:0x10 +fn_803A0D80 = .text:0x803A0D80; // type:function size:0x68 +fn_803A0DE8 = .text:0x803A0DE8; // type:function size:0x2C +fn_803A0E14 = .text:0x803A0E14; // type:function size:0x68 +fn_803A0E7C = .text:0x803A0E7C; // type:function size:0x68 +fn_803A0EE4 = .text:0x803A0EE4; // type:function size:0x2C +fn_803A0F10 = .text:0x803A0F10; // type:function size:0x19C +fn_803A10AC = .text:0x803A10AC; // type:function size:0x5C +fn_803A1108 = .text:0x803A1108; // type:function size:0x10 +fn_803A1118 = .text:0x803A1118; // type:function size:0x54 +fn_803A116C = .text:0x803A116C; // type:function size:0x44 +fn_803A11B0 = .text:0x803A11B0; // type:function size:0x28 +fn_803A11D8 = .text:0x803A11D8; // type:function size:0x68 +fn_803A1240 = .text:0x803A1240; // type:function size:0x5C +fn_803A129C = .text:0x803A129C; // type:function size:0x44 +fn_803A12E0 = .text:0x803A12E0; // type:function size:0x114 +fn_803A13F4 = .text:0x803A13F4; // type:function size:0x60 +fn_803A1454 = .text:0x803A1454; // type:function size:0x5C +fn_803A14B0 = .text:0x803A14B0; // type:function size:0x54 +fn_803A1504 = .text:0x803A1504; // type:function size:0x5C +fn_803A1560 = .text:0x803A1560; // type:function size:0x6C +fn_803A15CC = .text:0x803A15CC; // type:function size:0x28 +fn_803A15F4 = .text:0x803A15F4; // type:function size:0x8 +fn_803A15FC = .text:0x803A15FC; // type:function size:0x8 +fn_803A1604 = .text:0x803A1604; // type:function size:0x3C +fn_803A1640 = .text:0x803A1640; // type:function size:0x190 +fn_803A17D0 = .text:0x803A17D0; // type:function size:0x54 +fn_803A1824 = .text:0x803A1824; // type:function size:0x28 +fn_803A184C = .text:0x803A184C; // type:function size:0x68 +fn_803A18B4 = .text:0x803A18B4; // type:function size:0x190 +fn_803A1A44 = .text:0x803A1A44; // type:function size:0x5C +fn_803A1AA0 = .text:0x803A1AA0; // type:function size:0x54 +fn_803A1AF4 = .text:0x803A1AF4; // type:function size:0x28 +fn_803A1B1C = .text:0x803A1B1C; // type:function size:0x68 +fn_803A1B84 = .text:0x803A1B84; // type:function size:0x114 +fn_803A1C98 = .text:0x803A1C98; // type:function size:0x5C +fn_803A1CF4 = .text:0x803A1CF4; // type:function size:0x54 +fn_803A1D48 = .text:0x803A1D48; // type:function size:0x14 +fn_803A1D5C = .text:0x803A1D5C; // type:function size:0x14 +fn_803A1D70 = .text:0x803A1D70; // type:function size:0x14 +fn_803A1D84 = .text:0x803A1D84; // type:function size:0x14 +fn_803A1D98 = .text:0x803A1D98; // type:function size:0x14 +fn_803A1DAC = .text:0x803A1DAC; // type:function size:0x14 +fn_803A1DC0 = .text:0x803A1DC0; // type:function size:0x14 +fn_803A1DD4 = .text:0x803A1DD4; // type:function size:0x14 +fn_803A1DE8 = .text:0x803A1DE8; // type:function size:0x14 +fn_803A1DFC = .text:0x803A1DFC; // type:function size:0x14 +fn_803A1E10 = .text:0x803A1E10; // type:function size:0x14 +fn_803A1E24 = .text:0x803A1E24; // type:function size:0x8 +fn_803A1E2C = .text:0x803A1E2C; // type:function size:0x8 +fn_803A1E34 = .text:0x803A1E34; // type:function size:0x8 +fn_803A1E3C = .text:0x803A1E3C; // type:function size:0x8 +fn_803A1E44 = .text:0x803A1E44; // type:function size:0x8 +fn_803A1E4C = .text:0x803A1E4C; // type:function size:0x8 +fn_803A1E54 = .text:0x803A1E54; // type:function size:0x8 +fn_803A1E5C = .text:0x803A1E5C; // type:function size:0x8 +fn_803A1E64 = .text:0x803A1E64; // type:function size:0x8 +fn_803A1E6C = .text:0x803A1E6C; // type:function size:0x8 +fn_803A1E74 = .text:0x803A1E74; // type:function size:0x8 +fn_803A1E7C = .text:0x803A1E7C; // type:function size:0x2EC +fn_803A2168 = .text:0x803A2168; // type:function size:0x80 +fn_803A21E8 = .text:0x803A21E8; // type:function size:0x58 +fn_803A2240 = .text:0x803A2240; // type:function size:0x80 +fn_803A22C0 = .text:0x803A22C0; // type:function size:0x80 +fn_803A2340 = .text:0x803A2340; // type:function size:0x58 +fn_803A2398 = .text:0x803A2398; // type:function size:0x54 +fn_803A23EC = .text:0x803A23EC; // type:function size:0x5C +fn_803A2448 = .text:0x803A2448; // type:function size:0x6C +fn_803A24B4 = .text:0x803A24B4; // type:function size:0x28 +fn_803A24DC = .text:0x803A24DC; // type:function size:0x8 +fn_803A24E4 = .text:0x803A24E4; // type:function size:0x3C +fn_803A2520 = .text:0x803A2520; // type:function size:0x6C +fn_803A258C = .text:0x803A258C; // type:function size:0x40 +fn_803A25CC = .text:0x803A25CC; // type:function size:0x44 +fn_803A2610 = .text:0x803A2610; // type:function size:0x54 +fn_803A2664 = .text:0x803A2664; // type:function size:0x58 +fn_803A26BC = .text:0x803A26BC; // type:function size:0x80 +fn_803A273C = .text:0x803A273C; // type:function size:0x80 +fn_803A27BC = .text:0x803A27BC; // type:function size:0x58 +fn_803A2814 = .text:0x803A2814; // type:function size:0x54 +fn_803A2868 = .text:0x803A2868; // type:function size:0x5C +fn_803A28C4 = .text:0x803A28C4; // type:function size:0x6C +fn_803A2930 = .text:0x803A2930; // type:function size:0x28 +fn_803A2958 = .text:0x803A2958; // type:function size:0x8 +fn_803A2960 = .text:0x803A2960; // type:function size:0x68 +fn_803A29C8 = .text:0x803A29C8; // type:function size:0x80 +fn_803A2A48 = .text:0x803A2A48; // type:function size:0x8 +fn_803A2A50 = .text:0x803A2A50; // type:function size:0x3C +fn_803A2A8C = .text:0x803A2A8C; // type:function size:0x4 +fn_803A2A90 = .text:0x803A2A90; // type:function size:0x88 +fn_803A2B18 = .text:0x803A2B18; // type:function size:0x2C +fn_803A2B44 = .text:0x803A2B44; // type:function size:0x10 +fn_803A2B54 = .text:0x803A2B54; // type:function size:0x68 +fn_803A2BBC = .text:0x803A2BBC; // type:function size:0x30 +fn_803A2BEC = .text:0x803A2BEC; // type:function size:0x30 +fn_803A2C1C = .text:0x803A2C1C; // type:function size:0x40 +fn_803A2C5C = .text:0x803A2C5C; // type:function size:0x68 +fn_803A2CC4 = .text:0x803A2CC4; // type:function size:0x30 +fn_803A2CF4 = .text:0x803A2CF4; // type:function size:0x30 +fn_803A2D24 = .text:0x803A2D24; // type:function size:0x40 +fn_803A2D64 = .text:0x803A2D64; // type:function size:0x30 +fn_803A2D94 = .text:0x803A2D94; // type:function size:0x30 +fn_803A2DC4 = .text:0x803A2DC4; // type:function size:0x40 +fn_803A2E04 = .text:0x803A2E04; // type:function size:0x144 +fn_803A2F48 = .text:0x803A2F48; // type:function size:0x68 +fn_803A2FB0 = .text:0x803A2FB0; // type:function size:0x1C +fn_803A2FCC = .text:0x803A2FCC; // type:function size:0x3C +fn_803A3008 = .text:0x803A3008; // type:function size:0x54 +fn_803A305C = .text:0x803A305C; // type:function size:0xEC +fn_803A3148 = .text:0x803A3148; // type:function size:0x190 +fn_803A32D8 = .text:0x803A32D8; // type:function size:0x6C +fn_803A3344 = .text:0x803A3344; // type:function size:0x8 +fn_803A334C = .text:0x803A334C; // type:function size:0x364 +fn_803A36B0 = .text:0x803A36B0; // type:function size:0x78 +fn_803A3728 = .text:0x803A3728; // type:function size:0xCC +fn_803A37F4 = .text:0x803A37F4; // type:function size:0xC +fn_803A3800 = .text:0x803A3800; // type:function size:0xA0 +fn_803A38A0 = .text:0x803A38A0; // type:function size:0xC +fn_803A38AC = .text:0x803A38AC; // type:function size:0x84 +fn_803A3930 = .text:0x803A3930; // type:function size:0xD0 +fn_803A3A00 = .text:0x803A3A00; // type:function size:0x64 +fn_803A3A64 = .text:0x803A3A64; // type:function size:0x20 +fn_803A3A84 = .text:0x803A3A84; // type:function size:0x1C +fn_803A3AA0 = .text:0x803A3AA0; // type:function size:0xAC +fn_803A3B4C = .text:0x803A3B4C; // type:function size:0x6C +fn_803A3BB8 = .text:0x803A3BB8; // type:function size:0xC +fn_803A3BC4 = .text:0x803A3BC4; // type:function size:0x7C +fn_803A3C40 = .text:0x803A3C40; // type:function size:0x68 +fn_803A3CA8 = .text:0x803A3CA8; // type:function size:0x80 +fn_803A3D28 = .text:0x803A3D28; // type:function size:0x58 +fn_803A3D80 = .text:0x803A3D80; // type:function size:0x58 +fn_803A3DD8 = .text:0x803A3DD8; // type:function size:0xC +fn_803A3DE4 = .text:0x803A3DE4; // type:function size:0x58 +fn_803A3E3C = .text:0x803A3E3C; // type:function size:0x2C +fn_803A3E68 = .text:0x803A3E68; // type:function size:0x30 +fn_803A3E98 = .text:0x803A3E98; // type:function size:0xC +fn_803A3EA4 = .text:0x803A3EA4; // type:function size:0x4C +fn_803A3EF0 = .text:0x803A3EF0; // type:function size:0x78 +fn_803A3F68 = .text:0x803A3F68; // type:function size:0xB4 +fn_803A401C = .text:0x803A401C; // type:function size:0x164 +fn_803A4180 = .text:0x803A4180; // type:function size:0x64 +fn_803A41E4 = .text:0x803A41E4; // type:function size:0xC +fn_803A41F0 = .text:0x803A41F0; // type:function size:0x9C +fn_803A428C = .text:0x803A428C; // type:function size:0x9C +fn_803A4328 = .text:0x803A4328; // type:function size:0xC +fn_803A4334 = .text:0x803A4334; // type:function size:0x4C +fn_803A4380 = .text:0x803A4380; // type:function size:0x7C +fn_803A43FC = .text:0x803A43FC; // type:function size:0xCC +fn_803A44C8 = .text:0x803A44C8; // type:function size:0x64 +fn_803A452C = .text:0x803A452C; // type:function size:0x60 +fn_803A458C = .text:0x803A458C; // type:function size:0x58 +fn_803A45E4 = .text:0x803A45E4; // type:function size:0x58 +fn_803A463C = .text:0x803A463C; // type:function size:0x2C +fn_803A4668 = .text:0x803A4668; // type:function size:0xA0 +fn_803A4708 = .text:0x803A4708; // type:function size:0xA0 +fn_803A47A8 = .text:0x803A47A8; // type:function size:0xA4 +fn_803A484C = .text:0x803A484C; // type:function size:0xA8 +fn_803A48F4 = .text:0x803A48F4; // type:function size:0x54 +fn_803A4948 = .text:0x803A4948; // type:function size:0x58 +fn_803A49A0 = .text:0x803A49A0; // type:function size:0xF4 +fn_803A4A94 = .text:0x803A4A94; // type:function size:0x64 +fn_803A4AF8 = .text:0x803A4AF8; // type:function size:0x70 +fn_803A4B68 = .text:0x803A4B68; // type:function size:0x34 +fn_803A4B9C = .text:0x803A4B9C; // type:function size:0x38C +fn_803A4F28 = .text:0x803A4F28; // type:function size:0x14C +fn_803A5074 = .text:0x803A5074; // type:function size:0x2C +fn_803A50A0 = .text:0x803A50A0; // type:function size:0x84 +fn_803A5124 = .text:0x803A5124; // type:function size:0x2C +fn_803A5150 = .text:0x803A5150; // type:function size:0x28 +fn_803A5178 = .text:0x803A5178; // type:function size:0x68 +fn_803A51E0 = .text:0x803A51E0; // type:function size:0x3E8 +fn_803A55C8 = .text:0x803A55C8; // type:function size:0x4 +fn_803A55CC = .text:0x803A55CC; // type:function size:0xE0 +fn_803A56AC = .text:0x803A56AC; // type:function size:0x74 +fn_803A5720 = .text:0x803A5720; // type:function size:0x40 +fn_803A5760 = .text:0x803A5760; // type:function size:0x104 +fn_803A5864 = .text:0x803A5864; // type:function size:0x60 +fn_803A58C4 = .text:0x803A58C4; // type:function size:0x4 +fn_803A58C8 = .text:0x803A58C8; // type:function size:0x90 +fn_803A5958 = .text:0x803A5958; // type:function size:0x4 +fn_803A595C = .text:0x803A595C; // type:function size:0x40 +fn_803A599C = .text:0x803A599C; // type:function size:0x8C +fn_803A5A28 = .text:0x803A5A28; // type:function size:0x8 +fn_803A5A30 = .text:0x803A5A30; // type:function size:0x2C +fn_803A5A5C = .text:0x803A5A5C; // type:function size:0x58 +fn_803A5AB4 = .text:0x803A5AB4; // type:function size:0x28 +fn_803A5ADC = .text:0x803A5ADC; // type:function size:0x68 +fn_803A5B44 = .text:0x803A5B44; // type:function size:0x8 +fn_803A5B4C = .text:0x803A5B4C; // type:function size:0x80 +fn_803A5BCC = .text:0x803A5BCC; // type:function size:0x4 +fn_803A5BD0 = .text:0x803A5BD0; // type:function size:0x90 +fn_803A5C60 = .text:0x803A5C60; // type:function size:0x4 +fn_803A5C64 = .text:0x803A5C64; // type:function size:0x40 +fn_803A5CA4 = .text:0x803A5CA4; // type:function size:0x8C +fn_803A5D30 = .text:0x803A5D30; // type:function size:0x8 +fn_803A5D38 = .text:0x803A5D38; // type:function size:0x2C +fn_803A5D64 = .text:0x803A5D64; // type:function size:0x58 +fn_803A5DBC = .text:0x803A5DBC; // type:function size:0x58 +fn_803A5E14 = .text:0x803A5E14; // type:function size:0x58 +fn_803A5E6C = .text:0x803A5E6C; // type:function size:0x80 +fn_803A5EEC = .text:0x803A5EEC; // type:function size:0x80 +fn_803A5F6C = .text:0x803A5F6C; // type:function size:0x58 +fn_803A5FC4 = .text:0x803A5FC4; // type:function size:0x54 +fn_803A6018 = .text:0x803A6018; // type:function size:0x5C +fn_803A6074 = .text:0x803A6074; // type:function size:0x6C +fn_803A60E0 = .text:0x803A60E0; // type:function size:0x28 +fn_803A6108 = .text:0x803A6108; // type:function size:0x8 +fn_803A6110 = .text:0x803A6110; // type:function size:0x3C +fn_803A614C = .text:0x803A614C; // type:function size:0x50 +fn_803A619C = .text:0x803A619C; // type:function size:0x30 +fn_803A61CC = .text:0x803A61CC; // type:function size:0x30 +fn_803A61FC = .text:0x803A61FC; // type:function size:0x40 +fn_803A623C = .text:0x803A623C; // type:function size:0x4 +fn_803A6240 = .text:0x803A6240; // type:function size:0x90 +fn_803A62D0 = .text:0x803A62D0; // type:function size:0x30 +fn_803A6300 = .text:0x803A6300; // type:function size:0x47C +fn_803A677C = .text:0x803A677C; // type:function size:0x4 +fn_803A6780 = .text:0x803A6780; // type:function size:0x88 +fn_803A6808 = .text:0x803A6808; // type:function size:0x2C +fn_803A6834 = .text:0x803A6834; // type:function size:0x10 +fn_803A6844 = .text:0x803A6844; // type:function size:0x4 +fn_803A6848 = .text:0x803A6848; // type:function size:0x3C +fn_803A6884 = .text:0x803A6884; // type:function size:0x40 +fn_803A68C4 = .text:0x803A68C4; // type:function size:0x8C +fn_803A6950 = .text:0x803A6950; // type:function size:0x8 +fn_803A6958 = .text:0x803A6958; // type:function size:0x2C +fn_803A6984 = .text:0x803A6984; // type:function size:0x58 +fn_803A69DC = .text:0x803A69DC; // type:function size:0x28 +fn_803A6A04 = .text:0x803A6A04; // type:function size:0x68 +fn_803A6A6C = .text:0x803A6A6C; // type:function size:0x4 +fn_803A6A70 = .text:0x803A6A70; // type:function size:0x88 +fn_803A6AF8 = .text:0x803A6AF8; // type:function size:0x2C +fn_803A6B24 = .text:0x803A6B24; // type:function size:0x10 +fn_803A6B34 = .text:0x803A6B34; // type:function size:0x78 +fn_803A6BAC = .text:0x803A6BAC; // type:function size:0x6C +fn_803A6C18 = .text:0x803A6C18; // type:function size:0x6C +fn_803A6C84 = .text:0x803A6C84; // type:function size:0x98 +fn_803A6D1C = .text:0x803A6D1C; // type:function size:0x68 +fn_803A6D84 = .text:0x803A6D84; // type:function size:0xA0 +fn_803A6E24 = .text:0x803A6E24; // type:function size:0x4 +fn_803A6E28 = .text:0x803A6E28; // type:function size:0x3C +fn_803A6E64 = .text:0x803A6E64; // type:function size:0x40 +fn_803A6EA4 = .text:0x803A6EA4; // type:function size:0x8C +fn_803A6F30 = .text:0x803A6F30; // type:function size:0x8 +fn_803A6F38 = .text:0x803A6F38; // type:function size:0x2C +fn_803A6F64 = .text:0x803A6F64; // type:function size:0x58 +fn_803A6FBC = .text:0x803A6FBC; // type:function size:0x28 +fn_803A6FE4 = .text:0x803A6FE4; // type:function size:0x68 +fn_803A704C = .text:0x803A704C; // type:function size:0x78 +fn_803A70C4 = .text:0x803A70C4; // type:function size:0x8 +fn_803A70CC = .text:0x803A70CC; // type:function size:0x10C +fn_803A71D8 = .text:0x803A71D8; // type:function size:0x6C +fn_803A7244 = .text:0x803A7244; // type:function size:0x6C +fn_803A72B0 = .text:0x803A72B0; // type:function size:0x68 +fn_803A7318 = .text:0x803A7318; // type:function size:0x58 +fn_803A7370 = .text:0x803A7370; // type:function size:0x160 +fn_803A74D0 = .text:0x803A74D0; // type:function size:0x5C +fn_803A752C = .text:0x803A752C; // type:function size:0x28 +fn_803A7554 = .text:0x803A7554; // type:function size:0x5C +fn_803A75B0 = .text:0x803A75B0; // type:function size:0x60 +fn_803A7610 = .text:0x803A7610; // type:function size:0x114 +fn_803A7724 = .text:0x803A7724; // type:function size:0x60 +fn_803A7784 = .text:0x803A7784; // type:function size:0x5C +fn_803A77E0 = .text:0x803A77E0; // type:function size:0x54 +fn_803A7834 = .text:0x803A7834; // type:function size:0x5C +fn_803A7890 = .text:0x803A7890; // type:function size:0x114 +fn_803A79A4 = .text:0x803A79A4; // type:function size:0x5C +fn_803A7A00 = .text:0x803A7A00; // type:function size:0x5C +fn_803A7A5C = .text:0x803A7A5C; // type:function size:0x54 +fn_803A7AB0 = .text:0x803A7AB0; // type:function size:0x5C +fn_803A7B0C = .text:0x803A7B0C; // type:function size:0x5C +fn_803A7B68 = .text:0x803A7B68; // type:function size:0x114 +fn_803A7C7C = .text:0x803A7C7C; // type:function size:0x5C +fn_803A7CD8 = .text:0x803A7CD8; // type:function size:0x5C +fn_803A7D34 = .text:0x803A7D34; // type:function size:0x54 +fn_803A7D88 = .text:0x803A7D88; // type:function size:0x5C +fn_803A7DE4 = .text:0x803A7DE4; // type:function size:0x5C +fn_803A7E40 = .text:0x803A7E40; // type:function size:0x68 +fn_803A7EA8 = .text:0x803A7EA8; // type:function size:0x2C +fn_803A7ED4 = .text:0x803A7ED4; // type:function size:0x8 +fn_803A7EDC = .text:0x803A7EDC; // type:function size:0x134 +fn_803A8010 = .text:0x803A8010; // type:function size:0x4 +fn_803A8014 = .text:0x803A8014; // type:function size:0x190 +fn_803A81A4 = .text:0x803A81A4; // type:function size:0x54 +fn_803A81F8 = .text:0x803A81F8; // type:function size:0x198 +fn_803A8390 = .text:0x803A8390; // type:function size:0x5C +fn_803A83EC = .text:0x803A83EC; // type:function size:0x10 +fn_803A83FC = .text:0x803A83FC; // type:function size:0x54 +fn_803A8450 = .text:0x803A8450; // type:function size:0x28 +fn_803A8478 = .text:0x803A8478; // type:function size:0x68 +fn_803A84E0 = .text:0x803A84E0; // type:function size:0x5C +fn_803A853C = .text:0x803A853C; // type:function size:0x114 +fn_803A8650 = .text:0x803A8650; // type:function size:0x5C +fn_803A86AC = .text:0x803A86AC; // type:function size:0x5C +fn_803A8708 = .text:0x803A8708; // type:function size:0x54 +fn_803A875C = .text:0x803A875C; // type:function size:0x8 +fn_803A8764 = .text:0x803A8764; // type:function size:0x8 +fn_803A876C = .text:0x803A876C; // type:function size:0x8 +fn_803A8774 = .text:0x803A8774; // type:function size:0x8 +fn_803A877C = .text:0x803A877C; // type:function size:0x8 +fn_803A8784 = .text:0x803A8784; // type:function size:0x8 +fn_803A878C = .text:0x803A878C; // type:function size:0x8 +fn_803A8794 = .text:0x803A8794; // type:function size:0x8 +fn_803A879C = .text:0x803A879C; // type:function size:0x8 +fn_803A87A4 = .text:0x803A87A4; // type:function size:0x8 +fn_803A87AC = .text:0x803A87AC; // type:function size:0x8 +fn_803A87B4 = .text:0x803A87B4; // type:function size:0x8 +fn_803A87BC = .text:0x803A87BC; // type:function size:0x8 +fn_803A87C4 = .text:0x803A87C4; // type:function size:0x8 +fn_803A87CC = .text:0x803A87CC; // type:function size:0x8 +fn_803A87D4 = .text:0x803A87D4; // type:function size:0x8 +fn_803A87DC = .text:0x803A87DC; // type:function size:0x8 +fn_803A87E4 = .text:0x803A87E4; // type:function size:0x8 +fn_803A87EC = .text:0x803A87EC; // type:function size:0x8 +fn_803A87F4 = .text:0x803A87F4; // type:function size:0x8 +fn_803A87FC = .text:0x803A87FC; // type:function size:0x8 +fn_803A8804 = .text:0x803A8804; // type:function size:0x8 +fn_803A880C = .text:0x803A880C; // type:function size:0x8 +fn_803A8814 = .text:0x803A8814; // type:function size:0x8 +fn_803A881C = .text:0x803A881C; // type:function size:0x8 +fn_803A8824 = .text:0x803A8824; // type:function size:0x8 +fn_803A882C = .text:0x803A882C; // type:function size:0x8 +fn_803A8834 = .text:0x803A8834; // type:function size:0x8 +fn_803A883C = .text:0x803A883C; // type:function size:0x14 +fn_803A8850 = .text:0x803A8850; // type:function size:0x14 +fn_803A8864 = .text:0x803A8864; // type:function size:0x8 +fn_803A886C = .text:0x803A886C; // type:function size:0x8 +fn_803A8874 = .text:0x803A8874; // type:function size:0x8 +fn_803A887C = .text:0x803A887C; // type:function size:0x8 +fn_803A8884 = .text:0x803A8884; // type:function size:0x8 +fn_803A888C = .text:0x803A888C; // type:function size:0x8 +fn_803A8894 = .text:0x803A8894; // type:function size:0x8 +fn_803A889C = .text:0x803A889C; // type:function size:0x8 +fn_803A88A4 = .text:0x803A88A4; // type:function size:0x8 +fn_803A88AC = .text:0x803A88AC; // type:function size:0x8 +fn_803A88B4 = .text:0x803A88B4; // type:function size:0x8 +fn_803A88BC = .text:0x803A88BC; // type:function size:0x8 +fn_803A88C4 = .text:0x803A88C4; // type:function size:0x8 +fn_803A88CC = .text:0x803A88CC; // type:function size:0x8 +fn_803A88D4 = .text:0x803A88D4; // type:function size:0x8 +fn_803A88DC = .text:0x803A88DC; // type:function size:0x8 +fn_803A88E4 = .text:0x803A88E4; // type:function size:0x8 +fn_803A88EC = .text:0x803A88EC; // type:function size:0x8 +fn_803A88F4 = .text:0x803A88F4; // type:function size:0x14 +fn_803A8908 = .text:0x803A8908; // type:function size:0x14 +fn_803A891C = .text:0x803A891C; // type:function size:0x14 +fn_803A8930 = .text:0x803A8930; // type:function size:0x14 +fn_803A8944 = .text:0x803A8944; // type:function size:0x14 +fn_803A8958 = .text:0x803A8958; // type:function size:0x14 +fn_803A896C = .text:0x803A896C; // type:function size:0x14 +fn_803A8980 = .text:0x803A8980; // type:function size:0x14 +fn_803A8994 = .text:0x803A8994; // type:function size:0x14 +fn_803A89A8 = .text:0x803A89A8; // type:function size:0x14 +fn_803A89BC = .text:0x803A89BC; // type:function size:0x14 +fn_803A89D0 = .text:0x803A89D0; // type:function size:0x14 +fn_803A89E4 = .text:0x803A89E4; // type:function size:0x14 +fn_803A89F8 = .text:0x803A89F8; // type:function size:0x14 +fn_803A8A0C = .text:0x803A8A0C; // type:function size:0x8 +fn_803A8A14 = .text:0x803A8A14; // type:function size:0x8 +fn_803A8A1C = .text:0x803A8A1C; // type:function size:0x8 +fn_803A8A24 = .text:0x803A8A24; // type:function size:0x8 +fn_803A8A2C = .text:0x803A8A2C; // type:function size:0x8 +fn_803A8A34 = .text:0x803A8A34; // type:function size:0x8 +fn_803A8A3C = .text:0x803A8A3C; // type:function size:0x8 +fn_803A8A44 = .text:0x803A8A44; // type:function size:0x40 +fn_803A8A84 = .text:0x803A8A84; // type:function size:0x34 +fn_803A8AB8 = .text:0x803A8AB8; // type:function size:0x48 +fn_803A8B00 = .text:0x803A8B00; // type:function size:0x4C +fn_803A8B4C = .text:0x803A8B4C; // type:function size:0xF4 +fn_803A8C40 = .text:0x803A8C40; // type:function size:0xA8 +fn_803A8CE8 = .text:0x803A8CE8; // type:function size:0x74 +fn_803A8D5C = .text:0x803A8D5C; // type:function size:0x4 +fn_803A8D60 = .text:0x803A8D60; // type:function size:0x5C +fn_803A8DBC = .text:0x803A8DBC; // type:function size:0x64 +fn_803A8E20 = .text:0x803A8E20; // type:function size:0x40 +fn_803A8E60 = .text:0x803A8E60; // type:function size:0x34 +fn_803A8E94 = .text:0x803A8E94; // type:function size:0x34 +fn_803A8EC8 = .text:0x803A8EC8; // type:function size:0x188 +fn_803A9050 = .text:0x803A9050; // type:function size:0x74 +fn_803A90C4 = .text:0x803A90C4; // type:function size:0x78 +fn_803A913C = .text:0x803A913C; // type:function size:0x54 +fn_803A9190 = .text:0x803A9190; // type:function size:0x178 +fn_803A9308 = .text:0x803A9308; // type:function size:0x124 +fn_803A942C = .text:0x803A942C; // type:function size:0x8 +fn_803A9434 = .text:0x803A9434; // type:function size:0xCC +fn_803A9500 = .text:0x803A9500; // type:function size:0x8 +fn_803A9508 = .text:0x803A9508; // type:function size:0x50 +fn_803A9558 = .text:0x803A9558; // type:function size:0x5C +fn_803A95B4 = .text:0x803A95B4; // type:function size:0xF8 +fn_803A96AC = .text:0x803A96AC; // type:function size:0xB8 +fn_803A9764 = .text:0x803A9764; // type:function size:0x1B0 +fn_803A9914 = .text:0x803A9914; // type:function size:0x8C +fn_803A99A0 = .text:0x803A99A0; // type:function size:0x138 +fn_803A9AD8 = .text:0x803A9AD8; // type:function size:0x4 +fn_803A9ADC = .text:0x803A9ADC; // type:function size:0x14 +fn_803A9AF0 = .text:0x803A9AF0; // type:function size:0x14 +fn_803A9B04 = .text:0x803A9B04; // type:function size:0x8 +fn_803A9B0C = .text:0x803A9B0C; // type:function size:0x8 +fn_803A9B14 = .text:0x803A9B14; // type:function size:0x8 +fn_803A9B1C = .text:0x803A9B1C; // type:function size:0x8 +fn_803A9B24 = .text:0x803A9B24; // type:function size:0x8 +fn_803A9B2C = .text:0x803A9B2C; // type:function size:0x8 +fn_803A9B34 = .text:0x803A9B34; // type:function size:0x8 +fn_803A9B3C = .text:0x803A9B3C; // type:function size:0x8 +fn_803A9B44 = .text:0x803A9B44; // type:function size:0x14 +fn_803A9B58 = .text:0x803A9B58; // type:function size:0x14 +fn_803A9B6C = .text:0x803A9B6C; // type:function size:0x14 +fn_803A9B80 = .text:0x803A9B80; // type:function size:0x14 +fn_803A9B94 = .text:0x803A9B94; // type:function size:0x14 +fn_803A9BA8 = .text:0x803A9BA8; // type:function size:0x14 +fn_803A9BBC = .text:0x803A9BBC; // type:function size:0x14 +fn_803A9BD0 = .text:0x803A9BD0; // type:function size:0x14 +fn_803A9BE4 = .text:0x803A9BE4; // type:function size:0x14 +fn_803A9BF8 = .text:0x803A9BF8; // type:function size:0x14 +fn_803A9C0C = .text:0x803A9C0C; // type:function size:0x14 +fn_803A9C20 = .text:0x803A9C20; // type:function size:0x14 +fn_803A9C34 = .text:0x803A9C34; // type:function size:0x14 +fn_803A9C48 = .text:0x803A9C48; // type:function size:0x8 +fn_803A9C50 = .text:0x803A9C50; // type:function size:0x8 +fn_803A9C58 = .text:0x803A9C58; // type:function size:0x8 +fn_803A9C60 = .text:0x803A9C60; // type:function size:0x8 +fn_803A9C68 = .text:0x803A9C68; // type:function size:0x8 +fn_803A9C70 = .text:0x803A9C70; // type:function size:0x8 +fn_803A9C78 = .text:0x803A9C78; // type:function size:0x8 +fn_803A9C80 = .text:0x803A9C80; // type:function size:0x10 +fn_803A9C90 = .text:0x803A9C90; // type:function size:0x3C +fn_803A9CCC = .text:0x803A9CCC; // type:function size:0x50 +fn_803A9D1C = .text:0x803A9D1C; // type:function size:0x58 +fn_803A9D74 = .text:0x803A9D74; // type:function size:0x8 +fn_803A9D7C = .text:0x803A9D7C; // type:function size:0x30 +fn_803A9DAC = .text:0x803A9DAC; // type:function size:0x8 +fn_803A9DB4 = .text:0x803A9DB4; // type:function size:0xC +fn_803A9DC0 = .text:0x803A9DC0; // type:function size:0x10 +fn_803A9DD0 = .text:0x803A9DD0; // type:function size:0x60 +fn_803A9E30 = .text:0x803A9E30; // type:function size:0x25C +fn_803AA08C = .text:0x803AA08C; // type:function size:0x34 +fn_803AA0C0 = .text:0x803AA0C0; // type:function size:0xBC +fn_803AA17C = .text:0x803AA17C; // type:function size:0x50 +fn_803AA1CC = .text:0x803AA1CC; // type:function size:0x54 +fn_803AA220 = .text:0x803AA220; // type:function size:0x58 +fn_803AA278 = .text:0x803AA278; // type:function size:0x80 +fn_803AA2F8 = .text:0x803AA2F8; // type:function size:0x80 +fn_803AA378 = .text:0x803AA378; // type:function size:0x58 +fn_803AA3D0 = .text:0x803AA3D0; // type:function size:0x54 +fn_803AA424 = .text:0x803AA424; // type:function size:0x5C +fn_803AA480 = .text:0x803AA480; // type:function size:0x6C +fn_803AA4EC = .text:0x803AA4EC; // type:function size:0x28 +fn_803AA514 = .text:0x803AA514; // type:function size:0x8 +fn_803AA51C = .text:0x803AA51C; // type:function size:0x8 +fn_803AA524 = .text:0x803AA524; // type:function size:0x3C +fn_803AA560 = .text:0x803AA560; // type:function size:0x30 +fn_803AA590 = .text:0x803AA590; // type:function size:0x30 +fn_803AA5C0 = .text:0x803AA5C0; // type:function size:0x40 +fn_803AA600 = .text:0x803AA600; // type:function size:0x68 +fn_803AA668 = .text:0x803AA668; // type:function size:0xE0 +fn_803AA748 = .text:0x803AA748; // type:function size:0x4 +fn_803AA74C = .text:0x803AA74C; // type:function size:0x90 +fn_803AA7DC = .text:0x803AA7DC; // type:function size:0x4 +fn_803AA7E0 = .text:0x803AA7E0; // type:function size:0x40 +fn_803AA820 = .text:0x803AA820; // type:function size:0x8C +fn_803AA8AC = .text:0x803AA8AC; // type:function size:0x8 +fn_803AA8B4 = .text:0x803AA8B4; // type:function size:0x2C +fn_803AA8E0 = .text:0x803AA8E0; // type:function size:0x58 +fn_803AA938 = .text:0x803AA938; // type:function size:0x28 +fn_803AA960 = .text:0x803AA960; // type:function size:0x68 +fn_803AA9C8 = .text:0x803AA9C8; // type:function size:0x28 +fn_803AA9F0 = .text:0x803AA9F0; // type:function size:0x68 +fn_803AAA58 = .text:0x803AAA58; // type:function size:0x70 +fn_803AAAC8 = .text:0x803AAAC8; // type:function size:0x30 +fn_803AAAF8 = .text:0x803AAAF8; // type:function size:0x38 +fn_803AAB30 = .text:0x803AAB30; // type:function size:0xB4 +fn_803AABE4 = .text:0x803AABE4; // type:function size:0x4 +fn_803AABE8 = .text:0x803AABE8; // type:function size:0x70 +fn_803AAC58 = .text:0x803AAC58; // type:function size:0x8C +Handle__14BandFaceDeformFP9DataArrayb = .text:0x803AACE4; // type:function size:0x120 +fn_803AAE04 = .text:0x803AAE04; // type:function size:0x34 +fn_803AAE38 = .text:0x803AAE38; // type:function size:0x3C +fn_803AAE74 = .text:0x803AAE74; // type:function size:0xDC +fn_803AAF50 = .text:0x803AAF50; // type:function size:0x110 +fn_803AB060 = .text:0x803AB060; // type:function size:0x164 +fn_803AB1C4 = .text:0x803AB1C4; // type:function size:0x2C +fn_803AB1F0 = .text:0x803AB1F0; // type:function size:0x84 +fn_803AB274 = .text:0x803AB274; // type:function size:0x2C +fn_803AB2A0 = .text:0x803AB2A0; // type:function size:0x68 +fn_803AB308 = .text:0x803AB308; // type:function size:0x2C +fn_803AB334 = .text:0x803AB334; // type:function size:0x58 +fn_803AB38C = .text:0x803AB38C; // type:function size:0x160 +fn_803AB4EC = .text:0x803AB4EC; // type:function size:0x5C +fn_803AB548 = .text:0x803AB548; // type:function size:0x10 +fn_803AB558 = .text:0x803AB558; // type:function size:0x28 +fn_803AB580 = .text:0x803AB580; // type:function size:0x5C +fn_803AB5DC = .text:0x803AB5DC; // type:function size:0x60 +fn_803AB63C = .text:0x803AB63C; // type:function size:0x4 +fn_803AB640 = .text:0x803AB640; // type:function size:0x128 +fn_803AB768 = .text:0x803AB768; // type:function size:0x19C +fn_803AB904 = .text:0x803AB904; // type:function size:0x5C +fn_803AB960 = .text:0x803AB960; // type:function size:0x54 +fn_803AB9B4 = .text:0x803AB9B4; // type:function size:0x28 +fn_803AB9DC = .text:0x803AB9DC; // type:function size:0x68 +fn_803ABA44 = .text:0x803ABA44; // type:function size:0x114 +fn_803ABB58 = .text:0x803ABB58; // type:function size:0x60 +fn_803ABBB8 = .text:0x803ABBB8; // type:function size:0x5C +fn_803ABC14 = .text:0x803ABC14; // type:function size:0x54 +fn_803ABC68 = .text:0x803ABC68; // type:function size:0x5C +fn_803ABCC4 = .text:0x803ABCC4; // type:function size:0x84 +__ct__37ObjPtr<16RndTransformable,9ObjectDir>FPQ23Hmx6ObjectP16RndTransformable = .text:0x803ABD48; // type:function size:0x6C +fn_803ABDB4 = .text:0x803ABDB4; // type:function size:0x50 +fn_803ABE04 = .text:0x803ABE04; // type:function size:0x70 +fn_803ABE74 = .text:0x803ABE74; // type:function size:0x50 +fn_803ABEC4 = .text:0x803ABEC4; // type:function size:0x8 +fn_803ABECC = .text:0x803ABECC; // type:function size:0x14C +fn_803AC018 = .text:0x803AC018; // type:function size:0x80 +fn_803AC098 = .text:0x803AC098; // type:function size:0x58 +fn_803AC0F0 = .text:0x803AC0F0; // type:function size:0x58 +fn_803AC148 = .text:0x803AC148; // type:function size:0x80 +fn_803AC1C8 = .text:0x803AC1C8; // type:function size:0x80 +fn_803AC248 = .text:0x803AC248; // type:function size:0x58 +fn_803AC2A0 = .text:0x803AC2A0; // type:function size:0x54 +fn_803AC2F4 = .text:0x803AC2F4; // type:function size:0x5C +fn_803AC350 = .text:0x803AC350; // type:function size:0x6C +fn_803AC3BC = .text:0x803AC3BC; // type:function size:0x28 +fn_803AC3E4 = .text:0x803AC3E4; // type:function size:0x8 +fn_803AC3EC = .text:0x803AC3EC; // type:function size:0x68 +fn_803AC454 = .text:0x803AC454; // type:function size:0x8 +fn_803AC45C = .text:0x803AC45C; // type:function size:0x3C +fn_803AC498 = .text:0x803AC498; // type:function size:0x80 +fn_803AC518 = .text:0x803AC518; // type:function size:0x7C +fn_803AC594 = .text:0x803AC594; // type:function size:0x80 +fn_803AC614 = .text:0x803AC614; // type:function size:0x80 +fn_803AC694 = .text:0x803AC694; // type:function size:0x68 +fn_803AC6FC = .text:0x803AC6FC; // type:function size:0x50 +fn_803AC74C = .text:0x803AC74C; // type:function size:0x30 +fn_803AC77C = .text:0x803AC77C; // type:function size:0x30 +fn_803AC7AC = .text:0x803AC7AC; // type:function size:0x40 +fn_803AC7EC = .text:0x803AC7EC; // type:function size:0x68 +fn_803AC854 = .text:0x803AC854; // type:function size:0x78 +fn_803AC8CC = .text:0x803AC8CC; // type:function size:0xE0 +fn_803AC9AC = .text:0x803AC9AC; // type:function size:0x180 +fn_803ACB2C = .text:0x803ACB2C; // type:function size:0x54 +fn_803ACB80 = .text:0x803ACB80; // type:function size:0x50 +fn_803ACBD0 = .text:0x803ACBD0; // type:function size:0x1F4 +fn_803ACDC4 = .text:0x803ACDC4; // type:function size:0x54 +fn_803ACE18 = .text:0x803ACE18; // type:function size:0x118 +fn_803ACF30 = .text:0x803ACF30; // type:function size:0x4C +fn_803ACF7C = .text:0x803ACF7C; // type:function size:0x48 +fn_803ACFC4 = .text:0x803ACFC4; // type:function size:0x68 +fn_803AD02C = .text:0x803AD02C; // type:function size:0x88 +fn_803AD0B4 = .text:0x803AD0B4; // type:function size:0x380 +fn_803AD434 = .text:0x803AD434; // type:function size:0x4C +fn_803AD480 = .text:0x803AD480; // type:function size:0x5C +fn_803AD4DC = .text:0x803AD4DC; // type:function size:0x5C +fn_803AD538 = .text:0x803AD538; // type:function size:0x28 +fn_803AD560 = .text:0x803AD560; // type:function size:0x1CC +fn_803AD72C = .text:0x803AD72C; // type:function size:0xFC +fn_803AD828 = .text:0x803AD828; // type:function size:0x340 +fn_803ADB68 = .text:0x803ADB68; // type:function size:0x34 +fn_803ADB9C = .text:0x803ADB9C; // type:function size:0x2C +fn_803ADBC8 = .text:0x803ADBC8; // type:function size:0x1D4 +fn_803ADD9C = .text:0x803ADD9C; // type:function size:0xB4 +fn_803ADE50 = .text:0x803ADE50; // type:function size:0xC8 +fn_803ADF18 = .text:0x803ADF18; // type:function size:0x258 +fn_803AE170 = .text:0x803AE170; // type:function size:0x170 +fn_803AE2E0 = .text:0x803AE2E0; // type:function size:0xDC +fn_803AE3BC = .text:0x803AE3BC; // type:function size:0xD0 +fn_803AE48C = .text:0x803AE48C; // type:function size:0x9C +fn_803AE528 = .text:0x803AE528; // type:function size:0x4 +fn_803AE52C = .text:0x803AE52C; // type:function size:0x60 +fn_803AE58C = .text:0x803AE58C; // type:function size:0x40 +fn_803AE5CC = .text:0x803AE5CC; // type:function size:0x104 +fn_803AE6D0 = .text:0x803AE6D0; // type:function size:0x4 +fn_803AE6D4 = .text:0x803AE6D4; // type:function size:0xDC +fn_803AE7B0 = .text:0x803AE7B0; // type:function size:0x40 +fn_803AE7F0 = .text:0x803AE7F0; // type:function size:0x104 +fn_803AE8F4 = .text:0x803AE8F4; // type:function size:0x74 +fn_803AE968 = .text:0x803AE968; // type:function size:0x5C +fn_803AE9C4 = .text:0x803AE9C4; // type:function size:0x4 +fn_803AE9C8 = .text:0x803AE9C8; // type:function size:0x90 +fn_803AEA58 = .text:0x803AEA58; // type:function size:0x4 +fn_803AEA5C = .text:0x803AEA5C; // type:function size:0x40 +fn_803AEA9C = .text:0x803AEA9C; // type:function size:0x8C +fn_803AEB28 = .text:0x803AEB28; // type:function size:0x8 +fn_803AEB30 = .text:0x803AEB30; // type:function size:0x2C +fn_803AEB5C = .text:0x803AEB5C; // type:function size:0x58 +fn_803AEBB4 = .text:0x803AEBB4; // type:function size:0x28 +fn_803AEBDC = .text:0x803AEBDC; // type:function size:0x68 +fn_803AEC44 = .text:0x803AEC44; // type:function size:0xB8 +fn_803AECFC = .text:0x803AECFC; // type:function size:0x5C +fn_803AED58 = .text:0x803AED58; // type:function size:0x30 +fn_803AED88 = .text:0x803AED88; // type:function size:0x8 +fn_803AED90 = .text:0x803AED90; // type:function size:0x11C +fn_803AEEAC = .text:0x803AEEAC; // type:function size:0x114 +fn_803AEFC0 = .text:0x803AEFC0; // type:function size:0xD0 +fn_803AF090 = .text:0x803AF090; // type:function size:0x190 +fn_803AF220 = .text:0x803AF220; // type:function size:0xCC +fn_803AF2EC = .text:0x803AF2EC; // type:function size:0x170 +fn_803AF45C = .text:0x803AF45C; // type:function size:0x2C +fn_803AF488 = .text:0x803AF488; // type:function size:0x84 +fn_803AF50C = .text:0x803AF50C; // type:function size:0x2C +fn_803AF538 = .text:0x803AF538; // type:function size:0x68 +fn_803AF5A0 = .text:0x803AF5A0; // type:function size:0x2C +fn_803AF5CC = .text:0x803AF5CC; // type:function size:0x58 +fn_803AF624 = .text:0x803AF624; // type:function size:0x160 +fn_803AF784 = .text:0x803AF784; // type:function size:0x5C +fn_803AF7E0 = .text:0x803AF7E0; // type:function size:0x10 +fn_803AF7F0 = .text:0x803AF7F0; // type:function size:0x28 +fn_803AF818 = .text:0x803AF818; // type:function size:0x5C +fn_803AF874 = .text:0x803AF874; // type:function size:0x60 +fn_803AF8D4 = .text:0x803AF8D4; // type:function size:0x70 +fn_803AF944 = .text:0x803AF944; // type:function size:0x6C +fn_803AF9B0 = .text:0x803AF9B0; // type:function size:0x6C +fn_803AFA1C = .text:0x803AFA1C; // type:function size:0x134 +fn_803AFB50 = .text:0x803AFB50; // type:function size:0x4C +fn_803AFB9C = .text:0x803AFB9C; // type:function size:0x4 +fn_803AFBA0 = .text:0x803AFBA0; // type:function size:0x134 +fn_803AFCD4 = .text:0x803AFCD4; // type:function size:0x4 +fn_803AFCD8 = .text:0x803AFCD8; // type:function size:0x198 +fn_803AFE70 = .text:0x803AFE70; // type:function size:0x5C +fn_803AFECC = .text:0x803AFECC; // type:function size:0x54 +fn_803AFF20 = .text:0x803AFF20; // type:function size:0x28 +fn_803AFF48 = .text:0x803AFF48; // type:function size:0x68 +fn_803AFFB0 = .text:0x803AFFB0; // type:function size:0x38 +fn_803AFFE8 = .text:0x803AFFE8; // type:function size:0x114 +fn_803B00FC = .text:0x803B00FC; // type:function size:0x5C +fn_803B0158 = .text:0x803B0158; // type:function size:0x5C +fn_803B01B4 = .text:0x803B01B4; // type:function size:0x54 +fn_803B0208 = .text:0x803B0208; // type:function size:0x14 +fn_803B021C = .text:0x803B021C; // type:function size:0x14 +fn_803B0230 = .text:0x803B0230; // type:function size:0x14 +fn_803B0244 = .text:0x803B0244; // type:function size:0x14 +fn_803B0258 = .text:0x803B0258; // type:function size:0x8 +fn_803B0260 = .text:0x803B0260; // type:function size:0x8 +fn_803B0268 = .text:0x803B0268; // type:function size:0x8 +fn_803B0270 = .text:0x803B0270; // type:function size:0x8 +fn_803B0278 = .text:0x803B0278; // type:function size:0x8 +fn_803B0280 = .text:0x803B0280; // type:function size:0x8 +fn_803B0288 = .text:0x803B0288; // type:function size:0x8 +fn_803B0290 = .text:0x803B0290; // type:function size:0x8 +fn_803B0298 = .text:0x803B0298; // type:function size:0x14 +fn_803B02AC = .text:0x803B02AC; // type:function size:0x14 +fn_803B02C0 = .text:0x803B02C0; // type:function size:0x14 +fn_803B02D4 = .text:0x803B02D4; // type:function size:0x14 +fn_803B02E8 = .text:0x803B02E8; // type:function size:0x14 +fn_803B02FC = .text:0x803B02FC; // type:function size:0x14 +fn_803B0310 = .text:0x803B0310; // type:function size:0x14 +fn_803B0324 = .text:0x803B0324; // type:function size:0x14 +fn_803B0338 = .text:0x803B0338; // type:function size:0x14 +fn_803B034C = .text:0x803B034C; // type:function size:0x14 +fn_803B0360 = .text:0x803B0360; // type:function size:0x8 +fn_803B0368 = .text:0x803B0368; // type:function size:0x8 +fn_803B0370 = .text:0x803B0370; // type:function size:0x8 +fn_803B0378 = .text:0x803B0378; // type:function size:0x8 +fn_803B0380 = .text:0x803B0380; // type:function size:0x8 +fn_803B0388 = .text:0x803B0388; // type:function size:0x8 +fn_803B0390 = .text:0x803B0390; // type:function size:0x40 +fn_803B03D0 = .text:0x803B03D0; // type:function size:0x34 +fn_803B0404 = .text:0x803B0404; // type:function size:0x48 +fn_803B044C = .text:0x803B044C; // type:function size:0x4C +fn_803B0498 = .text:0x803B0498; // type:function size:0x114 +fn_803B05AC = .text:0x803B05AC; // type:function size:0x40 +fn_803B05EC = .text:0x803B05EC; // type:function size:0x30 +fn_803B061C = .text:0x803B061C; // type:function size:0x30 +fn_803B064C = .text:0x803B064C; // type:function size:0x40 +fn_803B068C = .text:0x803B068C; // type:function size:0xC0 +fn_803B074C = .text:0x803B074C; // type:function size:0x70 +fn_803B07BC = .text:0x803B07BC; // type:function size:0x74 +fn_803B0830 = .text:0x803B0830; // type:function size:0x8 +fn_803B0838 = .text:0x803B0838; // type:function size:0x4 +fn_803B083C = .text:0x803B083C; // type:function size:0x5C +fn_803B0898 = .text:0x803B0898; // type:function size:0x3E0 +fn_803B0C78 = .text:0x803B0C78; // type:function size:0x138 +fn_803B0DB0 = .text:0x803B0DB0; // type:function size:0x4 +fn_803B0DB4 = .text:0x803B0DB4; // type:function size:0xE0 +fn_803B0E94 = .text:0x803B0E94; // type:function size:0x11C +fn_803B0FB0 = .text:0x803B0FB0; // type:function size:0x74 +fn_803B1024 = .text:0x803B1024; // type:function size:0x4C +fn_803B1070 = .text:0x803B1070; // type:function size:0x4 +fn_803B1074 = .text:0x803B1074; // type:function size:0x3C +fn_803B10B0 = .text:0x803B10B0; // type:function size:0x40 +fn_803B10F0 = .text:0x803B10F0; // type:function size:0x8C +fn_803B117C = .text:0x803B117C; // type:function size:0x8 +fn_803B1184 = .text:0x803B1184; // type:function size:0x2C +fn_803B11B0 = .text:0x803B11B0; // type:function size:0x58 +fn_803B1208 = .text:0x803B1208; // type:function size:0x28 +fn_803B1230 = .text:0x803B1230; // type:function size:0x68 +fn_803B1298 = .text:0x803B1298; // type:function size:0x4C +fn_803B12E4 = .text:0x803B12E4; // type:function size:0x24 +fn_803B1308 = .text:0x803B1308; // type:function size:0x6C +fn_803B1374 = .text:0x803B1374; // type:function size:0x13C +fn_803B14B0 = .text:0x803B14B0; // type:function size:0x110 +fn_803B15C0 = .text:0x803B15C0; // type:function size:0xEC +fn_803B16AC = .text:0x803B16AC; // type:function size:0x4 +fn_803B16B0 = .text:0x803B16B0; // type:function size:0x88 +fn_803B1738 = .text:0x803B1738; // type:function size:0x2C +fn_803B1764 = .text:0x803B1764; // type:function size:0x10 +fn_803B1774 = .text:0x803B1774; // type:function size:0x14 +fn_803B1788 = .text:0x803B1788; // type:function size:0x78 +fn_803B1800 = .text:0x803B1800; // type:function size:0x10 +fn_803B1810 = .text:0x803B1810; // type:function size:0x48 +fn_803B1858 = .text:0x803B1858; // type:function size:0x48 +fn_803B18A0 = .text:0x803B18A0; // type:function size:0x1A0 +fn_803B1A40 = .text:0x803B1A40; // type:function size:0x1A4 +fn_803B1BE4 = .text:0x803B1BE4; // type:function size:0x3C +fn_803B1C20 = .text:0x803B1C20; // type:function size:0x114 +fn_803B1D34 = .text:0x803B1D34; // type:function size:0x60 +fn_803B1D94 = .text:0x803B1D94; // type:function size:0x5C +fn_803B1DF0 = .text:0x803B1DF0; // type:function size:0x54 +fn_803B1E44 = .text:0x803B1E44; // type:function size:0x5C +fn_803B1EA0 = .text:0x803B1EA0; // type:function size:0x5C +fn_803B1EFC = .text:0x803B1EFC; // type:function size:0x14 +fn_803B1F10 = .text:0x803B1F10; // type:function size:0x8 +fn_803B1F18 = .text:0x803B1F18; // type:function size:0x8 +fn_803B1F20 = .text:0x803B1F20; // type:function size:0x8 +fn_803B1F28 = .text:0x803B1F28; // type:function size:0x8 +fn_803B1F30 = .text:0x803B1F30; // type:function size:0x14 +fn_803B1F44 = .text:0x803B1F44; // type:function size:0x14 +fn_803B1F58 = .text:0x803B1F58; // type:function size:0x14 +fn_803B1F6C = .text:0x803B1F6C; // type:function size:0x14 +fn_803B1F80 = .text:0x803B1F80; // type:function size:0x8 +fn_803B1F88 = .text:0x803B1F88; // type:function size:0x8 +fn_803B1F90 = .text:0x803B1F90; // type:function size:0x8 +fn_803B1F98 = .text:0x803B1F98; // type:function size:0x8 +fn_803B1FA0 = .text:0x803B1FA0; // type:function size:0x8 +fn_803B1FA8 = .text:0x803B1FA8; // type:function size:0x214 +fn_803B21BC = .text:0x803B21BC; // type:function size:0x68 +fn_803B2224 = .text:0x803B2224; // type:function size:0x20 +fn_803B2244 = .text:0x803B2244; // type:function size:0x224 +fn_803B2468 = .text:0x803B2468; // type:function size:0x34 +fn_803B249C = .text:0x803B249C; // type:function size:0x100 +fn_803B259C = .text:0x803B259C; // type:function size:0x100 +fn_803B269C = .text:0x803B269C; // type:function size:0x2EC +fn_803B2988 = .text:0x803B2988; // type:function size:0xCC +fn_803B2A54 = .text:0x803B2A54; // type:function size:0xD0 +fn_803B2B24 = .text:0x803B2B24; // type:function size:0xC0 +fn_803B2BE4 = .text:0x803B2BE4; // type:function size:0x4 +fn_803B2BE8 = .text:0x803B2BE8; // type:function size:0x138 +fn_803B2D20 = .text:0x803B2D20; // type:function size:0x40 +fn_803B2D60 = .text:0x803B2D60; // type:function size:0x104 +fn_803B2E64 = .text:0x803B2E64; // type:function size:0x40 +fn_803B2EA4 = .text:0x803B2EA4; // type:function size:0x104 +fn_803B2FA8 = .text:0x803B2FA8; // type:function size:0xFC +fn_803B30A4 = .text:0x803B30A4; // type:function size:0xF0 +fn_803B3194 = .text:0x803B3194; // type:function size:0x8 +fn_803B319C = .text:0x803B319C; // type:function size:0x8 +fn_803B31A4 = .text:0x803B31A4; // type:function size:0x114 +fn_803B32B8 = .text:0x803B32B8; // type:function size:0x134 +fn_803B33EC = .text:0x803B33EC; // type:function size:0x4 +fn_803B33F0 = .text:0x803B33F0; // type:function size:0x8 +fn_803B33F8 = .text:0x803B33F8; // type:function size:0x8 +fn_803B3400 = .text:0x803B3400; // type:function size:0x8 +fn_803B3408 = .text:0x803B3408; // type:function size:0x8 +fn_803B3410 = .text:0x803B3410; // type:function size:0x8 +fn_803B3418 = .text:0x803B3418; // type:function size:0x8 +fn_803B3420 = .text:0x803B3420; // type:function size:0x8 +fn_803B3428 = .text:0x803B3428; // type:function size:0x8 +fn_803B3430 = .text:0x803B3430; // type:function size:0x8 +fn_803B3438 = .text:0x803B3438; // type:function size:0x8 +fn_803B3440 = .text:0x803B3440; // type:function size:0x8 +fn_803B3448 = .text:0x803B3448; // type:function size:0x8 +fn_803B3450 = .text:0x803B3450; // type:function size:0x8 +fn_803B3458 = .text:0x803B3458; // type:function size:0x8 +fn_803B3460 = .text:0x803B3460; // type:function size:0x8 +fn_803B3468 = .text:0x803B3468; // type:function size:0x14 +fn_803B347C = .text:0x803B347C; // type:function size:0x14 +fn_803B3490 = .text:0x803B3490; // type:function size:0x8 +fn_803B3498 = .text:0x803B3498; // type:function size:0x8 +fn_803B34A0 = .text:0x803B34A0; // type:function size:0x8 +fn_803B34A8 = .text:0x803B34A8; // type:function size:0x8 +fn_803B34B0 = .text:0x803B34B0; // type:function size:0x8 +fn_803B34B8 = .text:0x803B34B8; // type:function size:0x8 +fn_803B34C0 = .text:0x803B34C0; // type:function size:0x8 +fn_803B34C8 = .text:0x803B34C8; // type:function size:0x8 +fn_803B34D0 = .text:0x803B34D0; // type:function size:0x8 +fn_803B34D8 = .text:0x803B34D8; // type:function size:0x8 +fn_803B34E0 = .text:0x803B34E0; // type:function size:0x8 +fn_803B34E8 = .text:0x803B34E8; // type:function size:0x8 +fn_803B34F0 = .text:0x803B34F0; // type:function size:0x8 +fn_803B34F8 = .text:0x803B34F8; // type:function size:0x14 +fn_803B350C = .text:0x803B350C; // type:function size:0x14 +fn_803B3520 = .text:0x803B3520; // type:function size:0x14 +fn_803B3534 = .text:0x803B3534; // type:function size:0x14 +fn_803B3548 = .text:0x803B3548; // type:function size:0x14 +fn_803B355C = .text:0x803B355C; // type:function size:0x14 +fn_803B3570 = .text:0x803B3570; // type:function size:0x14 +fn_803B3584 = .text:0x803B3584; // type:function size:0x14 +fn_803B3598 = .text:0x803B3598; // type:function size:0x14 +fn_803B35AC = .text:0x803B35AC; // type:function size:0x14 +fn_803B35C0 = .text:0x803B35C0; // type:function size:0x14 +fn_803B35D4 = .text:0x803B35D4; // type:function size:0x14 +fn_803B35E8 = .text:0x803B35E8; // type:function size:0x14 +fn_803B35FC = .text:0x803B35FC; // type:function size:0x14 +fn_803B3610 = .text:0x803B3610; // type:function size:0x14 +fn_803B3624 = .text:0x803B3624; // type:function size:0x8 +fn_803B362C = .text:0x803B362C; // type:function size:0x8 +fn_803B3634 = .text:0x803B3634; // type:function size:0x8 +fn_803B363C = .text:0x803B363C; // type:function size:0x8 +fn_803B3644 = .text:0x803B3644; // type:function size:0x8 +fn_803B364C = .text:0x803B364C; // type:function size:0x48 +fn_803B3694 = .text:0x803B3694; // type:function size:0x38 +fn_803B36CC = .text:0x803B36CC; // type:function size:0x64 +fn_803B3730 = .text:0x803B3730; // type:function size:0x234 +fn_803B3964 = .text:0x803B3964; // type:function size:0x58 +fn_803B39BC = .text:0x803B39BC; // type:function size:0x58 +fn_803B3A14 = .text:0x803B3A14; // type:function size:0x80 +fn_803B3A94 = .text:0x803B3A94; // type:function size:0x80 +fn_803B3B14 = .text:0x803B3B14; // type:function size:0x58 +fn_803B3B6C = .text:0x803B3B6C; // type:function size:0x54 +fn_803B3BC0 = .text:0x803B3BC0; // type:function size:0x5C +fn_803B3C1C = .text:0x803B3C1C; // type:function size:0x6C +fn_803B3C88 = .text:0x803B3C88; // type:function size:0x28 +fn_803B3CB0 = .text:0x803B3CB0; // type:function size:0x8 +fn_803B3CB8 = .text:0x803B3CB8; // type:function size:0x58 +fn_803B3D10 = .text:0x803B3D10; // type:function size:0x8 +fn_803B3D18 = .text:0x803B3D18; // type:function size:0x3C +fn_803B3D54 = .text:0x803B3D54; // type:function size:0x80 +fn_803B3DD4 = .text:0x803B3DD4; // type:function size:0x80 +fn_803B3E54 = .text:0x803B3E54; // type:function size:0x58 +fn_803B3EAC = .text:0x803B3EAC; // type:function size:0x60 +fn_803B3F0C = .text:0x803B3F0C; // type:function size:0x58 +fn_803B3F64 = .text:0x803B3F64; // type:function size:0x58 +fn_803B3FBC = .text:0x803B3FBC; // type:function size:0x50 +fn_803B400C = .text:0x803B400C; // type:function size:0x58 +fn_803B4064 = .text:0x803B4064; // type:function size:0x60 +fn_803B40C4 = .text:0x803B40C4; // type:function size:0x58 +fn_803B411C = .text:0x803B411C; // type:function size:0x58 +fn_803B4174 = .text:0x803B4174; // type:function size:0x50 +fn_803B41C4 = .text:0x803B41C4; // type:function size:0x58 +fn_803B421C = .text:0x803B421C; // type:function size:0x60 +fn_803B427C = .text:0x803B427C; // type:function size:0x58 +fn_803B42D4 = .text:0x803B42D4; // type:function size:0x58 +fn_803B432C = .text:0x803B432C; // type:function size:0x50 +fn_803B437C = .text:0x803B437C; // type:function size:0x50 +fn_803B43CC = .text:0x803B43CC; // type:function size:0x30 +fn_803B43FC = .text:0x803B43FC; // type:function size:0x30 +fn_803B442C = .text:0x803B442C; // type:function size:0x40 +fn_803B446C = .text:0x803B446C; // type:function size:0x68 +__ct__33ObjPtr<12RndTransAnim,9ObjectDir>FPQ23Hmx6ObjectP12RndTransAnim = .text:0x803B44D4; // type:function size:0x68 +fn_803B453C = .text:0x803B453C; // type:function size:0x44 +fn_803B4580 = .text:0x803B4580; // type:function size:0x3C +fn_803B45BC = .text:0x803B45BC; // type:function size:0x70 +fn_803B462C = .text:0x803B462C; // type:function size:0x44 +fn_803B4670 = .text:0x803B4670; // type:function size:0x3C +fn_803B46AC = .text:0x803B46AC; // type:function size:0x70 +fn_803B471C = .text:0x803B471C; // type:function size:0x44 +fn_803B4760 = .text:0x803B4760; // type:function size:0x3C +fn_803B479C = .text:0x803B479C; // type:function size:0x70 +fn_803B480C = .text:0x803B480C; // type:function size:0x138 +fn_803B4944 = .text:0x803B4944; // type:function size:0x44 +fn_803B4988 = .text:0x803B4988; // type:function size:0x34 +fn_803B49BC = .text:0x803B49BC; // type:function size:0x48 +fn_803B4A04 = .text:0x803B4A04; // type:function size:0x4C +fn_803B4A50 = .text:0x803B4A50; // type:function size:0x4 +fn_803B4A54 = .text:0x803B4A54; // type:function size:0x5C +fn_803B4AB0 = .text:0x803B4AB0; // type:function size:0x84 +fn_803B4B34 = .text:0x803B4B34; // type:function size:0x13C +fn_803B4C70 = .text:0x803B4C70; // type:function size:0x40 +fn_803B4CB0 = .text:0x803B4CB0; // type:function size:0x104 +fn_803B4DB4 = .text:0x803B4DB4; // type:function size:0x40 +fn_803B4DF4 = .text:0x803B4DF4; // type:function size:0x104 +fn_803B4EF8 = .text:0x803B4EF8; // type:function size:0x74 +fn_803B4F6C = .text:0x803B4F6C; // type:function size:0x5C +fn_803B4FC8 = .text:0x803B4FC8; // type:function size:0x4 +fn_803B4FCC = .text:0x803B4FCC; // type:function size:0x90 +fn_803B505C = .text:0x803B505C; // type:function size:0x4 +fn_803B5060 = .text:0x803B5060; // type:function size:0x40 +fn_803B50A0 = .text:0x803B50A0; // type:function size:0x8C +fn_803B512C = .text:0x803B512C; // type:function size:0x8 +fn_803B5134 = .text:0x803B5134; // type:function size:0x2C +fn_803B5160 = .text:0x803B5160; // type:function size:0x58 +fn_803B51B8 = .text:0x803B51B8; // type:function size:0x28 +fn_803B51E0 = .text:0x803B51E0; // type:function size:0x68 +fn_803B5248 = .text:0x803B5248; // type:function size:0x54 +fn_803B529C = .text:0x803B529C; // type:function size:0x108 +fn_803B53A4 = .text:0x803B53A4; // type:function size:0x5C +fn_803B5400 = .text:0x803B5400; // type:function size:0x30 +fn_803B5430 = .text:0x803B5430; // type:function size:0x8 +fn_803B5438 = .text:0x803B5438; // type:function size:0x8 +fn_803B5440 = .text:0x803B5440; // type:function size:0x5C +fn_803B549C = .text:0x803B549C; // type:function size:0x4 +fn_803B54A0 = .text:0x803B54A0; // type:function size:0x54 +fn_803B54F4 = .text:0x803B54F4; // type:function size:0xF0 +fn_803B55E4 = .text:0x803B55E4; // type:function size:0x100 +fn_803B56E4 = .text:0x803B56E4; // type:function size:0x58 +fn_803B573C = .text:0x803B573C; // type:function size:0x8 +fn_803B5744 = .text:0x803B5744; // type:function size:0x4 +fn_803B5748 = .text:0x803B5748; // type:function size:0x40 +fn_803B5788 = .text:0x803B5788; // type:function size:0x80 +fn_803B5808 = .text:0x803B5808; // type:function size:0x24 +fn_803B582C = .text:0x803B582C; // type:function size:0xC8 +fn_803B58F4 = .text:0x803B58F4; // type:function size:0x100 +fn_803B59F4 = .text:0x803B59F4; // type:function size:0x58 +fn_803B5A4C = .text:0x803B5A4C; // type:function size:0x8 +fn_803B5A54 = .text:0x803B5A54; // type:function size:0x4 +fn_803B5A58 = .text:0x803B5A58; // type:function size:0x40 +fn_803B5A98 = .text:0x803B5A98; // type:function size:0x80 +fn_803B5B18 = .text:0x803B5B18; // type:function size:0xFC +fn_803B5C14 = .text:0x803B5C14; // type:function size:0x8C +fn_803B5CA0 = .text:0x803B5CA0; // type:function size:0x34 +fn_803B5CD4 = .text:0x803B5CD4; // type:function size:0x4 +fn_803B5CD8 = .text:0x803B5CD8; // type:function size:0x8 +fn_803B5CE0 = .text:0x803B5CE0; // type:function size:0x80 +fn_803B5D60 = .text:0x803B5D60; // type:function size:0x78 +fn_803B5DD8 = .text:0x803B5DD8; // type:function size:0xEC +fn_803B5EC4 = .text:0x803B5EC4; // type:function size:0xD0 +fn_803B5F94 = .text:0x803B5F94; // type:function size:0x14C +fn_803B60E0 = .text:0x803B60E0; // type:function size:0xFC +fn_803B61DC = .text:0x803B61DC; // type:function size:0x58 +fn_803B6234 = .text:0x803B6234; // type:function size:0x8 +fn_803B623C = .text:0x803B623C; // type:function size:0x4 +fn_803B6240 = .text:0x803B6240; // type:function size:0x40 +fn_803B6280 = .text:0x803B6280; // type:function size:0x80 +fn_803B6300 = .text:0x803B6300; // type:function size:0x148 +fn_803B6448 = .text:0x803B6448; // type:function size:0x1D4 +fn_803B661C = .text:0x803B661C; // type:function size:0x1EC +fn_803B6808 = .text:0x803B6808; // type:function size:0x180 +fn_803B6988 = .text:0x803B6988; // type:function size:0x204 +fn_803B6B8C = .text:0x803B6B8C; // type:function size:0xA4 +fn_803B6C30 = .text:0x803B6C30; // type:function size:0x15C +fn_803B6D8C = .text:0x803B6D8C; // type:function size:0x40 +fn_803B6DCC = .text:0x803B6DCC; // type:function size:0x48 +fn_803B6E14 = .text:0x803B6E14; // type:function size:0x4C +fn_803B6E60 = .text:0x803B6E60; // type:function size:0x40 +fn_803B6EA0 = .text:0x803B6EA0; // type:function size:0xDC +fn_803B6F7C = .text:0x803B6F7C; // type:function size:0x48 +fn_803B6FC4 = .text:0x803B6FC4; // type:function size:0x5C +fn_803B7020 = .text:0x803B7020; // type:function size:0x68 +fn_803B7088 = .text:0x803B7088; // type:function size:0x70 +fn_803B70F8 = .text:0x803B70F8; // type:function size:0x70 +fn_803B7168 = .text:0x803B7168; // type:function size:0x68 +fn_803B71D0 = .text:0x803B71D0; // type:function size:0x70 +fn_803B7240 = .text:0x803B7240; // type:function size:0x70 +fn_803B72B0 = .text:0x803B72B0; // type:function size:0xA0 +fn_803B7350 = .text:0x803B7350; // type:function size:0xA0 +fn_803B73F0 = .text:0x803B73F0; // type:function size:0xC0 +fn_803B74B0 = .text:0x803B74B0; // type:function size:0xC0 +fn_803B7570 = .text:0x803B7570; // type:function size:0x78 +fn_803B75E8 = .text:0x803B75E8; // type:function size:0x78 +fn_803B7660 = .text:0x803B7660; // type:function size:0x80 +fn_803B76E0 = .text:0x803B76E0; // type:function size:0x80 +fn_803B7760 = .text:0x803B7760; // type:function size:0xB0 +fn_803B7810 = .text:0x803B7810; // type:function size:0x114 +fn_803B7924 = .text:0x803B7924; // type:function size:0x1F4 +fn_803B7B18 = .text:0x803B7B18; // type:function size:0x148 +fn_803B7C60 = .text:0x803B7C60; // type:function size:0x3CC +fn_803B802C = .text:0x803B802C; // type:function size:0xCC +fn_803B80F8 = .text:0x803B80F8; // type:function size:0xC0 +fn_803B81B8 = .text:0x803B81B8; // type:function size:0x170 +fn_803B8328 = .text:0x803B8328; // type:function size:0x2C +fn_803B8354 = .text:0x803B8354; // type:function size:0x84 +fn_803B83D8 = .text:0x803B83D8; // type:function size:0x2C +fn_803B8404 = .text:0x803B8404; // type:function size:0x6C +fn_803B8470 = .text:0x803B8470; // type:function size:0x60 +fn_803B84D0 = .text:0x803B84D0; // type:function size:0x68 +fn_803B8538 = .text:0x803B8538; // type:function size:0x2C +fn_803B8564 = .text:0x803B8564; // type:function size:0x58 +fn_803B85BC = .text:0x803B85BC; // type:function size:0x160 +fn_803B871C = .text:0x803B871C; // type:function size:0x5C +fn_803B8778 = .text:0x803B8778; // type:function size:0x10 +fn_803B8788 = .text:0x803B8788; // type:function size:0x54 +fn_803B87DC = .text:0x803B87DC; // type:function size:0x28 +fn_803B8804 = .text:0x803B8804; // type:function size:0x5C +fn_803B8860 = .text:0x803B8860; // type:function size:0x60 +fn_803B88C0 = .text:0x803B88C0; // type:function size:0x3B8 +fn_803B8C78 = .text:0x803B8C78; // type:function size:0x6C +fn_803B8CE4 = .text:0x803B8CE4; // type:function size:0x2C +fn_803B8D10 = .text:0x803B8D10; // type:function size:0x3B8 +fn_803B90C8 = .text:0x803B90C8; // type:function size:0x6C +fn_803B9134 = .text:0x803B9134; // type:function size:0x2C +fn_803B9160 = .text:0x803B9160; // type:function size:0x3B8 +fn_803B9518 = .text:0x803B9518; // type:function size:0x6C +fn_803B9584 = .text:0x803B9584; // type:function size:0x2C +fn_803B95B0 = .text:0x803B95B0; // type:function size:0x138 +fn_803B96E8 = .text:0x803B96E8; // type:function size:0x4 +fn_803B96EC = .text:0x803B96EC; // type:function size:0x198 +fn_803B9884 = .text:0x803B9884; // type:function size:0x5C +fn_803B98E0 = .text:0x803B98E0; // type:function size:0x54 +fn_803B9934 = .text:0x803B9934; // type:function size:0x28 +fn_803B995C = .text:0x803B995C; // type:function size:0x68 +fn_803B99C4 = .text:0x803B99C4; // type:function size:0x114 +fn_803B9AD8 = .text:0x803B9AD8; // type:function size:0x5C +fn_803B9B34 = .text:0x803B9B34; // type:function size:0x5C +fn_803B9B90 = .text:0x803B9B90; // type:function size:0x54 +fn_803B9BE4 = .text:0x803B9BE4; // type:function size:0x15C +fn_803B9D40 = .text:0x803B9D40; // type:function size:0x44 +fn_803B9D84 = .text:0x803B9D84; // type:function size:0x8 +fn_803B9D8C = .text:0x803B9D8C; // type:function size:0x108 +fn_803B9E94 = .text:0x803B9E94; // type:function size:0x5C +fn_803B9EF0 = .text:0x803B9EF0; // type:function size:0x10 +fn_803B9F00 = .text:0x803B9F00; // type:function size:0x15C +fn_803BA05C = .text:0x803BA05C; // type:function size:0x44 +fn_803BA0A0 = .text:0x803BA0A0; // type:function size:0x108 +fn_803BA1A8 = .text:0x803BA1A8; // type:function size:0x5C +fn_803BA204 = .text:0x803BA204; // type:function size:0x10 +fn_803BA214 = .text:0x803BA214; // type:function size:0x15C +fn_803BA370 = .text:0x803BA370; // type:function size:0x44 +fn_803BA3B4 = .text:0x803BA3B4; // type:function size:0x8 +fn_803BA3BC = .text:0x803BA3BC; // type:function size:0x108 +fn_803BA4C4 = .text:0x803BA4C4; // type:function size:0x5C +fn_803BA520 = .text:0x803BA520; // type:function size:0x10 +fn_803BA530 = .text:0x803BA530; // type:function size:0x14 +fn_803BA544 = .text:0x803BA544; // type:function size:0x14 +fn_803BA558 = .text:0x803BA558; // type:function size:0x8 +fn_803BA560 = .text:0x803BA560; // type:function size:0x8 +fn_803BA568 = .text:0x803BA568; // type:function size:0x8 +fn_803BA570 = .text:0x803BA570; // type:function size:0x8 +fn_803BA578 = .text:0x803BA578; // type:function size:0x8 +fn_803BA580 = .text:0x803BA580; // type:function size:0x8 +fn_803BA588 = .text:0x803BA588; // type:function size:0x8 +fn_803BA590 = .text:0x803BA590; // type:function size:0x8 +fn_803BA598 = .text:0x803BA598; // type:function size:0x14 +fn_803BA5AC = .text:0x803BA5AC; // type:function size:0x14 +fn_803BA5C0 = .text:0x803BA5C0; // type:function size:0x14 +fn_803BA5D4 = .text:0x803BA5D4; // type:function size:0x14 +fn_803BA5E8 = .text:0x803BA5E8; // type:function size:0x14 +fn_803BA5FC = .text:0x803BA5FC; // type:function size:0x14 +fn_803BA610 = .text:0x803BA610; // type:function size:0x14 +fn_803BA624 = .text:0x803BA624; // type:function size:0x14 +fn_803BA638 = .text:0x803BA638; // type:function size:0x14 +fn_803BA64C = .text:0x803BA64C; // type:function size:0x14 +fn_803BA660 = .text:0x803BA660; // type:function size:0x14 +fn_803BA674 = .text:0x803BA674; // type:function size:0x14 +fn_803BA688 = .text:0x803BA688; // type:function size:0x14 +fn_803BA69C = .text:0x803BA69C; // type:function size:0x8 +fn_803BA6A4 = .text:0x803BA6A4; // type:function size:0x8 +fn_803BA6AC = .text:0x803BA6AC; // type:function size:0x8 +fn_803BA6B4 = .text:0x803BA6B4; // type:function size:0x8 +fn_803BA6BC = .text:0x803BA6BC; // type:function size:0x8 +fn_803BA6C4 = .text:0x803BA6C4; // type:function size:0x8 +fn_803BA6CC = .text:0x803BA6CC; // type:function size:0x8 +fn_803BA6D4 = .text:0x803BA6D4; // type:function size:0x8 +fn_803BA6DC = .text:0x803BA6DC; // type:function size:0x8 +fn_803BA6E4 = .text:0x803BA6E4; // type:function size:0x8 +fn_803BA6EC = .text:0x803BA6EC; // type:function size:0x8 +fn_803BA6F4 = .text:0x803BA6F4; // type:function size:0x8 +fn_803BA6FC = .text:0x803BA6FC; // type:function size:0x8 +fn_803BA704 = .text:0x803BA704; // type:function size:0x8 +fn_803BA70C = .text:0x803BA70C; // type:function size:0x8 +fn_803BA714 = .text:0x803BA714; // type:function size:0x8 +fn_803BA71C = .text:0x803BA71C; // type:function size:0x8 +fn_803BA724 = .text:0x803BA724; // type:function size:0x8 +fn_803BA72C = .text:0x803BA72C; // type:function size:0x8 +fn_803BA734 = .text:0x803BA734; // type:function size:0x8 +fn_803BA73C = .text:0x803BA73C; // type:function size:0x64 +fn_803BA7A0 = .text:0x803BA7A0; // type:function size:0x8 +fn_803BA7A8 = .text:0x803BA7A8; // type:function size:0x40 +fn_803BA7E8 = .text:0x803BA7E8; // type:function size:0x14 +fn_803BA7FC = .text:0x803BA7FC; // type:function size:0x180 +fn_803BA97C = .text:0x803BA97C; // type:function size:0x30 +fn_803BA9AC = .text:0x803BA9AC; // type:function size:0x24 +fn_803BA9D0 = .text:0x803BA9D0; // type:function size:0x54 +fn_803BAA24 = .text:0x803BAA24; // type:function size:0x2C +fn_803BAA50 = .text:0x803BAA50; // type:function size:0x1B4 +fn_803BAC04 = .text:0x803BAC04; // type:function size:0x1C +fn_803BAC20 = .text:0x803BAC20; // type:function size:0x18C +fn_803BADAC = .text:0x803BADAC; // type:function size:0x88 +fn_803BAE34 = .text:0x803BAE34; // type:function size:0xE8 +fn_803BAF1C = .text:0x803BAF1C; // type:function size:0x30 +fn_803BAF4C = .text:0x803BAF4C; // type:function size:0xB4 +fn_803BB000 = .text:0x803BB000; // type:function size:0x34 +fn_803BB034 = .text:0x803BB034; // type:function size:0x8C +fn_803BB0C0 = .text:0x803BB0C0; // type:function size:0xD4 +fn_803BB194 = .text:0x803BB194; // type:function size:0x98 +fn_803BB22C = .text:0x803BB22C; // type:function size:0x6C +fn_803BB298 = .text:0x803BB298; // type:function size:0x30 +fn_803BB2C8 = .text:0x803BB2C8; // type:function size:0x40 +fn_803BB308 = .text:0x803BB308; // type:function size:0x44 +fn_803BB34C = .text:0x803BB34C; // type:function size:0x58 +fn_803BB3A4 = .text:0x803BB3A4; // type:function size:0xA4 +fn_803BB448 = .text:0x803BB448; // type:function size:0x6C +fn_803BB4B4 = .text:0x803BB4B4; // type:function size:0xC +fn_803BB4C0 = .text:0x803BB4C0; // type:function size:0xE0 +fn_803BB5A0 = .text:0x803BB5A0; // type:function size:0x94 +fn_803BB634 = .text:0x803BB634; // type:function size:0x70 +fn_803BB6A4 = .text:0x803BB6A4; // type:function size:0x84 +fn_803BB728 = .text:0x803BB728; // type:function size:0x6C +fn_803BB794 = .text:0x803BB794; // type:function size:0x58 +fn_803BB7EC = .text:0x803BB7EC; // type:function size:0x58 +fn_803BB844 = .text:0x803BB844; // type:function size:0x30 +fn_803BB874 = .text:0x803BB874; // type:function size:0x60 +fn_803BB8D4 = .text:0x803BB8D4; // type:function size:0x58 +fn_803BB92C = .text:0x803BB92C; // type:function size:0x80 +fn_803BB9AC = .text:0x803BB9AC; // type:function size:0x80 +fn_803BBA2C = .text:0x803BBA2C; // type:function size:0x58 +fn_803BBA84 = .text:0x803BBA84; // type:function size:0x54 +fn_803BBAD8 = .text:0x803BBAD8; // type:function size:0x5C +fn_803BBB34 = .text:0x803BBB34; // type:function size:0x6C +fn_803BBBA0 = .text:0x803BBBA0; // type:function size:0x28 +fn_803BBBC8 = .text:0x803BBBC8; // type:function size:0x10 +fn_803BBBD8 = .text:0x803BBBD8; // type:function size:0xC +fn_803BBBE4 = .text:0x803BBBE4; // type:function size:0x8 +fn_803BBBEC = .text:0x803BBBEC; // type:function size:0x3C +fn_803BBC28 = .text:0x803BBC28; // type:function size:0x30 +fn_803BBC58 = .text:0x803BBC58; // type:function size:0x30 +fn_803BBC88 = .text:0x803BBC88; // type:function size:0x40 +fn_803BBCC8 = .text:0x803BBCC8; // type:function size:0x94 +fn_803BBD5C = .text:0x803BBD5C; // type:function size:0x58 +fn_803BBDB4 = .text:0x803BBDB4; // type:function size:0x88 +fn_803BBE3C = .text:0x803BBE3C; // type:function size:0xE8 +fn_803BBF24 = .text:0x803BBF24; // type:function size:0x30 +fn_803BBF54 = .text:0x803BBF54; // type:function size:0xB4 +fn_803BC008 = .text:0x803BC008; // type:function size:0x34 +fn_803BC03C = .text:0x803BC03C; // type:function size:0x8C +fn_803BC0C8 = .text:0x803BC0C8; // type:function size:0xD4 +fn_803BC19C = .text:0x803BC19C; // type:function size:0x98 +fn_803BC234 = .text:0x803BC234; // type:function size:0x6C +fn_803BC2A0 = .text:0x803BC2A0; // type:function size:0x30 +fn_803BC2D0 = .text:0x803BC2D0; // type:function size:0x40 +fn_803BC310 = .text:0x803BC310; // type:function size:0x44 +fn_803BC354 = .text:0x803BC354; // type:function size:0x20 +fn_803BC374 = .text:0x803BC374; // type:function size:0xA4 +fn_803BC418 = .text:0x803BC418; // type:function size:0x6C +fn_803BC484 = .text:0x803BC484; // type:function size:0xC +fn_803BC490 = .text:0x803BC490; // type:function size:0xE0 +fn_803BC570 = .text:0x803BC570; // type:function size:0x94 +fn_803BC604 = .text:0x803BC604; // type:function size:0x70 +fn_803BC674 = .text:0x803BC674; // type:function size:0x84 +fn_803BC6F8 = .text:0x803BC6F8; // type:function size:0x6C +fn_803BC764 = .text:0x803BC764; // type:function size:0x58 +fn_803BC7BC = .text:0x803BC7BC; // type:function size:0x58 +fn_803BC814 = .text:0x803BC814; // type:function size:0x30 +fn_803BC844 = .text:0x803BC844; // type:function size:0x60 +fn_803BC8A4 = .text:0x803BC8A4; // type:function size:0x400 +fn_803BCCA4 = .text:0x803BCCA4; // type:function size:0xC +fn_803BCCB0 = .text:0x803BCCB0; // type:function size:0x4 +fn_803BCCB4 = .text:0x803BCCB4; // type:function size:0x8C +fn_803BCD40 = .text:0x803BCD40; // type:function size:0x4 +fn_803BCD44 = .text:0x803BCD44; // type:function size:0x40 +fn_803BCD84 = .text:0x803BCD84; // type:function size:0x84 +fn_803BCE08 = .text:0x803BCE08; // type:function size:0x8 +fn_803BCE10 = .text:0x803BCE10; // type:function size:0x2C +fn_803BCE3C = .text:0x803BCE3C; // type:function size:0x58 +fn_803BCE94 = .text:0x803BCE94; // type:function size:0x28 +fn_803BCEBC = .text:0x803BCEBC; // type:function size:0x60 +fn_803BCF1C = .text:0x803BCF1C; // type:function size:0x134 +fn_803BD050 = .text:0x803BD050; // type:function size:0x88 +fn_803BD0D8 = .text:0x803BD0D8; // type:function size:0x32C +fn_803BD404 = .text:0x803BD404; // type:function size:0xC +fn_803BD410 = .text:0x803BD410; // type:function size:0x38 +fn_803BD448 = .text:0x803BD448; // type:function size:0x24 +fn_803BD46C = .text:0x803BD46C; // type:function size:0x24 +fn_803BD490 = .text:0x803BD490; // type:function size:0x308 +fn_803BD798 = .text:0x803BD798; // type:function size:0x4 +fn_803BD79C = .text:0x803BD79C; // type:function size:0x3C +fn_803BD7D8 = .text:0x803BD7D8; // type:function size:0xC4 +fn_803BD89C = .text:0x803BD89C; // type:function size:0x338 +fn_803BDBD4 = .text:0x803BDBD4; // type:function size:0xE8 +fn_803BDCBC = .text:0x803BDCBC; // type:function size:0xEC +fn_803BDDA8 = .text:0x803BDDA8; // type:function size:0x160 +fn_803BDF08 = .text:0x803BDF08; // type:function size:0x58 +fn_803BDF60 = .text:0x803BDF60; // type:function size:0x374 +fn_803BE2D4 = .text:0x803BE2D4; // type:function size:0x88 +fn_803BE35C = .text:0x803BE35C; // type:function size:0xE8 +fn_803BE444 = .text:0x803BE444; // type:function size:0x30 +fn_803BE474 = .text:0x803BE474; // type:function size:0xB4 +fn_803BE528 = .text:0x803BE528; // type:function size:0x34 +fn_803BE55C = .text:0x803BE55C; // type:function size:0x8C +fn_803BE5E8 = .text:0x803BE5E8; // type:function size:0xD4 +fn_803BE6BC = .text:0x803BE6BC; // type:function size:0x98 +fn_803BE754 = .text:0x803BE754; // type:function size:0x6C +fn_803BE7C0 = .text:0x803BE7C0; // type:function size:0x30 +fn_803BE7F0 = .text:0x803BE7F0; // type:function size:0x40 +fn_803BE830 = .text:0x803BE830; // type:function size:0x44 +fn_803BE874 = .text:0x803BE874; // type:function size:0xA4 +fn_803BE918 = .text:0x803BE918; // type:function size:0xE0 +fn_803BE9F8 = .text:0x803BE9F8; // type:function size:0x94 +fn_803BEA8C = .text:0x803BEA8C; // type:function size:0x70 +fn_803BEAFC = .text:0x803BEAFC; // type:function size:0x84 +fn_803BEB80 = .text:0x803BEB80; // type:function size:0x6C +fn_803BEBEC = .text:0x803BEBEC; // type:function size:0x30 +fn_803BEC1C = .text:0x803BEC1C; // type:function size:0x60 +fn_803BEC7C = .text:0x803BEC7C; // type:function size:0x94 +fn_803BED10 = .text:0x803BED10; // type:function size:0xE4 +fn_803BEDF4 = .text:0x803BEDF4; // type:function size:0x30 +fn_803BEE24 = .text:0x803BEE24; // type:function size:0xB4 +fn_803BEED8 = .text:0x803BEED8; // type:function size:0x34 +fn_803BEF0C = .text:0x803BEF0C; // type:function size:0x8C +fn_803BEF98 = .text:0x803BEF98; // type:function size:0xD8 +fn_803BF070 = .text:0x803BF070; // type:function size:0xA0 +fn_803BF110 = .text:0x803BF110; // type:function size:0x6C +fn_803BF17C = .text:0x803BF17C; // type:function size:0x30 +fn_803BF1AC = .text:0x803BF1AC; // type:function size:0x40 +fn_803BF1EC = .text:0x803BF1EC; // type:function size:0x44 +fn_803BF230 = .text:0x803BF230; // type:function size:0x14 +fn_803BF244 = .text:0x803BF244; // type:function size:0xA4 +fn_803BF2E8 = .text:0x803BF2E8; // type:function size:0x6C +fn_803BF354 = .text:0x803BF354; // type:function size:0xC +fn_803BF360 = .text:0x803BF360; // type:function size:0xE0 +fn_803BF440 = .text:0x803BF440; // type:function size:0x94 +fn_803BF4D4 = .text:0x803BF4D4; // type:function size:0x70 +fn_803BF544 = .text:0x803BF544; // type:function size:0x88 +fn_803BF5CC = .text:0x803BF5CC; // type:function size:0x70 +fn_803BF63C = .text:0x803BF63C; // type:function size:0x58 +fn_803BF694 = .text:0x803BF694; // type:function size:0x58 +fn_803BF6EC = .text:0x803BF6EC; // type:function size:0x30 +fn_803BF71C = .text:0x803BF71C; // type:function size:0x60 +fn_803BF77C = .text:0x803BF77C; // type:function size:0x1C +fn_803BF798 = .text:0x803BF798; // type:function size:0x98 +fn_803BF830 = .text:0x803BF830; // type:function size:0x8 +fn_803BF838 = .text:0x803BF838; // type:function size:0x60 +fn_803BF898 = .text:0x803BF898; // type:function size:0x4C +fn_803BF8E4 = .text:0x803BF8E4; // type:function size:0x24 +fn_803BF908 = .text:0x803BF908; // type:function size:0x3C +fn_803BF944 = .text:0x803BF944; // type:function size:0x5C +fn_803BF9A0 = .text:0x803BF9A0; // type:function size:0x68 +fn_803BFA08 = .text:0x803BFA08; // type:function size:0x4 +fn_803BFA0C = .text:0x803BFA0C; // type:function size:0x90 +fn_803BFA9C = .text:0x803BFA9C; // type:function size:0x4 +fn_803BFAA0 = .text:0x803BFAA0; // type:function size:0x40 +fn_803BFAE0 = .text:0x803BFAE0; // type:function size:0x8C +fn_803BFB6C = .text:0x803BFB6C; // type:function size:0x8 +fn_803BFB74 = .text:0x803BFB74; // type:function size:0x2C +fn_803BFBA0 = .text:0x803BFBA0; // type:function size:0x58 +fn_803BFBF8 = .text:0x803BFBF8; // type:function size:0x8 +fn_803BFC00 = .text:0x803BFC00; // type:function size:0x28 +fn_803BFC28 = .text:0x803BFC28; // type:function size:0x68 +fn_803BFC90 = .text:0x803BFC90; // type:function size:0x48 +fn_803BFCD8 = .text:0x803BFCD8; // type:function size:0x8 +fn_803BFCE0 = .text:0x803BFCE0; // type:function size:0x50 +fn_803BFD30 = .text:0x803BFD30; // type:function size:0x68 +fn_803BFD98 = .text:0x803BFD98; // type:function size:0xE0 +fn_803BFE78 = .text:0x803BFE78; // type:function size:0x8 +fn_803BFE80 = .text:0x803BFE80; // type:function size:0x70 +fn_803BFEF0 = .text:0x803BFEF0; // type:function size:0x5C +fn_803BFF4C = .text:0x803BFF4C; // type:function size:0x58 +fn_803BFFA4 = .text:0x803BFFA4; // type:function size:0x58 +fn_803BFFFC = .text:0x803BFFFC; // type:function size:0x80 +fn_803C007C = .text:0x803C007C; // type:function size:0x80 +fn_803C00FC = .text:0x803C00FC; // type:function size:0x58 +fn_803C0154 = .text:0x803C0154; // type:function size:0x54 +fn_803C01A8 = .text:0x803C01A8; // type:function size:0x5C +fn_803C0204 = .text:0x803C0204; // type:function size:0x6C +fn_803C0270 = .text:0x803C0270; // type:function size:0x28 +fn_803C0298 = .text:0x803C0298; // type:function size:0x8 +fn_803C02A0 = .text:0x803C02A0; // type:function size:0x68 +fn_803C0308 = .text:0x803C0308; // type:function size:0x58 +fn_803C0360 = .text:0x803C0360; // type:function size:0x58 +fn_803C03B8 = .text:0x803C03B8; // type:function size:0x80 +fn_803C0438 = .text:0x803C0438; // type:function size:0x80 +fn_803C04B8 = .text:0x803C04B8; // type:function size:0x58 +fn_803C0510 = .text:0x803C0510; // type:function size:0x54 +fn_803C0564 = .text:0x803C0564; // type:function size:0x5C +fn_803C05C0 = .text:0x803C05C0; // type:function size:0x6C +fn_803C062C = .text:0x803C062C; // type:function size:0x28 +fn_803C0654 = .text:0x803C0654; // type:function size:0x8 +fn_803C065C = .text:0x803C065C; // type:function size:0x3C +fn_803C0698 = .text:0x803C0698; // type:function size:0x8 +fn_803C06A0 = .text:0x803C06A0; // type:function size:0x3C +fn_803C06DC = .text:0x803C06DC; // type:function size:0x50 +fn_803C072C = .text:0x803C072C; // type:function size:0x30 +fn_803C075C = .text:0x803C075C; // type:function size:0x30 +fn_803C078C = .text:0x803C078C; // type:function size:0x40 +fn_803C07CC = .text:0x803C07CC; // type:function size:0x58 +fn_803C0824 = .text:0x803C0824; // type:function size:0x44 +fn_803C0868 = .text:0x803C0868; // type:function size:0x30 +fn_803C0898 = .text:0x803C0898; // type:function size:0x98 +fn_803C0930 = .text:0x803C0930; // type:function size:0x5C +fn_803C098C = .text:0x803C098C; // type:function size:0x10 +fn_803C099C = .text:0x803C099C; // type:function size:0x48 +fn_803C09E4 = .text:0x803C09E4; // type:function size:0x44 +fn_803C0A28 = .text:0x803C0A28; // type:function size:0x30 +fn_803C0A58 = .text:0x803C0A58; // type:function size:0xA0 +fn_803C0AF8 = .text:0x803C0AF8; // type:function size:0x5C +fn_803C0B54 = .text:0x803C0B54; // type:function size:0x10 +fn_803C0B64 = .text:0x803C0B64; // type:function size:0x48 +fn_803C0BAC = .text:0x803C0BAC; // type:function size:0x68 +fn_803C0C14 = .text:0x803C0C14; // type:function size:0x70 +fn_803C0C84 = .text:0x803C0C84; // type:function size:0x70 +fn_803C0CF4 = .text:0x803C0CF4; // type:function size:0x70 +fn_803C0D64 = .text:0x803C0D64; // type:function size:0x60 +fn_803C0DC4 = .text:0x803C0DC4; // type:function size:0x5C +fn_803C0E20 = .text:0x803C0E20; // type:function size:0x30 +fn_803C0E50 = .text:0x803C0E50; // type:function size:0x5C +fn_803C0EAC = .text:0x803C0EAC; // type:function size:0x4 +fn_803C0EB0 = .text:0x803C0EB0; // type:function size:0x90 +fn_803C0F40 = .text:0x803C0F40; // type:function size:0x4 +fn_803C0F44 = .text:0x803C0F44; // type:function size:0x40 +fn_803C0F84 = .text:0x803C0F84; // type:function size:0x8C +fn_803C1010 = .text:0x803C1010; // type:function size:0x8 +fn_803C1018 = .text:0x803C1018; // type:function size:0x2C +fn_803C1044 = .text:0x803C1044; // type:function size:0x58 +fn_803C109C = .text:0x803C109C; // type:function size:0x28 +fn_803C10C4 = .text:0x803C10C4; // type:function size:0x68 +fn_803C112C = .text:0x803C112C; // type:function size:0x48 +fn_803C1174 = .text:0x803C1174; // type:function size:0x5C +fn_803C11D0 = .text:0x803C11D0; // type:function size:0x30 +fn_803C1200 = .text:0x803C1200; // type:function size:0x4C +fn_803C124C = .text:0x803C124C; // type:function size:0x50 +fn_803C129C = .text:0x803C129C; // type:function size:0x30 +fn_803C12CC = .text:0x803C12CC; // type:function size:0x30 +fn_803C12FC = .text:0x803C12FC; // type:function size:0x40 +fn_803C133C = .text:0x803C133C; // type:function size:0x2C8 +fn_803C1604 = .text:0x803C1604; // type:function size:0x94 +fn_803C1698 = .text:0x803C1698; // type:function size:0x258 +fn_803C18F0 = .text:0x803C18F0; // type:function size:0x10 +fn_803C1900 = .text:0x803C1900; // type:function size:0xC +fn_803C190C = .text:0x803C190C; // type:function size:0x54 +fn_803C1960 = .text:0x803C1960; // type:function size:0xB8 +fn_803C1A18 = .text:0x803C1A18; // type:function size:0x4 +fn_803C1A1C = .text:0x803C1A1C; // type:function size:0x3C +fn_803C1A58 = .text:0x803C1A58; // type:function size:0x148 +fn_803C1BA0 = .text:0x803C1BA0; // type:function size:0xAC +fn_803C1C4C = .text:0x803C1C4C; // type:function size:0x400 +fn_803C204C = .text:0x803C204C; // type:function size:0x2C +fn_803C2078 = .text:0x803C2078; // type:function size:0xB4 +fn_803C212C = .text:0x803C212C; // type:function size:0x70 +fn_803C219C = .text:0x803C219C; // type:function size:0x30 +fn_803C21CC = .text:0x803C21CC; // type:function size:0x24 +fn_803C21F0 = .text:0x803C21F0; // type:function size:0x30 +fn_803C2220 = .text:0x803C2220; // type:function size:0x30 +fn_803C2250 = .text:0x803C2250; // type:function size:0x30 +fn_803C2280 = .text:0x803C2280; // type:function size:0xC +fn_803C228C = .text:0x803C228C; // type:function size:0x8 +fn_803C2294 = .text:0x803C2294; // type:function size:0x34 +fn_803C22C8 = .text:0x803C22C8; // type:function size:0x46C +fn_803C2734 = .text:0x803C2734; // type:function size:0x24 +fn_803C2758 = .text:0x803C2758; // type:function size:0x68 +fn_803C27C0 = .text:0x803C27C0; // type:function size:0x10 +fn_803C27D0 = .text:0x803C27D0; // type:function size:0x74 +fn_803C2844 = .text:0x803C2844; // type:function size:0x390 +fn_803C2BD4 = .text:0x803C2BD4; // type:function size:0x48 +fn_803C2C1C = .text:0x803C2C1C; // type:function size:0x4C +fn_803C2C68 = .text:0x803C2C68; // type:function size:0xC +fn_803C2C74 = .text:0x803C2C74; // type:function size:0xB0 +fn_803C2D24 = .text:0x803C2D24; // type:function size:0x6C +fn_803C2D90 = .text:0x803C2D90; // type:function size:0x30 +fn_803C2DC0 = .text:0x803C2DC0; // type:function size:0x13C +fn_803C2EFC = .text:0x803C2EFC; // type:function size:0x74 +fn_803C2F70 = .text:0x803C2F70; // type:function size:0xE0 +fn_803C3050 = .text:0x803C3050; // type:function size:0xC0 +fn_803C3110 = .text:0x803C3110; // type:function size:0xE0 +fn_803C31F0 = .text:0x803C31F0; // type:function size:0x170 +fn_803C3360 = .text:0x803C3360; // type:function size:0x2C +fn_803C338C = .text:0x803C338C; // type:function size:0x84 +fn_803C3410 = .text:0x803C3410; // type:function size:0x2C +fn_803C343C = .text:0x803C343C; // type:function size:0x148 +fn_803C3584 = .text:0x803C3584; // type:function size:0x170 +fn_803C36F4 = .text:0x803C36F4; // type:function size:0x2C +fn_803C3720 = .text:0x803C3720; // type:function size:0x84 +fn_803C37A4 = .text:0x803C37A4; // type:function size:0x2C +fn_803C37D0 = .text:0x803C37D0; // type:function size:0x68 +fn_803C3838 = .text:0x803C3838; // type:function size:0x2C +fn_803C3864 = .text:0x803C3864; // type:function size:0x58 +fn_803C38BC = .text:0x803C38BC; // type:function size:0x160 +fn_803C3A1C = .text:0x803C3A1C; // type:function size:0x28 +fn_803C3A44 = .text:0x803C3A44; // type:function size:0x5C +fn_803C3AA0 = .text:0x803C3AA0; // type:function size:0x60 +fn_803C3B00 = .text:0x803C3B00; // type:function size:0x68 +fn_803C3B68 = .text:0x803C3B68; // type:function size:0x2C +fn_803C3B94 = .text:0x803C3B94; // type:function size:0x68 +fn_803C3BFC = .text:0x803C3BFC; // type:function size:0x2C +fn_803C3C28 = .text:0x803C3C28; // type:function size:0x58 +fn_803C3C80 = .text:0x803C3C80; // type:function size:0x160 +fn_803C3DE0 = .text:0x803C3DE0; // type:function size:0x28 +fn_803C3E08 = .text:0x803C3E08; // type:function size:0x5C +fn_803C3E64 = .text:0x803C3E64; // type:function size:0x60 +fn_803C3EC4 = .text:0x803C3EC4; // type:function size:0x198 +fn_803C405C = .text:0x803C405C; // type:function size:0x5C +fn_803C40B8 = .text:0x803C40B8; // type:function size:0x54 +fn_803C410C = .text:0x803C410C; // type:function size:0x28 +fn_803C4134 = .text:0x803C4134; // type:function size:0x68 +fn_803C419C = .text:0x803C419C; // type:function size:0x114 +fn_803C42B0 = .text:0x803C42B0; // type:function size:0x5C +fn_803C430C = .text:0x803C430C; // type:function size:0x5C +fn_803C4368 = .text:0x803C4368; // type:function size:0x54 +fn_803C43BC = .text:0x803C43BC; // type:function size:0x178 +fn_803C4534 = .text:0x803C4534; // type:function size:0x5C +fn_803C4590 = .text:0x803C4590; // type:function size:0x54 +fn_803C45E4 = .text:0x803C45E4; // type:function size:0x28 +fn_803C460C = .text:0x803C460C; // type:function size:0x60 +fn_803C466C = .text:0x803C466C; // type:function size:0x5C +fn_803C46C8 = .text:0x803C46C8; // type:function size:0x110 +fn_803C47D8 = .text:0x803C47D8; // type:function size:0x50 +fn_803C4828 = .text:0x803C4828; // type:function size:0x5C +fn_803C4884 = .text:0x803C4884; // type:function size:0x54 +fn_803C48D8 = .text:0x803C48D8; // type:function size:0x198 +fn_803C4A70 = .text:0x803C4A70; // type:function size:0x5C +fn_803C4ACC = .text:0x803C4ACC; // type:function size:0x54 +fn_803C4B20 = .text:0x803C4B20; // type:function size:0x28 +fn_803C4B48 = .text:0x803C4B48; // type:function size:0x68 +fn_803C4BB0 = .text:0x803C4BB0; // type:function size:0x114 +fn_803C4CC4 = .text:0x803C4CC4; // type:function size:0x5C +fn_803C4D20 = .text:0x803C4D20; // type:function size:0x5C +fn_803C4D7C = .text:0x803C4D7C; // type:function size:0x54 +fn_803C4DD0 = .text:0x803C4DD0; // type:function size:0x170 +fn_803C4F40 = .text:0x803C4F40; // type:function size:0x80 +fn_803C4FC0 = .text:0x803C4FC0; // type:function size:0x58 +fn_803C5018 = .text:0x803C5018; // type:function size:0x58 +fn_803C5070 = .text:0x803C5070; // type:function size:0x80 +fn_803C50F0 = .text:0x803C50F0; // type:function size:0x80 +fn_803C5170 = .text:0x803C5170; // type:function size:0x58 +fn_803C51C8 = .text:0x803C51C8; // type:function size:0x54 +fn_803C521C = .text:0x803C521C; // type:function size:0x5C +fn_803C5278 = .text:0x803C5278; // type:function size:0x6C +fn_803C52E4 = .text:0x803C52E4; // type:function size:0x28 +fn_803C530C = .text:0x803C530C; // type:function size:0x8 +fn_803C5314 = .text:0x803C5314; // type:function size:0x3C +fn_803C5350 = .text:0x803C5350; // type:function size:0x68 +fn_803C53B8 = .text:0x803C53B8; // type:function size:0x50 +fn_803C5408 = .text:0x803C5408; // type:function size:0x30 +fn_803C5438 = .text:0x803C5438; // type:function size:0x30 +fn_803C5468 = .text:0x803C5468; // type:function size:0x40 +fn_803C54A8 = .text:0x803C54A8; // type:function size:0xD8 +fn_803C5580 = .text:0x803C5580; // type:function size:0x138 +fn_803C56B8 = .text:0x803C56B8; // type:function size:0x64 +fn_803C571C = .text:0x803C571C; // type:function size:0x50 +fn_803C576C = .text:0x803C576C; // type:function size:0x8 +fn_803C5774 = .text:0x803C5774; // type:function size:0x48 +fn_803C57BC = .text:0x803C57BC; // type:function size:0x1F8 +fn_803C59B4 = .text:0x803C59B4; // type:function size:0x48 +fn_803C59FC = .text:0x803C59FC; // type:function size:0x24 +fn_803C5A20 = .text:0x803C5A20; // type:function size:0x3C +fn_803C5A5C = .text:0x803C5A5C; // type:function size:0x60 +fn_803C5ABC = .text:0x803C5ABC; // type:function size:0x4 +fn_803C5AC0 = .text:0x803C5AC0; // type:function size:0x90 +fn_803C5B50 = .text:0x803C5B50; // type:function size:0x4 +fn_803C5B54 = .text:0x803C5B54; // type:function size:0x40 +fn_803C5B94 = .text:0x803C5B94; // type:function size:0x8C +fn_803C5C20 = .text:0x803C5C20; // type:function size:0x8 +fn_803C5C28 = .text:0x803C5C28; // type:function size:0x2C +fn_803C5C54 = .text:0x803C5C54; // type:function size:0x58 +fn_803C5CAC = .text:0x803C5CAC; // type:function size:0x28 +fn_803C5CD4 = .text:0x803C5CD4; // type:function size:0x68 +fn_803C5D3C = .text:0x803C5D3C; // type:function size:0x4 +fn_803C5D40 = .text:0x803C5D40; // type:function size:0x3C +fn_803C5D7C = .text:0x803C5D7C; // type:function size:0x10 +fn_803C5D8C = .text:0x803C5D8C; // type:function size:0x4 +fn_803C5D90 = .text:0x803C5D90; // type:function size:0x7C +fn_803C5E0C = .text:0x803C5E0C; // type:function size:0x8 +fn_803C5E14 = .text:0x803C5E14; // type:function size:0xB0 +fn_803C5EC4 = .text:0x803C5EC4; // type:function size:0x40 +fn_803C5F04 = .text:0x803C5F04; // type:function size:0x104 +fn_803C6008 = .text:0x803C6008; // type:function size:0x58 +fn_803C6060 = .text:0x803C6060; // type:function size:0x1B4 +fn_803C6214 = .text:0x803C6214; // type:function size:0xCC +fn_803C62E0 = .text:0x803C62E0; // type:function size:0x100 +fn_803C63E0 = .text:0x803C63E0; // type:function size:0x6C +fn_803C644C = .text:0x803C644C; // type:function size:0x68 +fn_803C64B4 = .text:0x803C64B4; // type:function size:0x2C +fn_803C64E0 = .text:0x803C64E0; // type:function size:0x134 +fn_803C6614 = .text:0x803C6614; // type:function size:0x4 +fn_803C6618 = .text:0x803C6618; // type:function size:0x198 +fn_803C67B0 = .text:0x803C67B0; // type:function size:0x5C +fn_803C680C = .text:0x803C680C; // type:function size:0x10 +fn_803C681C = .text:0x803C681C; // type:function size:0x54 +fn_803C6870 = .text:0x803C6870; // type:function size:0x28 +fn_803C6898 = .text:0x803C6898; // type:function size:0x68 +fn_803C6900 = .text:0x803C6900; // type:function size:0x5C +fn_803C695C = .text:0x803C695C; // type:function size:0x114 +fn_803C6A70 = .text:0x803C6A70; // type:function size:0x5C +fn_803C6ACC = .text:0x803C6ACC; // type:function size:0x5C +fn_803C6B28 = .text:0x803C6B28; // type:function size:0x54 +fn_803C6B7C = .text:0x803C6B7C; // type:function size:0x8 +fn_803C6B84 = .text:0x803C6B84; // type:function size:0x8 +fn_803C6B8C = .text:0x803C6B8C; // type:function size:0x8 +fn_803C6B94 = .text:0x803C6B94; // type:function size:0x8 +fn_803C6B9C = .text:0x803C6B9C; // type:function size:0x8 +fn_803C6BA4 = .text:0x803C6BA4; // type:function size:0x8 +fn_803C6BAC = .text:0x803C6BAC; // type:function size:0x8 +fn_803C6BB4 = .text:0x803C6BB4; // type:function size:0x8 +fn_803C6BBC = .text:0x803C6BBC; // type:function size:0x8 +fn_803C6BC4 = .text:0x803C6BC4; // type:function size:0x8 +fn_803C6BCC = .text:0x803C6BCC; // type:function size:0x8 +fn_803C6BD4 = .text:0x803C6BD4; // type:function size:0x8 +fn_803C6BDC = .text:0x803C6BDC; // type:function size:0x8 +fn_803C6BE4 = .text:0x803C6BE4; // type:function size:0x8 +fn_803C6BEC = .text:0x803C6BEC; // type:function size:0x14 +fn_803C6C00 = .text:0x803C6C00; // type:function size:0x14 +fn_803C6C14 = .text:0x803C6C14; // type:function size:0x8 +fn_803C6C1C = .text:0x803C6C1C; // type:function size:0x8 +fn_803C6C24 = .text:0x803C6C24; // type:function size:0x8 +fn_803C6C2C = .text:0x803C6C2C; // type:function size:0x8 +fn_803C6C34 = .text:0x803C6C34; // type:function size:0x8 +fn_803C6C3C = .text:0x803C6C3C; // type:function size:0x8 +fn_803C6C44 = .text:0x803C6C44; // type:function size:0x8 +fn_803C6C4C = .text:0x803C6C4C; // type:function size:0x8 +fn_803C6C54 = .text:0x803C6C54; // type:function size:0x8 +fn_803C6C5C = .text:0x803C6C5C; // type:function size:0x8 +fn_803C6C64 = .text:0x803C6C64; // type:function size:0x8 +fn_803C6C6C = .text:0x803C6C6C; // type:function size:0x8 +fn_803C6C74 = .text:0x803C6C74; // type:function size:0x14 +fn_803C6C88 = .text:0x803C6C88; // type:function size:0x14 +fn_803C6C9C = .text:0x803C6C9C; // type:function size:0x14 +fn_803C6CB0 = .text:0x803C6CB0; // type:function size:0x14 +fn_803C6CC4 = .text:0x803C6CC4; // type:function size:0x14 +fn_803C6CD8 = .text:0x803C6CD8; // type:function size:0x14 +fn_803C6CEC = .text:0x803C6CEC; // type:function size:0x14 +fn_803C6D00 = .text:0x803C6D00; // type:function size:0x14 +fn_803C6D14 = .text:0x803C6D14; // type:function size:0x14 +fn_803C6D28 = .text:0x803C6D28; // type:function size:0x14 +fn_803C6D3C = .text:0x803C6D3C; // type:function size:0x14 +fn_803C6D50 = .text:0x803C6D50; // type:function size:0x14 +fn_803C6D64 = .text:0x803C6D64; // type:function size:0x14 +fn_803C6D78 = .text:0x803C6D78; // type:function size:0x14 +fn_803C6D8C = .text:0x803C6D8C; // type:function size:0x14 +fn_803C6DA0 = .text:0x803C6DA0; // type:function size:0x8 +fn_803C6DA8 = .text:0x803C6DA8; // type:function size:0x8 +fn_803C6DB0 = .text:0x803C6DB0; // type:function size:0x8 +fn_803C6DB8 = .text:0x803C6DB8; // type:function size:0x8 +fn_803C6DC0 = .text:0x803C6DC0; // type:function size:0x8 +fn_803C6DC8 = .text:0x803C6DC8; // type:function size:0x154 +fn_803C6F1C = .text:0x803C6F1C; // type:function size:0x7C +fn_803C6F98 = .text:0x803C6F98; // type:function size:0x134 +fn_803C70CC = .text:0x803C70CC; // type:function size:0x4 +fn_803C70D0 = .text:0x803C70D0; // type:function size:0x14 +fn_803C70E4 = .text:0x803C70E4; // type:function size:0x14 +fn_803C70F8 = .text:0x803C70F8; // type:function size:0x14 +fn_803C710C = .text:0x803C710C; // type:function size:0x8 +fn_803C7114 = .text:0x803C7114; // type:function size:0x8 +fn_803C711C = .text:0x803C711C; // type:function size:0x1B4 +fn_803C72D0 = .text:0x803C72D0; // type:function size:0x58 +fn_803C7328 = .text:0x803C7328; // type:function size:0x58 +fn_803C7380 = .text:0x803C7380; // type:function size:0x58 +fn_803C73D8 = .text:0x803C73D8; // type:function size:0x80 +fn_803C7458 = .text:0x803C7458; // type:function size:0x80 +fn_803C74D8 = .text:0x803C74D8; // type:function size:0x58 +fn_803C7530 = .text:0x803C7530; // type:function size:0x54 +fn_803C7584 = .text:0x803C7584; // type:function size:0x5C +fn_803C75E0 = .text:0x803C75E0; // type:function size:0x6C +fn_803C764C = .text:0x803C764C; // type:function size:0x28 +fn_803C7674 = .text:0x803C7674; // type:function size:0x8 +fn_803C767C = .text:0x803C767C; // type:function size:0x3C +fn_803C76B8 = .text:0x803C76B8; // type:function size:0x58 +fn_803C7710 = .text:0x803C7710; // type:function size:0x58 +fn_803C7768 = .text:0x803C7768; // type:function size:0x80 +fn_803C77E8 = .text:0x803C77E8; // type:function size:0x80 +fn_803C7868 = .text:0x803C7868; // type:function size:0x58 +fn_803C78C0 = .text:0x803C78C0; // type:function size:0x54 +fn_803C7914 = .text:0x803C7914; // type:function size:0x5C +fn_803C7970 = .text:0x803C7970; // type:function size:0x6C +fn_803C79DC = .text:0x803C79DC; // type:function size:0x28 +fn_803C7A04 = .text:0x803C7A04; // type:function size:0x80 +fn_803C7A84 = .text:0x803C7A84; // type:function size:0x8 +fn_803C7A8C = .text:0x803C7A8C; // type:function size:0x3C +fn_803C7AC8 = .text:0x803C7AC8; // type:function size:0x50 +fn_803C7B18 = .text:0x803C7B18; // type:function size:0x50 +fn_803C7B68 = .text:0x803C7B68; // type:function size:0x30 +fn_803C7B98 = .text:0x803C7B98; // type:function size:0x30 +fn_803C7BC8 = .text:0x803C7BC8; // type:function size:0x40 +fn_803C7C08 = .text:0x803C7C08; // type:function size:0x50 +fn_803C7C58 = .text:0x803C7C58; // type:function size:0x30 +fn_803C7C88 = .text:0x803C7C88; // type:function size:0x30 +fn_803C7CB8 = .text:0x803C7CB8; // type:function size:0x40 +fn_803C7CF8 = .text:0x803C7CF8; // type:function size:0xF0 +fn_803C7DE8 = .text:0x803C7DE8; // type:function size:0x36C +fn_803C8154 = .text:0x803C8154; // type:function size:0x40 +fn_803C8194 = .text:0x803C8194; // type:function size:0x34 +fn_803C81C8 = .text:0x803C81C8; // type:function size:0x4 +fn_803C81CC = .text:0x803C81CC; // type:function size:0x1FC +fn_803C83C8 = .text:0x803C83C8; // type:function size:0x48 +fn_803C8410 = .text:0x803C8410; // type:function size:0x24 +fn_803C8434 = .text:0x803C8434; // type:function size:0x3C +fn_803C8470 = .text:0x803C8470; // type:function size:0x60 +fn_803C84D0 = .text:0x803C84D0; // type:function size:0x4 +fn_803C84D4 = .text:0x803C84D4; // type:function size:0x90 +fn_803C8564 = .text:0x803C8564; // type:function size:0x4 +fn_803C8568 = .text:0x803C8568; // type:function size:0x48 +fn_803C85B0 = .text:0x803C85B0; // type:function size:0x24 +fn_803C85D4 = .text:0x803C85D4; // type:function size:0x3C +fn_803C8610 = .text:0x803C8610; // type:function size:0x60 +fn_803C8670 = .text:0x803C8670; // type:function size:0x4 +fn_803C8674 = .text:0x803C8674; // type:function size:0x90 +fn_803C8704 = .text:0x803C8704; // type:function size:0x4 +fn_803C8708 = .text:0x803C8708; // type:function size:0x40 +fn_803C8748 = .text:0x803C8748; // type:function size:0x8C +fn_803C87D4 = .text:0x803C87D4; // type:function size:0x8 +fn_803C87DC = .text:0x803C87DC; // type:function size:0x2C +fn_803C8808 = .text:0x803C8808; // type:function size:0x58 +fn_803C8860 = .text:0x803C8860; // type:function size:0x28 +fn_803C8888 = .text:0x803C8888; // type:function size:0x68 +fn_803C88F0 = .text:0x803C88F0; // type:function size:0x48 +fn_803C8938 = .text:0x803C8938; // type:function size:0x8 +fn_803C8940 = .text:0x803C8940; // type:function size:0x24 +fn_803C8964 = .text:0x803C8964; // type:function size:0x3C +fn_803C89A0 = .text:0x803C89A0; // type:function size:0x60 +fn_803C8A00 = .text:0x803C8A00; // type:function size:0x4 +fn_803C8A04 = .text:0x803C8A04; // type:function size:0x90 +fn_803C8A94 = .text:0x803C8A94; // type:function size:0x4 +fn_803C8A98 = .text:0x803C8A98; // type:function size:0x40 +fn_803C8AD8 = .text:0x803C8AD8; // type:function size:0x8C +fn_803C8B64 = .text:0x803C8B64; // type:function size:0x8 +fn_803C8B6C = .text:0x803C8B6C; // type:function size:0x2C +fn_803C8B98 = .text:0x803C8B98; // type:function size:0x58 +fn_803C8BF0 = .text:0x803C8BF0; // type:function size:0x28 +fn_803C8C18 = .text:0x803C8C18; // type:function size:0x68 +fn_803C8C80 = .text:0x803C8C80; // type:function size:0x68 +fn_803C8CE8 = .text:0x803C8CE8; // type:function size:0x4 +fn_803C8CEC = .text:0x803C8CEC; // type:function size:0x3C +fn_803C8D28 = .text:0x803C8D28; // type:function size:0xCC +fn_803C8DF4 = .text:0x803C8DF4; // type:function size:0x128 +fn_803C8F1C = .text:0x803C8F1C; // type:function size:0x4 +fn_803C8F20 = .text:0x803C8F20; // type:function size:0x78 +fn_803C8F98 = .text:0x803C8F98; // type:function size:0xF0 +fn_803C9088 = .text:0x803C9088; // type:function size:0x58 +fn_803C90E0 = .text:0x803C90E0; // type:function size:0x18C +fn_803C926C = .text:0x803C926C; // type:function size:0x100 +fn_803C936C = .text:0x803C936C; // type:function size:0x6C +fn_803C93D8 = .text:0x803C93D8; // type:function size:0x68 +fn_803C9440 = .text:0x803C9440; // type:function size:0x2C +fn_803C946C = .text:0x803C946C; // type:function size:0x68 +fn_803C94D4 = .text:0x803C94D4; // type:function size:0x2C +fn_803C9500 = .text:0x803C9500; // type:function size:0x68 +fn_803C9568 = .text:0x803C9568; // type:function size:0x134 +fn_803C969C = .text:0x803C969C; // type:function size:0x4 +fn_803C96A0 = .text:0x803C96A0; // type:function size:0x198 +fn_803C9838 = .text:0x803C9838; // type:function size:0x5C +fn_803C9894 = .text:0x803C9894; // type:function size:0x10 +fn_803C98A4 = .text:0x803C98A4; // type:function size:0x54 +fn_803C98F8 = .text:0x803C98F8; // type:function size:0x28 +fn_803C9920 = .text:0x803C9920; // type:function size:0x68 +fn_803C9988 = .text:0x803C9988; // type:function size:0x5C +fn_803C99E4 = .text:0x803C99E4; // type:function size:0x6C +fn_803C9A50 = .text:0x803C9A50; // type:function size:0x114 +fn_803C9B64 = .text:0x803C9B64; // type:function size:0x5C +fn_803C9BC0 = .text:0x803C9BC0; // type:function size:0x5C +fn_803C9C1C = .text:0x803C9C1C; // type:function size:0x54 +fn_803C9C70 = .text:0x803C9C70; // type:function size:0x198 +fn_803C9E08 = .text:0x803C9E08; // type:function size:0x5C +fn_803C9E64 = .text:0x803C9E64; // type:function size:0x10 +fn_803C9E74 = .text:0x803C9E74; // type:function size:0x54 +fn_803C9EC8 = .text:0x803C9EC8; // type:function size:0x28 +fn_803C9EF0 = .text:0x803C9EF0; // type:function size:0x68 +fn_803C9F58 = .text:0x803C9F58; // type:function size:0x5C +fn_803C9FB4 = .text:0x803C9FB4; // type:function size:0x6C +fn_803CA020 = .text:0x803CA020; // type:function size:0x114 +fn_803CA134 = .text:0x803CA134; // type:function size:0x5C +fn_803CA190 = .text:0x803CA190; // type:function size:0x5C +fn_803CA1EC = .text:0x803CA1EC; // type:function size:0x54 +fn_803CA240 = .text:0x803CA240; // type:function size:0x198 +fn_803CA3D8 = .text:0x803CA3D8; // type:function size:0x54 +fn_803CA42C = .text:0x803CA42C; // type:function size:0x28 +fn_803CA454 = .text:0x803CA454; // type:function size:0x68 +fn_803CA4BC = .text:0x803CA4BC; // type:function size:0x8 +fn_803CA4C4 = .text:0x803CA4C4; // type:function size:0x8 +fn_803CA4CC = .text:0x803CA4CC; // type:function size:0x8 +fn_803CA4D4 = .text:0x803CA4D4; // type:function size:0x8 +fn_803CA4DC = .text:0x803CA4DC; // type:function size:0x8 +fn_803CA4E4 = .text:0x803CA4E4; // type:function size:0x8 +fn_803CA4EC = .text:0x803CA4EC; // type:function size:0x8 +fn_803CA4F4 = .text:0x803CA4F4; // type:function size:0x8 +fn_803CA4FC = .text:0x803CA4FC; // type:function size:0x8 +fn_803CA504 = .text:0x803CA504; // type:function size:0x8 +fn_803CA50C = .text:0x803CA50C; // type:function size:0x8 +fn_803CA514 = .text:0x803CA514; // type:function size:0x8 +fn_803CA51C = .text:0x803CA51C; // type:function size:0x8 +fn_803CA524 = .text:0x803CA524; // type:function size:0x8 +fn_803CA52C = .text:0x803CA52C; // type:function size:0x14 +fn_803CA540 = .text:0x803CA540; // type:function size:0x14 +fn_803CA554 = .text:0x803CA554; // type:function size:0x8 +fn_803CA55C = .text:0x803CA55C; // type:function size:0x8 +fn_803CA564 = .text:0x803CA564; // type:function size:0x8 +fn_803CA56C = .text:0x803CA56C; // type:function size:0x8 +fn_803CA574 = .text:0x803CA574; // type:function size:0x8 +fn_803CA57C = .text:0x803CA57C; // type:function size:0x8 +fn_803CA584 = .text:0x803CA584; // type:function size:0x8 +fn_803CA58C = .text:0x803CA58C; // type:function size:0x8 +fn_803CA594 = .text:0x803CA594; // type:function size:0x8 +fn_803CA59C = .text:0x803CA59C; // type:function size:0x8 +fn_803CA5A4 = .text:0x803CA5A4; // type:function size:0x8 +fn_803CA5AC = .text:0x803CA5AC; // type:function size:0x14 +fn_803CA5C0 = .text:0x803CA5C0; // type:function size:0x14 +fn_803CA5D4 = .text:0x803CA5D4; // type:function size:0x14 +fn_803CA5E8 = .text:0x803CA5E8; // type:function size:0x14 +fn_803CA5FC = .text:0x803CA5FC; // type:function size:0x14 +fn_803CA610 = .text:0x803CA610; // type:function size:0x14 +fn_803CA624 = .text:0x803CA624; // type:function size:0x14 +fn_803CA638 = .text:0x803CA638; // type:function size:0x14 +fn_803CA64C = .text:0x803CA64C; // type:function size:0x14 +fn_803CA660 = .text:0x803CA660; // type:function size:0x14 +fn_803CA674 = .text:0x803CA674; // type:function size:0x14 +fn_803CA688 = .text:0x803CA688; // type:function size:0x14 +fn_803CA69C = .text:0x803CA69C; // type:function size:0x14 +fn_803CA6B0 = .text:0x803CA6B0; // type:function size:0x14 +fn_803CA6C4 = .text:0x803CA6C4; // type:function size:0x14 +fn_803CA6D8 = .text:0x803CA6D8; // type:function size:0x8 +fn_803CA6E0 = .text:0x803CA6E0; // type:function size:0x8 +fn_803CA6E8 = .text:0x803CA6E8; // type:function size:0x8 +fn_803CA6F0 = .text:0x803CA6F0; // type:function size:0x8 +fn_803CA6F8 = .text:0x803CA6F8; // type:function size:0x8 +fn_803CA700 = .text:0x803CA700; // type:function size:0x4C +fn_803CA74C = .text:0x803CA74C; // type:function size:0x48 +fn_803CA794 = .text:0x803CA794; // type:function size:0x4C +fn_803CA7E0 = .text:0x803CA7E0; // type:function size:0x34 +fn_803CA814 = .text:0x803CA814; // type:function size:0x48 +fn_803CA85C = .text:0x803CA85C; // type:function size:0x4C +fn_803CA8A8 = .text:0x803CA8A8; // type:function size:0x4C +fn_803CA8F4 = .text:0x803CA8F4; // type:function size:0x68 +fn_803CA95C = .text:0x803CA95C; // type:function size:0x11C +fn_803CAA78 = .text:0x803CAA78; // type:function size:0x80 +fn_803CAAF8 = .text:0x803CAAF8; // type:function size:0x68 +fn_803CAB60 = .text:0x803CAB60; // type:function size:0x114 +fn_803CAC74 = .text:0x803CAC74; // type:function size:0x5C +fn_803CACD0 = .text:0x803CACD0; // type:function size:0x5C +__dt__7UIColorFv = .text:0x803CAD2C; // type:function size:0x58 +fn_803CAD84 = .text:0x803CAD84; // type:function size:0x84 +fn_803CAE08 = .text:0x803CAE08; // type:function size:0x8 +fn_803CAE10 = .text:0x803CAE10; // type:function size:0x4 +fn_803CAE14 = .text:0x803CAE14; // type:function size:0x5C +fn_803CAE70 = .text:0x803CAE70; // type:function size:0x7C +fn_803CAEEC = .text:0x803CAEEC; // type:function size:0x40 +fn_803CAF2C = .text:0x803CAF2C; // type:function size:0x104 +fn_803CB030 = .text:0x803CB030; // type:function size:0x38 +fn_803CB068 = .text:0x803CB068; // type:function size:0x8 +fn_803CB070 = .text:0x803CB070; // type:function size:0x60 +fn_803CB0D0 = .text:0x803CB0D0; // type:function size:0x8 +fn_803CB0D8 = .text:0x803CB0D8; // type:function size:0xB4 +fn_803CB18C = .text:0x803CB18C; // type:function size:0x48 +StaticClassName__7UIColorFv = .text:0x803CB1D4; // type:function size:0x4C +fn_803CB220 = .text:0x803CB220; // type:function size:0x48 +fn_803CB268 = .text:0x803CB268; // type:function size:0x114 +fn_803CB37C = .text:0x803CB37C; // type:function size:0xE4 +fn_803CB460 = .text:0x803CB460; // type:function size:0xC0 +fn_803CB520 = .text:0x803CB520; // type:function size:0x60 +fn_803CB580 = .text:0x803CB580; // type:function size:0x138 +fn_803CB6B8 = .text:0x803CB6B8; // type:function size:0x4 +fn_803CB6BC = .text:0x803CB6BC; // type:function size:0x14 +fn_803CB6D0 = .text:0x803CB6D0; // type:function size:0x14 +fn_803CB6E4 = .text:0x803CB6E4; // type:function size:0x8 +fn_803CB6EC = .text:0x803CB6EC; // type:function size:0x8 +fn_803CB6F4 = .text:0x803CB6F4; // type:function size:0x8 +fn_803CB6FC = .text:0x803CB6FC; // type:function size:0x8 +fn_803CB704 = .text:0x803CB704; // type:function size:0x8 +fn_803CB70C = .text:0x803CB70C; // type:function size:0x8 +fn_803CB714 = .text:0x803CB714; // type:function size:0x8 +fn_803CB71C = .text:0x803CB71C; // type:function size:0x8 +fn_803CB724 = .text:0x803CB724; // type:function size:0x14 +fn_803CB738 = .text:0x803CB738; // type:function size:0x14 +fn_803CB74C = .text:0x803CB74C; // type:function size:0x14 +fn_803CB760 = .text:0x803CB760; // type:function size:0x14 +fn_803CB774 = .text:0x803CB774; // type:function size:0x14 +fn_803CB788 = .text:0x803CB788; // type:function size:0x14 +fn_803CB79C = .text:0x803CB79C; // type:function size:0x14 +fn_803CB7B0 = .text:0x803CB7B0; // type:function size:0x14 +fn_803CB7C4 = .text:0x803CB7C4; // type:function size:0x14 +fn_803CB7D8 = .text:0x803CB7D8; // type:function size:0x14 +fn_803CB7EC = .text:0x803CB7EC; // type:function size:0x14 +fn_803CB800 = .text:0x803CB800; // type:function size:0x14 +fn_803CB814 = .text:0x803CB814; // type:function size:0x14 +fn_803CB828 = .text:0x803CB828; // type:function size:0x8 +fn_803CB830 = .text:0x803CB830; // type:function size:0x8 +fn_803CB838 = .text:0x803CB838; // type:function size:0x8 +fn_803CB840 = .text:0x803CB840; // type:function size:0x8 +fn_803CB848 = .text:0x803CB848; // type:function size:0x8 +fn_803CB850 = .text:0x803CB850; // type:function size:0x8 +fn_803CB858 = .text:0x803CB858; // type:function size:0x8 +fn_803CB860 = .text:0x803CB860; // type:function size:0x8 +fn_803CB868 = .text:0x803CB868; // type:function size:0x8 +fn_803CB870 = .text:0x803CB870; // type:function size:0x8 +fn_803CB878 = .text:0x803CB878; // type:function size:0x8 +fn_803CB880 = .text:0x803CB880; // type:function size:0x8 +fn_803CB888 = .text:0x803CB888; // type:function size:0x8 +fn_803CB890 = .text:0x803CB890; // type:function size:0x8 +fn_803CB898 = .text:0x803CB898; // type:function size:0x4 +fn_803CB89C = .text:0x803CB89C; // type:function size:0x34 +fn_803CB8D0 = .text:0x803CB8D0; // type:function size:0x44 +fn_803CB914 = .text:0x803CB914; // type:function size:0x4C +fn_803CB960 = .text:0x803CB960; // type:function size:0x4 +fn_803CB964 = .text:0x803CB964; // type:function size:0x5D8 +fn_803CBF3C = .text:0x803CBF3C; // type:function size:0x6C +fn_803CBFA8 = .text:0x803CBFA8; // type:function size:0x40 +fn_803CBFE8 = .text:0x803CBFE8; // type:function size:0x44 +fn_803CC02C = .text:0x803CC02C; // type:function size:0x54 +fn_803CC080 = .text:0x803CC080; // type:function size:0xF4 +fn_803CC174 = .text:0x803CC174; // type:function size:0x58 +fn_803CC1CC = .text:0x803CC1CC; // type:function size:0x58 +fn_803CC224 = .text:0x803CC224; // type:function size:0x60 +fn_803CC284 = .text:0x803CC284; // type:function size:0x58 +fn_803CC2DC = .text:0x803CC2DC; // type:function size:0x80 +fn_803CC35C = .text:0x803CC35C; // type:function size:0x6C +fn_803CC3C8 = .text:0x803CC3C8; // type:function size:0x40 +fn_803CC408 = .text:0x803CC408; // type:function size:0x44 +fn_803CC44C = .text:0x803CC44C; // type:function size:0x54 +fn_803CC4A0 = .text:0x803CC4A0; // type:function size:0x6C +fn_803CC50C = .text:0x803CC50C; // type:function size:0x40 +fn_803CC54C = .text:0x803CC54C; // type:function size:0x44 +fn_803CC590 = .text:0x803CC590; // type:function size:0x54 +fn_803CC5E4 = .text:0x803CC5E4; // type:function size:0x6C +fn_803CC650 = .text:0x803CC650; // type:function size:0x40 +fn_803CC690 = .text:0x803CC690; // type:function size:0x44 +fn_803CC6D4 = .text:0x803CC6D4; // type:function size:0x54 +fn_803CC728 = .text:0x803CC728; // type:function size:0x6C +fn_803CC794 = .text:0x803CC794; // type:function size:0x40 +fn_803CC7D4 = .text:0x803CC7D4; // type:function size:0x44 +fn_803CC818 = .text:0x803CC818; // type:function size:0x54 +fn_803CC86C = .text:0x803CC86C; // type:function size:0x6C +fn_803CC8D8 = .text:0x803CC8D8; // type:function size:0x40 +fn_803CC918 = .text:0x803CC918; // type:function size:0x44 +fn_803CC95C = .text:0x803CC95C; // type:function size:0x54 +fn_803CC9B0 = .text:0x803CC9B0; // type:function size:0x6C +fn_803CCA1C = .text:0x803CCA1C; // type:function size:0x40 +fn_803CCA5C = .text:0x803CCA5C; // type:function size:0x44 +fn_803CCAA0 = .text:0x803CCAA0; // type:function size:0x54 +fn_803CCAF4 = .text:0x803CCAF4; // type:function size:0x6C +fn_803CCB60 = .text:0x803CCB60; // type:function size:0x40 +fn_803CCBA0 = .text:0x803CCBA0; // type:function size:0x44 +fn_803CCBE4 = .text:0x803CCBE4; // type:function size:0x54 +fn_803CCC38 = .text:0x803CCC38; // type:function size:0x6C +fn_803CCCA4 = .text:0x803CCCA4; // type:function size:0x40 +fn_803CCCE4 = .text:0x803CCCE4; // type:function size:0x44 +fn_803CCD28 = .text:0x803CCD28; // type:function size:0x54 +fn_803CCD7C = .text:0x803CCD7C; // type:function size:0x6C +fn_803CCDE8 = .text:0x803CCDE8; // type:function size:0x40 +fn_803CCE28 = .text:0x803CCE28; // type:function size:0x44 +fn_803CCE6C = .text:0x803CCE6C; // type:function size:0x54 +fn_803CCEC0 = .text:0x803CCEC0; // type:function size:0x6C +fn_803CCF2C = .text:0x803CCF2C; // type:function size:0x40 +fn_803CCF6C = .text:0x803CCF6C; // type:function size:0x44 +fn_803CCFB0 = .text:0x803CCFB0; // type:function size:0x54 +fn_803CD004 = .text:0x803CD004; // type:function size:0x6C +fn_803CD070 = .text:0x803CD070; // type:function size:0x40 +fn_803CD0B0 = .text:0x803CD0B0; // type:function size:0x44 +fn_803CD0F4 = .text:0x803CD0F4; // type:function size:0x54 +fn_803CD148 = .text:0x803CD148; // type:function size:0x6C +fn_803CD1B4 = .text:0x803CD1B4; // type:function size:0x40 +fn_803CD1F4 = .text:0x803CD1F4; // type:function size:0x44 +fn_803CD238 = .text:0x803CD238; // type:function size:0x54 +fn_803CD28C = .text:0x803CD28C; // type:function size:0x80 +fn_803CD30C = .text:0x803CD30C; // type:function size:0x84 +fn_803CD390 = .text:0x803CD390; // type:function size:0x80 +fn_803CD410 = .text:0x803CD410; // type:function size:0x80 +fn_803CD490 = .text:0x803CD490; // type:function size:0x80 +fn_803CD510 = .text:0x803CD510; // type:function size:0x80 +fn_803CD590 = .text:0x803CD590; // type:function size:0x80 +fn_803CD610 = .text:0x803CD610; // type:function size:0x8 +fn_803CD618 = .text:0x803CD618; // type:function size:0x8 +fn_803CD620 = .text:0x803CD620; // type:function size:0x68 +fn_803CD688 = .text:0x803CD688; // type:function size:0x30 +fn_803CD6B8 = .text:0x803CD6B8; // type:function size:0x30 +fn_803CD6E8 = .text:0x803CD6E8; // type:function size:0x60 +fn_803CD748 = .text:0x803CD748; // type:function size:0x68 +fn_803CD7B0 = .text:0x803CD7B0; // type:function size:0x68 +fn_803CD818 = .text:0x803CD818; // type:function size:0x68 +fn_803CD880 = .text:0x803CD880; // type:function size:0x68 +fn_803CD8E8 = .text:0x803CD8E8; // type:function size:0x68 +fn_803CD950 = .text:0x803CD950; // type:function size:0x68 +fn_803CD9B8 = .text:0x803CD9B8; // type:function size:0x68 +fn_803CDA20 = .text:0x803CDA20; // type:function size:0x68 +fn_803CDA88 = .text:0x803CDA88; // type:function size:0x68 +fn_803CDAF0 = .text:0x803CDAF0; // type:function size:0x68 +fn_803CDB58 = .text:0x803CDB58; // type:function size:0x68 +fn_803CDBC0 = .text:0x803CDBC0; // type:function size:0x68 +fn_803CDC28 = .text:0x803CDC28; // type:function size:0x68 +fn_803CDC90 = .text:0x803CDC90; // type:function size:0x68 +fn_803CDCF8 = .text:0x803CDCF8; // type:function size:0x6C +fn_803CDD64 = .text:0x803CDD64; // type:function size:0x68 +fn_803CDDCC = .text:0x803CDDCC; // type:function size:0x68 +fn_803CDE34 = .text:0x803CDE34; // type:function size:0x68 +fn_803CDE9C = .text:0x803CDE9C; // type:function size:0x68 +fn_803CDF04 = .text:0x803CDF04; // type:function size:0x68 +fn_803CDF6C = .text:0x803CDF6C; // type:function size:0x10 +__ct__11MergeFilterFv = .text:0x803CDF7C; // type:function size:0x1C +fn_803CDF98 = .text:0x803CDF98; // type:function size:0x2E8 +fn_803CE280 = .text:0x803CE280; // type:function size:0x2C0 +fn_803CE540 = .text:0x803CE540; // type:function size:0x70 +fn_803CE5B0 = .text:0x803CE5B0; // type:function size:0xBC +fn_803CE66C = .text:0x803CE66C; // type:function size:0x6C +fn_803CE6D8 = .text:0x803CE6D8; // type:function size:0x19C +fn_803CE874 = .text:0x803CE874; // type:function size:0x4 +fn_803CE878 = .text:0x803CE878; // type:function size:0x78 +fn_803CE8F0 = .text:0x803CE8F0; // type:function size:0x384 +fn_803CEC74 = .text:0x803CEC74; // type:function size:0xA0 +fn_803CED14 = .text:0x803CED14; // type:function size:0x14 +fn_803CED28 = .text:0x803CED28; // type:function size:0xA0 +fn_803CEDC8 = .text:0x803CEDC8; // type:function size:0x7C +fn_803CEE44 = .text:0x803CEE44; // type:function size:0x98 +fn_803CEEDC = .text:0x803CEEDC; // type:function size:0xA8 +fn_803CEF84 = .text:0x803CEF84; // type:function size:0x438 +fn_803CF3BC = .text:0x803CF3BC; // type:function size:0x8 +fn_803CF3C4 = .text:0x803CF3C4; // type:function size:0x104 +fn_803CF4C8 = .text:0x803CF4C8; // type:function size:0x8 +fn_803CF4D0 = .text:0x803CF4D0; // type:function size:0x30 +fn_803CF500 = .text:0x803CF500; // type:function size:0x44 +fn_803CF544 = .text:0x803CF544; // type:function size:0x30 +fn_803CF574 = .text:0x803CF574; // type:function size:0xE4 +fn_803CF658 = .text:0x803CF658; // type:function size:0x8 +fn_803CF660 = .text:0x803CF660; // type:function size:0x70 +fn_803CF6D0 = .text:0x803CF6D0; // type:function size:0x64 +fn_803CF734 = .text:0x803CF734; // type:function size:0x10 +fn_803CF744 = .text:0x803CF744; // type:function size:0x50 +fn_803CF794 = .text:0x803CF794; // type:function size:0xC +fn_803CF7A0 = .text:0x803CF7A0; // type:function size:0xCC +fn_803CF86C = .text:0x803CF86C; // type:function size:0x324 +fn_803CFB90 = .text:0x803CFB90; // type:function size:0x5C +fn_803CFBEC = .text:0x803CFBEC; // type:function size:0x8 +fn_803CFBF4 = .text:0x803CFBF4; // type:function size:0x60 +fn_803CFC54 = .text:0x803CFC54; // type:function size:0x80 +fn_803CFCD4 = .text:0x803CFCD4; // type:function size:0x80 +fn_803CFD54 = .text:0x803CFD54; // type:function size:0x4D0 +fn_803D0224 = .text:0x803D0224; // type:function size:0x2C +fn_803D0250 = .text:0x803D0250; // type:function size:0xC +fn_803D025C = .text:0x803D025C; // type:function size:0x30 +fn_803D028C = .text:0x803D028C; // type:function size:0x2C +fn_803D02B8 = .text:0x803D02B8; // type:function size:0x30 +fn_803D02E8 = .text:0x803D02E8; // type:function size:0x2C +fn_803D0314 = .text:0x803D0314; // type:function size:0x30 +fn_803D0344 = .text:0x803D0344; // type:function size:0x2C +fn_803D0370 = .text:0x803D0370; // type:function size:0x30 +fn_803D03A0 = .text:0x803D03A0; // type:function size:0xA4 +fn_803D0444 = .text:0x803D0444; // type:function size:0x50 +fn_803D0494 = .text:0x803D0494; // type:function size:0x8 +fn_803D049C = .text:0x803D049C; // type:function size:0xA0 +fn_803D053C = .text:0x803D053C; // type:function size:0x7C +fn_803D05B8 = .text:0x803D05B8; // type:function size:0x4 +fn_803D05BC = .text:0x803D05BC; // type:function size:0x5C +fn_803D0618 = .text:0x803D0618; // type:function size:0x8C +fn_803D06A4 = .text:0x803D06A4; // type:function size:0x18C +fn_803D0830 = .text:0x803D0830; // type:function size:0x104 +fn_803D0934 = .text:0x803D0934; // type:function size:0x7C +fn_803D09B0 = .text:0x803D09B0; // type:function size:0x78 +fn_803D0A28 = .text:0x803D0A28; // type:function size:0xB0 +fn_803D0AD8 = .text:0x803D0AD8; // type:function size:0x8 +fn_803D0AE0 = .text:0x803D0AE0; // type:function size:0xC4 +fn_803D0BA4 = .text:0x803D0BA4; // type:function size:0x90 +fn_803D0C34 = .text:0x803D0C34; // type:function size:0x48 +fn_803D0C7C = .text:0x803D0C7C; // type:function size:0x64 +fn_803D0CE0 = .text:0x803D0CE0; // type:function size:0xF8 +fn_803D0DD8 = .text:0x803D0DD8; // type:function size:0xE0 +fn_803D0EB8 = .text:0x803D0EB8; // type:function size:0xB8 +fn_803D0F70 = .text:0x803D0F70; // type:function size:0xB8 +fn_803D1028 = .text:0x803D1028; // type:function size:0x2C +fn_803D1054 = .text:0x803D1054; // type:function size:0x1C +fn_803D1070 = .text:0x803D1070; // type:function size:0xC8 +fn_803D1138 = .text:0x803D1138; // type:function size:0x6C +fn_803D11A4 = .text:0x803D11A4; // type:function size:0x13C +fn_803D12E0 = .text:0x803D12E0; // type:function size:0x594 +fn_803D1874 = .text:0x803D1874; // type:function size:0x4C +fn_803D18C0 = .text:0x803D18C0; // type:function size:0x78 +fn_803D1938 = .text:0x803D1938; // type:function size:0x2C +fn_803D1964 = .text:0x803D1964; // type:function size:0x4C +fn_803D19B0 = .text:0x803D19B0; // type:function size:0x78 +fn_803D1A28 = .text:0x803D1A28; // type:function size:0x2C +fn_803D1A54 = .text:0x803D1A54; // type:function size:0x4C +fn_803D1AA0 = .text:0x803D1AA0; // type:function size:0x78 +fn_803D1B18 = .text:0x803D1B18; // type:function size:0x2C +fn_803D1B44 = .text:0x803D1B44; // type:function size:0x4C +fn_803D1B90 = .text:0x803D1B90; // type:function size:0x78 +fn_803D1C08 = .text:0x803D1C08; // type:function size:0x2C +fn_803D1C34 = .text:0x803D1C34; // type:function size:0x4C +fn_803D1C80 = .text:0x803D1C80; // type:function size:0x78 +fn_803D1CF8 = .text:0x803D1CF8; // type:function size:0x4C +fn_803D1D44 = .text:0x803D1D44; // type:function size:0x78 +fn_803D1DBC = .text:0x803D1DBC; // type:function size:0xEC +fn_803D1EA8 = .text:0x803D1EA8; // type:function size:0x4C +fn_803D1EF4 = .text:0x803D1EF4; // type:function size:0x78 +fn_803D1F6C = .text:0x803D1F6C; // type:function size:0x2C +fn_803D1F98 = .text:0x803D1F98; // type:function size:0x4C +fn_803D1FE4 = .text:0x803D1FE4; // type:function size:0x78 +fn_803D205C = .text:0x803D205C; // type:function size:0x2C +fn_803D2088 = .text:0x803D2088; // type:function size:0x4C +fn_803D20D4 = .text:0x803D20D4; // type:function size:0x78 +fn_803D214C = .text:0x803D214C; // type:function size:0x8 +fn_803D2154 = .text:0x803D2154; // type:function size:0x4C +fn_803D21A0 = .text:0x803D21A0; // type:function size:0x78 +fn_803D2218 = .text:0x803D2218; // type:function size:0x4C +fn_803D2264 = .text:0x803D2264; // type:function size:0x78 +fn_803D22DC = .text:0x803D22DC; // type:function size:0x2C +fn_803D2308 = .text:0x803D2308; // type:function size:0x4C +fn_803D2354 = .text:0x803D2354; // type:function size:0x78 +fn_803D23CC = .text:0x803D23CC; // type:function size:0x2C +fn_803D23F8 = .text:0x803D23F8; // type:function size:0xD4 +fn_803D24CC = .text:0x803D24CC; // type:function size:0xC8 +fn_803D2594 = .text:0x803D2594; // type:function size:0x1C4 +fn_803D2758 = .text:0x803D2758; // type:function size:0x4D8 +fn_803D2C30 = .text:0x803D2C30; // type:function size:0x30 +fn_803D2C60 = .text:0x803D2C60; // type:function size:0x8 +fn_803D2C68 = .text:0x803D2C68; // type:function size:0x30 +fn_803D2C98 = .text:0x803D2C98; // type:function size:0x30 +fn_803D2CC8 = .text:0x803D2CC8; // type:function size:0x2C +fn_803D2CF4 = .text:0x803D2CF4; // type:function size:0x30 +fn_803D2D24 = .text:0x803D2D24; // type:function size:0x30 +fn_803D2D54 = .text:0x803D2D54; // type:function size:0x18 +fn_803D2D6C = .text:0x803D2D6C; // type:function size:0x2C +fn_803D2D98 = .text:0x803D2D98; // type:function size:0x48 +fn_803D2DE0 = .text:0x803D2DE0; // type:function size:0x48 +fn_803D2E28 = .text:0x803D2E28; // type:function size:0x44 +fn_803D2E6C = .text:0x803D2E6C; // type:function size:0x144 +fn_803D2FB0 = .text:0x803D2FB0; // type:function size:0x8 +fn_803D2FB8 = .text:0x803D2FB8; // type:function size:0x8 +fn_803D2FC0 = .text:0x803D2FC0; // type:function size:0x158 +fn_803D3118 = .text:0x803D3118; // type:function size:0x14 +fn_803D312C = .text:0x803D312C; // type:function size:0xA0 +fn_803D31CC = .text:0x803D31CC; // type:function size:0xA4 +fn_803D3270 = .text:0x803D3270; // type:function size:0x54 +fn_803D32C4 = .text:0x803D32C4; // type:function size:0x8 +fn_803D32CC = .text:0x803D32CC; // type:function size:0x10 +fn_803D32DC = .text:0x803D32DC; // type:function size:0x15C +fn_803D3438 = .text:0x803D3438; // type:function size:0x94 +fn_803D34CC = .text:0x803D34CC; // type:function size:0x80 +fn_803D354C = .text:0x803D354C; // type:function size:0x104 +fn_803D3650 = .text:0x803D3650; // type:function size:0x214 +fn_803D3864 = .text:0x803D3864; // type:function size:0x40 +fn_803D38A4 = .text:0x803D38A4; // type:function size:0x25C +fn_803D3B00 = .text:0x803D3B00; // type:function size:0xC8 +fn_803D3BC8 = .text:0x803D3BC8; // type:function size:0x31C +fn_803D3EE4 = .text:0x803D3EE4; // type:function size:0xA8 +fn_803D3F8C = .text:0x803D3F8C; // type:function size:0x12C +fn_803D40B8 = .text:0x803D40B8; // type:function size:0xA0 +fn_803D4158 = .text:0x803D4158; // type:function size:0x8 +fn_803D4160 = .text:0x803D4160; // type:function size:0xC0 +fn_803D4220 = .text:0x803D4220; // type:function size:0xA0 +fn_803D42C0 = .text:0x803D42C0; // type:function size:0x1D8 +fn_803D4498 = .text:0x803D4498; // type:function size:0x64 +fn_803D44FC = .text:0x803D44FC; // type:function size:0x7C +fn_803D4578 = .text:0x803D4578; // type:function size:0x18 +fn_803D4590 = .text:0x803D4590; // type:function size:0xB8 +fn_803D4648 = .text:0x803D4648; // type:function size:0x6C +fn_803D46B4 = .text:0x803D46B4; // type:function size:0x8C +fn_803D4740 = .text:0x803D4740; // type:function size:0x50 +fn_803D4790 = .text:0x803D4790; // type:function size:0xBC +fn_803D484C = .text:0x803D484C; // type:function size:0x60 +fn_803D48AC = .text:0x803D48AC; // type:function size:0x70 +fn_803D491C = .text:0x803D491C; // type:function size:0x10 +fn_803D492C = .text:0x803D492C; // type:function size:0x54 +fn_803D4980 = .text:0x803D4980; // type:function size:0x8 +fn_803D4988 = .text:0x803D4988; // type:function size:0x8C +fn_803D4A14 = .text:0x803D4A14; // type:function size:0x8 +fn_803D4A1C = .text:0x803D4A1C; // type:function size:0x60 +fn_803D4A7C = .text:0x803D4A7C; // type:function size:0xA24 +fn_803D54A0 = .text:0x803D54A0; // type:function size:0x240 +fn_803D56E0 = .text:0x803D56E0; // type:function size:0x30 +fn_803D5710 = .text:0x803D5710; // type:function size:0x30 +fn_803D5740 = .text:0x803D5740; // type:function size:0x30 +fn_803D5770 = .text:0x803D5770; // type:function size:0x140 +fn_803D58B0 = .text:0x803D58B0; // type:function size:0xC4 +fn_803D5974 = .text:0x803D5974; // type:function size:0x14C +fn_803D5AC0 = .text:0x803D5AC0; // type:function size:0x60 +fn_803D5B20 = .text:0x803D5B20; // type:function size:0x70 +fn_803D5B90 = .text:0x803D5B90; // type:function size:0x7C +fn_803D5C0C = .text:0x803D5C0C; // type:function size:0xB4 +fn_803D5CC0 = .text:0x803D5CC0; // type:function size:0xB0 +fn_803D5D70 = .text:0x803D5D70; // type:function size:0x3C +fn_803D5DAC = .text:0x803D5DAC; // type:function size:0x124 +fn_803D5ED0 = .text:0x803D5ED0; // type:function size:0x40 +fn_803D5F10 = .text:0x803D5F10; // type:function size:0x28 +fn_803D5F38 = .text:0x803D5F38; // type:function size:0x2C +fn_803D5F64 = .text:0x803D5F64; // type:function size:0x30 +fn_803D5F94 = .text:0x803D5F94; // type:function size:0x514 +fn_803D64A8 = .text:0x803D64A8; // type:function size:0x2FC +fn_803D67A4 = .text:0x803D67A4; // type:function size:0x154 +fn_803D68F8 = .text:0x803D68F8; // type:function size:0x34 +fn_803D692C = .text:0x803D692C; // type:function size:0x3C +fn_803D6968 = .text:0x803D6968; // type:function size:0x4 +fn_803D696C = .text:0x803D696C; // type:function size:0x70 +fn_803D69DC = .text:0x803D69DC; // type:function size:0x64 +fn_803D6A40 = .text:0x803D6A40; // type:function size:0x914 +fn_803D7354 = .text:0x803D7354; // type:function size:0xC4 +fn_803D7418 = .text:0x803D7418; // type:function size:0xB8 +fn_803D74D0 = .text:0x803D74D0; // type:function size:0x4 +fn_803D74D4 = .text:0x803D74D4; // type:function size:0x54 +fn_803D7528 = .text:0x803D7528; // type:function size:0x64 +fn_803D758C = .text:0x803D758C; // type:function size:0x50 +fn_803D75DC = .text:0x803D75DC; // type:function size:0x10 +fn_803D75EC = .text:0x803D75EC; // type:function size:0x40 +fn_803D762C = .text:0x803D762C; // type:function size:0x4 +fn_803D7630 = .text:0x803D7630; // type:function size:0x34 +fn_803D7664 = .text:0x803D7664; // type:function size:0xB8 +fn_803D771C = .text:0x803D771C; // type:function size:0x48 +fn_803D7764 = .text:0x803D7764; // type:function size:0x4C +fn_803D77B0 = .text:0x803D77B0; // type:function size:0x124 +fn_803D78D4 = .text:0x803D78D4; // type:function size:0x4 +fn_803D78D8 = .text:0x803D78D8; // type:function size:0x4 +fn_803D78DC = .text:0x803D78DC; // type:function size:0x4 +fn_803D78E0 = .text:0x803D78E0; // type:function size:0x8 +fn_803D78E8 = .text:0x803D78E8; // type:function size:0x4 +fn_803D78EC = .text:0x803D78EC; // type:function size:0x44 +fn_803D7930 = .text:0x803D7930; // type:function size:0x6C +fn_803D799C = .text:0x803D799C; // type:function size:0x2C +fn_803D79C8 = .text:0x803D79C8; // type:function size:0x30 +fn_803D79F8 = .text:0x803D79F8; // type:function size:0x1BC +fn_803D7BB4 = .text:0x803D7BB4; // type:function size:0x8 +fn_803D7BBC = .text:0x803D7BBC; // type:function size:0x40 +fn_803D7BFC = .text:0x803D7BFC; // type:function size:0x1A0 +fn_803D7D9C = .text:0x803D7D9C; // type:function size:0x4C +fn_803D7DE8 = .text:0x803D7DE8; // type:function size:0x78 +fn_803D7E60 = .text:0x803D7E60; // type:function size:0x6C +fn_803D7ECC = .text:0x803D7ECC; // type:function size:0x40 +fn_803D7F0C = .text:0x803D7F0C; // type:function size:0x44C +fn_803D8358 = .text:0x803D8358; // type:function size:0xBC +fn_803D8414 = .text:0x803D8414; // type:function size:0x10C +fn_803D8520 = .text:0x803D8520; // type:function size:0x10C +fn_803D862C = .text:0x803D862C; // type:function size:0x10C +fn_803D8738 = .text:0x803D8738; // type:function size:0x10C +fn_803D8844 = .text:0x803D8844; // type:function size:0x110 +fn_803D8954 = .text:0x803D8954; // type:function size:0x100 +fn_803D8A54 = .text:0x803D8A54; // type:function size:0x110 +fn_803D8B64 = .text:0x803D8B64; // type:function size:0x10C +fn_803D8C70 = .text:0x803D8C70; // type:function size:0x10C +fn_803D8D7C = .text:0x803D8D7C; // type:function size:0x10C +fn_803D8E88 = .text:0x803D8E88; // type:function size:0x110 +fn_803D8F98 = .text:0x803D8F98; // type:function size:0x110 +fn_803D90A8 = .text:0x803D90A8; // type:function size:0x100 +fn_803D91A8 = .text:0x803D91A8; // type:function size:0x6C +fn_803D9214 = .text:0x803D9214; // type:function size:0x70 +fn_803D9284 = .text:0x803D9284; // type:function size:0x6C +fn_803D92F0 = .text:0x803D92F0; // type:function size:0x6C +fn_803D935C = .text:0x803D935C; // type:function size:0x6C +fn_803D93C8 = .text:0x803D93C8; // type:function size:0x6C +fn_803D9434 = .text:0x803D9434; // type:function size:0x6C +fn_803D94A0 = .text:0x803D94A0; // type:function size:0x68 +fn_803D9508 = .text:0x803D9508; // type:function size:0x8 +fn_803D9510 = .text:0x803D9510; // type:function size:0x134 +fn_803D9644 = .text:0x803D9644; // type:function size:0x4 +fn_803D9648 = .text:0x803D9648; // type:function size:0x134 +fn_803D977C = .text:0x803D977C; // type:function size:0x4 +fn_803D9780 = .text:0x803D9780; // type:function size:0x2C +fn_803D97AC = .text:0x803D97AC; // type:function size:0x8 +fn_803D97B4 = .text:0x803D97B4; // type:function size:0x8 +fn_803D97BC = .text:0x803D97BC; // type:function size:0x8 +fn_803D97C4 = .text:0x803D97C4; // type:function size:0x8 +fn_803D97CC = .text:0x803D97CC; // type:function size:0x8 +fn_803D97D4 = .text:0x803D97D4; // type:function size:0x8 +fn_803D97DC = .text:0x803D97DC; // type:function size:0x8 +fn_803D97E4 = .text:0x803D97E4; // type:function size:0x8 +fn_803D97EC = .text:0x803D97EC; // type:function size:0x8 +fn_803D97F4 = .text:0x803D97F4; // type:function size:0x8 +fn_803D97FC = .text:0x803D97FC; // type:function size:0x8 +fn_803D9804 = .text:0x803D9804; // type:function size:0x8 +fn_803D980C = .text:0x803D980C; // type:function size:0x8 +fn_803D9814 = .text:0x803D9814; // type:function size:0x8 +fn_803D981C = .text:0x803D981C; // type:function size:0x8 +fn_803D9824 = .text:0x803D9824; // type:function size:0x8 +fn_803D982C = .text:0x803D982C; // type:function size:0x8 +fn_803D9834 = .text:0x803D9834; // type:function size:0x8 +fn_803D983C = .text:0x803D983C; // type:function size:0x8 +fn_803D9844 = .text:0x803D9844; // type:function size:0x8 +fn_803D984C = .text:0x803D984C; // type:function size:0x8 +fn_803D9854 = .text:0x803D9854; // type:function size:0x14 +fn_803D9868 = .text:0x803D9868; // type:function size:0x14 +fn_803D987C = .text:0x803D987C; // type:function size:0x8 +fn_803D9884 = .text:0x803D9884; // type:function size:0x8 +fn_803D988C = .text:0x803D988C; // type:function size:0x8 +fn_803D9894 = .text:0x803D9894; // type:function size:0x8 +fn_803D989C = .text:0x803D989C; // type:function size:0x8 +fn_803D98A4 = .text:0x803D98A4; // type:function size:0x8 +fn_803D98AC = .text:0x803D98AC; // type:function size:0x8 +fn_803D98B4 = .text:0x803D98B4; // type:function size:0x8 +fn_803D98BC = .text:0x803D98BC; // type:function size:0x8 +fn_803D98C4 = .text:0x803D98C4; // type:function size:0x8 +fn_803D98CC = .text:0x803D98CC; // type:function size:0x8 +fn_803D98D4 = .text:0x803D98D4; // type:function size:0x8 +fn_803D98DC = .text:0x803D98DC; // type:function size:0x8 +fn_803D98E4 = .text:0x803D98E4; // type:function size:0x8 +fn_803D98EC = .text:0x803D98EC; // type:function size:0x8 +fn_803D98F4 = .text:0x803D98F4; // type:function size:0x8 +fn_803D98FC = .text:0x803D98FC; // type:function size:0x8 +fn_803D9904 = .text:0x803D9904; // type:function size:0x8 +fn_803D990C = .text:0x803D990C; // type:function size:0x8 +fn_803D9914 = .text:0x803D9914; // type:function size:0x8 +fn_803D991C = .text:0x803D991C; // type:function size:0x8 +fn_803D9924 = .text:0x803D9924; // type:function size:0x8 +fn_803D992C = .text:0x803D992C; // type:function size:0x14 +fn_803D9940 = .text:0x803D9940; // type:function size:0x14 +fn_803D9954 = .text:0x803D9954; // type:function size:0x14 +fn_803D9968 = .text:0x803D9968; // type:function size:0x14 +fn_803D997C = .text:0x803D997C; // type:function size:0x14 +fn_803D9990 = .text:0x803D9990; // type:function size:0x14 +fn_803D99A4 = .text:0x803D99A4; // type:function size:0x14 +fn_803D99B8 = .text:0x803D99B8; // type:function size:0x14 +fn_803D99CC = .text:0x803D99CC; // type:function size:0x14 +fn_803D99E0 = .text:0x803D99E0; // type:function size:0x14 +fn_803D99F4 = .text:0x803D99F4; // type:function size:0x14 +fn_803D9A08 = .text:0x803D9A08; // type:function size:0x14 +fn_803D9A1C = .text:0x803D9A1C; // type:function size:0x14 +fn_803D9A30 = .text:0x803D9A30; // type:function size:0x14 +fn_803D9A44 = .text:0x803D9A44; // type:function size:0x14 +fn_803D9A58 = .text:0x803D9A58; // type:function size:0x14 +fn_803D9A6C = .text:0x803D9A6C; // type:function size:0x8 +fn_803D9A74 = .text:0x803D9A74; // type:function size:0x8 +fn_803D9A7C = .text:0x803D9A7C; // type:function size:0x8 +fn_803D9A84 = .text:0x803D9A84; // type:function size:0x8 +fn_803D9A8C = .text:0x803D9A8C; // type:function size:0x8 +fn_803D9A94 = .text:0x803D9A94; // type:function size:0x8 +fn_803D9A9C = .text:0x803D9A9C; // type:function size:0x8 +fn_803D9AA4 = .text:0x803D9AA4; // type:function size:0x8 +fn_803D9AAC = .text:0x803D9AAC; // type:function size:0x8 +fn_803D9AB4 = .text:0x803D9AB4; // type:function size:0x8 +fn_803D9ABC = .text:0x803D9ABC; // type:function size:0x8 +fn_803D9AC4 = .text:0x803D9AC4; // type:function size:0x8 +fn_803D9ACC = .text:0x803D9ACC; // type:function size:0x8 +fn_803D9AD4 = .text:0x803D9AD4; // type:function size:0x8 +fn_803D9ADC = .text:0x803D9ADC; // type:function size:0x8 +fn_803D9AE4 = .text:0x803D9AE4; // type:function size:0x8 +fn_803D9AEC = .text:0x803D9AEC; // type:function size:0x8 +fn_803D9AF4 = .text:0x803D9AF4; // type:function size:0x8 +fn_803D9AFC = .text:0x803D9AFC; // type:function size:0x8 +fn_803D9B04 = .text:0x803D9B04; // type:function size:0x8 +fn_803D9B0C = .text:0x803D9B0C; // type:function size:0x14 +fn_803D9B20 = .text:0x803D9B20; // type:function size:0x14 +fn_803D9B34 = .text:0x803D9B34; // type:function size:0x14 +fn_803D9B48 = .text:0x803D9B48; // type:function size:0x14 +fn_803D9B5C = .text:0x803D9B5C; // type:function size:0x14 +fn_803D9B70 = .text:0x803D9B70; // type:function size:0x14 +fn_803D9B84 = .text:0x803D9B84; // type:function size:0x14 +fn_803D9B98 = .text:0x803D9B98; // type:function size:0x14 +fn_803D9BAC = .text:0x803D9BAC; // type:function size:0xC +fn_803D9BB8 = .text:0x803D9BB8; // type:function size:0x14 +fn_803D9BCC = .text:0x803D9BCC; // type:function size:0xA0 +fn_803D9C6C = .text:0x803D9C6C; // type:function size:0x214 +fn_803D9E80 = .text:0x803D9E80; // type:function size:0x28 +fn_803D9EA8 = .text:0x803D9EA8; // type:function size:0x18 +fn_803D9EC0 = .text:0x803D9EC0; // type:function size:0x38 +fn_803D9EF8 = .text:0x803D9EF8; // type:function size:0x1F0 +fn_803DA0E8 = .text:0x803DA0E8; // type:function size:0x34 +fn_803DA11C = .text:0x803DA11C; // type:function size:0x14 +fn_803DA130 = .text:0x803DA130; // type:function size:0x6C +fn_803DA19C = .text:0x803DA19C; // type:function size:0x60 +fn_803DA1FC = .text:0x803DA1FC; // type:function size:0xAC +fn_803DA2A8 = .text:0x803DA2A8; // type:function size:0xB8 +fn_803DA360 = .text:0x803DA360; // type:function size:0x68 +fn_803DA3C8 = .text:0x803DA3C8; // type:function size:0xCC +fn_803DA494 = .text:0x803DA494; // type:function size:0xE4 +fn_803DA578 = .text:0x803DA578; // type:function size:0x4 +fn_803DA57C = .text:0x803DA57C; // type:function size:0x90 +fn_803DA60C = .text:0x803DA60C; // type:function size:0x4 +fn_803DA610 = .text:0x803DA610; // type:function size:0x40 +fn_803DA650 = .text:0x803DA650; // type:function size:0x8C +fn_803DA6DC = .text:0x803DA6DC; // type:function size:0x4 +fn_803DA6E0 = .text:0x803DA6E0; // type:function size:0x3C +fn_803DA71C = .text:0x803DA71C; // type:function size:0x84 +fn_803DA7A0 = .text:0x803DA7A0; // type:function size:0x88 +fn_803DA828 = .text:0x803DA828; // type:function size:0x68 +fn_803DA890 = .text:0x803DA890; // type:function size:0x8 +fn_803DA898 = .text:0x803DA898; // type:function size:0x68 +fn_803DA900 = .text:0x803DA900; // type:function size:0xA8 +fn_803DA9A8 = .text:0x803DA9A8; // type:function size:0x130 +fn_803DAAD8 = .text:0x803DAAD8; // type:function size:0x28 +fn_803DAB00 = .text:0x803DAB00; // type:function size:0xC4 +fn_803DABC4 = .text:0x803DABC4; // type:function size:0xBC +fn_803DAC80 = .text:0x803DAC80; // type:function size:0xC4 +fn_803DAD44 = .text:0x803DAD44; // type:function size:0x70 +fn_803DADB4 = .text:0x803DADB4; // type:function size:0x70 +fn_803DAE24 = .text:0x803DAE24; // type:function size:0x68 +fn_803DAE8C = .text:0x803DAE8C; // type:function size:0x70 +fn_803DAEFC = .text:0x803DAEFC; // type:function size:0xA4 +fn_803DAFA0 = .text:0x803DAFA0; // type:function size:0x28 +fn_803DAFC8 = .text:0x803DAFC8; // type:function size:0x90 +fn_803DB058 = .text:0x803DB058; // type:function size:0xBC +fn_803DB114 = .text:0x803DB114; // type:function size:0x30 +fn_803DB144 = .text:0x803DB144; // type:function size:0x28 +fn_803DB16C = .text:0x803DB16C; // type:function size:0x7C +fn_803DB1E8 = .text:0x803DB1E8; // type:function size:0x48 +fn_803DB230 = .text:0x803DB230; // type:function size:0x8 +fn_803DB238 = .text:0x803DB238; // type:function size:0x7C +fn_803DB2B4 = .text:0x803DB2B4; // type:function size:0x44 +__ct__12BandCharDescFv = .text:0x803DB2F8; // type:function size:0xF0 +fn_803DB3E8 = .text:0x803DB3E8; // type:function size:0x58 +fn_803DB440 = .text:0x803DB440; // type:function size:0x80 +fn_803DB4C0 = .text:0x803DB4C0; // type:function size:0x80 +fn_803DB540 = .text:0x803DB540; // type:function size:0x58 +fn_803DB598 = .text:0x803DB598; // type:function size:0xEC +fn_803DB684 = .text:0x803DB684; // type:function size:0x30 +fn_803DB6B4 = .text:0x803DB6B4; // type:function size:0x30 +fn_803DB6E4 = .text:0x803DB6E4; // type:function size:0x40 +fn_803DB724 = .text:0x803DB724; // type:function size:0xA4 +fn_803DB7C8 = .text:0x803DB7C8; // type:function size:0x150 +fn_803DB918 = .text:0x803DB918; // type:function size:0x28 +fn_803DB940 = .text:0x803DB940; // type:function size:0xEC +fn_803DBA2C = .text:0x803DBA2C; // type:function size:0x118 +fn_803DBB44 = .text:0x803DBB44; // type:function size:0x8 +fn_803DBB4C = .text:0x803DBB4C; // type:function size:0x118 +fn_803DBC64 = .text:0x803DBC64; // type:function size:0xB0 +fn_803DBD14 = .text:0x803DBD14; // type:function size:0x190 +fn_803DBEA4 = .text:0x803DBEA4; // type:function size:0xCC +fn_803DBF70 = .text:0x803DBF70; // type:function size:0x10C +fn_803DC07C = .text:0x803DC07C; // type:function size:0x11C +fn_803DC198 = .text:0x803DC198; // type:function size:0x10 +fn_803DC1A8 = .text:0x803DC1A8; // type:function size:0x60 +fn_803DC208 = .text:0x803DC208; // type:function size:0x60 +fn_803DC268 = .text:0x803DC268; // type:function size:0x1C +fn_803DC284 = .text:0x803DC284; // type:function size:0x1C +fn_803DC2A0 = .text:0x803DC2A0; // type:function size:0x1C +fn_803DC2BC = .text:0x803DC2BC; // type:function size:0x1C +fn_803DC2D8 = .text:0x803DC2D8; // type:function size:0xA0 +fn_803DC378 = .text:0x803DC378; // type:function size:0x2DC +fn_803DC654 = .text:0x803DC654; // type:function size:0xD8 +fn_803DC72C = .text:0x803DC72C; // type:function size:0x7C +fn_803DC7A8 = .text:0x803DC7A8; // type:function size:0x7C +fn_803DC824 = .text:0x803DC824; // type:function size:0x6C +fn_803DC890 = .text:0x803DC890; // type:function size:0x88 +fn_803DC918 = .text:0x803DC918; // type:function size:0xC4 +fn_803DC9DC = .text:0x803DC9DC; // type:function size:0x14C +fn_803DCB28 = .text:0x803DCB28; // type:function size:0x70 +fn_803DCB98 = .text:0x803DCB98; // type:function size:0x70 +fn_803DCC08 = .text:0x803DCC08; // type:function size:0x124 +fn_803DCD2C = .text:0x803DCD2C; // type:function size:0x160 +fn_803DCE8C = .text:0x803DCE8C; // type:function size:0x104 +fn_803DCF90 = .text:0x803DCF90; // type:function size:0x74 +fn_803DD004 = .text:0x803DD004; // type:function size:0x2E8 +fn_803DD2EC = .text:0x803DD2EC; // type:function size:0x8C +fn_803DD378 = .text:0x803DD378; // type:function size:0xB0 +fn_803DD428 = .text:0x803DD428; // type:function size:0x204 +fn_803DD62C = .text:0x803DD62C; // type:function size:0x78 +fn_803DD6A4 = .text:0x803DD6A4; // type:function size:0xCC +fn_803DD770 = .text:0x803DD770; // type:function size:0xDC +fn_803DD84C = .text:0x803DD84C; // type:function size:0x80 +fn_803DD8CC = .text:0x803DD8CC; // type:function size:0x8 +fn_803DD8D4 = .text:0x803DD8D4; // type:function size:0x78 +fn_803DD94C = .text:0x803DD94C; // type:function size:0x8C +fn_803DD9D8 = .text:0x803DD9D8; // type:function size:0x50 +fn_803DDA28 = .text:0x803DDA28; // type:function size:0x88 +fn_803DDAB0 = .text:0x803DDAB0; // type:function size:0x18 +Handle__12BandCharDescFP9DataArrayb = .text:0x803DDAC8; // type:function size:0x258 +fn_803DDD20 = .text:0x803DDD20; // type:function size:0x94 +fn_803DDDB4 = .text:0x803DDDB4; // type:function size:0x100 +fn_803DDEB4 = .text:0x803DDEB4; // type:function size:0x2B8 +fn_803DE16C = .text:0x803DE16C; // type:function size:0x1F8 +fn_803DE364 = .text:0x803DE364; // type:function size:0x2E8 +fn_803DE64C = .text:0x803DE64C; // type:function size:0x17C +fn_803DE7C8 = .text:0x803DE7C8; // type:function size:0x4E0 +fn_803DECA8 = .text:0x803DECA8; // type:function size:0x454 +fn_803DF0FC = .text:0x803DF0FC; // type:function size:0x164 +fn_803DF260 = .text:0x803DF260; // type:function size:0x68 +fn_803DF2C8 = .text:0x803DF2C8; // type:function size:0x58 +fn_803DF320 = .text:0x803DF320; // type:function size:0x198 +fn_803DF4B8 = .text:0x803DF4B8; // type:function size:0x54 +fn_803DF50C = .text:0x803DF50C; // type:function size:0x28 +fn_803DF534 = .text:0x803DF534; // type:function size:0x68 +fn_803DF59C = .text:0x803DF59C; // type:function size:0x5C +fn_803DF5F8 = .text:0x803DF5F8; // type:function size:0x14 +fn_803DF60C = .text:0x803DF60C; // type:function size:0x14 +fn_803DF620 = .text:0x803DF620; // type:function size:0x2D4 +fn_803DF8F4 = .text:0x803DF8F4; // type:function size:0xA0 +fn_803DF994 = .text:0x803DF994; // type:function size:0xB8 +fn_803DFA4C = .text:0x803DFA4C; // type:function size:0xA0 +fn_803DFAEC = .text:0x803DFAEC; // type:function size:0x50 +fn_803DFB3C = .text:0x803DFB3C; // type:function size:0x44 +fn_803DFB80 = .text:0x803DFB80; // type:function size:0x3B8 +fn_803DFF38 = .text:0x803DFF38; // type:function size:0xA8 +fn_803DFFE0 = .text:0x803DFFE0; // type:function size:0x4C +fn_803E002C = .text:0x803E002C; // type:function size:0x5C +fn_803E0088 = .text:0x803E0088; // type:function size:0x280 +fn_803E0308 = .text:0x803E0308; // type:function size:0xC +fn_803E0314 = .text:0x803E0314; // type:function size:0xB4 +fn_803E03C8 = .text:0x803E03C8; // type:function size:0x24 +fn_803E03EC = .text:0x803E03EC; // type:function size:0x230 +fn_803E061C = .text:0x803E061C; // type:function size:0x58 +fn_803E0674 = .text:0x803E0674; // type:function size:0x58 +fn_803E06CC = .text:0x803E06CC; // type:function size:0x60 +fn_803E072C = .text:0x803E072C; // type:function size:0x58 +fn_803E0784 = .text:0x803E0784; // type:function size:0x8 +fn_803E078C = .text:0x803E078C; // type:function size:0x28 +fn_803E07B4 = .text:0x803E07B4; // type:function size:0x4 +fn_803E07B8 = .text:0x803E07B8; // type:function size:0x4 +fn_803E07BC = .text:0x803E07BC; // type:function size:0xC +fn_803E07C8 = .text:0x803E07C8; // type:function size:0x30 +fn_803E07F8 = .text:0x803E07F8; // type:function size:0x30 +fn_803E0828 = .text:0x803E0828; // type:function size:0x60 +fn_803E0888 = .text:0x803E0888; // type:function size:0x7C +fn_803E0904 = .text:0x803E0904; // type:function size:0x1A0 +fn_803E0AA4 = .text:0x803E0AA4; // type:function size:0x5C +fn_803E0B00 = .text:0x803E0B00; // type:function size:0xA8 +fn_803E0BA8 = .text:0x803E0BA8; // type:function size:0x90 +fn_803E0C38 = .text:0x803E0C38; // type:function size:0xD4 +fn_803E0D0C = .text:0x803E0D0C; // type:function size:0x68 +fn_803E0D74 = .text:0x803E0D74; // type:function size:0x2C +fn_803E0DA0 = .text:0x803E0DA0; // type:function size:0x110 +fn_803E0EB0 = .text:0x803E0EB0; // type:function size:0xD4 +fn_803E0F84 = .text:0x803E0F84; // type:function size:0x98 +fn_803E101C = .text:0x803E101C; // type:function size:0x4 +fn_803E1020 = .text:0x803E1020; // type:function size:0x4 +fn_803E1024 = .text:0x803E1024; // type:function size:0x134 +fn_803E1158 = .text:0x803E1158; // type:function size:0xA0 +fn_803E11F8 = .text:0x803E11F8; // type:function size:0xCC +fn_803E12C4 = .text:0x803E12C4; // type:function size:0x50 +fn_803E1314 = .text:0x803E1314; // type:function size:0xD0 +fn_803E13E4 = .text:0x803E13E4; // type:function size:0x78 +fn_803E145C = .text:0x803E145C; // type:function size:0x284 +fn_803E16E0 = .text:0x803E16E0; // type:function size:0x58 +fn_803E1738 = .text:0x803E1738; // type:function size:0x58 +fn_803E1790 = .text:0x803E1790; // type:function size:0x60 +fn_803E17F0 = .text:0x803E17F0; // type:function size:0x58 +fn_803E1848 = .text:0x803E1848; // type:function size:0x58 +fn_803E18A0 = .text:0x803E18A0; // type:function size:0x50 +fn_803E18F0 = .text:0x803E18F0; // type:function size:0xA0 +fn_803E1990 = .text:0x803E1990; // type:function size:0x30 +fn_803E19C0 = .text:0x803E19C0; // type:function size:0x44 +fn_803E1A04 = .text:0x803E1A04; // type:function size:0x3C +fn_803E1A40 = .text:0x803E1A40; // type:function size:0x70 +fn_803E1AB0 = .text:0x803E1AB0; // type:function size:0x8 +fn_803E1AB8 = .text:0x803E1AB8; // type:function size:0x4 +fn_803E1ABC = .text:0x803E1ABC; // type:function size:0xF0 +fn_803E1BAC = .text:0x803E1BAC; // type:function size:0xC4 +fn_803E1C70 = .text:0x803E1C70; // type:function size:0x34 +fn_803E1CA4 = .text:0x803E1CA4; // type:function size:0x4 +fn_803E1CA8 = .text:0x803E1CA8; // type:function size:0xA0 +Handle__20BandRetargetVignetteFP9DataArrayb = .text:0x803E1D48; // type:function size:0x11C +fn_803E1E64 = .text:0x803E1E64; // type:function size:0x148 +fn_803E1FAC = .text:0x803E1FAC; // type:function size:0x1AC +fn_803E2158 = .text:0x803E2158; // type:function size:0x58 +fn_803E21B0 = .text:0x803E21B0; // type:function size:0x6C +fn_803E221C = .text:0x803E221C; // type:function size:0x2C +fn_803E2248 = .text:0x803E2248; // type:function size:0x8 +fn_803E2250 = .text:0x803E2250; // type:function size:0x5C +fn_803E22AC = .text:0x803E22AC; // type:function size:0x5C +fn_803E2308 = .text:0x803E2308; // type:function size:0xE4 +fn_803E23EC = .text:0x803E23EC; // type:function size:0x54 +fn_803E2440 = .text:0x803E2440; // type:function size:0x6C +fn_803E24AC = .text:0x803E24AC; // type:function size:0x8C +fn_803E2538 = .text:0x803E2538; // type:function size:0x134 +fn_803E266C = .text:0x803E266C; // type:function size:0x4 +fn_803E2670 = .text:0x803E2670; // type:function size:0x14 +fn_803E2684 = .text:0x803E2684; // type:function size:0x14 +fn_803E2698 = .text:0x803E2698; // type:function size:0x14 +fn_803E26AC = .text:0x803E26AC; // type:function size:0x14 +fn_803E26C0 = .text:0x803E26C0; // type:function size:0x14 +fn_803E26D4 = .text:0x803E26D4; // type:function size:0x14 +fn_803E26E8 = .text:0x803E26E8; // type:function size:0x14 +fn_803E26FC = .text:0x803E26FC; // type:function size:0x14 +__ct__12BandSongPrefFv = .text:0x803E2710; // type:function size:0x7C +Save__12BandSongPrefFR9BinStream = .text:0x803E278C; // type:function size:0x4 +Load__12BandSongPrefFR9BinStream = .text:0x803E2790; // type:function size:0xC0 +Copy__12BandSongPrefFPCQ23Hmx6ObjectQ33Hmx6Object8CopyType = .text:0x803E2850; // type:function size:0x94 +Handle__12BandSongPrefFP9DataArrayb = .text:0x803E28E4; // type:function size:0xC4 +SyncProperty__12BandSongPrefFR8DataNodeP9DataArrayi6PropOp = .text:0x803E29A8; // type:function size:0x148 +fn_803E2AF0 = .text:0x803E2AF0; // type:function size:0x58 +ClassName__12BandSongPrefCFv = .text:0x803E2B48; // type:function size:0x4 +SetType__12BandSongPrefF6Symbol = .text:0x803E2B4C; // type:function size:0x128 +fn_803E2C74 = .text:0x803E2C74; // type:function size:0xE8 +fn_803E2D5C = .text:0x803E2D5C; // type:function size:0x9C +fn_803E2DF8 = .text:0x803E2DF8; // type:function size:0x50 +fn_803E2E48 = .text:0x803E2E48; // type:function size:0x1BC +fn_803E3004 = .text:0x803E3004; // type:function size:0x1B4 +fn_803E31B8 = .text:0x803E31B8; // type:function size:0x7C +fn_803E3234 = .text:0x803E3234; // type:function size:0x4 +fn_803E3238 = .text:0x803E3238; // type:function size:0x34 +fn_803E326C = .text:0x803E326C; // type:function size:0x44 +fn_803E32B0 = .text:0x803E32B0; // type:function size:0x4C +fn_803E32FC = .text:0x803E32FC; // type:function size:0x1E8 +fn_803E34E4 = .text:0x803E34E4; // type:function size:0x50 +fn_803E3534 = .text:0x803E3534; // type:function size:0x140 +fn_803E3674 = .text:0x803E3674; // type:function size:0x130 +fn_803E37A4 = .text:0x803E37A4; // type:function size:0xA0 +fn_803E3844 = .text:0x803E3844; // type:function size:0xF4 +fn_803E3938 = .text:0x803E3938; // type:function size:0xA0 +fn_803E39D8 = .text:0x803E39D8; // type:function size:0xB4 +fn_803E3A8C = .text:0x803E3A8C; // type:function size:0x9C +fn_803E3B28 = .text:0x803E3B28; // type:function size:0xDC +fn_803E3C04 = .text:0x803E3C04; // type:function size:0x10 +fn_803E3C14 = .text:0x803E3C14; // type:function size:0x60 +fn_803E3C74 = .text:0x803E3C74; // type:function size:0x48 +fn_803E3CBC = .text:0x803E3CBC; // type:function size:0x8 +fn_803E3CC4 = .text:0x803E3CC4; // type:function size:0x114 +fn_803E3DD8 = .text:0x803E3DD8; // type:function size:0x84 +fn_803E3E5C = .text:0x803E3E5C; // type:function size:0xCC +fn_803E3F28 = .text:0x803E3F28; // type:function size:0x6C +fn_803E3F94 = .text:0x803E3F94; // type:function size:0x40 +fn_803E3FD4 = .text:0x803E3FD4; // type:function size:0x44 +fn_803E4018 = .text:0x803E4018; // type:function size:0x54 +fn_803E406C = .text:0x803E406C; // type:function size:0x50 +fn_803E40BC = .text:0x803E40BC; // type:function size:0xD0 +fn_803E418C = .text:0x803E418C; // type:function size:0x4C +fn_803E41D8 = .text:0x803E41D8; // type:function size:0x78 +fn_803E4250 = .text:0x803E4250; // type:function size:0x2C +fn_803E427C = .text:0x803E427C; // type:function size:0x78 +fn_803E42F4 = .text:0x803E42F4; // type:function size:0x68 +fn_803E435C = .text:0x803E435C; // type:function size:0xC8 +fn_803E4424 = .text:0x803E4424; // type:function size:0x50 +fn_803E4474 = .text:0x803E4474; // type:function size:0xD0 +fn_803E4544 = .text:0x803E4544; // type:function size:0x78 +fn_803E45BC = .text:0x803E45BC; // type:function size:0x70 +fn_803E462C = .text:0x803E462C; // type:function size:0x124 +fn_803E4750 = .text:0x803E4750; // type:function size:0x54 +fn_803E47A4 = .text:0x803E47A4; // type:function size:0x58 +fn_803E47FC = .text:0x803E47FC; // type:function size:0x170 +fn_803E496C = .text:0x803E496C; // type:function size:0x170 +PowerOf2 = .text:0x803E4ADC; // type:function size:0x30 +fn_803E4B0C = .text:0x803E4B0C; // type:function size:0x58 +fn_803E4B64 = .text:0x803E4B64; // type:function size:0x30 +fn_803E4B94 = .text:0x803E4B94; // type:function size:0x4C +fn_803E4BE0 = .text:0x803E4BE0; // type:function size:0x108 +fn_803E4CE8 = .text:0x803E4CE8; // type:function size:0x74 +fn_803E4D5C = .text:0x803E4D5C; // type:function size:0x8C +fn_803E4DE8 = .text:0x803E4DE8; // type:function size:0x2C +fn_803E4E14 = .text:0x803E4E14; // type:function size:0x84 +fn_803E4E98 = .text:0x803E4E98; // type:function size:0xEC +fn_803E4F84 = .text:0x803E4F84; // type:function size:0x750 +fn_803E56D4 = .text:0x803E56D4; // type:function size:0x30 +fn_803E5704 = .text:0x803E5704; // type:function size:0x78 +fn_803E577C = .text:0x803E577C; // type:function size:0x64 +fn_803E57E0 = .text:0x803E57E0; // type:function size:0x2B8 +fn_803E5A98 = .text:0x803E5A98; // type:function size:0x10 +fn_803E5AA8 = .text:0x803E5AA8; // type:function size:0x1F0 +fn_803E5C98 = .text:0x803E5C98; // type:function size:0x1D4 +fn_803E5E6C = .text:0x803E5E6C; // type:function size:0x50 +fn_803E5EBC = .text:0x803E5EBC; // type:function size:0x4 +fn_803E5EC0 = .text:0x803E5EC0; // type:function size:0x19C +fn_803E605C = .text:0x803E605C; // type:function size:0x8 +Handle__12BandWardrobeFP9DataArrayb = .text:0x803E6064; // type:function size:0x5A4 +fn_803E6608 = .text:0x803E6608; // type:function size:0x6C +fn_803E6674 = .text:0x803E6674; // type:function size:0x80 +fn_803E66F4 = .text:0x803E66F4; // type:function size:0xE0 +fn_803E67D4 = .text:0x803E67D4; // type:function size:0x154 +fn_803E6928 = .text:0x803E6928; // type:function size:0x80 +fn_803E69A8 = .text:0x803E69A8; // type:function size:0x30 +fn_803E69D8 = .text:0x803E69D8; // type:function size:0x110 +fn_803E6AE8 = .text:0x803E6AE8; // type:function size:0xC4 +fn_803E6BAC = .text:0x803E6BAC; // type:function size:0x208 +fn_803E6DB4 = .text:0x803E6DB4; // type:function size:0x7C +fn_803E6E30 = .text:0x803E6E30; // type:function size:0x78 +fn_803E6EA8 = .text:0x803E6EA8; // type:function size:0x60 +fn_803E6F08 = .text:0x803E6F08; // type:function size:0x6C4 +fn_803E75CC = .text:0x803E75CC; // type:function size:0xA0 +fn_803E766C = .text:0x803E766C; // type:function size:0x50 +fn_803E76BC = .text:0x803E76BC; // type:function size:0xD0 +fn_803E778C = .text:0x803E778C; // type:function size:0xA0 +fn_803E782C = .text:0x803E782C; // type:function size:0x78 +fn_803E78A4 = .text:0x803E78A4; // type:function size:0x34 +fn_803E78D8 = .text:0x803E78D8; // type:function size:0x3C +fn_803E7914 = .text:0x803E7914; // type:function size:0x17C +fn_803E7A90 = .text:0x803E7A90; // type:function size:0x84 +fn_803E7B14 = .text:0x803E7B14; // type:function size:0x34 +fn_803E7B48 = .text:0x803E7B48; // type:function size:0x3C +fn_803E7B84 = .text:0x803E7B84; // type:function size:0x328 +fn_803E7EAC = .text:0x803E7EAC; // type:function size:0x88 +fn_803E7F34 = .text:0x803E7F34; // type:function size:0x104 +fn_803E8038 = .text:0x803E8038; // type:function size:0x30 +fn_803E8068 = .text:0x803E8068; // type:function size:0xCC +fn_803E8134 = .text:0x803E8134; // type:function size:0x34 +fn_803E8168 = .text:0x803E8168; // type:function size:0xA4 +fn_803E820C = .text:0x803E820C; // type:function size:0xF8 +fn_803E8304 = .text:0x803E8304; // type:function size:0xA8 +fn_803E83AC = .text:0x803E83AC; // type:function size:0x9C +fn_803E8448 = .text:0x803E8448; // type:function size:0xB8 +fn_803E8500 = .text:0x803E8500; // type:function size:0x4C +fn_803E854C = .text:0x803E854C; // type:function size:0x78 +fn_803E85C4 = .text:0x803E85C4; // type:function size:0x2C +fn_803E85F0 = .text:0x803E85F0; // type:function size:0x44 +fn_803E8634 = .text:0x803E8634; // type:function size:0x54 +fn_803E8688 = .text:0x803E8688; // type:function size:0xB8 +fn_803E8740 = .text:0x803E8740; // type:function size:0x8 +fn_803E8748 = .text:0x803E8748; // type:function size:0x6C +fn_803E87B4 = .text:0x803E87B4; // type:function size:0x30 +fn_803E87E4 = .text:0x803E87E4; // type:function size:0x74 +fn_803E8858 = .text:0x803E8858; // type:function size:0x88 +fn_803E88E0 = .text:0x803E88E0; // type:function size:0x50 +fn_803E8930 = .text:0x803E8930; // type:function size:0xA4 +fn_803E89D4 = .text:0x803E89D4; // type:function size:0x6C +fn_803E8A40 = .text:0x803E8A40; // type:function size:0xC +fn_803E8A4C = .text:0x803E8A4C; // type:function size:0x64 +fn_803E8AB0 = .text:0x803E8AB0; // type:function size:0xA8 +fn_803E8B58 = .text:0x803E8B58; // type:function size:0x6C +fn_803E8BC4 = .text:0x803E8BC4; // type:function size:0x40 +fn_803E8C04 = .text:0x803E8C04; // type:function size:0x68 +__ct__29ObjPtr<9ObjectDir,9ObjectDir>FPQ23Hmx6ObjectP9ObjectDir = .text:0x803E8C6C; // type:function size:0x68 +fn_803E8CD4 = .text:0x803E8CD4; // type:function size:0xE0 +fn_803E8DB4 = .text:0x803E8DB4; // type:function size:0x94 +fn_803E8E48 = .text:0x803E8E48; // type:function size:0x88 +fn_803E8ED0 = .text:0x803E8ED0; // type:function size:0xA4 +fn_803E8F74 = .text:0x803E8F74; // type:function size:0x78 +fn_803E8FEC = .text:0x803E8FEC; // type:function size:0x58 +fn_803E9044 = .text:0x803E9044; // type:function size:0x64 +fn_803E90A8 = .text:0x803E90A8; // type:function size:0x28 +fn_803E90D0 = .text:0x803E90D0; // type:function size:0x68 +fn_803E9138 = .text:0x803E9138; // type:function size:0x30 +fn_803E9168 = .text:0x803E9168; // type:function size:0x78 +fn_803E91E0 = .text:0x803E91E0; // type:function size:0x14 +fn_803E91F4 = .text:0x803E91F4; // type:function size:0x98 +fn_803E928C = .text:0x803E928C; // type:function size:0x4 +fn_803E9290 = .text:0x803E9290; // type:function size:0x88 +fn_803E9318 = .text:0x803E9318; // type:function size:0x2C +fn_803E9344 = .text:0x803E9344; // type:function size:0x10 +fn_803E9354 = .text:0x803E9354; // type:function size:0x98 +fn_803E93EC = .text:0x803E93EC; // type:function size:0x4 +fn_803E93F0 = .text:0x803E93F0; // type:function size:0x3C +fn_803E942C = .text:0x803E942C; // type:function size:0x40 +fn_803E946C = .text:0x803E946C; // type:function size:0x8C +fn_803E94F8 = .text:0x803E94F8; // type:function size:0x8 +fn_803E9500 = .text:0x803E9500; // type:function size:0x2C +fn_803E952C = .text:0x803E952C; // type:function size:0x58 +fn_803E9584 = .text:0x803E9584; // type:function size:0x8 +fn_803E958C = .text:0x803E958C; // type:function size:0x28 +fn_803E95B4 = .text:0x803E95B4; // type:function size:0x68 +fn_803E961C = .text:0x803E961C; // type:function size:0xA4 +fn_803E96C0 = .text:0x803E96C0; // type:function size:0x70 +fn_803E9730 = .text:0x803E9730; // type:function size:0x750 +fn_803E9E80 = .text:0x803E9E80; // type:function size:0xBC +fn_803E9F3C = .text:0x803E9F3C; // type:function size:0x110 +fn_803EA04C = .text:0x803EA04C; // type:function size:0x10C +fn_803EA158 = .text:0x803EA158; // type:function size:0x114 +fn_803EA26C = .text:0x803EA26C; // type:function size:0x5C +fn_803EA2C8 = .text:0x803EA2C8; // type:function size:0x5C +fn_803EA324 = .text:0x803EA324; // type:function size:0x10 +fn_803EA334 = .text:0x803EA334; // type:function size:0x54 +fn_803EA388 = .text:0x803EA388; // type:function size:0x5C +fn_803EA3E4 = .text:0x803EA3E4; // type:function size:0x6C +fn_803EA450 = .text:0x803EA450; // type:function size:0x28 +fn_803EA478 = .text:0x803EA478; // type:function size:0x10 +fn_803EA488 = .text:0x803EA488; // type:function size:0xC +fn_803EA494 = .text:0x803EA494; // type:function size:0x8 +fn_803EA49C = .text:0x803EA49C; // type:function size:0x3C +fn_803EA4D8 = .text:0x803EA4D8; // type:function size:0x5C +fn_803EA534 = .text:0x803EA534; // type:function size:0x5C +fn_803EA590 = .text:0x803EA590; // type:function size:0xC +fn_803EA59C = .text:0x803EA59C; // type:function size:0x134 +fn_803EA6D0 = .text:0x803EA6D0; // type:function size:0x4 +fn_803EA6D4 = .text:0x803EA6D4; // type:function size:0x14 +fn_803EA6E8 = .text:0x803EA6E8; // type:function size:0x14 +fn_803EA6FC = .text:0x803EA6FC; // type:function size:0x14 +fn_803EA710 = .text:0x803EA710; // type:function size:0x14 +fn_803EA724 = .text:0x803EA724; // type:function size:0x14 +fn_803EA738 = .text:0x803EA738; // type:function size:0x14 +fn_803EA74C = .text:0x803EA74C; // type:function size:0x14 +fn_803EA760 = .text:0x803EA760; // type:function size:0x14 +fn_803EA774 = .text:0x803EA774; // type:function size:0x4 +fn_803EA778 = .text:0x803EA778; // type:function size:0x88 +fn_803EA800 = .text:0x803EA800; // type:function size:0x30 +fn_803EA830 = .text:0x803EA830; // type:function size:0x30 +fn_803EA860 = .text:0x803EA860; // type:function size:0x40 +fn_803EA8A0 = .text:0x803EA8A0; // type:function size:0x21C +fn_803EAABC = .text:0x803EAABC; // type:function size:0x58 +fn_803EAB14 = .text:0x803EAB14; // type:function size:0x80 +fn_803EAB94 = .text:0x803EAB94; // type:function size:0x80 +fn_803EAC14 = .text:0x803EAC14; // type:function size:0x58 +fn_803EAC6C = .text:0x803EAC6C; // type:function size:0x54 +fn_803EACC0 = .text:0x803EACC0; // type:function size:0x5C +fn_803EAD1C = .text:0x803EAD1C; // type:function size:0x6C +fn_803EAD88 = .text:0x803EAD88; // type:function size:0x28 +fn_803EADB0 = .text:0x803EADB0; // type:function size:0x8 +fn_803EADB8 = .text:0x803EADB8; // type:function size:0x3C +fn_803EADF4 = .text:0x803EADF4; // type:function size:0x80 +fn_803EAE74 = .text:0x803EAE74; // type:function size:0x30 +fn_803EAEA4 = .text:0x803EAEA4; // type:function size:0x30 +fn_803EAED4 = .text:0x803EAED4; // type:function size:0x40 +fn_803EAF14 = .text:0x803EAF14; // type:function size:0x68 +fn_803EAF7C = .text:0x803EAF7C; // type:function size:0xF8 +fn_803EB074 = .text:0x803EB074; // type:function size:0x74 +fn_803EB0E8 = .text:0x803EB0E8; // type:function size:0x4 +fn_803EB0EC = .text:0x803EB0EC; // type:function size:0x3C +fn_803EB128 = .text:0x803EB128; // type:function size:0x40 +fn_803EB168 = .text:0x803EB168; // type:function size:0x8C +fn_803EB1F4 = .text:0x803EB1F4; // type:function size:0x8 +fn_803EB1FC = .text:0x803EB1FC; // type:function size:0x2C +fn_803EB228 = .text:0x803EB228; // type:function size:0x58 +fn_803EB280 = .text:0x803EB280; // type:function size:0x28 +fn_803EB2A8 = .text:0x803EB2A8; // type:function size:0x68 +fn_803EB310 = .text:0x803EB310; // type:function size:0x100 +fn_803EB410 = .text:0x803EB410; // type:function size:0x88 +fn_803EB498 = .text:0x803EB498; // type:function size:0xA8 +fn_803EB540 = .text:0x803EB540; // type:function size:0x58 +fn_803EB598 = .text:0x803EB598; // type:function size:0x24 +fn_803EB5BC = .text:0x803EB5BC; // type:function size:0x30 +fn_803EB5EC = .text:0x803EB5EC; // type:function size:0x60 +fn_803EB64C = .text:0x803EB64C; // type:function size:0x4 +fn_803EB650 = .text:0x803EB650; // type:function size:0x88 +fn_803EB6D8 = .text:0x803EB6D8; // type:function size:0x2C +fn_803EB704 = .text:0x803EB704; // type:function size:0xA8 +fn_803EB7AC = .text:0x803EB7AC; // type:function size:0x1EC +fn_803EB998 = .text:0x803EB998; // type:function size:0x114 +fn_803EBAAC = .text:0x803EBAAC; // type:function size:0x64 +fn_803EBB10 = .text:0x803EBB10; // type:function size:0x7DC +fn_803EC2EC = .text:0x803EC2EC; // type:function size:0x94 +fn_803EC380 = .text:0x803EC380; // type:function size:0xE8 +fn_803EC468 = .text:0x803EC468; // type:function size:0x30 +fn_803EC498 = .text:0x803EC498; // type:function size:0xB4 +fn_803EC54C = .text:0x803EC54C; // type:function size:0x34 +fn_803EC580 = .text:0x803EC580; // type:function size:0x8C +fn_803EC60C = .text:0x803EC60C; // type:function size:0xD8 +fn_803EC6E4 = .text:0x803EC6E4; // type:function size:0xA0 +fn_803EC784 = .text:0x803EC784; // type:function size:0x6C +fn_803EC7F0 = .text:0x803EC7F0; // type:function size:0x30 +fn_803EC820 = .text:0x803EC820; // type:function size:0x40 +fn_803EC860 = .text:0x803EC860; // type:function size:0x44 +fn_803EC8A4 = .text:0x803EC8A4; // type:function size:0xA4 +fn_803EC948 = .text:0x803EC948; // type:function size:0x6C +fn_803EC9B4 = .text:0x803EC9B4; // type:function size:0xC +fn_803EC9C0 = .text:0x803EC9C0; // type:function size:0xE0 +fn_803ECAA0 = .text:0x803ECAA0; // type:function size:0x94 +fn_803ECB34 = .text:0x803ECB34; // type:function size:0x70 +fn_803ECBA4 = .text:0x803ECBA4; // type:function size:0x88 +fn_803ECC2C = .text:0x803ECC2C; // type:function size:0x70 +fn_803ECC9C = .text:0x803ECC9C; // type:function size:0x58 +fn_803ECCF4 = .text:0x803ECCF4; // type:function size:0x64 +fn_803ECD58 = .text:0x803ECD58; // type:function size:0x28 +fn_803ECD80 = .text:0x803ECD80; // type:function size:0x28 +fn_803ECDA8 = .text:0x803ECDA8; // type:function size:0x30 +fn_803ECDD8 = .text:0x803ECDD8; // type:function size:0x60 +fn_803ECE38 = .text:0x803ECE38; // type:function size:0x88 +fn_803ECEC0 = .text:0x803ECEC0; // type:function size:0xE8 +fn_803ECFA8 = .text:0x803ECFA8; // type:function size:0x30 +fn_803ECFD8 = .text:0x803ECFD8; // type:function size:0xC4 +fn_803ED09C = .text:0x803ED09C; // type:function size:0x34 +fn_803ED0D0 = .text:0x803ED0D0; // type:function size:0x8C +fn_803ED15C = .text:0x803ED15C; // type:function size:0xE4 +fn_803ED240 = .text:0x803ED240; // type:function size:0xB8 +fn_803ED2F8 = .text:0x803ED2F8; // type:function size:0x6C +fn_803ED364 = .text:0x803ED364; // type:function size:0x30 +fn_803ED394 = .text:0x803ED394; // type:function size:0x40 +fn_803ED3D4 = .text:0x803ED3D4; // type:function size:0x44 +fn_803ED418 = .text:0x803ED418; // type:function size:0x20 +fn_803ED438 = .text:0x803ED438; // type:function size:0xBC +fn_803ED4F4 = .text:0x803ED4F4; // type:function size:0x130 +fn_803ED624 = .text:0x803ED624; // type:function size:0x94 +fn_803ED6B8 = .text:0x803ED6B8; // type:function size:0x70 +fn_803ED728 = .text:0x803ED728; // type:function size:0x90 +fn_803ED7B8 = .text:0x803ED7B8; // type:function size:0x78 +fn_803ED830 = .text:0x803ED830; // type:function size:0x30 +fn_803ED860 = .text:0x803ED860; // type:function size:0x60 +fn_803ED8C0 = .text:0x803ED8C0; // type:function size:0x24 +fn_803ED8E4 = .text:0x803ED8E4; // type:function size:0x58 +fn_803ED93C = .text:0x803ED93C; // type:function size:0x80 +fn_803ED9BC = .text:0x803ED9BC; // type:function size:0x80 +fn_803EDA3C = .text:0x803EDA3C; // type:function size:0x58 +fn_803EDA94 = .text:0x803EDA94; // type:function size:0x54 +fn_803EDAE8 = .text:0x803EDAE8; // type:function size:0x5C +fn_803EDB44 = .text:0x803EDB44; // type:function size:0x6C +fn_803EDBB0 = .text:0x803EDBB0; // type:function size:0x28 +fn_803EDBD8 = .text:0x803EDBD8; // type:function size:0x8 +fn_803EDBE0 = .text:0x803EDBE0; // type:function size:0x3C +fn_803EDC1C = .text:0x803EDC1C; // type:function size:0x4 +fn_803EDC20 = .text:0x803EDC20; // type:function size:0x88 +fn_803EDCA8 = .text:0x803EDCA8; // type:function size:0x2C +fn_803EDCD4 = .text:0x803EDCD4; // type:function size:0x30 +fn_803EDD04 = .text:0x803EDD04; // type:function size:0x30 +fn_803EDD34 = .text:0x803EDD34; // type:function size:0x40 +fn_803EDD74 = .text:0x803EDD74; // type:function size:0xC +fn_803EDD80 = .text:0x803EDD80; // type:function size:0x30 +fn_803EDDB0 = .text:0x803EDDB0; // type:function size:0x4 +fn_803EDDB4 = .text:0x803EDDB4; // type:function size:0x7C +fn_803EDE30 = .text:0x803EDE30; // type:function size:0x4 +fn_803EDE34 = .text:0x803EDE34; // type:function size:0xAC +fn_803EDEE0 = .text:0x803EDEE0; // type:function size:0x40 +fn_803EDF20 = .text:0x803EDF20; // type:function size:0x104 +fn_803EE024 = .text:0x803EE024; // type:function size:0xA8 +fn_803EE0CC = .text:0x803EE0CC; // type:function size:0x8 +fn_803EE0D4 = .text:0x803EE0D4; // type:function size:0x23C +fn_803EE310 = .text:0x803EE310; // type:function size:0x15C +fn_803EE46C = .text:0x803EE46C; // type:function size:0xCC +fn_803EE538 = .text:0x803EE538; // type:function size:0x6C +fn_803EE5A4 = .text:0x803EE5A4; // type:function size:0x114 +fn_803EE6B8 = .text:0x803EE6B8; // type:function size:0x60 +fn_803EE718 = .text:0x803EE718; // type:function size:0x5C +fn_803EE774 = .text:0x803EE774; // type:function size:0x54 +fn_803EE7C8 = .text:0x803EE7C8; // type:function size:0x5C +fn_803EE824 = .text:0x803EE824; // type:function size:0x5C +fn_803EE880 = .text:0x803EE880; // type:function size:0x114 +fn_803EE994 = .text:0x803EE994; // type:function size:0x60 +fn_803EE9F4 = .text:0x803EE9F4; // type:function size:0x5C +fn_803EEA50 = .text:0x803EEA50; // type:function size:0x54 +fn_803EEAA4 = .text:0x803EEAA4; // type:function size:0x5C +fn_803EEB00 = .text:0x803EEB00; // type:function size:0x5C +fn_803EEB5C = .text:0x803EEB5C; // type:function size:0x134 +fn_803EEC90 = .text:0x803EEC90; // type:function size:0x4 +fn_803EEC94 = .text:0x803EEC94; // type:function size:0x8 +fn_803EEC9C = .text:0x803EEC9C; // type:function size:0x8 +fn_803EECA4 = .text:0x803EECA4; // type:function size:0x8 +fn_803EECAC = .text:0x803EECAC; // type:function size:0x8 +fn_803EECB4 = .text:0x803EECB4; // type:function size:0x8 +fn_803EECBC = .text:0x803EECBC; // type:function size:0x8 +fn_803EECC4 = .text:0x803EECC4; // type:function size:0x8 +fn_803EECCC = .text:0x803EECCC; // type:function size:0x8 +fn_803EECD4 = .text:0x803EECD4; // type:function size:0x14 +fn_803EECE8 = .text:0x803EECE8; // type:function size:0x14 +fn_803EECFC = .text:0x803EECFC; // type:function size:0x14 +fn_803EED10 = .text:0x803EED10; // type:function size:0x14 +fn_803EED24 = .text:0x803EED24; // type:function size:0x14 +fn_803EED38 = .text:0x803EED38; // type:function size:0x14 +fn_803EED4C = .text:0x803EED4C; // type:function size:0x14 +fn_803EED60 = .text:0x803EED60; // type:function size:0x14 +fn_803EED74 = .text:0x803EED74; // type:function size:0x14 +fn_803EED88 = .text:0x803EED88; // type:function size:0x14 +fn_803EED9C = .text:0x803EED9C; // type:function size:0x8 +fn_803EEDA4 = .text:0x803EEDA4; // type:function size:0x8 +fn_803EEDAC = .text:0x803EEDAC; // type:function size:0x8 +fn_803EEDB4 = .text:0x803EEDB4; // type:function size:0x8 +fn_803EEDBC = .text:0x803EEDBC; // type:function size:0x8 +fn_803EEDC4 = .text:0x803EEDC4; // type:function size:0x8 +fn_803EEDCC = .text:0x803EEDCC; // type:function size:0x8 +__ct__19ChordShapeGeneratorFv = .text:0x803EEDD4; // type:function size:0x284 +fn_803EF058 = .text:0x803EF058; // type:function size:0x68 +fn_803EF0C0 = .text:0x803EF0C0; // type:function size:0x58 +fn_803EF118 = .text:0x803EF118; // type:function size:0x80 +fn_803EF198 = .text:0x803EF198; // type:function size:0x80 +fn_803EF218 = .text:0x803EF218; // type:function size:0x58 +fn_803EF270 = .text:0x803EF270; // type:function size:0x54 +fn_803EF2C4 = .text:0x803EF2C4; // type:function size:0x5C +fn_803EF320 = .text:0x803EF320; // type:function size:0x6C +fn_803EF38C = .text:0x803EF38C; // type:function size:0x28 +fn_803EF3B4 = .text:0x803EF3B4; // type:function size:0x8 +fn_803EF3BC = .text:0x803EF3BC; // type:function size:0x3C +fn_803EF3F8 = .text:0x803EF3F8; // type:function size:0x58 +fn_803EF450 = .text:0x803EF450; // type:function size:0x60 +fn_803EF4B0 = .text:0x803EF4B0; // type:function size:0x58 +fn_803EF508 = .text:0x803EF508; // type:function size:0x58 +fn_803EF560 = .text:0x803EF560; // type:function size:0x50 +fn_803EF5B0 = .text:0x803EF5B0; // type:function size:0x48 +fn_803EF5F8 = .text:0x803EF5F8; // type:function size:0x44 +fn_803EF63C = .text:0x803EF63C; // type:function size:0x3C +fn_803EF678 = .text:0x803EF678; // type:function size:0x70 +fn_803EF6E8 = .text:0x803EF6E8; // type:function size:0x30 +fn_803EF718 = .text:0x803EF718; // type:function size:0x30 +fn_803EF748 = .text:0x803EF748; // type:function size:0x40 +Copy__19ChordShapeGeneratorFPCQ23Hmx6ObjectQ33Hmx6Object8CopyType = .text:0x803EF788; // type:function size:0x100 +Save__19ChordShapeGeneratorFR9BinStream = .text:0x803EF888; // type:function size:0x4 +Load__19ChordShapeGeneratorFR9BinStream = .text:0x803EF88C; // type:function size:0x174 +fn_803EFA00 = .text:0x803EFA00; // type:function size:0x24 +fn_803EFA24 = .text:0x803EFA24; // type:function size:0x68 +fn_803EFA8C = .text:0x803EFA8C; // type:function size:0xB8 +fn_803EFB44 = .text:0x803EFB44; // type:function size:0x114 +fn_803EFC58 = .text:0x803EFC58; // type:function size:0x40 +fn_803EFC98 = .text:0x803EFC98; // type:function size:0xC4 +fn_803EFD5C = .text:0x803EFD5C; // type:function size:0x61C +fn_803F0378 = .text:0x803F0378; // type:function size:0x58 +fn_803F03D0 = .text:0x803F03D0; // type:function size:0x60 +fn_803F0430 = .text:0x803F0430; // type:function size:0x58 +fn_803F0488 = .text:0x803F0488; // type:function size:0x58 +fn_803F04E0 = .text:0x803F04E0; // type:function size:0x50 +fn_803F0530 = .text:0x803F0530; // type:function size:0x44 +fn_803F0574 = .text:0x803F0574; // type:function size:0x3C +fn_803F05B0 = .text:0x803F05B0; // type:function size:0x70 +fn_803F0620 = .text:0x803F0620; // type:function size:0x4 +fn_803F0624 = .text:0x803F0624; // type:function size:0x3C +fn_803F0660 = .text:0x803F0660; // type:function size:0x1C0 +fn_803F0820 = .text:0x803F0820; // type:function size:0x58 +fn_803F0878 = .text:0x803F0878; // type:function size:0x80 +fn_803F08F8 = .text:0x803F08F8; // type:function size:0x80 +fn_803F0978 = .text:0x803F0978; // type:function size:0x58 +fn_803F09D0 = .text:0x803F09D0; // type:function size:0x58 +fn_803F0A28 = .text:0x803F0A28; // type:function size:0x4 +fn_803F0A2C = .text:0x803F0A2C; // type:function size:0x4 +fn_803F0A30 = .text:0x803F0A30; // type:function size:0x88 +fn_803F0AB8 = .text:0x803F0AB8; // type:function size:0x2C +fn_803F0AE4 = .text:0x803F0AE4; // type:function size:0x30 +fn_803F0B14 = .text:0x803F0B14; // type:function size:0xA0 +fn_803F0BB4 = .text:0x803F0BB4; // type:function size:0x70 +fn_803F0C24 = .text:0x803F0C24; // type:function size:0x34 +fn_803F0C58 = .text:0x803F0C58; // type:function size:0x4 +fn_803F0C5C = .text:0x803F0C5C; // type:function size:0x4 +fn_803F0C60 = .text:0x803F0C60; // type:function size:0x3C +fn_803F0C9C = .text:0x803F0C9C; // type:function size:0x40 +fn_803F0CDC = .text:0x803F0CDC; // type:function size:0x8C +fn_803F0D68 = .text:0x803F0D68; // type:function size:0x8 +fn_803F0D70 = .text:0x803F0D70; // type:function size:0x2C +fn_803F0D9C = .text:0x803F0D9C; // type:function size:0x58 +fn_803F0DF4 = .text:0x803F0DF4; // type:function size:0x28 +fn_803F0E1C = .text:0x803F0E1C; // type:function size:0x68 +fn_803F0E84 = .text:0x803F0E84; // type:function size:0x14 +fn_803F0E98 = .text:0x803F0E98; // type:function size:0x640 +fn_803F14D8 = .text:0x803F14D8; // type:function size:0x4 +fn_803F14DC = .text:0x803F14DC; // type:function size:0x40 +fn_803F151C = .text:0x803F151C; // type:function size:0xAC +fn_803F15C8 = .text:0x803F15C8; // type:function size:0x60 +fn_803F1628 = .text:0x803F1628; // type:function size:0x7C +fn_803F16A4 = .text:0x803F16A4; // type:function size:0x8 +fn_803F16AC = .text:0x803F16AC; // type:function size:0x4 +fn_803F16B0 = .text:0x803F16B0; // type:function size:0x8 +fn_803F16B8 = .text:0x803F16B8; // type:function size:0xFC +fn_803F17B4 = .text:0x803F17B4; // type:function size:0x58 +fn_803F180C = .text:0x803F180C; // type:function size:0x14 +fn_803F1820 = .text:0x803F1820; // type:function size:0x4 +fn_803F1824 = .text:0x803F1824; // type:function size:0x40 +fn_803F1864 = .text:0x803F1864; // type:function size:0x80 +fn_803F18E4 = .text:0x803F18E4; // type:function size:0x4 +fn_803F18E8 = .text:0x803F18E8; // type:function size:0x7C +fn_803F1964 = .text:0x803F1964; // type:function size:0x7E0 +fn_803F2144 = .text:0x803F2144; // type:function size:0x4 +fn_803F2148 = .text:0x803F2148; // type:function size:0xD4 +fn_803F221C = .text:0x803F221C; // type:function size:0x38 +fn_803F2254 = .text:0x803F2254; // type:function size:0x58 +fn_803F22AC = .text:0x803F22AC; // type:function size:0x390 +fn_803F263C = .text:0x803F263C; // type:function size:0x104 +fn_803F2740 = .text:0x803F2740; // type:function size:0xA8 +fn_803F27E8 = .text:0x803F27E8; // type:function size:0x18 +fn_803F2800 = .text:0x803F2800; // type:function size:0x48 +fn_803F2848 = .text:0x803F2848; // type:function size:0x27C +fn_803F2AC4 = .text:0x803F2AC4; // type:function size:0x1C4 +fn_803F2C88 = .text:0x803F2C88; // type:function size:0x2C +fn_803F2CB4 = .text:0x803F2CB4; // type:function size:0x30 +fn_803F2CE4 = .text:0x803F2CE4; // type:function size:0x2A0 +fn_803F2F84 = .text:0x803F2F84; // type:function size:0x2C +fn_803F2FB0 = .text:0x803F2FB0; // type:function size:0x30 +OnGenerateChordShape__19ChordShapeGeneratorFP9DataArray = .text:0x803F2FE0; // type:function size:0x6C +OnInvertChordShape__19ChordShapeGeneratorFP9DataArray = .text:0x803F304C; // type:function size:0x94 +fn_803F30E0 = .text:0x803F30E0; // type:function size:0x34 +fn_803F3114 = .text:0x803F3114; // type:function size:0x3C +fn_803F3150 = .text:0x803F3150; // type:function size:0x1EC +OnSetStringFret__19ChordShapeGeneratorFP9DataArray = .text:0x803F333C; // type:function size:0x70 +fn_803F33AC = .text:0x803F33AC; // type:function size:0x4 +OnGetStringTrans__19ChordShapeGeneratorFP9DataArray = .text:0x803F33B0; // type:function size:0x170 +Handle__19ChordShapeGeneratorFP9DataArrayb = .text:0x803F3520; // type:function size:0x244 +SyncProperty__19ChordShapeGeneratorFR8DataNodeP9DataArrayi6PropOp = .text:0x803F3764; // type:function size:0x6F8 +__dt__19ChordShapeGeneratorFv = .text:0x803F3E5C; // type:function size:0x128 +fn_803F3F84 = .text:0x803F3F84; // type:function size:0x114 +fn_803F4098 = .text:0x803F4098; // type:function size:0x60 +fn_803F40F8 = .text:0x803F40F8; // type:function size:0x5C +fn_803F4154 = .text:0x803F4154; // type:function size:0x54 +fn_803F41A8 = .text:0x803F41A8; // type:function size:0x5C +fn_803F4204 = .text:0x803F4204; // type:function size:0x5C +fn_803F4260 = .text:0x803F4260; // type:function size:0x3B8 +fn_803F4618 = .text:0x803F4618; // type:function size:0x15C +fn_803F4774 = .text:0x803F4774; // type:function size:0x44 +fn_803F47B8 = .text:0x803F47B8; // type:function size:0x6C +fn_803F4824 = .text:0x803F4824; // type:function size:0x2C +fn_803F4850 = .text:0x803F4850; // type:function size:0x15C +fn_803F49AC = .text:0x803F49AC; // type:function size:0x44 +fn_803F49F0 = .text:0x803F49F0; // type:function size:0x8 +fn_803F49F8 = .text:0x803F49F8; // type:function size:0x6C +ClassName__19ChordShapeGeneratorCFv = .text:0x803F4A64; // type:function size:0x4 +SetType__19ChordShapeGeneratorF6Symbol = .text:0x803F4A68; // type:function size:0x128 +fn_803F4B90 = .text:0x803F4B90; // type:function size:0x108 +fn_803F4C98 = .text:0x803F4C98; // type:function size:0x5C +fn_803F4CF4 = .text:0x803F4CF4; // type:function size:0x10 +fn_803F4D04 = .text:0x803F4D04; // type:function size:0x108 +fn_803F4E0C = .text:0x803F4E0C; // type:function size:0x5C +fn_803F4E68 = .text:0x803F4E68; // type:function size:0xC +fn_803F4E74 = .text:0x803F4E74; // type:function size:0x40 +fn_803F4EB4 = .text:0x803F4EB4; // type:function size:0x34 +fn_803F4EE8 = .text:0x803F4EE8; // type:function size:0x44 +StaticClassName__13DialogDisplayFv = .text:0x803F4F2C; // type:function size:0x4C +__ct__13DialogDisplayFv = .text:0x803F4F78; // type:function size:0xCC +fn_803F5044 = .text:0x803F5044; // type:function size:0x84 +fn_803F50C8 = .text:0x803F50C8; // type:function size:0x6C +fn_803F5134 = .text:0x803F5134; // type:function size:0xA4 +fn_803F51D8 = .text:0x803F51D8; // type:function size:0x84 +fn_803F525C = .text:0x803F525C; // type:function size:0x8 +fn_803F5264 = .text:0x803F5264; // type:function size:0x4 +fn_803F5268 = .text:0x803F5268; // type:function size:0x88 +fn_803F52F0 = .text:0x803F52F0; // type:function size:0x40 +fn_803F5330 = .text:0x803F5330; // type:function size:0x104 +fn_803F5434 = .text:0x803F5434; // type:function size:0x64 +fn_803F5498 = .text:0x803F5498; // type:function size:0x98 +fn_803F5530 = .text:0x803F5530; // type:function size:0x8 +fn_803F5538 = .text:0x803F5538; // type:function size:0x48 +fn_803F5580 = .text:0x803F5580; // type:function size:0x8 +fn_803F5588 = .text:0x803F5588; // type:function size:0x48 +fn_803F55D0 = .text:0x803F55D0; // type:function size:0x8 +fn_803F55D8 = .text:0x803F55D8; // type:function size:0x48 +Handle__13DialogDisplayFP9DataArrayb = .text:0x803F5620; // type:function size:0x11C +SyncProperty__13DialogDisplayFR8DataNodeP9DataArrayi6PropOp = .text:0x803F573C; // type:function size:0x264 +fn_803F59A0 = .text:0x803F59A0; // type:function size:0x70 +SetType__13DialogDisplayF6Symbol = .text:0x803F5A10; // type:function size:0x134 +ClassName__13DialogDisplayCFv = .text:0x803F5B44; // type:function size:0x4 +fn_803F5B48 = .text:0x803F5B48; // type:function size:0x14 +fn_803F5B5C = .text:0x803F5B5C; // type:function size:0x14 +fn_803F5B70 = .text:0x803F5B70; // type:function size:0x14 +fn_803F5B84 = .text:0x803F5B84; // type:function size:0x14 +fn_803F5B98 = .text:0x803F5B98; // type:function size:0x14 +fn_803F5BAC = .text:0x803F5BAC; // type:function size:0x14 +fn_803F5BC0 = .text:0x803F5BC0; // type:function size:0x14 +fn_803F5BD4 = .text:0x803F5BD4; // type:function size:0x14 +fn_803F5BE8 = .text:0x803F5BE8; // type:function size:0x224 +fn_803F5E0C = .text:0x803F5E0C; // type:function size:0x84 +fn_803F5E90 = .text:0x803F5E90; // type:function size:0x58 +fn_803F5EE8 = .text:0x803F5EE8; // type:function size:0x80 +fn_803F5F68 = .text:0x803F5F68; // type:function size:0x80 +fn_803F5FE8 = .text:0x803F5FE8; // type:function size:0x58 +fn_803F6040 = .text:0x803F6040; // type:function size:0x54 +fn_803F6094 = .text:0x803F6094; // type:function size:0x5C +fn_803F60F0 = .text:0x803F60F0; // type:function size:0x6C +fn_803F615C = .text:0x803F615C; // type:function size:0x28 +fn_803F6184 = .text:0x803F6184; // type:function size:0x8 +fn_803F618C = .text:0x803F618C; // type:function size:0x58 +fn_803F61E4 = .text:0x803F61E4; // type:function size:0x80 +fn_803F6264 = .text:0x803F6264; // type:function size:0x8 +fn_803F626C = .text:0x803F626C; // type:function size:0x3C +fn_803F62A8 = .text:0x803F62A8; // type:function size:0x58 +fn_803F6300 = .text:0x803F6300; // type:function size:0x80 +fn_803F6380 = .text:0x803F6380; // type:function size:0x80 +fn_803F6400 = .text:0x803F6400; // type:function size:0x58 +fn_803F6458 = .text:0x803F6458; // type:function size:0x54 +fn_803F64AC = .text:0x803F64AC; // type:function size:0x6C +fn_803F6518 = .text:0x803F6518; // type:function size:0x30 +fn_803F6548 = .text:0x803F6548; // type:function size:0x30 +fn_803F6578 = .text:0x803F6578; // type:function size:0x40 +fn_803F65B8 = .text:0x803F65B8; // type:function size:0x30 +fn_803F65E8 = .text:0x803F65E8; // type:function size:0x30 +fn_803F6618 = .text:0x803F6618; // type:function size:0x40 +fn_803F6658 = .text:0x803F6658; // type:function size:0x244 +fn_803F689C = .text:0x803F689C; // type:function size:0x4 +fn_803F68A0 = .text:0x803F68A0; // type:function size:0x88 +fn_803F6928 = .text:0x803F6928; // type:function size:0x2C +fn_803F6954 = .text:0x803F6954; // type:function size:0x10 +fn_803F6964 = .text:0x803F6964; // type:function size:0x5C +fn_803F69C0 = .text:0x803F69C0; // type:function size:0x6C +fn_803F6A2C = .text:0x803F6A2C; // type:function size:0x54 +fn_803F6A80 = .text:0x803F6A80; // type:function size:0x68 +fn_803F6AE8 = .text:0x803F6AE8; // type:function size:0xA0 +fn_803F6B88 = .text:0x803F6B88; // type:function size:0x4 +fn_803F6B8C = .text:0x803F6B8C; // type:function size:0x3C +fn_803F6BC8 = .text:0x803F6BC8; // type:function size:0x40 +fn_803F6C08 = .text:0x803F6C08; // type:function size:0x8C +fn_803F6C94 = .text:0x803F6C94; // type:function size:0x8 +fn_803F6C9C = .text:0x803F6C9C; // type:function size:0x2C +fn_803F6CC8 = .text:0x803F6CC8; // type:function size:0x58 +fn_803F6D20 = .text:0x803F6D20; // type:function size:0x28 +fn_803F6D48 = .text:0x803F6D48; // type:function size:0x68 +fn_803F6DB0 = .text:0x803F6DB0; // type:function size:0x5C +fn_803F6E0C = .text:0x803F6E0C; // type:function size:0x8 +fn_803F6E14 = .text:0x803F6E14; // type:function size:0x80 +fn_803F6E94 = .text:0x803F6E94; // type:function size:0x48 +fn_803F6EDC = .text:0x803F6EDC; // type:function size:0x6C +fn_803F6F48 = .text:0x803F6F48; // type:function size:0x44 +fn_803F6F8C = .text:0x803F6F8C; // type:function size:0x44 +fn_803F6FD0 = .text:0x803F6FD0; // type:function size:0x40 +fn_803F7010 = .text:0x803F7010; // type:function size:0x7C +fn_803F708C = .text:0x803F708C; // type:function size:0x60 +fn_803F70EC = .text:0x803F70EC; // type:function size:0x58 +fn_803F7144 = .text:0x803F7144; // type:function size:0x54 +fn_803F7198 = .text:0x803F7198; // type:function size:0x54 +fn_803F71EC = .text:0x803F71EC; // type:function size:0xA4 +fn_803F7290 = .text:0x803F7290; // type:function size:0x8 +fn_803F7298 = .text:0x803F7298; // type:function size:0x7C +fn_803F7314 = .text:0x803F7314; // type:function size:0x60 +fn_803F7374 = .text:0x803F7374; // type:function size:0x84 +fn_803F73F8 = .text:0x803F73F8; // type:function size:0x58 +fn_803F7450 = .text:0x803F7450; // type:function size:0x10 +fn_803F7460 = .text:0x803F7460; // type:function size:0x8 +fn_803F7468 = .text:0x803F7468; // type:function size:0x21C +fn_803F7684 = .text:0x803F7684; // type:function size:0x50 +fn_803F76D4 = .text:0x803F76D4; // type:function size:0x50 +fn_803F7724 = .text:0x803F7724; // type:function size:0x5C +fn_803F7780 = .text:0x803F7780; // type:function size:0x2C0 +fn_803F7A40 = .text:0x803F7A40; // type:function size:0xC0 +fn_803F7B00 = .text:0x803F7B00; // type:function size:0x4 +fn_803F7B04 = .text:0x803F7B04; // type:function size:0x4 +fn_803F7B08 = .text:0x803F7B08; // type:function size:0x4 +fn_803F7B0C = .text:0x803F7B0C; // type:function size:0x4 +fn_803F7B10 = .text:0x803F7B10; // type:function size:0x3C +fn_803F7B4C = .text:0x803F7B4C; // type:function size:0x120 +fn_803F7C6C = .text:0x803F7C6C; // type:function size:0x114 +fn_803F7D80 = .text:0x803F7D80; // type:function size:0x60 +fn_803F7DE0 = .text:0x803F7DE0; // type:function size:0x5C +fn_803F7E3C = .text:0x803F7E3C; // type:function size:0x54 +fn_803F7E90 = .text:0x803F7E90; // type:function size:0x5C +fn_803F7EEC = .text:0x803F7EEC; // type:function size:0x5C +fn_803F7F48 = .text:0x803F7F48; // type:function size:0x6C +fn_803F7FB4 = .text:0x803F7FB4; // type:function size:0x70 +fn_803F8024 = .text:0x803F8024; // type:function size:0x134 +fn_803F8158 = .text:0x803F8158; // type:function size:0x4 +fn_803F815C = .text:0x803F815C; // type:function size:0x8 +fn_803F8164 = .text:0x803F8164; // type:function size:0x8 +fn_803F816C = .text:0x803F816C; // type:function size:0x8 +fn_803F8174 = .text:0x803F8174; // type:function size:0x8 +fn_803F817C = .text:0x803F817C; // type:function size:0x8 +fn_803F8184 = .text:0x803F8184; // type:function size:0x8 +fn_803F818C = .text:0x803F818C; // type:function size:0x8 +fn_803F8194 = .text:0x803F8194; // type:function size:0x8 +fn_803F819C = .text:0x803F819C; // type:function size:0x8 +fn_803F81A4 = .text:0x803F81A4; // type:function size:0x8 +fn_803F81AC = .text:0x803F81AC; // type:function size:0x8 +fn_803F81B4 = .text:0x803F81B4; // type:function size:0x8 +fn_803F81BC = .text:0x803F81BC; // type:function size:0x8 +fn_803F81C4 = .text:0x803F81C4; // type:function size:0x8 +fn_803F81CC = .text:0x803F81CC; // type:function size:0x14 +fn_803F81E0 = .text:0x803F81E0; // type:function size:0x14 +fn_803F81F4 = .text:0x803F81F4; // type:function size:0x8 +fn_803F81FC = .text:0x803F81FC; // type:function size:0x8 +fn_803F8204 = .text:0x803F8204; // type:function size:0x8 +fn_803F820C = .text:0x803F820C; // type:function size:0x8 +fn_803F8214 = .text:0x803F8214; // type:function size:0x8 +fn_803F821C = .text:0x803F821C; // type:function size:0x8 +fn_803F8224 = .text:0x803F8224; // type:function size:0x8 +fn_803F822C = .text:0x803F822C; // type:function size:0x8 +fn_803F8234 = .text:0x803F8234; // type:function size:0x8 +fn_803F823C = .text:0x803F823C; // type:function size:0x8 +fn_803F8244 = .text:0x803F8244; // type:function size:0x8 +fn_803F824C = .text:0x803F824C; // type:function size:0x14 +fn_803F8260 = .text:0x803F8260; // type:function size:0x14 +fn_803F8274 = .text:0x803F8274; // type:function size:0x14 +fn_803F8288 = .text:0x803F8288; // type:function size:0x14 +fn_803F829C = .text:0x803F829C; // type:function size:0x14 +fn_803F82B0 = .text:0x803F82B0; // type:function size:0x14 +fn_803F82C4 = .text:0x803F82C4; // type:function size:0x14 +fn_803F82D8 = .text:0x803F82D8; // type:function size:0x14 +fn_803F82EC = .text:0x803F82EC; // type:function size:0x14 +fn_803F8300 = .text:0x803F8300; // type:function size:0x14 +fn_803F8314 = .text:0x803F8314; // type:function size:0x14 +fn_803F8328 = .text:0x803F8328; // type:function size:0x14 +fn_803F833C = .text:0x803F833C; // type:function size:0x14 +fn_803F8350 = .text:0x803F8350; // type:function size:0x14 +fn_803F8364 = .text:0x803F8364; // type:function size:0x14 +fn_803F8378 = .text:0x803F8378; // type:function size:0x8 +fn_803F8380 = .text:0x803F8380; // type:function size:0x8 +fn_803F8388 = .text:0x803F8388; // type:function size:0x8 +fn_803F8390 = .text:0x803F8390; // type:function size:0x8 +fn_803F8398 = .text:0x803F8398; // type:function size:0x8 +fn_803F83A0 = .text:0x803F83A0; // type:function size:0x37C +fn_803F871C = .text:0x803F871C; // type:function size:0x84 +fn_803F87A0 = .text:0x803F87A0; // type:function size:0x28C +fn_803F8A2C = .text:0x803F8A2C; // type:function size:0xA8 +fn_803F8AD4 = .text:0x803F8AD4; // type:function size:0x24 +fn_803F8AF8 = .text:0x803F8AF8; // type:function size:0x54 +fn_803F8B4C = .text:0x803F8B4C; // type:function size:0x6C +fn_803F8BB8 = .text:0x803F8BB8; // type:function size:0xC +fn_803F8BC4 = .text:0x803F8BC4; // type:function size:0x50 +fn_803F8C14 = .text:0x803F8C14; // type:function size:0xC4 +fn_803F8CD8 = .text:0x803F8CD8; // type:function size:0x178 +fn_803F8E50 = .text:0x803F8E50; // type:function size:0x50 +fn_803F8EA0 = .text:0x803F8EA0; // type:function size:0x34 +fn_803F8ED4 = .text:0x803F8ED4; // type:function size:0x44 +fn_803F8F18 = .text:0x803F8F18; // type:function size:0x4C +fn_803F8F64 = .text:0x803F8F64; // type:function size:0x48 +fn_803F8FAC = .text:0x803F8FAC; // type:function size:0x4C +fn_803F8FF8 = .text:0x803F8FF8; // type:function size:0x104 +fn_803F90FC = .text:0x803F90FC; // type:function size:0x58 +fn_803F9154 = .text:0x803F9154; // type:function size:0x58 +fn_803F91AC = .text:0x803F91AC; // type:function size:0x58 +fn_803F9204 = .text:0x803F9204; // type:function size:0x60 +fn_803F9264 = .text:0x803F9264; // type:function size:0x58 +fn_803F92BC = .text:0x803F92BC; // type:function size:0x50 +fn_803F930C = .text:0x803F930C; // type:function size:0x30 +fn_803F933C = .text:0x803F933C; // type:function size:0x30 +fn_803F936C = .text:0x803F936C; // type:function size:0x60 +fn_803F93CC = .text:0x803F93CC; // type:function size:0x54 +fn_803F9420 = .text:0x803F9420; // type:function size:0x20 +fn_803F9440 = .text:0x803F9440; // type:function size:0x170 +fn_803F95B0 = .text:0x803F95B0; // type:function size:0x4 +fn_803F95B4 = .text:0x803F95B4; // type:function size:0x4 +fn_803F95B8 = .text:0x803F95B8; // type:function size:0x4 +fn_803F95BC = .text:0x803F95BC; // type:function size:0x8 +fn_803F95C4 = .text:0x803F95C4; // type:function size:0x54C +fn_803F9B10 = .text:0x803F9B10; // type:function size:0x78 +fn_803F9B88 = .text:0x803F9B88; // type:function size:0x58 +fn_803F9BE0 = .text:0x803F9BE0; // type:function size:0x130 +fn_803F9D10 = .text:0x803F9D10; // type:function size:0x40 +fn_803F9D50 = .text:0x803F9D50; // type:function size:0xE8 +fn_803F9E38 = .text:0x803F9E38; // type:function size:0x104 +fn_803F9F3C = .text:0x803F9F3C; // type:function size:0x4 +fn_803F9F40 = .text:0x803F9F40; // type:function size:0xB8 +fn_803F9FF8 = .text:0x803F9FF8; // type:function size:0xAC +fn_803FA0A4 = .text:0x803FA0A4; // type:function size:0x34 +fn_803FA0D8 = .text:0x803FA0D8; // type:function size:0x5C +fn_803FA134 = .text:0x803FA134; // type:function size:0xA4 +fn_803FA1D8 = .text:0x803FA1D8; // type:function size:0x4 +fn_803FA1DC = .text:0x803FA1DC; // type:function size:0xF4 +fn_803FA2D0 = .text:0x803FA2D0; // type:function size:0xA4 +fn_803FA374 = .text:0x803FA374; // type:function size:0x68 +fn_803FA3DC = .text:0x803FA3DC; // type:function size:0x290 +fn_803FA66C = .text:0x803FA66C; // type:function size:0x4 +fn_803FA670 = .text:0x803FA670; // type:function size:0x4 +fn_803FA674 = .text:0x803FA674; // type:function size:0x4 +fn_803FA678 = .text:0x803FA678; // type:function size:0x4 +fn_803FA67C = .text:0x803FA67C; // type:function size:0x504 +fn_803FAB80 = .text:0x803FAB80; // type:function size:0xCC +fn_803FAC4C = .text:0x803FAC4C; // type:function size:0xA4 +fn_803FACF0 = .text:0x803FACF0; // type:function size:0x164 +fn_803FAE54 = .text:0x803FAE54; // type:function size:0x2C +fn_803FAE80 = .text:0x803FAE80; // type:function size:0x84 +fn_803FAF04 = .text:0x803FAF04; // type:function size:0x2C +fn_803FAF30 = .text:0x803FAF30; // type:function size:0x110 +fn_803FB040 = .text:0x803FB040; // type:function size:0x1A8 +fn_803FB1E8 = .text:0x803FB1E8; // type:function size:0x58 +fn_803FB240 = .text:0x803FB240; // type:function size:0x64 +fn_803FB2A4 = .text:0x803FB2A4; // type:function size:0x50 +fn_803FB2F4 = .text:0x803FB2F4; // type:function size:0x10 +fn_803FB304 = .text:0x803FB304; // type:function size:0xD0 +fn_803FB3D4 = .text:0x803FB3D4; // type:function size:0x30 +fn_803FB404 = .text:0x803FB404; // type:function size:0x98 +fn_803FB49C = .text:0x803FB49C; // type:function size:0x70 +fn_803FB50C = .text:0x803FB50C; // type:function size:0x68 +fn_803FB574 = .text:0x803FB574; // type:function size:0xC +fn_803FB580 = .text:0x803FB580; // type:function size:0x50 +fn_803FB5D0 = .text:0x803FB5D0; // type:function size:0x6C +fn_803FB63C = .text:0x803FB63C; // type:function size:0x10 +fn_803FB64C = .text:0x803FB64C; // type:function size:0x2C +fn_803FB678 = .text:0x803FB678; // type:function size:0x8 +fn_803FB680 = .text:0x803FB680; // type:function size:0x5C +fn_803FB6DC = .text:0x803FB6DC; // type:function size:0x4C +fn_803FB728 = .text:0x803FB728; // type:function size:0x70 +fn_803FB798 = .text:0x803FB798; // type:function size:0x30 +fn_803FB7C8 = .text:0x803FB7C8; // type:function size:0x2C +fn_803FB7F4 = .text:0x803FB7F4; // type:function size:0x190 +fn_803FB984 = .text:0x803FB984; // type:function size:0xA8 +fn_803FBA2C = .text:0x803FBA2C; // type:function size:0x58 +fn_803FBA84 = .text:0x803FBA84; // type:function size:0x68 +fn_803FBAEC = .text:0x803FBAEC; // type:function size:0xE4 +fn_803FBBD0 = .text:0x803FBBD0; // type:function size:0x54 +fn_803FBC24 = .text:0x803FBC24; // type:function size:0x6C +fn_803FBC90 = .text:0x803FBC90; // type:function size:0x8C +fn_803FBD1C = .text:0x803FBD1C; // type:function size:0x134 +fn_803FBE50 = .text:0x803FBE50; // type:function size:0x4 +fn_803FBE54 = .text:0x803FBE54; // type:function size:0x8 +fn_803FBE5C = .text:0x803FBE5C; // type:function size:0x8 +fn_803FBE64 = .text:0x803FBE64; // type:function size:0x8 +fn_803FBE6C = .text:0x803FBE6C; // type:function size:0x8 +fn_803FBE74 = .text:0x803FBE74; // type:function size:0x8 +fn_803FBE7C = .text:0x803FBE7C; // type:function size:0x8 +fn_803FBE84 = .text:0x803FBE84; // type:function size:0x8 +fn_803FBE8C = .text:0x803FBE8C; // type:function size:0x8 +fn_803FBE94 = .text:0x803FBE94; // type:function size:0x8 +fn_803FBE9C = .text:0x803FBE9C; // type:function size:0x8 +fn_803FBEA4 = .text:0x803FBEA4; // type:function size:0x8 +fn_803FBEAC = .text:0x803FBEAC; // type:function size:0x8 +fn_803FBEB4 = .text:0x803FBEB4; // type:function size:0x8 +fn_803FBEBC = .text:0x803FBEBC; // type:function size:0x8 +fn_803FBEC4 = .text:0x803FBEC4; // type:function size:0x8 +fn_803FBECC = .text:0x803FBECC; // type:function size:0x8 +fn_803FBED4 = .text:0x803FBED4; // type:function size:0x14 +fn_803FBEE8 = .text:0x803FBEE8; // type:function size:0x14 +fn_803FBEFC = .text:0x803FBEFC; // type:function size:0x8 +fn_803FBF04 = .text:0x803FBF04; // type:function size:0x8 +fn_803FBF0C = .text:0x803FBF0C; // type:function size:0x8 +fn_803FBF14 = .text:0x803FBF14; // type:function size:0x8 +fn_803FBF1C = .text:0x803FBF1C; // type:function size:0x8 +fn_803FBF24 = .text:0x803FBF24; // type:function size:0x8 +fn_803FBF2C = .text:0x803FBF2C; // type:function size:0x8 +fn_803FBF34 = .text:0x803FBF34; // type:function size:0x8 +fn_803FBF3C = .text:0x803FBF3C; // type:function size:0x8 +fn_803FBF44 = .text:0x803FBF44; // type:function size:0x8 +fn_803FBF4C = .text:0x803FBF4C; // type:function size:0x8 +fn_803FBF54 = .text:0x803FBF54; // type:function size:0x14 +fn_803FBF68 = .text:0x803FBF68; // type:function size:0x14 +fn_803FBF7C = .text:0x803FBF7C; // type:function size:0x14 +fn_803FBF90 = .text:0x803FBF90; // type:function size:0x14 +fn_803FBFA4 = .text:0x803FBFA4; // type:function size:0x14 +fn_803FBFB8 = .text:0x803FBFB8; // type:function size:0x14 +fn_803FBFCC = .text:0x803FBFCC; // type:function size:0x14 +fn_803FBFE0 = .text:0x803FBFE0; // type:function size:0x14 +fn_803FBFF4 = .text:0x803FBFF4; // type:function size:0x14 +fn_803FC008 = .text:0x803FC008; // type:function size:0x14 +fn_803FC01C = .text:0x803FC01C; // type:function size:0x14 +fn_803FC030 = .text:0x803FC030; // type:function size:0x14 +fn_803FC044 = .text:0x803FC044; // type:function size:0x14 +fn_803FC058 = .text:0x803FC058; // type:function size:0x14 +fn_803FC06C = .text:0x803FC06C; // type:function size:0x14 +fn_803FC080 = .text:0x803FC080; // type:function size:0x8 +fn_803FC088 = .text:0x803FC088; // type:function size:0x8 +fn_803FC090 = .text:0x803FC090; // type:function size:0x8 +fn_803FC098 = .text:0x803FC098; // type:function size:0x8 +fn_803FC0A0 = .text:0x803FC0A0; // type:function size:0x8 +__ct__8NoteTubeFv = .text:0x803FC0A8; // type:function size:0xBC +fn_803FC164 = .text:0x803FC164; // type:function size:0x4 +fn_803FC168 = .text:0x803FC168; // type:function size:0x4C +fn_803FC1B4 = .text:0x803FC1B4; // type:function size:0x5C +fn_803FC210 = .text:0x803FC210; // type:function size:0xC +fn_803FC21C = .text:0x803FC21C; // type:function size:0x4C +fn_803FC268 = .text:0x803FC268; // type:function size:0x6C +fn_803FC2D4 = .text:0x803FC2D4; // type:function size:0x200 +fn_803FC4D4 = .text:0x803FC4D4; // type:function size:0xA8 +fn_803FC57C = .text:0x803FC57C; // type:function size:0x28 +fn_803FC5A4 = .text:0x803FC5A4; // type:function size:0xF4 +fn_803FC698 = .text:0x803FC698; // type:function size:0xAC4 +fn_803FD15C = .text:0x803FD15C; // type:function size:0xD8 +fn_803FD234 = .text:0x803FD234; // type:function size:0xA0 +fn_803FD2D4 = .text:0x803FD2D4; // type:function size:0x78 +fn_803FD34C = .text:0x803FD34C; // type:function size:0xFC +fn_803FD448 = .text:0x803FD448; // type:function size:0x8 +fn_803FD450 = .text:0x803FD450; // type:function size:0xF4 +fn_803FD544 = .text:0x803FD544; // type:function size:0xA8 +fn_803FD5EC = .text:0x803FD5EC; // type:function size:0x28 +fn_803FD614 = .text:0x803FD614; // type:function size:0xC +fn_803FD620 = .text:0x803FD620; // type:function size:0x14 +fn_803FD634 = .text:0x803FD634; // type:function size:0xB0 +fn_803FD6E4 = .text:0x803FD6E4; // type:function size:0x7C +fn_803FD760 = .text:0x803FD760; // type:function size:0x14 +fn_803FD774 = .text:0x803FD774; // type:function size:0xDC +fn_803FD850 = .text:0x803FD850; // type:function size:0xCC +fn_803FD91C = .text:0x803FD91C; // type:function size:0x5C +fn_803FD978 = .text:0x803FD978; // type:function size:0x60 +fn_803FD9D8 = .text:0x803FD9D8; // type:function size:0x10 +fn_803FD9E8 = .text:0x803FD9E8; // type:function size:0xBC +fn_803FDAA4 = .text:0x803FDAA4; // type:function size:0x58 +fn_803FDAFC = .text:0x803FDAFC; // type:function size:0x58 +fn_803FDB54 = .text:0x803FDB54; // type:function size:0x80 +fn_803FDBD4 = .text:0x803FDBD4; // type:function size:0x80 +fn_803FDC54 = .text:0x803FDC54; // type:function size:0x58 +fn_803FDCAC = .text:0x803FDCAC; // type:function size:0x54 +fn_803FDD00 = .text:0x803FDD00; // type:function size:0x5C +fn_803FDD5C = .text:0x803FDD5C; // type:function size:0x6C +fn_803FDDC8 = .text:0x803FDDC8; // type:function size:0x28 +fn_803FDDF0 = .text:0x803FDDF0; // type:function size:0x8 +fn_803FDDF8 = .text:0x803FDDF8; // type:function size:0x3C +fn_803FDE34 = .text:0x803FDE34; // type:function size:0x50 +fn_803FDE84 = .text:0x803FDE84; // type:function size:0x30 +fn_803FDEB4 = .text:0x803FDEB4; // type:function size:0x30 +fn_803FDEE4 = .text:0x803FDEE4; // type:function size:0x40 +fn_803FDF24 = .text:0x803FDF24; // type:function size:0x6C +fn_803FDF90 = .text:0x803FDF90; // type:function size:0xD0 +fn_803FE060 = .text:0x803FE060; // type:function size:0x1A4 +fn_803FE204 = .text:0x803FE204; // type:function size:0x1B4 +fn_803FE3B8 = .text:0x803FE3B8; // type:function size:0x594 +fn_803FE94C = .text:0x803FE94C; // type:function size:0x8 +fn_803FE954 = .text:0x803FE954; // type:function size:0x28 +fn_803FE97C = .text:0x803FE97C; // type:function size:0x28 +fn_803FE9A4 = .text:0x803FE9A4; // type:function size:0x8 +fn_803FE9AC = .text:0x803FE9AC; // type:function size:0x5C +fn_803FEA08 = .text:0x803FEA08; // type:function size:0x1D0 +fn_803FEBD8 = .text:0x803FEBD8; // type:function size:0x5C +fn_803FEC34 = .text:0x803FEC34; // type:function size:0x58 +fn_803FEC8C = .text:0x803FEC8C; // type:function size:0x58 +fn_803FECE4 = .text:0x803FECE4; // type:function size:0x80 +fn_803FED64 = .text:0x803FED64; // type:function size:0x80 +fn_803FEDE4 = .text:0x803FEDE4; // type:function size:0x58 +fn_803FEE3C = .text:0x803FEE3C; // type:function size:0x54 +fn_803FEE90 = .text:0x803FEE90; // type:function size:0x5C +fn_803FEEEC = .text:0x803FEEEC; // type:function size:0x6C +fn_803FEF58 = .text:0x803FEF58; // type:function size:0x28 +fn_803FEF80 = .text:0x803FEF80; // type:function size:0x8 +fn_803FEF88 = .text:0x803FEF88; // type:function size:0x68 +fn_803FEFF0 = .text:0x803FEFF0; // type:function size:0x8 +fn_803FEFF8 = .text:0x803FEFF8; // type:function size:0x3C +fn_803FF034 = .text:0x803FF034; // type:function size:0x50 +fn_803FF084 = .text:0x803FF084; // type:function size:0x30 +fn_803FF0B4 = .text:0x803FF0B4; // type:function size:0x30 +fn_803FF0E4 = .text:0x803FF0E4; // type:function size:0x40 +fn_803FF124 = .text:0x803FF124; // type:function size:0x38 +fn_803FF15C = .text:0x803FF15C; // type:function size:0x48C +fn_803FF5E8 = .text:0x803FF5E8; // type:function size:0x40 +fn_803FF628 = .text:0x803FF628; // type:function size:0x3C +fn_803FF664 = .text:0x803FF664; // type:function size:0x1C8 +fn_803FF82C = .text:0x803FF82C; // type:function size:0x48 +fn_803FF874 = .text:0x803FF874; // type:function size:0x34 +fn_803FF8A8 = .text:0x803FF8A8; // type:function size:0x48 +fn_803FF8F0 = .text:0x803FF8F0; // type:function size:0x4C +fn_803FF93C = .text:0x803FF93C; // type:function size:0xA4 +fn_803FF9E0 = .text:0x803FF9E0; // type:function size:0x1D8 +fn_803FFBB8 = .text:0x803FFBB8; // type:function size:0x58 +fn_803FFC10 = .text:0x803FFC10; // type:function size:0x58 +fn_803FFC68 = .text:0x803FFC68; // type:function size:0x80 +fn_803FFCE8 = .text:0x803FFCE8; // type:function size:0x80 +fn_803FFD68 = .text:0x803FFD68; // type:function size:0x58 +fn_803FFDC0 = .text:0x803FFDC0; // type:function size:0x54 +fn_803FFE14 = .text:0x803FFE14; // type:function size:0x5C +fn_803FFE70 = .text:0x803FFE70; // type:function size:0x6C +fn_803FFEDC = .text:0x803FFEDC; // type:function size:0x28 +fn_803FFF04 = .text:0x803FFF04; // type:function size:0x8 +fn_803FFF0C = .text:0x803FFF0C; // type:function size:0x5C +fn_803FFF68 = .text:0x803FFF68; // type:function size:0x8 +fn_803FFF70 = .text:0x803FFF70; // type:function size:0x3C +fn_803FFFAC = .text:0x803FFFAC; // type:function size:0x84 +fn_80400030 = .text:0x80400030; // type:function size:0x58 +fn_80400088 = .text:0x80400088; // type:function size:0x58 +fn_804000E0 = .text:0x804000E0; // type:function size:0x80 +fn_80400160 = .text:0x80400160; // type:function size:0x80 +fn_804001E0 = .text:0x804001E0; // type:function size:0x58 +fn_80400238 = .text:0x80400238; // type:function size:0x54 +fn_8040028C = .text:0x8040028C; // type:function size:0x5C +fn_804002E8 = .text:0x804002E8; // type:function size:0x6C +fn_80400354 = .text:0x80400354; // type:function size:0x28 +fn_8040037C = .text:0x8040037C; // type:function size:0x10 +fn_8040038C = .text:0x8040038C; // type:function size:0x8 +fn_80400394 = .text:0x80400394; // type:function size:0x68 +fn_804003FC = .text:0x804003FC; // type:function size:0xC +fn_80400408 = .text:0x80400408; // type:function size:0x8 +fn_80400410 = .text:0x80400410; // type:function size:0x3C +fn_8040044C = .text:0x8040044C; // type:function size:0x14 +fn_80400460 = .text:0x80400460; // type:function size:0x58 +fn_804004B8 = .text:0x804004B8; // type:function size:0x58 +fn_80400510 = .text:0x80400510; // type:function size:0x80 +fn_80400590 = .text:0x80400590; // type:function size:0x80 +fn_80400610 = .text:0x80400610; // type:function size:0x58 +fn_80400668 = .text:0x80400668; // type:function size:0x54 +fn_804006BC = .text:0x804006BC; // type:function size:0x5C +fn_80400718 = .text:0x80400718; // type:function size:0x6C +fn_80400784 = .text:0x80400784; // type:function size:0x28 +fn_804007AC = .text:0x804007AC; // type:function size:0x8 +fn_804007B4 = .text:0x804007B4; // type:function size:0x68 +fn_8040081C = .text:0x8040081C; // type:function size:0x8 +fn_80400824 = .text:0x80400824; // type:function size:0x3C +fn_80400860 = .text:0x80400860; // type:function size:0x58 +fn_804008B8 = .text:0x804008B8; // type:function size:0x80 +fn_80400938 = .text:0x80400938; // type:function size:0x80 +fn_804009B8 = .text:0x804009B8; // type:function size:0x58 +fn_80400A10 = .text:0x80400A10; // type:function size:0x54 +fn_80400A64 = .text:0x80400A64; // type:function size:0x5C +fn_80400AC0 = .text:0x80400AC0; // type:function size:0x6C +fn_80400B2C = .text:0x80400B2C; // type:function size:0x28 +fn_80400B54 = .text:0x80400B54; // type:function size:0x8 +fn_80400B5C = .text:0x80400B5C; // type:function size:0x80 +fn_80400BDC = .text:0x80400BDC; // type:function size:0x58 +fn_80400C34 = .text:0x80400C34; // type:function size:0x80 +fn_80400CB4 = .text:0x80400CB4; // type:function size:0x80 +fn_80400D34 = .text:0x80400D34; // type:function size:0x58 +fn_80400D8C = .text:0x80400D8C; // type:function size:0x54 +fn_80400DE0 = .text:0x80400DE0; // type:function size:0x5C +fn_80400E3C = .text:0x80400E3C; // type:function size:0x6C +fn_80400EA8 = .text:0x80400EA8; // type:function size:0x28 +fn_80400ED0 = .text:0x80400ED0; // type:function size:0x8 +fn_80400ED8 = .text:0x80400ED8; // type:function size:0x3C +fn_80400F14 = .text:0x80400F14; // type:function size:0x8 +fn_80400F1C = .text:0x80400F1C; // type:function size:0x3C +fn_80400F58 = .text:0x80400F58; // type:function size:0x58 +fn_80400FB0 = .text:0x80400FB0; // type:function size:0x58 +fn_80401008 = .text:0x80401008; // type:function size:0x80 +fn_80401088 = .text:0x80401088; // type:function size:0x80 +fn_80401108 = .text:0x80401108; // type:function size:0x58 +fn_80401160 = .text:0x80401160; // type:function size:0x10 +fn_80401170 = .text:0x80401170; // type:function size:0x54 +fn_804011C4 = .text:0x804011C4; // type:function size:0x5C +fn_80401220 = .text:0x80401220; // type:function size:0x6C +fn_8040128C = .text:0x8040128C; // type:function size:0x28 +fn_804012B4 = .text:0x804012B4; // type:function size:0x10 +fn_804012C4 = .text:0x804012C4; // type:function size:0x8 +fn_804012CC = .text:0x804012CC; // type:function size:0xB0 +fn_8040137C = .text:0x8040137C; // type:function size:0xC +fn_80401388 = .text:0x80401388; // type:function size:0x8 +fn_80401390 = .text:0x80401390; // type:function size:0x3C +fn_804013CC = .text:0x804013CC; // type:function size:0x14 +fn_804013E0 = .text:0x804013E0; // type:function size:0x50 +fn_80401430 = .text:0x80401430; // type:function size:0x30 +fn_80401460 = .text:0x80401460; // type:function size:0x30 +fn_80401490 = .text:0x80401490; // type:function size:0x40 +fn_804014D0 = .text:0x804014D0; // type:function size:0x6C +fn_8040153C = .text:0x8040153C; // type:function size:0x50 +fn_8040158C = .text:0x8040158C; // type:function size:0x30 +fn_804015BC = .text:0x804015BC; // type:function size:0x30 +fn_804015EC = .text:0x804015EC; // type:function size:0x40 +fn_8040162C = .text:0x8040162C; // type:function size:0x50 +fn_8040167C = .text:0x8040167C; // type:function size:0x30 +fn_804016AC = .text:0x804016AC; // type:function size:0x30 +fn_804016DC = .text:0x804016DC; // type:function size:0x40 +fn_8040171C = .text:0x8040171C; // type:function size:0x30 +fn_8040174C = .text:0x8040174C; // type:function size:0x30 +fn_8040177C = .text:0x8040177C; // type:function size:0x40 +fn_804017BC = .text:0x804017BC; // type:function size:0x50 +fn_8040180C = .text:0x8040180C; // type:function size:0x30 +fn_8040183C = .text:0x8040183C; // type:function size:0x30 +fn_8040186C = .text:0x8040186C; // type:function size:0x40 +fn_804018AC = .text:0x804018AC; // type:function size:0x4C +fn_804018F8 = .text:0x804018F8; // type:function size:0xC +fn_80401904 = .text:0x80401904; // type:function size:0x74 +fn_80401978 = .text:0x80401978; // type:function size:0x2BC +fn_80401C34 = .text:0x80401C34; // type:function size:0xD8 +fn_80401D0C = .text:0x80401D0C; // type:function size:0x40 +fn_80401D4C = .text:0x80401D4C; // type:function size:0x104 +fn_80401E50 = .text:0x80401E50; // type:function size:0x74 +fn_80401EC4 = .text:0x80401EC4; // type:function size:0x60 +fn_80401F24 = .text:0x80401F24; // type:function size:0x4 +fn_80401F28 = .text:0x80401F28; // type:function size:0x90 +fn_80401FB8 = .text:0x80401FB8; // type:function size:0x4 +fn_80401FBC = .text:0x80401FBC; // type:function size:0x40 +fn_80401FFC = .text:0x80401FFC; // type:function size:0x8C +fn_80402088 = .text:0x80402088; // type:function size:0x8 +fn_80402090 = .text:0x80402090; // type:function size:0x2C +fn_804020BC = .text:0x804020BC; // type:function size:0x58 +fn_80402114 = .text:0x80402114; // type:function size:0x28 +fn_8040213C = .text:0x8040213C; // type:function size:0x68 +fn_804021A4 = .text:0x804021A4; // type:function size:0x11C +fn_804022C0 = .text:0x804022C0; // type:function size:0x78 +fn_80402338 = .text:0x80402338; // type:function size:0xFC +fn_80402434 = .text:0x80402434; // type:function size:0x74 +fn_804024A8 = .text:0x804024A8; // type:function size:0x5C +fn_80402504 = .text:0x80402504; // type:function size:0x4 +fn_80402508 = .text:0x80402508; // type:function size:0x90 +fn_80402598 = .text:0x80402598; // type:function size:0x4 +fn_8040259C = .text:0x8040259C; // type:function size:0x40 +fn_804025DC = .text:0x804025DC; // type:function size:0x8C +fn_80402668 = .text:0x80402668; // type:function size:0x8 +fn_80402670 = .text:0x80402670; // type:function size:0x2C +fn_8040269C = .text:0x8040269C; // type:function size:0x58 +fn_804026F4 = .text:0x804026F4; // type:function size:0x28 +fn_8040271C = .text:0x8040271C; // type:function size:0x68 +fn_80402784 = .text:0x80402784; // type:function size:0x58 +fn_804027DC = .text:0x804027DC; // type:function size:0x30 +fn_8040280C = .text:0x8040280C; // type:function size:0x5C +fn_80402868 = .text:0x80402868; // type:function size:0x48 +fn_804028B0 = .text:0x804028B0; // type:function size:0x48 +fn_804028F8 = .text:0x804028F8; // type:function size:0x90 +fn_80402988 = .text:0x80402988; // type:function size:0x84 +fn_80402A0C = .text:0x80402A0C; // type:function size:0x4 +fn_80402A10 = .text:0x80402A10; // type:function size:0x90 +fn_80402AA0 = .text:0x80402AA0; // type:function size:0x4 +fn_80402AA4 = .text:0x80402AA4; // type:function size:0x40 +fn_80402AE4 = .text:0x80402AE4; // type:function size:0x8C +fn_80402B70 = .text:0x80402B70; // type:function size:0x8 +fn_80402B78 = .text:0x80402B78; // type:function size:0x2C +fn_80402BA4 = .text:0x80402BA4; // type:function size:0x58 +fn_80402BFC = .text:0x80402BFC; // type:function size:0x28 +fn_80402C24 = .text:0x80402C24; // type:function size:0x68 +fn_80402C8C = .text:0x80402C8C; // type:function size:0x4 +fn_80402C90 = .text:0x80402C90; // type:function size:0x6C +fn_80402CFC = .text:0x80402CFC; // type:function size:0x48 +fn_80402D44 = .text:0x80402D44; // type:function size:0xAC +fn_80402DF0 = .text:0x80402DF0; // type:function size:0x4 +fn_80402DF4 = .text:0x80402DF4; // type:function size:0x4 +fn_80402DF8 = .text:0x80402DF8; // type:function size:0x34 +fn_80402E2C = .text:0x80402E2C; // type:function size:0x4 +fn_80402E30 = .text:0x80402E30; // type:function size:0x8 +fn_80402E38 = .text:0x80402E38; // type:function size:0x5C +fn_80402E94 = .text:0x80402E94; // type:function size:0x80 +fn_80402F14 = .text:0x80402F14; // type:function size:0x4 +fn_80402F18 = .text:0x80402F18; // type:function size:0x6C +fn_80402F84 = .text:0x80402F84; // type:function size:0x46C +fn_804033F0 = .text:0x804033F0; // type:function size:0x74 +fn_80403464 = .text:0x80403464; // type:function size:0x5C +fn_804034C0 = .text:0x804034C0; // type:function size:0x4 +fn_804034C4 = .text:0x804034C4; // type:function size:0x90 +fn_80403554 = .text:0x80403554; // type:function size:0x4 +fn_80403558 = .text:0x80403558; // type:function size:0x40 +fn_80403598 = .text:0x80403598; // type:function size:0x8C +fn_80403624 = .text:0x80403624; // type:function size:0x8 +fn_8040362C = .text:0x8040362C; // type:function size:0x2C +fn_80403658 = .text:0x80403658; // type:function size:0x58 +fn_804036B0 = .text:0x804036B0; // type:function size:0x28 +fn_804036D8 = .text:0x804036D8; // type:function size:0x68 +fn_80403740 = .text:0x80403740; // type:function size:0xA8 +fn_804037E8 = .text:0x804037E8; // type:function size:0x74 +fn_8040385C = .text:0x8040385C; // type:function size:0x5C +fn_804038B8 = .text:0x804038B8; // type:function size:0x5C +fn_80403914 = .text:0x80403914; // type:function size:0x58 +fn_8040396C = .text:0x8040396C; // type:function size:0x58 +fn_804039C4 = .text:0x804039C4; // type:function size:0x58 +fn_80403A1C = .text:0x80403A1C; // type:function size:0x60 +fn_80403A7C = .text:0x80403A7C; // type:function size:0x58 +fn_80403AD4 = .text:0x80403AD4; // type:function size:0x4 +fn_80403AD8 = .text:0x80403AD8; // type:function size:0x90 +fn_80403B68 = .text:0x80403B68; // type:function size:0x4 +fn_80403B6C = .text:0x80403B6C; // type:function size:0x40 +fn_80403BAC = .text:0x80403BAC; // type:function size:0x8C +fn_80403C38 = .text:0x80403C38; // type:function size:0x8 +fn_80403C40 = .text:0x80403C40; // type:function size:0x2C +fn_80403C6C = .text:0x80403C6C; // type:function size:0x58 +fn_80403CC4 = .text:0x80403CC4; // type:function size:0x8 +fn_80403CCC = .text:0x80403CCC; // type:function size:0x28 +fn_80403CF4 = .text:0x80403CF4; // type:function size:0x68 +fn_80403D5C = .text:0x80403D5C; // type:function size:0x40 +fn_80403D9C = .text:0x80403D9C; // type:function size:0x5C +fn_80403DF8 = .text:0x80403DF8; // type:function size:0x30 +fn_80403E28 = .text:0x80403E28; // type:function size:0x4C +fn_80403E74 = .text:0x80403E74; // type:function size:0x70 +fn_80403EE4 = .text:0x80403EE4; // type:function size:0x30 +fn_80403F14 = .text:0x80403F14; // type:function size:0x2C +fn_80403F40 = .text:0x80403F40; // type:function size:0x3C +fn_80403F7C = .text:0x80403F7C; // type:function size:0x50 +fn_80403FCC = .text:0x80403FCC; // type:function size:0x30 +fn_80403FFC = .text:0x80403FFC; // type:function size:0x30 +fn_8040402C = .text:0x8040402C; // type:function size:0x60 +fn_8040408C = .text:0x8040408C; // type:function size:0x74 +fn_80404100 = .text:0x80404100; // type:function size:0x40 +fn_80404140 = .text:0x80404140; // type:function size:0x8C +fn_804041CC = .text:0x804041CC; // type:function size:0x4 +fn_804041D0 = .text:0x804041D0; // type:function size:0x90 +fn_80404260 = .text:0x80404260; // type:function size:0x4 +fn_80404264 = .text:0x80404264; // type:function size:0x40 +fn_804042A4 = .text:0x804042A4; // type:function size:0x8C +fn_80404330 = .text:0x80404330; // type:function size:0x8 +fn_80404338 = .text:0x80404338; // type:function size:0x2C +fn_80404364 = .text:0x80404364; // type:function size:0x58 +fn_804043BC = .text:0x804043BC; // type:function size:0x28 +fn_804043E4 = .text:0x804043E4; // type:function size:0x68 +fn_8040444C = .text:0x8040444C; // type:function size:0x60 +fn_804044AC = .text:0x804044AC; // type:function size:0x30 +fn_804044DC = .text:0x804044DC; // type:function size:0x68 +fn_80404544 = .text:0x80404544; // type:function size:0x30 +fn_80404574 = .text:0x80404574; // type:function size:0x30 +fn_804045A4 = .text:0x804045A4; // type:function size:0x40 +fn_804045E4 = .text:0x804045E4; // type:function size:0x74 +fn_80404658 = .text:0x80404658; // type:function size:0x5C +fn_804046B4 = .text:0x804046B4; // type:function size:0x4 +fn_804046B8 = .text:0x804046B8; // type:function size:0x90 +fn_80404748 = .text:0x80404748; // type:function size:0x4 +fn_8040474C = .text:0x8040474C; // type:function size:0x40 +fn_8040478C = .text:0x8040478C; // type:function size:0x8C +fn_80404818 = .text:0x80404818; // type:function size:0x8 +fn_80404820 = .text:0x80404820; // type:function size:0x2C +fn_8040484C = .text:0x8040484C; // type:function size:0x58 +fn_804048A4 = .text:0x804048A4; // type:function size:0x28 +fn_804048CC = .text:0x804048CC; // type:function size:0x68 +fn_80404934 = .text:0x80404934; // type:function size:0x74 +fn_804049A8 = .text:0x804049A8; // type:function size:0x5C +fn_80404A04 = .text:0x80404A04; // type:function size:0x4 +fn_80404A08 = .text:0x80404A08; // type:function size:0x90 +fn_80404A98 = .text:0x80404A98; // type:function size:0x4 +fn_80404A9C = .text:0x80404A9C; // type:function size:0x40 +fn_80404ADC = .text:0x80404ADC; // type:function size:0x8C +fn_80404B68 = .text:0x80404B68; // type:function size:0x8 +fn_80404B70 = .text:0x80404B70; // type:function size:0x2C +fn_80404B9C = .text:0x80404B9C; // type:function size:0x58 +fn_80404BF4 = .text:0x80404BF4; // type:function size:0x28 +fn_80404C1C = .text:0x80404C1C; // type:function size:0x68 +fn_80404C84 = .text:0x80404C84; // type:function size:0x5C +fn_80404CE0 = .text:0x80404CE0; // type:function size:0x5C +fn_80404D3C = .text:0x80404D3C; // type:function size:0x30 +fn_80404D6C = .text:0x80404D6C; // type:function size:0x74 +fn_80404DE0 = .text:0x80404DE0; // type:function size:0x5C +fn_80404E3C = .text:0x80404E3C; // type:function size:0x4 +fn_80404E40 = .text:0x80404E40; // type:function size:0x90 +fn_80404ED0 = .text:0x80404ED0; // type:function size:0x4 +fn_80404ED4 = .text:0x80404ED4; // type:function size:0x40 +fn_80404F14 = .text:0x80404F14; // type:function size:0x8C +fn_80404FA0 = .text:0x80404FA0; // type:function size:0x8 +fn_80404FA8 = .text:0x80404FA8; // type:function size:0x2C +fn_80404FD4 = .text:0x80404FD4; // type:function size:0x58 +fn_8040502C = .text:0x8040502C; // type:function size:0x28 +fn_80405054 = .text:0x80405054; // type:function size:0x68 +fn_804050BC = .text:0x804050BC; // type:function size:0x40 +fn_804050FC = .text:0x804050FC; // type:function size:0x40 +fn_8040513C = .text:0x8040513C; // type:function size:0x104 +fn_80405240 = .text:0x80405240; // type:function size:0x58 +fn_80405298 = .text:0x80405298; // type:function size:0x58 +fn_804052F0 = .text:0x804052F0; // type:function size:0x80 +fn_80405370 = .text:0x80405370; // type:function size:0x80 +fn_804053F0 = .text:0x804053F0; // type:function size:0x58 +fn_80405448 = .text:0x80405448; // type:function size:0x54 +fn_8040549C = .text:0x8040549C; // type:function size:0x5C +fn_804054F8 = .text:0x804054F8; // type:function size:0x6C +fn_80405564 = .text:0x80405564; // type:function size:0x28 +fn_8040558C = .text:0x8040558C; // type:function size:0x8 +fn_80405594 = .text:0x80405594; // type:function size:0x3C +fn_804055D0 = .text:0x804055D0; // type:function size:0x5C +fn_8040562C = .text:0x8040562C; // type:function size:0x30 +fn_8040565C = .text:0x8040565C; // type:function size:0x24 +fn_80405680 = .text:0x80405680; // type:function size:0x3C +fn_804056BC = .text:0x804056BC; // type:function size:0x50 +fn_8040570C = .text:0x8040570C; // type:function size:0x30 +fn_8040573C = .text:0x8040573C; // type:function size:0x30 +fn_8040576C = .text:0x8040576C; // type:function size:0x40 +fn_804057AC = .text:0x804057AC; // type:function size:0x108 +fn_804058B4 = .text:0x804058B4; // type:function size:0x8 +fn_804058BC = .text:0x804058BC; // type:function size:0x5C +fn_80405918 = .text:0x80405918; // type:function size:0x30 +fn_80405948 = .text:0x80405948; // type:function size:0x5C +fn_804059A4 = .text:0x804059A4; // type:function size:0x30 +fn_804059D4 = .text:0x804059D4; // type:function size:0x30 +fn_80405A04 = .text:0x80405A04; // type:function size:0x5C +fn_80405A60 = .text:0x80405A60; // type:function size:0x30 +fn_80405A90 = .text:0x80405A90; // type:function size:0x5C +fn_80405AEC = .text:0x80405AEC; // type:function size:0x4 +fn_80405AF0 = .text:0x80405AF0; // type:function size:0x18 +fn_80405B08 = .text:0x80405B08; // type:function size:0x160 +fn_80405C68 = .text:0x80405C68; // type:function size:0x68 +fn_80405CD0 = .text:0x80405CD0; // type:function size:0x3C4 +fn_80406094 = .text:0x80406094; // type:function size:0x8 +fn_8040609C = .text:0x8040609C; // type:function size:0x10 +fn_804060AC = .text:0x804060AC; // type:function size:0xC +fn_804060B8 = .text:0x804060B8; // type:function size:0x21C +fn_804062D4 = .text:0x804062D4; // type:function size:0x8 +fn_804062DC = .text:0x804062DC; // type:function size:0x8C +fn_80406368 = .text:0x80406368; // type:function size:0x60 +fn_804063C8 = .text:0x804063C8; // type:function size:0xB0 +fn_80406478 = .text:0x80406478; // type:function size:0xE8 +fn_80406560 = .text:0x80406560; // type:function size:0xD8 +fn_80406638 = .text:0x80406638; // type:function size:0x8 +fn_80406640 = .text:0x80406640; // type:function size:0x78 +fn_804066B8 = .text:0x804066B8; // type:function size:0x18 +fn_804066D0 = .text:0x804066D0; // type:function size:0x98 +fn_80406768 = .text:0x80406768; // type:function size:0x10 +Handle__12OutfitConfigFP9DataArrayb = .text:0x80406778; // type:function size:0x1E4 +fn_8040695C = .text:0x8040695C; // type:function size:0x114 +fn_80406A70 = .text:0x80406A70; // type:function size:0x114 +fn_80406B84 = .text:0x80406B84; // type:function size:0x170 +fn_80406CF4 = .text:0x80406CF4; // type:function size:0x2C +fn_80406D20 = .text:0x80406D20; // type:function size:0x84 +fn_80406DA4 = .text:0x80406DA4; // type:function size:0x2C +fn_80406DD0 = .text:0x80406DD0; // type:function size:0x2C +fn_80406DFC = .text:0x80406DFC; // type:function size:0x438 +fn_80407234 = .text:0x80407234; // type:function size:0x174 +fn_804073A8 = .text:0x804073A8; // type:function size:0x2C +fn_804073D4 = .text:0x804073D4; // type:function size:0x84 +fn_80407458 = .text:0x80407458; // type:function size:0x2C +fn_80407484 = .text:0x80407484; // type:function size:0xE0 +fn_80407564 = .text:0x80407564; // type:function size:0x114 +fn_80407678 = .text:0x80407678; // type:function size:0x144 +fn_804077BC = .text:0x804077BC; // type:function size:0x144 +fn_80407900 = .text:0x80407900; // type:function size:0x2C +fn_8040792C = .text:0x8040792C; // type:function size:0x84 +fn_804079B0 = .text:0x804079B0; // type:function size:0x2C +fn_804079DC = .text:0x804079DC; // type:function size:0xE0 +fn_80407ABC = .text:0x80407ABC; // type:function size:0x3A4 +fn_80407E60 = .text:0x80407E60; // type:function size:0x170 +fn_80407FD0 = .text:0x80407FD0; // type:function size:0x2C +fn_80407FFC = .text:0x80407FFC; // type:function size:0x84 +fn_80408080 = .text:0x80408080; // type:function size:0x2C +fn_804080AC = .text:0x804080AC; // type:function size:0x164 +fn_80408210 = .text:0x80408210; // type:function size:0x2C +fn_8040823C = .text:0x8040823C; // type:function size:0x84 +fn_804082C0 = .text:0x804082C0; // type:function size:0x2C +fn_804082EC = .text:0x804082EC; // type:function size:0x170 +fn_8040845C = .text:0x8040845C; // type:function size:0x2C +fn_80408488 = .text:0x80408488; // type:function size:0x84 +fn_8040850C = .text:0x8040850C; // type:function size:0x2C +fn_80408538 = .text:0x80408538; // type:function size:0x170 +fn_804086A8 = .text:0x804086A8; // type:function size:0x2C +fn_804086D4 = .text:0x804086D4; // type:function size:0x84 +fn_80408758 = .text:0x80408758; // type:function size:0x2C +fn_80408784 = .text:0x80408784; // type:function size:0x170 +fn_804088F4 = .text:0x804088F4; // type:function size:0x2C +fn_80408920 = .text:0x80408920; // type:function size:0x84 +fn_804089A4 = .text:0x804089A4; // type:function size:0x2C +fn_804089D0 = .text:0x804089D0; // type:function size:0xD0 +fn_80408AA0 = .text:0x80408AA0; // type:function size:0x100 +fn_80408BA0 = .text:0x80408BA0; // type:function size:0x154 +fn_80408CF4 = .text:0x80408CF4; // type:function size:0x58 +fn_80408D4C = .text:0x80408D4C; // type:function size:0x60 +fn_80408DAC = .text:0x80408DAC; // type:function size:0x68 +fn_80408E14 = .text:0x80408E14; // type:function size:0x2C +fn_80408E40 = .text:0x80408E40; // type:function size:0x58 +fn_80408E98 = .text:0x80408E98; // type:function size:0x160 +fn_80408FF8 = .text:0x80408FF8; // type:function size:0x5C +fn_80409054 = .text:0x80409054; // type:function size:0x10 +fn_80409064 = .text:0x80409064; // type:function size:0x28 +fn_8040908C = .text:0x8040908C; // type:function size:0x5C +fn_804090E8 = .text:0x804090E8; // type:function size:0x60 +fn_80409148 = .text:0x80409148; // type:function size:0x68 +fn_804091B0 = .text:0x804091B0; // type:function size:0x2C +fn_804091DC = .text:0x804091DC; // type:function size:0x58 +fn_80409234 = .text:0x80409234; // type:function size:0x160 +fn_80409394 = .text:0x80409394; // type:function size:0x5C +fn_804093F0 = .text:0x804093F0; // type:function size:0x28 +fn_80409418 = .text:0x80409418; // type:function size:0x5C +fn_80409474 = .text:0x80409474; // type:function size:0x60 +fn_804094D4 = .text:0x804094D4; // type:function size:0x68 +fn_8040953C = .text:0x8040953C; // type:function size:0x2C +fn_80409568 = .text:0x80409568; // type:function size:0x58 +fn_804095C0 = .text:0x804095C0; // type:function size:0x160 +fn_80409720 = .text:0x80409720; // type:function size:0x5C +fn_8040977C = .text:0x8040977C; // type:function size:0x10 +fn_8040978C = .text:0x8040978C; // type:function size:0x58 +fn_804097E4 = .text:0x804097E4; // type:function size:0x30 +fn_80409814 = .text:0x80409814; // type:function size:0x98 +fn_804098AC = .text:0x804098AC; // type:function size:0x70 +fn_8040991C = .text:0x8040991C; // type:function size:0x28 +fn_80409944 = .text:0x80409944; // type:function size:0x5C +fn_804099A0 = .text:0x804099A0; // type:function size:0x60 +fn_80409A00 = .text:0x80409A00; // type:function size:0x68 +fn_80409A68 = .text:0x80409A68; // type:function size:0x2C +fn_80409A94 = .text:0x80409A94; // type:function size:0x58 +fn_80409AEC = .text:0x80409AEC; // type:function size:0x160 +fn_80409C4C = .text:0x80409C4C; // type:function size:0x5C +fn_80409CA8 = .text:0x80409CA8; // type:function size:0x10 +fn_80409CB8 = .text:0x80409CB8; // type:function size:0xA8 +fn_80409D60 = .text:0x80409D60; // type:function size:0x44 +fn_80409DA4 = .text:0x80409DA4; // type:function size:0x30 +fn_80409DD4 = .text:0x80409DD4; // type:function size:0x98 +fn_80409E6C = .text:0x80409E6C; // type:function size:0x70 +fn_80409EDC = .text:0x80409EDC; // type:function size:0x68 +fn_80409F44 = .text:0x80409F44; // type:function size:0x28 +fn_80409F6C = .text:0x80409F6C; // type:function size:0x5C +fn_80409FC8 = .text:0x80409FC8; // type:function size:0x60 +fn_8040A028 = .text:0x8040A028; // type:function size:0xC +fn_8040A034 = .text:0x8040A034; // type:function size:0x68 +fn_8040A09C = .text:0x8040A09C; // type:function size:0x2C +fn_8040A0C8 = .text:0x8040A0C8; // type:function size:0x58 +fn_8040A120 = .text:0x8040A120; // type:function size:0x160 +fn_8040A280 = .text:0x8040A280; // type:function size:0x5C +fn_8040A2DC = .text:0x8040A2DC; // type:function size:0x10 +fn_8040A2EC = .text:0x8040A2EC; // type:function size:0x60 +fn_8040A34C = .text:0x8040A34C; // type:function size:0x30 +fn_8040A37C = .text:0x8040A37C; // type:function size:0x98 +fn_8040A414 = .text:0x8040A414; // type:function size:0x70 +fn_8040A484 = .text:0x8040A484; // type:function size:0x28 +fn_8040A4AC = .text:0x8040A4AC; // type:function size:0x5C +fn_8040A508 = .text:0x8040A508; // type:function size:0x60 +fn_8040A568 = .text:0x8040A568; // type:function size:0x68 +fn_8040A5D0 = .text:0x8040A5D0; // type:function size:0x2C +fn_8040A5FC = .text:0x8040A5FC; // type:function size:0x58 +fn_8040A654 = .text:0x8040A654; // type:function size:0x68 +fn_8040A6BC = .text:0x8040A6BC; // type:function size:0x2C +fn_8040A6E8 = .text:0x8040A6E8; // type:function size:0x58 +fn_8040A740 = .text:0x8040A740; // type:function size:0x160 +fn_8040A8A0 = .text:0x8040A8A0; // type:function size:0x5C +fn_8040A8FC = .text:0x8040A8FC; // type:function size:0x10 +fn_8040A90C = .text:0x8040A90C; // type:function size:0x5C +fn_8040A968 = .text:0x8040A968; // type:function size:0x44 +fn_8040A9AC = .text:0x8040A9AC; // type:function size:0x30 +fn_8040A9DC = .text:0x8040A9DC; // type:function size:0x98 +fn_8040AA74 = .text:0x8040AA74; // type:function size:0x70 +fn_8040AAE4 = .text:0x8040AAE4; // type:function size:0x28 +fn_8040AB0C = .text:0x8040AB0C; // type:function size:0x5C +fn_8040AB68 = .text:0x8040AB68; // type:function size:0x60 +fn_8040ABC8 = .text:0x8040ABC8; // type:function size:0x68 +fn_8040AC30 = .text:0x8040AC30; // type:function size:0x2C +fn_8040AC5C = .text:0x8040AC5C; // type:function size:0x58 +fn_8040ACB4 = .text:0x8040ACB4; // type:function size:0x160 +fn_8040AE14 = .text:0x8040AE14; // type:function size:0x5C +fn_8040AE70 = .text:0x8040AE70; // type:function size:0x10 +fn_8040AE80 = .text:0x8040AE80; // type:function size:0x40 +fn_8040AEC0 = .text:0x8040AEC0; // type:function size:0x28 +fn_8040AEE8 = .text:0x8040AEE8; // type:function size:0x5C +fn_8040AF44 = .text:0x8040AF44; // type:function size:0x60 +fn_8040AFA4 = .text:0x8040AFA4; // type:function size:0x68 +fn_8040B00C = .text:0x8040B00C; // type:function size:0x2C +fn_8040B038 = .text:0x8040B038; // type:function size:0x68 +fn_8040B0A0 = .text:0x8040B0A0; // type:function size:0x2C +fn_8040B0CC = .text:0x8040B0CC; // type:function size:0x8 +fn_8040B0D4 = .text:0x8040B0D4; // type:function size:0x194 +fn_8040B268 = .text:0x8040B268; // type:function size:0x60 +fn_8040B2C8 = .text:0x8040B2C8; // type:function size:0xA0 +fn_8040B368 = .text:0x8040B368; // type:function size:0x6C +fn_8040B3D4 = .text:0x8040B3D4; // type:function size:0x74 +fn_8040B448 = .text:0x8040B448; // type:function size:0x60 +fn_8040B4A8 = .text:0x8040B4A8; // type:function size:0x90 +fn_8040B538 = .text:0x8040B538; // type:function size:0x64 +fn_8040B59C = .text:0x8040B59C; // type:function size:0x50 +fn_8040B5EC = .text:0x8040B5EC; // type:function size:0x10 +fn_8040B5FC = .text:0x8040B5FC; // type:function size:0x60 +fn_8040B65C = .text:0x8040B65C; // type:function size:0x8C +fn_8040B6E8 = .text:0x8040B6E8; // type:function size:0x6C +fn_8040B754 = .text:0x8040B754; // type:function size:0x60 +fn_8040B7B4 = .text:0x8040B7B4; // type:function size:0x40 +fn_8040B7F4 = .text:0x8040B7F4; // type:function size:0xE4 +fn_8040B8D8 = .text:0x8040B8D8; // type:function size:0x54 +fn_8040B92C = .text:0x8040B92C; // type:function size:0x6C +fn_8040B998 = .text:0x8040B998; // type:function size:0x70 +fn_8040BA08 = .text:0x8040BA08; // type:function size:0x144 +fn_8040BB4C = .text:0x8040BB4C; // type:function size:0x4 +fn_8040BB50 = .text:0x8040BB50; // type:function size:0x198 +fn_8040BCE8 = .text:0x8040BCE8; // type:function size:0x5C +fn_8040BD44 = .text:0x8040BD44; // type:function size:0x54 +fn_8040BD98 = .text:0x8040BD98; // type:function size:0x28 +fn_8040BDC0 = .text:0x8040BDC0; // type:function size:0x68 +fn_8040BE28 = .text:0x8040BE28; // type:function size:0x114 +fn_8040BF3C = .text:0x8040BF3C; // type:function size:0x5C +fn_8040BF98 = .text:0x8040BF98; // type:function size:0x5C +fn_8040BFF4 = .text:0x8040BFF4; // type:function size:0x54 +fn_8040C048 = .text:0x8040C048; // type:function size:0x194 +fn_8040C1DC = .text:0x8040C1DC; // type:function size:0x5C +fn_8040C238 = .text:0x8040C238; // type:function size:0x54 +fn_8040C28C = .text:0x8040C28C; // type:function size:0x28 +fn_8040C2B4 = .text:0x8040C2B4; // type:function size:0x68 +fn_8040C31C = .text:0x8040C31C; // type:function size:0x114 +fn_8040C430 = .text:0x8040C430; // type:function size:0x60 +fn_8040C490 = .text:0x8040C490; // type:function size:0x5C +fn_8040C4EC = .text:0x8040C4EC; // type:function size:0x54 +fn_8040C540 = .text:0x8040C540; // type:function size:0x198 +fn_8040C6D8 = .text:0x8040C6D8; // type:function size:0x5C +fn_8040C734 = .text:0x8040C734; // type:function size:0x54 +fn_8040C788 = .text:0x8040C788; // type:function size:0x28 +fn_8040C7B0 = .text:0x8040C7B0; // type:function size:0x68 +fn_8040C818 = .text:0x8040C818; // type:function size:0x114 +fn_8040C92C = .text:0x8040C92C; // type:function size:0x5C +fn_8040C988 = .text:0x8040C988; // type:function size:0x5C +fn_8040C9E4 = .text:0x8040C9E4; // type:function size:0x54 +fn_8040CA38 = .text:0x8040CA38; // type:function size:0x198 +fn_8040CBD0 = .text:0x8040CBD0; // type:function size:0x5C +fn_8040CC2C = .text:0x8040CC2C; // type:function size:0x54 +fn_8040CC80 = .text:0x8040CC80; // type:function size:0x28 +fn_8040CCA8 = .text:0x8040CCA8; // type:function size:0x68 +fn_8040CD10 = .text:0x8040CD10; // type:function size:0x38 +fn_8040CD48 = .text:0x8040CD48; // type:function size:0x114 +fn_8040CE5C = .text:0x8040CE5C; // type:function size:0x5C +fn_8040CEB8 = .text:0x8040CEB8; // type:function size:0x5C +fn_8040CF14 = .text:0x8040CF14; // type:function size:0x54 +fn_8040CF68 = .text:0x8040CF68; // type:function size:0x198 +fn_8040D100 = .text:0x8040D100; // type:function size:0x5C +fn_8040D15C = .text:0x8040D15C; // type:function size:0x54 +fn_8040D1B0 = .text:0x8040D1B0; // type:function size:0x28 +fn_8040D1D8 = .text:0x8040D1D8; // type:function size:0x68 +fn_8040D240 = .text:0x8040D240; // type:function size:0x114 +fn_8040D354 = .text:0x8040D354; // type:function size:0x5C +fn_8040D3B0 = .text:0x8040D3B0; // type:function size:0x5C +fn_8040D40C = .text:0x8040D40C; // type:function size:0x54 +fn_8040D460 = .text:0x8040D460; // type:function size:0x19C +fn_8040D5FC = .text:0x8040D5FC; // type:function size:0x5C +fn_8040D658 = .text:0x8040D658; // type:function size:0x10 +fn_8040D668 = .text:0x8040D668; // type:function size:0x54 +fn_8040D6BC = .text:0x8040D6BC; // type:function size:0x28 +fn_8040D6E4 = .text:0x8040D6E4; // type:function size:0x68 +fn_8040D74C = .text:0x8040D74C; // type:function size:0x5C +fn_8040D7A8 = .text:0x8040D7A8; // type:function size:0x114 +fn_8040D8BC = .text:0x8040D8BC; // type:function size:0x60 +fn_8040D91C = .text:0x8040D91C; // type:function size:0x5C +fn_8040D978 = .text:0x8040D978; // type:function size:0x54 +fn_8040D9CC = .text:0x8040D9CC; // type:function size:0x198 +fn_8040DB64 = .text:0x8040DB64; // type:function size:0x5C +fn_8040DBC0 = .text:0x8040DBC0; // type:function size:0x54 +fn_8040DC14 = .text:0x8040DC14; // type:function size:0x28 +fn_8040DC3C = .text:0x8040DC3C; // type:function size:0x68 +fn_8040DCA4 = .text:0x8040DCA4; // type:function size:0x38 +fn_8040DCDC = .text:0x8040DCDC; // type:function size:0x114 +fn_8040DDF0 = .text:0x8040DDF0; // type:function size:0x5C +fn_8040DE4C = .text:0x8040DE4C; // type:function size:0x5C +fn_8040DEA8 = .text:0x8040DEA8; // type:function size:0x54 +fn_8040DEFC = .text:0x8040DEFC; // type:function size:0x19C +fn_8040E098 = .text:0x8040E098; // type:function size:0x5C +fn_8040E0F4 = .text:0x8040E0F4; // type:function size:0x54 +fn_8040E148 = .text:0x8040E148; // type:function size:0x28 +fn_8040E170 = .text:0x8040E170; // type:function size:0x68 +fn_8040E1D8 = .text:0x8040E1D8; // type:function size:0x114 +fn_8040E2EC = .text:0x8040E2EC; // type:function size:0x60 +fn_8040E34C = .text:0x8040E34C; // type:function size:0x5C +fn_8040E3A8 = .text:0x8040E3A8; // type:function size:0x54 +fn_8040E3FC = .text:0x8040E3FC; // type:function size:0x19C +fn_8040E598 = .text:0x8040E598; // type:function size:0x5C +fn_8040E5F4 = .text:0x8040E5F4; // type:function size:0x10 +fn_8040E604 = .text:0x8040E604; // type:function size:0x54 +fn_8040E658 = .text:0x8040E658; // type:function size:0x28 +fn_8040E680 = .text:0x8040E680; // type:function size:0x68 +fn_8040E6E8 = .text:0x8040E6E8; // type:function size:0x5C +fn_8040E744 = .text:0x8040E744; // type:function size:0x40 +fn_8040E784 = .text:0x8040E784; // type:function size:0x44 +fn_8040E7C8 = .text:0x8040E7C8; // type:function size:0x30 +fn_8040E7F8 = .text:0x8040E7F8; // type:function size:0x90 +fn_8040E888 = .text:0x8040E888; // type:function size:0x114 +fn_8040E99C = .text:0x8040E99C; // type:function size:0x60 +fn_8040E9FC = .text:0x8040E9FC; // type:function size:0x5C +fn_8040EA58 = .text:0x8040EA58; // type:function size:0x54 +fn_8040EAAC = .text:0x8040EAAC; // type:function size:0x14 +fn_8040EAC0 = .text:0x8040EAC0; // type:function size:0x14 +fn_8040EAD4 = .text:0x8040EAD4; // type:function size:0x14 +fn_8040EAE8 = .text:0x8040EAE8; // type:function size:0x14 +fn_8040EAFC = .text:0x8040EAFC; // type:function size:0x14 +fn_8040EB10 = .text:0x8040EB10; // type:function size:0x14 +fn_8040EB24 = .text:0x8040EB24; // type:function size:0x14 +fn_8040EB38 = .text:0x8040EB38; // type:function size:0x14 +fn_8040EB4C = .text:0x8040EB4C; // type:function size:0x14 +fn_8040EB60 = .text:0x8040EB60; // type:function size:0x14 +fn_8040EB74 = .text:0x8040EB74; // type:function size:0x14 +fn_8040EB88 = .text:0x8040EB88; // type:function size:0x14 +fn_8040EB9C = .text:0x8040EB9C; // type:function size:0x4C +fn_8040EBE8 = .text:0x8040EBE8; // type:function size:0x54 +fn_8040EC3C = .text:0x8040EC3C; // type:function size:0x64 +fn_8040ECA0 = .text:0x8040ECA0; // type:function size:0x6C +fn_8040ED0C = .text:0x8040ED0C; // type:function size:0x5C +fn_8040ED68 = .text:0x8040ED68; // type:function size:0x180 +Width__9RndBitmapCFv = .text:0x8040EEE8; // type:function size:0x8 +fn_8040EEF0 = .text:0x8040EEF0; // type:function size:0xA4 +fn_8040EF94 = .text:0x8040EF94; // type:function size:0x74 +fn_8040F008 = .text:0x8040F008; // type:function size:0x74 +fn_8040F07C = .text:0x8040F07C; // type:function size:0xA4 +fn_8040F120 = .text:0x8040F120; // type:function size:0x14C +fn_8040F26C = .text:0x8040F26C; // type:function size:0xA0 +fn_8040F30C = .text:0x8040F30C; // type:function size:0x54 +fn_8040F360 = .text:0x8040F360; // type:function size:0x68 +fn_8040F3C8 = .text:0x8040F3C8; // type:function size:0xA8 +fn_8040F470 = .text:0x8040F470; // type:function size:0x98 +fn_8040F508 = .text:0x8040F508; // type:function size:0x6C +fn_8040F574 = .text:0x8040F574; // type:function size:0x2C +fn_8040F5A0 = .text:0x8040F5A0; // type:function size:0x44 +fn_8040F5E4 = .text:0x8040F5E4; // type:function size:0x44 +fn_8040F628 = .text:0x8040F628; // type:function size:0x60 +fn_8040F688 = .text:0x8040F688; // type:function size:0x70 +fn_8040F6F8 = .text:0x8040F6F8; // type:function size:0x64 +fn_8040F75C = .text:0x8040F75C; // type:function size:0x40 +fn_8040F79C = .text:0x8040F79C; // type:function size:0x28 +fn_8040F7C4 = .text:0x8040F7C4; // type:function size:0x2A0 +Handle__10PatchLayerFP9DataArrayb = .text:0x8040FA64; // type:function size:0x298 +fn_8040FCFC = .text:0x8040FCFC; // type:function size:0x138 +fn_8040FE34 = .text:0x8040FE34; // type:function size:0x34 +fn_8040FE68 = .text:0x8040FE68; // type:function size:0x4 +fn_8040FE6C = .text:0x8040FE6C; // type:function size:0x9C +fn_8040FF08 = .text:0x8040FF08; // type:function size:0x30 +__ct__8PatchDirFv = .text:0x8040FF38; // type:function size:0x184 +fn_804100BC = .text:0x804100BC; // type:function size:0x58 +fn_80410114 = .text:0x80410114; // type:function size:0x60 +fn_80410174 = .text:0x80410174; // type:function size:0x58 +fn_804101CC = .text:0x804101CC; // type:function size:0x58 +fn_80410224 = .text:0x80410224; // type:function size:0x50 +fn_80410274 = .text:0x80410274; // type:function size:0x58 +fn_804102CC = .text:0x804102CC; // type:function size:0x80 +fn_8041034C = .text:0x8041034C; // type:function size:0x80 +fn_804103CC = .text:0x804103CC; // type:function size:0x58 +fn_80410424 = .text:0x80410424; // type:function size:0x54 +fn_80410478 = .text:0x80410478; // type:function size:0x5C +fn_804104D4 = .text:0x804104D4; // type:function size:0x6C +fn_80410540 = .text:0x80410540; // type:function size:0x28 +fn_80410568 = .text:0x80410568; // type:function size:0x8 +fn_80410570 = .text:0x80410570; // type:function size:0x3C +fn_804105AC = .text:0x804105AC; // type:function size:0x4 +fn_804105B0 = .text:0x804105B0; // type:function size:0x90 +fn_80410640 = .text:0x80410640; // type:function size:0x4 +fn_80410644 = .text:0x80410644; // type:function size:0x40 +fn_80410684 = .text:0x80410684; // type:function size:0x8C +fn_80410710 = .text:0x80410710; // type:function size:0x8 +fn_80410718 = .text:0x80410718; // type:function size:0x2C +fn_80410744 = .text:0x80410744; // type:function size:0x58 +fn_8041079C = .text:0x8041079C; // type:function size:0x28 +fn_804107C4 = .text:0x804107C4; // type:function size:0x68 +fn_8041082C = .text:0x8041082C; // type:function size:0x44 +fn_80410870 = .text:0x80410870; // type:function size:0x3C +fn_804108AC = .text:0x804108AC; // type:function size:0x70 +fn_8041091C = .text:0x8041091C; // type:function size:0x30 +fn_8041094C = .text:0x8041094C; // type:function size:0x30 +fn_8041097C = .text:0x8041097C; // type:function size:0x40 +fn_804109BC = .text:0x804109BC; // type:function size:0x1BC +fn_80410B78 = .text:0x80410B78; // type:function size:0x4 +fn_80410B7C = .text:0x80410B7C; // type:function size:0x3C +fn_80410BB8 = .text:0x80410BB8; // type:function size:0x8 +fn_80410BC0 = .text:0x80410BC0; // type:function size:0x5C +fn_80410C1C = .text:0x80410C1C; // type:function size:0x5C +fn_80410C78 = .text:0x80410C78; // type:function size:0xC +fn_80410C84 = .text:0x80410C84; // type:function size:0x4 +fn_80410C88 = .text:0x80410C88; // type:function size:0x8 +fn_80410C90 = .text:0x80410C90; // type:function size:0x4C +fn_80410CDC = .text:0x80410CDC; // type:function size:0xC8 +fn_80410DA4 = .text:0x80410DA4; // type:function size:0x160 +fn_80410F04 = .text:0x80410F04; // type:function size:0x140 +fn_80411044 = .text:0x80411044; // type:function size:0x118 +fn_8041115C = .text:0x8041115C; // type:function size:0x2B8 +fn_80411414 = .text:0x80411414; // type:function size:0x8 +fn_8041141C = .text:0x8041141C; // type:function size:0x64 +fn_80411480 = .text:0x80411480; // type:function size:0x34 +fn_804114B4 = .text:0x804114B4; // type:function size:0x48 +fn_804114FC = .text:0x804114FC; // type:function size:0x7C +fn_80411578 = .text:0x80411578; // type:function size:0x44 +fn_804115BC = .text:0x804115BC; // type:function size:0x34 +fn_804115F0 = .text:0x804115F0; // type:function size:0x44 +fn_80411634 = .text:0x80411634; // type:function size:0x34 +fn_80411668 = .text:0x80411668; // type:function size:0x3C +fn_804116A4 = .text:0x804116A4; // type:function size:0x28 +fn_804116CC = .text:0x804116CC; // type:function size:0xD0 +fn_8041179C = .text:0x8041179C; // type:function size:0x58 +fn_804117F4 = .text:0x804117F4; // type:function size:0x80 +fn_80411874 = .text:0x80411874; // type:function size:0x8C +fn_80411900 = .text:0x80411900; // type:function size:0xB0 +fn_804119B0 = .text:0x804119B0; // type:function size:0xC0 +fn_80411A70 = .text:0x80411A70; // type:function size:0xAC +fn_80411B1C = .text:0x80411B1C; // type:function size:0x180 +fn_80411C9C = .text:0x80411C9C; // type:function size:0x2C +fn_80411CC8 = .text:0x80411CC8; // type:function size:0x10 +fn_80411CD8 = .text:0x80411CD8; // type:function size:0x9C +fn_80411D74 = .text:0x80411D74; // type:function size:0x70 +fn_80411DE4 = .text:0x80411DE4; // type:function size:0xC +fn_80411DF0 = .text:0x80411DF0; // type:function size:0x68 +fn_80411E58 = .text:0x80411E58; // type:function size:0x8 +fn_80411E60 = .text:0x80411E60; // type:function size:0x68 +fn_80411EC8 = .text:0x80411EC8; // type:function size:0x70 +fn_80411F38 = .text:0x80411F38; // type:function size:0x2C +fn_80411F64 = .text:0x80411F64; // type:function size:0x8 +fn_80411F6C = .text:0x80411F6C; // type:function size:0x8 +fn_80411F74 = .text:0x80411F74; // type:function size:0x70 +fn_80411FE4 = .text:0x80411FE4; // type:function size:0xB4 +fn_80412098 = .text:0x80412098; // type:function size:0x8C +fn_80412124 = .text:0x80412124; // type:function size:0x64 +fn_80412188 = .text:0x80412188; // type:function size:0x2C +fn_804121B4 = .text:0x804121B4; // type:function size:0x3C +fn_804121F0 = .text:0x804121F0; // type:function size:0x68 +fn_80412258 = .text:0x80412258; // type:function size:0x4 +fn_8041225C = .text:0x8041225C; // type:function size:0x40 +fn_8041229C = .text:0x8041229C; // type:function size:0xA0 +fn_8041233C = .text:0x8041233C; // type:function size:0xD0 +fn_8041240C = .text:0x8041240C; // type:function size:0x10 +fn_8041241C = .text:0x8041241C; // type:function size:0x24C +fn_80412668 = .text:0x80412668; // type:function size:0x120 +fn_80412788 = .text:0x80412788; // type:function size:0x5C +fn_804127E4 = .text:0x804127E4; // type:function size:0x58 +fn_8041283C = .text:0x8041283C; // type:function size:0x48 +fn_80412884 = .text:0x80412884; // type:function size:0x4 +fn_80412888 = .text:0x80412888; // type:function size:0x40 +fn_804128C8 = .text:0x804128C8; // type:function size:0x74 +fn_8041293C = .text:0x8041293C; // type:function size:0x70 +fn_804129AC = .text:0x804129AC; // type:function size:0x9C +fn_80412A48 = .text:0x80412A48; // type:function size:0xA8 +fn_80412AF0 = .text:0x80412AF0; // type:function size:0x90 +fn_80412B80 = .text:0x80412B80; // type:function size:0x24 +fn_80412BA4 = .text:0x80412BA4; // type:function size:0x1B4 +fn_80412D58 = .text:0x80412D58; // type:function size:0x68 +fn_80412DC0 = .text:0x80412DC0; // type:function size:0x160 +fn_80412F20 = .text:0x80412F20; // type:function size:0x5C +fn_80412F7C = .text:0x80412F7C; // type:function size:0x28 +fn_80412FA4 = .text:0x80412FA4; // type:function size:0x5C +fn_80413000 = .text:0x80413000; // type:function size:0x60 +fn_80413060 = .text:0x80413060; // type:function size:0x114 +fn_80413174 = .text:0x80413174; // type:function size:0x5C +fn_804131D0 = .text:0x804131D0; // type:function size:0x5C +fn_8041322C = .text:0x8041322C; // type:function size:0x54 +fn_80413280 = .text:0x80413280; // type:function size:0x5C +fn_804132DC = .text:0x804132DC; // type:function size:0x388 +fn_80413664 = .text:0x80413664; // type:function size:0x6C +fn_804136D0 = .text:0x804136D0; // type:function size:0x2C +fn_804136FC = .text:0x804136FC; // type:function size:0x8 +fn_80413704 = .text:0x80413704; // type:function size:0x134 +fn_80413838 = .text:0x80413838; // type:function size:0x4C +fn_80413884 = .text:0x80413884; // type:function size:0x4 +fn_80413888 = .text:0x80413888; // type:function size:0x198 +fn_80413A20 = .text:0x80413A20; // type:function size:0x54 +fn_80413A74 = .text:0x80413A74; // type:function size:0x28 +fn_80413A9C = .text:0x80413A9C; // type:function size:0x68 +fn_80413B04 = .text:0x80413B04; // type:function size:0x38 +fn_80413B3C = .text:0x80413B3C; // type:function size:0x158 +fn_80413C94 = .text:0x80413C94; // type:function size:0x44 +fn_80413CD8 = .text:0x80413CD8; // type:function size:0x104 +fn_80413DDC = .text:0x80413DDC; // type:function size:0x5C +fn_80413E38 = .text:0x80413E38; // type:function size:0x10 +fn_80413E48 = .text:0x80413E48; // type:function size:0x48 +fn_80413E90 = .text:0x80413E90; // type:function size:0x60 +fn_80413EF0 = .text:0x80413EF0; // type:function size:0x8 +fn_80413EF8 = .text:0x80413EF8; // type:function size:0x8 +fn_80413F00 = .text:0x80413F00; // type:function size:0x8 +fn_80413F08 = .text:0x80413F08; // type:function size:0x8 +fn_80413F10 = .text:0x80413F10; // type:function size:0x8 +fn_80413F18 = .text:0x80413F18; // type:function size:0x8 +fn_80413F20 = .text:0x80413F20; // type:function size:0x8 +fn_80413F28 = .text:0x80413F28; // type:function size:0x8 +fn_80413F30 = .text:0x80413F30; // type:function size:0x8 +fn_80413F38 = .text:0x80413F38; // type:function size:0x8 +fn_80413F40 = .text:0x80413F40; // type:function size:0x8 +fn_80413F48 = .text:0x80413F48; // type:function size:0x8 +fn_80413F50 = .text:0x80413F50; // type:function size:0x8 +fn_80413F58 = .text:0x80413F58; // type:function size:0x8 +fn_80413F60 = .text:0x80413F60; // type:function size:0x8 +fn_80413F68 = .text:0x80413F68; // type:function size:0x8 +fn_80413F70 = .text:0x80413F70; // type:function size:0x8 +fn_80413F78 = .text:0x80413F78; // type:function size:0x8 +fn_80413F80 = .text:0x80413F80; // type:function size:0x14 +fn_80413F94 = .text:0x80413F94; // type:function size:0x14 +fn_80413FA8 = .text:0x80413FA8; // type:function size:0x8 +fn_80413FB0 = .text:0x80413FB0; // type:function size:0x8 +fn_80413FB8 = .text:0x80413FB8; // type:function size:0x8 +fn_80413FC0 = .text:0x80413FC0; // type:function size:0x8 +fn_80413FC8 = .text:0x80413FC8; // type:function size:0x8 +fn_80413FD0 = .text:0x80413FD0; // type:function size:0x8 +fn_80413FD8 = .text:0x80413FD8; // type:function size:0x8 +fn_80413FE0 = .text:0x80413FE0; // type:function size:0x8 +fn_80413FE8 = .text:0x80413FE8; // type:function size:0x8 +fn_80413FF0 = .text:0x80413FF0; // type:function size:0x8 +fn_80413FF8 = .text:0x80413FF8; // type:function size:0x8 +fn_80414000 = .text:0x80414000; // type:function size:0x8 +fn_80414008 = .text:0x80414008; // type:function size:0x8 +fn_80414010 = .text:0x80414010; // type:function size:0x14 +fn_80414024 = .text:0x80414024; // type:function size:0x14 +fn_80414038 = .text:0x80414038; // type:function size:0x14 +fn_8041404C = .text:0x8041404C; // type:function size:0x14 +fn_80414060 = .text:0x80414060; // type:function size:0x14 +fn_80414074 = .text:0x80414074; // type:function size:0x14 +fn_80414088 = .text:0x80414088; // type:function size:0x14 +fn_8041409C = .text:0x8041409C; // type:function size:0x14 +fn_804140B0 = .text:0x804140B0; // type:function size:0x14 +fn_804140C4 = .text:0x804140C4; // type:function size:0x14 +fn_804140D8 = .text:0x804140D8; // type:function size:0x14 +fn_804140EC = .text:0x804140EC; // type:function size:0x14 +fn_80414100 = .text:0x80414100; // type:function size:0x14 +fn_80414114 = .text:0x80414114; // type:function size:0x14 +fn_80414128 = .text:0x80414128; // type:function size:0x14 +fn_8041413C = .text:0x8041413C; // type:function size:0x8 +fn_80414144 = .text:0x80414144; // type:function size:0x8 +fn_8041414C = .text:0x8041414C; // type:function size:0x8 +fn_80414154 = .text:0x80414154; // type:function size:0x8 +fn_8041415C = .text:0x8041415C; // type:function size:0x8 +fn_80414164 = .text:0x80414164; // type:function size:0x8 +fn_8041416C = .text:0x8041416C; // type:function size:0x8 +fn_80414174 = .text:0x80414174; // type:function size:0x8 +fn_8041417C = .text:0x8041417C; // type:function size:0x8 +fn_80414184 = .text:0x80414184; // type:function size:0x8 +fn_8041418C = .text:0x8041418C; // type:function size:0x8 +fn_80414194 = .text:0x80414194; // type:function size:0x8 +fn_8041419C = .text:0x8041419C; // type:function size:0x68 +fn_80414204 = .text:0x80414204; // type:function size:0x34 +fn_80414238 = .text:0x80414238; // type:function size:0x48 +fn_80414280 = .text:0x80414280; // type:function size:0x4C +fn_804142CC = .text:0x804142CC; // type:function size:0x48 +fn_80414314 = .text:0x80414314; // type:function size:0x7C +fn_80414390 = .text:0x80414390; // type:function size:0x12C +fn_804144BC = .text:0x804144BC; // type:function size:0xA8 +fn_80414564 = .text:0x80414564; // type:function size:0x4 +fn_80414568 = .text:0x80414568; // type:function size:0xA0 +fn_80414608 = .text:0x80414608; // type:function size:0x114 +fn_8041471C = .text:0x8041471C; // type:function size:0x130 +fn_8041484C = .text:0x8041484C; // type:function size:0x4 +fn_80414850 = .text:0x80414850; // type:function size:0x58 +fn_804148A8 = .text:0x804148A8; // type:function size:0xD4 +fn_8041497C = .text:0x8041497C; // type:function size:0x1B0 +fn_80414B2C = .text:0x80414B2C; // type:function size:0xB4 +fn_80414BE0 = .text:0x80414BE0; // type:function size:0x4 +fn_80414BE4 = .text:0x80414BE4; // type:function size:0x144 +fn_80414D28 = .text:0x80414D28; // type:function size:0x4 +fn_80414D2C = .text:0x80414D2C; // type:function size:0x14 +fn_80414D40 = .text:0x80414D40; // type:function size:0x14 +fn_80414D54 = .text:0x80414D54; // type:function size:0x8 +fn_80414D5C = .text:0x80414D5C; // type:function size:0x8 +fn_80414D64 = .text:0x80414D64; // type:function size:0x8 +fn_80414D6C = .text:0x80414D6C; // type:function size:0x8 +fn_80414D74 = .text:0x80414D74; // type:function size:0x8 +fn_80414D7C = .text:0x80414D7C; // type:function size:0x8 +fn_80414D84 = .text:0x80414D84; // type:function size:0x8 +fn_80414D8C = .text:0x80414D8C; // type:function size:0x8 +fn_80414D94 = .text:0x80414D94; // type:function size:0x8 +fn_80414D9C = .text:0x80414D9C; // type:function size:0x8 +fn_80414DA4 = .text:0x80414DA4; // type:function size:0x8 +fn_80414DAC = .text:0x80414DAC; // type:function size:0x8 +fn_80414DB4 = .text:0x80414DB4; // type:function size:0x14 +fn_80414DC8 = .text:0x80414DC8; // type:function size:0x14 +fn_80414DDC = .text:0x80414DDC; // type:function size:0x14 +fn_80414DF0 = .text:0x80414DF0; // type:function size:0x14 +fn_80414E04 = .text:0x80414E04; // type:function size:0x14 +fn_80414E18 = .text:0x80414E18; // type:function size:0x14 +fn_80414E2C = .text:0x80414E2C; // type:function size:0x14 +fn_80414E40 = .text:0x80414E40; // type:function size:0x14 +fn_80414E54 = .text:0x80414E54; // type:function size:0x8 +fn_80414E5C = .text:0x80414E5C; // type:function size:0x8 +fn_80414E64 = .text:0x80414E64; // type:function size:0x8 +fn_80414E6C = .text:0x80414E6C; // type:function size:0x8 +fn_80414E74 = .text:0x80414E74; // type:function size:0x8 +fn_80414E7C = .text:0x80414E7C; // type:function size:0x8 +fn_80414E84 = .text:0x80414E84; // type:function size:0x368 +fn_804151EC = .text:0x804151EC; // type:function size:0x2D0 +fn_804154BC = .text:0x804154BC; // type:function size:0x37C +fn_80415838 = .text:0x80415838; // type:function size:0xA0 +fn_804158D8 = .text:0x804158D8; // type:function size:0xA0 +fn_80415978 = .text:0x80415978; // type:function size:0xA0 +fn_80415A18 = .text:0x80415A18; // type:function size:0x8C +fn_80415AA4 = .text:0x80415AA4; // type:function size:0x130 +fn_80415BD4 = .text:0x80415BD4; // type:function size:0x104 +fn_80415CD8 = .text:0x80415CD8; // type:function size:0x114 +fn_80415DEC = .text:0x80415DEC; // type:function size:0xCC +fn_80415EB8 = .text:0x80415EB8; // type:function size:0xA4 +fn_80415F5C = .text:0x80415F5C; // type:function size:0xBC +fn_80416018 = .text:0x80416018; // type:function size:0x40 +fn_80416058 = .text:0x80416058; // type:function size:0x54 +fn_804160AC = .text:0x804160AC; // type:function size:0x50 +fn_804160FC = .text:0x804160FC; // type:function size:0xD0 +fn_804161CC = .text:0x804161CC; // type:function size:0x78 +fn_80416244 = .text:0x80416244; // type:function size:0x48 +fn_8041628C = .text:0x8041628C; // type:function size:0xAC +fn_80416338 = .text:0x80416338; // type:function size:0x78 +fn_804163B0 = .text:0x804163B0; // type:function size:0x24 +fn_804163D4 = .text:0x804163D4; // type:function size:0x88 +fn_8041645C = .text:0x8041645C; // type:function size:0x3C0 +fn_8041681C = .text:0x8041681C; // type:function size:0x404 +fn_80416C20 = .text:0x80416C20; // type:function size:0x90 +fn_80416CB0 = .text:0x80416CB0; // type:function size:0x4 +fn_80416CB4 = .text:0x80416CB4; // type:function size:0x184 +fn_80416E38 = .text:0x80416E38; // type:function size:0x40 +fn_80416E78 = .text:0x80416E78; // type:function size:0x104 +fn_80416F7C = .text:0x80416F7C; // type:function size:0x4 +fn_80416F80 = .text:0x80416F80; // type:function size:0xF4 +fn_80417074 = .text:0x80417074; // type:function size:0x8 +fn_8041707C = .text:0x8041707C; // type:function size:0xB4 +fn_80417130 = .text:0x80417130; // type:function size:0x34 +fn_80417164 = .text:0x80417164; // type:function size:0x3C +fn_804171A0 = .text:0x804171A0; // type:function size:0x174 +fn_80417314 = .text:0x80417314; // type:function size:0x134 +fn_80417448 = .text:0x80417448; // type:function size:0x4 +fn_8041744C = .text:0x8041744C; // type:function size:0x8 +fn_80417454 = .text:0x80417454; // type:function size:0x8 +fn_8041745C = .text:0x8041745C; // type:function size:0x8 +fn_80417464 = .text:0x80417464; // type:function size:0x8 +fn_8041746C = .text:0x8041746C; // type:function size:0x8 +fn_80417474 = .text:0x80417474; // type:function size:0x8 +fn_8041747C = .text:0x8041747C; // type:function size:0x8 +fn_80417484 = .text:0x80417484; // type:function size:0x8 +fn_8041748C = .text:0x8041748C; // type:function size:0x8 +fn_80417494 = .text:0x80417494; // type:function size:0x8 +fn_8041749C = .text:0x8041749C; // type:function size:0x8 +fn_804174A4 = .text:0x804174A4; // type:function size:0x8 +fn_804174AC = .text:0x804174AC; // type:function size:0x8 +fn_804174B4 = .text:0x804174B4; // type:function size:0x8 +fn_804174BC = .text:0x804174BC; // type:function size:0x14 +fn_804174D0 = .text:0x804174D0; // type:function size:0x14 +fn_804174E4 = .text:0x804174E4; // type:function size:0x8 +fn_804174EC = .text:0x804174EC; // type:function size:0x8 +fn_804174F4 = .text:0x804174F4; // type:function size:0x8 +fn_804174FC = .text:0x804174FC; // type:function size:0x8 +fn_80417504 = .text:0x80417504; // type:function size:0x8 +fn_8041750C = .text:0x8041750C; // type:function size:0x8 +fn_80417514 = .text:0x80417514; // type:function size:0x8 +fn_8041751C = .text:0x8041751C; // type:function size:0x8 +fn_80417524 = .text:0x80417524; // type:function size:0x8 +fn_8041752C = .text:0x8041752C; // type:function size:0x8 +fn_80417534 = .text:0x80417534; // type:function size:0x8 +fn_8041753C = .text:0x8041753C; // type:function size:0x8 +fn_80417544 = .text:0x80417544; // type:function size:0x14 +fn_80417558 = .text:0x80417558; // type:function size:0x14 +fn_8041756C = .text:0x8041756C; // type:function size:0x14 +fn_80417580 = .text:0x80417580; // type:function size:0x14 +fn_80417594 = .text:0x80417594; // type:function size:0x14 +fn_804175A8 = .text:0x804175A8; // type:function size:0x14 +fn_804175BC = .text:0x804175BC; // type:function size:0x14 +fn_804175D0 = .text:0x804175D0; // type:function size:0x14 +fn_804175E4 = .text:0x804175E4; // type:function size:0x14 +fn_804175F8 = .text:0x804175F8; // type:function size:0x14 +fn_8041760C = .text:0x8041760C; // type:function size:0x14 +fn_80417620 = .text:0x80417620; // type:function size:0x14 +fn_80417634 = .text:0x80417634; // type:function size:0x14 +fn_80417648 = .text:0x80417648; // type:function size:0x14 +fn_8041765C = .text:0x8041765C; // type:function size:0x14 +fn_80417670 = .text:0x80417670; // type:function size:0x8 +fn_80417678 = .text:0x80417678; // type:function size:0x8 +fn_80417680 = .text:0x80417680; // type:function size:0x8 +fn_80417688 = .text:0x80417688; // type:function size:0x8 +fn_80417690 = .text:0x80417690; // type:function size:0x8 +fn_80417698 = .text:0x80417698; // type:function size:0x40 +fn_804176D8 = .text:0x804176D8; // type:function size:0x34 +fn_8041770C = .text:0x8041770C; // type:function size:0x48 +fn_80417754 = .text:0x80417754; // type:function size:0x4C +__ct__14PlayerDiffIconFv = .text:0x804177A0; // type:function size:0x144 +__ct__20UIListCustomTemplateFv = .text:0x804178E4; // type:function size:0x10 +fn_804178F4 = .text:0x804178F4; // type:function size:0xC0 +fn_804179B4 = .text:0x804179B4; // type:function size:0x84 +fn_80417A38 = .text:0x80417A38; // type:function size:0x4 +fn_80417A3C = .text:0x80417A3C; // type:function size:0x5C +fn_80417A98 = .text:0x80417A98; // type:function size:0x78 +fn_80417B10 = .text:0x80417B10; // type:function size:0x40 +fn_80417B50 = .text:0x80417B50; // type:function size:0x194 +fn_80417CE4 = .text:0x80417CE4; // type:function size:0x50 +fn_80417D34 = .text:0x80417D34; // type:function size:0xD0 +fn_80417E04 = .text:0x80417E04; // type:function size:0x78 +fn_80417E7C = .text:0x80417E7C; // type:function size:0x50 +fn_80417ECC = .text:0x80417ECC; // type:function size:0xD0 +fn_80417F9C = .text:0x80417F9C; // type:function size:0x8 +fn_80417FA4 = .text:0x80417FA4; // type:function size:0x8 +fn_80417FAC = .text:0x80417FAC; // type:function size:0x78 +fn_80418024 = .text:0x80418024; // type:function size:0x54 +fn_80418078 = .text:0x80418078; // type:function size:0x44 +fn_804180BC = .text:0x804180BC; // type:function size:0x48 +fn_80418104 = .text:0x80418104; // type:function size:0x4 +fn_80418108 = .text:0x80418108; // type:function size:0xC +fn_80418114 = .text:0x80418114; // type:function size:0x180 +fn_80418294 = .text:0x80418294; // type:function size:0x128 +fn_804183BC = .text:0x804183BC; // type:function size:0xF4 +fn_804184B0 = .text:0x804184B0; // type:function size:0x138 +fn_804185E8 = .text:0x804185E8; // type:function size:0x4 +fn_804185EC = .text:0x804185EC; // type:function size:0x14 +fn_80418600 = .text:0x80418600; // type:function size:0x8 +fn_80418608 = .text:0x80418608; // type:function size:0x8 +fn_80418610 = .text:0x80418610; // type:function size:0x8 +fn_80418618 = .text:0x80418618; // type:function size:0x8 +fn_80418620 = .text:0x80418620; // type:function size:0x8 +fn_80418628 = .text:0x80418628; // type:function size:0x8 +fn_80418630 = .text:0x80418630; // type:function size:0x8 +fn_80418638 = .text:0x80418638; // type:function size:0x8 +fn_80418640 = .text:0x80418640; // type:function size:0x14 +fn_80418654 = .text:0x80418654; // type:function size:0x14 +fn_80418668 = .text:0x80418668; // type:function size:0x14 +fn_8041867C = .text:0x8041867C; // type:function size:0x14 +fn_80418690 = .text:0x80418690; // type:function size:0x14 +fn_804186A4 = .text:0x804186A4; // type:function size:0x14 +fn_804186B8 = .text:0x804186B8; // type:function size:0x14 +fn_804186CC = .text:0x804186CC; // type:function size:0x14 +fn_804186E0 = .text:0x804186E0; // type:function size:0x14 +fn_804186F4 = .text:0x804186F4; // type:function size:0x14 +fn_80418708 = .text:0x80418708; // type:function size:0x8 +fn_80418710 = .text:0x80418710; // type:function size:0x8 +fn_80418718 = .text:0x80418718; // type:function size:0x8 +fn_80418720 = .text:0x80418720; // type:function size:0x8 +fn_80418728 = .text:0x80418728; // type:function size:0x8 +fn_80418730 = .text:0x80418730; // type:function size:0x8 +fn_80418738 = .text:0x80418738; // type:function size:0x8 +fn_80418740 = .text:0x80418740; // type:function size:0x40 +fn_80418780 = .text:0x80418780; // type:function size:0x34 +fn_804187B4 = .text:0x804187B4; // type:function size:0x48 +fn_804187FC = .text:0x804187FC; // type:function size:0x4C +fn_80418848 = .text:0x80418848; // type:function size:0x134 +fn_8041897C = .text:0x8041897C; // type:function size:0x80 +fn_804189FC = .text:0x804189FC; // type:function size:0x48 +fn_80418A44 = .text:0x80418A44; // type:function size:0x68 +fn_80418AAC = .text:0x80418AAC; // type:function size:0x120 +fn_80418BCC = .text:0x80418BCC; // type:function size:0xB0 +fn_80418C7C = .text:0x80418C7C; // type:function size:0x8 +fn_80418C84 = .text:0x80418C84; // type:function size:0x4 +fn_80418C88 = .text:0x80418C88; // type:function size:0x5C +fn_80418CE4 = .text:0x80418CE4; // type:function size:0xF8 +fn_80418DDC = .text:0x80418DDC; // type:function size:0x40 +fn_80418E1C = .text:0x80418E1C; // type:function size:0x104 +fn_80418F20 = .text:0x80418F20; // type:function size:0x40 +fn_80418F60 = .text:0x80418F60; // type:function size:0x118 +fn_80419078 = .text:0x80419078; // type:function size:0x144 +fn_804191BC = .text:0x804191BC; // type:function size:0x58 +fn_80419214 = .text:0x80419214; // type:function size:0x8 +fn_8041921C = .text:0x8041921C; // type:function size:0x224 +fn_80419440 = .text:0x80419440; // type:function size:0x154 +fn_80419594 = .text:0x80419594; // type:function size:0x298 +fn_8041982C = .text:0x8041982C; // type:function size:0xC0 +fn_804198EC = .text:0x804198EC; // type:function size:0x60 +fn_8041994C = .text:0x8041994C; // type:function size:0x138 +fn_80419A84 = .text:0x80419A84; // type:function size:0x4 +fn_80419A88 = .text:0x80419A88; // type:function size:0x14 +fn_80419A9C = .text:0x80419A9C; // type:function size:0x8 +fn_80419AA4 = .text:0x80419AA4; // type:function size:0x8 +fn_80419AAC = .text:0x80419AAC; // type:function size:0x8 +fn_80419AB4 = .text:0x80419AB4; // type:function size:0x8 +fn_80419ABC = .text:0x80419ABC; // type:function size:0x8 +fn_80419AC4 = .text:0x80419AC4; // type:function size:0x8 +fn_80419ACC = .text:0x80419ACC; // type:function size:0x8 +fn_80419AD4 = .text:0x80419AD4; // type:function size:0x8 +fn_80419ADC = .text:0x80419ADC; // type:function size:0x14 +fn_80419AF0 = .text:0x80419AF0; // type:function size:0x14 +fn_80419B04 = .text:0x80419B04; // type:function size:0x14 +fn_80419B18 = .text:0x80419B18; // type:function size:0x14 +fn_80419B2C = .text:0x80419B2C; // type:function size:0x14 +fn_80419B40 = .text:0x80419B40; // type:function size:0x14 +fn_80419B54 = .text:0x80419B54; // type:function size:0x14 +fn_80419B68 = .text:0x80419B68; // type:function size:0x14 +fn_80419B7C = .text:0x80419B7C; // type:function size:0x14 +fn_80419B90 = .text:0x80419B90; // type:function size:0x14 +fn_80419BA4 = .text:0x80419BA4; // type:function size:0x8 +fn_80419BAC = .text:0x80419BAC; // type:function size:0x8 +fn_80419BB4 = .text:0x80419BB4; // type:function size:0x8 +fn_80419BBC = .text:0x80419BBC; // type:function size:0x8 +fn_80419BC4 = .text:0x80419BC4; // type:function size:0x40 +fn_80419C04 = .text:0x80419C04; // type:function size:0x34 +fn_80419C38 = .text:0x80419C38; // type:function size:0x48 +fn_80419C80 = .text:0x80419C80; // type:function size:0x4C +fn_80419CCC = .text:0x80419CCC; // type:function size:0x144 +fn_80419E10 = .text:0x80419E10; // type:function size:0x84 +fn_80419E94 = .text:0x80419E94; // type:function size:0x6C +fn_80419F00 = .text:0x80419F00; // type:function size:0xA8 +fn_80419FA8 = .text:0x80419FA8; // type:function size:0x4 +fn_80419FAC = .text:0x80419FAC; // type:function size:0x90 +fn_8041A03C = .text:0x8041A03C; // type:function size:0x8 +fn_8041A044 = .text:0x8041A044; // type:function size:0x4 +fn_8041A048 = .text:0x8041A048; // type:function size:0x5C +fn_8041A0A4 = .text:0x8041A0A4; // type:function size:0xD0 +fn_8041A174 = .text:0x8041A174; // type:function size:0x40 +fn_8041A1B4 = .text:0x8041A1B4; // type:function size:0x104 +fn_8041A2B8 = .text:0x8041A2B8; // type:function size:0x40 +fn_8041A2F8 = .text:0x8041A2F8; // type:function size:0x4 +fn_8041A2FC = .text:0x8041A2FC; // type:function size:0x1AC +fn_8041A4A8 = .text:0x8041A4A8; // type:function size:0x8 +fn_8041A4B0 = .text:0x8041A4B0; // type:function size:0x8 +fn_8041A4B8 = .text:0x8041A4B8; // type:function size:0x8C +fn_8041A544 = .text:0x8041A544; // type:function size:0x9C +fn_8041A5E0 = .text:0x8041A5E0; // type:function size:0x11C +fn_8041A6FC = .text:0x8041A6FC; // type:function size:0x9C +fn_8041A798 = .text:0x8041A798; // type:function size:0x12C +fn_8041A8C4 = .text:0x8041A8C4; // type:function size:0x4C +fn_8041A910 = .text:0x8041A910; // type:function size:0x48 +fn_8041A958 = .text:0x8041A958; // type:function size:0xA8 +fn_8041AA00 = .text:0x8041AA00; // type:function size:0x64 +fn_8041AA64 = .text:0x8041AA64; // type:function size:0x8 +fn_8041AA6C = .text:0x8041AA6C; // type:function size:0x8 +fn_8041AA74 = .text:0x8041AA74; // type:function size:0x8 +fn_8041AA7C = .text:0x8041AA7C; // type:function size:0x8 +fn_8041AA84 = .text:0x8041AA84; // type:function size:0x8 +fn_8041AA8C = .text:0x8041AA8C; // type:function size:0x8 +fn_8041AA94 = .text:0x8041AA94; // type:function size:0x8 +fn_8041AA9C = .text:0x8041AA9C; // type:function size:0x8 +fn_8041AAA4 = .text:0x8041AAA4; // type:function size:0x1C +fn_8041AAC0 = .text:0x8041AAC0; // type:function size:0x8 +fn_8041AAC8 = .text:0x8041AAC8; // type:function size:0xD4 +fn_8041AB9C = .text:0x8041AB9C; // type:function size:0x404 +fn_8041AFA0 = .text:0x8041AFA0; // type:function size:0x3C +fn_8041AFDC = .text:0x8041AFDC; // type:function size:0x70 +fn_8041B04C = .text:0x8041B04C; // type:function size:0x138 +fn_8041B184 = .text:0x8041B184; // type:function size:0x4 +fn_8041B188 = .text:0x8041B188; // type:function size:0x14 +fn_8041B19C = .text:0x8041B19C; // type:function size:0x14 +fn_8041B1B0 = .text:0x8041B1B0; // type:function size:0x8 +fn_8041B1B8 = .text:0x8041B1B8; // type:function size:0x8 +fn_8041B1C0 = .text:0x8041B1C0; // type:function size:0x8 +fn_8041B1C8 = .text:0x8041B1C8; // type:function size:0x8 +fn_8041B1D0 = .text:0x8041B1D0; // type:function size:0x8 +fn_8041B1D8 = .text:0x8041B1D8; // type:function size:0x8 +fn_8041B1E0 = .text:0x8041B1E0; // type:function size:0x8 +fn_8041B1E8 = .text:0x8041B1E8; // type:function size:0x8 +fn_8041B1F0 = .text:0x8041B1F0; // type:function size:0x14 +fn_8041B204 = .text:0x8041B204; // type:function size:0x14 +fn_8041B218 = .text:0x8041B218; // type:function size:0x14 +fn_8041B22C = .text:0x8041B22C; // type:function size:0x14 +fn_8041B240 = .text:0x8041B240; // type:function size:0x14 +fn_8041B254 = .text:0x8041B254; // type:function size:0x14 +fn_8041B268 = .text:0x8041B268; // type:function size:0x14 +fn_8041B27C = .text:0x8041B27C; // type:function size:0x14 +fn_8041B290 = .text:0x8041B290; // type:function size:0x14 +fn_8041B2A4 = .text:0x8041B2A4; // type:function size:0x14 +fn_8041B2B8 = .text:0x8041B2B8; // type:function size:0x14 +fn_8041B2CC = .text:0x8041B2CC; // type:function size:0x14 +fn_8041B2E0 = .text:0x8041B2E0; // type:function size:0x8 +fn_8041B2E8 = .text:0x8041B2E8; // type:function size:0x8 +fn_8041B2F0 = .text:0x8041B2F0; // type:function size:0x8 +fn_8041B2F8 = .text:0x8041B2F8; // type:function size:0x8 +fn_8041B300 = .text:0x8041B300; // type:function size:0x8 +fn_8041B308 = .text:0x8041B308; // type:function size:0x40 +fn_8041B348 = .text:0x8041B348; // type:function size:0x34 +fn_8041B37C = .text:0x8041B37C; // type:function size:0x48 +fn_8041B3C4 = .text:0x8041B3C4; // type:function size:0x4C +fn_8041B410 = .text:0x8041B410; // type:function size:0xCC +fn_8041B4DC = .text:0x8041B4DC; // type:function size:0x98 +fn_8041B574 = .text:0x8041B574; // type:function size:0x4 +fn_8041B578 = .text:0x8041B578; // type:function size:0x60 +fn_8041B5D8 = .text:0x8041B5D8; // type:function size:0x4 +fn_8041B5DC = .text:0x8041B5DC; // type:function size:0x5C +fn_8041B638 = .text:0x8041B638; // type:function size:0x70 +fn_8041B6A8 = .text:0x8041B6A8; // type:function size:0x40 +fn_8041B6E8 = .text:0x8041B6E8; // type:function size:0x4 +fn_8041B6EC = .text:0x8041B6EC; // type:function size:0x8 +fn_8041B6F4 = .text:0x8041B6F4; // type:function size:0x70 +fn_8041B764 = .text:0x8041B764; // type:function size:0x7C +fn_8041B7E0 = .text:0x8041B7E0; // type:function size:0xD4 +fn_8041B8B4 = .text:0x8041B8B4; // type:function size:0x108 +fn_8041B9BC = .text:0x8041B9BC; // type:function size:0x138 +fn_8041BAF4 = .text:0x8041BAF4; // type:function size:0x4 +fn_8041BAF8 = .text:0x8041BAF8; // type:function size:0x14 +fn_8041BB0C = .text:0x8041BB0C; // type:function size:0x14 +fn_8041BB20 = .text:0x8041BB20; // type:function size:0x8 +fn_8041BB28 = .text:0x8041BB28; // type:function size:0x8 +fn_8041BB30 = .text:0x8041BB30; // type:function size:0x8 +fn_8041BB38 = .text:0x8041BB38; // type:function size:0x8 +fn_8041BB40 = .text:0x8041BB40; // type:function size:0x8 +fn_8041BB48 = .text:0x8041BB48; // type:function size:0x8 +fn_8041BB50 = .text:0x8041BB50; // type:function size:0x8 +fn_8041BB58 = .text:0x8041BB58; // type:function size:0x8 +fn_8041BB60 = .text:0x8041BB60; // type:function size:0x14 +fn_8041BB74 = .text:0x8041BB74; // type:function size:0x14 +fn_8041BB88 = .text:0x8041BB88; // type:function size:0x14 +fn_8041BB9C = .text:0x8041BB9C; // type:function size:0x14 +fn_8041BBB0 = .text:0x8041BBB0; // type:function size:0x14 +fn_8041BBC4 = .text:0x8041BBC4; // type:function size:0x14 +fn_8041BBD8 = .text:0x8041BBD8; // type:function size:0x14 +fn_8041BBEC = .text:0x8041BBEC; // type:function size:0x14 +fn_8041BC00 = .text:0x8041BC00; // type:function size:0x14 +fn_8041BC14 = .text:0x8041BC14; // type:function size:0x14 +fn_8041BC28 = .text:0x8041BC28; // type:function size:0x14 +fn_8041BC3C = .text:0x8041BC3C; // type:function size:0x14 +fn_8041BC50 = .text:0x8041BC50; // type:function size:0x14 +fn_8041BC64 = .text:0x8041BC64; // type:function size:0x8 +fn_8041BC6C = .text:0x8041BC6C; // type:function size:0x8 +fn_8041BC74 = .text:0x8041BC74; // type:function size:0x8 +fn_8041BC7C = .text:0x8041BC7C; // type:function size:0x8 +fn_8041BC84 = .text:0x8041BC84; // type:function size:0x8 +fn_8041BC8C = .text:0x8041BC8C; // type:function size:0x40 +fn_8041BCCC = .text:0x8041BCCC; // type:function size:0x34 +fn_8041BD00 = .text:0x8041BD00; // type:function size:0x48 +fn_8041BD48 = .text:0x8041BD48; // type:function size:0x4C +__ct__12ScoreDisplayFv = .text:0x8041BD94; // type:function size:0x118 +fn_8041BEAC = .text:0x8041BEAC; // type:function size:0x114 +fn_8041BFC0 = .text:0x8041BFC0; // type:function size:0x4C +fn_8041C00C = .text:0x8041C00C; // type:function size:0x84 +fn_8041C090 = .text:0x8041C090; // type:function size:0x4 +fn_8041C094 = .text:0x8041C094; // type:function size:0x5C +fn_8041C0F0 = .text:0x8041C0F0; // type:function size:0xB0 +fn_8041C1A0 = .text:0x8041C1A0; // type:function size:0x40 +fn_8041C1E0 = .text:0x8041C1E0; // type:function size:0x40 +fn_8041C220 = .text:0x8041C220; // type:function size:0x48 +fn_8041C268 = .text:0x8041C268; // type:function size:0x4 +fn_8041C26C = .text:0x8041C26C; // type:function size:0x4 +fn_8041C270 = .text:0x8041C270; // type:function size:0x78 +fn_8041C2E8 = .text:0x8041C2E8; // type:function size:0xE4 +fn_8041C3CC = .text:0x8041C3CC; // type:function size:0x20 +fn_8041C3EC = .text:0x8041C3EC; // type:function size:0x44 +fn_8041C430 = .text:0x8041C430; // type:function size:0xA4 +fn_8041C4D4 = .text:0x8041C4D4; // type:function size:0x134 +fn_8041C608 = .text:0x8041C608; // type:function size:0x21C +fn_8041C824 = .text:0x8041C824; // type:function size:0x138 +fn_8041C95C = .text:0x8041C95C; // type:function size:0x4 +fn_8041C960 = .text:0x8041C960; // type:function size:0x14 +fn_8041C974 = .text:0x8041C974; // type:function size:0x8 +fn_8041C97C = .text:0x8041C97C; // type:function size:0x8 +fn_8041C984 = .text:0x8041C984; // type:function size:0x8 +fn_8041C98C = .text:0x8041C98C; // type:function size:0x14 +fn_8041C9A0 = .text:0x8041C9A0; // type:function size:0x14 +fn_8041C9B4 = .text:0x8041C9B4; // type:function size:0x14 +fn_8041C9C8 = .text:0x8041C9C8; // type:function size:0x8 +fn_8041C9D0 = .text:0x8041C9D0; // type:function size:0x8 +fn_8041C9D8 = .text:0x8041C9D8; // type:function size:0x8 +fn_8041C9E0 = .text:0x8041C9E0; // type:function size:0x8 +fn_8041C9E8 = .text:0x8041C9E8; // type:function size:0x40 +fn_8041CA28 = .text:0x8041CA28; // type:function size:0x34 +fn_8041CA5C = .text:0x8041CA5C; // type:function size:0x48 +fn_8041CAA4 = .text:0x8041CAA4; // type:function size:0x4C +__ct__13ReviewDisplayFv = .text:0x8041CAF0; // type:function size:0xD4 +fn_8041CBC4 = .text:0x8041CBC4; // type:function size:0x98 +fn_8041CC5C = .text:0x8041CC5C; // type:function size:0x4 +fn_8041CC60 = .text:0x8041CC60; // type:function size:0x60 +fn_8041CCC0 = .text:0x8041CCC0; // type:function size:0x4 +fn_8041CCC4 = .text:0x8041CCC4; // type:function size:0x5C +fn_8041CD20 = .text:0x8041CD20; // type:function size:0x70 +fn_8041CD90 = .text:0x8041CD90; // type:function size:0x40 +fn_8041CDD0 = .text:0x8041CDD0; // type:function size:0x44 +fn_8041CE14 = .text:0x8041CE14; // type:function size:0x4C +fn_8041CE60 = .text:0x8041CE60; // type:function size:0x4 +fn_8041CE64 = .text:0x8041CE64; // type:function size:0xEC +fn_8041CF50 = .text:0x8041CF50; // type:function size:0x18 +fn_8041CF68 = .text:0x8041CF68; // type:function size:0x54 +fn_8041CFBC = .text:0x8041CFBC; // type:function size:0xA8 +fn_8041D064 = .text:0x8041D064; // type:function size:0xAC +fn_8041D110 = .text:0x8041D110; // type:function size:0x6C +fn_8041D17C = .text:0x8041D17C; // type:function size:0x12C +fn_8041D2A8 = .text:0x8041D2A8; // type:function size:0xF4 +fn_8041D39C = .text:0x8041D39C; // type:function size:0x138 +fn_8041D4D4 = .text:0x8041D4D4; // type:function size:0x4 +fn_8041D4D8 = .text:0x8041D4D8; // type:function size:0x14 +fn_8041D4EC = .text:0x8041D4EC; // type:function size:0x14 +fn_8041D500 = .text:0x8041D500; // type:function size:0x8 +fn_8041D508 = .text:0x8041D508; // type:function size:0x8 +fn_8041D510 = .text:0x8041D510; // type:function size:0x8 +fn_8041D518 = .text:0x8041D518; // type:function size:0x8 +fn_8041D520 = .text:0x8041D520; // type:function size:0x8 +fn_8041D528 = .text:0x8041D528; // type:function size:0x8 +fn_8041D530 = .text:0x8041D530; // type:function size:0x8 +fn_8041D538 = .text:0x8041D538; // type:function size:0x8 +fn_8041D540 = .text:0x8041D540; // type:function size:0x14 +fn_8041D554 = .text:0x8041D554; // type:function size:0x14 +fn_8041D568 = .text:0x8041D568; // type:function size:0x14 +fn_8041D57C = .text:0x8041D57C; // type:function size:0x14 +fn_8041D590 = .text:0x8041D590; // type:function size:0x14 +fn_8041D5A4 = .text:0x8041D5A4; // type:function size:0x14 +fn_8041D5B8 = .text:0x8041D5B8; // type:function size:0x14 +fn_8041D5CC = .text:0x8041D5CC; // type:function size:0x14 +fn_8041D5E0 = .text:0x8041D5E0; // type:function size:0x14 +fn_8041D5F4 = .text:0x8041D5F4; // type:function size:0x14 +fn_8041D608 = .text:0x8041D608; // type:function size:0x14 +fn_8041D61C = .text:0x8041D61C; // type:function size:0x14 +fn_8041D630 = .text:0x8041D630; // type:function size:0x14 +fn_8041D644 = .text:0x8041D644; // type:function size:0x8 +fn_8041D64C = .text:0x8041D64C; // type:function size:0x8 +fn_8041D654 = .text:0x8041D654; // type:function size:0x8 +fn_8041D65C = .text:0x8041D65C; // type:function size:0x8 +fn_8041D664 = .text:0x8041D664; // type:function size:0x8 +fn_8041D66C = .text:0x8041D66C; // type:function size:0x8 +fn_8041D674 = .text:0x8041D674; // type:function size:0x40 +fn_8041D6B4 = .text:0x8041D6B4; // type:function size:0x34 +fn_8041D6E8 = .text:0x8041D6E8; // type:function size:0x48 +fn_8041D730 = .text:0x8041D730; // type:function size:0x4C +__ct__11StarDisplayFv = .text:0x8041D77C; // type:function size:0x120 +__dt__11StarDisplayFv = .text:0x8041D89C; // type:function size:0x114 +fn_8041D9B0 = .text:0x8041D9B0; // type:function size:0x4 +fn_8041D9B4 = .text:0x8041D9B4; // type:function size:0xA4 +fn_8041DA58 = .text:0x8041DA58; // type:function size:0x4 +fn_8041DA5C = .text:0x8041DA5C; // type:function size:0x5C +fn_8041DAB8 = .text:0x8041DAB8; // type:function size:0x148 +fn_8041DC00 = .text:0x8041DC00; // type:function size:0x40 +fn_8041DC40 = .text:0x8041DC40; // type:function size:0x34 +fn_8041DC74 = .text:0x8041DC74; // type:function size:0xC0 +fn_8041DD34 = .text:0x8041DD34; // type:function size:0x6C +fn_8041DDA0 = .text:0x8041DDA0; // type:function size:0x70 +fn_8041DE10 = .text:0x8041DE10; // type:function size:0x84 +fn_8041DE94 = .text:0x8041DE94; // type:function size:0xAC +fn_8041DF40 = .text:0x8041DF40; // type:function size:0x1EC +fn_8041E12C = .text:0x8041E12C; // type:function size:0xB4 +fn_8041E1E0 = .text:0x8041E1E0; // type:function size:0xD4 +fn_8041E2B4 = .text:0x8041E2B4; // type:function size:0xAC +fn_8041E360 = .text:0x8041E360; // type:function size:0xC +fn_8041E36C = .text:0x8041E36C; // type:function size:0x44 +fn_8041E3B0 = .text:0x8041E3B0; // type:function size:0x8 +fn_8041E3B8 = .text:0x8041E3B8; // type:function size:0x8 +fn_8041E3C0 = .text:0x8041E3C0; // type:function size:0x8 +fn_8041E3C8 = .text:0x8041E3C8; // type:function size:0xD8 +fn_8041E4A0 = .text:0x8041E4A0; // type:function size:0x16C +fn_8041E60C = .text:0x8041E60C; // type:function size:0x4B4 +fn_8041EAC0 = .text:0x8041EAC0; // type:function size:0x138 +fn_8041EBF8 = .text:0x8041EBF8; // type:function size:0x4 +fn_8041EBFC = .text:0x8041EBFC; // type:function size:0x14 +fn_8041EC10 = .text:0x8041EC10; // type:function size:0x14 +fn_8041EC24 = .text:0x8041EC24; // type:function size:0x8 +fn_8041EC2C = .text:0x8041EC2C; // type:function size:0x8 +fn_8041EC34 = .text:0x8041EC34; // type:function size:0x8 +fn_8041EC3C = .text:0x8041EC3C; // type:function size:0x8 +fn_8041EC44 = .text:0x8041EC44; // type:function size:0x8 +fn_8041EC4C = .text:0x8041EC4C; // type:function size:0x8 +fn_8041EC54 = .text:0x8041EC54; // type:function size:0x8 +fn_8041EC5C = .text:0x8041EC5C; // type:function size:0x8 +fn_8041EC64 = .text:0x8041EC64; // type:function size:0x14 +fn_8041EC78 = .text:0x8041EC78; // type:function size:0x14 +fn_8041EC8C = .text:0x8041EC8C; // type:function size:0x14 +fn_8041ECA0 = .text:0x8041ECA0; // type:function size:0x14 +fn_8041ECB4 = .text:0x8041ECB4; // type:function size:0x14 +fn_8041ECC8 = .text:0x8041ECC8; // type:function size:0x14 +fn_8041ECDC = .text:0x8041ECDC; // type:function size:0x14 +fn_8041ECF0 = .text:0x8041ECF0; // type:function size:0x14 +fn_8041ED04 = .text:0x8041ED04; // type:function size:0x14 +fn_8041ED18 = .text:0x8041ED18; // type:function size:0x14 +fn_8041ED2C = .text:0x8041ED2C; // type:function size:0x14 +fn_8041ED40 = .text:0x8041ED40; // type:function size:0x14 +fn_8041ED54 = .text:0x8041ED54; // type:function size:0x8 +fn_8041ED5C = .text:0x8041ED5C; // type:function size:0x8 +fn_8041ED64 = .text:0x8041ED64; // type:function size:0x8 +fn_8041ED6C = .text:0x8041ED6C; // type:function size:0x8 +fn_8041ED74 = .text:0x8041ED74; // type:function size:0x8 +fn_8041ED7C = .text:0x8041ED7C; // type:function size:0x40 +fn_8041EDBC = .text:0x8041EDBC; // type:function size:0x34 +fn_8041EDF0 = .text:0x8041EDF0; // type:function size:0x48 +fn_8041EE38 = .text:0x8041EE38; // type:function size:0x4C +__ct__12MeterDisplayFv = .text:0x8041EE84; // type:function size:0x114 +__dt__12MeterDisplayFv = .text:0x8041EF98; // type:function size:0xF4 +fn_8041F08C = .text:0x8041F08C; // type:function size:0xB4 +fn_8041F140 = .text:0x8041F140; // type:function size:0x4 +fn_8041F144 = .text:0x8041F144; // type:function size:0x34 +fn_8041F178 = .text:0x8041F178; // type:function size:0x5C +fn_8041F1D4 = .text:0x8041F1D4; // type:function size:0xE8 +fn_8041F2BC = .text:0x8041F2BC; // type:function size:0x40 +fn_8041F2FC = .text:0x8041F2FC; // type:function size:0x298 +fn_8041F594 = .text:0x8041F594; // type:function size:0x60 +fn_8041F5F4 = .text:0x8041F5F4; // type:function size:0x258 +fn_8041F84C = .text:0x8041F84C; // type:function size:0x50 +fn_8041F89C = .text:0x8041F89C; // type:function size:0x18 +fn_8041F8B4 = .text:0x8041F8B4; // type:function size:0x8 +fn_8041F8BC = .text:0x8041F8BC; // type:function size:0x8 +fn_8041F8C4 = .text:0x8041F8C4; // type:function size:0x84 +fn_8041F948 = .text:0x8041F948; // type:function size:0x140 +fn_8041FA88 = .text:0x8041FA88; // type:function size:0x128 +fn_8041FBB0 = .text:0x8041FBB0; // type:function size:0x2D0 +fn_8041FE80 = .text:0x8041FE80; // type:function size:0x138 +fn_8041FFB8 = .text:0x8041FFB8; // type:function size:0x4 +fn_8041FFBC = .text:0x8041FFBC; // type:function size:0x14 +fn_8041FFD0 = .text:0x8041FFD0; // type:function size:0x8 +fn_8041FFD8 = .text:0x8041FFD8; // type:function size:0x8 +fn_8041FFE0 = .text:0x8041FFE0; // type:function size:0x8 +fn_8041FFE8 = .text:0x8041FFE8; // type:function size:0x8 +fn_8041FFF0 = .text:0x8041FFF0; // type:function size:0x8 +fn_8041FFF8 = .text:0x8041FFF8; // type:function size:0x8 +fn_80420000 = .text:0x80420000; // type:function size:0x8 +fn_80420008 = .text:0x80420008; // type:function size:0x8 +fn_80420010 = .text:0x80420010; // type:function size:0x14 +fn_80420024 = .text:0x80420024; // type:function size:0x14 +fn_80420038 = .text:0x80420038; // type:function size:0x14 +fn_8042004C = .text:0x8042004C; // type:function size:0x14 +fn_80420060 = .text:0x80420060; // type:function size:0x14 +fn_80420074 = .text:0x80420074; // type:function size:0x14 +fn_80420088 = .text:0x80420088; // type:function size:0x14 +fn_8042009C = .text:0x8042009C; // type:function size:0x14 +fn_804200B0 = .text:0x804200B0; // type:function size:0x14 +fn_804200C4 = .text:0x804200C4; // type:function size:0x14 +fn_804200D8 = .text:0x804200D8; // type:function size:0x8 +fn_804200E0 = .text:0x804200E0; // type:function size:0x8 +fn_804200E8 = .text:0x804200E8; // type:function size:0x8 +fn_804200F0 = .text:0x804200F0; // type:function size:0x8 +fn_804200F8 = .text:0x804200F8; // type:function size:0x8 +fn_80420100 = .text:0x80420100; // type:function size:0x8 +fn_80420108 = .text:0x80420108; // type:function size:0x40 +fn_80420148 = .text:0x80420148; // type:function size:0x34 +fn_8042017C = .text:0x8042017C; // type:function size:0x48 +fn_804201C4 = .text:0x804201C4; // type:function size:0x4C +__ct__13MicInputArrowFv = .text:0x80420210; // type:function size:0x20C +fn_8042041C = .text:0x8042041C; // type:function size:0x4 +fn_80420420 = .text:0x80420420; // type:function size:0x88 +fn_804204A8 = .text:0x804204A8; // type:function size:0x7C +fn_80420524 = .text:0x80420524; // type:function size:0x4 +fn_80420528 = .text:0x80420528; // type:function size:0x5C +fn_80420584 = .text:0x80420584; // type:function size:0x70 +fn_804205F4 = .text:0x804205F4; // type:function size:0x40 +fn_80420634 = .text:0x80420634; // type:function size:0x16C +fn_804207A0 = .text:0x804207A0; // type:function size:0x8 +fn_804207A8 = .text:0x804207A8; // type:function size:0xC4 +fn_8042086C = .text:0x8042086C; // type:function size:0x64 +fn_804208D0 = .text:0x804208D0; // type:function size:0x64 +fn_80420934 = .text:0x80420934; // type:function size:0x64 +fn_80420998 = .text:0x80420998; // type:function size:0x2F4 +fn_80420C8C = .text:0x80420C8C; // type:function size:0x22C +fn_80420EB8 = .text:0x80420EB8; // type:function size:0x34 +fn_80420EEC = .text:0x80420EEC; // type:function size:0x3C +fn_80420F28 = .text:0x80420F28; // type:function size:0xC0 +fn_80420FE8 = .text:0x80420FE8; // type:function size:0x108 +fn_804210F0 = .text:0x804210F0; // type:function size:0x138 +fn_80421228 = .text:0x80421228; // type:function size:0x4 +fn_8042122C = .text:0x8042122C; // type:function size:0x14 +fn_80421240 = .text:0x80421240; // type:function size:0x14 +fn_80421254 = .text:0x80421254; // type:function size:0x14 +fn_80421268 = .text:0x80421268; // type:function size:0x8 +fn_80421270 = .text:0x80421270; // type:function size:0x8 +fn_80421278 = .text:0x80421278; // type:function size:0x8 +fn_80421280 = .text:0x80421280; // type:function size:0x8 +fn_80421288 = .text:0x80421288; // type:function size:0x8 +fn_80421290 = .text:0x80421290; // type:function size:0x8 +fn_80421298 = .text:0x80421298; // type:function size:0x8 +fn_804212A0 = .text:0x804212A0; // type:function size:0x8 +fn_804212A8 = .text:0x804212A8; // type:function size:0x14 +fn_804212BC = .text:0x804212BC; // type:function size:0x14 +fn_804212D0 = .text:0x804212D0; // type:function size:0x14 +fn_804212E4 = .text:0x804212E4; // type:function size:0x14 +fn_804212F8 = .text:0x804212F8; // type:function size:0x14 +fn_8042130C = .text:0x8042130C; // type:function size:0x14 +fn_80421320 = .text:0x80421320; // type:function size:0x14 +fn_80421334 = .text:0x80421334; // type:function size:0x14 +fn_80421348 = .text:0x80421348; // type:function size:0x14 +fn_8042135C = .text:0x8042135C; // type:function size:0x14 +fn_80421370 = .text:0x80421370; // type:function size:0x14 +fn_80421384 = .text:0x80421384; // type:function size:0x14 +fn_80421398 = .text:0x80421398; // type:function size:0x14 +fn_804213AC = .text:0x804213AC; // type:function size:0x8 +fn_804213B4 = .text:0x804213B4; // type:function size:0x8 +fn_804213BC = .text:0x804213BC; // type:function size:0x8 +fn_804213C4 = .text:0x804213C4; // type:function size:0x8 +fn_804213CC = .text:0x804213CC; // type:function size:0x40 +fn_8042140C = .text:0x8042140C; // type:function size:0x34 +fn_80421440 = .text:0x80421440; // type:function size:0x48 +fn_80421488 = .text:0x80421488; // type:function size:0x4C +__ct__22MiniLeaderboardDisplayFv = .text:0x804214D4; // type:function size:0xCC +fn_804215A0 = .text:0x804215A0; // type:function size:0x98 +fn_80421638 = .text:0x80421638; // type:function size:0x80 +fn_804216B8 = .text:0x804216B8; // type:function size:0x4 +fn_804216BC = .text:0x804216BC; // type:function size:0x5C +fn_80421718 = .text:0x80421718; // type:function size:0x7C +fn_80421794 = .text:0x80421794; // type:function size:0x40 +fn_804217D4 = .text:0x804217D4; // type:function size:0x64 +fn_80421838 = .text:0x80421838; // type:function size:0xD4 +fn_8042190C = .text:0x8042190C; // type:function size:0xF0 +fn_804219FC = .text:0x804219FC; // type:function size:0x138 +fn_80421B34 = .text:0x80421B34; // type:function size:0x4 +fn_80421B38 = .text:0x80421B38; // type:function size:0x14 +fn_80421B4C = .text:0x80421B4C; // type:function size:0x14 +fn_80421B60 = .text:0x80421B60; // type:function size:0x8 +fn_80421B68 = .text:0x80421B68; // type:function size:0x8 +fn_80421B70 = .text:0x80421B70; // type:function size:0x8 +fn_80421B78 = .text:0x80421B78; // type:function size:0x8 +fn_80421B80 = .text:0x80421B80; // type:function size:0x14 +fn_80421B94 = .text:0x80421B94; // type:function size:0x14 +fn_80421BA8 = .text:0x80421BA8; // type:function size:0x14 +fn_80421BBC = .text:0x80421BBC; // type:function size:0x14 +fn_80421BD0 = .text:0x80421BD0; // type:function size:0x14 +fn_80421BE4 = .text:0x80421BE4; // type:function size:0x14 +fn_80421BF8 = .text:0x80421BF8; // type:function size:0x14 +fn_80421C0C = .text:0x80421C0C; // type:function size:0x14 +fn_80421C20 = .text:0x80421C20; // type:function size:0x14 +fn_80421C34 = .text:0x80421C34; // type:function size:0x14 +fn_80421C48 = .text:0x80421C48; // type:function size:0x14 +fn_80421C5C = .text:0x80421C5C; // type:function size:0x14 +fn_80421C70 = .text:0x80421C70; // type:function size:0x14 +fn_80421C84 = .text:0x80421C84; // type:function size:0x8 +fn_80421C8C = .text:0x80421C8C; // type:function size:0x8 +fn_80421C94 = .text:0x80421C94; // type:function size:0x8 +fn_80421C9C = .text:0x80421C9C; // type:function size:0x8 +__ct__11StreakMeterFv = .text:0x80421CA4; // type:function size:0x3A4 +fn_80422048 = .text:0x80422048; // type:function size:0x58 +fn_804220A0 = .text:0x804220A0; // type:function size:0x58 +fn_804220F8 = .text:0x804220F8; // type:function size:0x80 +fn_80422178 = .text:0x80422178; // type:function size:0x80 +fn_804221F8 = .text:0x804221F8; // type:function size:0x58 +fn_80422250 = .text:0x80422250; // type:function size:0x54 +fn_804222A4 = .text:0x804222A4; // type:function size:0x5C +fn_80422300 = .text:0x80422300; // type:function size:0x6C +fn_8042236C = .text:0x8042236C; // type:function size:0x28 +fn_80422394 = .text:0x80422394; // type:function size:0x80 +fn_80422414 = .text:0x80422414; // type:function size:0x8 +fn_8042241C = .text:0x8042241C; // type:function size:0x3C +fn_80422458 = .text:0x80422458; // type:function size:0x58 +fn_804224B0 = .text:0x804224B0; // type:function size:0x58 +fn_80422508 = .text:0x80422508; // type:function size:0x80 +fn_80422588 = .text:0x80422588; // type:function size:0x80 +fn_80422608 = .text:0x80422608; // type:function size:0x58 +fn_80422660 = .text:0x80422660; // type:function size:0x54 +fn_804226B4 = .text:0x804226B4; // type:function size:0x5C +fn_80422710 = .text:0x80422710; // type:function size:0x6C +fn_8042277C = .text:0x8042277C; // type:function size:0x28 +fn_804227A4 = .text:0x804227A4; // type:function size:0x8 +fn_804227AC = .text:0x804227AC; // type:function size:0x3C +fn_804227E8 = .text:0x804227E8; // type:function size:0x50 +fn_80422838 = .text:0x80422838; // type:function size:0x30 +fn_80422868 = .text:0x80422868; // type:function size:0x30 +fn_80422898 = .text:0x80422898; // type:function size:0x40 +fn_804228D8 = .text:0x804228D8; // type:function size:0x50 +fn_80422928 = .text:0x80422928; // type:function size:0x30 +fn_80422958 = .text:0x80422958; // type:function size:0x30 +fn_80422988 = .text:0x80422988; // type:function size:0x40 +fn_804229C8 = .text:0x804229C8; // type:function size:0x498 +fn_80422E60 = .text:0x80422E60; // type:function size:0x48 +fn_80422EA8 = .text:0x80422EA8; // type:function size:0x8 +fn_80422EB0 = .text:0x80422EB0; // type:function size:0x24 +fn_80422ED4 = .text:0x80422ED4; // type:function size:0x3C +fn_80422F10 = .text:0x80422F10; // type:function size:0x60 +fn_80422F70 = .text:0x80422F70; // type:function size:0x4 +fn_80422F74 = .text:0x80422F74; // type:function size:0x90 +fn_80423004 = .text:0x80423004; // type:function size:0x4 +fn_80423008 = .text:0x80423008; // type:function size:0x40 +fn_80423048 = .text:0x80423048; // type:function size:0x8C +fn_804230D4 = .text:0x804230D4; // type:function size:0x8 +fn_804230DC = .text:0x804230DC; // type:function size:0x2C +fn_80423108 = .text:0x80423108; // type:function size:0x58 +fn_80423160 = .text:0x80423160; // type:function size:0x28 +fn_80423188 = .text:0x80423188; // type:function size:0x68 +fn_804231F0 = .text:0x804231F0; // type:function size:0x68 +fn_80423258 = .text:0x80423258; // type:function size:0xA0 +fn_804232F8 = .text:0x804232F8; // type:function size:0x48 +fn_80423340 = .text:0x80423340; // type:function size:0x24 +fn_80423364 = .text:0x80423364; // type:function size:0x3C +fn_804233A0 = .text:0x804233A0; // type:function size:0x60 +fn_80423400 = .text:0x80423400; // type:function size:0x4 +fn_80423404 = .text:0x80423404; // type:function size:0x90 +fn_80423494 = .text:0x80423494; // type:function size:0x4 +fn_80423498 = .text:0x80423498; // type:function size:0x40 +fn_804234D8 = .text:0x804234D8; // type:function size:0x8C +fn_80423564 = .text:0x80423564; // type:function size:0x8 +fn_8042356C = .text:0x8042356C; // type:function size:0x2C +fn_80423598 = .text:0x80423598; // type:function size:0x58 +fn_804235F0 = .text:0x804235F0; // type:function size:0x28 +fn_80423618 = .text:0x80423618; // type:function size:0x68 +fn_80423680 = .text:0x80423680; // type:function size:0x4 +fn_80423684 = .text:0x80423684; // type:function size:0x3C +fn_804236C0 = .text:0x804236C0; // type:function size:0x18 +fn_804236D8 = .text:0x804236D8; // type:function size:0x64 +fn_8042373C = .text:0x8042373C; // type:function size:0x78 +fn_804237B4 = .text:0x804237B4; // type:function size:0x24 +fn_804237D8 = .text:0x804237D8; // type:function size:0x78 +fn_80423850 = .text:0x80423850; // type:function size:0x74 +fn_804238C4 = .text:0x804238C4; // type:function size:0xA0 +fn_80423964 = .text:0x80423964; // type:function size:0x34 +fn_80423998 = .text:0x80423998; // type:function size:0x34 +fn_804239CC = .text:0x804239CC; // type:function size:0x34 +fn_80423A00 = .text:0x80423A00; // type:function size:0xCC +fn_80423ACC = .text:0x80423ACC; // type:function size:0x54 +fn_80423B20 = .text:0x80423B20; // type:function size:0xBC +fn_80423BDC = .text:0x80423BDC; // type:function size:0x84 +fn_80423C60 = .text:0x80423C60; // type:function size:0x130 +fn_80423D90 = .text:0x80423D90; // type:function size:0x58 +fn_80423DE8 = .text:0x80423DE8; // type:function size:0xB4 +fn_80423E9C = .text:0x80423E9C; // type:function size:0x54 +fn_80423EF0 = .text:0x80423EF0; // type:function size:0x280 +fn_80424170 = .text:0x80424170; // type:function size:0x15C +fn_804242CC = .text:0x804242CC; // type:function size:0x4 +fn_804242D0 = .text:0x804242D0; // type:function size:0x1C0 +fn_80424490 = .text:0x80424490; // type:function size:0x40 +fn_804244D0 = .text:0x804244D0; // type:function size:0x104 +fn_804245D4 = .text:0x804245D4; // type:function size:0x40 +fn_80424614 = .text:0x80424614; // type:function size:0x104 +fn_80424718 = .text:0x80424718; // type:function size:0x40 +fn_80424758 = .text:0x80424758; // type:function size:0x104 +fn_8042485C = .text:0x8042485C; // type:function size:0x84 +fn_804248E0 = .text:0x804248E0; // type:function size:0x6C +fn_8042494C = .text:0x8042494C; // type:function size:0x4 +fn_80424950 = .text:0x80424950; // type:function size:0xDC +fn_80424A2C = .text:0x80424A2C; // type:function size:0x8 +fn_80424A34 = .text:0x80424A34; // type:function size:0xA4 +fn_80424AD8 = .text:0x80424AD8; // type:function size:0x90 +fn_80424B68 = .text:0x80424B68; // type:function size:0x210 +fn_80424D78 = .text:0x80424D78; // type:function size:0x50 +fn_80424DC8 = .text:0x80424DC8; // type:function size:0x70 +fn_80424E38 = .text:0x80424E38; // type:function size:0x6C +fn_80424EA4 = .text:0x80424EA4; // type:function size:0x68 +fn_80424F0C = .text:0x80424F0C; // type:function size:0x2C +fn_80424F38 = .text:0x80424F38; // type:function size:0x68 +fn_80424FA0 = .text:0x80424FA0; // type:function size:0x2C +fn_80424FCC = .text:0x80424FCC; // type:function size:0x1BC +fn_80425188 = .text:0x80425188; // type:function size:0x134 +fn_804252BC = .text:0x804252BC; // type:function size:0x4 +fn_804252C0 = .text:0x804252C0; // type:function size:0x198 +fn_80425458 = .text:0x80425458; // type:function size:0x5C +fn_804254B4 = .text:0x804254B4; // type:function size:0x10 +fn_804254C4 = .text:0x804254C4; // type:function size:0x54 +fn_80425518 = .text:0x80425518; // type:function size:0x28 +fn_80425540 = .text:0x80425540; // type:function size:0x68 +fn_804255A8 = .text:0x804255A8; // type:function size:0x5C +fn_80425604 = .text:0x80425604; // type:function size:0x6C +fn_80425670 = .text:0x80425670; // type:function size:0x114 +fn_80425784 = .text:0x80425784; // type:function size:0x5C +fn_804257E0 = .text:0x804257E0; // type:function size:0x5C +fn_8042583C = .text:0x8042583C; // type:function size:0x54 +fn_80425890 = .text:0x80425890; // type:function size:0x198 +fn_80425A28 = .text:0x80425A28; // type:function size:0x5C +fn_80425A84 = .text:0x80425A84; // type:function size:0x10 +fn_80425A94 = .text:0x80425A94; // type:function size:0x54 +fn_80425AE8 = .text:0x80425AE8; // type:function size:0x28 +fn_80425B10 = .text:0x80425B10; // type:function size:0x68 +fn_80425B78 = .text:0x80425B78; // type:function size:0x5C +fn_80425BD4 = .text:0x80425BD4; // type:function size:0x6C +fn_80425C40 = .text:0x80425C40; // type:function size:0x114 +fn_80425D54 = .text:0x80425D54; // type:function size:0x5C +fn_80425DB0 = .text:0x80425DB0; // type:function size:0x5C +fn_80425E0C = .text:0x80425E0C; // type:function size:0x54 +fn_80425E60 = .text:0x80425E60; // type:function size:0x8 +fn_80425E68 = .text:0x80425E68; // type:function size:0x8 +fn_80425E70 = .text:0x80425E70; // type:function size:0x8 +fn_80425E78 = .text:0x80425E78; // type:function size:0x8 +fn_80425E80 = .text:0x80425E80; // type:function size:0x8 +fn_80425E88 = .text:0x80425E88; // type:function size:0x8 +fn_80425E90 = .text:0x80425E90; // type:function size:0x8 +fn_80425E98 = .text:0x80425E98; // type:function size:0x8 +fn_80425EA0 = .text:0x80425EA0; // type:function size:0x8 +fn_80425EA8 = .text:0x80425EA8; // type:function size:0x8 +fn_80425EB0 = .text:0x80425EB0; // type:function size:0x8 +fn_80425EB8 = .text:0x80425EB8; // type:function size:0x8 +fn_80425EC0 = .text:0x80425EC0; // type:function size:0x8 +fn_80425EC8 = .text:0x80425EC8; // type:function size:0x8 +fn_80425ED0 = .text:0x80425ED0; // type:function size:0x14 +fn_80425EE4 = .text:0x80425EE4; // type:function size:0x14 +fn_80425EF8 = .text:0x80425EF8; // type:function size:0x8 +fn_80425F00 = .text:0x80425F00; // type:function size:0x8 +fn_80425F08 = .text:0x80425F08; // type:function size:0x8 +fn_80425F10 = .text:0x80425F10; // type:function size:0x8 +fn_80425F18 = .text:0x80425F18; // type:function size:0x8 +fn_80425F20 = .text:0x80425F20; // type:function size:0x8 +fn_80425F28 = .text:0x80425F28; // type:function size:0x8 +fn_80425F30 = .text:0x80425F30; // type:function size:0x8 +fn_80425F38 = .text:0x80425F38; // type:function size:0x8 +fn_80425F40 = .text:0x80425F40; // type:function size:0x8 +fn_80425F48 = .text:0x80425F48; // type:function size:0x8 +fn_80425F50 = .text:0x80425F50; // type:function size:0x14 +fn_80425F64 = .text:0x80425F64; // type:function size:0x14 +fn_80425F78 = .text:0x80425F78; // type:function size:0x14 +fn_80425F8C = .text:0x80425F8C; // type:function size:0x14 +fn_80425FA0 = .text:0x80425FA0; // type:function size:0x14 +fn_80425FB4 = .text:0x80425FB4; // type:function size:0x14 +fn_80425FC8 = .text:0x80425FC8; // type:function size:0x14 +fn_80425FDC = .text:0x80425FDC; // type:function size:0x14 +fn_80425FF0 = .text:0x80425FF0; // type:function size:0x14 +fn_80426004 = .text:0x80426004; // type:function size:0x14 +fn_80426018 = .text:0x80426018; // type:function size:0x14 +fn_8042602C = .text:0x8042602C; // type:function size:0x14 +fn_80426040 = .text:0x80426040; // type:function size:0x14 +fn_80426054 = .text:0x80426054; // type:function size:0x14 +fn_80426068 = .text:0x80426068; // type:function size:0x14 +fn_8042607C = .text:0x8042607C; // type:function size:0x8 +fn_80426084 = .text:0x80426084; // type:function size:0x8 +fn_8042608C = .text:0x8042608C; // type:function size:0x8 +fn_80426094 = .text:0x80426094; // type:function size:0x8 +fn_8042609C = .text:0x8042609C; // type:function size:0x8 +__ct__14OverdriveMeterFv = .text:0x804260A4; // type:function size:0x1F4 +fn_80426298 = .text:0x80426298; // type:function size:0x108 +fn_804263A0 = .text:0x804263A0; // type:function size:0x138 +fn_804264D8 = .text:0x804264D8; // type:function size:0x4 +fn_804264DC = .text:0x804264DC; // type:function size:0x64 +fn_80426540 = .text:0x80426540; // type:function size:0x4 +fn_80426544 = .text:0x80426544; // type:function size:0x4 +fn_80426548 = .text:0x80426548; // type:function size:0x7C +fn_804265C4 = .text:0x804265C4; // type:function size:0x120 +fn_804266E4 = .text:0x804266E4; // type:function size:0x50 +fn_80426734 = .text:0x80426734; // type:function size:0xA4 +fn_804267D8 = .text:0x804267D8; // type:function size:0x50 +fn_80426828 = .text:0x80426828; // type:function size:0x64 +fn_8042688C = .text:0x8042688C; // type:function size:0x124 +fn_804269B0 = .text:0x804269B0; // type:function size:0x1B4 +fn_80426B64 = .text:0x80426B64; // type:function size:0x110 +fn_80426C74 = .text:0x80426C74; // type:function size:0x134 +fn_80426DA8 = .text:0x80426DA8; // type:function size:0x4 +fn_80426DAC = .text:0x80426DAC; // type:function size:0x8 +fn_80426DB4 = .text:0x80426DB4; // type:function size:0x8 +fn_80426DBC = .text:0x80426DBC; // type:function size:0x8 +fn_80426DC4 = .text:0x80426DC4; // type:function size:0x8 +fn_80426DCC = .text:0x80426DCC; // type:function size:0x8 +fn_80426DD4 = .text:0x80426DD4; // type:function size:0x8 +fn_80426DDC = .text:0x80426DDC; // type:function size:0x8 +fn_80426DE4 = .text:0x80426DE4; // type:function size:0x8 +fn_80426DEC = .text:0x80426DEC; // type:function size:0x8 +fn_80426DF4 = .text:0x80426DF4; // type:function size:0x8 +fn_80426DFC = .text:0x80426DFC; // type:function size:0x8 +fn_80426E04 = .text:0x80426E04; // type:function size:0x8 +fn_80426E0C = .text:0x80426E0C; // type:function size:0x8 +fn_80426E14 = .text:0x80426E14; // type:function size:0x8 +fn_80426E1C = .text:0x80426E1C; // type:function size:0x14 +fn_80426E30 = .text:0x80426E30; // type:function size:0x14 +fn_80426E44 = .text:0x80426E44; // type:function size:0x8 +fn_80426E4C = .text:0x80426E4C; // type:function size:0x8 +fn_80426E54 = .text:0x80426E54; // type:function size:0x8 +fn_80426E5C = .text:0x80426E5C; // type:function size:0x8 +fn_80426E64 = .text:0x80426E64; // type:function size:0x8 +fn_80426E6C = .text:0x80426E6C; // type:function size:0x8 +fn_80426E74 = .text:0x80426E74; // type:function size:0x8 +fn_80426E7C = .text:0x80426E7C; // type:function size:0x8 +fn_80426E84 = .text:0x80426E84; // type:function size:0x8 +fn_80426E8C = .text:0x80426E8C; // type:function size:0x8 +fn_80426E94 = .text:0x80426E94; // type:function size:0x8 +fn_80426E9C = .text:0x80426E9C; // type:function size:0x14 +fn_80426EB0 = .text:0x80426EB0; // type:function size:0x14 +fn_80426EC4 = .text:0x80426EC4; // type:function size:0x14 +fn_80426ED8 = .text:0x80426ED8; // type:function size:0x14 +fn_80426EEC = .text:0x80426EEC; // type:function size:0x14 +fn_80426F00 = .text:0x80426F00; // type:function size:0x14 +fn_80426F14 = .text:0x80426F14; // type:function size:0x14 +fn_80426F28 = .text:0x80426F28; // type:function size:0x14 +fn_80426F3C = .text:0x80426F3C; // type:function size:0x14 +fn_80426F50 = .text:0x80426F50; // type:function size:0x14 +fn_80426F64 = .text:0x80426F64; // type:function size:0x14 +fn_80426F78 = .text:0x80426F78; // type:function size:0x14 +fn_80426F8C = .text:0x80426F8C; // type:function size:0x14 +fn_80426FA0 = .text:0x80426FA0; // type:function size:0x14 +fn_80426FB4 = .text:0x80426FB4; // type:function size:0x8 +fn_80426FBC = .text:0x80426FBC; // type:function size:0x8 +fn_80426FC4 = .text:0x80426FC4; // type:function size:0x8 +fn_80426FCC = .text:0x80426FCC; // type:function size:0x8 +fn_80426FD4 = .text:0x80426FD4; // type:function size:0x8 +fn_80426FDC = .text:0x80426FDC; // type:function size:0x7E8 +fn_804277C4 = .text:0x804277C4; // type:function size:0x58 +fn_8042781C = .text:0x8042781C; // type:function size:0x60 +fn_8042787C = .text:0x8042787C; // type:function size:0x58 +fn_804278D4 = .text:0x804278D4; // type:function size:0x58 +fn_8042792C = .text:0x8042792C; // type:function size:0x50 +fn_8042797C = .text:0x8042797C; // type:function size:0x80 +fn_804279FC = .text:0x804279FC; // type:function size:0x6C +fn_80427A68 = .text:0x80427A68; // type:function size:0x40 +fn_80427AA8 = .text:0x80427AA8; // type:function size:0x44 +fn_80427AEC = .text:0x80427AEC; // type:function size:0x54 +fn_80427B40 = .text:0x80427B40; // type:function size:0x58 +fn_80427B98 = .text:0x80427B98; // type:function size:0x80 +fn_80427C18 = .text:0x80427C18; // type:function size:0x80 +fn_80427C98 = .text:0x80427C98; // type:function size:0x58 +fn_80427CF0 = .text:0x80427CF0; // type:function size:0x54 +fn_80427D44 = .text:0x80427D44; // type:function size:0x5C +fn_80427DA0 = .text:0x80427DA0; // type:function size:0x6C +fn_80427E0C = .text:0x80427E0C; // type:function size:0x28 +fn_80427E34 = .text:0x80427E34; // type:function size:0x8 +fn_80427E3C = .text:0x80427E3C; // type:function size:0x8 +fn_80427E44 = .text:0x80427E44; // type:function size:0x3C +fn_80427E80 = .text:0x80427E80; // type:function size:0x84 +fn_80427F04 = .text:0x80427F04; // type:function size:0x14C +fn_80428050 = .text:0x80428050; // type:function size:0x80 +fn_804280D0 = .text:0x804280D0; // type:function size:0x80 +fn_80428150 = .text:0x80428150; // type:function size:0x80 +fn_804281D0 = .text:0x804281D0; // type:function size:0x68 +fn_80428238 = .text:0x80428238; // type:function size:0x4 +fn_8042823C = .text:0x8042823C; // type:function size:0x88 +fn_804282C4 = .text:0x804282C4; // type:function size:0x2C +fn_804282F0 = .text:0x804282F0; // type:function size:0x10 +fn_80428300 = .text:0x80428300; // type:function size:0x48 +fn_80428348 = .text:0x80428348; // type:function size:0x4 +fn_8042834C = .text:0x8042834C; // type:function size:0x48 +fn_80428394 = .text:0x80428394; // type:function size:0x4 +fn_80428398 = .text:0x80428398; // type:function size:0x88 +fn_80428420 = .text:0x80428420; // type:function size:0x44 +fn_80428464 = .text:0x80428464; // type:function size:0x3C +fn_804284A0 = .text:0x804284A0; // type:function size:0x70 +fn_80428510 = .text:0x80428510; // type:function size:0x68 +fn_80428578 = .text:0x80428578; // type:function size:0x68 +fn_804285E0 = .text:0x804285E0; // type:function size:0x30 +fn_80428610 = .text:0x80428610; // type:function size:0x30 +fn_80428640 = .text:0x80428640; // type:function size:0x40 +fn_80428680 = .text:0x80428680; // type:function size:0x6C +fn_804286EC = .text:0x804286EC; // type:function size:0x360 +fn_80428A4C = .text:0x80428A4C; // type:function size:0x1D4 +fn_80428C20 = .text:0x80428C20; // type:function size:0xB8 +fn_80428CD8 = .text:0x80428CD8; // type:function size:0x4C +fn_80428D24 = .text:0x80428D24; // type:function size:0x78 +fn_80428D9C = .text:0x80428D9C; // type:function size:0x2C +fn_80428DC8 = .text:0x80428DC8; // type:function size:0x78 +fn_80428E40 = .text:0x80428E40; // type:function size:0x30 +fn_80428E70 = .text:0x80428E70; // type:function size:0x30 +fn_80428EA0 = .text:0x80428EA0; // type:function size:0x8 +fn_80428EA8 = .text:0x80428EA8; // type:function size:0x4 +fn_80428EAC = .text:0x80428EAC; // type:function size:0x5C +fn_80428F08 = .text:0x80428F08; // type:function size:0x49C +fn_804293A4 = .text:0x804293A4; // type:function size:0x40 +fn_804293E4 = .text:0x804293E4; // type:function size:0x104 +fn_804294E8 = .text:0x804294E8; // type:function size:0x3C +fn_80429524 = .text:0x80429524; // type:function size:0x11C +fn_80429640 = .text:0x80429640; // type:function size:0x58 +fn_80429698 = .text:0x80429698; // type:function size:0x70 +fn_80429708 = .text:0x80429708; // type:function size:0x9EC +fn_8042A0F4 = .text:0x8042A0F4; // type:function size:0xA0 +fn_8042A194 = .text:0x8042A194; // type:function size:0xA0 +fn_8042A234 = .text:0x8042A234; // type:function size:0x54 +fn_8042A288 = .text:0x8042A288; // type:function size:0x13C +fn_8042A3C4 = .text:0x8042A3C4; // type:function size:0x130 +fn_8042A4F4 = .text:0x8042A4F4; // type:function size:0x8 +fn_8042A4FC = .text:0x8042A4FC; // type:function size:0x8 +fn_8042A504 = .text:0x8042A504; // type:function size:0xC +fn_8042A510 = .text:0x8042A510; // type:function size:0xB0 +fn_8042A5C0 = .text:0x8042A5C0; // type:function size:0x8 +fn_8042A5C8 = .text:0x8042A5C8; // type:function size:0x80 +fn_8042A648 = .text:0x8042A648; // type:function size:0xE0 +fn_8042A728 = .text:0x8042A728; // type:function size:0xD8 +fn_8042A800 = .text:0x8042A800; // type:function size:0xF4 +fn_8042A8F4 = .text:0x8042A8F4; // type:function size:0x6C +fn_8042A960 = .text:0x8042A960; // type:function size:0x1D8 +fn_8042AB38 = .text:0x8042AB38; // type:function size:0x1E8 +fn_8042AD20 = .text:0x8042AD20; // type:function size:0x150 +fn_8042AE70 = .text:0x8042AE70; // type:function size:0x338 +fn_8042B1A8 = .text:0x8042B1A8; // type:function size:0x34 +fn_8042B1DC = .text:0x8042B1DC; // type:function size:0x3C +fn_8042B218 = .text:0x8042B218; // type:function size:0x1BC +fn_8042B3D4 = .text:0x8042B3D4; // type:function size:0xB4 +fn_8042B488 = .text:0x8042B488; // type:function size:0xF4 +fn_8042B57C = .text:0x8042B57C; // type:function size:0x19C +fn_8042B718 = .text:0x8042B718; // type:function size:0x8 +fn_8042B720 = .text:0x8042B720; // type:function size:0x54 +fn_8042B774 = .text:0x8042B774; // type:function size:0x128 +fn_8042B89C = .text:0x8042B89C; // type:function size:0x164 +fn_8042BA00 = .text:0x8042BA00; // type:function size:0xE4 +fn_8042BAE4 = .text:0x8042BAE4; // type:function size:0x16C +fn_8042BC50 = .text:0x8042BC50; // type:function size:0xC4 +fn_8042BD14 = .text:0x8042BD14; // type:function size:0x160 +fn_8042BE74 = .text:0x8042BE74; // type:function size:0xC4 +fn_8042BF38 = .text:0x8042BF38; // type:function size:0x110 +fn_8042C048 = .text:0x8042C048; // type:function size:0xA8 +fn_8042C0F0 = .text:0x8042C0F0; // type:function size:0x110 +fn_8042C200 = .text:0x8042C200; // type:function size:0x24 +fn_8042C224 = .text:0x8042C224; // type:function size:0x84 +fn_8042C2A8 = .text:0x8042C2A8; // type:function size:0x54 +fn_8042C2FC = .text:0x8042C2FC; // type:function size:0x48 +fn_8042C344 = .text:0x8042C344; // type:function size:0x50 +fn_8042C394 = .text:0x8042C394; // type:function size:0x110 +fn_8042C4A4 = .text:0x8042C4A4; // type:function size:0xA4 +fn_8042C548 = .text:0x8042C548; // type:function size:0x6C +fn_8042C5B4 = .text:0x8042C5B4; // type:function size:0x10C +fn_8042C6C0 = .text:0x8042C6C0; // type:function size:0xBC +fn_8042C77C = .text:0x8042C77C; // type:function size:0x98 +fn_8042C814 = .text:0x8042C814; // type:function size:0x30 +fn_8042C844 = .text:0x8042C844; // type:function size:0xA0 +fn_8042C8E4 = .text:0x8042C8E4; // type:function size:0x44 +fn_8042C928 = .text:0x8042C928; // type:function size:0xD0 +fn_8042C9F8 = .text:0x8042C9F8; // type:function size:0xD4 +fn_8042CACC = .text:0x8042CACC; // type:function size:0x8C +fn_8042CB58 = .text:0x8042CB58; // type:function size:0x90 +fn_8042CBE8 = .text:0x8042CBE8; // type:function size:0x48 +fn_8042CC30 = .text:0x8042CC30; // type:function size:0x2A8 +fn_8042CED8 = .text:0x8042CED8; // type:function size:0x70 +fn_8042CF48 = .text:0x8042CF48; // type:function size:0x8 +fn_8042CF50 = .text:0x8042CF50; // type:function size:0x8 +fn_8042CF58 = .text:0x8042CF58; // type:function size:0x1C +fn_8042CF74 = .text:0x8042CF74; // type:function size:0x14 +fn_8042CF88 = .text:0x8042CF88; // type:function size:0x50 +fn_8042CFD8 = .text:0x8042CFD8; // type:function size:0x50 +fn_8042D028 = .text:0x8042D028; // type:function size:0x1D4 +fn_8042D1FC = .text:0x8042D1FC; // type:function size:0x104 +fn_8042D300 = .text:0x8042D300; // type:function size:0x58 +fn_8042D358 = .text:0x8042D358; // type:function size:0x40 +fn_8042D398 = .text:0x8042D398; // type:function size:0x4 +fn_8042D39C = .text:0x8042D39C; // type:function size:0x40 +fn_8042D3DC = .text:0x8042D3DC; // type:function size:0x80 +fn_8042D45C = .text:0x8042D45C; // type:function size:0x4 +fn_8042D460 = .text:0x8042D460; // type:function size:0x4 +fn_8042D464 = .text:0x8042D464; // type:function size:0x4 +fn_8042D468 = .text:0x8042D468; // type:function size:0x40 +fn_8042D4A8 = .text:0x8042D4A8; // type:function size:0xAC +fn_8042D554 = .text:0x8042D554; // type:function size:0x8C +fn_8042D5E0 = .text:0x8042D5E0; // type:function size:0x80 +fn_8042D660 = .text:0x8042D660; // type:function size:0x4 +fn_8042D664 = .text:0x8042D664; // type:function size:0x8 +fn_8042D66C = .text:0x8042D66C; // type:function size:0x80 +fn_8042D6EC = .text:0x8042D6EC; // type:function size:0x1B4 +fn_8042D8A0 = .text:0x8042D8A0; // type:function size:0x3C +fn_8042D8DC = .text:0x8042D8DC; // type:function size:0x6C +fn_8042D948 = .text:0x8042D948; // type:function size:0x2C +fn_8042D974 = .text:0x8042D974; // type:function size:0x34 +fn_8042D9A8 = .text:0x8042D9A8; // type:function size:0x88 +fn_8042DA30 = .text:0x8042DA30; // type:function size:0x98 +fn_8042DAC8 = .text:0x8042DAC8; // type:function size:0x4 +fn_8042DACC = .text:0x8042DACC; // type:function size:0x3C +fn_8042DB08 = .text:0x8042DB08; // type:function size:0x54 +fn_8042DB5C = .text:0x8042DB5C; // type:function size:0x18C +fn_8042DCE8 = .text:0x8042DCE8; // type:function size:0x70 +fn_8042DD58 = .text:0x8042DD58; // type:function size:0x1E8 +fn_8042DF40 = .text:0x8042DF40; // type:function size:0x34 +fn_8042DF74 = .text:0x8042DF74; // type:function size:0x34 +fn_8042DFA8 = .text:0x8042DFA8; // type:function size:0x3C +fn_8042DFE4 = .text:0x8042DFE4; // type:function size:0x660 +fn_8042E644 = .text:0x8042E644; // type:function size:0xCB8 +fn_8042F2FC = .text:0x8042F2FC; // type:function size:0xD0 +fn_8042F3CC = .text:0x8042F3CC; // type:function size:0xCC +fn_8042F498 = .text:0x8042F498; // type:function size:0xCC +fn_8042F564 = .text:0x8042F564; // type:function size:0x1E8 +fn_8042F74C = .text:0x8042F74C; // type:function size:0xC0 +fn_8042F80C = .text:0x8042F80C; // type:function size:0x44 +fn_8042F850 = .text:0x8042F850; // type:function size:0x110 +fn_8042F960 = .text:0x8042F960; // type:function size:0x60 +fn_8042F9C0 = .text:0x8042F9C0; // type:function size:0x70 +fn_8042FA30 = .text:0x8042FA30; // type:function size:0x160 +fn_8042FB90 = .text:0x8042FB90; // type:function size:0x28 +fn_8042FBB8 = .text:0x8042FBB8; // type:function size:0x5C +fn_8042FC14 = .text:0x8042FC14; // type:function size:0x60 +fn_8042FC74 = .text:0x8042FC74; // type:function size:0x114 +fn_8042FD88 = .text:0x8042FD88; // type:function size:0x5C +fn_8042FDE4 = .text:0x8042FDE4; // type:function size:0x5C +fn_8042FE40 = .text:0x8042FE40; // type:function size:0x54 +fn_8042FE94 = .text:0x8042FE94; // type:function size:0x5C +fn_8042FEF0 = .text:0x8042FEF0; // type:function size:0x5C +fn_8042FF4C = .text:0x8042FF4C; // type:function size:0x160 +fn_804300AC = .text:0x804300AC; // type:function size:0x28 +fn_804300D4 = .text:0x804300D4; // type:function size:0x5C +fn_80430130 = .text:0x80430130; // type:function size:0x60 +fn_80430190 = .text:0x80430190; // type:function size:0x3B8 +fn_80430548 = .text:0x80430548; // type:function size:0x6C +fn_804305B4 = .text:0x804305B4; // type:function size:0x6C +fn_80430620 = .text:0x80430620; // type:function size:0x6C +fn_8043068C = .text:0x8043068C; // type:function size:0x60 +fn_804306EC = .text:0x804306EC; // type:function size:0x8 +fn_804306F4 = .text:0x804306F4; // type:function size:0x8 +fn_804306FC = .text:0x804306FC; // type:function size:0x8 +fn_80430704 = .text:0x80430704; // type:function size:0x8 +fn_8043070C = .text:0x8043070C; // type:function size:0x10 +fn_8043071C = .text:0x8043071C; // type:function size:0x134 +fn_80430850 = .text:0x80430850; // type:function size:0x4 +fn_80430854 = .text:0x80430854; // type:function size:0x15C +fn_804309B0 = .text:0x804309B0; // type:function size:0x44 +fn_804309F4 = .text:0x804309F4; // type:function size:0x108 +fn_80430AFC = .text:0x80430AFC; // type:function size:0x5C +fn_80430B58 = .text:0x80430B58; // type:function size:0x10 +fn_80430B68 = .text:0x80430B68; // type:function size:0x40 +fn_80430BA8 = .text:0x80430BA8; // type:function size:0x8 +fn_80430BB0 = .text:0x80430BB0; // type:function size:0x8 +fn_80430BB8 = .text:0x80430BB8; // type:function size:0x8 +fn_80430BC0 = .text:0x80430BC0; // type:function size:0x8 +fn_80430BC8 = .text:0x80430BC8; // type:function size:0x8 +fn_80430BD0 = .text:0x80430BD0; // type:function size:0x8 +fn_80430BD8 = .text:0x80430BD8; // type:function size:0x8 +fn_80430BE0 = .text:0x80430BE0; // type:function size:0x8 +fn_80430BE8 = .text:0x80430BE8; // type:function size:0x8 +fn_80430BF0 = .text:0x80430BF0; // type:function size:0x8 +fn_80430BF8 = .text:0x80430BF8; // type:function size:0x8 +fn_80430C00 = .text:0x80430C00; // type:function size:0x8 +fn_80430C08 = .text:0x80430C08; // type:function size:0x8 +fn_80430C10 = .text:0x80430C10; // type:function size:0x8 +fn_80430C18 = .text:0x80430C18; // type:function size:0x8 +fn_80430C20 = .text:0x80430C20; // type:function size:0x8 +fn_80430C28 = .text:0x80430C28; // type:function size:0x8 +fn_80430C30 = .text:0x80430C30; // type:function size:0x8 +fn_80430C38 = .text:0x80430C38; // type:function size:0x14 +fn_80430C4C = .text:0x80430C4C; // type:function size:0x14 +fn_80430C60 = .text:0x80430C60; // type:function size:0x8 +fn_80430C68 = .text:0x80430C68; // type:function size:0x8 +fn_80430C70 = .text:0x80430C70; // type:function size:0x8 +fn_80430C78 = .text:0x80430C78; // type:function size:0x8 +fn_80430C80 = .text:0x80430C80; // type:function size:0x8 +fn_80430C88 = .text:0x80430C88; // type:function size:0x8 +fn_80430C90 = .text:0x80430C90; // type:function size:0x8 +fn_80430C98 = .text:0x80430C98; // type:function size:0x8 +fn_80430CA0 = .text:0x80430CA0; // type:function size:0x8 +fn_80430CA8 = .text:0x80430CA8; // type:function size:0x8 +fn_80430CB0 = .text:0x80430CB0; // type:function size:0x8 +fn_80430CB8 = .text:0x80430CB8; // type:function size:0x8 +fn_80430CC0 = .text:0x80430CC0; // type:function size:0x8 +fn_80430CC8 = .text:0x80430CC8; // type:function size:0x8 +fn_80430CD0 = .text:0x80430CD0; // type:function size:0x8 +fn_80430CD8 = .text:0x80430CD8; // type:function size:0x8 +fn_80430CE0 = .text:0x80430CE0; // type:function size:0x8 +fn_80430CE8 = .text:0x80430CE8; // type:function size:0x8 +fn_80430CF0 = .text:0x80430CF0; // type:function size:0x8 +fn_80430CF8 = .text:0x80430CF8; // type:function size:0x8 +fn_80430D00 = .text:0x80430D00; // type:function size:0x14 +fn_80430D14 = .text:0x80430D14; // type:function size:0x14 +fn_80430D28 = .text:0x80430D28; // type:function size:0x14 +fn_80430D3C = .text:0x80430D3C; // type:function size:0x14 +fn_80430D50 = .text:0x80430D50; // type:function size:0x14 +fn_80430D64 = .text:0x80430D64; // type:function size:0x14 +fn_80430D78 = .text:0x80430D78; // type:function size:0x14 +fn_80430D8C = .text:0x80430D8C; // type:function size:0x14 +fn_80430DA0 = .text:0x80430DA0; // type:function size:0x14 +fn_80430DB4 = .text:0x80430DB4; // type:function size:0x14 +fn_80430DC8 = .text:0x80430DC8; // type:function size:0x14 +fn_80430DDC = .text:0x80430DDC; // type:function size:0x14 +fn_80430DF0 = .text:0x80430DF0; // type:function size:0x14 +fn_80430E04 = .text:0x80430E04; // type:function size:0x14 +fn_80430E18 = .text:0x80430E18; // type:function size:0x14 +fn_80430E2C = .text:0x80430E2C; // type:function size:0x8 +fn_80430E34 = .text:0x80430E34; // type:function size:0x8 +fn_80430E3C = .text:0x80430E3C; // type:function size:0x8 +fn_80430E44 = .text:0x80430E44; // type:function size:0x8 +fn_80430E4C = .text:0x80430E4C; // type:function size:0x8 +fn_80430E54 = .text:0x80430E54; // type:function size:0x8 +fn_80430E5C = .text:0x80430E5C; // type:function size:0x8 +fn_80430E64 = .text:0x80430E64; // type:function size:0x8 +fn_80430E6C = .text:0x80430E6C; // type:function size:0x8 +fn_80430E74 = .text:0x80430E74; // type:function size:0x8 +fn_80430E7C = .text:0x80430E7C; // type:function size:0x8 +fn_80430E84 = .text:0x80430E84; // type:function size:0x8 +fn_80430E8C = .text:0x80430E8C; // type:function size:0x8 +fn_80430E94 = .text:0x80430E94; // type:function size:0x8 +fn_80430E9C = .text:0x80430E9C; // type:function size:0x8 +fn_80430EA4 = .text:0x80430EA4; // type:function size:0x8 +fn_80430EAC = .text:0x80430EAC; // type:function size:0x8 +fn_80430EB4 = .text:0x80430EB4; // type:function size:0x8 +fn_80430EBC = .text:0x80430EBC; // type:function size:0x8 +fn_80430EC4 = .text:0x80430EC4; // type:function size:0x8 +fn_80430ECC = .text:0x80430ECC; // type:function size:0x8 +fn_80430ED4 = .text:0x80430ED4; // type:function size:0x8 +fn_80430EDC = .text:0x80430EDC; // type:function size:0x8 +fn_80430EE4 = .text:0x80430EE4; // type:function size:0x8 +fn_80430EEC = .text:0x80430EEC; // type:function size:0x8 +fn_80430EF4 = .text:0x80430EF4; // type:function size:0x8 +fn_80430EFC = .text:0x80430EFC; // type:function size:0x8 +fn_80430F04 = .text:0x80430F04; // type:function size:0x8 +fn_80430F0C = .text:0x80430F0C; // type:function size:0x8 +fn_80430F14 = .text:0x80430F14; // type:function size:0x8 +fn_80430F1C = .text:0x80430F1C; // type:function size:0x8 +fn_80430F24 = .text:0x80430F24; // type:function size:0x8 +fn_80430F2C = .text:0x80430F2C; // type:function size:0x78 +fn_80430FA4 = .text:0x80430FA4; // type:function size:0x58 +fn_80430FFC = .text:0x80430FFC; // type:function size:0x80 +fn_8043107C = .text:0x8043107C; // type:function size:0x80 +fn_804310FC = .text:0x804310FC; // type:function size:0x58 +fn_80431154 = .text:0x80431154; // type:function size:0x54 +fn_804311A8 = .text:0x804311A8; // type:function size:0x5C +fn_80431204 = .text:0x80431204; // type:function size:0x6C +fn_80431270 = .text:0x80431270; // type:function size:0x28 +fn_80431298 = .text:0x80431298; // type:function size:0x8 +fn_804312A0 = .text:0x804312A0; // type:function size:0x58 +fn_804312F8 = .text:0x804312F8; // type:function size:0x8 +fn_80431300 = .text:0x80431300; // type:function size:0x3C +fn_8043133C = .text:0x8043133C; // type:function size:0x30 +fn_8043136C = .text:0x8043136C; // type:function size:0x30 +fn_8043139C = .text:0x8043139C; // type:function size:0x40 +fn_804313DC = .text:0x804313DC; // type:function size:0x74 +fn_80431450 = .text:0x80431450; // type:function size:0x284 +fn_804316D4 = .text:0x804316D4; // type:function size:0x4 +fn_804316D8 = .text:0x804316D8; // type:function size:0x88 +fn_80431760 = .text:0x80431760; // type:function size:0x2C +fn_8043178C = .text:0x8043178C; // type:function size:0x10 +fn_8043179C = .text:0x8043179C; // type:function size:0x4C +fn_804317E8 = .text:0x804317E8; // type:function size:0x4 +fn_804317EC = .text:0x804317EC; // type:function size:0x44 +fn_80431830 = .text:0x80431830; // type:function size:0x98 +fn_804318C8 = .text:0x804318C8; // type:function size:0x84 +fn_8043194C = .text:0x8043194C; // type:function size:0xCC +fn_80431A18 = .text:0x80431A18; // type:function size:0x5C +fn_80431A74 = .text:0x80431A74; // type:function size:0x5C +fn_80431AD0 = .text:0x80431AD0; // type:function size:0x60 +fn_80431B30 = .text:0x80431B30; // type:function size:0x5C +fn_80431B8C = .text:0x80431B8C; // type:function size:0xC +fn_80431B98 = .text:0x80431B98; // type:function size:0x114 +fn_80431CAC = .text:0x80431CAC; // type:function size:0x5C +fn_80431D08 = .text:0x80431D08; // type:function size:0x54 +fn_80431D5C = .text:0x80431D5C; // type:function size:0x5C +fn_80431DB8 = .text:0x80431DB8; // type:function size:0x10 +__ct__13VocalTrackDirFv = .text:0x80431DC8; // type:function size:0xA88 +fn_80432850 = .text:0x80432850; // type:function size:0x80 +fn_804328D0 = .text:0x804328D0; // type:function size:0x6C +fn_8043293C = .text:0x8043293C; // type:function size:0x40 +fn_8043297C = .text:0x8043297C; // type:function size:0x44 +fn_804329C0 = .text:0x804329C0; // type:function size:0x54 +fn_80432A14 = .text:0x80432A14; // type:function size:0x58 +fn_80432A6C = .text:0x80432A6C; // type:function size:0x60 +fn_80432ACC = .text:0x80432ACC; // type:function size:0x58 +fn_80432B24 = .text:0x80432B24; // type:function size:0x58 +fn_80432B7C = .text:0x80432B7C; // type:function size:0x50 +fn_80432BCC = .text:0x80432BCC; // type:function size:0x68 +fn_80432C34 = .text:0x80432C34; // type:function size:0x68 +fn_80432C9C = .text:0x80432C9C; // type:function size:0x44 +fn_80432CE0 = .text:0x80432CE0; // type:function size:0x3C +fn_80432D1C = .text:0x80432D1C; // type:function size:0x70 +fn_80432D8C = .text:0x80432D8C; // type:function size:0x3E0 +fn_8043316C = .text:0x8043316C; // type:function size:0x8 +fn_80433174 = .text:0x80433174; // type:function size:0x30 +fn_804331A4 = .text:0x804331A4; // type:function size:0x30 +fn_804331D4 = .text:0x804331D4; // type:function size:0xB8 +fn_8043328C = .text:0x8043328C; // type:function size:0x4C +fn_804332D8 = .text:0x804332D8; // type:function size:0x78 +fn_80433350 = .text:0x80433350; // type:function size:0x2C +fn_8043337C = .text:0x8043337C; // type:function size:0x4 +fn_80433380 = .text:0x80433380; // type:function size:0x5C +fn_804333DC = .text:0x804333DC; // type:function size:0x88 +fn_80433464 = .text:0x80433464; // type:function size:0xBC +DataToString__FRC8DataNode = .text:0x80433520; // type:function size:0x1B0 +fn_804336D0 = .text:0x804336D0; // type:function size:0xA30 +fn_80434100 = .text:0x80434100; // type:function size:0x3C +fn_8043413C = .text:0x8043413C; // type:function size:0x11C +fn_80434258 = .text:0x80434258; // type:function size:0x80 +fn_804342D8 = .text:0x804342D8; // type:function size:0x80 +fn_80434358 = .text:0x80434358; // type:function size:0x40 +fn_80434398 = .text:0x80434398; // type:function size:0x104 +fn_8043449C = .text:0x8043449C; // type:function size:0x68 +fn_80434504 = .text:0x80434504; // type:function size:0x104 +fn_80434608 = .text:0x80434608; // type:function size:0x58 +fn_80434660 = .text:0x80434660; // type:function size:0x40 +fn_804346A0 = .text:0x804346A0; // type:function size:0x8 +fn_804346A8 = .text:0x804346A8; // type:function size:0x4 +fn_804346AC = .text:0x804346AC; // type:function size:0x40 +fn_804346EC = .text:0x804346EC; // type:function size:0x80 +fn_8043476C = .text:0x8043476C; // type:function size:0x16C +fn_804348D8 = .text:0x804348D8; // type:function size:0x150 +fn_80434A28 = .text:0x80434A28; // type:function size:0x1BC +fn_80434BE4 = .text:0x80434BE4; // type:function size:0xA4 +fn_80434C88 = .text:0x80434C88; // type:function size:0xD8 +fn_80434D60 = .text:0x80434D60; // type:function size:0x54 +fn_80434DB4 = .text:0x80434DB4; // type:function size:0xD4 +fn_80434E88 = .text:0x80434E88; // type:function size:0x94 +fn_80434F1C = .text:0x80434F1C; // type:function size:0x84 +fn_80434FA0 = .text:0x80434FA0; // type:function size:0x184 +fn_80435124 = .text:0x80435124; // type:function size:0xA0 +fn_804351C4 = .text:0x804351C4; // type:function size:0xC4 +fn_80435288 = .text:0x80435288; // type:function size:0x54 +fn_804352DC = .text:0x804352DC; // type:function size:0x154 +fn_80435430 = .text:0x80435430; // type:function size:0xA4 +fn_804354D4 = .text:0x804354D4; // type:function size:0x3C +fn_80435510 = .text:0x80435510; // type:function size:0x54 +fn_80435564 = .text:0x80435564; // type:function size:0x98 +fn_804355FC = .text:0x804355FC; // type:function size:0x6C +fn_80435668 = .text:0x80435668; // type:function size:0x74 +fn_804356DC = .text:0x804356DC; // type:function size:0x110 +fn_804357EC = .text:0x804357EC; // type:function size:0xBC +fn_804358A8 = .text:0x804358A8; // type:function size:0x128 +fn_804359D0 = .text:0x804359D0; // type:function size:0x3C +fn_80435A0C = .text:0x80435A0C; // type:function size:0x168 +fn_80435B74 = .text:0x80435B74; // type:function size:0x68 +fn_80435BDC = .text:0x80435BDC; // type:function size:0x85C +fn_80436438 = .text:0x80436438; // type:function size:0xA0 +fn_804364D8 = .text:0x804364D8; // type:function size:0x2D8 +fn_804367B0 = .text:0x804367B0; // type:function size:0x28C +fn_80436A3C = .text:0x80436A3C; // type:function size:0x42C +fn_80436E68 = .text:0x80436E68; // type:function size:0x3C +fn_80436EA4 = .text:0x80436EA4; // type:function size:0x34 +fn_80436ED8 = .text:0x80436ED8; // type:function size:0x98 +fn_80436F70 = .text:0x80436F70; // type:function size:0x304 +fn_80437274 = .text:0x80437274; // type:function size:0x74 +fn_804372E8 = .text:0x804372E8; // type:function size:0x30 +fn_80437318 = .text:0x80437318; // type:function size:0xAC +fn_804373C4 = .text:0x804373C4; // type:function size:0x5C +fn_80437420 = .text:0x80437420; // type:function size:0x30 +fn_80437450 = .text:0x80437450; // type:function size:0xAC +fn_804374FC = .text:0x804374FC; // type:function size:0xA8 +fn_804375A4 = .text:0x804375A4; // type:function size:0x790 +fn_80437D34 = .text:0x80437D34; // type:function size:0x3C +fn_80437D70 = .text:0x80437D70; // type:function size:0x194 +fn_80437F04 = .text:0x80437F04; // type:function size:0xBC +fn_80437FC0 = .text:0x80437FC0; // type:function size:0x100 +fn_804380C0 = .text:0x804380C0; // type:function size:0x1C +fn_804380DC = .text:0x804380DC; // type:function size:0xA0 +fn_8043817C = .text:0x8043817C; // type:function size:0x80 +fn_804381FC = .text:0x804381FC; // type:function size:0x12B0 +fn_804394AC = .text:0x804394AC; // type:function size:0x1E8 +fn_80439694 = .text:0x80439694; // type:function size:0xC0 +fn_80439754 = .text:0x80439754; // type:function size:0x44 +fn_80439798 = .text:0x80439798; // type:function size:0x30 +fn_804397C8 = .text:0x804397C8; // type:function size:0xCC +fn_80439894 = .text:0x80439894; // type:function size:0x758 +fn_80439FEC = .text:0x80439FEC; // type:function size:0x138 +fn_8043A124 = .text:0x8043A124; // type:function size:0x84 +fn_8043A1A8 = .text:0x8043A1A8; // type:function size:0x1C +fn_8043A1C4 = .text:0x8043A1C4; // type:function size:0x84 +fn_8043A248 = .text:0x8043A248; // type:function size:0x58 +fn_8043A2A0 = .text:0x8043A2A0; // type:function size:0x10C +fn_8043A3AC = .text:0x8043A3AC; // type:function size:0xA0 +fn_8043A44C = .text:0x8043A44C; // type:function size:0xA0 +fn_8043A4EC = .text:0x8043A4EC; // type:function size:0x110 +fn_8043A5FC = .text:0x8043A5FC; // type:function size:0x6C +fn_8043A668 = .text:0x8043A668; // type:function size:0x3B8 +fn_8043AA20 = .text:0x8043AA20; // type:function size:0xB0 +fn_8043AAD0 = .text:0x8043AAD0; // type:function size:0x6C +fn_8043AB3C = .text:0x8043AB3C; // type:function size:0x2C +fn_8043AB68 = .text:0x8043AB68; // type:function size:0xB0 +fn_8043AC18 = .text:0x8043AC18; // type:function size:0x408 +fn_8043B020 = .text:0x8043B020; // type:function size:0x10 +fn_8043B030 = .text:0x8043B030; // type:function size:0x134 +fn_8043B164 = .text:0x8043B164; // type:function size:0x4 +fn_8043B168 = .text:0x8043B168; // type:function size:0x15C +fn_8043B2C4 = .text:0x8043B2C4; // type:function size:0x44 +fn_8043B308 = .text:0x8043B308; // type:function size:0x8 +fn_8043B310 = .text:0x8043B310; // type:function size:0xB4 +fn_8043B3C4 = .text:0x8043B3C4; // type:function size:0x38 +fn_8043B3FC = .text:0x8043B3FC; // type:function size:0x5C +fn_8043B458 = .text:0x8043B458; // type:function size:0x10 +fn_8043B468 = .text:0x8043B468; // type:function size:0x40 +fn_8043B4A8 = .text:0x8043B4A8; // type:function size:0x108 +fn_8043B5B0 = .text:0x8043B5B0; // type:function size:0xB4 +fn_8043B664 = .text:0x8043B664; // type:function size:0x38 +fn_8043B69C = .text:0x8043B69C; // type:function size:0x8 +fn_8043B6A4 = .text:0x8043B6A4; // type:function size:0x8 +fn_8043B6AC = .text:0x8043B6AC; // type:function size:0x8 +fn_8043B6B4 = .text:0x8043B6B4; // type:function size:0x8 +fn_8043B6BC = .text:0x8043B6BC; // type:function size:0x8 +fn_8043B6C4 = .text:0x8043B6C4; // type:function size:0x8 +fn_8043B6CC = .text:0x8043B6CC; // type:function size:0x8 +fn_8043B6D4 = .text:0x8043B6D4; // type:function size:0x8 +fn_8043B6DC = .text:0x8043B6DC; // type:function size:0x8 +fn_8043B6E4 = .text:0x8043B6E4; // type:function size:0x8 +fn_8043B6EC = .text:0x8043B6EC; // type:function size:0x8 +fn_8043B6F4 = .text:0x8043B6F4; // type:function size:0x8 +fn_8043B6FC = .text:0x8043B6FC; // type:function size:0x8 +fn_8043B704 = .text:0x8043B704; // type:function size:0x8 +fn_8043B70C = .text:0x8043B70C; // type:function size:0x8 +fn_8043B714 = .text:0x8043B714; // type:function size:0x8 +fn_8043B71C = .text:0x8043B71C; // type:function size:0x14 +fn_8043B730 = .text:0x8043B730; // type:function size:0x14 +fn_8043B744 = .text:0x8043B744; // type:function size:0x8 +fn_8043B74C = .text:0x8043B74C; // type:function size:0x8 +fn_8043B754 = .text:0x8043B754; // type:function size:0x8 +fn_8043B75C = .text:0x8043B75C; // type:function size:0x8 +fn_8043B764 = .text:0x8043B764; // type:function size:0x8 +fn_8043B76C = .text:0x8043B76C; // type:function size:0x8 +fn_8043B774 = .text:0x8043B774; // type:function size:0x8 +fn_8043B77C = .text:0x8043B77C; // type:function size:0x8 +fn_8043B784 = .text:0x8043B784; // type:function size:0x8 +fn_8043B78C = .text:0x8043B78C; // type:function size:0x8 +fn_8043B794 = .text:0x8043B794; // type:function size:0x8 +fn_8043B79C = .text:0x8043B79C; // type:function size:0x8 +fn_8043B7A4 = .text:0x8043B7A4; // type:function size:0x8 +fn_8043B7AC = .text:0x8043B7AC; // type:function size:0x8 +fn_8043B7B4 = .text:0x8043B7B4; // type:function size:0x8 +fn_8043B7BC = .text:0x8043B7BC; // type:function size:0x8 +fn_8043B7C4 = .text:0x8043B7C4; // type:function size:0x8 +fn_8043B7CC = .text:0x8043B7CC; // type:function size:0x14 +fn_8043B7E0 = .text:0x8043B7E0; // type:function size:0x14 +fn_8043B7F4 = .text:0x8043B7F4; // type:function size:0x14 +fn_8043B808 = .text:0x8043B808; // type:function size:0x14 +fn_8043B81C = .text:0x8043B81C; // type:function size:0x14 +fn_8043B830 = .text:0x8043B830; // type:function size:0x14 +fn_8043B844 = .text:0x8043B844; // type:function size:0x14 +fn_8043B858 = .text:0x8043B858; // type:function size:0x14 +fn_8043B86C = .text:0x8043B86C; // type:function size:0x14 +fn_8043B880 = .text:0x8043B880; // type:function size:0x14 +fn_8043B894 = .text:0x8043B894; // type:function size:0x14 +fn_8043B8A8 = .text:0x8043B8A8; // type:function size:0x14 +fn_8043B8BC = .text:0x8043B8BC; // type:function size:0x14 +fn_8043B8D0 = .text:0x8043B8D0; // type:function size:0x14 +fn_8043B8E4 = .text:0x8043B8E4; // type:function size:0x14 +fn_8043B8F8 = .text:0x8043B8F8; // type:function size:0x8 +fn_8043B900 = .text:0x8043B900; // type:function size:0x8 +fn_8043B908 = .text:0x8043B908; // type:function size:0x8 +fn_8043B910 = .text:0x8043B910; // type:function size:0x8 +fn_8043B918 = .text:0x8043B918; // type:function size:0x8 +fn_8043B920 = .text:0x8043B920; // type:function size:0x8 +fn_8043B928 = .text:0x8043B928; // type:function size:0x8 +fn_8043B930 = .text:0x8043B930; // type:function size:0x8 +fn_8043B938 = .text:0x8043B938; // type:function size:0x8 +fn_8043B940 = .text:0x8043B940; // type:function size:0x8 +fn_8043B948 = .text:0x8043B948; // type:function size:0x8 +fn_8043B950 = .text:0x8043B950; // type:function size:0x8 +fn_8043B958 = .text:0x8043B958; // type:function size:0x8 +fn_8043B960 = .text:0x8043B960; // type:function size:0x8 +fn_8043B968 = .text:0x8043B968; // type:function size:0x8 +fn_8043B970 = .text:0x8043B970; // type:function size:0x8 +fn_8043B978 = .text:0x8043B978; // type:function size:0x8 +fn_8043B980 = .text:0x8043B980; // type:function size:0x8 +fn_8043B988 = .text:0x8043B988; // type:function size:0x8 +fn_8043B990 = .text:0x8043B990; // type:function size:0x8 +fn_8043B998 = .text:0x8043B998; // type:function size:0x8 +fn_8043B9A0 = .text:0x8043B9A0; // type:function size:0x8 +fn_8043B9A8 = .text:0x8043B9A8; // type:function size:0x8 +fn_8043B9B0 = .text:0x8043B9B0; // type:function size:0x8 +fn_8043B9B8 = .text:0x8043B9B8; // type:function size:0x8 +fn_8043B9C0 = .text:0x8043B9C0; // type:function size:0x21C +fn_8043BBDC = .text:0x8043BBDC; // type:function size:0x68 +fn_8043BC44 = .text:0x8043BC44; // type:function size:0x68 +fn_8043BCAC = .text:0x8043BCAC; // type:function size:0x4 +fn_8043BCB0 = .text:0x8043BCB0; // type:function size:0x4 +fn_8043BCB4 = .text:0x8043BCB4; // type:function size:0x4 +fn_8043BCB8 = .text:0x8043BCB8; // type:function size:0x1BC +fn_8043BE74 = .text:0x8043BE74; // type:function size:0x40 +fn_8043BEB4 = .text:0x8043BEB4; // type:function size:0x104 +fn_8043BFB8 = .text:0x8043BFB8; // type:function size:0xE0 +fn_8043C098 = .text:0x8043C098; // type:function size:0x8 +fn_8043C0A0 = .text:0x8043C0A0; // type:function size:0x8 +fn_8043C0A8 = .text:0x8043C0A8; // type:function size:0x70 +fn_8043C118 = .text:0x8043C118; // type:function size:0xAC +fn_8043C1C4 = .text:0x8043C1C4; // type:function size:0x3F4 +fn_8043C5B8 = .text:0x8043C5B8; // type:function size:0x50 +fn_8043C608 = .text:0x8043C608; // type:function size:0x40 +fn_8043C648 = .text:0x8043C648; // type:function size:0x58 +fn_8043C6A0 = .text:0x8043C6A0; // type:function size:0x8 +fn_8043C6A8 = .text:0x8043C6A8; // type:function size:0x1AC +fn_8043C854 = .text:0x8043C854; // type:function size:0x170 +fn_8043C9C4 = .text:0x8043C9C4; // type:function size:0x8 +fn_8043C9CC = .text:0x8043C9CC; // type:function size:0x14C +fn_8043CB18 = .text:0x8043CB18; // type:function size:0x130 +fn_8043CC48 = .text:0x8043CC48; // type:function size:0x190 +fn_8043CDD8 = .text:0x8043CDD8; // type:function size:0x8C +fn_8043CE64 = .text:0x8043CE64; // type:function size:0xFC +fn_8043CF60 = .text:0x8043CF60; // type:function size:0xC8 +fn_8043D028 = .text:0x8043D028; // type:function size:0xA4 +fn_8043D0CC = .text:0x8043D0CC; // type:function size:0x58 +fn_8043D124 = .text:0x8043D124; // type:function size:0x118 +fn_8043D23C = .text:0x8043D23C; // type:function size:0x44 +fn_8043D280 = .text:0x8043D280; // type:function size:0x1D0 +fn_8043D450 = .text:0x8043D450; // type:function size:0x78 +fn_8043D4C8 = .text:0x8043D4C8; // type:function size:0x74 +fn_8043D53C = .text:0x8043D53C; // type:function size:0x70 +fn_8043D5AC = .text:0x8043D5AC; // type:function size:0x9C +fn_8043D648 = .text:0x8043D648; // type:function size:0x8 +fn_8043D650 = .text:0x8043D650; // type:function size:0xE0 +fn_8043D730 = .text:0x8043D730; // type:function size:0x434 +fn_8043DB64 = .text:0x8043DB64; // type:function size:0x204 +fn_8043DD68 = .text:0x8043DD68; // type:function size:0x1C8 +fn_8043DF30 = .text:0x8043DF30; // type:function size:0x13C +fn_8043E06C = .text:0x8043E06C; // type:function size:0x64 +fn_8043E0D0 = .text:0x8043E0D0; // type:function size:0xA8 +fn_8043E178 = .text:0x8043E178; // type:function size:0x2CC +fn_8043E444 = .text:0x8043E444; // type:function size:0xF4 +fn_8043E538 = .text:0x8043E538; // type:function size:0x54 +fn_8043E58C = .text:0x8043E58C; // type:function size:0x54 +fn_8043E5E0 = .text:0x8043E5E0; // type:function size:0x68 +fn_8043E648 = .text:0x8043E648; // type:function size:0x68 +fn_8043E6B0 = .text:0x8043E6B0; // type:function size:0x64 +fn_8043E714 = .text:0x8043E714; // type:function size:0x5C +fn_8043E770 = .text:0x8043E770; // type:function size:0x54 +fn_8043E7C4 = .text:0x8043E7C4; // type:function size:0x230 +fn_8043E9F4 = .text:0x8043E9F4; // type:function size:0xD0 +fn_8043EAC4 = .text:0x8043EAC4; // type:function size:0x110 +fn_8043EBD4 = .text:0x8043EBD4; // type:function size:0x50 +fn_8043EC24 = .text:0x8043EC24; // type:function size:0x6C +fn_8043EC90 = .text:0x8043EC90; // type:function size:0x6C +fn_8043ECFC = .text:0x8043ECFC; // type:function size:0x58 +fn_8043ED54 = .text:0x8043ED54; // type:function size:0x68 +fn_8043EDBC = .text:0x8043EDBC; // type:function size:0x60 +fn_8043EE1C = .text:0x8043EE1C; // type:function size:0x64 +fn_8043EE80 = .text:0x8043EE80; // type:function size:0xCC +fn_8043EF4C = .text:0x8043EF4C; // type:function size:0x120 +fn_8043F06C = .text:0x8043F06C; // type:function size:0x90 +fn_8043F0FC = .text:0x8043F0FC; // type:function size:0x84 +fn_8043F180 = .text:0x8043F180; // type:function size:0xB8 +fn_8043F238 = .text:0x8043F238; // type:function size:0x74 +fn_8043F2AC = .text:0x8043F2AC; // type:function size:0xB8 +fn_8043F364 = .text:0x8043F364; // type:function size:0x8 +fn_8043F36C = .text:0x8043F36C; // type:function size:0x80 +fn_8043F3EC = .text:0x8043F3EC; // type:function size:0x108 +fn_8043F4F4 = .text:0x8043F4F4; // type:function size:0x88 +fn_8043F57C = .text:0x8043F57C; // type:function size:0x94 +fn_8043F610 = .text:0x8043F610; // type:function size:0xD4 +fn_8043F6E4 = .text:0x8043F6E4; // type:function size:0x8 +fn_8043F6EC = .text:0x8043F6EC; // type:function size:0xD8 +fn_8043F7C4 = .text:0x8043F7C4; // type:function size:0x8 +fn_8043F7CC = .text:0x8043F7CC; // type:function size:0x104 +fn_8043F8D0 = .text:0x8043F8D0; // type:function size:0x4 +fn_8043F8D4 = .text:0x8043F8D4; // type:function size:0x30 +fn_8043F904 = .text:0x8043F904; // type:function size:0x44 +fn_8043F948 = .text:0x8043F948; // type:function size:0x44 +fn_8043F98C = .text:0x8043F98C; // type:function size:0x164 +fn_8043FAF0 = .text:0x8043FAF0; // type:function size:0x410 +fn_8043FF00 = .text:0x8043FF00; // type:function size:0xCC +fn_8043FFCC = .text:0x8043FFCC; // type:function size:0xC0 +Handle__9BandTrackFP9DataArrayb = .text:0x8044008C; // type:function size:0x994 +fn_80440A20 = .text:0x80440A20; // type:function size:0x134 +fn_80440B54 = .text:0x80440B54; // type:function size:0x4C +fn_80440BA0 = .text:0x80440BA0; // type:function size:0x4 +fn_80440BA4 = .text:0x80440BA4; // type:function size:0x14 +fn_80440BB8 = .text:0x80440BB8; // type:function size:0x14 +fn_80440BCC = .text:0x80440BCC; // type:function size:0x14 +fn_80440BE0 = .text:0x80440BE0; // type:function size:0x14 +fn_80440BF4 = .text:0x80440BF4; // type:function size:0x14 +fn_80440C08 = .text:0x80440C08; // type:function size:0x14 +fn_80440C1C = .text:0x80440C1C; // type:function size:0x14 +fn_80440C30 = .text:0x80440C30; // type:function size:0x14 +__ct__17TrackPanelDirBaseFv = .text:0x80440C44; // type:function size:0x254 +fn_80440E98 = .text:0x80440E98; // type:function size:0x58 +fn_80440EF0 = .text:0x80440EF0; // type:function size:0x58 +fn_80440F48 = .text:0x80440F48; // type:function size:0x80 +fn_80440FC8 = .text:0x80440FC8; // type:function size:0x80 +fn_80441048 = .text:0x80441048; // type:function size:0x58 +fn_804410A0 = .text:0x804410A0; // type:function size:0x54 +fn_804410F4 = .text:0x804410F4; // type:function size:0x5C +fn_80441150 = .text:0x80441150; // type:function size:0x6C +fn_804411BC = .text:0x804411BC; // type:function size:0x28 +fn_804411E4 = .text:0x804411E4; // type:function size:0x8 +fn_804411EC = .text:0x804411EC; // type:function size:0x3C +fn_80441228 = .text:0x80441228; // type:function size:0x58 +fn_80441280 = .text:0x80441280; // type:function size:0x58 +fn_804412D8 = .text:0x804412D8; // type:function size:0x80 +fn_80441358 = .text:0x80441358; // type:function size:0x80 +fn_804413D8 = .text:0x804413D8; // type:function size:0x58 +fn_80441430 = .text:0x80441430; // type:function size:0x54 +fn_80441484 = .text:0x80441484; // type:function size:0x5C +fn_804414E0 = .text:0x804414E0; // type:function size:0x6C +fn_8044154C = .text:0x8044154C; // type:function size:0x28 +fn_80441574 = .text:0x80441574; // type:function size:0x80 +fn_804415F4 = .text:0x804415F4; // type:function size:0x8 +fn_804415FC = .text:0x804415FC; // type:function size:0x3C +fn_80441638 = .text:0x80441638; // type:function size:0x50 +fn_80441688 = .text:0x80441688; // type:function size:0x30 +fn_804416B8 = .text:0x804416B8; // type:function size:0x30 +fn_804416E8 = .text:0x804416E8; // type:function size:0x40 +fn_80441728 = .text:0x80441728; // type:function size:0x50 +fn_80441778 = .text:0x80441778; // type:function size:0x30 +fn_804417A8 = .text:0x804417A8; // type:function size:0x30 +fn_804417D8 = .text:0x804417D8; // type:function size:0x40 +fn_80441818 = .text:0x80441818; // type:function size:0x4 +fn_8044181C = .text:0x8044181C; // type:function size:0x98 +fn_804418B4 = .text:0x804418B4; // type:function size:0x88 +fn_8044193C = .text:0x8044193C; // type:function size:0xA4 +fn_804419E0 = .text:0x804419E0; // type:function size:0x84 +fn_80441A64 = .text:0x80441A64; // type:function size:0x11C +fn_80441B80 = .text:0x80441B80; // type:function size:0x120 +fn_80441CA0 = .text:0x80441CA0; // type:function size:0x1C4 +fn_80441E64 = .text:0x80441E64; // type:function size:0x4 +fn_80441E68 = .text:0x80441E68; // type:function size:0x78 +fn_80441EE0 = .text:0x80441EE0; // type:function size:0x35C +fn_8044223C = .text:0x8044223C; // type:function size:0x48 +fn_80442284 = .text:0x80442284; // type:function size:0x38 +fn_804422BC = .text:0x804422BC; // type:function size:0x50 +fn_8044230C = .text:0x8044230C; // type:function size:0x30 +fn_8044233C = .text:0x8044233C; // type:function size:0x7C +fn_804423B8 = .text:0x804423B8; // type:function size:0x8C +fn_80442444 = .text:0x80442444; // type:function size:0x1C +fn_80442460 = .text:0x80442460; // type:function size:0x4 +fn_80442464 = .text:0x80442464; // type:function size:0x2C +fn_80442490 = .text:0x80442490; // type:function size:0x54 +fn_804424E4 = .text:0x804424E4; // type:function size:0x520 +fn_80442A04 = .text:0x80442A04; // type:function size:0x190 +fn_80442B94 = .text:0x80442B94; // type:function size:0x138 +fn_80442CCC = .text:0x80442CCC; // type:function size:0xE4 +fn_80442DB0 = .text:0x80442DB0; // type:function size:0x6C +fn_80442E1C = .text:0x80442E1C; // type:function size:0x134 +fn_80442F50 = .text:0x80442F50; // type:function size:0x4C +fn_80442F9C = .text:0x80442F9C; // type:function size:0x4 +fn_80442FA0 = .text:0x80442FA0; // type:function size:0x8 +fn_80442FA8 = .text:0x80442FA8; // type:function size:0x8 +fn_80442FB0 = .text:0x80442FB0; // type:function size:0x8 +fn_80442FB8 = .text:0x80442FB8; // type:function size:0x8 +fn_80442FC0 = .text:0x80442FC0; // type:function size:0x8 +fn_80442FC8 = .text:0x80442FC8; // type:function size:0x8 +fn_80442FD0 = .text:0x80442FD0; // type:function size:0x8 +fn_80442FD8 = .text:0x80442FD8; // type:function size:0x8 +fn_80442FE0 = .text:0x80442FE0; // type:function size:0x8 +fn_80442FE8 = .text:0x80442FE8; // type:function size:0x8 +fn_80442FF0 = .text:0x80442FF0; // type:function size:0x8 +fn_80442FF8 = .text:0x80442FF8; // type:function size:0x8 +fn_80443000 = .text:0x80443000; // type:function size:0x8 +fn_80443008 = .text:0x80443008; // type:function size:0x8 +fn_80443010 = .text:0x80443010; // type:function size:0x8 +fn_80443018 = .text:0x80443018; // type:function size:0x14 +fn_8044302C = .text:0x8044302C; // type:function size:0x14 +fn_80443040 = .text:0x80443040; // type:function size:0x8 +fn_80443048 = .text:0x80443048; // type:function size:0x8 +fn_80443050 = .text:0x80443050; // type:function size:0x8 +fn_80443058 = .text:0x80443058; // type:function size:0x8 +fn_80443060 = .text:0x80443060; // type:function size:0x8 +fn_80443068 = .text:0x80443068; // type:function size:0x8 +fn_80443070 = .text:0x80443070; // type:function size:0x8 +fn_80443078 = .text:0x80443078; // type:function size:0x8 +fn_80443080 = .text:0x80443080; // type:function size:0x8 +fn_80443088 = .text:0x80443088; // type:function size:0x8 +fn_80443090 = .text:0x80443090; // type:function size:0x8 +fn_80443098 = .text:0x80443098; // type:function size:0x8 +fn_804430A0 = .text:0x804430A0; // type:function size:0x14 +fn_804430B4 = .text:0x804430B4; // type:function size:0x14 +fn_804430C8 = .text:0x804430C8; // type:function size:0x14 +fn_804430DC = .text:0x804430DC; // type:function size:0x14 +fn_804430F0 = .text:0x804430F0; // type:function size:0x14 +fn_80443104 = .text:0x80443104; // type:function size:0x14 +fn_80443118 = .text:0x80443118; // type:function size:0x14 +fn_8044312C = .text:0x8044312C; // type:function size:0x14 +fn_80443140 = .text:0x80443140; // type:function size:0x14 +fn_80443154 = .text:0x80443154; // type:function size:0x14 +fn_80443168 = .text:0x80443168; // type:function size:0x14 +fn_8044317C = .text:0x8044317C; // type:function size:0x14 +fn_80443190 = .text:0x80443190; // type:function size:0x14 +fn_804431A4 = .text:0x804431A4; // type:function size:0x14 +fn_804431B8 = .text:0x804431B8; // type:function size:0x14 +fn_804431CC = .text:0x804431CC; // type:function size:0x8 +fn_804431D4 = .text:0x804431D4; // type:function size:0x8 +fn_804431DC = .text:0x804431DC; // type:function size:0x8 +fn_804431E4 = .text:0x804431E4; // type:function size:0x8 +fn_804431EC = .text:0x804431EC; // type:function size:0x8 +__ct__13TrackPanelDirFv = .text:0x804431F4; // type:function size:0x274 +fn_80443468 = .text:0x80443468; // type:function size:0x80 +fn_804434E8 = .text:0x804434E8; // type:function size:0x80 +fn_80443568 = .text:0x80443568; // type:function size:0x80 +fn_804435E8 = .text:0x804435E8; // type:function size:0x48 +fn_80443630 = .text:0x80443630; // type:function size:0x8 +fn_80443638 = .text:0x80443638; // type:function size:0x24 +fn_8044365C = .text:0x8044365C; // type:function size:0x3C +fn_80443698 = .text:0x80443698; // type:function size:0x60 +fn_804436F8 = .text:0x804436F8; // type:function size:0x4 +fn_804436FC = .text:0x804436FC; // type:function size:0x90 +fn_8044378C = .text:0x8044378C; // type:function size:0x4 +fn_80443790 = .text:0x80443790; // type:function size:0x40 +fn_804437D0 = .text:0x804437D0; // type:function size:0x8C +fn_8044385C = .text:0x8044385C; // type:function size:0x8 +fn_80443864 = .text:0x80443864; // type:function size:0x2C +fn_80443890 = .text:0x80443890; // type:function size:0x58 +fn_804438E8 = .text:0x804438E8; // type:function size:0x28 +fn_80443910 = .text:0x80443910; // type:function size:0x68 +fn_80443978 = .text:0x80443978; // type:function size:0x68 +fn_804439E0 = .text:0x804439E0; // type:function size:0x68 +fn_80443A48 = .text:0x80443A48; // type:function size:0x68 +__dt__13TrackPanelDirFv = .text:0x80443AB0; // type:function size:0x16C +fn_80443C1C = .text:0x80443C1C; // type:function size:0x4 +fn_80443C20 = .text:0x80443C20; // type:function size:0x88 +fn_80443CA8 = .text:0x80443CA8; // type:function size:0xA0 +fn_80443D48 = .text:0x80443D48; // type:function size:0x4 +fn_80443D4C = .text:0x80443D4C; // type:function size:0x494 +fn_804441E0 = .text:0x804441E0; // type:function size:0x2C +fn_8044420C = .text:0x8044420C; // type:function size:0x8 +fn_80444214 = .text:0x80444214; // type:function size:0xA0 +fn_804442B4 = .text:0x804442B4; // type:function size:0xA0 +fn_80444354 = .text:0x80444354; // type:function size:0xA0 +fn_804443F4 = .text:0x804443F4; // type:function size:0xA0 +fn_80444494 = .text:0x80444494; // type:function size:0x310 +fn_804447A4 = .text:0x804447A4; // type:function size:0x8 +fn_804447AC = .text:0x804447AC; // type:function size:0x8 +fn_804447B4 = .text:0x804447B4; // type:function size:0x48 +fn_804447FC = .text:0x804447FC; // type:function size:0x8 +fn_80444804 = .text:0x80444804; // type:function size:0x24 +fn_80444828 = .text:0x80444828; // type:function size:0x3C +fn_80444864 = .text:0x80444864; // type:function size:0x60 +fn_804448C4 = .text:0x804448C4; // type:function size:0x4 +fn_804448C8 = .text:0x804448C8; // type:function size:0x90 +fn_80444958 = .text:0x80444958; // type:function size:0x4 +fn_8044495C = .text:0x8044495C; // type:function size:0x40 +fn_8044499C = .text:0x8044499C; // type:function size:0x8C +fn_80444A28 = .text:0x80444A28; // type:function size:0x8 +fn_80444A30 = .text:0x80444A30; // type:function size:0x2C +fn_80444A5C = .text:0x80444A5C; // type:function size:0x58 +fn_80444AB4 = .text:0x80444AB4; // type:function size:0x28 +fn_80444ADC = .text:0x80444ADC; // type:function size:0x68 +fn_80444B44 = .text:0x80444B44; // type:function size:0x68 +fn_80444BAC = .text:0x80444BAC; // type:function size:0x4 +fn_80444BB0 = .text:0x80444BB0; // type:function size:0x3C +fn_80444BEC = .text:0x80444BEC; // type:function size:0x4 +fn_80444BF0 = .text:0x80444BF0; // type:function size:0x3C +fn_80444C2C = .text:0x80444C2C; // type:function size:0x40 +fn_80444C6C = .text:0x80444C6C; // type:function size:0x8C +fn_80444CF8 = .text:0x80444CF8; // type:function size:0x8 +fn_80444D00 = .text:0x80444D00; // type:function size:0x2C +fn_80444D2C = .text:0x80444D2C; // type:function size:0x58 +fn_80444D84 = .text:0x80444D84; // type:function size:0x28 +fn_80444DAC = .text:0x80444DAC; // type:function size:0x64 +fn_80444E10 = .text:0x80444E10; // type:function size:0x4 +fn_80444E14 = .text:0x80444E14; // type:function size:0x90 +fn_80444EA4 = .text:0x80444EA4; // type:function size:0x4 +fn_80444EA8 = .text:0x80444EA8; // type:function size:0x260 +fn_80445108 = .text:0x80445108; // type:function size:0x138 +fn_80445240 = .text:0x80445240; // type:function size:0x530 +fn_80445770 = .text:0x80445770; // type:function size:0x8 +fn_80445778 = .text:0x80445778; // type:function size:0x5C +fn_804457D4 = .text:0x804457D4; // type:function size:0x8 +fn_804457DC = .text:0x804457DC; // type:function size:0x16C +fn_80445948 = .text:0x80445948; // type:function size:0x3C +fn_80445984 = .text:0x80445984; // type:function size:0x40 +fn_804459C4 = .text:0x804459C4; // type:function size:0x68 +fn_80445A2C = .text:0x80445A2C; // type:function size:0x130 +fn_80445B5C = .text:0x80445B5C; // type:function size:0x410 +fn_80445F6C = .text:0x80445F6C; // type:function size:0xC4 +fn_80446030 = .text:0x80446030; // type:function size:0x70 +fn_804460A0 = .text:0x804460A0; // type:function size:0x60 +fn_80446100 = .text:0x80446100; // type:function size:0x54 +fn_80446154 = .text:0x80446154; // type:function size:0x150 +fn_804462A4 = .text:0x804462A4; // type:function size:0xF8 +fn_8044639C = .text:0x8044639C; // type:function size:0x3D8 +fn_80446774 = .text:0x80446774; // type:function size:0x8 +fn_8044677C = .text:0x8044677C; // type:function size:0xC8 +fn_80446844 = .text:0x80446844; // type:function size:0xD8 +fn_8044691C = .text:0x8044691C; // type:function size:0xC4 +fn_804469E0 = .text:0x804469E0; // type:function size:0x40 +fn_80446A20 = .text:0x80446A20; // type:function size:0x2D8 +fn_80446CF8 = .text:0x80446CF8; // type:function size:0x78 +fn_80446D70 = .text:0x80446D70; // type:function size:0x9C +fn_80446E0C = .text:0x80446E0C; // type:function size:0x8C +fn_80446E98 = .text:0x80446E98; // type:function size:0xF0 +fn_80446F88 = .text:0x80446F88; // type:function size:0x38 +fn_80446FC0 = .text:0x80446FC0; // type:function size:0x168 +fn_80447128 = .text:0x80447128; // type:function size:0x48 +fn_80447170 = .text:0x80447170; // type:function size:0x44 +fn_804471B4 = .text:0x804471B4; // type:function size:0x64 +fn_80447218 = .text:0x80447218; // type:function size:0x34 +fn_8044724C = .text:0x8044724C; // type:function size:0x98 +fn_804472E4 = .text:0x804472E4; // type:function size:0x90 +fn_80447374 = .text:0x80447374; // type:function size:0x34 +fn_804473A8 = .text:0x804473A8; // type:function size:0x94 +Handle__13TrackPanelDirFP9DataArrayb = .text:0x8044743C; // type:function size:0x214 +fn_80447650 = .text:0x80447650; // type:function size:0x8 +fn_80447658 = .text:0x80447658; // type:function size:0x2C8 +fn_80447920 = .text:0x80447920; // type:function size:0x60 +fn_80447980 = .text:0x80447980; // type:function size:0x6C +fn_804479EC = .text:0x804479EC; // type:function size:0x6C +fn_80447A58 = .text:0x80447A58; // type:function size:0x68 +fn_80447AC0 = .text:0x80447AC0; // type:function size:0x68 +fn_80447B28 = .text:0x80447B28; // type:function size:0x2C +fn_80447B54 = .text:0x80447B54; // type:function size:0x68 +fn_80447BBC = .text:0x80447BBC; // type:function size:0x2C +fn_80447BE8 = .text:0x80447BE8; // type:function size:0x8 +fn_80447BF0 = .text:0x80447BF0; // type:function size:0x8 +fn_80447BF8 = .text:0x80447BF8; // type:function size:0x8 +fn_80447C00 = .text:0x80447C00; // type:function size:0x134 +fn_80447D34 = .text:0x80447D34; // type:function size:0x4 +fn_80447D38 = .text:0x80447D38; // type:function size:0x18C +fn_80447EC4 = .text:0x80447EC4; // type:function size:0x28 +fn_80447EEC = .text:0x80447EEC; // type:function size:0x198 +fn_80448084 = .text:0x80448084; // type:function size:0x5C +fn_804480E0 = .text:0x804480E0; // type:function size:0x10 +fn_804480F0 = .text:0x804480F0; // type:function size:0x54 +fn_80448144 = .text:0x80448144; // type:function size:0x28 +fn_8044816C = .text:0x8044816C; // type:function size:0x68 +fn_804481D4 = .text:0x804481D4; // type:function size:0x5C +fn_80448230 = .text:0x80448230; // type:function size:0x6C +fn_8044829C = .text:0x8044829C; // type:function size:0x114 +fn_804483B0 = .text:0x804483B0; // type:function size:0x5C +fn_8044840C = .text:0x8044840C; // type:function size:0x5C +fn_80448468 = .text:0x80448468; // type:function size:0x54 +fn_804484BC = .text:0x804484BC; // type:function size:0x198 +fn_80448654 = .text:0x80448654; // type:function size:0x5C +fn_804486B0 = .text:0x804486B0; // type:function size:0x10 +fn_804486C0 = .text:0x804486C0; // type:function size:0x54 +fn_80448714 = .text:0x80448714; // type:function size:0x28 +fn_8044873C = .text:0x8044873C; // type:function size:0x68 +fn_804487A4 = .text:0x804487A4; // type:function size:0x5C +fn_80448800 = .text:0x80448800; // type:function size:0x6C +fn_8044886C = .text:0x8044886C; // type:function size:0x114 +fn_80448980 = .text:0x80448980; // type:function size:0x5C +fn_804489DC = .text:0x804489DC; // type:function size:0x5C +fn_80448A38 = .text:0x80448A38; // type:function size:0x54 +fn_80448A8C = .text:0x80448A8C; // type:function size:0x8 +fn_80448A94 = .text:0x80448A94; // type:function size:0x8 +fn_80448A9C = .text:0x80448A9C; // type:function size:0x8 +fn_80448AA4 = .text:0x80448AA4; // type:function size:0x8 +fn_80448AAC = .text:0x80448AAC; // type:function size:0x8 +fn_80448AB4 = .text:0x80448AB4; // type:function size:0x8 +fn_80448ABC = .text:0x80448ABC; // type:function size:0x8 +fn_80448AC4 = .text:0x80448AC4; // type:function size:0x8 +fn_80448ACC = .text:0x80448ACC; // type:function size:0x8 +fn_80448AD4 = .text:0x80448AD4; // type:function size:0x8 +fn_80448ADC = .text:0x80448ADC; // type:function size:0x8 +fn_80448AE4 = .text:0x80448AE4; // type:function size:0x8 +fn_80448AEC = .text:0x80448AEC; // type:function size:0x8 +fn_80448AF4 = .text:0x80448AF4; // type:function size:0x8 +fn_80448AFC = .text:0x80448AFC; // type:function size:0x14 +fn_80448B10 = .text:0x80448B10; // type:function size:0x14 +fn_80448B24 = .text:0x80448B24; // type:function size:0x8 +fn_80448B2C = .text:0x80448B2C; // type:function size:0x8 +fn_80448B34 = .text:0x80448B34; // type:function size:0x8 +fn_80448B3C = .text:0x80448B3C; // type:function size:0x8 +fn_80448B44 = .text:0x80448B44; // type:function size:0x8 +fn_80448B4C = .text:0x80448B4C; // type:function size:0x8 +fn_80448B54 = .text:0x80448B54; // type:function size:0x8 +fn_80448B5C = .text:0x80448B5C; // type:function size:0x8 +fn_80448B64 = .text:0x80448B64; // type:function size:0x8 +fn_80448B6C = .text:0x80448B6C; // type:function size:0x8 +fn_80448B74 = .text:0x80448B74; // type:function size:0x8 +fn_80448B7C = .text:0x80448B7C; // type:function size:0x14 +fn_80448B90 = .text:0x80448B90; // type:function size:0x14 +fn_80448BA4 = .text:0x80448BA4; // type:function size:0x14 +fn_80448BB8 = .text:0x80448BB8; // type:function size:0x14 +fn_80448BCC = .text:0x80448BCC; // type:function size:0x14 +fn_80448BE0 = .text:0x80448BE0; // type:function size:0x14 +fn_80448BF4 = .text:0x80448BF4; // type:function size:0x14 +fn_80448C08 = .text:0x80448C08; // type:function size:0x14 +fn_80448C1C = .text:0x80448C1C; // type:function size:0x14 +fn_80448C30 = .text:0x80448C30; // type:function size:0x14 +fn_80448C44 = .text:0x80448C44; // type:function size:0x14 +fn_80448C58 = .text:0x80448C58; // type:function size:0x14 +fn_80448C6C = .text:0x80448C6C; // type:function size:0x14 +fn_80448C80 = .text:0x80448C80; // type:function size:0x14 +fn_80448C94 = .text:0x80448C94; // type:function size:0x14 +fn_80448CA8 = .text:0x80448CA8; // type:function size:0x8 +fn_80448CB0 = .text:0x80448CB0; // type:function size:0x8 +fn_80448CB8 = .text:0x80448CB8; // type:function size:0x8 +fn_80448CC0 = .text:0x80448CC0; // type:function size:0x8 +fn_80448CC8 = .text:0x80448CC8; // type:function size:0x8 +__ct__14CrowdMeterIconFv = .text:0x80448CD0; // type:function size:0x298 +fn_80448F68 = .text:0x80448F68; // type:function size:0x334 +fn_8044929C = .text:0x8044929C; // type:function size:0x110 +fn_804493AC = .text:0x804493AC; // type:function size:0x58 +fn_80449404 = .text:0x80449404; // type:function size:0x3C +fn_80449440 = .text:0x80449440; // type:function size:0x3C +fn_8044947C = .text:0x8044947C; // type:function size:0x58 +fn_804494D4 = .text:0x804494D4; // type:function size:0x34 +fn_80449508 = .text:0x80449508; // type:function size:0x34 +fn_8044953C = .text:0x8044953C; // type:function size:0x70 +fn_804495AC = .text:0x804495AC; // type:function size:0x5C +fn_80449608 = .text:0x80449608; // type:function size:0x34 +fn_8044963C = .text:0x8044963C; // type:function size:0x34 +fn_80449670 = .text:0x80449670; // type:function size:0x8C +fn_804496FC = .text:0x804496FC; // type:function size:0x290 +fn_8044998C = .text:0x8044998C; // type:function size:0x4 +fn_80449990 = .text:0x80449990; // type:function size:0x64 +fn_804499F4 = .text:0x804499F4; // type:function size:0x4 +fn_804499F8 = .text:0x804499F8; // type:function size:0x4 +fn_804499FC = .text:0x804499FC; // type:function size:0x150 +fn_80449B4C = .text:0x80449B4C; // type:function size:0x134 +fn_80449C80 = .text:0x80449C80; // type:function size:0x4 +fn_80449C84 = .text:0x80449C84; // type:function size:0x8 +fn_80449C8C = .text:0x80449C8C; // type:function size:0x8 +fn_80449C94 = .text:0x80449C94; // type:function size:0x8 +fn_80449C9C = .text:0x80449C9C; // type:function size:0x8 +fn_80449CA4 = .text:0x80449CA4; // type:function size:0x8 +fn_80449CAC = .text:0x80449CAC; // type:function size:0x8 +fn_80449CB4 = .text:0x80449CB4; // type:function size:0x8 +fn_80449CBC = .text:0x80449CBC; // type:function size:0x8 +fn_80449CC4 = .text:0x80449CC4; // type:function size:0x8 +fn_80449CCC = .text:0x80449CCC; // type:function size:0x8 +fn_80449CD4 = .text:0x80449CD4; // type:function size:0x8 +fn_80449CDC = .text:0x80449CDC; // type:function size:0x8 +fn_80449CE4 = .text:0x80449CE4; // type:function size:0x8 +fn_80449CEC = .text:0x80449CEC; // type:function size:0x8 +fn_80449CF4 = .text:0x80449CF4; // type:function size:0x14 +fn_80449D08 = .text:0x80449D08; // type:function size:0x14 +fn_80449D1C = .text:0x80449D1C; // type:function size:0x8 +fn_80449D24 = .text:0x80449D24; // type:function size:0x8 +fn_80449D2C = .text:0x80449D2C; // type:function size:0x8 +fn_80449D34 = .text:0x80449D34; // type:function size:0x8 +fn_80449D3C = .text:0x80449D3C; // type:function size:0x8 +fn_80449D44 = .text:0x80449D44; // type:function size:0x8 +fn_80449D4C = .text:0x80449D4C; // type:function size:0x8 +fn_80449D54 = .text:0x80449D54; // type:function size:0x8 +fn_80449D5C = .text:0x80449D5C; // type:function size:0x8 +fn_80449D64 = .text:0x80449D64; // type:function size:0x8 +fn_80449D6C = .text:0x80449D6C; // type:function size:0x8 +fn_80449D74 = .text:0x80449D74; // type:function size:0x14 +fn_80449D88 = .text:0x80449D88; // type:function size:0x14 +fn_80449D9C = .text:0x80449D9C; // type:function size:0x14 +fn_80449DB0 = .text:0x80449DB0; // type:function size:0x14 +fn_80449DC4 = .text:0x80449DC4; // type:function size:0x14 +fn_80449DD8 = .text:0x80449DD8; // type:function size:0x14 +fn_80449DEC = .text:0x80449DEC; // type:function size:0x14 +fn_80449E00 = .text:0x80449E00; // type:function size:0x14 +fn_80449E14 = .text:0x80449E14; // type:function size:0x14 +fn_80449E28 = .text:0x80449E28; // type:function size:0x14 +fn_80449E3C = .text:0x80449E3C; // type:function size:0x14 +fn_80449E50 = .text:0x80449E50; // type:function size:0x14 +fn_80449E64 = .text:0x80449E64; // type:function size:0x14 +fn_80449E78 = .text:0x80449E78; // type:function size:0x14 +fn_80449E8C = .text:0x80449E8C; // type:function size:0x14 +fn_80449EA0 = .text:0x80449EA0; // type:function size:0x8 +fn_80449EA8 = .text:0x80449EA8; // type:function size:0x8 +fn_80449EB0 = .text:0x80449EB0; // type:function size:0x8 +fn_80449EB8 = .text:0x80449EB8; // type:function size:0x8 +fn_80449EC0 = .text:0x80449EC0; // type:function size:0x8 +fn_80449EC8 = .text:0x80449EC8; // type:function size:0x4 +fn_80449ECC = .text:0x80449ECC; // type:function size:0x34 +NewObject__10CrowdAudioFv = .text:0x80449F00; // type:function size:0x40 +StaticClassName__10CrowdAudioFv = .text:0x80449F40; // type:function size:0x4C +__ct__10CrowdAudioFv = .text:0x80449F8C; // type:function size:0x220 +__dt__28ObjPtr<8BinkClip,9ObjectDir>Fv = .text:0x8044A1AC; // type:function size:0x80 +__ct__28ObjPtr<8BinkClip,9ObjectDir>FPQ23Hmx6ObjectP8BinkClip = .text:0x8044A22C; // type:function size:0x68 +__dt__10CrowdAudioFv = .text:0x8044A294; // type:function size:0x258 +fn_8044A4EC = .text:0x8044A4EC; // type:function size:0xA0 +fn_8044A58C = .text:0x8044A58C; // type:function size:0x70 +fn_8044A5FC = .text:0x8044A5FC; // type:function size:0x1FC +fn_8044A7F8 = .text:0x8044A7F8; // type:function size:0x130 +fn_8044A928 = .text:0x8044A928; // type:function size:0xA8 +fn_8044A9D0 = .text:0x8044A9D0; // type:function size:0x54 +fn_8044AA24 = .text:0x8044AA24; // type:function size:0x290 +fn_8044ACB4 = .text:0x8044ACB4; // type:function size:0x8 +fn_8044ACBC = .text:0x8044ACBC; // type:function size:0xA0 +fn_8044AD5C = .text:0x8044AD5C; // type:function size:0xD4 +fn_8044AE30 = .text:0x8044AE30; // type:function size:0x74 +fn_8044AEA4 = .text:0x8044AEA4; // type:function size:0xA4 +fn_8044AF48 = .text:0x8044AF48; // type:function size:0x18 +fn_8044AF60 = .text:0x8044AF60; // type:function size:0x98 +fn_8044AFF8 = .text:0x8044AFF8; // type:function size:0xF8 +fn_8044B0F0 = .text:0x8044B0F0; // type:function size:0xA0 +SetTypeDef__10CrowdAudioFP9DataArray = .text:0x8044B190; // type:function size:0x28C +fn_8044B41C = .text:0x8044B41C; // type:function size:0x1C8 +Save__10CrowdAudioFR9BinStream = .text:0x8044B5E4; // type:function size:0x4 +Load__10CrowdAudioFR9BinStream = .text:0x8044B5E8; // type:function size:0xE8 +Copy__10CrowdAudioFPCQ23Hmx6ObjectQ33Hmx6Object8CopyType = .text:0x8044B6D0; // type:function size:0x50 +fn_8044B720 = .text:0x8044B720; // type:function size:0x98 +fn_8044B7B8 = .text:0x8044B7B8; // type:function size:0x2C +fn_8044B7E4 = .text:0x8044B7E4; // type:function size:0x8C +fn_8044B870 = .text:0x8044B870; // type:function size:0x14 +fn_8044B884 = .text:0x8044B884; // type:function size:0x24 +fn_8044B8A8 = .text:0x8044B8A8; // type:function size:0x28 +fn_8044B8D0 = .text:0x8044B8D0; // type:function size:0x80 +fn_8044B950 = .text:0x8044B950; // type:function size:0xC +Handle__10CrowdAudioFP9DataArrayb = .text:0x8044B95C; // type:function size:0x45C +SyncProperty__10CrowdAudioFR8DataNodeP9DataArrayi6PropOp = .text:0x8044BDB8; // type:function size:0x190 +fn_8044BF48 = .text:0x8044BF48; // type:function size:0x60 +SetType__10CrowdAudioF6Symbol = .text:0x8044BFA8; // type:function size:0x134 +ClassName__10CrowdAudioCFv = .text:0x8044C0DC; // type:function size:0x4 +fn_8044C0E0 = .text:0x8044C0E0; // type:function size:0x14 +fn_8044C0F4 = .text:0x8044C0F4; // type:function size:0x14 +fn_8044C108 = .text:0x8044C108; // type:function size:0x14 +fn_8044C11C = .text:0x8044C11C; // type:function size:0x14 +fn_8044C130 = .text:0x8044C130; // type:function size:0x14 +fn_8044C144 = .text:0x8044C144; // type:function size:0x14 +fn_8044C158 = .text:0x8044C158; // type:function size:0x14 +fn_8044C16C = .text:0x8044C16C; // type:function size:0x14 +fn_8044C180 = .text:0x8044C180; // type:function size:0x14 +fn_8044C194 = .text:0x8044C194; // type:function size:0x90 +fn_8044C224 = .text:0x8044C224; // type:function size:0x90 +fn_8044C2B4 = .text:0x8044C2B4; // type:function size:0x18 +fn_8044C2CC = .text:0x8044C2CC; // type:function size:0x50 +fn_8044C31C = .text:0x8044C31C; // type:function size:0x2C +fn_8044C348 = .text:0x8044C348; // type:function size:0x138 +fn_8044C480 = .text:0x8044C480; // type:function size:0x40 +fn_8044C4C0 = .text:0x8044C4C0; // type:function size:0x34 +fn_8044C4F4 = .text:0x8044C4F4; // type:function size:0x48 +fn_8044C53C = .text:0x8044C53C; // type:function size:0x4C +__ct__10InlineHelpFv = .text:0x8044C588; // type:function size:0x14C +fn_8044C6D4 = .text:0x8044C6D4; // type:function size:0x58 +fn_8044C72C = .text:0x8044C72C; // type:function size:0x80 +fn_8044C7AC = .text:0x8044C7AC; // type:function size:0x80 +fn_8044C82C = .text:0x8044C82C; // type:function size:0x58 +fn_8044C884 = .text:0x8044C884; // type:function size:0x54 +fn_8044C8D8 = .text:0x8044C8D8; // type:function size:0x5C +fn_8044C934 = .text:0x8044C934; // type:function size:0x6C +fn_8044C9A0 = .text:0x8044C9A0; // type:function size:0x28 +fn_8044C9C8 = .text:0x8044C9C8; // type:function size:0x8 +fn_8044C9D0 = .text:0x8044C9D0; // type:function size:0x3C +fn_8044CA0C = .text:0x8044CA0C; // type:function size:0x30 +fn_8044CA3C = .text:0x8044CA3C; // type:function size:0x30 +fn_8044CA6C = .text:0x8044CA6C; // type:function size:0x40 +__dt__10InlineHelpFv = .text:0x8044CAAC; // type:function size:0x150 +fn_8044CBFC = .text:0x8044CBFC; // type:function size:0x88 +fn_8044CC84 = .text:0x8044CC84; // type:function size:0xA4 +fn_8044CD28 = .text:0x8044CD28; // type:function size:0x30 +fn_8044CD58 = .text:0x8044CD58; // type:function size:0x4 +fn_8044CD5C = .text:0x8044CD5C; // type:function size:0x5C +fn_8044CDB8 = .text:0x8044CDB8; // type:function size:0xDC +fn_8044CE94 = .text:0x8044CE94; // type:function size:0x8C +fn_8044CF20 = .text:0x8044CF20; // type:function size:0x4 +fn_8044CF24 = .text:0x8044CF24; // type:function size:0x90 +fn_8044CFB4 = .text:0x8044CFB4; // type:function size:0x4 +fn_8044CFB8 = .text:0x8044CFB8; // type:function size:0x68 +fn_8044D020 = .text:0x8044D020; // type:function size:0x40 +fn_8044D060 = .text:0x8044D060; // type:function size:0x58 +fn_8044D0B8 = .text:0x8044D0B8; // type:function size:0x110 +fn_8044D1C8 = .text:0x8044D1C8; // type:function size:0x1A4 +fn_8044D36C = .text:0x8044D36C; // type:function size:0x54 +fn_8044D3C0 = .text:0x8044D3C0; // type:function size:0xCC +fn_8044D48C = .text:0x8044D48C; // type:function size:0x4 +fn_8044D490 = .text:0x8044D490; // type:function size:0x88 +fn_8044D518 = .text:0x8044D518; // type:function size:0x2C +fn_8044D544 = .text:0x8044D544; // type:function size:0x10 +fn_8044D554 = .text:0x8044D554; // type:function size:0x70 +fn_8044D5C4 = .text:0x8044D5C4; // type:function size:0x64 +fn_8044D628 = .text:0x8044D628; // type:function size:0x80 +fn_8044D6A8 = .text:0x8044D6A8; // type:function size:0x2C +fn_8044D6D4 = .text:0x8044D6D4; // type:function size:0x84 +fn_8044D758 = .text:0x8044D758; // type:function size:0x2C +fn_8044D784 = .text:0x8044D784; // type:function size:0x110 +fn_8044D894 = .text:0x8044D894; // type:function size:0x68 +fn_8044D8FC = .text:0x8044D8FC; // type:function size:0x90 +fn_8044D98C = .text:0x8044D98C; // type:function size:0x70 +fn_8044D9FC = .text:0x8044D9FC; // type:function size:0x104 +fn_8044DB00 = .text:0x8044DB00; // type:function size:0xD0 +fn_8044DBD0 = .text:0x8044DBD0; // type:function size:0x54 +fn_8044DC24 = .text:0x8044DC24; // type:function size:0x40 +fn_8044DC64 = .text:0x8044DC64; // type:function size:0x11C +fn_8044DD80 = .text:0x8044DD80; // type:function size:0x1C8 +fn_8044DF48 = .text:0x8044DF48; // type:function size:0x1CC +fn_8044E114 = .text:0x8044E114; // type:function size:0x1E4 +fn_8044E2F8 = .text:0x8044E2F8; // type:function size:0x164 +fn_8044E45C = .text:0x8044E45C; // type:function size:0xA4 +fn_8044E500 = .text:0x8044E500; // type:function size:0x68 +fn_8044E568 = .text:0x8044E568; // type:function size:0x58 +fn_8044E5C0 = .text:0x8044E5C0; // type:function size:0x160 +fn_8044E720 = .text:0x8044E720; // type:function size:0x5C +fn_8044E77C = .text:0x8044E77C; // type:function size:0x28 +fn_8044E7A4 = .text:0x8044E7A4; // type:function size:0x5C +fn_8044E800 = .text:0x8044E800; // type:function size:0x60 +fn_8044E860 = .text:0x8044E860; // type:function size:0x114 +fn_8044E974 = .text:0x8044E974; // type:function size:0x5C +fn_8044E9D0 = .text:0x8044E9D0; // type:function size:0x5C +fn_8044EA2C = .text:0x8044EA2C; // type:function size:0x54 +fn_8044EA80 = .text:0x8044EA80; // type:function size:0x5C +fn_8044EADC = .text:0x8044EADC; // type:function size:0x138 +fn_8044EC14 = .text:0x8044EC14; // type:function size:0x4 +fn_8044EC18 = .text:0x8044EC18; // type:function size:0x198 +fn_8044EDB0 = .text:0x8044EDB0; // type:function size:0x54 +fn_8044EE04 = .text:0x8044EE04; // type:function size:0x28 +fn_8044EE2C = .text:0x8044EE2C; // type:function size:0x68 +fn_8044EE94 = .text:0x8044EE94; // type:function size:0x14 +fn_8044EEA8 = .text:0x8044EEA8; // type:function size:0x14 +fn_8044EEBC = .text:0x8044EEBC; // type:function size:0x8 +fn_8044EEC4 = .text:0x8044EEC4; // type:function size:0x8 +fn_8044EECC = .text:0x8044EECC; // type:function size:0x8 +fn_8044EED4 = .text:0x8044EED4; // type:function size:0x8 +fn_8044EEDC = .text:0x8044EEDC; // type:function size:0x14 +fn_8044EEF0 = .text:0x8044EEF0; // type:function size:0x14 +fn_8044EF04 = .text:0x8044EF04; // type:function size:0x14 +fn_8044EF18 = .text:0x8044EF18; // type:function size:0x14 +fn_8044EF2C = .text:0x8044EF2C; // type:function size:0x14 +fn_8044EF40 = .text:0x8044EF40; // type:function size:0x14 +fn_8044EF54 = .text:0x8044EF54; // type:function size:0x14 +fn_8044EF68 = .text:0x8044EF68; // type:function size:0x14 +fn_8044EF7C = .text:0x8044EF7C; // type:function size:0x14 +fn_8044EF90 = .text:0x8044EF90; // type:function size:0x14 +fn_8044EFA4 = .text:0x8044EFA4; // type:function size:0x14 +fn_8044EFB8 = .text:0x8044EFB8; // type:function size:0x14 +fn_8044EFCC = .text:0x8044EFCC; // type:function size:0x8 +fn_8044EFD4 = .text:0x8044EFD4; // type:function size:0x8 +fn_8044EFDC = .text:0x8044EFDC; // type:function size:0x8 +fn_8044EFE4 = .text:0x8044EFE4; // type:function size:0x8 +fn_8044EFEC = .text:0x8044EFEC; // type:function size:0x8 +__ct__10UnisonIconFv = .text:0x8044EFF4; // type:function size:0x110 +fn_8044F104 = .text:0x8044F104; // type:function size:0x140 +fn_8044F244 = .text:0x8044F244; // type:function size:0x4 +fn_8044F248 = .text:0x8044F248; // type:function size:0x64 +fn_8044F2AC = .text:0x8044F2AC; // type:function size:0x4 +fn_8044F2B0 = .text:0x8044F2B0; // type:function size:0x4 +fn_8044F2B4 = .text:0x8044F2B4; // type:function size:0x4C +fn_8044F300 = .text:0x8044F300; // type:function size:0x14 +fn_8044F314 = .text:0x8044F314; // type:function size:0x14 +fn_8044F328 = .text:0x8044F328; // type:function size:0x14 +fn_8044F33C = .text:0x8044F33C; // type:function size:0x14 +fn_8044F350 = .text:0x8044F350; // type:function size:0x98 +fn_8044F3E8 = .text:0x8044F3E8; // type:function size:0x10 +fn_8044F3F8 = .text:0x8044F3F8; // type:function size:0xE8 +fn_8044F4E0 = .text:0x8044F4E0; // type:function size:0x200 +fn_8044F6E0 = .text:0x8044F6E0; // type:function size:0x98 +fn_8044F778 = .text:0x8044F778; // type:function size:0x134 +fn_8044F8AC = .text:0x8044F8AC; // type:function size:0x4 +fn_8044F8B0 = .text:0x8044F8B0; // type:function size:0x8 +fn_8044F8B8 = .text:0x8044F8B8; // type:function size:0x8 +fn_8044F8C0 = .text:0x8044F8C0; // type:function size:0x8 +fn_8044F8C8 = .text:0x8044F8C8; // type:function size:0x8 +fn_8044F8D0 = .text:0x8044F8D0; // type:function size:0x8 +fn_8044F8D8 = .text:0x8044F8D8; // type:function size:0x8 +fn_8044F8E0 = .text:0x8044F8E0; // type:function size:0x8 +fn_8044F8E8 = .text:0x8044F8E8; // type:function size:0x8 +fn_8044F8F0 = .text:0x8044F8F0; // type:function size:0x8 +fn_8044F8F8 = .text:0x8044F8F8; // type:function size:0x8 +fn_8044F900 = .text:0x8044F900; // type:function size:0x8 +fn_8044F908 = .text:0x8044F908; // type:function size:0x8 +fn_8044F910 = .text:0x8044F910; // type:function size:0x8 +fn_8044F918 = .text:0x8044F918; // type:function size:0x8 +fn_8044F920 = .text:0x8044F920; // type:function size:0x14 +fn_8044F934 = .text:0x8044F934; // type:function size:0x14 +fn_8044F948 = .text:0x8044F948; // type:function size:0x8 +fn_8044F950 = .text:0x8044F950; // type:function size:0x8 +fn_8044F958 = .text:0x8044F958; // type:function size:0x8 +fn_8044F960 = .text:0x8044F960; // type:function size:0x8 +fn_8044F968 = .text:0x8044F968; // type:function size:0x8 +fn_8044F970 = .text:0x8044F970; // type:function size:0x8 +fn_8044F978 = .text:0x8044F978; // type:function size:0x8 +fn_8044F980 = .text:0x8044F980; // type:function size:0x8 +fn_8044F988 = .text:0x8044F988; // type:function size:0x8 +fn_8044F990 = .text:0x8044F990; // type:function size:0x8 +fn_8044F998 = .text:0x8044F998; // type:function size:0x8 +fn_8044F9A0 = .text:0x8044F9A0; // type:function size:0x14 +fn_8044F9B4 = .text:0x8044F9B4; // type:function size:0x14 +fn_8044F9C8 = .text:0x8044F9C8; // type:function size:0x14 +fn_8044F9DC = .text:0x8044F9DC; // type:function size:0x14 +fn_8044F9F0 = .text:0x8044F9F0; // type:function size:0x14 +fn_8044FA04 = .text:0x8044FA04; // type:function size:0x14 +fn_8044FA18 = .text:0x8044FA18; // type:function size:0x14 +fn_8044FA2C = .text:0x8044FA2C; // type:function size:0x14 +fn_8044FA40 = .text:0x8044FA40; // type:function size:0x14 +fn_8044FA54 = .text:0x8044FA54; // type:function size:0x14 +fn_8044FA68 = .text:0x8044FA68; // type:function size:0x14 +fn_8044FA7C = .text:0x8044FA7C; // type:function size:0x14 +fn_8044FA90 = .text:0x8044FA90; // type:function size:0x14 +fn_8044FAA4 = .text:0x8044FAA4; // type:function size:0x14 +fn_8044FAB8 = .text:0x8044FAB8; // type:function size:0x14 +fn_8044FACC = .text:0x8044FACC; // type:function size:0x8 +fn_8044FAD4 = .text:0x8044FAD4; // type:function size:0x8 +fn_8044FADC = .text:0x8044FADC; // type:function size:0x8 +fn_8044FAE4 = .text:0x8044FAE4; // type:function size:0x8 +fn_8044FAEC = .text:0x8044FAEC; // type:function size:0x8 +__ct__21SongSectionControllerFv = .text:0x8044FAF4; // type:function size:0x16C +fn_8044FC60 = .text:0x8044FC60; // type:function size:0x58 +fn_8044FCB8 = .text:0x8044FCB8; // type:function size:0x58 +fn_8044FD10 = .text:0x8044FD10; // type:function size:0x58 +fn_8044FD68 = .text:0x8044FD68; // type:function size:0x60 +fn_8044FDC8 = .text:0x8044FDC8; // type:function size:0x58 +fn_8044FE20 = .text:0x8044FE20; // type:function size:0x80 +fn_8044FEA0 = .text:0x8044FEA0; // type:function size:0x58 +fn_8044FEF8 = .text:0x8044FEF8; // type:function size:0x58 +fn_8044FF50 = .text:0x8044FF50; // type:function size:0x58 +fn_8044FFA8 = .text:0x8044FFA8; // type:function size:0x60 +fn_80450008 = .text:0x80450008; // type:function size:0x58 +fn_80450060 = .text:0x80450060; // type:function size:0x50 +fn_804500B0 = .text:0x804500B0; // type:function size:0x30 +fn_804500E0 = .text:0x804500E0; // type:function size:0x30 +fn_80450110 = .text:0x80450110; // type:function size:0x60 +fn_80450170 = .text:0x80450170; // type:function size:0x68 +fn_804501D8 = .text:0x804501D8; // type:function size:0x50 +fn_80450228 = .text:0x80450228; // type:function size:0x30 +fn_80450258 = .text:0x80450258; // type:function size:0x30 +fn_80450288 = .text:0x80450288; // type:function size:0x60 +fn_804502E8 = .text:0x804502E8; // type:function size:0xC8 +fn_804503B0 = .text:0x804503B0; // type:function size:0x40 +fn_804503F0 = .text:0x804503F0; // type:function size:0x2C +fn_8045041C = .text:0x8045041C; // type:function size:0x44 +fn_80450460 = .text:0x80450460; // type:function size:0x30 +fn_80450490 = .text:0x80450490; // type:function size:0x4 +fn_80450494 = .text:0x80450494; // type:function size:0xF8 +fn_8045058C = .text:0x8045058C; // type:function size:0x5C +fn_804505E8 = .text:0x804505E8; // type:function size:0x3C +fn_80450624 = .text:0x80450624; // type:function size:0x11C +fn_80450740 = .text:0x80450740; // type:function size:0x4C +fn_8045078C = .text:0x8045078C; // type:function size:0x78 +fn_80450804 = .text:0x80450804; // type:function size:0xE8 +fn_804508EC = .text:0x804508EC; // type:function size:0x40 +fn_8045092C = .text:0x8045092C; // type:function size:0x44 +fn_80450970 = .text:0x80450970; // type:function size:0x54 +fn_804509C4 = .text:0x804509C4; // type:function size:0xF0 +fn_80450AB4 = .text:0x80450AB4; // type:function size:0xD4 +fn_80450B88 = .text:0x80450B88; // type:function size:0xAC +fn_80450C34 = .text:0x80450C34; // type:function size:0x4 +fn_80450C38 = .text:0x80450C38; // type:function size:0x4 +fn_80450C3C = .text:0x80450C3C; // type:function size:0x34 +fn_80450C70 = .text:0x80450C70; // type:function size:0x4 +fn_80450C74 = .text:0x80450C74; // type:function size:0x8 +fn_80450C7C = .text:0x80450C7C; // type:function size:0x5C +fn_80450CD8 = .text:0x80450CD8; // type:function size:0x68 +fn_80450D40 = .text:0x80450D40; // type:function size:0x4 +fn_80450D44 = .text:0x80450D44; // type:function size:0x60 +fn_80450DA4 = .text:0x80450DA4; // type:function size:0x40 +fn_80450DE4 = .text:0x80450DE4; // type:function size:0x104 +fn_80450EE8 = .text:0x80450EE8; // type:function size:0xAC +fn_80450F94 = .text:0x80450F94; // type:function size:0x4 +fn_80450F98 = .text:0x80450F98; // type:function size:0x4 +fn_80450F9C = .text:0x80450F9C; // type:function size:0x34 +fn_80450FD0 = .text:0x80450FD0; // type:function size:0x4 +fn_80450FD4 = .text:0x80450FD4; // type:function size:0x8 +fn_80450FDC = .text:0x80450FDC; // type:function size:0x5C +fn_80451038 = .text:0x80451038; // type:function size:0x5C +fn_80451094 = .text:0x80451094; // type:function size:0x6C +fn_80451100 = .text:0x80451100; // type:function size:0x4 +fn_80451104 = .text:0x80451104; // type:function size:0x5C +fn_80451160 = .text:0x80451160; // type:function size:0x68 +fn_804511C8 = .text:0x804511C8; // type:function size:0xEC +fn_804512B4 = .text:0x804512B4; // type:function size:0x5C +fn_80451310 = .text:0x80451310; // type:function size:0x30 +fn_80451340 = .text:0x80451340; // type:function size:0x4C +fn_8045138C = .text:0x8045138C; // type:function size:0x70 +fn_804513FC = .text:0x804513FC; // type:function size:0x30 +fn_8045142C = .text:0x8045142C; // type:function size:0x2C +fn_80451458 = .text:0x80451458; // type:function size:0x8 +fn_80451460 = .text:0x80451460; // type:function size:0x5C +fn_804514BC = .text:0x804514BC; // type:function size:0x30 +fn_804514EC = .text:0x804514EC; // type:function size:0x4C +fn_80451538 = .text:0x80451538; // type:function size:0x70 +fn_804515A8 = .text:0x804515A8; // type:function size:0x30 +fn_804515D8 = .text:0x804515D8; // type:function size:0x2C +fn_80451604 = .text:0x80451604; // type:function size:0x3C +fn_80451640 = .text:0x80451640; // type:function size:0x60 +fn_804516A0 = .text:0x804516A0; // type:function size:0x1C8 +fn_80451868 = .text:0x80451868; // type:function size:0x2C +fn_80451894 = .text:0x80451894; // type:function size:0x44 +fn_804518D8 = .text:0x804518D8; // type:function size:0x30 +fn_80451908 = .text:0x80451908; // type:function size:0x10 +fn_80451918 = .text:0x80451918; // type:function size:0x4 +fn_8045191C = .text:0x8045191C; // type:function size:0xAC +fn_804519C8 = .text:0x804519C8; // type:function size:0x74 +fn_80451A3C = .text:0x80451A3C; // type:function size:0x54 +fn_80451A90 = .text:0x80451A90; // type:function size:0x3C0 +fn_80451E50 = .text:0x80451E50; // type:function size:0x1C4 +fn_80452014 = .text:0x80452014; // type:function size:0x40 +fn_80452054 = .text:0x80452054; // type:function size:0x98 +fn_804520EC = .text:0x804520EC; // type:function size:0x20C +fn_804522F8 = .text:0x804522F8; // type:function size:0xBC +fn_804523B4 = .text:0x804523B4; // type:function size:0xB4 +fn_80452468 = .text:0x80452468; // type:function size:0x114 +fn_8045257C = .text:0x8045257C; // type:function size:0x114 +fn_80452690 = .text:0x80452690; // type:function size:0x1E8 +fn_80452878 = .text:0x80452878; // type:function size:0x70 +fn_804528E8 = .text:0x804528E8; // type:function size:0xBC +SyncProperty__21SongSectionControllerFR8DataNodeP9DataArrayi6PropOp = .text:0x804529A4; // type:function size:0x358 +fn_80452CFC = .text:0x80452CFC; // type:function size:0x1A8 +fn_80452EA4 = .text:0x80452EA4; // type:function size:0x58 +fn_80452EFC = .text:0x80452EFC; // type:function size:0x64 +fn_80452F60 = .text:0x80452F60; // type:function size:0x50 +fn_80452FB0 = .text:0x80452FB0; // type:function size:0x10 +fn_80452FC0 = .text:0x80452FC0; // type:function size:0x54 +fn_80453014 = .text:0x80453014; // type:function size:0x30 +fn_80453044 = .text:0x80453044; // type:function size:0x90 +fn_804530D4 = .text:0x804530D4; // type:function size:0x60 +fn_80453134 = .text:0x80453134; // type:function size:0x90 +fn_804531C4 = .text:0x804531C4; // type:function size:0x50 +fn_80453214 = .text:0x80453214; // type:function size:0x6C +fn_80453280 = .text:0x80453280; // type:function size:0x2C +fn_804532AC = .text:0x804532AC; // type:function size:0x8 +fn_804532B4 = .text:0x804532B4; // type:function size:0x5C +fn_80453310 = .text:0x80453310; // type:function size:0xCC +fn_804533DC = .text:0x804533DC; // type:function size:0x1A8 +fn_80453584 = .text:0x80453584; // type:function size:0x58 +fn_804535DC = .text:0x804535DC; // type:function size:0x64 +fn_80453640 = .text:0x80453640; // type:function size:0x50 +fn_80453690 = .text:0x80453690; // type:function size:0x10 +fn_804536A0 = .text:0x804536A0; // type:function size:0x58 +fn_804536F8 = .text:0x804536F8; // type:function size:0x94 +fn_8045378C = .text:0x8045378C; // type:function size:0x50 +fn_804537DC = .text:0x804537DC; // type:function size:0x6C +fn_80453848 = .text:0x80453848; // type:function size:0x2C +fn_80453874 = .text:0x80453874; // type:function size:0x8 +fn_8045387C = .text:0x8045387C; // type:function size:0x5C +fn_804538D8 = .text:0x804538D8; // type:function size:0x4C +fn_80453924 = .text:0x80453924; // type:function size:0x174 +fn_80453A98 = .text:0x80453A98; // type:function size:0x50 +fn_80453AE8 = .text:0x80453AE8; // type:function size:0xD0 +fn_80453BB8 = .text:0x80453BB8; // type:function size:0x78 +fn_80453C30 = .text:0x80453C30; // type:function size:0xF0 +fn_80453D20 = .text:0x80453D20; // type:function size:0x48 +fn_80453D68 = .text:0x80453D68; // type:function size:0x5C +fn_80453DC4 = .text:0x80453DC4; // type:function size:0xB8 +fn_80453E7C = .text:0x80453E7C; // type:function size:0x34 +fn_80453EB0 = .text:0x80453EB0; // type:function size:0x3C +fn_80453EEC = .text:0x80453EEC; // type:function size:0x34 +fn_80453F20 = .text:0x80453F20; // type:function size:0x3C +fn_80453F5C = .text:0x80453F5C; // type:function size:0xD4 +Handle__21SongSectionControllerFP9DataArrayb = .text:0x80454030; // type:function size:0x3F4 +fn_80454424 = .text:0x80454424; // type:function size:0x10C +fn_80454530 = .text:0x80454530; // type:function size:0x6C +fn_8045459C = .text:0x8045459C; // type:function size:0x68 +fn_80454604 = .text:0x80454604; // type:function size:0x68 +fn_8045466C = .text:0x8045466C; // type:function size:0x194 +fn_80454800 = .text:0x80454800; // type:function size:0x60 +fn_80454860 = .text:0x80454860; // type:function size:0xA0 +fn_80454900 = .text:0x80454900; // type:function size:0x6C +fn_8045496C = .text:0x8045496C; // type:function size:0x74 +fn_804549E0 = .text:0x804549E0; // type:function size:0x60 +fn_80454A40 = .text:0x80454A40; // type:function size:0x90 +fn_80454AD0 = .text:0x80454AD0; // type:function size:0x8C +fn_80454B5C = .text:0x80454B5C; // type:function size:0x58 +fn_80454BB4 = .text:0x80454BB4; // type:function size:0x30 +fn_80454BE4 = .text:0x80454BE4; // type:function size:0xE4 +fn_80454CC8 = .text:0x80454CC8; // type:function size:0x54 +fn_80454D1C = .text:0x80454D1C; // type:function size:0x6C +fn_80454D88 = .text:0x80454D88; // type:function size:0x194 +fn_80454F1C = .text:0x80454F1C; // type:function size:0x60 +fn_80454F7C = .text:0x80454F7C; // type:function size:0xA0 +fn_8045501C = .text:0x8045501C; // type:function size:0x6C +fn_80455088 = .text:0x80455088; // type:function size:0x74 +fn_804550FC = .text:0x804550FC; // type:function size:0x60 +fn_8045515C = .text:0x8045515C; // type:function size:0x90 +fn_804551EC = .text:0x804551EC; // type:function size:0x8C +fn_80455278 = .text:0x80455278; // type:function size:0x40 +fn_804552B8 = .text:0x804552B8; // type:function size:0xE4 +fn_8045539C = .text:0x8045539C; // type:function size:0x54 +fn_804553F0 = .text:0x804553F0; // type:function size:0x6C +SetType__21SongSectionControllerF6Symbol = .text:0x8045545C; // type:function size:0x134 +ClassName__21SongSectionControllerCFv = .text:0x80455590; // type:function size:0x4 +fn_80455594 = .text:0x80455594; // type:function size:0x194 +fn_80455728 = .text:0x80455728; // type:function size:0x60 +fn_80455788 = .text:0x80455788; // type:function size:0xA0 +fn_80455828 = .text:0x80455828; // type:function size:0x74 +fn_8045589C = .text:0x8045589C; // type:function size:0x14 +fn_804558B0 = .text:0x804558B0; // type:function size:0x14 +fn_804558C4 = .text:0x804558C4; // type:function size:0x14 +fn_804558D8 = .text:0x804558D8; // type:function size:0x14 +fn_804558EC = .text:0x804558EC; // type:function size:0x14 +fn_80455900 = .text:0x80455900; // type:function size:0x14 +fn_80455914 = .text:0x80455914; // type:function size:0x14 +fn_80455928 = .text:0x80455928; // type:function size:0x14 +__ct__12OvershellDirFv = .text:0x8045593C; // type:function size:0x15C +fn_80455A98 = .text:0x80455A98; // type:function size:0x4 +fn_80455A9C = .text:0x80455A9C; // type:function size:0x88 +fn_80455B24 = .text:0x80455B24; // type:function size:0x58 +fn_80455B7C = .text:0x80455B7C; // type:function size:0x4 +fn_80455B80 = .text:0x80455B80; // type:function size:0x70 +fn_80455BF0 = .text:0x80455BF0; // type:function size:0x50 +fn_80455C40 = .text:0x80455C40; // type:function size:0xD0 +fn_80455D10 = .text:0x80455D10; // type:function size:0x78 +fn_80455D88 = .text:0x80455D88; // type:function size:0x84 +fn_80455E0C = .text:0x80455E0C; // type:function size:0x20C +fn_80456018 = .text:0x80456018; // type:function size:0x1C8 +fn_804561E0 = .text:0x804561E0; // type:function size:0x8 +fn_804561E8 = .text:0x804561E8; // type:function size:0x8 +fn_804561F0 = .text:0x804561F0; // type:function size:0x240 +fn_80456430 = .text:0x80456430; // type:function size:0xA8 +fn_804564D8 = .text:0x804564D8; // type:function size:0x134 +fn_8045660C = .text:0x8045660C; // type:function size:0x4 +fn_80456610 = .text:0x80456610; // type:function size:0x8 +fn_80456618 = .text:0x80456618; // type:function size:0x8 +fn_80456620 = .text:0x80456620; // type:function size:0x8 +fn_80456628 = .text:0x80456628; // type:function size:0x8 +fn_80456630 = .text:0x80456630; // type:function size:0x8 +fn_80456638 = .text:0x80456638; // type:function size:0x8 +fn_80456640 = .text:0x80456640; // type:function size:0x8 +fn_80456648 = .text:0x80456648; // type:function size:0x8 +fn_80456650 = .text:0x80456650; // type:function size:0x8 +fn_80456658 = .text:0x80456658; // type:function size:0x8 +fn_80456660 = .text:0x80456660; // type:function size:0x8 +fn_80456668 = .text:0x80456668; // type:function size:0x8 +fn_80456670 = .text:0x80456670; // type:function size:0x8 +fn_80456678 = .text:0x80456678; // type:function size:0x8 +fn_80456680 = .text:0x80456680; // type:function size:0x14 +fn_80456694 = .text:0x80456694; // type:function size:0x8 +fn_8045669C = .text:0x8045669C; // type:function size:0x8 +fn_804566A4 = .text:0x804566A4; // type:function size:0x8 +fn_804566AC = .text:0x804566AC; // type:function size:0x8 +fn_804566B4 = .text:0x804566B4; // type:function size:0x8 +fn_804566BC = .text:0x804566BC; // type:function size:0x8 +fn_804566C4 = .text:0x804566C4; // type:function size:0x8 +fn_804566CC = .text:0x804566CC; // type:function size:0x8 +fn_804566D4 = .text:0x804566D4; // type:function size:0x8 +fn_804566DC = .text:0x804566DC; // type:function size:0x8 +fn_804566E4 = .text:0x804566E4; // type:function size:0x8 +fn_804566EC = .text:0x804566EC; // type:function size:0x14 +fn_80456700 = .text:0x80456700; // type:function size:0x14 +fn_80456714 = .text:0x80456714; // type:function size:0x14 +fn_80456728 = .text:0x80456728; // type:function size:0x14 +fn_8045673C = .text:0x8045673C; // type:function size:0x14 +fn_80456750 = .text:0x80456750; // type:function size:0x14 +fn_80456764 = .text:0x80456764; // type:function size:0x14 +fn_80456778 = .text:0x80456778; // type:function size:0x14 +fn_8045678C = .text:0x8045678C; // type:function size:0x14 +fn_804567A0 = .text:0x804567A0; // type:function size:0x8 +fn_804567A8 = .text:0x804567A8; // type:function size:0x8 +fn_804567B0 = .text:0x804567B0; // type:function size:0x8 +fn_804567B8 = .text:0x804567B8; // type:function size:0x8 +fn_804567C0 = .text:0x804567C0; // type:function size:0x8 +fn_804567C8 = .text:0x804567C8; // type:function size:0x88 +fn_80456850 = .text:0x80456850; // type:function size:0x58 +fn_804568A8 = .text:0x804568A8; // type:function size:0x44 +fn_804568EC = .text:0x804568EC; // type:function size:0x50 +fn_8045693C = .text:0x8045693C; // type:function size:0x4 +fn_80456940 = .text:0x80456940; // type:function size:0x3C4 +fn_80456D04 = .text:0x80456D04; // type:function size:0x14 +fn_80456D18 = .text:0x80456D18; // type:function size:0xEC +fn_80456E04 = .text:0x80456E04; // type:function size:0xC4 +fn_80456EC8 = .text:0x80456EC8; // type:function size:0xB0 +fn_80456F78 = .text:0x80456F78; // type:function size:0x10 +fn_80456F88 = .text:0x80456F88; // type:function size:0x58 +fn_80456FE0 = .text:0x80456FE0; // type:function size:0x14 +fn_80456FF4 = .text:0x80456FF4; // type:function size:0x50 +fn_80457044 = .text:0x80457044; // type:function size:0x24 +fn_80457068 = .text:0x80457068; // type:function size:0x188 +fn_804571F0 = .text:0x804571F0; // type:function size:0x90 +fn_80457280 = .text:0x80457280; // type:function size:0x280 +fn_80457500 = .text:0x80457500; // type:function size:0x120 +fn_80457620 = .text:0x80457620; // type:function size:0x70 +fn_80457690 = .text:0x80457690; // type:function size:0x78 +fn_80457708 = .text:0x80457708; // type:function size:0x104 +fn_8045780C = .text:0x8045780C; // type:function size:0x4C +__ct__10BeatMasterFP8SongDatai = .text:0x80457858; // type:function size:0x1F8 +__ct__8HxMasterFv = .text:0x80457A50; // type:function size:0x10 +__dt__10BeatMasterFv = .text:0x80457A60; // type:function size:0xF8 +fn_80457B58 = .text:0x80457B58; // type:function size:0x58 +fn_80457BB0 = .text:0x80457BB0; // type:function size:0x8 +fn_80457BB8 = .text:0x80457BB8; // type:function size:0x174 +fn_80457D2C = .text:0x80457D2C; // type:function size:0x70 +fn_80457D9C = .text:0x80457D9C; // type:function size:0x78 +fn_80457E14 = .text:0x80457E14; // type:function size:0x44 +fn_80457E58 = .text:0x80457E58; // type:function size:0x3C +fn_80457E94 = .text:0x80457E94; // type:function size:0xDC +fn_80457F70 = .text:0x80457F70; // type:function size:0x100 +fn_80458070 = .text:0x80458070; // type:function size:0x5C +fn_804580CC = .text:0x804580CC; // type:function size:0x54 +fn_80458120 = .text:0x80458120; // type:function size:0x68 +fn_80458188 = .text:0x80458188; // type:function size:0x40 +fn_804581C8 = .text:0x804581C8; // type:function size:0x70 +fn_80458238 = .text:0x80458238; // type:function size:0x14 +fn_8045824C = .text:0x8045824C; // type:function size:0x10 +fn_8045825C = .text:0x8045825C; // type:function size:0x188 +fn_804583E4 = .text:0x804583E4; // type:function size:0x24 +fn_80458408 = .text:0x80458408; // type:function size:0x1C +fn_80458424 = .text:0x80458424; // type:function size:0x68 +fn_8045848C = .text:0x8045848C; // type:function size:0x20 +fn_804584AC = .text:0x804584AC; // type:function size:0x20 +fn_804584CC = .text:0x804584CC; // type:function size:0xF0 +fn_804585BC = .text:0x804585BC; // type:function size:0x4C +fn_80458608 = .text:0x80458608; // type:function size:0x10 +fn_80458618 = .text:0x80458618; // type:function size:0x108 +fn_80458720 = .text:0x80458720; // type:function size:0x10 +fn_80458730 = .text:0x80458730; // type:function size:0x100 +fn_80458830 = .text:0x80458830; // type:function size:0xE4 +Reset__10BeatMasterFv = .text:0x80458914; // type:function size:0xE0 +ResetAudio__10BeatMasterFv = .text:0x804589F4; // type:function size:0x64 +CheckBeat__10BeatMasterFv = .text:0x80458A58; // type:function size:0x26C +fn_80458CC4 = .text:0x80458CC4; // type:function size:0xC4 +fn_80458D88 = .text:0x80458D88; // type:function size:0x104 +HandleBeatCallback__10BeatMasterF6Symbol = .text:0x80458E8C; // type:function size:0x6C +fn_80458EF8 = .text:0x80458EF8; // type:function size:0x14 +fn_80458F0C = .text:0x80458F0C; // type:function size:0x8 +fn_80458F14 = .text:0x80458F14; // type:function size:0xC +fn_80458F20 = .text:0x80458F20; // type:function size:0x8 +fn_80458F28 = .text:0x80458F28; // type:function size:0x8 +fn_80458F30 = .text:0x80458F30; // type:function size:0x8 +fn_80458F38 = .text:0x80458F38; // type:function size:0x8 +fn_80458F40 = .text:0x80458F40; // type:function size:0x8 +fn_80458F48 = .text:0x80458F48; // type:function size:0x8 +fn_80458F50 = .text:0x80458F50; // type:function size:0x4 +__ct__19BeatMatchControllerFP4UserPC9DataArrayb = .text:0x80458F54; // type:function size:0xF8 +NewController__FP4UserPC9DataArrayP23BeatMatchControllerSinkbb = .text:0x8045904C; // type:function size:0x2A0 +fn_804592EC = .text:0x804592EC; // type:function size:0x8C +fn_80459378 = .text:0x80459378; // type:function size:0x70 +fn_804593E8 = .text:0x804593E8; // type:function size:0x8C +fn_80459474 = .text:0x80459474; // type:function size:0x8 +fn_8045947C = .text:0x8045947C; // type:function size:0x8 +fn_80459484 = .text:0x80459484; // type:function size:0x20 +fn_804594A4 = .text:0x804594A4; // type:function size:0x20 +fn_804594C4 = .text:0x804594C4; // type:function size:0x20 +fn_804594E4 = .text:0x804594E4; // type:function size:0x20 +fn_80459504 = .text:0x80459504; // type:function size:0x88 +fn_8045958C = .text:0x8045958C; // type:function size:0x28 +fn_804595B4 = .text:0x804595B4; // type:function size:0x54 +fn_80459608 = .text:0x80459608; // type:function size:0x3C +fn_80459644 = .text:0x80459644; // type:function size:0xB4 +fn_804596F8 = .text:0x804596F8; // type:function size:0x50 +fn_80459748 = .text:0x80459748; // type:function size:0x150 +__ct__11BeatMatcherFRC8UserGuidii6SymbolP8SongDataP9DataArrayP9DataArrayP10BeatMaster = .text:0x80459898; // type:function size:0x1DC +__ct__18TrackWatcherParentFv = .text:0x80459A74; // type:function size:0x10 +fn_80459A84 = .text:0x80459A84; // type:function size:0x84 +fn_80459B08 = .text:0x80459B08; // type:function size:0x14 +__dt__11BeatMatcherFv = .text:0x80459B1C; // type:function size:0xD8 +fn_80459BF4 = .text:0x80459BF4; // type:function size:0x4 +fn_80459BF8 = .text:0x80459BF8; // type:function size:0x74 +fn_80459C6C = .text:0x80459C6C; // type:function size:0x7C +fn_80459CE8 = .text:0x80459CE8; // type:function size:0x48 +fn_80459D30 = .text:0x80459D30; // type:function size:0x8 +fn_80459D38 = .text:0x80459D38; // type:function size:0x74 +fn_80459DAC = .text:0x80459DAC; // type:function size:0xAC +fn_80459E58 = .text:0x80459E58; // type:function size:0x8 +fn_80459E60 = .text:0x80459E60; // type:function size:0x48 +fn_80459EA8 = .text:0x80459EA8; // type:function size:0xD8 +fn_80459F80 = .text:0x80459F80; // type:function size:0x7C +fn_80459FFC = .text:0x80459FFC; // type:function size:0x8 +fn_8045A004 = .text:0x8045A004; // type:function size:0x80 +fn_8045A084 = .text:0x8045A084; // type:function size:0xD0 +fn_8045A154 = .text:0x8045A154; // type:function size:0x290 +fn_8045A3E4 = .text:0x8045A3E4; // type:function size:0xC +fn_8045A3F0 = .text:0x8045A3F0; // type:function size:0x14 +fn_8045A404 = .text:0x8045A404; // type:function size:0xD0 +fn_8045A4D4 = .text:0x8045A4D4; // type:function size:0xB4 +fn_8045A588 = .text:0x8045A588; // type:function size:0x70 +fn_8045A5F8 = .text:0x8045A5F8; // type:function size:0x98 +fn_8045A690 = .text:0x8045A690; // type:function size:0x54 +fn_8045A6E4 = .text:0x8045A6E4; // type:function size:0x4 +fn_8045A6E8 = .text:0x8045A6E8; // type:function size:0x4 +fn_8045A6EC = .text:0x8045A6EC; // type:function size:0x4 +fn_8045A6F0 = .text:0x8045A6F0; // type:function size:0x15C +fn_8045A84C = .text:0x8045A84C; // type:function size:0x20 +fn_8045A86C = .text:0x8045A86C; // type:function size:0x14 +fn_8045A880 = .text:0x8045A880; // type:function size:0x14 +fn_8045A894 = .text:0x8045A894; // type:function size:0x20 +fn_8045A8B4 = .text:0x8045A8B4; // type:function size:0x10 +fn_8045A8C4 = .text:0x8045A8C4; // type:function size:0x2C +fn_8045A8F0 = .text:0x8045A8F0; // type:function size:0x2C +fn_8045A91C = .text:0x8045A91C; // type:function size:0x54 +fn_8045A970 = .text:0x8045A970; // type:function size:0x28 +fn_8045A998 = .text:0x8045A998; // type:function size:0x8 +fn_8045A9A0 = .text:0x8045A9A0; // type:function size:0xC +fn_8045A9AC = .text:0x8045A9AC; // type:function size:0x8 +fn_8045A9B4 = .text:0x8045A9B4; // type:function size:0x8 +fn_8045A9BC = .text:0x8045A9BC; // type:function size:0x14 +fn_8045A9D0 = .text:0x8045A9D0; // type:function size:0x8 +fn_8045A9D8 = .text:0x8045A9D8; // type:function size:0x8 +fn_8045A9E0 = .text:0x8045A9E0; // type:function size:0xBC +fn_8045AA9C = .text:0x8045AA9C; // type:function size:0x80 +fn_8045AB1C = .text:0x8045AB1C; // type:function size:0x40 +fn_8045AB5C = .text:0x8045AB5C; // type:function size:0xF8 +fn_8045AC54 = .text:0x8045AC54; // type:function size:0x44 +fn_8045AC98 = .text:0x8045AC98; // type:function size:0x20 +fn_8045ACB8 = .text:0x8045ACB8; // type:function size:0x7C +fn_8045AD34 = .text:0x8045AD34; // type:function size:0x8 +fn_8045AD3C = .text:0x8045AD3C; // type:function size:0x8 +fn_8045AD44 = .text:0x8045AD44; // type:function size:0x70 +fn_8045ADB4 = .text:0x8045ADB4; // type:function size:0x5C +fn_8045AE10 = .text:0x8045AE10; // type:function size:0x1C +fn_8045AE2C = .text:0x8045AE2C; // type:function size:0x48 +fn_8045AE74 = .text:0x8045AE74; // type:function size:0xBC +fn_8045AF30 = .text:0x8045AF30; // type:function size:0x40 +fn_8045AF70 = .text:0x8045AF70; // type:function size:0xE8 +fn_8045B058 = .text:0x8045B058; // type:function size:0x8 +fn_8045B060 = .text:0x8045B060; // type:function size:0xA4 +fn_8045B104 = .text:0x8045B104; // type:function size:0x8 +fn_8045B10C = .text:0x8045B10C; // type:function size:0x8 +fn_8045B114 = .text:0x8045B114; // type:function size:0x68 +fn_8045B17C = .text:0x8045B17C; // type:function size:0x1C +fn_8045B198 = .text:0x8045B198; // type:function size:0x64 +fn_8045B1FC = .text:0x8045B1FC; // type:function size:0x54 +fn_8045B250 = .text:0x8045B250; // type:function size:0x8 +fn_8045B258 = .text:0x8045B258; // type:function size:0x8 +fn_8045B260 = .text:0x8045B260; // type:function size:0x8 +fn_8045B268 = .text:0x8045B268; // type:function size:0x8 +fn_8045B270 = .text:0x8045B270; // type:function size:0x74 +fn_8045B2E4 = .text:0x8045B2E4; // type:function size:0x64 +fn_8045B348 = .text:0x8045B348; // type:function size:0x8 +fn_8045B350 = .text:0x8045B350; // type:function size:0x8 +fn_8045B358 = .text:0x8045B358; // type:function size:0x8 +fn_8045B360 = .text:0x8045B360; // type:function size:0x8 +fn_8045B368 = .text:0x8045B368; // type:function size:0x8 +fn_8045B370 = .text:0x8045B370; // type:function size:0x8 +fn_8045B378 = .text:0x8045B378; // type:function size:0x8 +fn_8045B380 = .text:0x8045B380; // type:function size:0x8 +fn_8045B388 = .text:0x8045B388; // type:function size:0x8 +fn_8045B390 = .text:0x8045B390; // type:function size:0x8 +fn_8045B398 = .text:0x8045B398; // type:function size:0x8 +fn_8045B3A0 = .text:0x8045B3A0; // type:function size:0x8 +fn_8045B3A8 = .text:0x8045B3A8; // type:function size:0x8 +fn_8045B3B0 = .text:0x8045B3B0; // type:function size:0x8 +__ct__22ButtonGuitarControllerFP4UserPC9DataArrayP23BeatMatchControllerSinkbb = .text:0x8045B3B8; // type:function size:0x74 +fn_8045B42C = .text:0x8045B42C; // type:function size:0x58 +fn_8045B484 = .text:0x8045B484; // type:function size:0x4 +fn_8045B488 = .text:0x8045B488; // type:function size:0x8 +fn_8045B490 = .text:0x8045B490; // type:function size:0x8 +fn_8045B498 = .text:0x8045B498; // type:function size:0xC +fn_8045B4A4 = .text:0x8045B4A4; // type:function size:0x8 +fn_8045B4AC = .text:0x8045B4AC; // type:function size:0x8 +fn_8045B4B4 = .text:0x8045B4B4; // type:function size:0x4 +OnMsg__22ButtonGuitarControllerFRC10RGSwingMsg = .text:0x8045B4B8; // type:function size:0x108 +OnMsg__22ButtonGuitarControllerFRC13ButtonDownMsg = .text:0x8045B5C0; // type:function size:0xD8 +OnMsg__22ButtonGuitarControllerFRC11ButtonUpMsg = .text:0x8045B698; // type:function size:0xD8 +OnMsg__22ButtonGuitarControllerFRC19RGFretButtonDownMsg = .text:0x8045B770; // type:function size:0x168 +OnMsg__22ButtonGuitarControllerFRC17RGFretButtonUpMsg = .text:0x8045B8D8; // type:function size:0x130 +OnMsg__22ButtonGuitarControllerFRC18RGAccelerometerMsg = .text:0x8045BA08; // type:function size:0xF8 +fn_8045BB00 = .text:0x8045BB00; // type:function size:0x34 +Handle__22ButtonGuitarControllerFP9DataArrayb = .text:0x8045BB34; // type:function size:0x480 +__ct__18RGAccelerometerMsgFP9DataArray = .text:0x8045BFB4; // type:function size:0x3C +__ct__17RGFretButtonUpMsgFP9DataArray = .text:0x8045BFF0; // type:function size:0x3C +__ct__19RGFretButtonDownMsgFP9DataArray = .text:0x8045C02C; // type:function size:0x3C +__ct__10RGSwingMsgFP9DataArray = .text:0x8045C068; // type:function size:0x3C +__ct__16StringStoppedMsgFP9DataArray = .text:0x8045C0A4; // type:function size:0x3C +__ct__17StringStrummedMsgFP9DataArray = .text:0x8045C0E0; // type:function size:0x3C +fn_8045C11C = .text:0x8045C11C; // type:function size:0x60 +fn_8045C17C = .text:0x8045C17C; // type:function size:0x58 +fn_8045C1D4 = .text:0x8045C1D4; // type:function size:0x18 +fn_8045C1EC = .text:0x8045C1EC; // type:function size:0x1E0 +fn_8045C3CC = .text:0x8045C3CC; // type:function size:0x7C +fn_8045C448 = .text:0x8045C448; // type:function size:0x88 +fn_8045C4D0 = .text:0x8045C4D0; // type:function size:0x10 +fn_8045C4E0 = .text:0x8045C4E0; // type:function size:0x54 +fn_8045C534 = .text:0x8045C534; // type:function size:0x58 +fn_8045C58C = .text:0x8045C58C; // type:function size:0x68 +fn_8045C5F4 = .text:0x8045C5F4; // type:function size:0x58 +fn_8045C64C = .text:0x8045C64C; // type:function size:0x58 +fn_8045C6A4 = .text:0x8045C6A4; // type:function size:0x80 +fn_8045C724 = .text:0x8045C724; // type:function size:0x80 +fn_8045C7A4 = .text:0x8045C7A4; // type:function size:0x58 +fn_8045C7FC = .text:0x8045C7FC; // type:function size:0x54 +fn_8045C850 = .text:0x8045C850; // type:function size:0x5C +fn_8045C8AC = .text:0x8045C8AC; // type:function size:0x6C +fn_8045C918 = .text:0x8045C918; // type:function size:0x28 +fn_8045C940 = .text:0x8045C940; // type:function size:0x8 +fn_8045C948 = .text:0x8045C948; // type:function size:0x3C +fn_8045C984 = .text:0x8045C984; // type:function size:0x58 +fn_8045C9DC = .text:0x8045C9DC; // type:function size:0x80 +fn_8045CA5C = .text:0x8045CA5C; // type:function size:0x80 +fn_8045CADC = .text:0x8045CADC; // type:function size:0x58 +fn_8045CB34 = .text:0x8045CB34; // type:function size:0x54 +fn_8045CB88 = .text:0x8045CB88; // type:function size:0x5C +fn_8045CBE4 = .text:0x8045CBE4; // type:function size:0x6C +fn_8045CC50 = .text:0x8045CC50; // type:function size:0x28 +fn_8045CC78 = .text:0x8045CC78; // type:function size:0x8 +fn_8045CC80 = .text:0x8045CC80; // type:function size:0x3C +fn_8045CCBC = .text:0x8045CCBC; // type:function size:0x80 +fn_8045CD3C = .text:0x8045CD3C; // type:function size:0x4 +fn_8045CD40 = .text:0x8045CD40; // type:function size:0x88 +fn_8045CDC8 = .text:0x8045CDC8; // type:function size:0x2C +fn_8045CDF4 = .text:0x8045CDF4; // type:function size:0x10 +fn_8045CE04 = .text:0x8045CE04; // type:function size:0x24 +fn_8045CE28 = .text:0x8045CE28; // type:function size:0x3C +fn_8045CE64 = .text:0x8045CE64; // type:function size:0x58 +fn_8045CEBC = .text:0x8045CEBC; // type:function size:0x30 +fn_8045CEEC = .text:0x8045CEEC; // type:function size:0x30 +fn_8045CF1C = .text:0x8045CF1C; // type:function size:0x40 +fn_8045CF5C = .text:0x8045CF5C; // type:function size:0x40 +fn_8045CF9C = .text:0x8045CF9C; // type:function size:0x30 +fn_8045CFCC = .text:0x8045CFCC; // type:function size:0x30 +fn_8045CFFC = .text:0x8045CFFC; // type:function size:0x40 +fn_8045D03C = .text:0x8045D03C; // type:function size:0x44 +fn_8045D080 = .text:0x8045D080; // type:function size:0x44 +fn_8045D0C4 = .text:0x8045D0C4; // type:function size:0x80 +fn_8045D144 = .text:0x8045D144; // type:function size:0x24 +fn_8045D168 = .text:0x8045D168; // type:function size:0x58 +fn_8045D1C0 = .text:0x8045D1C0; // type:function size:0x114 +fn_8045D2D4 = .text:0x8045D2D4; // type:function size:0x60 +fn_8045D334 = .text:0x8045D334; // type:function size:0x5C +fn_8045D390 = .text:0x8045D390; // type:function size:0x54 +fn_8045D3E4 = .text:0x8045D3E4; // type:function size:0x5C +fn_8045D440 = .text:0x8045D440; // type:function size:0x5C +fn_8045D49C = .text:0x8045D49C; // type:function size:0x90 +fn_8045D52C = .text:0x8045D52C; // type:function size:0x40 +fn_8045D56C = .text:0x8045D56C; // type:function size:0x58 +fn_8045D5C4 = .text:0x8045D5C4; // type:function size:0x80 +fn_8045D644 = .text:0x8045D644; // type:function size:0x80 +fn_8045D6C4 = .text:0x8045D6C4; // type:function size:0x58 +fn_8045D71C = .text:0x8045D71C; // type:function size:0x54 +fn_8045D770 = .text:0x8045D770; // type:function size:0x5C +fn_8045D7CC = .text:0x8045D7CC; // type:function size:0x6C +fn_8045D838 = .text:0x8045D838; // type:function size:0x28 +fn_8045D860 = .text:0x8045D860; // type:function size:0x8 +fn_8045D868 = .text:0x8045D868; // type:function size:0x8 +fn_8045D870 = .text:0x8045D870; // type:function size:0x3C +fn_8045D8AC = .text:0x8045D8AC; // type:function size:0x30 +fn_8045D8DC = .text:0x8045D8DC; // type:function size:0x30 +fn_8045D90C = .text:0x8045D90C; // type:function size:0x40 +fn_8045D94C = .text:0x8045D94C; // type:function size:0xA4 +fn_8045D9F0 = .text:0x8045D9F0; // type:function size:0x58 +fn_8045DA48 = .text:0x8045DA48; // type:function size:0x60 +fn_8045DAA8 = .text:0x8045DAA8; // type:function size:0x4 +fn_8045DAAC = .text:0x8045DAAC; // type:function size:0x4 +fn_8045DAB0 = .text:0x8045DAB0; // type:function size:0x3C +fn_8045DAEC = .text:0x8045DAEC; // type:function size:0x40 +fn_8045DB2C = .text:0x8045DB2C; // type:function size:0x8C +fn_8045DBB8 = .text:0x8045DBB8; // type:function size:0x8 +fn_8045DBC0 = .text:0x8045DBC0; // type:function size:0x2C +fn_8045DBEC = .text:0x8045DBEC; // type:function size:0x58 +fn_8045DC44 = .text:0x8045DC44; // type:function size:0x28 +fn_8045DC6C = .text:0x8045DC6C; // type:function size:0x68 +fn_8045DCD4 = .text:0x8045DCD4; // type:function size:0x40 +fn_8045DD14 = .text:0x8045DD14; // type:function size:0x84 +fn_8045DD98 = .text:0x8045DD98; // type:function size:0xA4 +fn_8045DE3C = .text:0x8045DE3C; // type:function size:0x4 +fn_8045DE40 = .text:0x8045DE40; // type:function size:0x88 +fn_8045DEC8 = .text:0x8045DEC8; // type:function size:0x2C +fn_8045DEF4 = .text:0x8045DEF4; // type:function size:0x10 +fn_8045DF04 = .text:0x8045DF04; // type:function size:0x3C +fn_8045DF40 = .text:0x8045DF40; // type:function size:0x24 +fn_8045DF64 = .text:0x8045DF64; // type:function size:0x50 +fn_8045DFB4 = .text:0x8045DFB4; // type:function size:0xA4 +fn_8045E058 = .text:0x8045E058; // type:function size:0x68 +fn_8045E0C0 = .text:0x8045E0C0; // type:function size:0x4 +fn_8045E0C4 = .text:0x8045E0C4; // type:function size:0x2C +fn_8045E0F0 = .text:0x8045E0F0; // type:function size:0x24 +fn_8045E114 = .text:0x8045E114; // type:function size:0xAC +fn_8045E1C0 = .text:0x8045E1C0; // type:function size:0xF0 +fn_8045E2B0 = .text:0x8045E2B0; // type:function size:0x60 +fn_8045E310 = .text:0x8045E310; // type:function size:0x5C +fn_8045E36C = .text:0x8045E36C; // type:function size:0x54 +fn_8045E3C0 = .text:0x8045E3C0; // type:function size:0x5C +fn_8045E41C = .text:0x8045E41C; // type:function size:0x158 +fn_8045E574 = .text:0x8045E574; // type:function size:0x24 +fn_8045E598 = .text:0x8045E598; // type:function size:0x58 +fn_8045E5F0 = .text:0x8045E5F0; // type:function size:0x64 +fn_8045E654 = .text:0x8045E654; // type:function size:0x28 +fn_8045E67C = .text:0x8045E67C; // type:function size:0x28 +fn_8045E6A4 = .text:0x8045E6A4; // type:function size:0x68 +fn_8045E70C = .text:0x8045E70C; // type:function size:0x4 +fn_8045E710 = .text:0x8045E710; // type:function size:0xCC +fn_8045E7DC = .text:0x8045E7DC; // type:function size:0x5C +fn_8045E838 = .text:0x8045E838; // type:function size:0x60 +fn_8045E898 = .text:0x8045E898; // type:function size:0x114 +fn_8045E9AC = .text:0x8045E9AC; // type:function size:0x5C +fn_8045EA08 = .text:0x8045EA08; // type:function size:0xC +fn_8045EA14 = .text:0x8045EA14; // type:function size:0xD8 +fn_8045EAEC = .text:0x8045EAEC; // type:function size:0x80 +fn_8045EB6C = .text:0x8045EB6C; // type:function size:0x104 +fn_8045EC70 = .text:0x8045EC70; // type:function size:0x68 +fn_8045ECD8 = .text:0x8045ECD8; // type:function size:0x58 +fn_8045ED30 = .text:0x8045ED30; // type:function size:0x34 +fn_8045ED64 = .text:0x8045ED64; // type:function size:0xF4 +fn_8045EE58 = .text:0x8045EE58; // type:function size:0x2F4 +fn_8045F14C = .text:0x8045F14C; // type:function size:0x4 +fn_8045F150 = .text:0x8045F150; // type:function size:0x4C +fn_8045F19C = .text:0x8045F19C; // type:function size:0x18C +fn_8045F328 = .text:0x8045F328; // type:function size:0x100 +fn_8045F428 = .text:0x8045F428; // type:function size:0x74 +fn_8045F49C = .text:0x8045F49C; // type:function size:0x20 +fn_8045F4BC = .text:0x8045F4BC; // type:function size:0x1C +fn_8045F4D8 = .text:0x8045F4D8; // type:function size:0x38 +fn_8045F510 = .text:0x8045F510; // type:function size:0x8 +fn_8045F518 = .text:0x8045F518; // type:function size:0x3C +fn_8045F554 = .text:0x8045F554; // type:function size:0x40 +fn_8045F594 = .text:0x8045F594; // type:function size:0x8C +fn_8045F620 = .text:0x8045F620; // type:function size:0x8 +fn_8045F628 = .text:0x8045F628; // type:function size:0x2C +fn_8045F654 = .text:0x8045F654; // type:function size:0x58 +fn_8045F6AC = .text:0x8045F6AC; // type:function size:0x28 +fn_8045F6D4 = .text:0x8045F6D4; // type:function size:0x68 +fn_8045F73C = .text:0x8045F73C; // type:function size:0x4 +fn_8045F740 = .text:0x8045F740; // type:function size:0x3C +fn_8045F77C = .text:0x8045F77C; // type:function size:0x40 +fn_8045F7BC = .text:0x8045F7BC; // type:function size:0x8C +fn_8045F848 = .text:0x8045F848; // type:function size:0x8 +fn_8045F850 = .text:0x8045F850; // type:function size:0x2C +fn_8045F87C = .text:0x8045F87C; // type:function size:0x58 +fn_8045F8D4 = .text:0x8045F8D4; // type:function size:0x28 +fn_8045F8FC = .text:0x8045F8FC; // type:function size:0x68 +fn_8045F964 = .text:0x8045F964; // type:function size:0xA8 +fn_8045FA0C = .text:0x8045FA0C; // type:function size:0x4 +fn_8045FA10 = .text:0x8045FA10; // type:function size:0x88 +fn_8045FA98 = .text:0x8045FA98; // type:function size:0x2C +fn_8045FAC4 = .text:0x8045FAC4; // type:function size:0x10 +fn_8045FAD4 = .text:0x8045FAD4; // type:function size:0x24 +fn_8045FAF8 = .text:0x8045FAF8; // type:function size:0x90 +fn_8045FB88 = .text:0x8045FB88; // type:function size:0x8 +fn_8045FB90 = .text:0x8045FB90; // type:function size:0xAC +fn_8045FC3C = .text:0x8045FC3C; // type:function size:0x24 +fn_8045FC60 = .text:0x8045FC60; // type:function size:0xB8 +fn_8045FD18 = .text:0x8045FD18; // type:function size:0x78 +fn_8045FD90 = .text:0x8045FD90; // type:function size:0x88 +fn_8045FE18 = .text:0x8045FE18; // type:function size:0x8 +fn_8045FE20 = .text:0x8045FE20; // type:function size:0x2C +fn_8045FE4C = .text:0x8045FE4C; // type:function size:0x24 +fn_8045FE70 = .text:0x8045FE70; // type:function size:0x5C +fn_8045FECC = .text:0x8045FECC; // type:function size:0x8 +fn_8045FED4 = .text:0x8045FED4; // type:function size:0xAC +fn_8045FF80 = .text:0x8045FF80; // type:function size:0x24 +fn_8045FFA4 = .text:0x8045FFA4; // type:function size:0x114 +fn_804600B8 = .text:0x804600B8; // type:function size:0x5C +fn_80460114 = .text:0x80460114; // type:function size:0x5C +fn_80460170 = .text:0x80460170; // type:function size:0x54 +fn_804601C4 = .text:0x804601C4; // type:function size:0x5C +fn_80460220 = .text:0x80460220; // type:function size:0x5C +fn_8046027C = .text:0x8046027C; // type:function size:0xB8 +fn_80460334 = .text:0x80460334; // type:function size:0x1D4 +fn_80460508 = .text:0x80460508; // type:function size:0x40 +fn_80460548 = .text:0x80460548; // type:function size:0x10 +fn_80460558 = .text:0x80460558; // type:function size:0x1A0 +fn_804606F8 = .text:0x804606F8; // type:function size:0x84 +fn_8046077C = .text:0x8046077C; // type:function size:0x8 +fn_80460784 = .text:0x80460784; // type:function size:0x44 +fn_804607C8 = .text:0x804607C8; // type:function size:0x34 +fn_804607FC = .text:0x804607FC; // type:function size:0x8 +fn_80460804 = .text:0x80460804; // type:function size:0x48 +fn_8046084C = .text:0x8046084C; // type:function size:0x70 +fn_804608BC = .text:0x804608BC; // type:function size:0x168 +fn_80460A24 = .text:0x80460A24; // type:function size:0x14 +fn_80460A38 = .text:0x80460A38; // type:function size:0x58 +fn_80460A90 = .text:0x80460A90; // type:function size:0x10 +fn_80460AA0 = .text:0x80460AA0; // type:function size:0x70 +fn_80460B10 = .text:0x80460B10; // type:function size:0x20 +fn_80460B30 = .text:0x80460B30; // type:function size:0x14 +fn_80460B44 = .text:0x80460B44; // type:function size:0x14 +fn_80460B58 = .text:0x80460B58; // type:function size:0x14 +fn_80460B6C = .text:0x80460B6C; // type:function size:0x14 +fn_80460B80 = .text:0x80460B80; // type:function size:0x14 +fn_80460B94 = .text:0x80460B94; // type:function size:0x70 +fn_80460C04 = .text:0x80460C04; // type:function size:0x8 +fn_80460C0C = .text:0x80460C0C; // type:function size:0x8 +fn_80460C14 = .text:0x80460C14; // type:function size:0x4 +fn_80460C18 = .text:0x80460C18; // type:function size:0xC +fn_80460C24 = .text:0x80460C24; // type:function size:0x8 +fn_80460C2C = .text:0x80460C2C; // type:function size:0x8 +fn_80460C34 = .text:0x80460C34; // type:function size:0x14 +fn_80460C48 = .text:0x80460C48; // type:function size:0x14 +fn_80460C5C = .text:0x80460C5C; // type:function size:0x64 +fn_80460CC0 = .text:0x80460CC0; // type:function size:0x60 +fn_80460D20 = .text:0x80460D20; // type:function size:0xC +fn_80460D2C = .text:0x80460D2C; // type:function size:0x8C +fn_80460DB8 = .text:0x80460DB8; // type:function size:0x64 +fn_80460E1C = .text:0x80460E1C; // type:function size:0x64 +fn_80460E80 = .text:0x80460E80; // type:function size:0x60 +fn_80460EE0 = .text:0x80460EE0; // type:function size:0xC +fn_80460EEC = .text:0x80460EEC; // type:function size:0x8 +fn_80460EF4 = .text:0x80460EF4; // type:function size:0x70 +fn_80460F64 = .text:0x80460F64; // type:function size:0x9C +fn_80461000 = .text:0x80461000; // type:function size:0xA4 +fn_804610A4 = .text:0x804610A4; // type:function size:0x5C +fn_80461100 = .text:0x80461100; // type:function size:0x60 +fn_80461160 = .text:0x80461160; // type:function size:0x80 +fn_804611E0 = .text:0x804611E0; // type:function size:0x80 +fn_80461260 = .text:0x80461260; // type:function size:0x60 +fn_804612C0 = .text:0x804612C0; // type:function size:0x74 +fn_80461334 = .text:0x80461334; // type:function size:0x74 +fn_804613A8 = .text:0x804613A8; // type:function size:0x60 +fn_80461408 = .text:0x80461408; // type:function size:0xA8 +fn_804614B0 = .text:0x804614B0; // type:function size:0x48 +fn_804614F8 = .text:0x804614F8; // type:function size:0x8 +fn_80461500 = .text:0x80461500; // type:function size:0x6C +fn_8046156C = .text:0x8046156C; // type:function size:0x4 +fn_80461570 = .text:0x80461570; // type:function size:0x2C +fn_8046159C = .text:0x8046159C; // type:function size:0x24 +fn_804615C0 = .text:0x804615C0; // type:function size:0xAC +fn_8046166C = .text:0x8046166C; // type:function size:0xF0 +fn_8046175C = .text:0x8046175C; // type:function size:0x158 +fn_804618B4 = .text:0x804618B4; // type:function size:0x24 +fn_804618D8 = .text:0x804618D8; // type:function size:0x14 +fn_804618EC = .text:0x804618EC; // type:function size:0x58 +fn_80461944 = .text:0x80461944; // type:function size:0x64 +fn_804619A8 = .text:0x804619A8; // type:function size:0x28 +fn_804619D0 = .text:0x804619D0; // type:function size:0x68 +fn_80461A38 = .text:0x80461A38; // type:function size:0x18 +fn_80461A50 = .text:0x80461A50; // type:function size:0x4 +fn_80461A54 = .text:0x80461A54; // type:function size:0x60 +fn_80461AB4 = .text:0x80461AB4; // type:function size:0x60 +fn_80461B14 = .text:0x80461B14; // type:function size:0x154 +fn_80461C68 = .text:0x80461C68; // type:function size:0x14 +fn_80461C7C = .text:0x80461C7C; // type:function size:0xF8 +fn_80461D74 = .text:0x80461D74; // type:function size:0x8 +fn_80461D7C = .text:0x80461D7C; // type:function size:0xAC +fn_80461E28 = .text:0x80461E28; // type:function size:0x24 +fn_80461E4C = .text:0x80461E4C; // type:function size:0x14 +fn_80461E60 = .text:0x80461E60; // type:function size:0x94 +fn_80461EF4 = .text:0x80461EF4; // type:function size:0x94 +fn_80461F88 = .text:0x80461F88; // type:function size:0x8 +fn_80461F90 = .text:0x80461F90; // type:function size:0xAC +fn_8046203C = .text:0x8046203C; // type:function size:0x40 +fn_8046207C = .text:0x8046207C; // type:function size:0x4C +fn_804620C8 = .text:0x804620C8; // type:function size:0x80 +fn_80462148 = .text:0x80462148; // type:function size:0x8 +fn_80462150 = .text:0x80462150; // type:function size:0x4C +fn_8046219C = .text:0x8046219C; // type:function size:0xF0 +fn_8046228C = .text:0x8046228C; // type:function size:0x70 +fn_804622FC = .text:0x804622FC; // type:function size:0x94 +fn_80462390 = .text:0x80462390; // type:function size:0x104 +fn_80462494 = .text:0x80462494; // type:function size:0x30 +fn_804624C4 = .text:0x804624C4; // type:function size:0xC8 +fn_8046258C = .text:0x8046258C; // type:function size:0x34 +fn_804625C0 = .text:0x804625C0; // type:function size:0xA4 +fn_80462664 = .text:0x80462664; // type:function size:0xF4 +fn_80462758 = .text:0x80462758; // type:function size:0xA0 +fn_804627F8 = .text:0x804627F8; // type:function size:0x6C +fn_80462864 = .text:0x80462864; // type:function size:0x30 +fn_80462894 = .text:0x80462894; // type:function size:0x74 +fn_80462908 = .text:0x80462908; // type:function size:0x88 +fn_80462990 = .text:0x80462990; // type:function size:0x8 +fn_80462998 = .text:0x80462998; // type:function size:0x98 +fn_80462A30 = .text:0x80462A30; // type:function size:0x6C +fn_80462A9C = .text:0x80462A9C; // type:function size:0xC +fn_80462AA8 = .text:0x80462AA8; // type:function size:0x64 +fn_80462B0C = .text:0x80462B0C; // type:function size:0xC0 +fn_80462BCC = .text:0x80462BCC; // type:function size:0x94 +fn_80462C60 = .text:0x80462C60; // type:function size:0x88 +fn_80462CE8 = .text:0x80462CE8; // type:function size:0xA0 +fn_80462D88 = .text:0x80462D88; // type:function size:0x78 +fn_80462E00 = .text:0x80462E00; // type:function size:0xC +fn_80462E0C = .text:0x80462E0C; // type:function size:0x58 +fn_80462E64 = .text:0x80462E64; // type:function size:0x64 +fn_80462EC8 = .text:0x80462EC8; // type:function size:0x30 +fn_80462EF8 = .text:0x80462EF8; // type:function size:0x78 +fn_80462F70 = .text:0x80462F70; // type:function size:0x54 +fn_80462FC4 = .text:0x80462FC4; // type:function size:0x3C +fn_80463000 = .text:0x80463000; // type:function size:0x10 +fn_80463010 = .text:0x80463010; // type:function size:0x188 +fn_80463198 = .text:0x80463198; // type:function size:0x150 +fn_804632E8 = .text:0x804632E8; // type:function size:0x10 +fn_804632F8 = .text:0x804632F8; // type:function size:0x8 +fn_80463300 = .text:0x80463300; // type:function size:0xAC +fn_804633AC = .text:0x804633AC; // type:function size:0x24 +fn_804633D0 = .text:0x804633D0; // type:function size:0x18 +fn_804633E8 = .text:0x804633E8; // type:function size:0x58 +fn_80463440 = .text:0x80463440; // type:function size:0xCC +fn_8046350C = .text:0x8046350C; // type:function size:0x60 +fn_8046356C = .text:0x8046356C; // type:function size:0xC +fn_80463578 = .text:0x80463578; // type:function size:0x68 +fn_804635E0 = .text:0x804635E0; // type:function size:0xC +fn_804635EC = .text:0x804635EC; // type:function size:0x198 +fn_80463784 = .text:0x80463784; // type:function size:0x54 +fn_804637D8 = .text:0x804637D8; // type:function size:0x38 +__ct__16GuitarControllerFP4UserPC9DataArrayP23BeatMatchControllerSinkbb = .text:0x80463810; // type:function size:0x2E4 +__dt__16GuitarControllerFv = .text:0x80463AF4; // type:function size:0x78 +Disable__16GuitarControllerFb = .text:0x80463B6C; // type:function size:0x88 +GetWhammyBar__16GuitarControllerCFv = .text:0x80463BF4; // type:function size:0x1D4 +fn_80463DC8 = .text:0x80463DC8; // type:function size:0xC +Poll__16GuitarControllerFv = .text:0x80463DD4; // type:function size:0x18C +OnMsg__16GuitarControllerFRC13ButtonDownMsg = .text:0x80463F60; // type:function size:0x39C +fn_804642FC = .text:0x804642FC; // type:function size:0x24 +OnMsg__16GuitarControllerFRC11ButtonUpMsg = .text:0x80464320; // type:function size:0x1F0 +fn_80464510 = .text:0x80464510; // type:function size:0x1A0 +fn_804646B0 = .text:0x804646B0; // type:function size:0x34 +fn_804646E4 = .text:0x804646E4; // type:function size:0x9C +Handle__16GuitarControllerFP9DataArrayb = .text:0x80464780; // type:function size:0x180 +fn_80464900 = .text:0x80464900; // type:function size:0x8 +fn_80464908 = .text:0x80464908; // type:function size:0x44 +fn_8046494C = .text:0x8046494C; // type:function size:0x58 +fn_804649A4 = .text:0x804649A4; // type:function size:0x4 +fn_804649A8 = .text:0x804649A8; // type:function size:0x2FC +fn_80464CA4 = .text:0x80464CA4; // type:function size:0x18 +fn_80464CBC = .text:0x80464CBC; // type:function size:0x18 +fn_80464CD4 = .text:0x80464CD4; // type:function size:0x8 +fn_80464CDC = .text:0x80464CDC; // type:function size:0x70 +fn_80464D4C = .text:0x80464D4C; // type:function size:0x8 +fn_80464D54 = .text:0x80464D54; // type:function size:0x84 +fn_80464DD8 = .text:0x80464DD8; // type:function size:0x48 +fn_80464E20 = .text:0x80464E20; // type:function size:0x20 +fn_80464E40 = .text:0x80464E40; // type:function size:0x44 +__ct__16JoypadControllerFP4UserPC9DataArrayP23BeatMatchControllerSinkbb = .text:0x80464E84; // type:function size:0x1CC +fn_80465050 = .text:0x80465050; // type:function size:0x58 +fn_804650A8 = .text:0x804650A8; // type:function size:0x9C +fn_80465144 = .text:0x80465144; // type:function size:0x68 +fn_804651AC = .text:0x804651AC; // type:function size:0x38 +fn_804651E4 = .text:0x804651E4; // type:function size:0x88 +fn_8046526C = .text:0x8046526C; // type:function size:0x8C +fn_804652F8 = .text:0x804652F8; // type:function size:0xFC +fn_804653F4 = .text:0x804653F4; // type:function size:0x150 +fn_80465544 = .text:0x80465544; // type:function size:0x304 +OnMsg__16JoypadControllerFRC13ButtonDownMsg = .text:0x80465848; // type:function size:0x404 +OnMsg__16JoypadControllerFRC11ButtonUpMsg = .text:0x80465C4C; // type:function size:0xFC +fn_80465D48 = .text:0x80465D48; // type:function size:0xFC +fn_80465E44 = .text:0x80465E44; // type:function size:0x74 +fn_80465EB8 = .text:0x80465EB8; // type:function size:0x1C +fn_80465ED4 = .text:0x80465ED4; // type:function size:0x44 +fn_80465F18 = .text:0x80465F18; // type:function size:0x10 +fn_80465F28 = .text:0x80465F28; // type:function size:0x8 +fn_80465F30 = .text:0x80465F30; // type:function size:0x24 +fn_80465F54 = .text:0x80465F54; // type:function size:0x24 +fn_80465F78 = .text:0x80465F78; // type:function size:0x24 +Handle__16JoypadControllerFP9DataArrayb = .text:0x80465F9C; // type:function size:0x180 +fn_8046611C = .text:0x8046611C; // type:function size:0x8 +fn_80466124 = .text:0x80466124; // type:function size:0x8 +__ct__22JoypadGuitarControllerFP4UserPC9DataArrayP23BeatMatchControllerSinkbb = .text:0x8046612C; // type:function size:0xA8 +__dt__22JoypadGuitarControllerFv = .text:0x804661D4; // type:function size:0x6C +fn_80466240 = .text:0x80466240; // type:function size:0x14 +fn_80466254 = .text:0x80466254; // type:function size:0xB4 +OnMsg__22JoypadGuitarControllerFRC13ButtonDownMsg = .text:0x80466308; // type:function size:0x120 +OnMsg__22JoypadGuitarControllerFRC11ButtonUpMsg = .text:0x80466428; // type:function size:0xF4 +fn_8046651C = .text:0x8046651C; // type:function size:0x158 +Handle__22JoypadGuitarControllerFP9DataArrayb = .text:0x80466674; // type:function size:0x180 +__ct__20JoypadMidiControllerFP4UserPC9DataArrayP23BeatMatchControllerSinkb = .text:0x804667F4; // type:function size:0x54 +__dt__20JoypadMidiControllerFv = .text:0x80466848; // type:function size:0x6C +fn_804668B4 = .text:0x804668B4; // type:function size:0xC +fn_804668C0 = .text:0x804668C0; // type:function size:0x68 +OnMsg__20JoypadMidiControllerFRC21KeyboardKeyPressedMsg = .text:0x80466928; // type:function size:0xF8 +OnMsg__20JoypadMidiControllerFRC22KeyboardKeyReleasedMsg = .text:0x80466A20; // type:function size:0xD8 +OnMsg__20JoypadMidiControllerFRC18KeyboardSustainMsg = .text:0x80466AF8; // type:function size:0xAC +OnMsg__20JoypadMidiControllerFRC14KeyboardModMsg = .text:0x80466BA4; // type:function size:0xB4 +fn_80466C58 = .text:0x80466C58; // type:function size:0x124 +OnMsg__20JoypadMidiControllerFRC13ButtonDownMsg = .text:0x80466D7C; // type:function size:0xC0 +Handle__20JoypadMidiControllerFP9DataArrayb = .text:0x80466E3C; // type:function size:0x30C +__ct__18KeyboardSustainMsgFP9DataArray = .text:0x80467148; // type:function size:0x3C +__ct__14KeyboardModMsgFP9DataArray = .text:0x80467184; // type:function size:0x3C +__ct__22KeyboardKeyReleasedMsgFP9DataArray = .text:0x804671C0; // type:function size:0x3C +fn_804671FC = .text:0x804671FC; // type:function size:0x64 +fn_80467260 = .text:0x80467260; // type:function size:0x58 +fn_804672B8 = .text:0x804672B8; // type:function size:0x4CC +fn_80467784 = .text:0x80467784; // type:function size:0x2C +fn_804677B0 = .text:0x804677B0; // type:function size:0xCC +fn_8046787C = .text:0x8046787C; // type:function size:0x4 +fn_80467880 = .text:0x80467880; // type:function size:0x4 +fn_80467884 = .text:0x80467884; // type:function size:0x4 +fn_80467888 = .text:0x80467888; // type:function size:0x10 +fn_80467898 = .text:0x80467898; // type:function size:0x64 +fn_804678FC = .text:0x804678FC; // type:function size:0x24 +__ct__18KeyboardControllerFP4UserPC9DataArrayP23BeatMatchControllerSinkb = .text:0x80467920; // type:function size:0x74 +__dt__18KeyboardControllerFv = .text:0x80467994; // type:function size:0x6C +fn_80467A00 = .text:0x80467A00; // type:function size:0x4 +fn_80467A04 = .text:0x80467A04; // type:function size:0x8 +fn_80467A0C = .text:0x80467A0C; // type:function size:0x30 +fn_80467A3C = .text:0x80467A3C; // type:function size:0x68 +OnMsg__18KeyboardControllerFRC21KeyboardKeyPressedMsg = .text:0x80467AA4; // type:function size:0x128 +OnMsg__18KeyboardControllerFRC22KeyboardKeyReleasedMsg = .text:0x80467BCC; // type:function size:0xDC +OnMsg__18KeyboardControllerFRC18KeyboardSustainMsg = .text:0x80467CA8; // type:function size:0xAC +OnMsg__18KeyboardControllerFRC14KeyboardModMsg = .text:0x80467D54; // type:function size:0xB4 +OnMsg__18KeyboardControllerFRC13ButtonDownMsg = .text:0x80467E08; // type:function size:0xC0 +fn_80467EC8 = .text:0x80467EC8; // type:function size:0x18 +Handle__18KeyboardControllerFP9DataArrayb = .text:0x80467EE0; // type:function size:0x30C +fn_804681EC = .text:0x804681EC; // type:function size:0x11C +fn_80468308 = .text:0x80468308; // type:function size:0x58 +fn_80468360 = .text:0x80468360; // type:function size:0x80 +fn_804683E0 = .text:0x804683E0; // type:function size:0x80 +fn_80468460 = .text:0x80468460; // type:function size:0x58 +fn_804684B8 = .text:0x804684B8; // type:function size:0x54 +fn_8046850C = .text:0x8046850C; // type:function size:0x5C +fn_80468568 = .text:0x80468568; // type:function size:0x6C +fn_804685D4 = .text:0x804685D4; // type:function size:0x28 +fn_804685FC = .text:0x804685FC; // type:function size:0x8 +fn_80468604 = .text:0x80468604; // type:function size:0x3C +fn_80468640 = .text:0x80468640; // type:function size:0x4 +fn_80468644 = .text:0x80468644; // type:function size:0x88 +fn_804686CC = .text:0x804686CC; // type:function size:0x2C +fn_804686F8 = .text:0x804686F8; // type:function size:0x30 +fn_80468728 = .text:0x80468728; // type:function size:0x30 +fn_80468758 = .text:0x80468758; // type:function size:0x30 +fn_80468788 = .text:0x80468788; // type:function size:0x40 +fn_804687C8 = .text:0x804687C8; // type:function size:0x68 +fn_80468830 = .text:0x80468830; // type:function size:0x48 +fn_80468878 = .text:0x80468878; // type:function size:0xC0 +fn_80468938 = .text:0x80468938; // type:function size:0x18 +fn_80468950 = .text:0x80468950; // type:function size:0xD0 +fn_80468A20 = .text:0x80468A20; // type:function size:0x68 +fn_80468A88 = .text:0x80468A88; // type:function size:0xFC +fn_80468B84 = .text:0x80468B84; // type:function size:0xF4 +fn_80468C78 = .text:0x80468C78; // type:function size:0x100 +fn_80468D78 = .text:0x80468D78; // type:function size:0x6C +fn_80468DE4 = .text:0x80468DE4; // type:function size:0x74 +fn_80468E58 = .text:0x80468E58; // type:function size:0x60 +fn_80468EB8 = .text:0x80468EB8; // type:function size:0x114 +fn_80468FCC = .text:0x80468FCC; // type:function size:0x8C +fn_80469058 = .text:0x80469058; // type:function size:0xA8 +fn_80469100 = .text:0x80469100; // type:function size:0x144 +fn_80469244 = .text:0x80469244; // type:function size:0x70 +fn_804692B4 = .text:0x804692B4; // type:function size:0x7C +fn_80469330 = .text:0x80469330; // type:function size:0x6C +fn_8046939C = .text:0x8046939C; // type:function size:0xA0 +fn_8046943C = .text:0x8046943C; // type:function size:0x128 +fn_80469564 = .text:0x80469564; // type:function size:0xD4 +fn_80469638 = .text:0x80469638; // type:function size:0xF4 +fn_8046972C = .text:0x8046972C; // type:function size:0x38 +fn_80469764 = .text:0x80469764; // type:function size:0x44 +fn_804697A8 = .text:0x804697A8; // type:function size:0x114 +fn_804698BC = .text:0x804698BC; // type:function size:0x5C +fn_80469918 = .text:0x80469918; // type:function size:0x5C +fn_80469974 = .text:0x80469974; // type:function size:0x54 +fn_804699C8 = .text:0x804699C8; // type:function size:0x5C +fn_80469A24 = .text:0x80469A24; // type:function size:0x5C +fn_80469A80 = .text:0x80469A80; // type:function size:0x8 +__ct__11MasterAudioFP9DataArrayiP10BeatMasterP8SongData = .text:0x80469A88; // type:function size:0x5C8 +fn_8046A050 = .text:0x8046A050; // type:function size:0x58 +fn_8046A0A8 = .text:0x8046A0A8; // type:function size:0x18 +fn_8046A0C0 = .text:0x8046A0C0; // type:function size:0x40 +__ct__7HxAudioFv = .text:0x8046A100; // type:function size:0x10 +__dt__11MasterAudioFv = .text:0x8046A110; // type:function size:0x3B0 +fn_8046A4C0 = .text:0x8046A4C0; // type:function size:0x154 +fn_8046A614 = .text:0x8046A614; // type:function size:0x4 +fn_8046A618 = .text:0x8046A618; // type:function size:0x14 +fn_8046A62C = .text:0x8046A62C; // type:function size:0x260 +fn_8046A88C = .text:0x8046A88C; // type:function size:0x23C +fn_8046AAC8 = .text:0x8046AAC8; // type:function size:0x2C +fn_8046AAF4 = .text:0x8046AAF4; // type:function size:0x24 +fn_8046AB18 = .text:0x8046AB18; // type:function size:0x8 +fn_8046AB20 = .text:0x8046AB20; // type:function size:0x58 +fn_8046AB78 = .text:0x8046AB78; // type:function size:0x8 +fn_8046AB80 = .text:0x8046AB80; // type:function size:0x38 +fn_8046ABB8 = .text:0x8046ABB8; // type:function size:0xC8 +fn_8046AC80 = .text:0x8046AC80; // type:function size:0x24 +fn_8046ACA4 = .text:0x8046ACA4; // type:function size:0x18 +fn_8046ACBC = .text:0x8046ACBC; // type:function size:0x154 +fn_8046AE10 = .text:0x8046AE10; // type:function size:0x18 +fn_8046AE28 = .text:0x8046AE28; // type:function size:0x180 +fn_8046AFA8 = .text:0x8046AFA8; // type:function size:0x4C +fn_8046AFF4 = .text:0x8046AFF4; // type:function size:0x1F4 +fn_8046B1E8 = .text:0x8046B1E8; // type:function size:0x64 +fn_8046B24C = .text:0x8046B24C; // type:function size:0x24 +fn_8046B270 = .text:0x8046B270; // type:function size:0x68 +fn_8046B2D8 = .text:0x8046B2D8; // type:function size:0x54 +fn_8046B32C = .text:0x8046B32C; // type:function size:0x54 +fn_8046B380 = .text:0x8046B380; // type:function size:0x74 +fn_8046B3F4 = .text:0x8046B3F4; // type:function size:0x190 +fn_8046B584 = .text:0x8046B584; // type:function size:0x8 +fn_8046B58C = .text:0x8046B58C; // type:function size:0xF8 +fn_8046B684 = .text:0x8046B684; // type:function size:0xD8 +fn_8046B75C = .text:0x8046B75C; // type:function size:0x10 +fn_8046B76C = .text:0x8046B76C; // type:function size:0x8 +fn_8046B774 = .text:0x8046B774; // type:function size:0x8 +fn_8046B77C = .text:0x8046B77C; // type:function size:0x28 +fn_8046B7A4 = .text:0x8046B7A4; // type:function size:0x8 +fn_8046B7AC = .text:0x8046B7AC; // type:function size:0x8 +fn_8046B7B4 = .text:0x8046B7B4; // type:function size:0x68 +fn_8046B81C = .text:0x8046B81C; // type:function size:0x5C +fn_8046B878 = .text:0x8046B878; // type:function size:0x134 +fn_8046B9AC = .text:0x8046B9AC; // type:function size:0x18 +fn_8046B9C4 = .text:0x8046B9C4; // type:function size:0x10 +fn_8046B9D4 = .text:0x8046B9D4; // type:function size:0x10 +fn_8046B9E4 = .text:0x8046B9E4; // type:function size:0x10 +fn_8046B9F4 = .text:0x8046B9F4; // type:function size:0x10 +fn_8046BA04 = .text:0x8046BA04; // type:function size:0x4C +fn_8046BA50 = .text:0x8046BA50; // type:function size:0xF0 +fn_8046BB40 = .text:0x8046BB40; // type:function size:0x70 +fn_8046BBB0 = .text:0x8046BBB0; // type:function size:0xEC +fn_8046BC9C = .text:0x8046BC9C; // type:function size:0x5C +fn_8046BCF8 = .text:0x8046BCF8; // type:function size:0x8 +fn_8046BD00 = .text:0x8046BD00; // type:function size:0xC8 +fn_8046BDC8 = .text:0x8046BDC8; // type:function size:0x38 +fn_8046BE00 = .text:0x8046BE00; // type:function size:0x24 +fn_8046BE24 = .text:0x8046BE24; // type:function size:0x8 +fn_8046BE2C = .text:0x8046BE2C; // type:function size:0x84 +fn_8046BEB0 = .text:0x8046BEB0; // type:function size:0x1E4 +fn_8046C094 = .text:0x8046C094; // type:function size:0xAC +fn_8046C140 = .text:0x8046C140; // type:function size:0x8 +fn_8046C148 = .text:0x8046C148; // type:function size:0xA8 +fn_8046C1F0 = .text:0x8046C1F0; // type:function size:0x160 +fn_8046C350 = .text:0x8046C350; // type:function size:0xE8 +fn_8046C438 = .text:0x8046C438; // type:function size:0x154 +fn_8046C58C = .text:0x8046C58C; // type:function size:0xAC +fn_8046C638 = .text:0x8046C638; // type:function size:0x4 +fn_8046C63C = .text:0x8046C63C; // type:function size:0xE4 +fn_8046C720 = .text:0x8046C720; // type:function size:0xD0 +fn_8046C7F0 = .text:0x8046C7F0; // type:function size:0x6C +fn_8046C85C = .text:0x8046C85C; // type:function size:0x4C +fn_8046C8A8 = .text:0x8046C8A8; // type:function size:0x7C +fn_8046C924 = .text:0x8046C924; // type:function size:0x34 +fn_8046C958 = .text:0x8046C958; // type:function size:0x48 +fn_8046C9A0 = .text:0x8046C9A0; // type:function size:0x8 +fn_8046C9A8 = .text:0x8046C9A8; // type:function size:0x3C +fn_8046C9E4 = .text:0x8046C9E4; // type:function size:0x6C +fn_8046CA50 = .text:0x8046CA50; // type:function size:0x4C +fn_8046CA9C = .text:0x8046CA9C; // type:function size:0x114 +fn_8046CBB0 = .text:0x8046CBB0; // type:function size:0x2C +fn_8046CBDC = .text:0x8046CBDC; // type:function size:0x38 +fn_8046CC14 = .text:0x8046CC14; // type:function size:0x74 +fn_8046CC88 = .text:0x8046CC88; // type:function size:0x9C +fn_8046CD24 = .text:0x8046CD24; // type:function size:0x9C +fn_8046CDC0 = .text:0x8046CDC0; // type:function size:0x1C +fn_8046CDDC = .text:0x8046CDDC; // type:function size:0x68 +fn_8046CE44 = .text:0x8046CE44; // type:function size:0x8C +fn_8046CED0 = .text:0x8046CED0; // type:function size:0x4C +fn_8046CF1C = .text:0x8046CF1C; // type:function size:0xD8 +fn_8046CFF4 = .text:0x8046CFF4; // type:function size:0x104 +fn_8046D0F8 = .text:0x8046D0F8; // type:function size:0x64 +fn_8046D15C = .text:0x8046D15C; // type:function size:0x7C +fn_8046D1D8 = .text:0x8046D1D8; // type:function size:0x14 +fn_8046D1EC = .text:0x8046D1EC; // type:function size:0x78 +fn_8046D264 = .text:0x8046D264; // type:function size:0x14 +fn_8046D278 = .text:0x8046D278; // type:function size:0xC4 +fn_8046D33C = .text:0x8046D33C; // type:function size:0x2C +fn_8046D368 = .text:0x8046D368; // type:function size:0x34 +fn_8046D39C = .text:0x8046D39C; // type:function size:0x8 +fn_8046D3A4 = .text:0x8046D3A4; // type:function size:0x24 +fn_8046D3C8 = .text:0x8046D3C8; // type:function size:0x8 +fn_8046D3D0 = .text:0x8046D3D0; // type:function size:0x8C +fn_8046D45C = .text:0x8046D45C; // type:function size:0xB4 +fn_8046D510 = .text:0x8046D510; // type:function size:0xDC +fn_8046D5EC = .text:0x8046D5EC; // type:function size:0x8 +fn_8046D5F4 = .text:0x8046D5F4; // type:function size:0x8 +fn_8046D5FC = .text:0x8046D5FC; // type:function size:0x4 +fn_8046D600 = .text:0x8046D600; // type:function size:0x118 +fn_8046D718 = .text:0x8046D718; // type:function size:0x4 +fn_8046D71C = .text:0x8046D71C; // type:function size:0x2C +fn_8046D748 = .text:0x8046D748; // type:function size:0x24 +fn_8046D76C = .text:0x8046D76C; // type:function size:0xAC +fn_8046D818 = .text:0x8046D818; // type:function size:0xF0 +fn_8046D908 = .text:0x8046D908; // type:function size:0x5C +fn_8046D964 = .text:0x8046D964; // type:function size:0x54 +fn_8046D9B8 = .text:0x8046D9B8; // type:function size:0x150 +fn_8046DB08 = .text:0x8046DB08; // type:function size:0x24 +fn_8046DB2C = .text:0x8046DB2C; // type:function size:0x58 +fn_8046DB84 = .text:0x8046DB84; // type:function size:0x58 +fn_8046DBDC = .text:0x8046DBDC; // type:function size:0xEC +fn_8046DCC8 = .text:0x8046DCC8; // type:function size:0x9C +fn_8046DD64 = .text:0x8046DD64; // type:function size:0x3C +fn_8046DDA0 = .text:0x8046DDA0; // type:function size:0x20 +fn_8046DDC0 = .text:0x8046DDC0; // type:function size:0x20 +fn_8046DDE0 = .text:0x8046DDE0; // type:function size:0x40 +fn_8046DE20 = .text:0x8046DE20; // type:function size:0xC +fn_8046DE2C = .text:0x8046DE2C; // type:function size:0x8 +fn_8046DE34 = .text:0x8046DE34; // type:function size:0x8 +fn_8046DE3C = .text:0x8046DE3C; // type:function size:0xC +fn_8046DE48 = .text:0x8046DE48; // type:function size:0x8 +fn_8046DE50 = .text:0x8046DE50; // type:function size:0x44 +fn_8046DE94 = .text:0x8046DE94; // type:function size:0xC0 +fn_8046DF54 = .text:0x8046DF54; // type:function size:0x68 +fn_8046DFBC = .text:0x8046DFBC; // type:function size:0x148 +Handle__11MasterAudioFP9DataArrayb = .text:0x8046E104; // type:function size:0x1DC +fn_8046E2E0 = .text:0x8046E2E0; // type:function size:0x114 +fn_8046E3F4 = .text:0x8046E3F4; // type:function size:0x50 +fn_8046E444 = .text:0x8046E444; // type:function size:0x58 +fn_8046E49C = .text:0x8046E49C; // type:function size:0x10C +fn_8046E5A8 = .text:0x8046E5A8; // type:function size:0x50 +fn_8046E5F8 = .text:0x8046E5F8; // type:function size:0x58 +fn_8046E650 = .text:0x8046E650; // type:function size:0x68 +fn_8046E6B8 = .text:0x8046E6B8; // type:function size:0x70 +fn_8046E728 = .text:0x8046E728; // type:function size:0xC4 +fn_8046E7EC = .text:0x8046E7EC; // type:function size:0x60 +fn_8046E84C = .text:0x8046E84C; // type:function size:0x10 +fn_8046E85C = .text:0x8046E85C; // type:function size:0x8 +fn_8046E864 = .text:0x8046E864; // type:function size:0x8 +fn_8046E86C = .text:0x8046E86C; // type:function size:0x8 +fn_8046E874 = .text:0x8046E874; // type:function size:0x8 +fn_8046E87C = .text:0x8046E87C; // type:function size:0x8 +fn_8046E884 = .text:0x8046E884; // type:function size:0x8 +fn_8046E88C = .text:0x8046E88C; // type:function size:0x8 +fn_8046E894 = .text:0x8046E894; // type:function size:0x8 +fn_8046E89C = .text:0x8046E89C; // type:function size:0x8 +fn_8046E8A4 = .text:0x8046E8A4; // type:function size:0x8 +fn_8046E8AC = .text:0x8046E8AC; // type:function size:0x8 +fn_8046E8B4 = .text:0x8046E8B4; // type:function size:0x8 +fn_8046E8BC = .text:0x8046E8BC; // type:function size:0x8 +fn_8046E8C4 = .text:0x8046E8C4; // type:function size:0x8 +fn_8046E8CC = .text:0x8046E8CC; // type:function size:0x8 +fn_8046E8D4 = .text:0x8046E8D4; // type:function size:0x8 +fn_8046E8DC = .text:0x8046E8DC; // type:function size:0x8 +fn_8046E8E4 = .text:0x8046E8E4; // type:function size:0x8 +fn_8046E8EC = .text:0x8046E8EC; // type:function size:0x8 +fn_8046E8F4 = .text:0x8046E8F4; // type:function size:0x8 +fn_8046E8FC = .text:0x8046E8FC; // type:function size:0x8 +fn_8046E904 = .text:0x8046E904; // type:function size:0x8 +fn_8046E90C = .text:0x8046E90C; // type:function size:0x8 +fn_8046E914 = .text:0x8046E914; // type:function size:0x8 +fn_8046E91C = .text:0x8046E91C; // type:function size:0x8 +fn_8046E924 = .text:0x8046E924; // type:function size:0x8 +fn_8046E92C = .text:0x8046E92C; // type:function size:0x8 +fn_8046E934 = .text:0x8046E934; // type:function size:0x8 +fn_8046E93C = .text:0x8046E93C; // type:function size:0x8 +fn_8046E944 = .text:0x8046E944; // type:function size:0x8 +fn_8046E94C = .text:0x8046E94C; // type:function size:0x8 +fn_8046E954 = .text:0x8046E954; // type:function size:0x8 +fn_8046E95C = .text:0x8046E95C; // type:function size:0xE4 +fn_8046EA40 = .text:0x8046EA40; // type:function size:0xC8 +fn_8046EB08 = .text:0x8046EB08; // type:function size:0x20 +fn_8046EB28 = .text:0x8046EB28; // type:function size:0x10 +fn_8046EB38 = .text:0x8046EB38; // type:function size:0xBC +fn_8046EBF4 = .text:0x8046EBF4; // type:function size:0x58 +fn_8046EC4C = .text:0x8046EC4C; // type:function size:0x118 +fn_8046ED64 = .text:0x8046ED64; // type:function size:0x10 +fn_8046ED74 = .text:0x8046ED74; // type:function size:0x58 +fn_8046EDCC = .text:0x8046EDCC; // type:function size:0x50 +fn_8046EE1C = .text:0x8046EE1C; // type:function size:0x5C +fn_8046EE78 = .text:0x8046EE78; // type:function size:0x88 +fn_8046EF00 = .text:0x8046EF00; // type:function size:0x4 +fn_8046EF04 = .text:0x8046EF04; // type:function size:0x88 +fn_8046EF8C = .text:0x8046EF8C; // type:function size:0x2C +fn_8046EFB8 = .text:0x8046EFB8; // type:function size:0x10 +fn_8046EFC8 = .text:0x8046EFC8; // type:function size:0x20 +fn_8046EFE8 = .text:0x8046EFE8; // type:function size:0x58 +fn_8046F040 = .text:0x8046F040; // type:function size:0x22C +fn_8046F26C = .text:0x8046F26C; // type:function size:0x78 +fn_8046F2E4 = .text:0x8046F2E4; // type:function size:0xF8 +fn_8046F3DC = .text:0x8046F3DC; // type:function size:0xC +fn_8046F3E8 = .text:0x8046F3E8; // type:function size:0xD0 +fn_8046F4B8 = .text:0x8046F4B8; // type:function size:0xC +fn_8046F4C4 = .text:0x8046F4C4; // type:function size:0xB4 +fn_8046F578 = .text:0x8046F578; // type:function size:0x100 +fn_8046F678 = .text:0x8046F678; // type:function size:0xAC +fn_8046F724 = .text:0x8046F724; // type:function size:0x64 +fn_8046F788 = .text:0x8046F788; // type:function size:0xC +fn_8046F794 = .text:0x8046F794; // type:function size:0x84 +fn_8046F818 = .text:0x8046F818; // type:function size:0x8C +fn_8046F8A4 = .text:0x8046F8A4; // type:function size:0xAC +fn_8046F950 = .text:0x8046F950; // type:function size:0x6C +fn_8046F9BC = .text:0x8046F9BC; // type:function size:0xC +fn_8046F9C8 = .text:0x8046F9C8; // type:function size:0x58 +fn_8046FA20 = .text:0x8046FA20; // type:function size:0x7C +fn_8046FA9C = .text:0x8046FA9C; // type:function size:0x8C +fn_8046FB28 = .text:0x8046FB28; // type:function size:0xAC +fn_8046FBD4 = .text:0x8046FBD4; // type:function size:0x7C +fn_8046FC50 = .text:0x8046FC50; // type:function size:0x58 +fn_8046FCA8 = .text:0x8046FCA8; // type:function size:0x64 +fn_8046FD0C = .text:0x8046FD0C; // type:function size:0x28 +fn_8046FD34 = .text:0x8046FD34; // type:function size:0x68 +fn_8046FD9C = .text:0x8046FD9C; // type:function size:0xC +fn_8046FDA8 = .text:0x8046FDA8; // type:function size:0x7C +fn_8046FE24 = .text:0x8046FE24; // type:function size:0x4C +fn_8046FE70 = .text:0x8046FE70; // type:function size:0x58 +fn_8046FEC8 = .text:0x8046FEC8; // type:function size:0x80 +fn_8046FF48 = .text:0x8046FF48; // type:function size:0x80 +fn_8046FFC8 = .text:0x8046FFC8; // type:function size:0x54 +fn_8047001C = .text:0x8047001C; // type:function size:0x5C +fn_80470078 = .text:0x80470078; // type:function size:0x6C +fn_804700E4 = .text:0x804700E4; // type:function size:0x28 +fn_8047010C = .text:0x8047010C; // type:function size:0x8 +fn_80470114 = .text:0x80470114; // type:function size:0x3C +fn_80470150 = .text:0x80470150; // type:function size:0x4 +fn_80470154 = .text:0x80470154; // type:function size:0x50 +fn_804701A4 = .text:0x804701A4; // type:function size:0x58 +fn_804701FC = .text:0x804701FC; // type:function size:0x30 +fn_8047022C = .text:0x8047022C; // type:function size:0x98 +fn_804702C4 = .text:0x804702C4; // type:function size:0x5C +fn_80470320 = .text:0x80470320; // type:function size:0x70 +fn_80470390 = .text:0x80470390; // type:function size:0x20 +fn_804703B0 = .text:0x804703B0; // type:function size:0x4 +fn_804703B4 = .text:0x804703B4; // type:function size:0x8 +fn_804703BC = .text:0x804703BC; // type:function size:0x28 +fn_804703E4 = .text:0x804703E4; // type:function size:0x64 +fn_80470448 = .text:0x80470448; // type:function size:0x78 +fn_804704C0 = .text:0x804704C0; // type:function size:0x8 +fn_804704C8 = .text:0x804704C8; // type:function size:0xB8 +fn_80470580 = .text:0x80470580; // type:function size:0x4 +fn_80470584 = .text:0x80470584; // type:function size:0x88 +fn_8047060C = .text:0x8047060C; // type:function size:0x2C +fn_80470638 = .text:0x80470638; // type:function size:0x34 +fn_8047066C = .text:0x8047066C; // type:function size:0x114 +fn_80470780 = .text:0x80470780; // type:function size:0x60 +fn_804707E0 = .text:0x804707E0; // type:function size:0x5C +fn_8047083C = .text:0x8047083C; // type:function size:0x54 +fn_80470890 = .text:0x80470890; // type:function size:0x5C +fn_804708EC = .text:0x804708EC; // type:function size:0x6C +fn_80470958 = .text:0x80470958; // type:function size:0x28 +fn_80470980 = .text:0x80470980; // type:function size:0x8 +fn_80470988 = .text:0x80470988; // type:function size:0x3C +fn_804709C4 = .text:0x804709C4; // type:function size:0x5C +fn_80470A20 = .text:0x80470A20; // type:function size:0x5C +fn_80470A7C = .text:0x80470A7C; // type:function size:0x114 +fn_80470B90 = .text:0x80470B90; // type:function size:0x5C +fn_80470BEC = .text:0x80470BEC; // type:function size:0x5C +fn_80470C48 = .text:0x80470C48; // type:function size:0x54 +fn_80470C9C = .text:0x80470C9C; // type:function size:0x5C +fn_80470CF8 = .text:0x80470CF8; // type:function size:0x90 +fn_80470D88 = .text:0x80470D88; // type:function size:0xA4 +fn_80470E2C = .text:0x80470E2C; // type:function size:0x60 +fn_80470E8C = .text:0x80470E8C; // type:function size:0x8C +fn_80470F18 = .text:0x80470F18; // type:function size:0x5C +fn_80470F74 = .text:0x80470F74; // type:function size:0x24 +fn_80470F98 = .text:0x80470F98; // type:function size:0x5C +fn_80470FF4 = .text:0x80470FF4; // type:function size:0x8 +fn_80470FFC = .text:0x80470FFC; // type:function size:0x3C +fn_80471038 = .text:0x80471038; // type:function size:0x40 +fn_80471078 = .text:0x80471078; // type:function size:0x8C +fn_80471104 = .text:0x80471104; // type:function size:0x8 +fn_8047110C = .text:0x8047110C; // type:function size:0x2C +fn_80471138 = .text:0x80471138; // type:function size:0x58 +fn_80471190 = .text:0x80471190; // type:function size:0x28 +fn_804711B8 = .text:0x804711B8; // type:function size:0x68 +fn_80471220 = .text:0x80471220; // type:function size:0x24 +fn_80471244 = .text:0x80471244; // type:function size:0x88 +fn_804712CC = .text:0x804712CC; // type:function size:0x4 +fn_804712D0 = .text:0x804712D0; // type:function size:0x88 +fn_80471358 = .text:0x80471358; // type:function size:0x2C +fn_80471384 = .text:0x80471384; // type:function size:0x10 +fn_80471394 = .text:0x80471394; // type:function size:0x14 +fn_804713A8 = .text:0x804713A8; // type:function size:0x24 +fn_804713CC = .text:0x804713CC; // type:function size:0x24 +fn_804713F0 = .text:0x804713F0; // type:function size:0xB0 +fn_804714A0 = .text:0x804714A0; // type:function size:0x8 +fn_804714A8 = .text:0x804714A8; // type:function size:0xAC +fn_80471554 = .text:0x80471554; // type:function size:0x7C +fn_804715D0 = .text:0x804715D0; // type:function size:0x40 +fn_80471610 = .text:0x80471610; // type:function size:0x58 +fn_80471668 = .text:0x80471668; // type:function size:0x80 +fn_804716E8 = .text:0x804716E8; // type:function size:0x80 +fn_80471768 = .text:0x80471768; // type:function size:0x58 +fn_804717C0 = .text:0x804717C0; // type:function size:0x54 +fn_80471814 = .text:0x80471814; // type:function size:0x5C +fn_80471870 = .text:0x80471870; // type:function size:0x6C +fn_804718DC = .text:0x804718DC; // type:function size:0x28 +fn_80471904 = .text:0x80471904; // type:function size:0x8 +fn_8047190C = .text:0x8047190C; // type:function size:0x3C +fn_80471948 = .text:0x80471948; // type:function size:0x30 +fn_80471978 = .text:0x80471978; // type:function size:0x30 +fn_804719A8 = .text:0x804719A8; // type:function size:0x40 +fn_804719E8 = .text:0x804719E8; // type:function size:0x90 +fn_80471A78 = .text:0x80471A78; // type:function size:0x58 +fn_80471AD0 = .text:0x80471AD0; // type:function size:0x60 +fn_80471B30 = .text:0x80471B30; // type:function size:0x68 +fn_80471B98 = .text:0x80471B98; // type:function size:0x114 +fn_80471CAC = .text:0x80471CAC; // type:function size:0x60 +fn_80471D0C = .text:0x80471D0C; // type:function size:0x5C +fn_80471D68 = .text:0x80471D68; // type:function size:0x54 +fn_80471DBC = .text:0x80471DBC; // type:function size:0x5C +fn_80471E18 = .text:0x80471E18; // type:function size:0x5C +fn_80471E74 = .text:0x80471E74; // type:function size:0x48 +fn_80471EBC = .text:0x80471EBC; // type:function size:0x78 +fn_80471F34 = .text:0x80471F34; // type:function size:0x178 +fn_804720AC = .text:0x804720AC; // type:function size:0x298 +LoadFile__8PlaybackFRC6String = .text:0x80472344; // type:function size:0x70 +fn_804723B4 = .text:0x804723B4; // type:function size:0x5C +Jump__8PlaybackFf = .text:0x80472410; // type:function size:0xD4 +fn_804724E4 = .text:0x804724E4; // type:function size:0x3C +fn_80472520 = .text:0x80472520; // type:function size:0x48 +fn_80472568 = .text:0x80472568; // type:function size:0x118 +fn_80472680 = .text:0x80472680; // type:function size:0x4 +fn_80472684 = .text:0x80472684; // type:function size:0x4 +fn_80472688 = .text:0x80472688; // type:function size:0x30 +fn_804726B8 = .text:0x804726B8; // type:function size:0x30 +fn_804726E8 = .text:0x804726E8; // type:function size:0x40 +fn_80472728 = .text:0x80472728; // type:function size:0x6C +fn_80472794 = .text:0x80472794; // type:function size:0x4 +fn_80472798 = .text:0x80472798; // type:function size:0x3C +fn_804727D4 = .text:0x804727D4; // type:function size:0x40 +fn_80472814 = .text:0x80472814; // type:function size:0x8C +fn_804728A0 = .text:0x804728A0; // type:function size:0x8 +fn_804728A8 = .text:0x804728A8; // type:function size:0x2C +fn_804728D4 = .text:0x804728D4; // type:function size:0x58 +fn_8047292C = .text:0x8047292C; // type:function size:0x28 +fn_80472954 = .text:0x80472954; // type:function size:0x68 +fn_804729BC = .text:0x804729BC; // type:function size:0x4C +fn_80472A08 = .text:0x80472A08; // type:function size:0x4 +fn_80472A0C = .text:0x80472A0C; // type:function size:0x3C +fn_80472A48 = .text:0x80472A48; // type:function size:0x40 +fn_80472A88 = .text:0x80472A88; // type:function size:0x8C +fn_80472B14 = .text:0x80472B14; // type:function size:0x8 +fn_80472B1C = .text:0x80472B1C; // type:function size:0x2C +fn_80472B48 = .text:0x80472B48; // type:function size:0x58 +fn_80472BA0 = .text:0x80472BA0; // type:function size:0xE8 +fn_80472C88 = .text:0x80472C88; // type:function size:0x4 +fn_80472C8C = .text:0x80472C8C; // type:function size:0x88 +fn_80472D14 = .text:0x80472D14; // type:function size:0x2C +fn_80472D40 = .text:0x80472D40; // type:function size:0x10 +fn_80472D50 = .text:0x80472D50; // type:function size:0x64 +fn_80472DB4 = .text:0x80472DB4; // type:function size:0x50 +fn_80472E04 = .text:0x80472E04; // type:function size:0x60 +fn_80472E64 = .text:0x80472E64; // type:function size:0x14 +fn_80472E78 = .text:0x80472E78; // type:function size:0x54 +fn_80472ECC = .text:0x80472ECC; // type:function size:0xC +fn_80472ED8 = .text:0x80472ED8; // type:function size:0x38 +fn_80472F10 = .text:0x80472F10; // type:function size:0xB0 +fn_80472FC0 = .text:0x80472FC0; // type:function size:0x2C +fn_80472FEC = .text:0x80472FEC; // type:function size:0x84 +fn_80473070 = .text:0x80473070; // type:function size:0x2C +fn_8047309C = .text:0x8047309C; // type:function size:0x78 +fn_80473114 = .text:0x80473114; // type:function size:0x80 +fn_80473194 = .text:0x80473194; // type:function size:0x2C +fn_804731C0 = .text:0x804731C0; // type:function size:0x88 +fn_80473248 = .text:0x80473248; // type:function size:0x8 +fn_80473250 = .text:0x80473250; // type:function size:0x84 +fn_804732D4 = .text:0x804732D4; // type:function size:0x84 +fn_80473358 = .text:0x80473358; // type:function size:0x8 +fn_80473360 = .text:0x80473360; // type:function size:0x8 +fn_80473368 = .text:0x80473368; // type:function size:0x8 +fn_80473370 = .text:0x80473370; // type:function size:0x8 +fn_80473378 = .text:0x80473378; // type:function size:0x8 +fn_80473380 = .text:0x80473380; // type:function size:0x8 +fn_80473388 = .text:0x80473388; // type:function size:0x8 +fn_80473390 = .text:0x80473390; // type:function size:0x8 +fn_80473398 = .text:0x80473398; // type:function size:0x8 +fn_804733A0 = .text:0x804733A0; // type:function size:0x9C +fn_8047343C = .text:0x8047343C; // type:function size:0x108 +fn_80473544 = .text:0x80473544; // type:function size:0x30 +fn_80473574 = .text:0x80473574; // type:function size:0x8C +fn_80473600 = .text:0x80473600; // type:function size:0x8C +fn_8047368C = .text:0x8047368C; // type:function size:0xB0 +fn_8047373C = .text:0x8047373C; // type:function size:0xCC +fn_80473808 = .text:0x80473808; // type:function size:0x5C +fn_80473864 = .text:0x80473864; // type:function size:0x60 +fn_804738C4 = .text:0x804738C4; // type:function size:0x160 +fn_80473A24 = .text:0x80473A24; // type:function size:0x28 +fn_80473A4C = .text:0x80473A4C; // type:function size:0x60 +fn_80473AAC = .text:0x80473AAC; // type:function size:0xCC +fn_80473B78 = .text:0x80473B78; // type:function size:0x5C +fn_80473BD4 = .text:0x80473BD4; // type:function size:0x5C +fn_80473C30 = .text:0x80473C30; // type:function size:0x60 +fn_80473C90 = .text:0x80473C90; // type:function size:0x5C +fn_80473CEC = .text:0x80473CEC; // type:function size:0x114 +fn_80473E00 = .text:0x80473E00; // type:function size:0x5C +fn_80473E5C = .text:0x80473E5C; // type:function size:0x54 +fn_80473EB0 = .text:0x80473EB0; // type:function size:0x5C +fn_80473F0C = .text:0x80473F0C; // type:function size:0xC +__ct__20RealGuitarControllerFP4UserPC9DataArrayP23BeatMatchControllerSinkbb = .text:0x80473F18; // type:function size:0x88 +__dt__20RealGuitarControllerFv = .text:0x80473FA0; // type:function size:0x6C +fn_8047400C = .text:0x8047400C; // type:function size:0x4 +fn_80474010 = .text:0x80474010; // type:function size:0x8 +fn_80474018 = .text:0x80474018; // type:function size:0x8 +fn_80474020 = .text:0x80474020; // type:function size:0xC +fn_8047402C = .text:0x8047402C; // type:function size:0x8 +fn_80474034 = .text:0x80474034; // type:function size:0x8 +fn_8047403C = .text:0x8047403C; // type:function size:0x4 +fn_80474040 = .text:0x80474040; // type:function size:0x10 +OnMsg__20RealGuitarControllerFRC17StringStrummedMsg = .text:0x80474050; // type:function size:0x158 +OnMsg__20RealGuitarControllerFRC10RGSwingMsg = .text:0x804741A8; // type:function size:0x140 +OnMsg__20RealGuitarControllerFRC13ButtonDownMsg = .text:0x804742E8; // type:function size:0xB8 +OnMsg__20RealGuitarControllerFRC11ButtonUpMsg = .text:0x804743A0; // type:function size:0xB8 +OnMsg__20RealGuitarControllerFRC18RGAccelerometerMsg = .text:0x80474458; // type:function size:0xB0 +Handle__20RealGuitarControllerFP9DataArrayb = .text:0x80474508; // type:function size:0x384 +fn_8047488C = .text:0x8047488C; // type:function size:0xE8 +fn_80474974 = .text:0x80474974; // type:function size:0x58 +fn_804749CC = .text:0x804749CC; // type:function size:0x38 +fn_80474A04 = .text:0x80474A04; // type:function size:0x12C +fn_80474B30 = .text:0x80474B30; // type:function size:0x27C +fn_80474DAC = .text:0x80474DAC; // type:function size:0xCC +fn_80474E78 = .text:0x80474E78; // type:function size:0x74 +fn_80474EEC = .text:0x80474EEC; // type:function size:0x10 +fn_80474EFC = .text:0x80474EFC; // type:function size:0x54 +fn_80474F50 = .text:0x80474F50; // type:function size:0x54 +fn_80474FA4 = .text:0x80474FA4; // type:function size:0x6C +fn_80475010 = .text:0x80475010; // type:function size:0x130 +fn_80475140 = .text:0x80475140; // type:function size:0xF0 +fn_80475230 = .text:0x80475230; // type:function size:0xA4 +fn_804752D4 = .text:0x804752D4; // type:function size:0x8 +fn_804752DC = .text:0x804752DC; // type:function size:0x8 +fn_804752E4 = .text:0x804752E4; // type:function size:0x8 +fn_804752EC = .text:0x804752EC; // type:function size:0x58 +fn_80475344 = .text:0x80475344; // type:function size:0x58 +fn_8047539C = .text:0x8047539C; // type:function size:0xEC +fn_80475488 = .text:0x80475488; // type:function size:0x8 +fn_80475490 = .text:0x80475490; // type:function size:0xE8 +fn_80475578 = .text:0x80475578; // type:function size:0x20 +fn_80475598 = .text:0x80475598; // type:function size:0x120 +fn_804756B8 = .text:0x804756B8; // type:function size:0x14 +fn_804756CC = .text:0x804756CC; // type:function size:0x84 +fn_80475750 = .text:0x80475750; // type:function size:0x5C +fn_804757AC = .text:0x804757AC; // type:function size:0x18 +fn_804757C4 = .text:0x804757C4; // type:function size:0x4C +fn_80475810 = .text:0x80475810; // type:function size:0x38 +fn_80475848 = .text:0x80475848; // type:function size:0x78 +fn_804758C0 = .text:0x804758C0; // type:function size:0x64 +fn_80475924 = .text:0x80475924; // type:function size:0xB8 +fn_804759DC = .text:0x804759DC; // type:function size:0x60 +fn_80475A3C = .text:0x80475A3C; // type:function size:0x488 +fn_80475EC4 = .text:0x80475EC4; // type:function size:0x4 +fn_80475EC8 = .text:0x80475EC8; // type:function size:0x4 +fn_80475ECC = .text:0x80475ECC; // type:function size:0x4C +fn_80475F18 = .text:0x80475F18; // type:function size:0x28 +fn_80475F40 = .text:0x80475F40; // type:function size:0x28 +fn_80475F68 = .text:0x80475F68; // type:function size:0x90 +fn_80475FF8 = .text:0x80475FF8; // type:function size:0x84 +fn_8047607C = .text:0x8047607C; // type:function size:0x38 +fn_804760B4 = .text:0x804760B4; // type:function size:0xC +fn_804760C0 = .text:0x804760C0; // type:function size:0x10 +fn_804760D0 = .text:0x804760D0; // type:function size:0xC +fn_804760DC = .text:0x804760DC; // type:function size:0x2C +fn_80476108 = .text:0x80476108; // type:function size:0x20 +fn_80476128 = .text:0x80476128; // type:function size:0xC +fn_80476134 = .text:0x80476134; // type:function size:0x18 +fn_8047614C = .text:0x8047614C; // type:function size:0x28 +fn_80476174 = .text:0x80476174; // type:function size:0x80 +fn_804761F4 = .text:0x804761F4; // type:function size:0x10 +fn_80476204 = .text:0x80476204; // type:function size:0x1D4 +fn_804763D8 = .text:0x804763D8; // type:function size:0x40 +fn_80476418 = .text:0x80476418; // type:function size:0x94 +fn_804764AC = .text:0x804764AC; // type:function size:0xAC +fn_80476558 = .text:0x80476558; // type:function size:0xB4 +fn_8047660C = .text:0x8047660C; // type:function size:0x350 +fn_8047695C = .text:0x8047695C; // type:function size:0x364 +fn_80476CC0 = .text:0x80476CC0; // type:function size:0x2CC +fn_80476F8C = .text:0x80476F8C; // type:function size:0x2AC +fn_80477238 = .text:0x80477238; // type:function size:0x778 +fn_804779B0 = .text:0x804779B0; // type:function size:0x64 +fn_80477A14 = .text:0x80477A14; // type:function size:0xA4 +fn_80477AB8 = .text:0x80477AB8; // type:function size:0x88 +fn_80477B40 = .text:0x80477B40; // type:function size:0x108 +fn_80477C48 = .text:0x80477C48; // type:function size:0x1F8 +fn_80477E40 = .text:0x80477E40; // type:function size:0xB0 +fn_80477EF0 = .text:0x80477EF0; // type:function size:0x4 +fn_80477EF4 = .text:0x80477EF4; // type:function size:0x3C +fn_80477F30 = .text:0x80477F30; // type:function size:0x64 +fn_80477F94 = .text:0x80477F94; // type:function size:0xA8 +fn_8047803C = .text:0x8047803C; // type:function size:0x18 +fn_80478054 = .text:0x80478054; // type:function size:0x5C +fn_804780B0 = .text:0x804780B0; // type:function size:0xB8 +fn_80478168 = .text:0x80478168; // type:function size:0x4C +fn_804781B4 = .text:0x804781B4; // type:function size:0x10 +fn_804781C4 = .text:0x804781C4; // type:function size:0x10 +fn_804781D4 = .text:0x804781D4; // type:function size:0x10 +fn_804781E4 = .text:0x804781E4; // type:function size:0x8C +fn_80478270 = .text:0x80478270; // type:function size:0x54 +fn_804782C4 = .text:0x804782C4; // type:function size:0x60 +fn_80478324 = .text:0x80478324; // type:function size:0x90 +fn_804783B4 = .text:0x804783B4; // type:function size:0x6C +fn_80478420 = .text:0x80478420; // type:function size:0x64 +fn_80478484 = .text:0x80478484; // type:function size:0x60 +fn_804784E4 = .text:0x804784E4; // type:function size:0x6C +fn_80478550 = .text:0x80478550; // type:function size:0x6C +fn_804785BC = .text:0x804785BC; // type:function size:0x54 +fn_80478610 = .text:0x80478610; // type:function size:0x60 +fn_80478670 = .text:0x80478670; // type:function size:0xA0 +fn_80478710 = .text:0x80478710; // type:function size:0x74 +fn_80478784 = .text:0x80478784; // type:function size:0x60 +fn_804787E4 = .text:0x804787E4; // type:function size:0x90 +fn_80478874 = .text:0x80478874; // type:function size:0x6C +fn_804788E0 = .text:0x804788E0; // type:function size:0x94 +fn_80478974 = .text:0x80478974; // type:function size:0x178 +fn_80478AEC = .text:0x80478AEC; // type:function size:0x58 +fn_80478B44 = .text:0x80478B44; // type:function size:0x80 +fn_80478BC4 = .text:0x80478BC4; // type:function size:0x80 +fn_80478C44 = .text:0x80478C44; // type:function size:0x58 +fn_80478C9C = .text:0x80478C9C; // type:function size:0x54 +fn_80478CF0 = .text:0x80478CF0; // type:function size:0x5C +fn_80478D4C = .text:0x80478D4C; // type:function size:0x6C +fn_80478DB8 = .text:0x80478DB8; // type:function size:0x28 +fn_80478DE0 = .text:0x80478DE0; // type:function size:0x8 +fn_80478DE8 = .text:0x80478DE8; // type:function size:0x8 +fn_80478DF0 = .text:0x80478DF0; // type:function size:0x3C +fn_80478E2C = .text:0x80478E2C; // type:function size:0x24 +fn_80478E50 = .text:0x80478E50; // type:function size:0x4 +fn_80478E54 = .text:0x80478E54; // type:function size:0x88 +fn_80478EDC = .text:0x80478EDC; // type:function size:0x2C +fn_80478F08 = .text:0x80478F08; // type:function size:0xB4 +fn_80478FBC = .text:0x80478FBC; // type:function size:0x30 +fn_80478FEC = .text:0x80478FEC; // type:function size:0x90 +fn_8047907C = .text:0x8047907C; // type:function size:0x10 +fn_8047908C = .text:0x8047908C; // type:function size:0x30 +fn_804790BC = .text:0x804790BC; // type:function size:0x30 +fn_804790EC = .text:0x804790EC; // type:function size:0x40 +fn_8047912C = .text:0x8047912C; // type:function size:0x98 +fn_804791C4 = .text:0x804791C4; // type:function size:0xB4 +fn_80479278 = .text:0x80479278; // type:function size:0xC0 +fn_80479338 = .text:0x80479338; // type:function size:0x68 +fn_804793A0 = .text:0x804793A0; // type:function size:0x68 +fn_80479408 = .text:0x80479408; // type:function size:0x58 +fn_80479460 = .text:0x80479460; // type:function size:0x124 +fn_80479584 = .text:0x80479584; // type:function size:0x60 +fn_804795E4 = .text:0x804795E4; // type:function size:0x5C +fn_80479640 = .text:0x80479640; // type:function size:0x54 +fn_80479694 = .text:0x80479694; // type:function size:0x5C +fn_804796F0 = .text:0x804796F0; // type:function size:0x5C +fn_8047974C = .text:0x8047974C; // type:function size:0x54 +fn_804797A0 = .text:0x804797A0; // type:function size:0x48 +fn_804797E8 = .text:0x804797E8; // type:function size:0x4C +fn_80479834 = .text:0x80479834; // type:function size:0x4C +fn_80479880 = .text:0x80479880; // type:function size:0x8C +fn_8047990C = .text:0x8047990C; // type:function size:0x18 +fn_80479924 = .text:0x80479924; // type:function size:0x2C +fn_80479950 = .text:0x80479950; // type:function size:0x10 +fn_80479960 = .text:0x80479960; // type:function size:0x8 +fn_80479968 = .text:0x80479968; // type:function size:0x78 +fn_804799E0 = .text:0x804799E0; // type:function size:0x64 +__ct__8SongDataFv = .text:0x80479A44; // type:function size:0x2E4 +fn_80479D28 = .text:0x80479D28; // type:function size:0x58 +fn_80479D80 = .text:0x80479D80; // type:function size:0x80 +fn_80479E00 = .text:0x80479E00; // type:function size:0x80 +fn_80479E80 = .text:0x80479E80; // type:function size:0x58 +fn_80479ED8 = .text:0x80479ED8; // type:function size:0x54 +fn_80479F2C = .text:0x80479F2C; // type:function size:0x5C +fn_80479F88 = .text:0x80479F88; // type:function size:0x6C +fn_80479FF4 = .text:0x80479FF4; // type:function size:0x28 +fn_8047A01C = .text:0x8047A01C; // type:function size:0x8 +fn_8047A024 = .text:0x8047A024; // type:function size:0x8 +fn_8047A02C = .text:0x8047A02C; // type:function size:0x3C +fn_8047A068 = .text:0x8047A068; // type:function size:0x58 +fn_8047A0C0 = .text:0x8047A0C0; // type:function size:0x80 +fn_8047A140 = .text:0x8047A140; // type:function size:0x80 +fn_8047A1C0 = .text:0x8047A1C0; // type:function size:0x58 +fn_8047A218 = .text:0x8047A218; // type:function size:0x54 +fn_8047A26C = .text:0x8047A26C; // type:function size:0x5C +fn_8047A2C8 = .text:0x8047A2C8; // type:function size:0x6C +fn_8047A334 = .text:0x8047A334; // type:function size:0x28 +fn_8047A35C = .text:0x8047A35C; // type:function size:0x8 +fn_8047A364 = .text:0x8047A364; // type:function size:0x3C +fn_8047A3A0 = .text:0x8047A3A0; // type:function size:0x30 +fn_8047A3D0 = .text:0x8047A3D0; // type:function size:0x30 +fn_8047A400 = .text:0x8047A400; // type:function size:0x40 +fn_8047A440 = .text:0x8047A440; // type:function size:0x30 +fn_8047A470 = .text:0x8047A470; // type:function size:0x30 +fn_8047A4A0 = .text:0x8047A4A0; // type:function size:0x40 +__ct__10HxSongDataFv = .text:0x8047A4E0; // type:function size:0x10 +__ct__16GemListInterfaceFv = .text:0x8047A4F0; // type:function size:0x10 +__ct__22InternalSongParserSinkFv = .text:0x8047A500; // type:function size:0x10 +__dt__8SongDataFv = .text:0x8047A510; // type:function size:0x4B8 +fn_8047A9C8 = .text:0x8047A9C8; // type:function size:0x58 +fn_8047AA20 = .text:0x8047AA20; // type:function size:0x58 +fn_8047AA78 = .text:0x8047AA78; // type:function size:0x58 +fn_8047AAD0 = .text:0x8047AAD0; // type:function size:0x58 +fn_8047AB28 = .text:0x8047AB28; // type:function size:0x80 +fn_8047ABA8 = .text:0x8047ABA8; // type:function size:0x80 +fn_8047AC28 = .text:0x8047AC28; // type:function size:0x58 +fn_8047AC80 = .text:0x8047AC80; // type:function size:0x54 +fn_8047ACD4 = .text:0x8047ACD4; // type:function size:0x5C +fn_8047AD30 = .text:0x8047AD30; // type:function size:0x6C +fn_8047AD9C = .text:0x8047AD9C; // type:function size:0x28 +fn_8047ADC4 = .text:0x8047ADC4; // type:function size:0x8 +fn_8047ADCC = .text:0x8047ADCC; // type:function size:0x3C +fn_8047AE08 = .text:0x8047AE08; // type:function size:0x68 +fn_8047AE70 = .text:0x8047AE70; // type:function size:0x58 +fn_8047AEC8 = .text:0x8047AEC8; // type:function size:0x80 +fn_8047AF48 = .text:0x8047AF48; // type:function size:0x80 +fn_8047AFC8 = .text:0x8047AFC8; // type:function size:0x58 +fn_8047B020 = .text:0x8047B020; // type:function size:0x54 +fn_8047B074 = .text:0x8047B074; // type:function size:0x58 +fn_8047B0CC = .text:0x8047B0CC; // type:function size:0x58 +fn_8047B124 = .text:0x8047B124; // type:function size:0x80 +fn_8047B1A4 = .text:0x8047B1A4; // type:function size:0x80 +fn_8047B224 = .text:0x8047B224; // type:function size:0x58 +fn_8047B27C = .text:0x8047B27C; // type:function size:0x54 +fn_8047B2D0 = .text:0x8047B2D0; // type:function size:0x5C +fn_8047B32C = .text:0x8047B32C; // type:function size:0x6C +fn_8047B398 = .text:0x8047B398; // type:function size:0x28 +fn_8047B3C0 = .text:0x8047B3C0; // type:function size:0x8 +fn_8047B3C8 = .text:0x8047B3C8; // type:function size:0x58 +fn_8047B420 = .text:0x8047B420; // type:function size:0x80 +fn_8047B4A0 = .text:0x8047B4A0; // type:function size:0x80 +fn_8047B520 = .text:0x8047B520; // type:function size:0x58 +fn_8047B578 = .text:0x8047B578; // type:function size:0x54 +fn_8047B5CC = .text:0x8047B5CC; // type:function size:0x5C +fn_8047B628 = .text:0x8047B628; // type:function size:0x6C +fn_8047B694 = .text:0x8047B694; // type:function size:0x28 +fn_8047B6BC = .text:0x8047B6BC; // type:function size:0x8 +fn_8047B6C4 = .text:0x8047B6C4; // type:function size:0x3C +fn_8047B700 = .text:0x8047B700; // type:function size:0x8 +fn_8047B708 = .text:0x8047B708; // type:function size:0x3C +fn_8047B744 = .text:0x8047B744; // type:function size:0x58 +fn_8047B79C = .text:0x8047B79C; // type:function size:0x58 +fn_8047B7F4 = .text:0x8047B7F4; // type:function size:0x80 +fn_8047B874 = .text:0x8047B874; // type:function size:0x80 +fn_8047B8F4 = .text:0x8047B8F4; // type:function size:0x58 +fn_8047B94C = .text:0x8047B94C; // type:function size:0x54 +fn_8047B9A0 = .text:0x8047B9A0; // type:function size:0x5C +fn_8047B9FC = .text:0x8047B9FC; // type:function size:0x6C +fn_8047BA68 = .text:0x8047BA68; // type:function size:0x28 +fn_8047BA90 = .text:0x8047BA90; // type:function size:0x8 +fn_8047BA98 = .text:0x8047BA98; // type:function size:0x58 +fn_8047BAF0 = .text:0x8047BAF0; // type:function size:0x80 +fn_8047BB70 = .text:0x8047BB70; // type:function size:0x80 +fn_8047BBF0 = .text:0x8047BBF0; // type:function size:0x58 +fn_8047BC48 = .text:0x8047BC48; // type:function size:0x54 +fn_8047BC9C = .text:0x8047BC9C; // type:function size:0x5C +fn_8047BCF8 = .text:0x8047BCF8; // type:function size:0x6C +fn_8047BD64 = .text:0x8047BD64; // type:function size:0x28 +fn_8047BD8C = .text:0x8047BD8C; // type:function size:0x8 +fn_8047BD94 = .text:0x8047BD94; // type:function size:0x3C +fn_8047BDD0 = .text:0x8047BDD0; // type:function size:0x8 +fn_8047BDD8 = .text:0x8047BDD8; // type:function size:0x3C +fn_8047BE14 = .text:0x8047BE14; // type:function size:0x58 +fn_8047BE6C = .text:0x8047BE6C; // type:function size:0x58 +fn_8047BEC4 = .text:0x8047BEC4; // type:function size:0x80 +fn_8047BF44 = .text:0x8047BF44; // type:function size:0x80 +fn_8047BFC4 = .text:0x8047BFC4; // type:function size:0x58 +fn_8047C01C = .text:0x8047C01C; // type:function size:0x54 +fn_8047C070 = .text:0x8047C070; // type:function size:0x5C +fn_8047C0CC = .text:0x8047C0CC; // type:function size:0x6C +fn_8047C138 = .text:0x8047C138; // type:function size:0x28 +fn_8047C160 = .text:0x8047C160; // type:function size:0x8 +fn_8047C168 = .text:0x8047C168; // type:function size:0x58 +fn_8047C1C0 = .text:0x8047C1C0; // type:function size:0x80 +fn_8047C240 = .text:0x8047C240; // type:function size:0x80 +fn_8047C2C0 = .text:0x8047C2C0; // type:function size:0x58 +fn_8047C318 = .text:0x8047C318; // type:function size:0x54 +fn_8047C36C = .text:0x8047C36C; // type:function size:0x5C +fn_8047C3C8 = .text:0x8047C3C8; // type:function size:0x6C +fn_8047C434 = .text:0x8047C434; // type:function size:0x28 +fn_8047C45C = .text:0x8047C45C; // type:function size:0x8 +fn_8047C464 = .text:0x8047C464; // type:function size:0x3C +fn_8047C4A0 = .text:0x8047C4A0; // type:function size:0x8 +fn_8047C4A8 = .text:0x8047C4A8; // type:function size:0x3C +fn_8047C4E4 = .text:0x8047C4E4; // type:function size:0x58 +fn_8047C53C = .text:0x8047C53C; // type:function size:0x58 +fn_8047C594 = .text:0x8047C594; // type:function size:0x80 +fn_8047C614 = .text:0x8047C614; // type:function size:0x80 +fn_8047C694 = .text:0x8047C694; // type:function size:0x58 +fn_8047C6EC = .text:0x8047C6EC; // type:function size:0x54 +fn_8047C740 = .text:0x8047C740; // type:function size:0x5C +fn_8047C79C = .text:0x8047C79C; // type:function size:0x6C +fn_8047C808 = .text:0x8047C808; // type:function size:0x28 +fn_8047C830 = .text:0x8047C830; // type:function size:0x8 +fn_8047C838 = .text:0x8047C838; // type:function size:0x58 +fn_8047C890 = .text:0x8047C890; // type:function size:0x80 +fn_8047C910 = .text:0x8047C910; // type:function size:0x80 +fn_8047C990 = .text:0x8047C990; // type:function size:0x58 +fn_8047C9E8 = .text:0x8047C9E8; // type:function size:0x54 +fn_8047CA3C = .text:0x8047CA3C; // type:function size:0x5C +fn_8047CA98 = .text:0x8047CA98; // type:function size:0x6C +fn_8047CB04 = .text:0x8047CB04; // type:function size:0x28 +fn_8047CB2C = .text:0x8047CB2C; // type:function size:0x8 +fn_8047CB34 = .text:0x8047CB34; // type:function size:0x3C +fn_8047CB70 = .text:0x8047CB70; // type:function size:0x8 +fn_8047CB78 = .text:0x8047CB78; // type:function size:0x3C +fn_8047CBB4 = .text:0x8047CBB4; // type:function size:0x98 +fn_8047CC4C = .text:0x8047CC4C; // type:function size:0x1F4 +fn_8047CE40 = .text:0x8047CE40; // type:function size:0x1CC +fn_8047D00C = .text:0x8047D00C; // type:function size:0x5C +fn_8047D068 = .text:0x8047D068; // type:function size:0x4 +fn_8047D06C = .text:0x8047D06C; // type:function size:0x88 +fn_8047D0F4 = .text:0x8047D0F4; // type:function size:0x2C +fn_8047D120 = .text:0x8047D120; // type:function size:0x10 +fn_8047D130 = .text:0x8047D130; // type:function size:0x4 +fn_8047D134 = .text:0x8047D134; // type:function size:0x40 +fn_8047D174 = .text:0x8047D174; // type:function size:0x30 +fn_8047D1A4 = .text:0x8047D1A4; // type:function size:0x30 +fn_8047D1D4 = .text:0x8047D1D4; // type:function size:0x40 +fn_8047D214 = .text:0x8047D214; // type:function size:0x84 +fn_8047D298 = .text:0x8047D298; // type:function size:0x30 +fn_8047D2C8 = .text:0x8047D2C8; // type:function size:0x30 +fn_8047D2F8 = .text:0x8047D2F8; // type:function size:0x40 +fn_8047D338 = .text:0x8047D338; // type:function size:0x30 +fn_8047D368 = .text:0x8047D368; // type:function size:0x30 +fn_8047D398 = .text:0x8047D398; // type:function size:0x40 +fn_8047D3D8 = .text:0x8047D3D8; // type:function size:0x4 +fn_8047D3DC = .text:0x8047D3DC; // type:function size:0x90 +fn_8047D46C = .text:0x8047D46C; // type:function size:0x4 +fn_8047D470 = .text:0x8047D470; // type:function size:0x40 +fn_8047D4B0 = .text:0x8047D4B0; // type:function size:0xEC +fn_8047D59C = .text:0x8047D59C; // type:function size:0x2C +fn_8047D5C8 = .text:0x8047D5C8; // type:function size:0x8 +fn_8047D5D0 = .text:0x8047D5D0; // type:function size:0x2C +fn_8047D5FC = .text:0x8047D5FC; // type:function size:0x58 +fn_8047D654 = .text:0x8047D654; // type:function size:0x8 +fn_8047D65C = .text:0x8047D65C; // type:function size:0x54 +fn_8047D6B0 = .text:0x8047D6B0; // type:function size:0x48 +fn_8047D6F8 = .text:0x8047D6F8; // type:function size:0x4C +fn_8047D744 = .text:0x8047D744; // type:function size:0x4C +fn_8047D790 = .text:0x8047D790; // type:function size:0x8C +fn_8047D81C = .text:0x8047D81C; // type:function size:0x2C +fn_8047D848 = .text:0x8047D848; // type:function size:0x21C +__dt__10SongParserFv = .text:0x8047DA64; // type:function size:0x104 +fn_8047DB68 = .text:0x8047DB68; // type:function size:0x58 +fn_8047DBC0 = .text:0x8047DBC0; // type:function size:0x80 +fn_8047DC40 = .text:0x8047DC40; // type:function size:0x80 +fn_8047DCC0 = .text:0x8047DCC0; // type:function size:0x58 +fn_8047DD18 = .text:0x8047DD18; // type:function size:0x54 +fn_8047DD6C = .text:0x8047DD6C; // type:function size:0x5C +fn_8047DDC8 = .text:0x8047DDC8; // type:function size:0x6C +fn_8047DE34 = .text:0x8047DE34; // type:function size:0x28 +fn_8047DE5C = .text:0x8047DE5C; // type:function size:0x8 +fn_8047DE64 = .text:0x8047DE64; // type:function size:0x3C +fn_8047DEA0 = .text:0x8047DEA0; // type:function size:0x58 +fn_8047DEF8 = .text:0x8047DEF8; // type:function size:0x80 +fn_8047DF78 = .text:0x8047DF78; // type:function size:0x80 +fn_8047DFF8 = .text:0x8047DFF8; // type:function size:0x58 +fn_8047E050 = .text:0x8047E050; // type:function size:0x10 +fn_8047E060 = .text:0x8047E060; // type:function size:0x54 +fn_8047E0B4 = .text:0x8047E0B4; // type:function size:0x5C +fn_8047E110 = .text:0x8047E110; // type:function size:0x6C +fn_8047E17C = .text:0x8047E17C; // type:function size:0x28 +fn_8047E1A4 = .text:0x8047E1A4; // type:function size:0x10 +fn_8047E1B4 = .text:0x8047E1B4; // type:function size:0x8 +fn_8047E1BC = .text:0x8047E1BC; // type:function size:0x58 +fn_8047E214 = .text:0x8047E214; // type:function size:0x58 +fn_8047E26C = .text:0x8047E26C; // type:function size:0x80 +fn_8047E2EC = .text:0x8047E2EC; // type:function size:0x80 +fn_8047E36C = .text:0x8047E36C; // type:function size:0x58 +fn_8047E3C4 = .text:0x8047E3C4; // type:function size:0x54 +fn_8047E418 = .text:0x8047E418; // type:function size:0x5C +fn_8047E474 = .text:0x8047E474; // type:function size:0x6C +fn_8047E4E0 = .text:0x8047E4E0; // type:function size:0x28 +fn_8047E508 = .text:0x8047E508; // type:function size:0x8 +fn_8047E510 = .text:0x8047E510; // type:function size:0x3C +fn_8047E54C = .text:0x8047E54C; // type:function size:0xC +fn_8047E558 = .text:0x8047E558; // type:function size:0x8 +fn_8047E560 = .text:0x8047E560; // type:function size:0x3C +fn_8047E59C = .text:0x8047E59C; // type:function size:0x14 +fn_8047E5B0 = .text:0x8047E5B0; // type:function size:0x58 +fn_8047E608 = .text:0x8047E608; // type:function size:0x80 +fn_8047E688 = .text:0x8047E688; // type:function size:0x80 +fn_8047E708 = .text:0x8047E708; // type:function size:0x58 +fn_8047E760 = .text:0x8047E760; // type:function size:0x54 +fn_8047E7B4 = .text:0x8047E7B4; // type:function size:0x5C +fn_8047E810 = .text:0x8047E810; // type:function size:0x6C +fn_8047E87C = .text:0x8047E87C; // type:function size:0x28 +fn_8047E8A4 = .text:0x8047E8A4; // type:function size:0x8 +fn_8047E8AC = .text:0x8047E8AC; // type:function size:0x3C +fn_8047E8E8 = .text:0x8047E8E8; // type:function size:0x58 +fn_8047E940 = .text:0x8047E940; // type:function size:0x80 +fn_8047E9C0 = .text:0x8047E9C0; // type:function size:0x80 +fn_8047EA40 = .text:0x8047EA40; // type:function size:0x58 +fn_8047EA98 = .text:0x8047EA98; // type:function size:0x54 +fn_8047EAEC = .text:0x8047EAEC; // type:function size:0x5C +fn_8047EB48 = .text:0x8047EB48; // type:function size:0x6C +fn_8047EBB4 = .text:0x8047EBB4; // type:function size:0x28 +fn_8047EBDC = .text:0x8047EBDC; // type:function size:0x8 +fn_8047EBE4 = .text:0x8047EBE4; // type:function size:0x3C +fn_8047EC20 = .text:0x8047EC20; // type:function size:0x58 +fn_8047EC78 = .text:0x8047EC78; // type:function size:0x58 +fn_8047ECD0 = .text:0x8047ECD0; // type:function size:0x60 +fn_8047ED30 = .text:0x8047ED30; // type:function size:0x58 +fn_8047ED88 = .text:0x8047ED88; // type:function size:0x10 +fn_8047ED98 = .text:0x8047ED98; // type:function size:0x8 +fn_8047EDA0 = .text:0x8047EDA0; // type:function size:0xA4 +fn_8047EE44 = .text:0x8047EE44; // type:function size:0x98 +fn_8047EEDC = .text:0x8047EEDC; // type:function size:0x24 +fn_8047EF00 = .text:0x8047EF00; // type:function size:0x34 +fn_8047EF34 = .text:0x8047EF34; // type:function size:0x178 +fn_8047F0AC = .text:0x8047F0AC; // type:function size:0x198 +fn_8047F244 = .text:0x8047F244; // type:function size:0x2C +fn_8047F270 = .text:0x8047F270; // type:function size:0x14 +fn_8047F284 = .text:0x8047F284; // type:function size:0xD4 +fn_8047F358 = .text:0x8047F358; // type:function size:0xB8 +fn_8047F410 = .text:0x8047F410; // type:function size:0x2E0 +fn_8047F6F0 = .text:0x8047F6F0; // type:function size:0x30 +fn_8047F720 = .text:0x8047F720; // type:function size:0x210 +fn_8047F930 = .text:0x8047F930; // type:function size:0x4 +fn_8047F934 = .text:0x8047F934; // type:function size:0x88 +fn_8047F9BC = .text:0x8047F9BC; // type:function size:0x2C +fn_8047F9E8 = .text:0x8047F9E8; // type:function size:0x10 +fn_8047F9F8 = .text:0x8047F9F8; // type:function size:0x24 +fn_8047FA1C = .text:0x8047FA1C; // type:function size:0x24 +fn_8047FA40 = .text:0x8047FA40; // type:function size:0x4 +fn_8047FA44 = .text:0x8047FA44; // type:function size:0x3C +fn_8047FA80 = .text:0x8047FA80; // type:function size:0x40 +fn_8047FAC0 = .text:0x8047FAC0; // type:function size:0x8C +fn_8047FB4C = .text:0x8047FB4C; // type:function size:0x8 +fn_8047FB54 = .text:0x8047FB54; // type:function size:0x2C +fn_8047FB80 = .text:0x8047FB80; // type:function size:0x58 +fn_8047FBD8 = .text:0x8047FBD8; // type:function size:0x28 +fn_8047FC00 = .text:0x8047FC00; // type:function size:0x68 +fn_8047FC68 = .text:0x8047FC68; // type:function size:0x344 +fn_8047FFAC = .text:0x8047FFAC; // type:function size:0x58 +fn_80480004 = .text:0x80480004; // type:function size:0x8 +fn_8048000C = .text:0x8048000C; // type:function size:0xDC +fn_804800E8 = .text:0x804800E8; // type:function size:0x228 +fn_80480310 = .text:0x80480310; // type:function size:0x20 +fn_80480330 = .text:0x80480330; // type:function size:0x3A8 +fn_804806D8 = .text:0x804806D8; // type:function size:0x8 +fn_804806E0 = .text:0x804806E0; // type:function size:0xA0 +fn_80480780 = .text:0x80480780; // type:function size:0x70 +fn_804807F0 = .text:0x804807F0; // type:function size:0x58 +fn_80480848 = .text:0x80480848; // type:function size:0x24 +fn_8048086C = .text:0x8048086C; // type:function size:0x60 +fn_804808CC = .text:0x804808CC; // type:function size:0x294 +fn_80480B60 = .text:0x80480B60; // type:function size:0x8 +fn_80480B68 = .text:0x80480B68; // type:function size:0x40 +fn_80480BA8 = .text:0x80480BA8; // type:function size:0x30 +fn_80480BD8 = .text:0x80480BD8; // type:function size:0x30 +fn_80480C08 = .text:0x80480C08; // type:function size:0x40 +fn_80480C48 = .text:0x80480C48; // type:function size:0x40 +fn_80480C88 = .text:0x80480C88; // type:function size:0x30 +fn_80480CB8 = .text:0x80480CB8; // type:function size:0x30 +fn_80480CE8 = .text:0x80480CE8; // type:function size:0x40 +fn_80480D28 = .text:0x80480D28; // type:function size:0x40 +fn_80480D68 = .text:0x80480D68; // type:function size:0x30 +fn_80480D98 = .text:0x80480D98; // type:function size:0x30 +fn_80480DC8 = .text:0x80480DC8; // type:function size:0x40 +fn_80480E08 = .text:0x80480E08; // type:function size:0x40 +fn_80480E48 = .text:0x80480E48; // type:function size:0x30 +fn_80480E78 = .text:0x80480E78; // type:function size:0x30 +fn_80480EA8 = .text:0x80480EA8; // type:function size:0x40 +fn_80480EE8 = .text:0x80480EE8; // type:function size:0x124 +fn_8048100C = .text:0x8048100C; // type:function size:0x8 +fn_80481014 = .text:0x80481014; // type:function size:0x3C +fn_80481050 = .text:0x80481050; // type:function size:0x40 +fn_80481090 = .text:0x80481090; // type:function size:0xEC +fn_8048117C = .text:0x8048117C; // type:function size:0x2C +fn_804811A8 = .text:0x804811A8; // type:function size:0x8 +fn_804811B0 = .text:0x804811B0; // type:function size:0x2C +fn_804811DC = .text:0x804811DC; // type:function size:0x58 +fn_80481234 = .text:0x80481234; // type:function size:0x8 +fn_8048123C = .text:0x8048123C; // type:function size:0x54 +fn_80481290 = .text:0x80481290; // type:function size:0x48 +fn_804812D8 = .text:0x804812D8; // type:function size:0x4C +fn_80481324 = .text:0x80481324; // type:function size:0x4C +fn_80481370 = .text:0x80481370; // type:function size:0x8C +fn_804813FC = .text:0x804813FC; // type:function size:0x2C +fn_80481428 = .text:0x80481428; // type:function size:0x8 +fn_80481430 = .text:0x80481430; // type:function size:0x3C +fn_8048146C = .text:0x8048146C; // type:function size:0x40 +fn_804814AC = .text:0x804814AC; // type:function size:0xEC +fn_80481598 = .text:0x80481598; // type:function size:0x2C +fn_804815C4 = .text:0x804815C4; // type:function size:0x8 +fn_804815CC = .text:0x804815CC; // type:function size:0x2C +fn_804815F8 = .text:0x804815F8; // type:function size:0x58 +fn_80481650 = .text:0x80481650; // type:function size:0x8 +fn_80481658 = .text:0x80481658; // type:function size:0x54 +fn_804816AC = .text:0x804816AC; // type:function size:0x48 +fn_804816F4 = .text:0x804816F4; // type:function size:0x4C +fn_80481740 = .text:0x80481740; // type:function size:0x4C +fn_8048178C = .text:0x8048178C; // type:function size:0x8C +fn_80481818 = .text:0x80481818; // type:function size:0x2C +fn_80481844 = .text:0x80481844; // type:function size:0x8 +fn_8048184C = .text:0x8048184C; // type:function size:0x3C +fn_80481888 = .text:0x80481888; // type:function size:0x40 +fn_804818C8 = .text:0x804818C8; // type:function size:0xEC +fn_804819B4 = .text:0x804819B4; // type:function size:0x2C +fn_804819E0 = .text:0x804819E0; // type:function size:0x8 +fn_804819E8 = .text:0x804819E8; // type:function size:0x2C +fn_80481A14 = .text:0x80481A14; // type:function size:0x58 +fn_80481A6C = .text:0x80481A6C; // type:function size:0x8 +fn_80481A74 = .text:0x80481A74; // type:function size:0x54 +fn_80481AC8 = .text:0x80481AC8; // type:function size:0x48 +fn_80481B10 = .text:0x80481B10; // type:function size:0x4C +fn_80481B5C = .text:0x80481B5C; // type:function size:0x4C +fn_80481BA8 = .text:0x80481BA8; // type:function size:0x8C +fn_80481C34 = .text:0x80481C34; // type:function size:0x2C +fn_80481C60 = .text:0x80481C60; // type:function size:0x8 +fn_80481C68 = .text:0x80481C68; // type:function size:0x3C +fn_80481CA4 = .text:0x80481CA4; // type:function size:0x40 +fn_80481CE4 = .text:0x80481CE4; // type:function size:0xEC +fn_80481DD0 = .text:0x80481DD0; // type:function size:0x2C +fn_80481DFC = .text:0x80481DFC; // type:function size:0x8 +fn_80481E04 = .text:0x80481E04; // type:function size:0x2C +fn_80481E30 = .text:0x80481E30; // type:function size:0x58 +fn_80481E88 = .text:0x80481E88; // type:function size:0x8 +fn_80481E90 = .text:0x80481E90; // type:function size:0x54 +fn_80481EE4 = .text:0x80481EE4; // type:function size:0x48 +fn_80481F2C = .text:0x80481F2C; // type:function size:0x4C +fn_80481F78 = .text:0x80481F78; // type:function size:0x4C +fn_80481FC4 = .text:0x80481FC4; // type:function size:0x8C +fn_80482050 = .text:0x80482050; // type:function size:0x2C +fn_8048207C = .text:0x8048207C; // type:function size:0x4 +fn_80482080 = .text:0x80482080; // type:function size:0x60 +fn_804820E0 = .text:0x804820E0; // type:function size:0xC0 +fn_804821A0 = .text:0x804821A0; // type:function size:0x40 +fn_804821E0 = .text:0x804821E0; // type:function size:0x8 +fn_804821E8 = .text:0x804821E8; // type:function size:0x88 +fn_80482270 = .text:0x80482270; // type:function size:0x24 +fn_80482294 = .text:0x80482294; // type:function size:0x54 +fn_804822E8 = .text:0x804822E8; // type:function size:0x40 +fn_80482328 = .text:0x80482328; // type:function size:0x50 +fn_80482378 = .text:0x80482378; // type:function size:0x50 +fn_804823C8 = .text:0x804823C8; // type:function size:0xAC +fn_80482474 = .text:0x80482474; // type:function size:0xB0 +fn_80482524 = .text:0x80482524; // type:function size:0x64 +fn_80482588 = .text:0x80482588; // type:function size:0xAC +fn_80482634 = .text:0x80482634; // type:function size:0x4 +fn_80482638 = .text:0x80482638; // type:function size:0x88 +fn_804826C0 = .text:0x804826C0; // type:function size:0x2C +fn_804826EC = .text:0x804826EC; // type:function size:0x10 +fn_804826FC = .text:0x804826FC; // type:function size:0x14 +fn_80482710 = .text:0x80482710; // type:function size:0x4 +fn_80482714 = .text:0x80482714; // type:function size:0x88 +fn_8048279C = .text:0x8048279C; // type:function size:0x2C +fn_804827C8 = .text:0x804827C8; // type:function size:0xB4 +fn_8048287C = .text:0x8048287C; // type:function size:0x30 +fn_804828AC = .text:0x804828AC; // type:function size:0x98 +fn_80482944 = .text:0x80482944; // type:function size:0x5C +fn_804829A0 = .text:0x804829A0; // type:function size:0x70 +fn_80482A10 = .text:0x80482A10; // type:function size:0x10 +fn_80482A20 = .text:0x80482A20; // type:function size:0x30 +fn_80482A50 = .text:0x80482A50; // type:function size:0x30 +fn_80482A80 = .text:0x80482A80; // type:function size:0x40 +fn_80482AC0 = .text:0x80482AC0; // type:function size:0x88 +fn_80482B48 = .text:0x80482B48; // type:function size:0xAC +fn_80482BF4 = .text:0x80482BF4; // type:function size:0x4 +fn_80482BF8 = .text:0x80482BF8; // type:function size:0x88 +fn_80482C80 = .text:0x80482C80; // type:function size:0x2C +fn_80482CAC = .text:0x80482CAC; // type:function size:0x10 +fn_80482CBC = .text:0x80482CBC; // type:function size:0x48 +fn_80482D04 = .text:0x80482D04; // type:function size:0x40 +fn_80482D44 = .text:0x80482D44; // type:function size:0x4 +fn_80482D48 = .text:0x80482D48; // type:function size:0x88 +fn_80482DD0 = .text:0x80482DD0; // type:function size:0x2C +fn_80482DFC = .text:0x80482DFC; // type:function size:0xB4 +fn_80482EB0 = .text:0x80482EB0; // type:function size:0x30 +fn_80482EE0 = .text:0x80482EE0; // type:function size:0x98 +fn_80482F78 = .text:0x80482F78; // type:function size:0x5C +fn_80482FD4 = .text:0x80482FD4; // type:function size:0x70 +fn_80483044 = .text:0x80483044; // type:function size:0x10 +fn_80483054 = .text:0x80483054; // type:function size:0x30 +fn_80483084 = .text:0x80483084; // type:function size:0x30 +fn_804830B4 = .text:0x804830B4; // type:function size:0x40 +fn_804830F4 = .text:0x804830F4; // type:function size:0x5C +fn_80483150 = .text:0x80483150; // type:function size:0xAC +fn_804831FC = .text:0x804831FC; // type:function size:0x4 +fn_80483200 = .text:0x80483200; // type:function size:0x88 +fn_80483288 = .text:0x80483288; // type:function size:0x2C +fn_804832B4 = .text:0x804832B4; // type:function size:0x10 +fn_804832C4 = .text:0x804832C4; // type:function size:0x48 +fn_8048330C = .text:0x8048330C; // type:function size:0x28 +fn_80483334 = .text:0x80483334; // type:function size:0x40 +fn_80483374 = .text:0x80483374; // type:function size:0x4 +fn_80483378 = .text:0x80483378; // type:function size:0x88 +fn_80483400 = .text:0x80483400; // type:function size:0x2C +fn_8048342C = .text:0x8048342C; // type:function size:0xB4 +fn_804834E0 = .text:0x804834E0; // type:function size:0x30 +fn_80483510 = .text:0x80483510; // type:function size:0x98 +fn_804835A8 = .text:0x804835A8; // type:function size:0x5C +fn_80483604 = .text:0x80483604; // type:function size:0x70 +fn_80483674 = .text:0x80483674; // type:function size:0x10 +fn_80483684 = .text:0x80483684; // type:function size:0x30 +fn_804836B4 = .text:0x804836B4; // type:function size:0x30 +fn_804836E4 = .text:0x804836E4; // type:function size:0x40 +fn_80483724 = .text:0x80483724; // type:function size:0x5C +fn_80483780 = .text:0x80483780; // type:function size:0xAC +fn_8048382C = .text:0x8048382C; // type:function size:0x4 +fn_80483830 = .text:0x80483830; // type:function size:0x88 +fn_804838B8 = .text:0x804838B8; // type:function size:0x2C +fn_804838E4 = .text:0x804838E4; // type:function size:0x10 +fn_804838F4 = .text:0x804838F4; // type:function size:0x48 +fn_8048393C = .text:0x8048393C; // type:function size:0x40 +fn_8048397C = .text:0x8048397C; // type:function size:0x4 +fn_80483980 = .text:0x80483980; // type:function size:0x88 +fn_80483A08 = .text:0x80483A08; // type:function size:0x2C +fn_80483A34 = .text:0x80483A34; // type:function size:0xB4 +fn_80483AE8 = .text:0x80483AE8; // type:function size:0x30 +fn_80483B18 = .text:0x80483B18; // type:function size:0x98 +fn_80483BB0 = .text:0x80483BB0; // type:function size:0x5C +fn_80483C0C = .text:0x80483C0C; // type:function size:0x70 +fn_80483C7C = .text:0x80483C7C; // type:function size:0x10 +fn_80483C8C = .text:0x80483C8C; // type:function size:0x30 +fn_80483CBC = .text:0x80483CBC; // type:function size:0x30 +fn_80483CEC = .text:0x80483CEC; // type:function size:0x40 +fn_80483D2C = .text:0x80483D2C; // type:function size:0xBC +fn_80483DE8 = .text:0x80483DE8; // type:function size:0x9C +fn_80483E84 = .text:0x80483E84; // type:function size:0xC8 +fn_80483F4C = .text:0x80483F4C; // type:function size:0x58 +fn_80483FA4 = .text:0x80483FA4; // type:function size:0x8 +fn_80483FAC = .text:0x80483FAC; // type:function size:0x3C +fn_80483FE8 = .text:0x80483FE8; // type:function size:0x104 +fn_804840EC = .text:0x804840EC; // type:function size:0x24 +fn_80484110 = .text:0x80484110; // type:function size:0x94 +fn_804841A4 = .text:0x804841A4; // type:function size:0x8 +fn_804841AC = .text:0x804841AC; // type:function size:0x8 +fn_804841B4 = .text:0x804841B4; // type:function size:0x64 +fn_80484218 = .text:0x80484218; // type:function size:0x34 +fn_8048424C = .text:0x8048424C; // type:function size:0xE8 +fn_80484334 = .text:0x80484334; // type:function size:0x28 +fn_8048435C = .text:0x8048435C; // type:function size:0x8 +fn_80484364 = .text:0x80484364; // type:function size:0xAC +fn_80484410 = .text:0x80484410; // type:function size:0x24 +fn_80484434 = .text:0x80484434; // type:function size:0x6C +fn_804844A0 = .text:0x804844A0; // type:function size:0x68 +fn_80484508 = .text:0x80484508; // type:function size:0x78 +fn_80484580 = .text:0x80484580; // type:function size:0x68 +fn_804845E8 = .text:0x804845E8; // type:function size:0xCC +fn_804846B4 = .text:0x804846B4; // type:function size:0x1C +fn_804846D0 = .text:0x804846D0; // type:function size:0x28 +fn_804846F8 = .text:0x804846F8; // type:function size:0x6C +fn_80484764 = .text:0x80484764; // type:function size:0x50 +fn_804847B4 = .text:0x804847B4; // type:function size:0xE8 +fn_8048489C = .text:0x8048489C; // type:function size:0x8 +fn_804848A4 = .text:0x804848A4; // type:function size:0xAC +fn_80484950 = .text:0x80484950; // type:function size:0x24 +fn_80484974 = .text:0x80484974; // type:function size:0x6C +fn_804849E0 = .text:0x804849E0; // type:function size:0x68 +fn_80484A48 = .text:0x80484A48; // type:function size:0x28 +fn_80484A70 = .text:0x80484A70; // type:function size:0x6C +fn_80484ADC = .text:0x80484ADC; // type:function size:0x68 +fn_80484B44 = .text:0x80484B44; // type:function size:0xE8 +fn_80484C2C = .text:0x80484C2C; // type:function size:0x8 +fn_80484C34 = .text:0x80484C34; // type:function size:0xAC +fn_80484CE0 = .text:0x80484CE0; // type:function size:0x24 +fn_80484D04 = .text:0x80484D04; // type:function size:0x14 +fn_80484D18 = .text:0x80484D18; // type:function size:0x18 +fn_80484D30 = .text:0x80484D30; // type:function size:0x78 +fn_80484DA8 = .text:0x80484DA8; // type:function size:0x70 +fn_80484E18 = .text:0x80484E18; // type:function size:0xCC +fn_80484EE4 = .text:0x80484EE4; // type:function size:0x70 +fn_80484F54 = .text:0x80484F54; // type:function size:0x5C +fn_80484FB0 = .text:0x80484FB0; // type:function size:0x28 +fn_80484FD8 = .text:0x80484FD8; // type:function size:0x6C +fn_80485044 = .text:0x80485044; // type:function size:0x50 +fn_80485094 = .text:0x80485094; // type:function size:0xE8 +fn_8048517C = .text:0x8048517C; // type:function size:0x8 +fn_80485184 = .text:0x80485184; // type:function size:0xAC +fn_80485230 = .text:0x80485230; // type:function size:0x24 +fn_80485254 = .text:0x80485254; // type:function size:0x14 +fn_80485268 = .text:0x80485268; // type:function size:0x18 +fn_80485280 = .text:0x80485280; // type:function size:0x28 +fn_804852A8 = .text:0x804852A8; // type:function size:0x6C +fn_80485314 = .text:0x80485314; // type:function size:0x68 +fn_8048537C = .text:0x8048537C; // type:function size:0x5C +fn_804853D8 = .text:0x804853D8; // type:function size:0x128 +fn_80485500 = .text:0x80485500; // type:function size:0x3C +fn_8048553C = .text:0x8048553C; // type:function size:0x50 +fn_8048558C = .text:0x8048558C; // type:function size:0x58 +fn_804855E4 = .text:0x804855E4; // type:function size:0xA4 +fn_80485688 = .text:0x80485688; // type:function size:0x7C +fn_80485704 = .text:0x80485704; // type:function size:0x28 +fn_8048572C = .text:0x8048572C; // type:function size:0x4 +fn_80485730 = .text:0x80485730; // type:function size:0x8 +fn_80485738 = .text:0x80485738; // type:function size:0x58 +fn_80485790 = .text:0x80485790; // type:function size:0x8 +fn_80485798 = .text:0x80485798; // type:function size:0x8 +fn_804857A0 = .text:0x804857A0; // type:function size:0x8 +fn_804857A8 = .text:0x804857A8; // type:function size:0x100 +fn_804858A8 = .text:0x804858A8; // type:function size:0x4C +fn_804858F4 = .text:0x804858F4; // type:function size:0x8C +fn_80485980 = .text:0x80485980; // type:function size:0x4C +fn_804859CC = .text:0x804859CC; // type:function size:0x8 +fn_804859D4 = .text:0x804859D4; // type:function size:0x2C +fn_80485A00 = .text:0x80485A00; // type:function size:0xA0 +fn_80485AA0 = .text:0x80485AA0; // type:function size:0xD8 +fn_80485B78 = .text:0x80485B78; // type:function size:0x68 +fn_80485BE0 = .text:0x80485BE0; // type:function size:0x138 +fn_80485D18 = .text:0x80485D18; // type:function size:0x78 +fn_80485D90 = .text:0x80485D90; // type:function size:0x68 +fn_80485DF8 = .text:0x80485DF8; // type:function size:0x190 +fn_80485F88 = .text:0x80485F88; // type:function size:0x50 +fn_80485FD8 = .text:0x80485FD8; // type:function size:0x5C +fn_80486034 = .text:0x80486034; // type:function size:0x114 +fn_80486148 = .text:0x80486148; // type:function size:0x60 +fn_804861A8 = .text:0x804861A8; // type:function size:0x5C +fn_80486204 = .text:0x80486204; // type:function size:0x54 +fn_80486258 = .text:0x80486258; // type:function size:0x5C +fn_804862B4 = .text:0x804862B4; // type:function size:0x5C +fn_80486310 = .text:0x80486310; // type:function size:0x68 +fn_80486378 = .text:0x80486378; // type:function size:0x2C +fn_804863A4 = .text:0x804863A4; // type:function size:0xB4 +fn_80486458 = .text:0x80486458; // type:function size:0x30 +fn_80486488 = .text:0x80486488; // type:function size:0x98 +fn_80486520 = .text:0x80486520; // type:function size:0x70 +fn_80486590 = .text:0x80486590; // type:function size:0xCC +fn_8048665C = .text:0x8048665C; // type:function size:0x60 +fn_804866BC = .text:0x804866BC; // type:function size:0x5C +fn_80486718 = .text:0x80486718; // type:function size:0x60 +fn_80486778 = .text:0x80486778; // type:function size:0x5C +fn_804867D4 = .text:0x804867D4; // type:function size:0x114 +fn_804868E8 = .text:0x804868E8; // type:function size:0x5C +fn_80486944 = .text:0x80486944; // type:function size:0x54 +fn_80486998 = .text:0x80486998; // type:function size:0x5C +fn_804869F4 = .text:0x804869F4; // type:function size:0x160 +fn_80486B54 = .text:0x80486B54; // type:function size:0x8 +fn_80486B5C = .text:0x80486B5C; // type:function size:0x2C +fn_80486B88 = .text:0x80486B88; // type:function size:0x58 +fn_80486BE0 = .text:0x80486BE0; // type:function size:0x28 +fn_80486C08 = .text:0x80486C08; // type:function size:0x68 +fn_80486C70 = .text:0x80486C70; // type:function size:0x5C +fn_80486CCC = .text:0x80486CCC; // type:function size:0x60 +fn_80486D2C = .text:0x80486D2C; // type:function size:0x124 +fn_80486E50 = .text:0x80486E50; // type:function size:0x60 +fn_80486EB0 = .text:0x80486EB0; // type:function size:0x5C +fn_80486F0C = .text:0x80486F0C; // type:function size:0x54 +fn_80486F60 = .text:0x80486F60; // type:function size:0x5C +fn_80486FBC = .text:0x80486FBC; // type:function size:0x5C +fn_80487018 = .text:0x80487018; // type:function size:0x124 +fn_8048713C = .text:0x8048713C; // type:function size:0x60 +fn_8048719C = .text:0x8048719C; // type:function size:0x5C +fn_804871F8 = .text:0x804871F8; // type:function size:0x54 +fn_8048724C = .text:0x8048724C; // type:function size:0x5C +fn_804872A8 = .text:0x804872A8; // type:function size:0x5C +fn_80487304 = .text:0x80487304; // type:function size:0x124 +fn_80487428 = .text:0x80487428; // type:function size:0x60 +fn_80487488 = .text:0x80487488; // type:function size:0x5C +fn_804874E4 = .text:0x804874E4; // type:function size:0x54 +fn_80487538 = .text:0x80487538; // type:function size:0x5C +fn_80487594 = .text:0x80487594; // type:function size:0x5C +fn_804875F0 = .text:0x804875F0; // type:function size:0x124 +fn_80487714 = .text:0x80487714; // type:function size:0x60 +fn_80487774 = .text:0x80487774; // type:function size:0x5C +fn_804877D0 = .text:0x804877D0; // type:function size:0x54 +fn_80487824 = .text:0x80487824; // type:function size:0x5C +fn_80487880 = .text:0x80487880; // type:function size:0x5C +fn_804878DC = .text:0x804878DC; // type:function size:0x114 +fn_804879F0 = .text:0x804879F0; // type:function size:0x5C +fn_80487A4C = .text:0x80487A4C; // type:function size:0x5C +fn_80487AA8 = .text:0x80487AA8; // type:function size:0x54 +fn_80487AFC = .text:0x80487AFC; // type:function size:0x5C +fn_80487B58 = .text:0x80487B58; // type:function size:0x114 +fn_80487C6C = .text:0x80487C6C; // type:function size:0x60 +fn_80487CCC = .text:0x80487CCC; // type:function size:0x5C +fn_80487D28 = .text:0x80487D28; // type:function size:0x54 +fn_80487D7C = .text:0x80487D7C; // type:function size:0x5C +fn_80487DD8 = .text:0x80487DD8; // type:function size:0x114 +fn_80487EEC = .text:0x80487EEC; // type:function size:0x60 +fn_80487F4C = .text:0x80487F4C; // type:function size:0x5C +fn_80487FA8 = .text:0x80487FA8; // type:function size:0x54 +fn_80487FFC = .text:0x80487FFC; // type:function size:0x5C +fn_80488058 = .text:0x80488058; // type:function size:0x114 +fn_8048816C = .text:0x8048816C; // type:function size:0x5C +fn_804881C8 = .text:0x804881C8; // type:function size:0x5C +fn_80488224 = .text:0x80488224; // type:function size:0x54 +fn_80488278 = .text:0x80488278; // type:function size:0x5C +fn_804882D4 = .text:0x804882D4; // type:function size:0x68 +fn_8048833C = .text:0x8048833C; // type:function size:0x10 +fn_8048834C = .text:0x8048834C; // type:function size:0xEC +fn_80488438 = .text:0x80488438; // type:function size:0x5C +fn_80488494 = .text:0x80488494; // type:function size:0x10 +fn_804884A4 = .text:0x804884A4; // type:function size:0x124 +fn_804885C8 = .text:0x804885C8; // type:function size:0x60 +fn_80488628 = .text:0x80488628; // type:function size:0x5C +fn_80488684 = .text:0x80488684; // type:function size:0x54 +fn_804886D8 = .text:0x804886D8; // type:function size:0x5C +fn_80488734 = .text:0x80488734; // type:function size:0x8 +fn_8048873C = .text:0x8048873C; // type:function size:0x8 +fn_80488744 = .text:0x80488744; // type:function size:0x8 +fn_8048874C = .text:0x8048874C; // type:function size:0x8 +fn_80488754 = .text:0x80488754; // type:function size:0x8 +fn_8048875C = .text:0x8048875C; // type:function size:0x8 +fn_80488764 = .text:0x80488764; // type:function size:0x8 +fn_8048876C = .text:0x8048876C; // type:function size:0x8 +fn_80488774 = .text:0x80488774; // type:function size:0x14 +fn_80488788 = .text:0x80488788; // type:function size:0x55C +fn_80488CE4 = .text:0x80488CE4; // type:function size:0x4 +fn_80488CE8 = .text:0x80488CE8; // type:function size:0x88 +fn_80488D70 = .text:0x80488D70; // type:function size:0x2C +fn_80488D9C = .text:0x80488D9C; // type:function size:0x10 +fn_80488DAC = .text:0x80488DAC; // type:function size:0x120 +fn_80488ECC = .text:0x80488ECC; // type:function size:0x54 +fn_80488F20 = .text:0x80488F20; // type:function size:0x30 +fn_80488F50 = .text:0x80488F50; // type:function size:0x98 +fn_80488FE8 = .text:0x80488FE8; // type:function size:0x5C +fn_80489044 = .text:0x80489044; // type:function size:0x10 +fn_80489054 = .text:0x80489054; // type:function size:0x70 +fn_804890C4 = .text:0x804890C4; // type:function size:0x10C +fn_804891D0 = .text:0x804891D0; // type:function size:0x4 +fn_804891D4 = .text:0x804891D4; // type:function size:0x88 +fn_8048925C = .text:0x8048925C; // type:function size:0x2C +fn_80489288 = .text:0x80489288; // type:function size:0x10 +fn_80489298 = .text:0x80489298; // type:function size:0x4 +fn_8048929C = .text:0x8048929C; // type:function size:0x54 +fn_804892F0 = .text:0x804892F0; // type:function size:0x30 +fn_80489320 = .text:0x80489320; // type:function size:0x30 +fn_80489350 = .text:0x80489350; // type:function size:0x40 +fn_80489390 = .text:0x80489390; // type:function size:0x4 +fn_80489394 = .text:0x80489394; // type:function size:0x54 +fn_804893E8 = .text:0x804893E8; // type:function size:0x64 +fn_8048944C = .text:0x8048944C; // type:function size:0x50 +fn_8048949C = .text:0x8048949C; // type:function size:0x4 +fn_804894A0 = .text:0x804894A0; // type:function size:0x90 +fn_80489530 = .text:0x80489530; // type:function size:0x30 +fn_80489560 = .text:0x80489560; // type:function size:0x30 +fn_80489590 = .text:0x80489590; // type:function size:0x60 +fn_804895F0 = .text:0x804895F0; // type:function size:0x30 +fn_80489620 = .text:0x80489620; // type:function size:0x30 +fn_80489650 = .text:0x80489650; // type:function size:0x40 +fn_80489690 = .text:0x80489690; // type:function size:0x30 +fn_804896C0 = .text:0x804896C0; // type:function size:0x30 +fn_804896F0 = .text:0x804896F0; // type:function size:0x40 +fn_80489730 = .text:0x80489730; // type:function size:0x30 +fn_80489760 = .text:0x80489760; // type:function size:0x30 +fn_80489790 = .text:0x80489790; // type:function size:0x40 +fn_804897D0 = .text:0x804897D0; // type:function size:0x30 +fn_80489800 = .text:0x80489800; // type:function size:0x30 +fn_80489830 = .text:0x80489830; // type:function size:0x40 +fn_80489870 = .text:0x80489870; // type:function size:0xC +fn_8048987C = .text:0x8048987C; // type:function size:0xF0 +fn_8048996C = .text:0x8048996C; // type:function size:0xE8 +fn_80489A54 = .text:0x80489A54; // type:function size:0xF4 +fn_80489B48 = .text:0x80489B48; // type:function size:0x8 +fn_80489B50 = .text:0x80489B50; // type:function size:0x34C +fn_80489E9C = .text:0x80489E9C; // type:function size:0x4 +fn_80489EA0 = .text:0x80489EA0; // type:function size:0x90 +fn_80489F30 = .text:0x80489F30; // type:function size:0x4 +fn_80489F34 = .text:0x80489F34; // type:function size:0x40 +fn_80489F74 = .text:0x80489F74; // type:function size:0x8C +fn_8048A000 = .text:0x8048A000; // type:function size:0x8 +fn_8048A008 = .text:0x8048A008; // type:function size:0x2C +fn_8048A034 = .text:0x8048A034; // type:function size:0x58 +fn_8048A08C = .text:0x8048A08C; // type:function size:0x28 +fn_8048A0B4 = .text:0x8048A0B4; // type:function size:0x68 +fn_8048A11C = .text:0x8048A11C; // type:function size:0x4 +fn_8048A120 = .text:0x8048A120; // type:function size:0x3C +fn_8048A15C = .text:0x8048A15C; // type:function size:0x4 +fn_8048A160 = .text:0x8048A160; // type:function size:0x90 +fn_8048A1F0 = .text:0x8048A1F0; // type:function size:0x4 +fn_8048A1F4 = .text:0x8048A1F4; // type:function size:0x40 +fn_8048A234 = .text:0x8048A234; // type:function size:0x8C +fn_8048A2C0 = .text:0x8048A2C0; // type:function size:0x8 +fn_8048A2C8 = .text:0x8048A2C8; // type:function size:0x2C +fn_8048A2F4 = .text:0x8048A2F4; // type:function size:0x58 +fn_8048A34C = .text:0x8048A34C; // type:function size:0x28 +fn_8048A374 = .text:0x8048A374; // type:function size:0x68 +fn_8048A3DC = .text:0x8048A3DC; // type:function size:0x4 +fn_8048A3E0 = .text:0x8048A3E0; // type:function size:0x3C +fn_8048A41C = .text:0x8048A41C; // type:function size:0x4 +fn_8048A420 = .text:0x8048A420; // type:function size:0x90 +fn_8048A4B0 = .text:0x8048A4B0; // type:function size:0x4 +fn_8048A4B4 = .text:0x8048A4B4; // type:function size:0x30 +fn_8048A4E4 = .text:0x8048A4E4; // type:function size:0x4 +fn_8048A4E8 = .text:0x8048A4E8; // type:function size:0x3C +fn_8048A524 = .text:0x8048A524; // type:function size:0x54 +fn_8048A578 = .text:0x8048A578; // type:function size:0x10 +fn_8048A588 = .text:0x8048A588; // type:function size:0x8 +OnNewTrack__10SongParserFUc = .text:0x8048A590; // type:function size:0x8 +OnEndOfTrack__10SongParserFv = .text:0x8048A598; // type:function size:0xBC +OnAllTracksRead__10SongParserFv = .text:0x8048A654; // type:function size:0x6C +OnMidiMessage__10SongParserFiUcUcUc = .text:0x8048A6C0; // type:function size:0xD0 +fn_8048A790 = .text:0x8048A790; // type:function size:0x84 +MidiGetType__FUc = .text:0x8048A814; // type:function size:0x30 +fn_8048A844 = .text:0x8048A844; // type:function size:0x8 +fn_8048A84C = .text:0x8048A84C; // type:function size:0xC4 +fn_8048A910 = .text:0x8048A910; // type:function size:0x5C +OnMidiMessageGemOn__10SongParserFiUc = .text:0x8048A96C; // type:function size:0x374 +OnMidiMessageGemOff__10SongParserFiUc = .text:0x8048ACE0; // type:function size:0xF0 +fn_8048ADD0 = .text:0x8048ADD0; // type:function size:0x160 +fn_8048AF30 = .text:0x8048AF30; // type:function size:0x14 +fn_8048AF44 = .text:0x8048AF44; // type:function size:0x160 +fn_8048B0A4 = .text:0x8048B0A4; // type:function size:0xD8 +fn_8048B17C = .text:0x8048B17C; // type:function size:0x64 +fn_8048B1E0 = .text:0x8048B1E0; // type:function size:0x2E0 +fn_8048B4C0 = .text:0x8048B4C0; // type:function size:0x4B8 +fn_8048B978 = .text:0x8048B978; // type:function size:0x94 +fn_8048BA0C = .text:0x8048BA0C; // type:function size:0x124 +fn_8048BB30 = .text:0x8048BB30; // type:function size:0x168 +fn_8048BC98 = .text:0x8048BC98; // type:function size:0x43C +fn_8048C0D4 = .text:0x8048C0D4; // type:function size:0x164 +fn_8048C238 = .text:0x8048C238; // type:function size:0x14 +fn_8048C24C = .text:0x8048C24C; // type:function size:0x504 +fn_8048C750 = .text:0x8048C750; // type:function size:0x57C +fn_8048CCCC = .text:0x8048CCCC; // type:function size:0x8 +fn_8048CCD4 = .text:0x8048CCD4; // type:function size:0x8 +fn_8048CCDC = .text:0x8048CCDC; // type:function size:0xC +fn_8048CCE8 = .text:0x8048CCE8; // type:function size:0x1A4 +fn_8048CE8C = .text:0x8048CE8C; // type:function size:0x58 +fn_8048CEE4 = .text:0x8048CEE4; // type:function size:0x15C +fn_8048D040 = .text:0x8048D040; // type:function size:0xC +fn_8048D04C = .text:0x8048D04C; // type:function size:0x8 +fn_8048D054 = .text:0x8048D054; // type:function size:0x1AC +OnText__10SongParserFiPCcUc = .text:0x8048D200; // type:function size:0x208 +fn_8048D408 = .text:0x8048D408; // type:function size:0x15C +fn_8048D564 = .text:0x8048D564; // type:function size:0x410 +fn_8048D974 = .text:0x8048D974; // type:function size:0x6C +fn_8048D9E0 = .text:0x8048D9E0; // type:function size:0x8C +fn_8048DA6C = .text:0x8048DA6C; // type:function size:0x4 +fn_8048DA70 = .text:0x8048DA70; // type:function size:0xC +fn_8048DA7C = .text:0x8048DA7C; // type:function size:0x14 +fn_8048DA90 = .text:0x8048DA90; // type:function size:0x14 +fn_8048DAA4 = .text:0x8048DAA4; // type:function size:0x6C +fn_8048DB10 = .text:0x8048DB10; // type:function size:0xA0 +fn_8048DBB0 = .text:0x8048DBB0; // type:function size:0x38 +fn_8048DBE8 = .text:0x8048DBE8; // type:function size:0x30 +fn_8048DC18 = .text:0x8048DC18; // type:function size:0x2C0 +fn_8048DED8 = .text:0x8048DED8; // type:function size:0x2A8 +OnAcceptMaps__10SongParserFP8TempoMapP10MeasureMap = .text:0x8048E180; // type:function size:0xA0 +SetMidiReader__10SongParserFP10MidiReader = .text:0x8048E220; // type:function size:0x78 +fn_8048E298 = .text:0x8048E298; // type:function size:0x160 +fn_8048E3F8 = .text:0x8048E3F8; // type:function size:0x10 +fn_8048E408 = .text:0x8048E408; // type:function size:0x14 +fn_8048E41C = .text:0x8048E41C; // type:function size:0xF8 +fn_8048E514 = .text:0x8048E514; // type:function size:0x4 +fn_8048E518 = .text:0x8048E518; // type:function size:0x10C +fn_8048E624 = .text:0x8048E624; // type:function size:0x10 +fn_8048E634 = .text:0x8048E634; // type:function size:0x10 +fn_8048E644 = .text:0x8048E644; // type:function size:0xD8 +fn_8048E71C = .text:0x8048E71C; // type:function size:0x78 +fn_8048E794 = .text:0x8048E794; // type:function size:0x16C +fn_8048E900 = .text:0x8048E900; // type:function size:0x34C +fn_8048EC4C = .text:0x8048EC4C; // type:function size:0xD8 +fn_8048ED24 = .text:0x8048ED24; // type:function size:0x48 +fn_8048ED6C = .text:0x8048ED6C; // type:function size:0x2BC +fn_8048F028 = .text:0x8048F028; // type:function size:0x24 +fn_8048F04C = .text:0x8048F04C; // type:function size:0x154 +fn_8048F1A0 = .text:0x8048F1A0; // type:function size:0xC +fn_8048F1AC = .text:0x8048F1AC; // type:function size:0x4 +fn_8048F1B0 = .text:0x8048F1B0; // type:function size:0x88 +fn_8048F238 = .text:0x8048F238; // type:function size:0x2C +fn_8048F264 = .text:0x8048F264; // type:function size:0x10 +fn_8048F274 = .text:0x8048F274; // type:function size:0x74 +fn_8048F2E8 = .text:0x8048F2E8; // type:function size:0x7C +fn_8048F364 = .text:0x8048F364; // type:function size:0x9C +fn_8048F400 = .text:0x8048F400; // type:function size:0x98 +fn_8048F498 = .text:0x8048F498; // type:function size:0xC +fn_8048F4A4 = .text:0x8048F4A4; // type:function size:0x44 +fn_8048F4E8 = .text:0x8048F4E8; // type:function size:0x78 +fn_8048F560 = .text:0x8048F560; // type:function size:0x108 +fn_8048F668 = .text:0x8048F668; // type:function size:0xC +fn_8048F674 = .text:0x8048F674; // type:function size:0x40 +fn_8048F6B4 = .text:0x8048F6B4; // type:function size:0x5C +fn_8048F710 = .text:0x8048F710; // type:function size:0x18 +fn_8048F728 = .text:0x8048F728; // type:function size:0xB8 +fn_8048F7E0 = .text:0x8048F7E0; // type:function size:0x4C +fn_8048F82C = .text:0x8048F82C; // type:function size:0x1C +fn_8048F848 = .text:0x8048F848; // type:function size:0x58 +fn_8048F8A0 = .text:0x8048F8A0; // type:function size:0x24 +fn_8048F8C4 = .text:0x8048F8C4; // type:function size:0x24 +fn_8048F8E8 = .text:0x8048F8E8; // type:function size:0x40 +fn_8048F928 = .text:0x8048F928; // type:function size:0x1C +fn_8048F944 = .text:0x8048F944; // type:function size:0x96C +fn_804902B0 = .text:0x804902B0; // type:function size:0x34 +fn_804902E4 = .text:0x804902E4; // type:function size:0x40 +fn_80490324 = .text:0x80490324; // type:function size:0x14 +fn_80490338 = .text:0x80490338; // type:function size:0x24 +fn_8049035C = .text:0x8049035C; // type:function size:0x24 +fn_80490380 = .text:0x80490380; // type:function size:0x24 +fn_804903A4 = .text:0x804903A4; // type:function size:0x44 +fn_804903E8 = .text:0x804903E8; // type:function size:0xDC +fn_804904C4 = .text:0x804904C4; // type:function size:0x34 +fn_804904F8 = .text:0x804904F8; // type:function size:0x1C +fn_80490514 = .text:0x80490514; // type:function size:0xC +fn_80490520 = .text:0x80490520; // type:function size:0x10 +fn_80490530 = .text:0x80490530; // type:function size:0x58 +fn_80490588 = .text:0x80490588; // type:function size:0x3C +fn_804905C4 = .text:0x804905C4; // type:function size:0x2C +fn_804905F0 = .text:0x804905F0; // type:function size:0x1C +fn_8049060C = .text:0x8049060C; // type:function size:0x1C +fn_80490628 = .text:0x80490628; // type:function size:0x1C +fn_80490644 = .text:0x80490644; // type:function size:0x1C +fn_80490660 = .text:0x80490660; // type:function size:0x1C +fn_8049067C = .text:0x8049067C; // type:function size:0x1C +fn_80490698 = .text:0x80490698; // type:function size:0xC8 +fn_80490760 = .text:0x80490760; // type:function size:0x148 +fn_804908A8 = .text:0x804908A8; // type:function size:0xA0 +fn_80490948 = .text:0x80490948; // type:function size:0xEC +fn_80490A34 = .text:0x80490A34; // type:function size:0x30 +fn_80490A64 = .text:0x80490A64; // type:function size:0x64 +fn_80490AC8 = .text:0x80490AC8; // type:function size:0x58 +fn_80490B20 = .text:0x80490B20; // type:function size:0x48 +fn_80490B68 = .text:0x80490B68; // type:function size:0x50 +fn_80490BB8 = .text:0x80490BB8; // type:function size:0x48 +fn_80490C00 = .text:0x80490C00; // type:function size:0x114 +fn_80490D14 = .text:0x80490D14; // type:function size:0x5C +fn_80490D70 = .text:0x80490D70; // type:function size:0x5C +fn_80490DCC = .text:0x80490DCC; // type:function size:0x54 +fn_80490E20 = .text:0x80490E20; // type:function size:0x5C +fn_80490E7C = .text:0x80490E7C; // type:function size:0x5C +fn_80490ED8 = .text:0x80490ED8; // type:function size:0xCC +fn_80490FA4 = .text:0x80490FA4; // type:function size:0x60 +fn_80491004 = .text:0x80491004; // type:function size:0x5C +fn_80491060 = .text:0x80491060; // type:function size:0x60 +fn_804910C0 = .text:0x804910C0; // type:function size:0x114 +fn_804911D4 = .text:0x804911D4; // type:function size:0x5C +fn_80491230 = .text:0x80491230; // type:function size:0x54 +fn_80491284 = .text:0x80491284; // type:function size:0x5C +fn_804912E0 = .text:0x804912E0; // type:function size:0x114 +fn_804913F4 = .text:0x804913F4; // type:function size:0x5C +fn_80491450 = .text:0x80491450; // type:function size:0x5C +fn_804914AC = .text:0x804914AC; // type:function size:0x54 +fn_80491500 = .text:0x80491500; // type:function size:0x5C +fn_8049155C = .text:0x8049155C; // type:function size:0x5C +fn_804915B8 = .text:0x804915B8; // type:function size:0xC +fn_804915C4 = .text:0x804915C4; // type:function size:0x68 +fn_8049162C = .text:0x8049162C; // type:function size:0x68 +fn_80491694 = .text:0x80491694; // type:function size:0x2C +fn_804916C0 = .text:0x804916C0; // type:function size:0x68 +fn_80491728 = .text:0x80491728; // type:function size:0x2C +fn_80491754 = .text:0x80491754; // type:function size:0x10 +fn_80491764 = .text:0x80491764; // type:function size:0x190 +fn_804918F4 = .text:0x804918F4; // type:function size:0x54 +fn_80491948 = .text:0x80491948; // type:function size:0x28 +fn_80491970 = .text:0x80491970; // type:function size:0x68 +fn_804919D8 = .text:0x804919D8; // type:function size:0x18C +fn_80491B64 = .text:0x80491B64; // type:function size:0x5C +fn_80491BC0 = .text:0x80491BC0; // type:function size:0x10 +fn_80491BD0 = .text:0x80491BD0; // type:function size:0x54 +fn_80491C24 = .text:0x80491C24; // type:function size:0x28 +fn_80491C4C = .text:0x80491C4C; // type:function size:0x68 +fn_80491CB4 = .text:0x80491CB4; // type:function size:0x5C +fn_80491D10 = .text:0x80491D10; // type:function size:0x114 +fn_80491E24 = .text:0x80491E24; // type:function size:0x5C +fn_80491E80 = .text:0x80491E80; // type:function size:0x5C +fn_80491EDC = .text:0x80491EDC; // type:function size:0x54 +fn_80491F30 = .text:0x80491F30; // type:function size:0x18C +fn_804920BC = .text:0x804920BC; // type:function size:0x5C +fn_80492118 = .text:0x80492118; // type:function size:0x10 +fn_80492128 = .text:0x80492128; // type:function size:0x54 +fn_8049217C = .text:0x8049217C; // type:function size:0x28 +fn_804921A4 = .text:0x804921A4; // type:function size:0x68 +fn_8049220C = .text:0x8049220C; // type:function size:0x5C +fn_80492268 = .text:0x80492268; // type:function size:0x114 +fn_8049237C = .text:0x8049237C; // type:function size:0x5C +fn_804923D8 = .text:0x804923D8; // type:function size:0x5C +fn_80492434 = .text:0x80492434; // type:function size:0x54 +fn_80492488 = .text:0x80492488; // type:function size:0xC +fn_80492494 = .text:0x80492494; // type:function size:0x154 +fn_804925E8 = .text:0x804925E8; // type:function size:0x5C +fn_80492644 = .text:0x80492644; // type:function size:0x8 +fn_8049264C = .text:0x8049264C; // type:function size:0x98 +fn_804926E4 = .text:0x804926E4; // type:function size:0xA8 +__ct__16SubmixCollectionFP9DataArray = .text:0x8049278C; // type:function size:0xC4 +fn_80492850 = .text:0x80492850; // type:function size:0xA4 +fn_804928F4 = .text:0x804928F4; // type:function size:0x94 +fn_80492988 = .text:0x80492988; // type:function size:0xF0 +TrackTypeToSym__F9TrackType = .text:0x80492A78; // type:function size:0x44 +fn_80492ABC = .text:0x80492ABC; // type:function size:0x6C +fn_80492B28 = .text:0x80492B28; // type:function size:0xBC +fn_80492BE4 = .text:0x80492BE4; // type:function size:0x288 +fn_80492E6C = .text:0x80492E6C; // type:function size:0xB4 +fn_80492F20 = .text:0x80492F20; // type:function size:0x84 +fn_80492FA4 = .text:0x80492FA4; // type:function size:0x38 +fn_80492FDC = .text:0x80492FDC; // type:function size:0x11C +fn_804930F8 = .text:0x804930F8; // type:function size:0x5C +fn_80493154 = .text:0x80493154; // type:function size:0x58 +fn_804931AC = .text:0x804931AC; // type:function size:0x80 +fn_8049322C = .text:0x8049322C; // type:function size:0x80 +fn_804932AC = .text:0x804932AC; // type:function size:0x58 +fn_80493304 = .text:0x80493304; // type:function size:0x54 +fn_80493358 = .text:0x80493358; // type:function size:0x5C +fn_804933B4 = .text:0x804933B4; // type:function size:0x6C +fn_80493420 = .text:0x80493420; // type:function size:0x28 +fn_80493448 = .text:0x80493448; // type:function size:0x8 +fn_80493450 = .text:0x80493450; // type:function size:0x3C +fn_8049348C = .text:0x8049348C; // type:function size:0x44 +fn_804934D0 = .text:0x804934D0; // type:function size:0x30 +fn_80493500 = .text:0x80493500; // type:function size:0x30 +fn_80493530 = .text:0x80493530; // type:function size:0x40 +fn_80493570 = .text:0x80493570; // type:function size:0x8 +fn_80493578 = .text:0x80493578; // type:function size:0x14 +fn_8049358C = .text:0x8049358C; // type:function size:0x54 +fn_804935E0 = .text:0x804935E0; // type:function size:0x14 +fn_804935F4 = .text:0x804935F4; // type:function size:0x14 +fn_80493608 = .text:0x80493608; // type:function size:0x14 +fn_8049361C = .text:0x8049361C; // type:function size:0x14 +fn_80493630 = .text:0x80493630; // type:function size:0x14 +fn_80493644 = .text:0x80493644; // type:function size:0x14 +fn_80493658 = .text:0x80493658; // type:function size:0x14 +fn_8049366C = .text:0x8049366C; // type:function size:0x14 +fn_80493680 = .text:0x80493680; // type:function size:0x14 +fn_80493694 = .text:0x80493694; // type:function size:0x14 +fn_804936A8 = .text:0x804936A8; // type:function size:0x14 +fn_804936BC = .text:0x804936BC; // type:function size:0x8 +fn_804936C4 = .text:0x804936C4; // type:function size:0x8 +fn_804936CC = .text:0x804936CC; // type:function size:0x14 +fn_804936E0 = .text:0x804936E0; // type:function size:0x8 +fn_804936E8 = .text:0x804936E8; // type:function size:0x8 +fn_804936F0 = .text:0x804936F0; // type:function size:0x350 +fn_80493A40 = .text:0x80493A40; // type:function size:0x4 +fn_80493A44 = .text:0x80493A44; // type:function size:0x90 +fn_80493AD4 = .text:0x80493AD4; // type:function size:0x4 +fn_80493AD8 = .text:0x80493AD8; // type:function size:0x40 +fn_80493B18 = .text:0x80493B18; // type:function size:0x8C +fn_80493BA4 = .text:0x80493BA4; // type:function size:0x8 +fn_80493BAC = .text:0x80493BAC; // type:function size:0x2C +fn_80493BD8 = .text:0x80493BD8; // type:function size:0x58 +fn_80493C30 = .text:0x80493C30; // type:function size:0x28 +fn_80493C58 = .text:0x80493C58; // type:function size:0x68 +fn_80493CC0 = .text:0x80493CC0; // type:function size:0x1C +fn_80493CDC = .text:0x80493CDC; // type:function size:0x20 +__dt__16TrackWatcherImplFv = .text:0x80493CFC; // type:function size:0x84 +fn_80493D80 = .text:0x80493D80; // type:function size:0x10 +fn_80493D90 = .text:0x80493D90; // type:function size:0x4C +fn_80493DDC = .text:0x80493DDC; // type:function size:0x50 +fn_80493E2C = .text:0x80493E2C; // type:function size:0xE0 +fn_80493F0C = .text:0x80493F0C; // type:function size:0x30 +fn_80493F3C = .text:0x80493F3C; // type:function size:0xE0 +fn_8049401C = .text:0x8049401C; // type:function size:0x8 +fn_80494024 = .text:0x80494024; // type:function size:0x8 +fn_8049402C = .text:0x8049402C; // type:function size:0xF8 +fn_80494124 = .text:0x80494124; // type:function size:0x108 +fn_8049422C = .text:0x8049422C; // type:function size:0x4 +fn_80494230 = .text:0x80494230; // type:function size:0x8 +fn_80494238 = .text:0x80494238; // type:function size:0x8 +fn_80494240 = .text:0x80494240; // type:function size:0x8 +fn_80494248 = .text:0x80494248; // type:function size:0x8 +fn_80494250 = .text:0x80494250; // type:function size:0x8 +fn_80494258 = .text:0x80494258; // type:function size:0x44 +fn_8049429C = .text:0x8049429C; // type:function size:0x8 +fn_804942A4 = .text:0x804942A4; // type:function size:0x108 +fn_804943AC = .text:0x804943AC; // type:function size:0xB0 +fn_8049445C = .text:0x8049445C; // type:function size:0x80 +fn_804944DC = .text:0x804944DC; // type:function size:0x114 +fn_804945F0 = .text:0x804945F0; // type:function size:0x14 +fn_80494604 = .text:0x80494604; // type:function size:0x8 +fn_8049460C = .text:0x8049460C; // type:function size:0x18 +fn_80494624 = .text:0x80494624; // type:function size:0x2C +fn_80494650 = .text:0x80494650; // type:function size:0x84 +fn_804946D4 = .text:0x804946D4; // type:function size:0x60 +fn_80494734 = .text:0x80494734; // type:function size:0x48 +fn_8049477C = .text:0x8049477C; // type:function size:0x90 +fn_8049480C = .text:0x8049480C; // type:function size:0x4C +fn_80494858 = .text:0x80494858; // type:function size:0x60 +fn_804948B8 = .text:0x804948B8; // type:function size:0x8 +fn_804948C0 = .text:0x804948C0; // type:function size:0x68 +fn_80494928 = .text:0x80494928; // type:function size:0x144 +fn_80494A6C = .text:0x80494A6C; // type:function size:0x1E4 +fn_80494C50 = .text:0x80494C50; // type:function size:0x84 +fn_80494CD4 = .text:0x80494CD4; // type:function size:0x7C +fn_80494D50 = .text:0x80494D50; // type:function size:0x188 +fn_80494ED8 = .text:0x80494ED8; // type:function size:0x2C +fn_80494F04 = .text:0x80494F04; // type:function size:0x308 +fn_8049520C = .text:0x8049520C; // type:function size:0x14 +fn_80495220 = .text:0x80495220; // type:function size:0xA4 +fn_804952C4 = .text:0x804952C4; // type:function size:0x1BC +fn_80495480 = .text:0x80495480; // type:function size:0x68 +fn_804954E8 = .text:0x804954E8; // type:function size:0x9C +fn_80495584 = .text:0x80495584; // type:function size:0xB0 +fn_80495634 = .text:0x80495634; // type:function size:0x40 +fn_80495674 = .text:0x80495674; // type:function size:0x94 +fn_80495708 = .text:0x80495708; // type:function size:0x84 +fn_8049578C = .text:0x8049578C; // type:function size:0x74 +fn_80495800 = .text:0x80495800; // type:function size:0x64 +fn_80495864 = .text:0x80495864; // type:function size:0x38 +fn_8049589C = .text:0x8049589C; // type:function size:0x5C +fn_804958F8 = .text:0x804958F8; // type:function size:0x58 +fn_80495950 = .text:0x80495950; // type:function size:0xD0 +fn_80495A20 = .text:0x80495A20; // type:function size:0x1D4 +fn_80495BF4 = .text:0x80495BF4; // type:function size:0x154 +fn_80495D48 = .text:0x80495D48; // type:function size:0x14 +fn_80495D5C = .text:0x80495D5C; // type:function size:0x34C +fn_804960A8 = .text:0x804960A8; // type:function size:0x104 +fn_804961AC = .text:0x804961AC; // type:function size:0x84 +fn_80496230 = .text:0x80496230; // type:function size:0xEC +fn_8049631C = .text:0x8049631C; // type:function size:0x15C +fn_80496478 = .text:0x80496478; // type:function size:0x8C +fn_80496504 = .text:0x80496504; // type:function size:0xF8 +fn_804965FC = .text:0x804965FC; // type:function size:0x94 +fn_80496690 = .text:0x80496690; // type:function size:0x1BC +fn_8049684C = .text:0x8049684C; // type:function size:0xB8 +fn_80496904 = .text:0x80496904; // type:function size:0x7C +fn_80496980 = .text:0x80496980; // type:function size:0x88 +fn_80496A08 = .text:0x80496A08; // type:function size:0x88 +fn_80496A90 = .text:0x80496A90; // type:function size:0x84 +fn_80496B14 = .text:0x80496B14; // type:function size:0x84 +fn_80496B98 = .text:0x80496B98; // type:function size:0x84 +fn_80496C1C = .text:0x80496C1C; // type:function size:0x68 +fn_80496C84 = .text:0x80496C84; // type:function size:0x2C +fn_80496CB0 = .text:0x80496CB0; // type:function size:0x160 +fn_80496E10 = .text:0x80496E10; // type:function size:0x5C +fn_80496E6C = .text:0x80496E6C; // type:function size:0x10 +fn_80496E7C = .text:0x80496E7C; // type:function size:0x28 +fn_80496EA4 = .text:0x80496EA4; // type:function size:0x5C +fn_80496F00 = .text:0x80496F00; // type:function size:0x60 +fn_80496F60 = .text:0x80496F60; // type:function size:0x18C +fn_804970EC = .text:0x804970EC; // type:function size:0x5C +fn_80497148 = .text:0x80497148; // type:function size:0x54 +fn_8049719C = .text:0x8049719C; // type:function size:0x28 +fn_804971C4 = .text:0x804971C4; // type:function size:0x68 +fn_8049722C = .text:0x8049722C; // type:function size:0x114 +fn_80497340 = .text:0x80497340; // type:function size:0x5C +fn_8049739C = .text:0x8049739C; // type:function size:0x5C +fn_804973F8 = .text:0x804973F8; // type:function size:0x54 +fn_8049744C = .text:0x8049744C; // type:function size:0x68 +__ct__13VocalNoteListFP8SongData = .text:0x804974B4; // type:function size:0x188 +fn_8049763C = .text:0x8049763C; // type:function size:0x4C +fn_80497688 = .text:0x80497688; // type:function size:0x4 +fn_8049768C = .text:0x8049768C; // type:function size:0x3C +fn_804976C8 = .text:0x804976C8; // type:function size:0x40 +fn_80497708 = .text:0x80497708; // type:function size:0x8C +fn_80497794 = .text:0x80497794; // type:function size:0x28 +fn_804977BC = .text:0x804977BC; // type:function size:0x7C +fn_80497838 = .text:0x80497838; // type:function size:0x10 +fn_80497848 = .text:0x80497848; // type:function size:0x8 +fn_80497850 = .text:0x80497850; // type:function size:0xB4 +fn_80497904 = .text:0x80497904; // type:function size:0x24 +fn_80497928 = .text:0x80497928; // type:function size:0x738 +fn_80498060 = .text:0x80498060; // type:function size:0x8 +fn_80498068 = .text:0x80498068; // type:function size:0x4 +fn_8049806C = .text:0x8049806C; // type:function size:0x90 +fn_804980FC = .text:0x804980FC; // type:function size:0x4 +fn_80498100 = .text:0x80498100; // type:function size:0x24 +fn_80498124 = .text:0x80498124; // type:function size:0x8 +fn_8049812C = .text:0x8049812C; // type:function size:0x160 +fn_8049828C = .text:0x8049828C; // type:function size:0xD0 +fn_8049835C = .text:0x8049835C; // type:function size:0x38 +fn_80498394 = .text:0x80498394; // type:function size:0xDC +fn_80498470 = .text:0x80498470; // type:function size:0xB0 +fn_80498520 = .text:0x80498520; // type:function size:0xC8 +fn_804985E8 = .text:0x804985E8; // type:function size:0xC4 +fn_804986AC = .text:0x804986AC; // type:function size:0x2C +fn_804986D8 = .text:0x804986D8; // type:function size:0x70 +fn_80498748 = .text:0x80498748; // type:function size:0x8 +fn_80498750 = .text:0x80498750; // type:function size:0xAC +fn_804987FC = .text:0x804987FC; // type:function size:0x24 +fn_80498820 = .text:0x80498820; // type:function size:0x38 +fn_80498858 = .text:0x80498858; // type:function size:0x4C +fn_804988A4 = .text:0x804988A4; // type:function size:0x4 +fn_804988A8 = .text:0x804988A8; // type:function size:0x50 +fn_804988F8 = .text:0x804988F8; // type:function size:0x58 +fn_80498950 = .text:0x80498950; // type:function size:0x1D0 +fn_80498B20 = .text:0x80498B20; // type:function size:0x8 +fn_80498B28 = .text:0x80498B28; // type:function size:0x110 +fn_80498C38 = .text:0x80498C38; // type:function size:0x88 +fn_80498CC0 = .text:0x80498CC0; // type:function size:0x7C +fn_80498D3C = .text:0x80498D3C; // type:function size:0x38 +fn_80498D74 = .text:0x80498D74; // type:function size:0x154 +fn_80498EC8 = .text:0x80498EC8; // type:function size:0xC +fn_80498ED4 = .text:0x80498ED4; // type:function size:0x18 +fn_80498EEC = .text:0x80498EEC; // type:function size:0x74 +fn_80498F60 = .text:0x80498F60; // type:function size:0x38 +fn_80498F98 = .text:0x80498F98; // type:function size:0x44 +fn_80498FDC = .text:0x80498FDC; // type:function size:0x2C +fn_80499008 = .text:0x80499008; // type:function size:0xC0 +fn_804990C8 = .text:0x804990C8; // type:function size:0x24 +fn_804990EC = .text:0x804990EC; // type:function size:0x8C +fn_80499178 = .text:0x80499178; // type:function size:0x78 +fn_804991F0 = .text:0x804991F0; // type:function size:0x80 +fn_80499270 = .text:0x80499270; // type:function size:0x88 +fn_804992F8 = .text:0x804992F8; // type:function size:0x174 +fn_8049946C = .text:0x8049946C; // type:function size:0x90 +fn_804994FC = .text:0x804994FC; // type:function size:0x48 +fn_80499544 = .text:0x80499544; // type:function size:0x1C +fn_80499560 = .text:0x80499560; // type:function size:0x58 +fn_804995B8 = .text:0x804995B8; // type:function size:0x68 +fn_80499620 = .text:0x80499620; // type:function size:0x68 +fn_80499688 = .text:0x80499688; // type:function size:0x198 +fn_80499820 = .text:0x80499820; // type:function size:0x54 +fn_80499874 = .text:0x80499874; // type:function size:0x28 +fn_8049989C = .text:0x8049989C; // type:function size:0x68 +fn_80499904 = .text:0x80499904; // type:function size:0x18C +fn_80499A90 = .text:0x80499A90; // type:function size:0x54 +fn_80499AE4 = .text:0x80499AE4; // type:function size:0x28 +fn_80499B0C = .text:0x80499B0C; // type:function size:0x68 +fn_80499B74 = .text:0x80499B74; // type:function size:0x38 +fn_80499BAC = .text:0x80499BAC; // type:function size:0x110 +fn_80499CBC = .text:0x80499CBC; // type:function size:0x34 +fn_80499CF0 = .text:0x80499CF0; // type:function size:0x44 +fn_80499D34 = .text:0x80499D34; // type:function size:0x4C +fn_80499D80 = .text:0x80499D80; // type:function size:0x34 +fn_80499DB4 = .text:0x80499DB4; // type:function size:0x34 +fn_80499DE8 = .text:0x80499DE8; // type:function size:0x4C +fn_80499E34 = .text:0x80499E34; // type:function size:0x34 +fn_80499E68 = .text:0x80499E68; // type:function size:0x44 +fn_80499EAC = .text:0x80499EAC; // type:function size:0x4C +fn_80499EF8 = .text:0x80499EF8; // type:function size:0x34 +fn_80499F2C = .text:0x80499F2C; // type:function size:0x44 +fn_80499F70 = .text:0x80499F70; // type:function size:0x4C +fn_80499FBC = .text:0x80499FBC; // type:function size:0x34 +fn_80499FF0 = .text:0x80499FF0; // type:function size:0x44 +fn_8049A034 = .text:0x8049A034; // type:function size:0x4C +fn_8049A080 = .text:0x8049A080; // type:function size:0x34 +fn_8049A0B4 = .text:0x8049A0B4; // type:function size:0x44 +fn_8049A0F8 = .text:0x8049A0F8; // type:function size:0x4C +fn_8049A144 = .text:0x8049A144; // type:function size:0x34 +fn_8049A178 = .text:0x8049A178; // type:function size:0x44 +fn_8049A1BC = .text:0x8049A1BC; // type:function size:0x4C +fn_8049A208 = .text:0x8049A208; // type:function size:0x34 +fn_8049A23C = .text:0x8049A23C; // type:function size:0x48 +fn_8049A284 = .text:0x8049A284; // type:function size:0x4C +fn_8049A2D0 = .text:0x8049A2D0; // type:function size:0x34 +fn_8049A304 = .text:0x8049A304; // type:function size:0x44 +fn_8049A348 = .text:0x8049A348; // type:function size:0x4C +fn_8049A394 = .text:0x8049A394; // type:function size:0x34 +fn_8049A3C8 = .text:0x8049A3C8; // type:function size:0x44 +fn_8049A40C = .text:0x8049A40C; // type:function size:0x4C +fn_8049A458 = .text:0x8049A458; // type:function size:0x34 +fn_8049A48C = .text:0x8049A48C; // type:function size:0x44 +fn_8049A4D0 = .text:0x8049A4D0; // type:function size:0x4C +fn_8049A51C = .text:0x8049A51C; // type:function size:0x34 +fn_8049A550 = .text:0x8049A550; // type:function size:0x44 +fn_8049A594 = .text:0x8049A594; // type:function size:0x4C +fn_8049A5E0 = .text:0x8049A5E0; // type:function size:0x34 +fn_8049A614 = .text:0x8049A614; // type:function size:0x44 +fn_8049A658 = .text:0x8049A658; // type:function size:0x4C +fn_8049A6A4 = .text:0x8049A6A4; // type:function size:0x34 +fn_8049A6D8 = .text:0x8049A6D8; // type:function size:0x44 +fn_8049A71C = .text:0x8049A71C; // type:function size:0x4C +fn_8049A768 = .text:0x8049A768; // type:function size:0x34 +fn_8049A79C = .text:0x8049A79C; // type:function size:0x44 +fn_8049A7E0 = .text:0x8049A7E0; // type:function size:0x4C +fn_8049A82C = .text:0x8049A82C; // type:function size:0x34 +fn_8049A860 = .text:0x8049A860; // type:function size:0x44 +fn_8049A8A4 = .text:0x8049A8A4; // type:function size:0x4C +fn_8049A8F0 = .text:0x8049A8F0; // type:function size:0x34 +fn_8049A924 = .text:0x8049A924; // type:function size:0x34 +fn_8049A958 = .text:0x8049A958; // type:function size:0x4C +fn_8049A9A4 = .text:0x8049A9A4; // type:function size:0x34 +fn_8049A9D8 = .text:0x8049A9D8; // type:function size:0x44 +fn_8049AA1C = .text:0x8049AA1C; // type:function size:0x4C +fn_8049AA68 = .text:0x8049AA68; // type:function size:0x34 +fn_8049AA9C = .text:0x8049AA9C; // type:function size:0x44 +fn_8049AAE0 = .text:0x8049AAE0; // type:function size:0x4C +fn_8049AB2C = .text:0x8049AB2C; // type:function size:0x34 +fn_8049AB60 = .text:0x8049AB60; // type:function size:0x44 +fn_8049ABA4 = .text:0x8049ABA4; // type:function size:0x4C +fn_8049ABF0 = .text:0x8049ABF0; // type:function size:0x34 +fn_8049AC24 = .text:0x8049AC24; // type:function size:0x44 +fn_8049AC68 = .text:0x8049AC68; // type:function size:0x4C +fn_8049ACB4 = .text:0x8049ACB4; // type:function size:0x34 +fn_8049ACE8 = .text:0x8049ACE8; // type:function size:0x44 +fn_8049AD2C = .text:0x8049AD2C; // type:function size:0x4C +fn_8049AD78 = .text:0x8049AD78; // type:function size:0x34 +fn_8049ADAC = .text:0x8049ADAC; // type:function size:0x44 +fn_8049ADF0 = .text:0x8049ADF0; // type:function size:0x4C +fn_8049AE3C = .text:0x8049AE3C; // type:function size:0x34 +fn_8049AE70 = .text:0x8049AE70; // type:function size:0x44 +fn_8049AEB4 = .text:0x8049AEB4; // type:function size:0x4C +fn_8049AF00 = .text:0x8049AF00; // type:function size:0x34 +fn_8049AF34 = .text:0x8049AF34; // type:function size:0x44 +fn_8049AF78 = .text:0x8049AF78; // type:function size:0x4C +fn_8049AFC4 = .text:0x8049AFC4; // type:function size:0x34 +fn_8049AFF8 = .text:0x8049AFF8; // type:function size:0x44 +fn_8049B03C = .text:0x8049B03C; // type:function size:0x4C +fn_8049B088 = .text:0x8049B088; // type:function size:0x34 +fn_8049B0BC = .text:0x8049B0BC; // type:function size:0x44 +fn_8049B100 = .text:0x8049B100; // type:function size:0x4C +fn_8049B14C = .text:0x8049B14C; // type:function size:0x34 +fn_8049B180 = .text:0x8049B180; // type:function size:0x44 +fn_8049B1C4 = .text:0x8049B1C4; // type:function size:0x4C +fn_8049B210 = .text:0x8049B210; // type:function size:0x34 +fn_8049B244 = .text:0x8049B244; // type:function size:0x34 +fn_8049B278 = .text:0x8049B278; // type:function size:0x4C +fn_8049B2C4 = .text:0x8049B2C4; // type:function size:0x34 +fn_8049B2F8 = .text:0x8049B2F8; // type:function size:0x48 +fn_8049B340 = .text:0x8049B340; // type:function size:0x4C +fn_8049B38C = .text:0x8049B38C; // type:function size:0x34 +fn_8049B3C0 = .text:0x8049B3C0; // type:function size:0x44 +fn_8049B404 = .text:0x8049B404; // type:function size:0x4C +fn_8049B450 = .text:0x8049B450; // type:function size:0x34 +fn_8049B484 = .text:0x8049B484; // type:function size:0x44 +fn_8049B4C8 = .text:0x8049B4C8; // type:function size:0x4C +fn_8049B514 = .text:0x8049B514; // type:function size:0x34 +fn_8049B548 = .text:0x8049B548; // type:function size:0x44 +fn_8049B58C = .text:0x8049B58C; // type:function size:0x34 +fn_8049B5C0 = .text:0x8049B5C0; // type:function size:0x48 +fn_8049B608 = .text:0x8049B608; // type:function size:0x4C +fn_8049B654 = .text:0x8049B654; // type:function size:0x34 +fn_8049B688 = .text:0x8049B688; // type:function size:0x48 +fn_8049B6D0 = .text:0x8049B6D0; // type:function size:0x4C +fn_8049B71C = .text:0x8049B71C; // type:function size:0x34 +fn_8049B750 = .text:0x8049B750; // type:function size:0x44 +fn_8049B794 = .text:0x8049B794; // type:function size:0x4C +fn_8049B7E0 = .text:0x8049B7E0; // type:function size:0x34 +fn_8049B814 = .text:0x8049B814; // type:function size:0x44 +fn_8049B858 = .text:0x8049B858; // type:function size:0x4C +fn_8049B8A4 = .text:0x8049B8A4; // type:function size:0x34 +fn_8049B8D8 = .text:0x8049B8D8; // type:function size:0x44 +fn_8049B91C = .text:0x8049B91C; // type:function size:0x4C +fn_8049B968 = .text:0x8049B968; // type:function size:0x34 +fn_8049B99C = .text:0x8049B99C; // type:function size:0x44 +fn_8049B9E0 = .text:0x8049B9E0; // type:function size:0x4C +fn_8049BA2C = .text:0x8049BA2C; // type:function size:0x34 +fn_8049BA60 = .text:0x8049BA60; // type:function size:0x34 +StaticClassName__8CharBoneFv = .text:0x8049BA94; // type:function size:0x4C +fn_8049BAE0 = .text:0x8049BAE0; // type:function size:0x34 +fn_8049BB14 = .text:0x8049BB14; // type:function size:0x44 +fn_8049BB58 = .text:0x8049BB58; // type:function size:0x4C +fn_8049BBA4 = .text:0x8049BBA4; // type:function size:0x34 +fn_8049BBD8 = .text:0x8049BBD8; // type:function size:0x44 +fn_8049BC1C = .text:0x8049BC1C; // type:function size:0x4C +fn_8049BC68 = .text:0x8049BC68; // type:function size:0x34 +fn_8049BC9C = .text:0x8049BC9C; // type:function size:0x40 +fn_8049BCDC = .text:0x8049BCDC; // type:function size:0x74 +fn_8049BD50 = .text:0x8049BD50; // type:function size:0x5C +fn_8049BDAC = .text:0x8049BDAC; // type:function size:0x58 +fn_8049BE04 = .text:0x8049BE04; // type:function size:0x80 +fn_8049BE84 = .text:0x8049BE84; // type:function size:0x80 +fn_8049BF04 = .text:0x8049BF04; // type:function size:0x58 +fn_8049BF5C = .text:0x8049BF5C; // type:function size:0x54 +fn_8049BFB0 = .text:0x8049BFB0; // type:function size:0x5C +fn_8049C00C = .text:0x8049C00C; // type:function size:0x6C +fn_8049C078 = .text:0x8049C078; // type:function size:0x28 +fn_8049C0A0 = .text:0x8049C0A0; // type:function size:0x8 +fn_8049C0A8 = .text:0x8049C0A8; // type:function size:0x3C +fn_8049C0E4 = .text:0x8049C0E4; // type:function size:0x4C +fn_8049C130 = .text:0x8049C130; // type:function size:0x38 +fn_8049C168 = .text:0x8049C168; // type:function size:0x164 +fn_8049C2CC = .text:0x8049C2CC; // type:function size:0x3C +fn_8049C308 = .text:0x8049C308; // type:function size:0x11C +fn_8049C424 = .text:0x8049C424; // type:function size:0x4C +fn_8049C470 = .text:0x8049C470; // type:function size:0x78 +fn_8049C4E8 = .text:0x8049C4E8; // type:function size:0x40 +fn_8049C528 = .text:0x8049C528; // type:function size:0x44 +fn_8049C56C = .text:0x8049C56C; // type:function size:0x54 +fn_8049C5C0 = .text:0x8049C5C0; // type:function size:0x6C +fn_8049C62C = .text:0x8049C62C; // type:function size:0x64 +fn_8049C690 = .text:0x8049C690; // type:function size:0x68 +fn_8049C6F8 = .text:0x8049C6F8; // type:function size:0x60 +fn_8049C758 = .text:0x8049C758; // type:function size:0x58 +fn_8049C7B0 = .text:0x8049C7B0; // type:function size:0x58 +fn_8049C808 = .text:0x8049C808; // type:function size:0x50 +fn_8049C858 = .text:0x8049C858; // type:function size:0x484 +fn_8049CCDC = .text:0x8049CCDC; // type:function size:0x88 +fn_8049CD64 = .text:0x8049CD64; // type:function size:0xE8 +fn_8049CE4C = .text:0x8049CE4C; // type:function size:0x30 +fn_8049CE7C = .text:0x8049CE7C; // type:function size:0xB4 +fn_8049CF30 = .text:0x8049CF30; // type:function size:0x34 +fn_8049CF64 = .text:0x8049CF64; // type:function size:0x8C +fn_8049CFF0 = .text:0x8049CFF0; // type:function size:0xD4 +fn_8049D0C4 = .text:0x8049D0C4; // type:function size:0x98 +fn_8049D15C = .text:0x8049D15C; // type:function size:0x6C +fn_8049D1C8 = .text:0x8049D1C8; // type:function size:0x30 +fn_8049D1F8 = .text:0x8049D1F8; // type:function size:0x40 +fn_8049D238 = .text:0x8049D238; // type:function size:0x44 +fn_8049D27C = .text:0x8049D27C; // type:function size:0xA4 +fn_8049D320 = .text:0x8049D320; // type:function size:0x6C +fn_8049D38C = .text:0x8049D38C; // type:function size:0xC +fn_8049D398 = .text:0x8049D398; // type:function size:0xE0 +fn_8049D478 = .text:0x8049D478; // type:function size:0x94 +fn_8049D50C = .text:0x8049D50C; // type:function size:0x70 +fn_8049D57C = .text:0x8049D57C; // type:function size:0x84 +fn_8049D600 = .text:0x8049D600; // type:function size:0x6C +fn_8049D66C = .text:0x8049D66C; // type:function size:0x58 +fn_8049D6C4 = .text:0x8049D6C4; // type:function size:0x58 +fn_8049D71C = .text:0x8049D71C; // type:function size:0x30 +fn_8049D74C = .text:0x8049D74C; // type:function size:0x60 +fn_8049D7AC = .text:0x8049D7AC; // type:function size:0x68 +fn_8049D814 = .text:0x8049D814; // type:function size:0x3C +fn_8049D850 = .text:0x8049D850; // type:function size:0x3C +fn_8049D88C = .text:0x8049D88C; // type:function size:0x30 +fn_8049D8BC = .text:0x8049D8BC; // type:function size:0x118 +fn_8049D9D4 = .text:0x8049D9D4; // type:function size:0x58 +fn_8049DA2C = .text:0x8049DA2C; // type:function size:0x40 +fn_8049DA6C = .text:0x8049DA6C; // type:function size:0x5C +fn_8049DAC8 = .text:0x8049DAC8; // type:function size:0x58 +fn_8049DB20 = .text:0x8049DB20; // type:function size:0x8 +fn_8049DB28 = .text:0x8049DB28; // type:function size:0x4 +fn_8049DB2C = .text:0x8049DB2C; // type:function size:0x40 +fn_8049DB6C = .text:0x8049DB6C; // type:function size:0x80 +fn_8049DBEC = .text:0x8049DBEC; // type:function size:0x30 +fn_8049DC1C = .text:0x8049DC1C; // type:function size:0xE8 +fn_8049DD04 = .text:0x8049DD04; // type:function size:0xF0 +fn_8049DDF4 = .text:0x8049DDF4; // type:function size:0x4 +fn_8049DDF8 = .text:0x8049DDF8; // type:function size:0x34 +fn_8049DE2C = .text:0x8049DE2C; // type:function size:0x44 +StaticClassName__9CharacterFv = .text:0x8049DE70; // type:function size:0x4C +fn_8049DEBC = .text:0x8049DEBC; // type:function size:0x4 +__ct__9CharacterFv = .text:0x8049DEC0; // type:function size:0x208 +fn_8049E0C8 = .text:0x8049E0C8; // type:function size:0x84 +fn_8049E14C = .text:0x8049E14C; // type:function size:0x58 +fn_8049E1A4 = .text:0x8049E1A4; // type:function size:0x58 +fn_8049E1FC = .text:0x8049E1FC; // type:function size:0x80 +fn_8049E27C = .text:0x8049E27C; // type:function size:0x80 +fn_8049E2FC = .text:0x8049E2FC; // type:function size:0x58 +fn_8049E354 = .text:0x8049E354; // type:function size:0x54 +fn_8049E3A8 = .text:0x8049E3A8; // type:function size:0x5C +fn_8049E404 = .text:0x8049E404; // type:function size:0x6C +fn_8049E470 = .text:0x8049E470; // type:function size:0x28 +fn_8049E498 = .text:0x8049E498; // type:function size:0x8 +fn_8049E4A0 = .text:0x8049E4A0; // type:function size:0x68 +fn_8049E508 = .text:0x8049E508; // type:function size:0x8 +fn_8049E510 = .text:0x8049E510; // type:function size:0x3C +fn_8049E54C = .text:0x8049E54C; // type:function size:0x6C +fn_8049E5B8 = .text:0x8049E5B8; // type:function size:0x50 +fn_8049E608 = .text:0x8049E608; // type:function size:0x30 +fn_8049E638 = .text:0x8049E638; // type:function size:0x30 +fn_8049E668 = .text:0x8049E668; // type:function size:0x40 +__dt__9CharacterFv = .text:0x8049E6A8; // type:function size:0x154 +fn_8049E7FC = .text:0x8049E7FC; // type:function size:0x68 +fn_8049E864 = .text:0x8049E864; // type:function size:0xC +fn_8049E870 = .text:0x8049E870; // type:function size:0x48 +fn_8049E8B8 = .text:0x8049E8B8; // type:function size:0x2A8 +fn_8049EB60 = .text:0x8049EB60; // type:function size:0x8 +fn_8049EB68 = .text:0x8049EB68; // type:function size:0x8 +fn_8049EB70 = .text:0x8049EB70; // type:function size:0x8 +fn_8049EB78 = .text:0x8049EB78; // type:function size:0x10C +fn_8049EC84 = .text:0x8049EC84; // type:function size:0x8 +fn_8049EC8C = .text:0x8049EC8C; // type:function size:0x14 +fn_8049ECA0 = .text:0x8049ECA0; // type:function size:0xA0 +fn_8049ED40 = .text:0x8049ED40; // type:function size:0x1A0 +fn_8049EEE0 = .text:0x8049EEE0; // type:function size:0x94 +fn_8049EF74 = .text:0x8049EF74; // type:function size:0x364 +fn_8049F2D8 = .text:0x8049F2D8; // type:function size:0x50 +fn_8049F328 = .text:0x8049F328; // type:function size:0xD0 +fn_8049F3F8 = .text:0x8049F3F8; // type:function size:0x78 +fn_8049F470 = .text:0x8049F470; // type:function size:0x5C +fn_8049F4CC = .text:0x8049F4CC; // type:function size:0x94 +fn_8049F560 = .text:0x8049F560; // type:function size:0x9C +fn_8049F5FC = .text:0x8049F5FC; // type:function size:0x74 +fn_8049F670 = .text:0x8049F670; // type:function size:0x9C +fn_8049F70C = .text:0x8049F70C; // type:function size:0x84 +fn_8049F790 = .text:0x8049F790; // type:function size:0x198 +fn_8049F928 = .text:0x8049F928; // type:function size:0x8 +fn_8049F930 = .text:0x8049F930; // type:function size:0x50 +fn_8049F980 = .text:0x8049F980; // type:function size:0x8 +fn_8049F988 = .text:0x8049F988; // type:function size:0x90 +fn_8049FA18 = .text:0x8049FA18; // type:function size:0x8 +fn_8049FA20 = .text:0x8049FA20; // type:function size:0x1B4 +fn_8049FBD4 = .text:0x8049FBD4; // type:function size:0x110 +fn_8049FCE4 = .text:0x8049FCE4; // type:function size:0x44 +fn_8049FD28 = .text:0x8049FD28; // type:function size:0x30 +fn_8049FD58 = .text:0x8049FD58; // type:function size:0x38 +fn_8049FD90 = .text:0x8049FD90; // type:function size:0x58 +fn_8049FDE8 = .text:0x8049FDE8; // type:function size:0x60 +fn_8049FE48 = .text:0x8049FE48; // type:function size:0xD8 +fn_8049FF20 = .text:0x8049FF20; // type:function size:0x8 +fn_8049FF28 = .text:0x8049FF28; // type:function size:0x90 +fn_8049FFB8 = .text:0x8049FFB8; // type:function size:0x84 +fn_804A003C = .text:0x804A003C; // type:function size:0x6C +fn_804A00A8 = .text:0x804A00A8; // type:function size:0x48 +fn_804A00F0 = .text:0x804A00F0; // type:function size:0x38 +fn_804A0128 = .text:0x804A0128; // type:function size:0xA0 +fn_804A01C8 = .text:0x804A01C8; // type:function size:0x8C +fn_804A0254 = .text:0x804A0254; // type:function size:0x50 +fn_804A02A4 = .text:0x804A02A4; // type:function size:0x10 +fn_804A02B4 = .text:0x804A02B4; // type:function size:0xD8 +fn_804A038C = .text:0x804A038C; // type:function size:0x8 +fn_804A0394 = .text:0x804A0394; // type:function size:0xD0 +fn_804A0464 = .text:0x804A0464; // type:function size:0xD4 +fn_804A0538 = .text:0x804A0538; // type:function size:0x5C +fn_804A0594 = .text:0x804A0594; // type:function size:0x5C +fn_804A05F0 = .text:0x804A05F0; // type:function size:0x24 +fn_804A0614 = .text:0x804A0614; // type:function size:0xAC +fn_804A06C0 = .text:0x804A06C0; // type:function size:0xB0 +fn_804A0770 = .text:0x804A0770; // type:function size:0x128 +fn_804A0898 = .text:0x804A0898; // type:function size:0xF8 +fn_804A0990 = .text:0x804A0990; // type:function size:0x80 +fn_804A0A10 = .text:0x804A0A10; // type:function size:0x2C +fn_804A0A3C = .text:0x804A0A3C; // type:function size:0x74 +fn_804A0AB0 = .text:0x804A0AB0; // type:function size:0xA8 +fn_804A0B58 = .text:0x804A0B58; // type:function size:0x24 +fn_804A0B7C = .text:0x804A0B7C; // type:function size:0x78 +fn_804A0BF4 = .text:0x804A0BF4; // type:function size:0x8 +fn_804A0BFC = .text:0x804A0BFC; // type:function size:0x7C +fn_804A0C78 = .text:0x804A0C78; // type:function size:0x4 +fn_804A0C7C = .text:0x804A0C7C; // type:function size:0x4 +fn_804A0C80 = .text:0x804A0C80; // type:function size:0x100 +fn_804A0D80 = .text:0x804A0D80; // type:function size:0x4B0 +fn_804A1230 = .text:0x804A1230; // type:function size:0x74 +fn_804A12A4 = .text:0x804A12A4; // type:function size:0x5C +fn_804A1300 = .text:0x804A1300; // type:function size:0x4 +fn_804A1304 = .text:0x804A1304; // type:function size:0x90 +fn_804A1394 = .text:0x804A1394; // type:function size:0x4 +fn_804A1398 = .text:0x804A1398; // type:function size:0x40 +fn_804A13D8 = .text:0x804A13D8; // type:function size:0x8C +fn_804A1464 = .text:0x804A1464; // type:function size:0x8 +fn_804A146C = .text:0x804A146C; // type:function size:0x2C +fn_804A1498 = .text:0x804A1498; // type:function size:0x58 +fn_804A14F0 = .text:0x804A14F0; // type:function size:0x28 +fn_804A1518 = .text:0x804A1518; // type:function size:0x68 +fn_804A1580 = .text:0x804A1580; // type:function size:0x74 +fn_804A15F4 = .text:0x804A15F4; // type:function size:0x5C +fn_804A1650 = .text:0x804A1650; // type:function size:0x4 +fn_804A1654 = .text:0x804A1654; // type:function size:0x90 +fn_804A16E4 = .text:0x804A16E4; // type:function size:0x4 +fn_804A16E8 = .text:0x804A16E8; // type:function size:0x40 +fn_804A1728 = .text:0x804A1728; // type:function size:0x8C +fn_804A17B4 = .text:0x804A17B4; // type:function size:0x8 +fn_804A17BC = .text:0x804A17BC; // type:function size:0x2C +fn_804A17E8 = .text:0x804A17E8; // type:function size:0x58 +fn_804A1840 = .text:0x804A1840; // type:function size:0x8 +fn_804A1848 = .text:0x804A1848; // type:function size:0x28 +fn_804A1870 = .text:0x804A1870; // type:function size:0x68 +fn_804A18D8 = .text:0x804A18D8; // type:function size:0x58 +fn_804A1930 = .text:0x804A1930; // type:function size:0x58 +fn_804A1988 = .text:0x804A1988; // type:function size:0x58 +fn_804A19E0 = .text:0x804A19E0; // type:function size:0x80 +fn_804A1A60 = .text:0x804A1A60; // type:function size:0x80 +fn_804A1AE0 = .text:0x804A1AE0; // type:function size:0x58 +fn_804A1B38 = .text:0x804A1B38; // type:function size:0x54 +fn_804A1B8C = .text:0x804A1B8C; // type:function size:0x5C +fn_804A1BE8 = .text:0x804A1BE8; // type:function size:0x6C +fn_804A1C54 = .text:0x804A1C54; // type:function size:0x28 +fn_804A1C7C = .text:0x804A1C7C; // type:function size:0x8 +fn_804A1C84 = .text:0x804A1C84; // type:function size:0x3C +fn_804A1CC0 = .text:0x804A1CC0; // type:function size:0x4 +fn_804A1CC4 = .text:0x804A1CC4; // type:function size:0x3C +fn_804A1D00 = .text:0x804A1D00; // type:function size:0x5C +fn_804A1D5C = .text:0x804A1D5C; // type:function size:0x30 +fn_804A1D8C = .text:0x804A1D8C; // type:function size:0x50 +fn_804A1DDC = .text:0x804A1DDC; // type:function size:0x30 +fn_804A1E0C = .text:0x804A1E0C; // type:function size:0x30 +fn_804A1E3C = .text:0x804A1E3C; // type:function size:0x40 +fn_804A1E7C = .text:0x804A1E7C; // type:function size:0xD0 +Handle__9CharacterFP9DataArrayb = .text:0x804A1F4C; // type:function size:0x380 +fn_804A22CC = .text:0x804A22CC; // type:function size:0x34 +fn_804A2300 = .text:0x804A2300; // type:function size:0x3C +fn_804A233C = .text:0x804A233C; // type:function size:0x34 +fn_804A2370 = .text:0x804A2370; // type:function size:0x3C +fn_804A23AC = .text:0x804A23AC; // type:function size:0x60 +fn_804A240C = .text:0x804A240C; // type:function size:0xC4 +fn_804A24D0 = .text:0x804A24D0; // type:function size:0x114 +SyncProperty__9CharacterFR8DataNodeP9DataArrayi6PropOp = .text:0x804A25E4; // type:function size:0x3B0 +fn_804A2994 = .text:0x804A2994; // type:function size:0x170 +fn_804A2B04 = .text:0x804A2B04; // type:function size:0x2C +fn_804A2B30 = .text:0x804A2B30; // type:function size:0x84 +fn_804A2BB4 = .text:0x804A2BB4; // type:function size:0x2C +fn_804A2BE0 = .text:0x804A2BE0; // type:function size:0x110 +fn_804A2CF0 = .text:0x804A2CF0; // type:function size:0x68 +fn_804A2D58 = .text:0x804A2D58; // type:function size:0x2C +fn_804A2D84 = .text:0x804A2D84; // type:function size:0x58 +fn_804A2DDC = .text:0x804A2DDC; // type:function size:0x160 +fn_804A2F3C = .text:0x804A2F3C; // type:function size:0x5C +fn_804A2F98 = .text:0x804A2F98; // type:function size:0x10 +fn_804A2FA8 = .text:0x804A2FA8; // type:function size:0x28 +fn_804A2FD0 = .text:0x804A2FD0; // type:function size:0x5C +fn_804A302C = .text:0x804A302C; // type:function size:0x60 +fn_804A308C = .text:0x804A308C; // type:function size:0x68 +fn_804A30F4 = .text:0x804A30F4; // type:function size:0x2C +fn_804A3120 = .text:0x804A3120; // type:function size:0x3B8 +SetType__9CharacterF6Symbol = .text:0x804A34D8; // type:function size:0x134 +ClassName__9CharacterCFv = .text:0x804A360C; // type:function size:0x4 +SetType__16RndTransformableFP6Symbol = .text:0x804A3610; // type:function size:0x144 +ClassName__16RndTransformableFv = .text:0x804A3754; // type:function size:0x4 +fn_804A3758 = .text:0x804A3758; // type:function size:0x198 +fn_804A38F0 = .text:0x804A38F0; // type:function size:0x5C +fn_804A394C = .text:0x804A394C; // type:function size:0x54 +fn_804A39A0 = .text:0x804A39A0; // type:function size:0x28 +fn_804A39C8 = .text:0x804A39C8; // type:function size:0x68 +fn_804A3A30 = .text:0x804A3A30; // type:function size:0x114 +fn_804A3B44 = .text:0x804A3B44; // type:function size:0x5C +fn_804A3BA0 = .text:0x804A3BA0; // type:function size:0x5C +fn_804A3BFC = .text:0x804A3BFC; // type:function size:0x54 +fn_804A3C50 = .text:0x804A3C50; // type:function size:0x198 +fn_804A3DE8 = .text:0x804A3DE8; // type:function size:0x5C +fn_804A3E44 = .text:0x804A3E44; // type:function size:0x10 +fn_804A3E54 = .text:0x804A3E54; // type:function size:0x54 +fn_804A3EA8 = .text:0x804A3EA8; // type:function size:0x28 +fn_804A3ED0 = .text:0x804A3ED0; // type:function size:0x68 +fn_804A3F38 = .text:0x804A3F38; // type:function size:0x5C +fn_804A3F94 = .text:0x804A3F94; // type:function size:0x44 +fn_804A3FD8 = .text:0x804A3FD8; // type:function size:0x30 +fn_804A4008 = .text:0x804A4008; // type:function size:0x98 +fn_804A40A0 = .text:0x804A40A0; // type:function size:0x70 +fn_804A4110 = .text:0x804A4110; // type:function size:0x114 +fn_804A4224 = .text:0x804A4224; // type:function size:0x5C +fn_804A4280 = .text:0x804A4280; // type:function size:0x5C +fn_804A42DC = .text:0x804A42DC; // type:function size:0x54 +fn_804A4330 = .text:0x804A4330; // type:function size:0x15C +fn_804A448C = .text:0x804A448C; // type:function size:0x44 +fn_804A44D0 = .text:0x804A44D0; // type:function size:0x8 +fn_804A44D8 = .text:0x804A44D8; // type:function size:0x108 +fn_804A45E0 = .text:0x804A45E0; // type:function size:0x5C +fn_804A463C = .text:0x804A463C; // type:function size:0x10 +fn_804A464C = .text:0x804A464C; // type:function size:0x40 +fn_804A468C = .text:0x804A468C; // type:function size:0x8 +fn_804A4694 = .text:0x804A4694; // type:function size:0x8 +fn_804A469C = .text:0x804A469C; // type:function size:0x8 +fn_804A46A4 = .text:0x804A46A4; // type:function size:0x8 +fn_804A46AC = .text:0x804A46AC; // type:function size:0x8 +fn_804A46B4 = .text:0x804A46B4; // type:function size:0x8 +fn_804A46BC = .text:0x804A46BC; // type:function size:0x8 +fn_804A46C4 = .text:0x804A46C4; // type:function size:0x8 +fn_804A46CC = .text:0x804A46CC; // type:function size:0x8 +fn_804A46D4 = .text:0x804A46D4; // type:function size:0x8 +fn_804A46DC = .text:0x804A46DC; // type:function size:0x8 +fn_804A46E4 = .text:0x804A46E4; // type:function size:0x8 +fn_804A46EC = .text:0x804A46EC; // type:function size:0x8 +fn_804A46F4 = .text:0x804A46F4; // type:function size:0x8 +fn_804A46FC = .text:0x804A46FC; // type:function size:0x8 +fn_804A4704 = .text:0x804A4704; // type:function size:0x14 +fn_804A4718 = .text:0x804A4718; // type:function size:0x8 +fn_804A4720 = .text:0x804A4720; // type:function size:0x8 +fn_804A4728 = .text:0x804A4728; // type:function size:0x8 +fn_804A4730 = .text:0x804A4730; // type:function size:0x8 +fn_804A4738 = .text:0x804A4738; // type:function size:0x8 +fn_804A4740 = .text:0x804A4740; // type:function size:0x8 +fn_804A4748 = .text:0x804A4748; // type:function size:0x8 +fn_804A4750 = .text:0x804A4750; // type:function size:0x8 +fn_804A4758 = .text:0x804A4758; // type:function size:0x8 +fn_804A4760 = .text:0x804A4760; // type:function size:0x8 +fn_804A4768 = .text:0x804A4768; // type:function size:0x8 +fn_804A4770 = .text:0x804A4770; // type:function size:0x8 +fn_804A4778 = .text:0x804A4778; // type:function size:0x8 +fn_804A4780 = .text:0x804A4780; // type:function size:0x8 +fn_804A4788 = .text:0x804A4788; // type:function size:0x8 +fn_804A4790 = .text:0x804A4790; // type:function size:0x14 +fn_804A47A4 = .text:0x804A47A4; // type:function size:0x14 +fn_804A47B8 = .text:0x804A47B8; // type:function size:0x14 +fn_804A47CC = .text:0x804A47CC; // type:function size:0x14 +fn_804A47E0 = .text:0x804A47E0; // type:function size:0x14 +fn_804A47F4 = .text:0x804A47F4; // type:function size:0x14 +fn_804A4808 = .text:0x804A4808; // type:function size:0x14 +fn_804A481C = .text:0x804A481C; // type:function size:0x14 +fn_804A4830 = .text:0x804A4830; // type:function size:0x14 +fn_804A4844 = .text:0x804A4844; // type:function size:0x14 +fn_804A4858 = .text:0x804A4858; // type:function size:0x14 +fn_804A486C = .text:0x804A486C; // type:function size:0x8 +fn_804A4874 = .text:0x804A4874; // type:function size:0x8 +fn_804A487C = .text:0x804A487C; // type:function size:0x8 +fn_804A4884 = .text:0x804A4884; // type:function size:0x8 +fn_804A488C = .text:0x804A488C; // type:function size:0x8 +fn_804A4894 = .text:0x804A4894; // type:function size:0x8 +fn_804A489C = .text:0x804A489C; // type:function size:0x14 +fn_804A48B0 = .text:0x804A48B0; // type:function size:0x14 +fn_804A48C4 = .text:0x804A48C4; // type:function size:0x14 +fn_804A48D8 = .text:0x804A48D8; // type:function size:0x14 +fn_804A48EC = .text:0x804A48EC; // type:function size:0x14 +fn_804A4900 = .text:0x804A4900; // type:function size:0x14 +fn_804A4914 = .text:0x804A4914; // type:function size:0x14 +fn_804A4928 = .text:0x804A4928; // type:function size:0x14 +fn_804A493C = .text:0x804A493C; // type:function size:0x14 +fn_804A4950 = .text:0x804A4950; // type:function size:0x14 +fn_804A4964 = .text:0x804A4964; // type:function size:0x14 +fn_804A4978 = .text:0x804A4978; // type:function size:0x14 +fn_804A498C = .text:0x804A498C; // type:function size:0xDC +fn_804A4A68 = .text:0x804A4A68; // type:function size:0x58 +fn_804A4AC0 = .text:0x804A4AC0; // type:function size:0x58 +fn_804A4B18 = .text:0x804A4B18; // type:function size:0x58 +fn_804A4B70 = .text:0x804A4B70; // type:function size:0x60 +fn_804A4BD0 = .text:0x804A4BD0; // type:function size:0x58 +fn_804A4C28 = .text:0x804A4C28; // type:function size:0x50 +fn_804A4C78 = .text:0x804A4C78; // type:function size:0x30 +fn_804A4CA8 = .text:0x804A4CA8; // type:function size:0x30 +fn_804A4CD8 = .text:0x804A4CD8; // type:function size:0x60 +fn_804A4D38 = .text:0x804A4D38; // type:function size:0x1B0 +fn_804A4EE8 = .text:0x804A4EE8; // type:function size:0x4 +fn_804A4EEC = .text:0x804A4EEC; // type:function size:0x4 +fn_804A4EF0 = .text:0x804A4EF0; // type:function size:0x4 +fn_804A4EF4 = .text:0x804A4EF4; // type:function size:0x8 +fn_804A4EFC = .text:0x804A4EFC; // type:function size:0xEC +fn_804A4FE8 = .text:0x804A4FE8; // type:function size:0x4 +fn_804A4FEC = .text:0x804A4FEC; // type:function size:0xB8 +fn_804A50A4 = .text:0x804A50A4; // type:function size:0xAC +fn_804A5150 = .text:0x804A5150; // type:function size:0x34 +fn_804A5184 = .text:0x804A5184; // type:function size:0x5C +fn_804A51E0 = .text:0x804A51E0; // type:function size:0x4 +fn_804A51E4 = .text:0x804A51E4; // type:function size:0xAC +fn_804A5290 = .text:0x804A5290; // type:function size:0x5C +fn_804A52EC = .text:0x804A52EC; // type:function size:0x30 +fn_804A531C = .text:0x804A531C; // type:function size:0x4C +fn_804A5368 = .text:0x804A5368; // type:function size:0x70 +fn_804A53D8 = .text:0x804A53D8; // type:function size:0x30 +fn_804A5408 = .text:0x804A5408; // type:function size:0x2C +fn_804A5434 = .text:0x804A5434; // type:function size:0x40 +fn_804A5474 = .text:0x804A5474; // type:function size:0x48 +Handle__13CharBlendBoneFP9DataArrayb = .text:0x804A54BC; // type:function size:0xD0 +fn_804A558C = .text:0x804A558C; // type:function size:0xE0 +fn_804A566C = .text:0x804A566C; // type:function size:0x1E4 +fn_804A5850 = .text:0x804A5850; // type:function size:0x1A8 +fn_804A59F8 = .text:0x804A59F8; // type:function size:0x58 +fn_804A5A50 = .text:0x804A5A50; // type:function size:0x64 +fn_804A5AB4 = .text:0x804A5AB4; // type:function size:0x50 +fn_804A5B04 = .text:0x804A5B04; // type:function size:0x10 +fn_804A5B14 = .text:0x804A5B14; // type:function size:0x44 +fn_804A5B58 = .text:0x804A5B58; // type:function size:0x50 +fn_804A5BA8 = .text:0x804A5BA8; // type:function size:0x6C +fn_804A5C14 = .text:0x804A5C14; // type:function size:0x2C +fn_804A5C40 = .text:0x804A5C40; // type:function size:0x8 +fn_804A5C48 = .text:0x804A5C48; // type:function size:0x5C +fn_804A5CA4 = .text:0x804A5CA4; // type:function size:0xA4 +fn_804A5D48 = .text:0x804A5D48; // type:function size:0x68 +fn_804A5DB0 = .text:0x804A5DB0; // type:function size:0x194 +fn_804A5F44 = .text:0x804A5F44; // type:function size:0x60 +fn_804A5FA4 = .text:0x804A5FA4; // type:function size:0xA0 +fn_804A6044 = .text:0x804A6044; // type:function size:0x6C +fn_804A60B0 = .text:0x804A60B0; // type:function size:0x74 +fn_804A6124 = .text:0x804A6124; // type:function size:0x60 +fn_804A6184 = .text:0x804A6184; // type:function size:0x90 +fn_804A6214 = .text:0x804A6214; // type:function size:0x8C +fn_804A62A0 = .text:0x804A62A0; // type:function size:0x44 +fn_804A62E4 = .text:0x804A62E4; // type:function size:0x40 +fn_804A6324 = .text:0x804A6324; // type:function size:0xE4 +fn_804A6408 = .text:0x804A6408; // type:function size:0x54 +fn_804A645C = .text:0x804A645C; // type:function size:0x6C +fn_804A64C8 = .text:0x804A64C8; // type:function size:0x134 +fn_804A65FC = .text:0x804A65FC; // type:function size:0x4 +fn_804A6600 = .text:0x804A6600; // type:function size:0x14 +fn_804A6614 = .text:0x804A6614; // type:function size:0x14 +fn_804A6628 = .text:0x804A6628; // type:function size:0x14 +fn_804A663C = .text:0x804A663C; // type:function size:0x14 +fn_804A6650 = .text:0x804A6650; // type:function size:0x14 +fn_804A6664 = .text:0x804A6664; // type:function size:0x14 +fn_804A6678 = .text:0x804A6678; // type:function size:0x14 +fn_804A668C = .text:0x804A668C; // type:function size:0x14 +fn_804A66A0 = .text:0x804A66A0; // type:function size:0x98 +fn_804A6738 = .text:0x804A6738; // type:function size:0x58 +fn_804A6790 = .text:0x804A6790; // type:function size:0x80 +fn_804A6810 = .text:0x804A6810; // type:function size:0x80 +fn_804A6890 = .text:0x804A6890; // type:function size:0x58 +fn_804A68E8 = .text:0x804A68E8; // type:function size:0x54 +fn_804A693C = .text:0x804A693C; // type:function size:0x5C +fn_804A6998 = .text:0x804A6998; // type:function size:0x6C +fn_804A6A04 = .text:0x804A6A04; // type:function size:0x28 +fn_804A6A2C = .text:0x804A6A2C; // type:function size:0x8 +fn_804A6A34 = .text:0x804A6A34; // type:function size:0x3C +fn_804A6A70 = .text:0x804A6A70; // type:function size:0x80 +fn_804A6AF0 = .text:0x804A6AF0; // type:function size:0x30 +fn_804A6B20 = .text:0x804A6B20; // type:function size:0x30 +fn_804A6B50 = .text:0x804A6B50; // type:function size:0x40 +fn_804A6B90 = .text:0x804A6B90; // type:function size:0x68 +fn_804A6BF8 = .text:0x804A6BF8; // type:function size:0x34 +fn_804A6C2C = .text:0x804A6C2C; // type:function size:0xFC +fn_804A6D28 = .text:0x804A6D28; // type:function size:0x4 +fn_804A6D2C = .text:0x804A6D2C; // type:function size:0x54 +fn_804A6D80 = .text:0x804A6D80; // type:function size:0x64 +fn_804A6DE4 = .text:0x804A6DE4; // type:function size:0x50 +fn_804A6E34 = .text:0x804A6E34; // type:function size:0x10 +fn_804A6E44 = .text:0x804A6E44; // type:function size:0x2C +fn_804A6E70 = .text:0x804A6E70; // type:function size:0x38 +fn_804A6EA8 = .text:0x804A6EA8; // type:function size:0x2C +fn_804A6ED4 = .text:0x804A6ED4; // type:function size:0x10 +fn_804A6EE4 = .text:0x804A6EE4; // type:function size:0x68 +fn_804A6F4C = .text:0x804A6F4C; // type:function size:0x48 +fn_804A6F94 = .text:0x804A6F94; // type:function size:0x4 +fn_804A6F98 = .text:0x804A6F98; // type:function size:0x26C +fn_804A7204 = .text:0x804A7204; // type:function size:0x40 +fn_804A7244 = .text:0x804A7244; // type:function size:0x104 +fn_804A7348 = .text:0x804A7348; // type:function size:0x80 +fn_804A73C8 = .text:0x804A73C8; // type:function size:0x4 +fn_804A73CC = .text:0x804A73CC; // type:function size:0x90 +fn_804A745C = .text:0x804A745C; // type:function size:0x4 +fn_804A7460 = .text:0x804A7460; // type:function size:0x40 +fn_804A74A0 = .text:0x804A74A0; // type:function size:0x8C +fn_804A752C = .text:0x804A752C; // type:function size:0x8 +fn_804A7534 = .text:0x804A7534; // type:function size:0x2C +fn_804A7560 = .text:0x804A7560; // type:function size:0x58 +fn_804A75B8 = .text:0x804A75B8; // type:function size:0x28 +fn_804A75E0 = .text:0x804A75E0; // type:function size:0x68 +fn_804A7648 = .text:0x804A7648; // type:function size:0x18 +fn_804A7660 = .text:0x804A7660; // type:function size:0x9C +fn_804A76FC = .text:0x804A76FC; // type:function size:0xB0 +fn_804A77AC = .text:0x804A77AC; // type:function size:0xB0 +fn_804A785C = .text:0x804A785C; // type:function size:0x30 +fn_804A788C = .text:0x804A788C; // type:function size:0x8 +Handle__8CharBoneFP9DataArrayb = .text:0x804A7894; // type:function size:0x164 +fn_804A79F8 = .text:0x804A79F8; // type:function size:0x84 +fn_804A7A7C = .text:0x804A7A7C; // type:function size:0xE0 +SyncProperty__8CharBoneFR8DataNodeP9DataArrayi6PropOp = .text:0x804A7B5C; // type:function size:0x22C +fn_804A7D88 = .text:0x804A7D88; // type:function size:0xC0 +fn_804A7E48 = .text:0x804A7E48; // type:function size:0x14C +fn_804A7F94 = .text:0x804A7F94; // type:function size:0x2C +fn_804A7FC0 = .text:0x804A7FC0; // type:function size:0x84 +fn_804A8044 = .text:0x804A8044; // type:function size:0x2C +fn_804A8070 = .text:0x804A8070; // type:function size:0x80 +fn_804A80F0 = .text:0x804A80F0; // type:function size:0x68 +fn_804A8158 = .text:0x804A8158; // type:function size:0x58 +fn_804A81B0 = .text:0x804A81B0; // type:function size:0x160 +fn_804A8310 = .text:0x804A8310; // type:function size:0x5C +fn_804A836C = .text:0x804A836C; // type:function size:0x28 +fn_804A8394 = .text:0x804A8394; // type:function size:0x5C +fn_804A83F0 = .text:0x804A83F0; // type:function size:0x60 +fn_804A8450 = .text:0x804A8450; // type:function size:0x114 +fn_804A8564 = .text:0x804A8564; // type:function size:0x60 +fn_804A85C4 = .text:0x804A85C4; // type:function size:0x5C +fn_804A8620 = .text:0x804A8620; // type:function size:0x54 +fn_804A8674 = .text:0x804A8674; // type:function size:0x5C +fn_804A86D0 = .text:0x804A86D0; // type:function size:0x60 +ClassName__8CharBoneCFv = .text:0x804A8730; // type:function size:0x4 +SetType__8CharBoneF6Symbol = .text:0x804A8734; // type:function size:0x128 +fn_804A885C = .text:0x804A885C; // type:function size:0x2C +fn_804A8888 = .text:0x804A8888; // type:function size:0x190 +fn_804A8A18 = .text:0x804A8A18; // type:function size:0x54 +fn_804A8A6C = .text:0x804A8A6C; // type:function size:0x28 +fn_804A8A94 = .text:0x804A8A94; // type:function size:0x68 +fn_804A8AFC = .text:0x804A8AFC; // type:function size:0x14 +fn_804A8B10 = .text:0x804A8B10; // type:function size:0x14 +fn_804A8B24 = .text:0x804A8B24; // type:function size:0x14 +fn_804A8B38 = .text:0x804A8B38; // type:function size:0x14 +fn_804A8B4C = .text:0x804A8B4C; // type:function size:0x14 +fn_804A8B60 = .text:0x804A8B60; // type:function size:0x14 +fn_804A8B74 = .text:0x804A8B74; // type:function size:0x14 +fn_804A8B88 = .text:0x804A8B88; // type:function size:0x14 +fn_804A8B9C = .text:0x804A8B9C; // type:function size:0x14 +fn_804A8BB0 = .text:0x804A8BB0; // type:function size:0x14 +fn_804A8BC4 = .text:0x804A8BC4; // type:function size:0x14 +fn_804A8BD8 = .text:0x804A8BD8; // type:function size:0x14 +fn_804A8BEC = .text:0x804A8BEC; // type:function size:0x4 +fn_804A8BF0 = .text:0x804A8BF0; // type:function size:0x254 +fn_804A8E44 = .text:0x804A8E44; // type:function size:0x64 +fn_804A8EA8 = .text:0x804A8EA8; // type:function size:0x48 +fn_804A8EF0 = .text:0x804A8EF0; // type:function size:0x28 +fn_804A8F18 = .text:0x804A8F18; // type:function size:0x14 +fn_804A8F2C = .text:0x804A8F2C; // type:function size:0xA0 +fn_804A8FCC = .text:0x804A8FCC; // type:function size:0x94 +fn_804A9060 = .text:0x804A9060; // type:function size:0xEC +fn_804A914C = .text:0x804A914C; // type:function size:0x6C +fn_804A91B8 = .text:0x804A91B8; // type:function size:0x40 +fn_804A91F8 = .text:0x804A91F8; // type:function size:0x44 +fn_804A923C = .text:0x804A923C; // type:function size:0x54 +fn_804A9290 = .text:0x804A9290; // type:function size:0x68 +fn_804A92F8 = .text:0x804A92F8; // type:function size:0x68 +fn_804A9360 = .text:0x804A9360; // type:function size:0x58 +fn_804A93B8 = .text:0x804A93B8; // type:function size:0xB0 +fn_804A9468 = .text:0x804A9468; // type:function size:0x2C +fn_804A9494 = .text:0x804A9494; // type:function size:0x30 +fn_804A94C4 = .text:0x804A94C4; // type:function size:0x7C +fn_804A9540 = .text:0x804A9540; // type:function size:0xD4 +fn_804A9614 = .text:0x804A9614; // type:function size:0x120 +fn_804A9734 = .text:0x804A9734; // type:function size:0x13C +fn_804A9870 = .text:0x804A9870; // type:function size:0x50 +fn_804A98C0 = .text:0x804A98C0; // type:function size:0xD0 +fn_804A9990 = .text:0x804A9990; // type:function size:0x78 +fn_804A9A08 = .text:0x804A9A08; // type:function size:0x430 +fn_804A9E38 = .text:0x804A9E38; // type:function size:0x8 +fn_804A9E40 = .text:0x804A9E40; // type:function size:0x60 +fn_804A9EA0 = .text:0x804A9EA0; // type:function size:0x48 +fn_804A9EE8 = .text:0x804A9EE8; // type:function size:0x30 +fn_804A9F18 = .text:0x804A9F18; // type:function size:0x3C +fn_804A9F54 = .text:0x804A9F54; // type:function size:0x230 +fn_804AA184 = .text:0x804AA184; // type:function size:0x50 +fn_804AA1D4 = .text:0x804AA1D4; // type:function size:0x21C +fn_804AA3F0 = .text:0x804AA3F0; // type:function size:0xA8 +fn_804AA498 = .text:0x804AA498; // type:function size:0x4C +fn_804AA4E4 = .text:0x804AA4E4; // type:function size:0x78 +fn_804AA55C = .text:0x804AA55C; // type:function size:0x54 +fn_804AA5B0 = .text:0x804AA5B0; // type:function size:0x3C +fn_804AA5EC = .text:0x804AA5EC; // type:function size:0x11C +fn_804AA708 = .text:0x804AA708; // type:function size:0x44 +fn_804AA74C = .text:0x804AA74C; // type:function size:0x4 +fn_804AA750 = .text:0x804AA750; // type:function size:0x4 +fn_804AA754 = .text:0x804AA754; // type:function size:0x88 +fn_804AA7DC = .text:0x804AA7DC; // type:function size:0xC8 +fn_804AA8A4 = .text:0x804AA8A4; // type:function size:0x80 +fn_804AA924 = .text:0x804AA924; // type:function size:0x50 +fn_804AA974 = .text:0x804AA974; // type:function size:0xB8 +fn_804AAA2C = .text:0x804AAA2C; // type:function size:0xF8 +fn_804AAB24 = .text:0x804AAB24; // type:function size:0x114 +fn_804AAC38 = .text:0x804AAC38; // type:function size:0x1E8 +fn_804AAE20 = .text:0x804AAE20; // type:function size:0xB0 +fn_804AAED0 = .text:0x804AAED0; // type:function size:0x280 +fn_804AB150 = .text:0x804AB150; // type:function size:0x100 +fn_804AB250 = .text:0x804AB250; // type:function size:0x134 +fn_804AB384 = .text:0x804AB384; // type:function size:0x4 +fn_804AB388 = .text:0x804AB388; // type:function size:0x14 +fn_804AB39C = .text:0x804AB39C; // type:function size:0x14 +fn_804AB3B0 = .text:0x804AB3B0; // type:function size:0x14 +fn_804AB3C4 = .text:0x804AB3C4; // type:function size:0x14 +fn_804AB3D8 = .text:0x804AB3D8; // type:function size:0x14 +fn_804AB3EC = .text:0x804AB3EC; // type:function size:0x14 +fn_804AB400 = .text:0x804AB400; // type:function size:0x14 +fn_804AB414 = .text:0x804AB414; // type:function size:0x14 +fn_804AB428 = .text:0x804AB428; // type:function size:0x14 +fn_804AB43C = .text:0x804AB43C; // type:function size:0x14 +fn_804AB450 = .text:0x804AB450; // type:function size:0x14 +fn_804AB464 = .text:0x804AB464; // type:function size:0x14 +fn_804AB478 = .text:0x804AB478; // type:function size:0x4 +fn_804AB47C = .text:0x804AB47C; // type:function size:0x88 +fn_804AB504 = .text:0x804AB504; // type:function size:0x30 +fn_804AB534 = .text:0x804AB534; // type:function size:0x30 +fn_804AB564 = .text:0x804AB564; // type:function size:0x40 +fn_804AB5A4 = .text:0x804AB5A4; // type:function size:0x90 +fn_804AB634 = .text:0x804AB634; // type:function size:0x14 +fn_804AB648 = .text:0x804AB648; // type:function size:0x8C +fn_804AB6D4 = .text:0x804AB6D4; // type:function size:0x2C +fn_804AB700 = .text:0x804AB700; // type:function size:0x30 +fn_804AB730 = .text:0x804AB730; // type:function size:0x2C +fn_804AB75C = .text:0x804AB75C; // type:function size:0x84 +fn_804AB7E0 = .text:0x804AB7E0; // type:function size:0x28 +fn_804AB808 = .text:0x804AB808; // type:function size:0x68 +fn_804AB870 = .text:0x804AB870; // type:function size:0x74 +fn_804AB8E4 = .text:0x804AB8E4; // type:function size:0x4 +fn_804AB8E8 = .text:0x804AB8E8; // type:function size:0x3C +fn_804AB924 = .text:0x804AB924; // type:function size:0x40 +fn_804AB964 = .text:0x804AB964; // type:function size:0x8C +fn_804AB9F0 = .text:0x804AB9F0; // type:function size:0x8 +fn_804AB9F8 = .text:0x804AB9F8; // type:function size:0x2C +fn_804ABA24 = .text:0x804ABA24; // type:function size:0x58 +fn_804ABA7C = .text:0x804ABA7C; // type:function size:0x8 +fn_804ABA84 = .text:0x804ABA84; // type:function size:0x124 +fn_804ABBA8 = .text:0x804ABBA8; // type:function size:0x70 +fn_804ABC18 = .text:0x804ABC18; // type:function size:0xA0 +fn_804ABCB8 = .text:0x804ABCB8; // type:function size:0x68 +fn_804ABD20 = .text:0x804ABD20; // type:function size:0x14 +fn_804ABD34 = .text:0x804ABD34; // type:function size:0x6C +fn_804ABDA0 = .text:0x804ABDA0; // type:function size:0xB4 +fn_804ABE54 = .text:0x804ABE54; // type:function size:0x68 +fn_804ABEBC = .text:0x804ABEBC; // type:function size:0x50 +fn_804ABF0C = .text:0x804ABF0C; // type:function size:0x5FC +fn_804AC508 = .text:0x804AC508; // type:function size:0x10 +fn_804AC518 = .text:0x804AC518; // type:function size:0x10 +fn_804AC528 = .text:0x804AC528; // type:function size:0x990 +fn_804ACEB8 = .text:0x804ACEB8; // type:function size:0xA0 +fn_804ACF58 = .text:0x804ACF58; // type:function size:0x488 +fn_804AD3E0 = .text:0x804AD3E0; // type:function size:0x600 +fn_804AD9E0 = .text:0x804AD9E0; // type:function size:0xB0 +fn_804ADA90 = .text:0x804ADA90; // type:function size:0x744 +fn_804AE1D4 = .text:0x804AE1D4; // type:function size:0x90 +fn_804AE264 = .text:0x804AE264; // type:function size:0x88 +fn_804AE2EC = .text:0x804AE2EC; // type:function size:0x18 +fn_804AE304 = .text:0x804AE304; // type:function size:0x1D4 +fn_804AE4D8 = .text:0x804AE4D8; // type:function size:0x68 +fn_804AE540 = .text:0x804AE540; // type:function size:0x98 +fn_804AE5D8 = .text:0x804AE5D8; // type:function size:0x60 +fn_804AE638 = .text:0x804AE638; // type:function size:0x94 +fn_804AE6CC = .text:0x804AE6CC; // type:function size:0x78 +fn_804AE744 = .text:0x804AE744; // type:function size:0x5C +fn_804AE7A0 = .text:0x804AE7A0; // type:function size:0x8 +fn_804AE7A8 = .text:0x804AE7A8; // type:function size:0x10 +fn_804AE7B8 = .text:0x804AE7B8; // type:function size:0x10 +fn_804AE7C8 = .text:0x804AE7C8; // type:function size:0x10 +fn_804AE7D8 = .text:0x804AE7D8; // type:function size:0x10 +fn_804AE7E8 = .text:0x804AE7E8; // type:function size:0x44 +fn_804AE82C = .text:0x804AE82C; // type:function size:0xF0 +fn_804AE91C = .text:0x804AE91C; // type:function size:0x58 +fn_804AE974 = .text:0x804AE974; // type:function size:0x58 +fn_804AE9CC = .text:0x804AE9CC; // type:function size:0x10 +fn_804AE9DC = .text:0x804AE9DC; // type:function size:0xA0 +fn_804AEA7C = .text:0x804AEA7C; // type:function size:0x7C +fn_804AEAF8 = .text:0x804AEAF8; // type:function size:0x48 +fn_804AEB40 = .text:0x804AEB40; // type:function size:0x48 +fn_804AEB88 = .text:0x804AEB88; // type:function size:0x154 +fn_804AECDC = .text:0x804AECDC; // type:function size:0xB4 +fn_804AED90 = .text:0x804AED90; // type:function size:0x14C +fn_804AEEDC = .text:0x804AEEDC; // type:function size:0x3C +fn_804AEF18 = .text:0x804AEF18; // type:function size:0x58 +fn_804AEF70 = .text:0x804AEF70; // type:function size:0x134 +fn_804AF0A4 = .text:0x804AF0A4; // type:function size:0x4 +fn_804AF0A8 = .text:0x804AF0A8; // type:function size:0x68 +fn_804AF110 = .text:0x804AF110; // type:function size:0x2C +fn_804AF13C = .text:0x804AF13C; // type:function size:0x190 +fn_804AF2CC = .text:0x804AF2CC; // type:function size:0x5C +fn_804AF328 = .text:0x804AF328; // type:function size:0x54 +fn_804AF37C = .text:0x804AF37C; // type:function size:0x28 +fn_804AF3A4 = .text:0x804AF3A4; // type:function size:0x68 +fn_804AF40C = .text:0x804AF40C; // type:function size:0x5C +fn_804AF468 = .text:0x804AF468; // type:function size:0x114 +fn_804AF57C = .text:0x804AF57C; // type:function size:0x60 +fn_804AF5DC = .text:0x804AF5DC; // type:function size:0x5C +fn_804AF638 = .text:0x804AF638; // type:function size:0x54 +fn_804AF68C = .text:0x804AF68C; // type:function size:0x14 +fn_804AF6A0 = .text:0x804AF6A0; // type:function size:0x14 +fn_804AF6B4 = .text:0x804AF6B4; // type:function size:0x14 +fn_804AF6C8 = .text:0x804AF6C8; // type:function size:0x14 +fn_804AF6DC = .text:0x804AF6DC; // type:function size:0x14 +fn_804AF6F0 = .text:0x804AF6F0; // type:function size:0xC4 +fn_804AF7B4 = .text:0x804AF7B4; // type:function size:0xAC +fn_804AF860 = .text:0x804AF860; // type:function size:0xA8 +fn_804AF908 = .text:0x804AF908; // type:function size:0x4 +fn_804AF90C = .text:0x804AF90C; // type:function size:0x50 +fn_804AF95C = .text:0x804AF95C; // type:function size:0x4 +fn_804AF960 = .text:0x804AF960; // type:function size:0x7C +fn_804AF9DC = .text:0x804AF9DC; // type:function size:0x80 +Handle__14CharBoneOffsetFP9DataArrayb = .text:0x804AFA5C; // type:function size:0xD0 +fn_804AFB2C = .text:0x804AFB2C; // type:function size:0xE0 +fn_804AFC0C = .text:0x804AFC0C; // type:function size:0x98 +fn_804AFCA4 = .text:0x804AFCA4; // type:function size:0x134 +fn_804AFDD8 = .text:0x804AFDD8; // type:function size:0x4 +fn_804AFDDC = .text:0x804AFDDC; // type:function size:0x14 +fn_804AFDF0 = .text:0x804AFDF0; // type:function size:0x14 +fn_804AFE04 = .text:0x804AFE04; // type:function size:0x14 +fn_804AFE18 = .text:0x804AFE18; // type:function size:0x14 +fn_804AFE2C = .text:0x804AFE2C; // type:function size:0x14 +fn_804AFE40 = .text:0x804AFE40; // type:function size:0x14 +fn_804AFE54 = .text:0x804AFE54; // type:function size:0x14 +fn_804AFE68 = .text:0x804AFE68; // type:function size:0x14 +fn_804AFE7C = .text:0x804AFE7C; // type:function size:0x8 +fn_804AFE84 = .text:0x804AFE84; // type:function size:0x8 +fn_804AFE8C = .text:0x804AFE8C; // type:function size:0x98 +fn_804AFF24 = .text:0x804AFF24; // type:function size:0x58 +fn_804AFF7C = .text:0x804AFF7C; // type:function size:0x58 +fn_804AFFD4 = .text:0x804AFFD4; // type:function size:0x80 +fn_804B0054 = .text:0x804B0054; // type:function size:0x80 +fn_804B00D4 = .text:0x804B00D4; // type:function size:0x58 +fn_804B012C = .text:0x804B012C; // type:function size:0x54 +fn_804B0180 = .text:0x804B0180; // type:function size:0x5C +fn_804B01DC = .text:0x804B01DC; // type:function size:0x6C +fn_804B0248 = .text:0x804B0248; // type:function size:0x28 +fn_804B0270 = .text:0x804B0270; // type:function size:0x8 +fn_804B0278 = .text:0x804B0278; // type:function size:0x3C +fn_804B02B4 = .text:0x804B02B4; // type:function size:0x50 +fn_804B0304 = .text:0x804B0304; // type:function size:0x30 +fn_804B0334 = .text:0x804B0334; // type:function size:0x30 +fn_804B0364 = .text:0x804B0364; // type:function size:0x40 +fn_804B03A4 = .text:0x804B03A4; // type:function size:0x78 +fn_804B041C = .text:0x804B041C; // type:function size:0xCC +fn_804B04E8 = .text:0x804B04E8; // type:function size:0x4 +fn_804B04EC = .text:0x804B04EC; // type:function size:0x3C +fn_804B0528 = .text:0x804B0528; // type:function size:0x40 +fn_804B0568 = .text:0x804B0568; // type:function size:0x8C +fn_804B05F4 = .text:0x804B05F4; // type:function size:0x8 +fn_804B05FC = .text:0x804B05FC; // type:function size:0x2C +fn_804B0628 = .text:0x804B0628; // type:function size:0x58 +fn_804B0680 = .text:0x804B0680; // type:function size:0x28 +fn_804B06A8 = .text:0x804B06A8; // type:function size:0x68 +fn_804B0710 = .text:0x804B0710; // type:function size:0xE4 +fn_804B07F4 = .text:0x804B07F4; // type:function size:0x118 +fn_804B090C = .text:0x804B090C; // type:function size:0x60 +fn_804B096C = .text:0x804B096C; // type:function size:0x4 +fn_804B0970 = .text:0x804B0970; // type:function size:0x90 +fn_804B0A00 = .text:0x804B0A00; // type:function size:0x4 +fn_804B0A04 = .text:0x804B0A04; // type:function size:0x4 +fn_804B0A08 = .text:0x804B0A08; // type:function size:0x50 +fn_804B0A58 = .text:0x804B0A58; // type:function size:0x58 +ReallocateInternal__15CharBonesMeshesFv = .text:0x804B0AB0; // type:function size:0x1B0 +fn_804B0C60 = .text:0x804B0C60; // type:function size:0x234 +fn_804B0E94 = .text:0x804B0E94; // type:function size:0x90 +fn_804B0F24 = .text:0x804B0F24; // type:function size:0x90 +fn_804B0FB4 = .text:0x804B0FB4; // type:function size:0x7C +fn_804B1030 = .text:0x804B1030; // type:function size:0xC0 +fn_804B10F0 = .text:0x804B10F0; // type:function size:0x174 +fn_804B1264 = .text:0x804B1264; // type:function size:0xC0 +fn_804B1324 = .text:0x804B1324; // type:function size:0x2C +fn_804B1350 = .text:0x804B1350; // type:function size:0x84 +fn_804B13D4 = .text:0x804B13D4; // type:function size:0x2C +fn_804B1400 = .text:0x804B1400; // type:function size:0x68 +fn_804B1468 = .text:0x804B1468; // type:function size:0x2C +fn_804B1494 = .text:0x804B1494; // type:function size:0x58 +fn_804B14EC = .text:0x804B14EC; // type:function size:0x198 +fn_804B1684 = .text:0x804B1684; // type:function size:0x5C +fn_804B16E0 = .text:0x804B16E0; // type:function size:0x10 +fn_804B16F0 = .text:0x804B16F0; // type:function size:0x54 +fn_804B1744 = .text:0x804B1744; // type:function size:0x28 +fn_804B176C = .text:0x804B176C; // type:function size:0x68 +fn_804B17D4 = .text:0x804B17D4; // type:function size:0x5C +fn_804B1830 = .text:0x804B1830; // type:function size:0x6C +fn_804B189C = .text:0x804B189C; // type:function size:0x114 +fn_804B19B0 = .text:0x804B19B0; // type:function size:0x5C +fn_804B1A0C = .text:0x804B1A0C; // type:function size:0x5C +fn_804B1A68 = .text:0x804B1A68; // type:function size:0x54 +fn_804B1ABC = .text:0x804B1ABC; // type:function size:0x14 +fn_804B1AD0 = .text:0x804B1AD0; // type:function size:0x14 +fn_804B1AE4 = .text:0x804B1AE4; // type:function size:0x14 +fn_804B1AF8 = .text:0x804B1AF8; // type:function size:0x14 +fn_804B1B0C = .text:0x804B1B0C; // type:function size:0x14 +fn_804B1B20 = .text:0x804B1B20; // type:function size:0x64 +fn_804B1B84 = .text:0x804B1B84; // type:function size:0x7C +fn_804B1C00 = .text:0x804B1C00; // type:function size:0x80 +fn_804B1C80 = .text:0x804B1C80; // type:function size:0x68 +fn_804B1CE8 = .text:0x804B1CE8; // type:function size:0x14 +fn_804B1CFC = .text:0x804B1CFC; // type:function size:0x8 +fn_804B1D04 = .text:0x804B1D04; // type:function size:0x10 +fn_804B1D14 = .text:0x804B1D14; // type:function size:0x160 +fn_804B1E74 = .text:0x804B1E74; // type:function size:0x2A8 +fn_804B211C = .text:0x804B211C; // type:function size:0x54 +fn_804B2170 = .text:0x804B2170; // type:function size:0x48 +fn_804B21B8 = .text:0x804B21B8; // type:function size:0xB0 +fn_804B2268 = .text:0x804B2268; // type:function size:0xB0 +fn_804B2318 = .text:0x804B2318; // type:function size:0x58C +fn_804B28A4 = .text:0x804B28A4; // type:function size:0x60 +fn_804B2904 = .text:0x804B2904; // type:function size:0x120 +fn_804B2A24 = .text:0x804B2A24; // type:function size:0xC +fn_804B2A30 = .text:0x804B2A30; // type:function size:0x5C +fn_804B2A8C = .text:0x804B2A8C; // type:function size:0xBC +fn_804B2B48 = .text:0x804B2B48; // type:function size:0x298 +fn_804B2DE0 = .text:0x804B2DE0; // type:function size:0x4 +fn_804B2DE4 = .text:0x804B2DE4; // type:function size:0x90 +fn_804B2E74 = .text:0x804B2E74; // type:function size:0x4 +fn_804B2E78 = .text:0x804B2E78; // type:function size:0x29C +fn_804B3114 = .text:0x804B3114; // type:function size:0x50 +fn_804B3164 = .text:0x804B3164; // type:function size:0x1F0 +fn_804B3354 = .text:0x804B3354; // type:function size:0x144 +fn_804B3498 = .text:0x804B3498; // type:function size:0x84 +fn_804B351C = .text:0x804B351C; // type:function size:0xBC +fn_804B35D8 = .text:0x804B35D8; // type:function size:0x80 +fn_804B3658 = .text:0x804B3658; // type:function size:0x68 +fn_804B36C0 = .text:0x804B36C0; // type:function size:0x98 +fn_804B3758 = .text:0x804B3758; // type:function size:0x8 +fn_804B3760 = .text:0x804B3760; // type:function size:0x3C +fn_804B379C = .text:0x804B379C; // type:function size:0x68 +fn_804B3804 = .text:0x804B3804; // type:function size:0x70 +fn_804B3874 = .text:0x804B3874; // type:function size:0x6C +fn_804B38E0 = .text:0x804B38E0; // type:function size:0x70 +fn_804B3950 = .text:0x804B3950; // type:function size:0x58 +fn_804B39A8 = .text:0x804B39A8; // type:function size:0x48 +fn_804B39F0 = .text:0x804B39F0; // type:function size:0x4 +fn_804B39F4 = .text:0x804B39F4; // type:function size:0xE0 +fn_804B3AD4 = .text:0x804B3AD4; // type:function size:0x40 +fn_804B3B14 = .text:0x804B3B14; // type:function size:0x104 +fn_804B3C18 = .text:0x804B3C18; // type:function size:0x90 +fn_804B3CA8 = .text:0x804B3CA8; // type:function size:0x11C +fn_804B3DC4 = .text:0x804B3DC4; // type:function size:0x19C +fn_804B3F60 = .text:0x804B3F60; // type:function size:0x3C +fn_804B3F9C = .text:0x804B3F9C; // type:function size:0x6C +fn_804B4008 = .text:0x804B4008; // type:function size:0x134 +fn_804B413C = .text:0x804B413C; // type:function size:0x4 +fn_804B4140 = .text:0x804B4140; // type:function size:0x14 +fn_804B4154 = .text:0x804B4154; // type:function size:0x14 +fn_804B4168 = .text:0x804B4168; // type:function size:0x14 +fn_804B417C = .text:0x804B417C; // type:function size:0x14 +fn_804B4190 = .text:0x804B4190; // type:function size:0x14 +fn_804B41A4 = .text:0x804B41A4; // type:function size:0x14 +fn_804B41B8 = .text:0x804B41B8; // type:function size:0x14 +fn_804B41CC = .text:0x804B41CC; // type:function size:0x14 +fn_804B41E0 = .text:0x804B41E0; // type:function size:0x8 +fn_804B41E8 = .text:0x804B41E8; // type:function size:0x8 +fn_804B41F0 = .text:0x804B41F0; // type:function size:0x8 +fn_804B41F8 = .text:0x804B41F8; // type:function size:0x8 +fn_804B4200 = .text:0x804B4200; // type:function size:0x8 +fn_804B4208 = .text:0x804B4208; // type:function size:0xC8 +fn_804B42D0 = .text:0x804B42D0; // type:function size:0x1D4 +fn_804B44A4 = .text:0x804B44A4; // type:function size:0xC4 +fn_804B4568 = .text:0x804B4568; // type:function size:0x4 +fn_804B456C = .text:0x804B456C; // type:function size:0x88 +fn_804B45F4 = .text:0x804B45F4; // type:function size:0x94 +fn_804B4688 = .text:0x804B4688; // type:function size:0x11C +fn_804B47A4 = .text:0x804B47A4; // type:function size:0xF4 +fn_804B4898 = .text:0x804B4898; // type:function size:0xA4 +fn_804B493C = .text:0x804B493C; // type:function size:0x134 +fn_804B4A70 = .text:0x804B4A70; // type:function size:0x4 +fn_804B4A74 = .text:0x804B4A74; // type:function size:0x14 +fn_804B4A88 = .text:0x804B4A88; // type:function size:0x14 +fn_804B4A9C = .text:0x804B4A9C; // type:function size:0x14 +fn_804B4AB0 = .text:0x804B4AB0; // type:function size:0x14 +fn_804B4AC4 = .text:0x804B4AC4; // type:function size:0x14 +fn_804B4AD8 = .text:0x804B4AD8; // type:function size:0x14 +fn_804B4AEC = .text:0x804B4AEC; // type:function size:0x14 +fn_804B4B00 = .text:0x804B4B00; // type:function size:0x14 +fn_804B4B14 = .text:0x804B4B14; // type:function size:0x14 +fn_804B4B28 = .text:0x804B4B28; // type:function size:0x8 +fn_804B4B30 = .text:0x804B4B30; // type:function size:0x8 +fn_804B4B38 = .text:0x804B4B38; // type:function size:0x8 +fn_804B4B40 = .text:0x804B4B40; // type:function size:0x8 +fn_804B4B48 = .text:0x804B4B48; // type:function size:0x8 +fn_804B4B50 = .text:0x804B4B50; // type:function size:0x8 +fn_804B4B58 = .text:0x804B4B58; // type:function size:0x8 +fn_804B4B60 = .text:0x804B4B60; // type:function size:0x8 +fn_804B4B68 = .text:0x804B4B68; // type:function size:0xA8 +fn_804B4C10 = .text:0x804B4C10; // type:function size:0x3C +fn_804B4C4C = .text:0x804B4C4C; // type:function size:0x50 +fn_804B4C9C = .text:0x804B4C9C; // type:function size:0x44 +fn_804B4CE0 = .text:0x804B4CE0; // type:function size:0x4C +fn_804B4D2C = .text:0x804B4D2C; // type:function size:0x14 +fn_804B4D40 = .text:0x804B4D40; // type:function size:0x54 +fn_804B4D94 = .text:0x804B4D94; // type:function size:0x6C +fn_804B4E00 = .text:0x804B4E00; // type:function size:0x14 +fn_804B4E14 = .text:0x804B4E14; // type:function size:0x10 +fn_804B4E24 = .text:0x804B4E24; // type:function size:0x5C +fn_804B4E80 = .text:0x804B4E80; // type:function size:0x40 +fn_804B4EC0 = .text:0x804B4EC0; // type:function size:0x100 +fn_804B4FC0 = .text:0x804B4FC0; // type:function size:0x160 +fn_804B5120 = .text:0x804B5120; // type:function size:0x8C +fn_804B51AC = .text:0x804B51AC; // type:function size:0xC0 +fn_804B526C = .text:0x804B526C; // type:function size:0x6C +fn_804B52D8 = .text:0x804B52D8; // type:function size:0x24 +fn_804B52FC = .text:0x804B52FC; // type:function size:0x34 +fn_804B5330 = .text:0x804B5330; // type:function size:0x34 +fn_804B5364 = .text:0x804B5364; // type:function size:0x4C +fn_804B53B0 = .text:0x804B53B0; // type:function size:0x138 +fn_804B54E8 = .text:0x804B54E8; // type:function size:0x58 +fn_804B5540 = .text:0x804B5540; // type:function size:0x80 +fn_804B55C0 = .text:0x804B55C0; // type:function size:0x80 +fn_804B5640 = .text:0x804B5640; // type:function size:0x58 +fn_804B5698 = .text:0x804B5698; // type:function size:0x54 +fn_804B56EC = .text:0x804B56EC; // type:function size:0x5C +fn_804B5748 = .text:0x804B5748; // type:function size:0x6C +fn_804B57B4 = .text:0x804B57B4; // type:function size:0x28 +fn_804B57DC = .text:0x804B57DC; // type:function size:0x8 +fn_804B57E4 = .text:0x804B57E4; // type:function size:0x3C +fn_804B5820 = .text:0x804B5820; // type:function size:0x80 +fn_804B58A0 = .text:0x804B58A0; // type:function size:0x4 +fn_804B58A4 = .text:0x804B58A4; // type:function size:0x90 +fn_804B5934 = .text:0x804B5934; // type:function size:0x4 +fn_804B5938 = .text:0x804B5938; // type:function size:0x30 +fn_804B5968 = .text:0x804B5968; // type:function size:0x30 +fn_804B5998 = .text:0x804B5998; // type:function size:0x40 +fn_804B59D8 = .text:0x804B59D8; // type:function size:0x68 +fn_804B5A40 = .text:0x804B5A40; // type:function size:0xBC +fn_804B5AFC = .text:0x804B5AFC; // type:function size:0x98 +fn_804B5B94 = .text:0x804B5B94; // type:function size:0x70 +fn_804B5C04 = .text:0x804B5C04; // type:function size:0xC8 +fn_804B5CCC = .text:0x804B5CCC; // type:function size:0x10 +fn_804B5CDC = .text:0x804B5CDC; // type:function size:0xEC +fn_804B5DC8 = .text:0x804B5DC8; // type:function size:0x1C +fn_804B5DE4 = .text:0x804B5DE4; // type:function size:0x1C +fn_804B5E00 = .text:0x804B5E00; // type:function size:0xC8 +fn_804B5EC8 = .text:0x804B5EC8; // type:function size:0x7C +fn_804B5F44 = .text:0x804B5F44; // type:function size:0x80 +fn_804B5FC4 = .text:0x804B5FC4; // type:function size:0x114 +fn_804B60D8 = .text:0x804B60D8; // type:function size:0x28 +fn_804B6100 = .text:0x804B6100; // type:function size:0x8 +fn_804B6108 = .text:0x804B6108; // type:function size:0x88 +fn_804B6190 = .text:0x804B6190; // type:function size:0x5C +fn_804B61EC = .text:0x804B61EC; // type:function size:0x3C +fn_804B6228 = .text:0x804B6228; // type:function size:0xDC +fn_804B6304 = .text:0x804B6304; // type:function size:0x8 +fn_804B630C = .text:0x804B630C; // type:function size:0x3C +fn_804B6348 = .text:0x804B6348; // type:function size:0x24 +fn_804B636C = .text:0x804B636C; // type:function size:0xB0 +fn_804B641C = .text:0x804B641C; // type:function size:0x58 +fn_804B6474 = .text:0x804B6474; // type:function size:0x14 +fn_804B6488 = .text:0x804B6488; // type:function size:0x150 +fn_804B65D8 = .text:0x804B65D8; // type:function size:0x90 +fn_804B6668 = .text:0x804B6668; // type:function size:0x74 +fn_804B66DC = .text:0x804B66DC; // type:function size:0x38 +fn_804B6714 = .text:0x804B6714; // type:function size:0x40 +fn_804B6754 = .text:0x804B6754; // type:function size:0xE0 +fn_804B6834 = .text:0x804B6834; // type:function size:0x10C +fn_804B6940 = .text:0x804B6940; // type:function size:0x88 +fn_804B69C8 = .text:0x804B69C8; // type:function size:0x70 +fn_804B6A38 = .text:0x804B6A38; // type:function size:0x4C +fn_804B6A84 = .text:0x804B6A84; // type:function size:0x88 +fn_804B6B0C = .text:0x804B6B0C; // type:function size:0x64 +fn_804B6B70 = .text:0x804B6B70; // type:function size:0xA8 +fn_804B6C18 = .text:0x804B6C18; // type:function size:0x24 +fn_804B6C3C = .text:0x804B6C3C; // type:function size:0x30 +fn_804B6C6C = .text:0x804B6C6C; // type:function size:0x4C +fn_804B6CB8 = .text:0x804B6CB8; // type:function size:0x90 +fn_804B6D48 = .text:0x804B6D48; // type:function size:0xC0 +fn_804B6E08 = .text:0x804B6E08; // type:function size:0x58 +fn_804B6E60 = .text:0x804B6E60; // type:function size:0x68 +fn_804B6EC8 = .text:0x804B6EC8; // type:function size:0x5C +fn_804B6F24 = .text:0x804B6F24; // type:function size:0x88 +fn_804B6FAC = .text:0x804B6FAC; // type:function size:0xB0 +fn_804B705C = .text:0x804B705C; // type:function size:0xC0 +fn_804B711C = .text:0x804B711C; // type:function size:0x68 +fn_804B7184 = .text:0x804B7184; // type:function size:0x74 +fn_804B71F8 = .text:0x804B71F8; // type:function size:0x4C +fn_804B7244 = .text:0x804B7244; // type:function size:0x48 +fn_804B728C = .text:0x804B728C; // type:function size:0x88 +fn_804B7314 = .text:0x804B7314; // type:function size:0xF0 +fn_804B7404 = .text:0x804B7404; // type:function size:0x30 +fn_804B7434 = .text:0x804B7434; // type:function size:0xC0 +fn_804B74F4 = .text:0x804B74F4; // type:function size:0x34 +fn_804B7528 = .text:0x804B7528; // type:function size:0x98 +fn_804B75C0 = .text:0x804B75C0; // type:function size:0xEC +fn_804B76AC = .text:0x804B76AC; // type:function size:0xA8 +fn_804B7754 = .text:0x804B7754; // type:function size:0x6C +fn_804B77C0 = .text:0x804B77C0; // type:function size:0x30 +fn_804B77F0 = .text:0x804B77F0; // type:function size:0x64 +fn_804B7854 = .text:0x804B7854; // type:function size:0x7C +fn_804B78D0 = .text:0x804B78D0; // type:function size:0x50 +fn_804B7920 = .text:0x804B7920; // type:function size:0xA4 +fn_804B79C4 = .text:0x804B79C4; // type:function size:0x6C +fn_804B7A30 = .text:0x804B7A30; // type:function size:0xC +fn_804B7A3C = .text:0x804B7A3C; // type:function size:0x58 +fn_804B7A94 = .text:0x804B7A94; // type:function size:0xE0 +fn_804B7B74 = .text:0x804B7B74; // type:function size:0x94 +fn_804B7C08 = .text:0x804B7C08; // type:function size:0x7C +fn_804B7C84 = .text:0x804B7C84; // type:function size:0x98 +fn_804B7D1C = .text:0x804B7D1C; // type:function size:0x78 +fn_804B7D94 = .text:0x804B7D94; // type:function size:0x58 +fn_804B7DEC = .text:0x804B7DEC; // type:function size:0x64 +fn_804B7E50 = .text:0x804B7E50; // type:function size:0x28 +fn_804B7E78 = .text:0x804B7E78; // type:function size:0x68 +fn_804B7EE0 = .text:0x804B7EE0; // type:function size:0x30 +fn_804B7F10 = .text:0x804B7F10; // type:function size:0x6C +fn_804B7F7C = .text:0x804B7F7C; // type:function size:0x88 +fn_804B8004 = .text:0x804B8004; // type:function size:0x44 +fn_804B8048 = .text:0x804B8048; // type:function size:0x44 +fn_804B808C = .text:0x804B808C; // type:function size:0x14 +fn_804B80A0 = .text:0x804B80A0; // type:function size:0x44 +fn_804B80E4 = .text:0x804B80E4; // type:function size:0x1C +fn_804B8100 = .text:0x804B8100; // type:function size:0xB4 +fn_804B81B4 = .text:0x804B81B4; // type:function size:0x9C +fn_804B8250 = .text:0x804B8250; // type:function size:0x160 +fn_804B83B0 = .text:0x804B83B0; // type:function size:0x114 +fn_804B84C4 = .text:0x804B84C4; // type:function size:0x4 +fn_804B84C8 = .text:0x804B84C8; // type:function size:0x4 +fn_804B84CC = .text:0x804B84CC; // type:function size:0x280 +fn_804B874C = .text:0x804B874C; // type:function size:0x4 +fn_804B8750 = .text:0x804B8750; // type:function size:0x74 +fn_804B87C4 = .text:0x804B87C4; // type:function size:0x6C0 +fn_804B8E84 = .text:0x804B8E84; // type:function size:0x80 +fn_804B8F04 = .text:0x804B8F04; // type:function size:0x80 +fn_804B8F84 = .text:0x804B8F84; // type:function size:0x10 +fn_804B8F94 = .text:0x804B8F94; // type:function size:0x4 +fn_804B8F98 = .text:0x804B8F98; // type:function size:0x90 +fn_804B9028 = .text:0x804B9028; // type:function size:0x4 +fn_804B902C = .text:0x804B902C; // type:function size:0x40 +fn_804B906C = .text:0x804B906C; // type:function size:0x8C +fn_804B90F8 = .text:0x804B90F8; // type:function size:0x8 +fn_804B9100 = .text:0x804B9100; // type:function size:0x2C +fn_804B912C = .text:0x804B912C; // type:function size:0x58 +fn_804B9184 = .text:0x804B9184; // type:function size:0x28 +fn_804B91AC = .text:0x804B91AC; // type:function size:0x68 +fn_804B9214 = .text:0x804B9214; // type:function size:0x104 +fn_804B9318 = .text:0x804B9318; // type:function size:0x54 +fn_804B936C = .text:0x804B936C; // type:function size:0x1A8 +fn_804B9514 = .text:0x804B9514; // type:function size:0x30 +fn_804B9544 = .text:0x804B9544; // type:function size:0x8 +fn_804B954C = .text:0x804B954C; // type:function size:0x30 +fn_804B957C = .text:0x804B957C; // type:function size:0x30 +fn_804B95AC = .text:0x804B95AC; // type:function size:0xC0 +fn_804B966C = .text:0x804B966C; // type:function size:0x1F4 +fn_804B9860 = .text:0x804B9860; // type:function size:0x34 +fn_804B9894 = .text:0x804B9894; // type:function size:0x3C +fn_804B98D0 = .text:0x804B98D0; // type:function size:0x12C +fn_804B99FC = .text:0x804B99FC; // type:function size:0x8 +fn_804B9A04 = .text:0x804B9A04; // type:function size:0x100 +fn_804B9B04 = .text:0x804B9B04; // type:function size:0xE0 +fn_804B9BE4 = .text:0x804B9BE4; // type:function size:0xD0 +fn_804B9CB4 = .text:0x804B9CB4; // type:function size:0x138 +fn_804B9DEC = .text:0x804B9DEC; // type:function size:0xDC +fn_804B9EC8 = .text:0x804B9EC8; // type:function size:0x174 +fn_804BA03C = .text:0x804BA03C; // type:function size:0x4 +Handle__8CharClipFP9DataArrayb = .text:0x804BA040; // type:function size:0x8A8 +fn_804BA8E8 = .text:0x804BA8E8; // type:function size:0x14C +fn_804BAA34 = .text:0x804BAA34; // type:function size:0x2C +fn_804BAA60 = .text:0x804BAA60; // type:function size:0x84 +fn_804BAAE4 = .text:0x804BAAE4; // type:function size:0x2C +fn_804BAB10 = .text:0x804BAB10; // type:function size:0x8 +fn_804BAB18 = .text:0x804BAB18; // type:function size:0x58 +fn_804BAB70 = .text:0x804BAB70; // type:function size:0x160 +fn_804BACD0 = .text:0x804BACD0; // type:function size:0x28 +fn_804BACF8 = .text:0x804BACF8; // type:function size:0x5C +fn_804BAD54 = .text:0x804BAD54; // type:function size:0x60 +fn_804BADB4 = .text:0x804BADB4; // type:function size:0x68 +fn_804BAE1C = .text:0x804BAE1C; // type:function size:0x160 +fn_804BAF7C = .text:0x804BAF7C; // type:function size:0x28 +fn_804BAFA4 = .text:0x804BAFA4; // type:function size:0x5C +fn_804BB000 = .text:0x804BB000; // type:function size:0x60 +fn_804BB060 = .text:0x804BB060; // type:function size:0x68 +fn_804BB0C8 = .text:0x804BB0C8; // type:function size:0x2C +fn_804BB0F4 = .text:0x804BB0F4; // type:function size:0x58 +fn_804BB14C = .text:0x804BB14C; // type:function size:0x60 +fn_804BB1AC = .text:0x804BB1AC; // type:function size:0x4 +fn_804BB1B0 = .text:0x804BB1B0; // type:function size:0x128 +fn_804BB2D8 = .text:0x804BB2D8; // type:function size:0x190 +fn_804BB468 = .text:0x804BB468; // type:function size:0x54 +fn_804BB4BC = .text:0x804BB4BC; // type:function size:0x28 +fn_804BB4E4 = .text:0x804BB4E4; // type:function size:0x68 +fn_804BB54C = .text:0x804BB54C; // type:function size:0x190 +fn_804BB6DC = .text:0x804BB6DC; // type:function size:0x5C +fn_804BB738 = .text:0x804BB738; // type:function size:0x10 +fn_804BB748 = .text:0x804BB748; // type:function size:0x54 +fn_804BB79C = .text:0x804BB79C; // type:function size:0x5C +fn_804BB7F8 = .text:0x804BB7F8; // type:function size:0x114 +fn_804BB90C = .text:0x804BB90C; // type:function size:0x60 +fn_804BB96C = .text:0x804BB96C; // type:function size:0x5C +fn_804BB9C8 = .text:0x804BB9C8; // type:function size:0x54 +fn_804BBA1C = .text:0x804BBA1C; // type:function size:0x68 +fn_804BBA84 = .text:0x804BBA84; // type:function size:0x2D8 +fn_804BBD5C = .text:0x804BBD5C; // type:function size:0x80 +fn_804BBDDC = .text:0x804BBDDC; // type:function size:0x68 +fn_804BBE44 = .text:0x804BBE44; // type:function size:0xEC +fn_804BBF30 = .text:0x804BBF30; // type:function size:0x5C +fn_804BBF8C = .text:0x804BBF8C; // type:function size:0x10 +fn_804BBF9C = .text:0x804BBF9C; // type:function size:0xCC +fn_804BC068 = .text:0x804BC068; // type:function size:0x8 +fn_804BC070 = .text:0x804BC070; // type:function size:0x48 +fn_804BC0B8 = .text:0x804BC0B8; // type:function size:0x70 +fn_804BC128 = .text:0x804BC128; // type:function size:0x300 +fn_804BC428 = .text:0x804BC428; // type:function size:0x1F4 +fn_804BC61C = .text:0x804BC61C; // type:function size:0x3C +fn_804BC658 = .text:0x804BC658; // type:function size:0xD8 +fn_804BC730 = .text:0x804BC730; // type:function size:0x9C +fn_804BC7CC = .text:0x804BC7CC; // type:function size:0x104 +fn_804BC8D0 = .text:0x804BC8D0; // type:function size:0x150 +fn_804BCA20 = .text:0x804BCA20; // type:function size:0x160 +fn_804BCB80 = .text:0x804BCB80; // type:function size:0x158 +fn_804BCCD8 = .text:0x804BCCD8; // type:function size:0x90 +fn_804BCD68 = .text:0x804BCD68; // type:function size:0x58 +fn_804BCDC0 = .text:0x804BCDC0; // type:function size:0x58 +fn_804BCE18 = .text:0x804BCE18; // type:function size:0x80 +fn_804BCE98 = .text:0x804BCE98; // type:function size:0x80 +fn_804BCF18 = .text:0x804BCF18; // type:function size:0x58 +fn_804BCF70 = .text:0x804BCF70; // type:function size:0x54 +fn_804BCFC4 = .text:0x804BCFC4; // type:function size:0x5C +fn_804BD020 = .text:0x804BD020; // type:function size:0x6C +fn_804BD08C = .text:0x804BD08C; // type:function size:0x28 +fn_804BD0B4 = .text:0x804BD0B4; // type:function size:0x8 +fn_804BD0BC = .text:0x804BD0BC; // type:function size:0x3C +fn_804BD0F8 = .text:0x804BD0F8; // type:function size:0x50 +fn_804BD148 = .text:0x804BD148; // type:function size:0x30 +fn_804BD178 = .text:0x804BD178; // type:function size:0x30 +fn_804BD1A8 = .text:0x804BD1A8; // type:function size:0x40 +fn_804BD1E8 = .text:0x804BD1E8; // type:function size:0x78 +fn_804BD260 = .text:0x804BD260; // type:function size:0xF4 +fn_804BD354 = .text:0x804BD354; // type:function size:0x18 +fn_804BD36C = .text:0x804BD36C; // type:function size:0x118 +fn_804BD484 = .text:0x804BD484; // type:function size:0x2C +fn_804BD4B0 = .text:0x804BD4B0; // type:function size:0x84 +fn_804BD534 = .text:0x804BD534; // type:function size:0x2C +fn_804BD560 = .text:0x804BD560; // type:function size:0x28 +fn_804BD588 = .text:0x804BD588; // type:function size:0x68 +fn_804BD5F0 = .text:0x804BD5F0; // type:function size:0x8 +fn_804BD5F8 = .text:0x804BD5F8; // type:function size:0xA4 +fn_804BD69C = .text:0x804BD69C; // type:function size:0x88 +fn_804BD724 = .text:0x804BD724; // type:function size:0x74 +fn_804BD798 = .text:0x804BD798; // type:function size:0x48 +fn_804BD7E0 = .text:0x804BD7E0; // type:function size:0x24 +fn_804BD804 = .text:0x804BD804; // type:function size:0x3C +fn_804BD840 = .text:0x804BD840; // type:function size:0x60 +fn_804BD8A0 = .text:0x804BD8A0; // type:function size:0x4 +fn_804BD8A4 = .text:0x804BD8A4; // type:function size:0x90 +fn_804BD934 = .text:0x804BD934; // type:function size:0x4 +fn_804BD938 = .text:0x804BD938; // type:function size:0x40 +fn_804BD978 = .text:0x804BD978; // type:function size:0x8C +fn_804BDA04 = .text:0x804BDA04; // type:function size:0x8 +fn_804BDA0C = .text:0x804BDA0C; // type:function size:0x2C +fn_804BDA38 = .text:0x804BDA38; // type:function size:0x58 +fn_804BDA90 = .text:0x804BDA90; // type:function size:0x74 +fn_804BDB04 = .text:0x804BDB04; // type:function size:0x74 +fn_804BDB78 = .text:0x804BDB78; // type:function size:0x90 +fn_804BDC08 = .text:0x804BDC08; // type:function size:0x84 +fn_804BDC8C = .text:0x804BDC8C; // type:function size:0x64 +fn_804BDCF0 = .text:0x804BDCF0; // type:function size:0x64 +fn_804BDD54 = .text:0x804BDD54; // type:function size:0x50 +fn_804BDDA4 = .text:0x804BDDA4; // type:function size:0x48 +fn_804BDDEC = .text:0x804BDDEC; // type:function size:0x88 +fn_804BDE74 = .text:0x804BDE74; // type:function size:0x104 +fn_804BDF78 = .text:0x804BDF78; // type:function size:0x30 +fn_804BDFA8 = .text:0x804BDFA8; // type:function size:0xE0 +fn_804BE088 = .text:0x804BE088; // type:function size:0x34 +fn_804BE0BC = .text:0x804BE0BC; // type:function size:0xA4 +fn_804BE160 = .text:0x804BE160; // type:function size:0x10C +fn_804BE26C = .text:0x804BE26C; // type:function size:0xBC +fn_804BE328 = .text:0x804BE328; // type:function size:0x6C +fn_804BE394 = .text:0x804BE394; // type:function size:0x30 +fn_804BE3C4 = .text:0x804BE3C4; // type:function size:0x74 +fn_804BE438 = .text:0x804BE438; // type:function size:0x88 +fn_804BE4C0 = .text:0x804BE4C0; // type:function size:0x50 +fn_804BE510 = .text:0x804BE510; // type:function size:0xCC +fn_804BE5DC = .text:0x804BE5DC; // type:function size:0x6C +fn_804BE648 = .text:0x804BE648; // type:function size:0xC +fn_804BE654 = .text:0x804BE654; // type:function size:0x144 +fn_804BE798 = .text:0x804BE798; // type:function size:0x94 +fn_804BE82C = .text:0x804BE82C; // type:function size:0x88 +fn_804BE8B4 = .text:0x804BE8B4; // type:function size:0xB4 +fn_804BE968 = .text:0x804BE968; // type:function size:0x8C +fn_804BE9F4 = .text:0x804BE9F4; // type:function size:0x58 +fn_804BEA4C = .text:0x804BEA4C; // type:function size:0x64 +fn_804BEAB0 = .text:0x804BEAB0; // type:function size:0x28 +fn_804BEAD8 = .text:0x804BEAD8; // type:function size:0x68 +fn_804BEB40 = .text:0x804BEB40; // type:function size:0x30 +fn_804BEB70 = .text:0x804BEB70; // type:function size:0x78 +fn_804BEBE8 = .text:0x804BEBE8; // type:function size:0x90 +fn_804BEC78 = .text:0x804BEC78; // type:function size:0x114 +fn_804BED8C = .text:0x804BED8C; // type:function size:0x78 +fn_804BEE04 = .text:0x804BEE04; // type:function size:0x4 +fn_804BEE08 = .text:0x804BEE08; // type:function size:0xA0 +fn_804BEEA8 = .text:0x804BEEA8; // type:function size:0x74 +fn_804BEF1C = .text:0x804BEF1C; // type:function size:0x40 +fn_804BEF5C = .text:0x804BEF5C; // type:function size:0x104 +fn_804BF060 = .text:0x804BF060; // type:function size:0x110 +fn_804BF170 = .text:0x804BF170; // type:function size:0x5C +fn_804BF1CC = .text:0x804BF1CC; // type:function size:0x30 +fn_804BF1FC = .text:0x804BF1FC; // type:function size:0x2A0 +fn_804BF49C = .text:0x804BF49C; // type:function size:0xE0 +fn_804BF57C = .text:0x804BF57C; // type:function size:0x174 +fn_804BF6F0 = .text:0x804BF6F0; // type:function size:0xB0 +fn_804BF7A0 = .text:0x804BF7A0; // type:function size:0x80 +fn_804BF820 = .text:0x804BF820; // type:function size:0x68 +fn_804BF888 = .text:0x804BF888; // type:function size:0x2C +fn_804BF8B4 = .text:0x804BF8B4; // type:function size:0x58 +fn_804BF90C = .text:0x804BF90C; // type:function size:0x160 +fn_804BFA6C = .text:0x804BFA6C; // type:function size:0x5C +fn_804BFAC8 = .text:0x804BFAC8; // type:function size:0x10 +fn_804BFAD8 = .text:0x804BFAD8; // type:function size:0x28 +fn_804BFB00 = .text:0x804BFB00; // type:function size:0x5C +fn_804BFB5C = .text:0x804BFB5C; // type:function size:0x60 +fn_804BFBBC = .text:0x804BFBBC; // type:function size:0x134 +fn_804BFCF0 = .text:0x804BFCF0; // type:function size:0x4 +fn_804BFCF4 = .text:0x804BFCF4; // type:function size:0x198 +fn_804BFE8C = .text:0x804BFE8C; // type:function size:0x5C +fn_804BFEE8 = .text:0x804BFEE8; // type:function size:0x54 +fn_804BFF3C = .text:0x804BFF3C; // type:function size:0x114 +fn_804C0050 = .text:0x804C0050; // type:function size:0x5C +fn_804C00AC = .text:0x804C00AC; // type:function size:0x5C +fn_804C0108 = .text:0x804C0108; // type:function size:0x54 +fn_804C015C = .text:0x804C015C; // type:function size:0x14 +fn_804C0170 = .text:0x804C0170; // type:function size:0x14 +fn_804C0184 = .text:0x804C0184; // type:function size:0x14 +fn_804C0198 = .text:0x804C0198; // type:function size:0x14 +fn_804C01AC = .text:0x804C01AC; // type:function size:0x14 +fn_804C01C0 = .text:0x804C01C0; // type:function size:0x14 +fn_804C01D4 = .text:0x804C01D4; // type:function size:0x14 +fn_804C01E8 = .text:0x804C01E8; // type:function size:0x14 +fn_804C01FC = .text:0x804C01FC; // type:function size:0x14 +fn_804C0210 = .text:0x804C0210; // type:function size:0x148 +fn_804C0358 = .text:0x804C0358; // type:function size:0x88 +fn_804C03E0 = .text:0x804C03E0; // type:function size:0xE4 +fn_804C04C4 = .text:0x804C04C4; // type:function size:0x34 +fn_804C04F8 = .text:0x804C04F8; // type:function size:0x54 +fn_804C054C = .text:0x804C054C; // type:function size:0x50 +fn_804C059C = .text:0x804C059C; // type:function size:0xD0 +fn_804C066C = .text:0x804C066C; // type:function size:0x78 +fn_804C06E4 = .text:0x804C06E4; // type:function size:0x54 +fn_804C0738 = .text:0x804C0738; // type:function size:0xA4 +fn_804C07DC = .text:0x804C07DC; // type:function size:0x100 +fn_804C08DC = .text:0x804C08DC; // type:function size:0x4 +fn_804C08E0 = .text:0x804C08E0; // type:function size:0x4 +fn_804C08E4 = .text:0x804C08E4; // type:function size:0x4 +fn_804C08E8 = .text:0x804C08E8; // type:function size:0x88 +fn_804C0970 = .text:0x804C0970; // type:function size:0x45C +fn_804C0DCC = .text:0x804C0DCC; // type:function size:0x40 +fn_804C0E0C = .text:0x804C0E0C; // type:function size:0xA0 +fn_804C0EAC = .text:0x804C0EAC; // type:function size:0x1EC +fn_804C1098 = .text:0x804C1098; // type:function size:0x1C8 +fn_804C1260 = .text:0x804C1260; // type:function size:0x3C +fn_804C129C = .text:0x804C129C; // type:function size:0x3C +fn_804C12D8 = .text:0x804C12D8; // type:function size:0x2C +fn_804C1304 = .text:0x804C1304; // type:function size:0x2C +fn_804C1330 = .text:0x804C1330; // type:function size:0x1D0 +fn_804C1500 = .text:0x804C1500; // type:function size:0x148 +fn_804C1648 = .text:0x804C1648; // type:function size:0x4 +fn_804C164C = .text:0x804C164C; // type:function size:0x50 +fn_804C169C = .text:0x804C169C; // type:function size:0x50 +fn_804C16EC = .text:0x804C16EC; // type:function size:0x50 +fn_804C173C = .text:0x804C173C; // type:function size:0x4DC +fn_804C1C18 = .text:0x804C1C18; // type:function size:0x50 +fn_804C1C68 = .text:0x804C1C68; // type:function size:0xD0 +fn_804C1D38 = .text:0x804C1D38; // type:function size:0x78 +fn_804C1DB0 = .text:0x804C1DB0; // type:function size:0xC0 +fn_804C1E70 = .text:0x804C1E70; // type:function size:0x90 +fn_804C1F00 = .text:0x804C1F00; // type:function size:0xD0 +fn_804C1FD0 = .text:0x804C1FD0; // type:function size:0x26C +fn_804C223C = .text:0x804C223C; // type:function size:0x1F0 +fn_804C242C = .text:0x804C242C; // type:function size:0x214 +fn_804C2640 = .text:0x804C2640; // type:function size:0xC0 +fn_804C2700 = .text:0x804C2700; // type:function size:0x134 +fn_804C2834 = .text:0x804C2834; // type:function size:0x4 +fn_804C2838 = .text:0x804C2838; // type:function size:0x14 +fn_804C284C = .text:0x804C284C; // type:function size:0x14 +fn_804C2860 = .text:0x804C2860; // type:function size:0x8 +fn_804C2868 = .text:0x804C2868; // type:function size:0x8 +fn_804C2870 = .text:0x804C2870; // type:function size:0x8 +fn_804C2878 = .text:0x804C2878; // type:function size:0x8 +fn_804C2880 = .text:0x804C2880; // type:function size:0x8 +fn_804C2888 = .text:0x804C2888; // type:function size:0x8 +fn_804C2890 = .text:0x804C2890; // type:function size:0x8 +fn_804C2898 = .text:0x804C2898; // type:function size:0x8 +fn_804C28A0 = .text:0x804C28A0; // type:function size:0x8 +fn_804C28A8 = .text:0x804C28A8; // type:function size:0x14 +fn_804C28BC = .text:0x804C28BC; // type:function size:0x14 +fn_804C28D0 = .text:0x804C28D0; // type:function size:0x14 +fn_804C28E4 = .text:0x804C28E4; // type:function size:0x14 +fn_804C28F8 = .text:0x804C28F8; // type:function size:0x14 +fn_804C290C = .text:0x804C290C; // type:function size:0x14 +fn_804C2920 = .text:0x804C2920; // type:function size:0x14 +fn_804C2934 = .text:0x804C2934; // type:function size:0x14 +fn_804C2948 = .text:0x804C2948; // type:function size:0x14 +fn_804C295C = .text:0x804C295C; // type:function size:0x14 +fn_804C2970 = .text:0x804C2970; // type:function size:0x14 +fn_804C2984 = .text:0x804C2984; // type:function size:0x14 +fn_804C2998 = .text:0x804C2998; // type:function size:0x14 +fn_804C29AC = .text:0x804C29AC; // type:function size:0x8 +fn_804C29B4 = .text:0x804C29B4; // type:function size:0x8 +fn_804C29BC = .text:0x804C29BC; // type:function size:0x8 +fn_804C29C4 = .text:0x804C29C4; // type:function size:0x8 +fn_804C29CC = .text:0x804C29CC; // type:function size:0x8 +fn_804C29D4 = .text:0x804C29D4; // type:function size:0x8 +fn_804C29DC = .text:0x804C29DC; // type:function size:0x8 +fn_804C29E4 = .text:0x804C29E4; // type:function size:0x8 +fn_804C29EC = .text:0x804C29EC; // type:function size:0x8 +fn_804C29F4 = .text:0x804C29F4; // type:function size:0x8 +fn_804C29FC = .text:0x804C29FC; // type:function size:0x8 +fn_804C2A04 = .text:0x804C2A04; // type:function size:0x174 +fn_804C2B78 = .text:0x804C2B78; // type:function size:0xAC +fn_804C2C24 = .text:0x804C2C24; // type:function size:0x1C0 +fn_804C2DE4 = .text:0x804C2DE4; // type:function size:0x4 +fn_804C2DE8 = .text:0x804C2DE8; // type:function size:0x1D0 +fn_804C2FB8 = .text:0x804C2FB8; // type:function size:0xF0 +fn_804C30A8 = .text:0x804C30A8; // type:function size:0x3AC +fn_804C3454 = .text:0x804C3454; // type:function size:0x30 +fn_804C3484 = .text:0x804C3484; // type:function size:0x48 +fn_804C34CC = .text:0x804C34CC; // type:function size:0x18 +fn_804C34E4 = .text:0x804C34E4; // type:function size:0x124 +fn_804C3608 = .text:0x804C3608; // type:function size:0x328 +fn_804C3930 = .text:0x804C3930; // type:function size:0x144 +fn_804C3A74 = .text:0x804C3A74; // type:function size:0x4 +fn_804C3A78 = .text:0x804C3A78; // type:function size:0x14 +fn_804C3A8C = .text:0x804C3A8C; // type:function size:0x14 +fn_804C3AA0 = .text:0x804C3AA0; // type:function size:0x14 +fn_804C3AB4 = .text:0x804C3AB4; // type:function size:0x14 +fn_804C3AC8 = .text:0x804C3AC8; // type:function size:0x14 +fn_804C3ADC = .text:0x804C3ADC; // type:function size:0x14 +fn_804C3AF0 = .text:0x804C3AF0; // type:function size:0x14 +fn_804C3B04 = .text:0x804C3B04; // type:function size:0x14 +fn_804C3B18 = .text:0x804C3B18; // type:function size:0x14 +fn_804C3B2C = .text:0x804C3B2C; // type:function size:0x14 +fn_804C3B40 = .text:0x804C3B40; // type:function size:0x164 +fn_804C3CA4 = .text:0x804C3CA4; // type:function size:0xB8 +fn_804C3D5C = .text:0x804C3D5C; // type:function size:0x34 +fn_804C3D90 = .text:0x804C3D90; // type:function size:0x368 +fn_804C40F8 = .text:0x804C40F8; // type:function size:0xD0 +fn_804C41C8 = .text:0x804C41C8; // type:function size:0x6C +fn_804C4234 = .text:0x804C4234; // type:function size:0x8C +fn_804C42C0 = .text:0x804C42C0; // type:function size:0x3C +fn_804C42FC = .text:0x804C42FC; // type:function size:0x9C +fn_804C4398 = .text:0x804C4398; // type:function size:0x3A4 +fn_804C473C = .text:0x804C473C; // type:function size:0x6C +fn_804C47A8 = .text:0x804C47A8; // type:function size:0x8C +fn_804C4834 = .text:0x804C4834; // type:function size:0x3C +fn_804C4870 = .text:0x804C4870; // type:function size:0x3C +fn_804C48AC = .text:0x804C48AC; // type:function size:0x50 +fn_804C48FC = .text:0x804C48FC; // type:function size:0xD0 +fn_804C49CC = .text:0x804C49CC; // type:function size:0x78 +fn_804C4A44 = .text:0x804C4A44; // type:function size:0x52C +fn_804C4F70 = .text:0x804C4F70; // type:function size:0x8 +fn_804C4F78 = .text:0x804C4F78; // type:function size:0x34 +fn_804C4FAC = .text:0x804C4FAC; // type:function size:0x8 +fn_804C4FB4 = .text:0x804C4FB4; // type:function size:0x8 +fn_804C4FBC = .text:0x804C4FBC; // type:function size:0x8 +fn_804C4FC4 = .text:0x804C4FC4; // type:function size:0x28 +fn_804C4FEC = .text:0x804C4FEC; // type:function size:0x4 +fn_804C4FF0 = .text:0x804C4FF0; // type:function size:0x44 +fn_804C5034 = .text:0x804C5034; // type:function size:0x1D0 +fn_804C5204 = .text:0x804C5204; // type:function size:0x3C +fn_804C5240 = .text:0x804C5240; // type:function size:0x11C +fn_804C535C = .text:0x804C535C; // type:function size:0xCC +fn_804C5428 = .text:0x804C5428; // type:function size:0xB8 +fn_804C54E0 = .text:0x804C54E0; // type:function size:0x124 +fn_804C5604 = .text:0x804C5604; // type:function size:0x2FC +fn_804C5900 = .text:0x804C5900; // type:function size:0x1E8 +fn_804C5AE8 = .text:0x804C5AE8; // type:function size:0xC0 +fn_804C5BA8 = .text:0x804C5BA8; // type:function size:0x144 +fn_804C5CEC = .text:0x804C5CEC; // type:function size:0x4 +fn_804C5CF0 = .text:0x804C5CF0; // type:function size:0x14 +fn_804C5D04 = .text:0x804C5D04; // type:function size:0x14 +fn_804C5D18 = .text:0x804C5D18; // type:function size:0x14 +fn_804C5D2C = .text:0x804C5D2C; // type:function size:0x14 +fn_804C5D40 = .text:0x804C5D40; // type:function size:0x14 +fn_804C5D54 = .text:0x804C5D54; // type:function size:0x14 +fn_804C5D68 = .text:0x804C5D68; // type:function size:0x14 +fn_804C5D7C = .text:0x804C5D7C; // type:function size:0x14 +fn_804C5D90 = .text:0x804C5D90; // type:function size:0x14 +fn_804C5DA4 = .text:0x804C5DA4; // type:function size:0x14 +fn_804C5DB8 = .text:0x804C5DB8; // type:function size:0x14 +fn_804C5DCC = .text:0x804C5DCC; // type:function size:0x14 +fn_804C5DE0 = .text:0x804C5DE0; // type:function size:0x178 +fn_804C5F58 = .text:0x804C5F58; // type:function size:0x12C +fn_804C6084 = .text:0x804C6084; // type:function size:0x4 +fn_804C6088 = .text:0x804C6088; // type:function size:0xCC +fn_804C6154 = .text:0x804C6154; // type:function size:0x8 +fn_804C615C = .text:0x804C615C; // type:function size:0x44 +fn_804C61A0 = .text:0x804C61A0; // type:function size:0xA8 +fn_804C6248 = .text:0x804C6248; // type:function size:0x74 +fn_804C62BC = .text:0x804C62BC; // type:function size:0x18 +fn_804C62D4 = .text:0x804C62D4; // type:function size:0x58 +fn_804C632C = .text:0x804C632C; // type:function size:0x100 +fn_804C642C = .text:0x804C642C; // type:function size:0x74 +fn_804C64A0 = .text:0x804C64A0; // type:function size:0x10C +fn_804C65AC = .text:0x804C65AC; // type:function size:0xE0 +fn_804C668C = .text:0x804C668C; // type:function size:0x3C +fn_804C66C8 = .text:0x804C66C8; // type:function size:0x158 +fn_804C6820 = .text:0x804C6820; // type:function size:0xA8 +fn_804C68C8 = .text:0x804C68C8; // type:function size:0xD8 +fn_804C69A0 = .text:0x804C69A0; // type:function size:0x8 +fn_804C69A8 = .text:0x804C69A8; // type:function size:0xB4 +fn_804C6A5C = .text:0x804C6A5C; // type:function size:0x558 +fn_804C6FB4 = .text:0x804C6FB4; // type:function size:0xD0 +fn_804C7084 = .text:0x804C7084; // type:function size:0x54 +fn_804C70D8 = .text:0x804C70D8; // type:function size:0x60 +fn_804C7138 = .text:0x804C7138; // type:function size:0x54 +fn_804C718C = .text:0x804C718C; // type:function size:0x14 +fn_804C71A0 = .text:0x804C71A0; // type:function size:0x8 +fn_804C71A8 = .text:0x804C71A8; // type:function size:0x24 +fn_804C71CC = .text:0x804C71CC; // type:function size:0x48 +fn_804C7214 = .text:0x804C7214; // type:function size:0xC8 +fn_804C72DC = .text:0x804C72DC; // type:function size:0x48 +fn_804C7324 = .text:0x804C7324; // type:function size:0x78 +fn_804C739C = .text:0x804C739C; // type:function size:0x4 +fn_804C73A0 = .text:0x804C73A0; // type:function size:0x2B8 +fn_804C7658 = .text:0x804C7658; // type:function size:0x40 +fn_804C7698 = .text:0x804C7698; // type:function size:0x104 +fn_804C779C = .text:0x804C779C; // type:function size:0xF4 +fn_804C7890 = .text:0x804C7890; // type:function size:0x604 +fn_804C7E94 = .text:0x804C7E94; // type:function size:0x34 +fn_804C7EC8 = .text:0x804C7EC8; // type:function size:0x3C +fn_804C7F04 = .text:0x804C7F04; // type:function size:0xAC +fn_804C7FB0 = .text:0x804C7FB0; // type:function size:0xAC +fn_804C805C = .text:0x804C805C; // type:function size:0x138 +fn_804C8194 = .text:0x804C8194; // type:function size:0x8C +fn_804C8220 = .text:0x804C8220; // type:function size:0x50 +fn_804C8270 = .text:0x804C8270; // type:function size:0x50 +fn_804C82C0 = .text:0x804C82C0; // type:function size:0x7C +fn_804C833C = .text:0x804C833C; // type:function size:0x9C +fn_804C83D8 = .text:0x804C83D8; // type:function size:0x240 +fn_804C8618 = .text:0x804C8618; // type:function size:0x418 +fn_804C8A30 = .text:0x804C8A30; // type:function size:0xCC +fn_804C8AFC = .text:0x804C8AFC; // type:function size:0x134 +fn_804C8C30 = .text:0x804C8C30; // type:function size:0x4 +fn_804C8C34 = .text:0x804C8C34; // type:function size:0x8 +fn_804C8C3C = .text:0x804C8C3C; // type:function size:0x8 +fn_804C8C44 = .text:0x804C8C44; // type:function size:0x8 +fn_804C8C4C = .text:0x804C8C4C; // type:function size:0x8 +fn_804C8C54 = .text:0x804C8C54; // type:function size:0x8 +fn_804C8C5C = .text:0x804C8C5C; // type:function size:0x8 +fn_804C8C64 = .text:0x804C8C64; // type:function size:0x8 +fn_804C8C6C = .text:0x804C8C6C; // type:function size:0x8 +fn_804C8C74 = .text:0x804C8C74; // type:function size:0x8 +fn_804C8C7C = .text:0x804C8C7C; // type:function size:0x14 +fn_804C8C90 = .text:0x804C8C90; // type:function size:0x14 +fn_804C8CA4 = .text:0x804C8CA4; // type:function size:0x14 +fn_804C8CB8 = .text:0x804C8CB8; // type:function size:0x14 +fn_804C8CCC = .text:0x804C8CCC; // type:function size:0x14 +fn_804C8CE0 = .text:0x804C8CE0; // type:function size:0x14 +fn_804C8CF4 = .text:0x804C8CF4; // type:function size:0x14 +fn_804C8D08 = .text:0x804C8D08; // type:function size:0x14 +fn_804C8D1C = .text:0x804C8D1C; // type:function size:0x14 +fn_804C8D30 = .text:0x804C8D30; // type:function size:0x8 +fn_804C8D38 = .text:0x804C8D38; // type:function size:0x8 +fn_804C8D40 = .text:0x804C8D40; // type:function size:0x8 +fn_804C8D48 = .text:0x804C8D48; // type:function size:0x8 +fn_804C8D50 = .text:0x804C8D50; // type:function size:0x8 +fn_804C8D58 = .text:0x804C8D58; // type:function size:0x8 +fn_804C8D60 = .text:0x804C8D60; // type:function size:0x8 +fn_804C8D68 = .text:0x804C8D68; // type:function size:0x8 +fn_804C8D70 = .text:0x804C8D70; // type:function size:0xB4 +fn_804C8E24 = .text:0x804C8E24; // type:function size:0x144 +fn_804C8F68 = .text:0x804C8F68; // type:function size:0xCC +fn_804C9034 = .text:0x804C9034; // type:function size:0xA0 +fn_804C90D4 = .text:0x804C90D4; // type:function size:0x4 +fn_804C90D8 = .text:0x804C90D8; // type:function size:0x4 +fn_804C90DC = .text:0x804C90DC; // type:function size:0x4 +fn_804C90E0 = .text:0x804C90E0; // type:function size:0x100 +fn_804C91E0 = .text:0x804C91E0; // type:function size:0x8C +Handle__14CharDriverMidiFP9DataArrayb = .text:0x804C926C; // type:function size:0x1F0 +fn_804C945C = .text:0x804C945C; // type:function size:0x194 +fn_804C95F0 = .text:0x804C95F0; // type:function size:0x50 +fn_804C9640 = .text:0x804C9640; // type:function size:0x1EC +fn_804C982C = .text:0x804C982C; // type:function size:0x128 +fn_804C9954 = .text:0x804C9954; // type:function size:0x7C +fn_804C99D0 = .text:0x804C99D0; // type:function size:0x134 +fn_804C9B04 = .text:0x804C9B04; // type:function size:0x4 +fn_804C9B08 = .text:0x804C9B08; // type:function size:0x8 +fn_804C9B10 = .text:0x804C9B10; // type:function size:0x8 +fn_804C9B18 = .text:0x804C9B18; // type:function size:0x8 +fn_804C9B20 = .text:0x804C9B20; // type:function size:0x8 +fn_804C9B28 = .text:0x804C9B28; // type:function size:0x8 +fn_804C9B30 = .text:0x804C9B30; // type:function size:0x8 +fn_804C9B38 = .text:0x804C9B38; // type:function size:0x8 +fn_804C9B40 = .text:0x804C9B40; // type:function size:0x8 +fn_804C9B48 = .text:0x804C9B48; // type:function size:0x14 +fn_804C9B5C = .text:0x804C9B5C; // type:function size:0x14 +fn_804C9B70 = .text:0x804C9B70; // type:function size:0x14 +fn_804C9B84 = .text:0x804C9B84; // type:function size:0x14 +fn_804C9B98 = .text:0x804C9B98; // type:function size:0x14 +fn_804C9BAC = .text:0x804C9BAC; // type:function size:0x14 +fn_804C9BC0 = .text:0x804C9BC0; // type:function size:0x14 +fn_804C9BD4 = .text:0x804C9BD4; // type:function size:0x14 +fn_804C9BE8 = .text:0x804C9BE8; // type:function size:0x14 +fn_804C9BFC = .text:0x804C9BFC; // type:function size:0x8 +fn_804C9C04 = .text:0x804C9C04; // type:function size:0x8 +fn_804C9C0C = .text:0x804C9C0C; // type:function size:0x8 +fn_804C9C14 = .text:0x804C9C14; // type:function size:0x8 +fn_804C9C1C = .text:0x804C9C1C; // type:function size:0x8 +fn_804C9C24 = .text:0x804C9C24; // type:function size:0x8 +fn_804C9C2C = .text:0x804C9C2C; // type:function size:0x8 +fn_804C9C34 = .text:0x804C9C34; // type:function size:0x8 +fn_804C9C3C = .text:0x804C9C3C; // type:function size:0x80 +fn_804C9CBC = .text:0x804C9CBC; // type:function size:0x80 +fn_804C9D3C = .text:0x804C9D3C; // type:function size:0x68 +fn_804C9DA4 = .text:0x804C9DA4; // type:function size:0x6C +fn_804C9E10 = .text:0x804C9E10; // type:function size:0x68 +fn_804C9E78 = .text:0x804C9E78; // type:function size:0x6C +fn_804C9EE4 = .text:0x804C9EE4; // type:function size:0x8 +fn_804C9EEC = .text:0x804C9EEC; // type:function size:0x6C +fn_804C9F58 = .text:0x804C9F58; // type:function size:0x10 +fn_804C9F68 = .text:0x804C9F68; // type:function size:0x3C +fn_804C9FA4 = .text:0x804C9FA4; // type:function size:0x38 +fn_804C9FDC = .text:0x804C9FDC; // type:function size:0x6C +fn_804CA048 = .text:0x804CA048; // type:function size:0x30 +fn_804CA078 = .text:0x804CA078; // type:function size:0x8 +fn_804CA080 = .text:0x804CA080; // type:function size:0x3C +fn_804CA0BC = .text:0x804CA0BC; // type:function size:0x90 +fn_804CA14C = .text:0x804CA14C; // type:function size:0x8 +fn_804CA154 = .text:0x804CA154; // type:function size:0x2BC +fn_804CA410 = .text:0x804CA410; // type:function size:0x84 +fn_804CA494 = .text:0x804CA494; // type:function size:0x80 +fn_804CA514 = .text:0x804CA514; // type:function size:0x58 +fn_804CA56C = .text:0x804CA56C; // type:function size:0x58 +fn_804CA5C4 = .text:0x804CA5C4; // type:function size:0x80 +fn_804CA644 = .text:0x804CA644; // type:function size:0x80 +fn_804CA6C4 = .text:0x804CA6C4; // type:function size:0x58 +fn_804CA71C = .text:0x804CA71C; // type:function size:0x54 +fn_804CA770 = .text:0x804CA770; // type:function size:0x5C +fn_804CA7CC = .text:0x804CA7CC; // type:function size:0x6C +fn_804CA838 = .text:0x804CA838; // type:function size:0x28 +fn_804CA860 = .text:0x804CA860; // type:function size:0x8 +fn_804CA868 = .text:0x804CA868; // type:function size:0x58 +fn_804CA8C0 = .text:0x804CA8C0; // type:function size:0x8 +fn_804CA8C8 = .text:0x804CA8C8; // type:function size:0x3C +fn_804CA904 = .text:0x804CA904; // type:function size:0x58 +fn_804CA95C = .text:0x804CA95C; // type:function size:0x58 +fn_804CA9B4 = .text:0x804CA9B4; // type:function size:0x80 +fn_804CAA34 = .text:0x804CAA34; // type:function size:0x80 +fn_804CAAB4 = .text:0x804CAAB4; // type:function size:0x58 +fn_804CAB0C = .text:0x804CAB0C; // type:function size:0x54 +fn_804CAB60 = .text:0x804CAB60; // type:function size:0x5C +fn_804CABBC = .text:0x804CABBC; // type:function size:0x6C +fn_804CAC28 = .text:0x804CAC28; // type:function size:0x28 +fn_804CAC50 = .text:0x804CAC50; // type:function size:0x8 +fn_804CAC58 = .text:0x804CAC58; // type:function size:0x8C +fn_804CACE4 = .text:0x804CACE4; // type:function size:0x8 +fn_804CACEC = .text:0x804CACEC; // type:function size:0x3C +fn_804CAD28 = .text:0x804CAD28; // type:function size:0x30 +fn_804CAD58 = .text:0x804CAD58; // type:function size:0x6C +fn_804CADC4 = .text:0x804CADC4; // type:function size:0x68 +fn_804CAE2C = .text:0x804CAE2C; // type:function size:0x50 +fn_804CAE7C = .text:0x804CAE7C; // type:function size:0x30 +fn_804CAEAC = .text:0x804CAEAC; // type:function size:0x30 +fn_804CAEDC = .text:0x804CAEDC; // type:function size:0x40 +fn_804CAF1C = .text:0x804CAF1C; // type:function size:0x50 +fn_804CAF6C = .text:0x804CAF6C; // type:function size:0x30 +fn_804CAF9C = .text:0x804CAF9C; // type:function size:0x30 +fn_804CAFCC = .text:0x804CAFCC; // type:function size:0x40 +fn_804CB00C = .text:0x804CB00C; // type:function size:0xF8 +fn_804CB104 = .text:0x804CB104; // type:function size:0x138 +fn_804CB23C = .text:0x804CB23C; // type:function size:0x8C +fn_804CB2C8 = .text:0x804CB2C8; // type:function size:0x4 +fn_804CB2CC = .text:0x804CB2CC; // type:function size:0x3C +fn_804CB308 = .text:0x804CB308; // type:function size:0x40 +fn_804CB348 = .text:0x804CB348; // type:function size:0x8C +fn_804CB3D4 = .text:0x804CB3D4; // type:function size:0x8 +fn_804CB3DC = .text:0x804CB3DC; // type:function size:0x2C +fn_804CB408 = .text:0x804CB408; // type:function size:0x58 +fn_804CB460 = .text:0x804CB460; // type:function size:0x28 +fn_804CB488 = .text:0x804CB488; // type:function size:0x68 +fn_804CB4F0 = .text:0x804CB4F0; // type:function size:0x4 +fn_804CB4F4 = .text:0x804CB4F4; // type:function size:0x334 +fn_804CB828 = .text:0x804CB828; // type:function size:0x7C +fn_804CB8A4 = .text:0x804CB8A4; // type:function size:0x8 +fn_804CB8AC = .text:0x804CB8AC; // type:function size:0x8 +fn_804CB8B4 = .text:0x804CB8B4; // type:function size:0x78 +fn_804CB92C = .text:0x804CB92C; // type:function size:0x48 +fn_804CB974 = .text:0x804CB974; // type:function size:0x24 +fn_804CB998 = .text:0x804CB998; // type:function size:0x3C +fn_804CB9D4 = .text:0x804CB9D4; // type:function size:0x5C +fn_804CBA30 = .text:0x804CBA30; // type:function size:0x4 +fn_804CBA34 = .text:0x804CBA34; // type:function size:0x90 +fn_804CBAC4 = .text:0x804CBAC4; // type:function size:0x4 +fn_804CBAC8 = .text:0x804CBAC8; // type:function size:0xAC +fn_804CBB74 = .text:0x804CBB74; // type:function size:0x168 +fn_804CBCDC = .text:0x804CBCDC; // type:function size:0x48 +fn_804CBD24 = .text:0x804CBD24; // type:function size:0xD8 +fn_804CBDFC = .text:0x804CBDFC; // type:function size:0xAC +fn_804CBEA8 = .text:0x804CBEA8; // type:function size:0x8 +fn_804CBEB0 = .text:0x804CBEB0; // type:function size:0x78 +fn_804CBF28 = .text:0x804CBF28; // type:function size:0x608 +fn_804CC530 = .text:0x804CC530; // type:function size:0x8 +fn_804CC538 = .text:0x804CC538; // type:function size:0x8 +fn_804CC540 = .text:0x804CC540; // type:function size:0x8 +fn_804CC548 = .text:0x804CC548; // type:function size:0x4B8 +fn_804CCA00 = .text:0x804CCA00; // type:function size:0x8 +fn_804CCA08 = .text:0x804CCA08; // type:function size:0x8 +fn_804CCA10 = .text:0x804CCA10; // type:function size:0x5C +fn_804CCA6C = .text:0x804CCA6C; // type:function size:0x1C0 +fn_804CCC2C = .text:0x804CCC2C; // type:function size:0x124 +fn_804CCD50 = .text:0x804CCD50; // type:function size:0x80 +fn_804CCDD0 = .text:0x804CCDD0; // type:function size:0x8 +fn_804CCDD8 = .text:0x804CCDD8; // type:function size:0x18C +fn_804CCF64 = .text:0x804CCF64; // type:function size:0xC +fn_804CCF70 = .text:0x804CCF70; // type:function size:0x84 +fn_804CCFF4 = .text:0x804CCFF4; // type:function size:0x64 +fn_804CD058 = .text:0x804CD058; // type:function size:0x534 +fn_804CD58C = .text:0x804CD58C; // type:function size:0x5C +fn_804CD5E8 = .text:0x804CD5E8; // type:function size:0x8 +fn_804CD5F0 = .text:0x804CD5F0; // type:function size:0x174 +fn_804CD764 = .text:0x804CD764; // type:function size:0x2C +fn_804CD790 = .text:0x804CD790; // type:function size:0x84 +fn_804CD814 = .text:0x804CD814; // type:function size:0x2C +fn_804CD840 = .text:0x804CD840; // type:function size:0x2C +fn_804CD86C = .text:0x804CD86C; // type:function size:0x84 +fn_804CD8F0 = .text:0x804CD8F0; // type:function size:0x2C +fn_804CD91C = .text:0x804CD91C; // type:function size:0x28 +fn_804CD944 = .text:0x804CD944; // type:function size:0x68 +fn_804CD9AC = .text:0x804CD9AC; // type:function size:0x50 +fn_804CD9FC = .text:0x804CD9FC; // type:function size:0x70 +fn_804CDA6C = .text:0x804CDA6C; // type:function size:0x158 +fn_804CDBC4 = .text:0x804CDBC4; // type:function size:0x4 +fn_804CDBC8 = .text:0x804CDBC8; // type:function size:0x84 +fn_804CDC4C = .text:0x804CDC4C; // type:function size:0x40 +fn_804CDC8C = .text:0x804CDC8C; // type:function size:0x104 +fn_804CDD90 = .text:0x804CDD90; // type:function size:0x30 +fn_804CDDC0 = .text:0x804CDDC0; // type:function size:0x40 +fn_804CDE00 = .text:0x804CDE00; // type:function size:0x104 +fn_804CDF04 = .text:0x804CDF04; // type:function size:0x3D8 +fn_804CE2DC = .text:0x804CE2DC; // type:function size:0x74 +fn_804CE350 = .text:0x804CE350; // type:function size:0x3C +fn_804CE38C = .text:0x804CE38C; // type:function size:0x11C +fn_804CE4A8 = .text:0x804CE4A8; // type:function size:0x4C +fn_804CE4F4 = .text:0x804CE4F4; // type:function size:0x78 +fn_804CE56C = .text:0x804CE56C; // type:function size:0x40 +fn_804CE5AC = .text:0x804CE5AC; // type:function size:0x44 +fn_804CE5F0 = .text:0x804CE5F0; // type:function size:0x54 +fn_804CE644 = .text:0x804CE644; // type:function size:0x74 +fn_804CE6B8 = .text:0x804CE6B8; // type:function size:0x40 +fn_804CE6F8 = .text:0x804CE6F8; // type:function size:0x104 +fn_804CE7FC = .text:0x804CE7FC; // type:function size:0x40 +fn_804CE83C = .text:0x804CE83C; // type:function size:0x104 +fn_804CE940 = .text:0x804CE940; // type:function size:0x40 +fn_804CE980 = .text:0x804CE980; // type:function size:0x104 +fn_804CEA84 = .text:0x804CEA84; // type:function size:0x6C +fn_804CEAF0 = .text:0x804CEAF0; // type:function size:0x2C +fn_804CEB1C = .text:0x804CEB1C; // type:function size:0x30 +fn_804CEB4C = .text:0x804CEB4C; // type:function size:0x5C +fn_804CEBA8 = .text:0x804CEBA8; // type:function size:0x4 +fn_804CEBAC = .text:0x804CEBAC; // type:function size:0x90 +fn_804CEC3C = .text:0x804CEC3C; // type:function size:0x4 +fn_804CEC40 = .text:0x804CEC40; // type:function size:0x40 +fn_804CEC80 = .text:0x804CEC80; // type:function size:0x8C +fn_804CED0C = .text:0x804CED0C; // type:function size:0x8 +fn_804CED14 = .text:0x804CED14; // type:function size:0x2C +fn_804CED40 = .text:0x804CED40; // type:function size:0x58 +fn_804CED98 = .text:0x804CED98; // type:function size:0x68 +fn_804CEE00 = .text:0x804CEE00; // type:function size:0x118 +fn_804CEF18 = .text:0x804CEF18; // type:function size:0x8 +fn_804CEF20 = .text:0x804CEF20; // type:function size:0x8 +fn_804CEF28 = .text:0x804CEF28; // type:function size:0x8 +fn_804CEF30 = .text:0x804CEF30; // type:function size:0x5C +fn_804CEF8C = .text:0x804CEF8C; // type:function size:0x30 +fn_804CEFBC = .text:0x804CEFBC; // type:function size:0x5C +fn_804CF018 = .text:0x804CF018; // type:function size:0x30 +fn_804CF048 = .text:0x804CF048; // type:function size:0x160 +fn_804CF1A8 = .text:0x804CF1A8; // type:function size:0x80 +fn_804CF228 = .text:0x804CF228; // type:function size:0x17C +fn_804CF3A4 = .text:0x804CF3A4; // type:function size:0xBC +fn_804CF460 = .text:0x804CF460; // type:function size:0xAC +fn_804CF50C = .text:0x804CF50C; // type:function size:0xC0 +fn_804CF5CC = .text:0x804CF5CC; // type:function size:0x4C4 +fn_804CFA90 = .text:0x804CFA90; // type:function size:0x170 +fn_804CFC00 = .text:0x804CFC00; // type:function size:0x170 +fn_804CFD70 = .text:0x804CFD70; // type:function size:0xCC +fn_804CFE3C = .text:0x804CFE3C; // type:function size:0xCC +fn_804CFF08 = .text:0x804CFF08; // type:function size:0xCC +fn_804CFFD4 = .text:0x804CFFD4; // type:function size:0x10C +fn_804D00E0 = .text:0x804D00E0; // type:function size:0x68 +fn_804D0148 = .text:0x804D0148; // type:function size:0x2C +fn_804D0174 = .text:0x804D0174; // type:function size:0x58 +fn_804D01CC = .text:0x804D01CC; // type:function size:0x160 +fn_804D032C = .text:0x804D032C; // type:function size:0x5C +fn_804D0388 = .text:0x804D0388; // type:function size:0x10 +fn_804D0398 = .text:0x804D0398; // type:function size:0x28 +fn_804D03C0 = .text:0x804D03C0; // type:function size:0x5C +fn_804D041C = .text:0x804D041C; // type:function size:0x60 +fn_804D047C = .text:0x804D047C; // type:function size:0x68 +fn_804D04E4 = .text:0x804D04E4; // type:function size:0x2C +fn_804D0510 = .text:0x804D0510; // type:function size:0x58 +fn_804D0568 = .text:0x804D0568; // type:function size:0x160 +fn_804D06C8 = .text:0x804D06C8; // type:function size:0x5C +fn_804D0724 = .text:0x804D0724; // type:function size:0x10 +fn_804D0734 = .text:0x804D0734; // type:function size:0x28 +fn_804D075C = .text:0x804D075C; // type:function size:0x5C +fn_804D07B8 = .text:0x804D07B8; // type:function size:0x60 +fn_804D0818 = .text:0x804D0818; // type:function size:0x6C +fn_804D0884 = .text:0x804D0884; // type:function size:0x70 +fn_804D08F4 = .text:0x804D08F4; // type:function size:0x134 +fn_804D0A28 = .text:0x804D0A28; // type:function size:0x4 +fn_804D0A2C = .text:0x804D0A2C; // type:function size:0x198 +fn_804D0BC4 = .text:0x804D0BC4; // type:function size:0x5C +fn_804D0C20 = .text:0x804D0C20; // type:function size:0x54 +fn_804D0C74 = .text:0x804D0C74; // type:function size:0x28 +fn_804D0C9C = .text:0x804D0C9C; // type:function size:0x68 +fn_804D0D04 = .text:0x804D0D04; // type:function size:0x114 +fn_804D0E18 = .text:0x804D0E18; // type:function size:0x5C +fn_804D0E74 = .text:0x804D0E74; // type:function size:0x5C +fn_804D0ED0 = .text:0x804D0ED0; // type:function size:0x54 +fn_804D0F24 = .text:0x804D0F24; // type:function size:0x19C +fn_804D10C0 = .text:0x804D10C0; // type:function size:0x5C +fn_804D111C = .text:0x804D111C; // type:function size:0x54 +fn_804D1170 = .text:0x804D1170; // type:function size:0x28 +fn_804D1198 = .text:0x804D1198; // type:function size:0x68 +fn_804D1200 = .text:0x804D1200; // type:function size:0x114 +fn_804D1314 = .text:0x804D1314; // type:function size:0x60 +fn_804D1374 = .text:0x804D1374; // type:function size:0x5C +fn_804D13D0 = .text:0x804D13D0; // type:function size:0x54 +fn_804D1424 = .text:0x804D1424; // type:function size:0x8 +fn_804D142C = .text:0x804D142C; // type:function size:0x8 +fn_804D1434 = .text:0x804D1434; // type:function size:0x8 +fn_804D143C = .text:0x804D143C; // type:function size:0x8 +fn_804D1444 = .text:0x804D1444; // type:function size:0x8 +fn_804D144C = .text:0x804D144C; // type:function size:0x8 +fn_804D1454 = .text:0x804D1454; // type:function size:0x8 +fn_804D145C = .text:0x804D145C; // type:function size:0x8 +fn_804D1464 = .text:0x804D1464; // type:function size:0x8 +fn_804D146C = .text:0x804D146C; // type:function size:0x14 +fn_804D1480 = .text:0x804D1480; // type:function size:0x14 +fn_804D1494 = .text:0x804D1494; // type:function size:0x14 +fn_804D14A8 = .text:0x804D14A8; // type:function size:0x14 +fn_804D14BC = .text:0x804D14BC; // type:function size:0x14 +fn_804D14D0 = .text:0x804D14D0; // type:function size:0x14 +fn_804D14E4 = .text:0x804D14E4; // type:function size:0x14 +fn_804D14F8 = .text:0x804D14F8; // type:function size:0x14 +fn_804D150C = .text:0x804D150C; // type:function size:0x14 +fn_804D1520 = .text:0x804D1520; // type:function size:0x8 +fn_804D1528 = .text:0x804D1528; // type:function size:0x8 +fn_804D1530 = .text:0x804D1530; // type:function size:0x8 +fn_804D1538 = .text:0x804D1538; // type:function size:0x8 +fn_804D1540 = .text:0x804D1540; // type:function size:0x8 +fn_804D1548 = .text:0x804D1548; // type:function size:0x8 +fn_804D1550 = .text:0x804D1550; // type:function size:0x8 +fn_804D1558 = .text:0x804D1558; // type:function size:0x8 +fn_804D1560 = .text:0x804D1560; // type:function size:0x8 +fn_804D1568 = .text:0x804D1568; // type:function size:0x124 +fn_804D168C = .text:0x804D168C; // type:function size:0x80 +fn_804D170C = .text:0x804D170C; // type:function size:0x68 +fn_804D1774 = .text:0x804D1774; // type:function size:0xAC +fn_804D1820 = .text:0x804D1820; // type:function size:0x40 +fn_804D1860 = .text:0x804D1860; // type:function size:0x29C +fn_804D1AFC = .text:0x804D1AFC; // type:function size:0x4 +fn_804D1B00 = .text:0x804D1B00; // type:function size:0x174 +fn_804D1C74 = .text:0x804D1C74; // type:function size:0x40 +fn_804D1CB4 = .text:0x804D1CB4; // type:function size:0x104 +fn_804D1DB8 = .text:0x804D1DB8; // type:function size:0xD4 +fn_804D1E8C = .text:0x804D1E8C; // type:function size:0x8 +fn_804D1E94 = .text:0x804D1E94; // type:function size:0x8 +fn_804D1E9C = .text:0x804D1E9C; // type:function size:0x88 +fn_804D1F24 = .text:0x804D1F24; // type:function size:0x24 +fn_804D1F48 = .text:0x804D1F48; // type:function size:0x1DC +fn_804D2124 = .text:0x804D2124; // type:function size:0x3E4 +fn_804D2508 = .text:0x804D2508; // type:function size:0xC0 +fn_804D25C8 = .text:0x804D25C8; // type:function size:0x124 +fn_804D26EC = .text:0x804D26EC; // type:function size:0x60 +fn_804D274C = .text:0x804D274C; // type:function size:0x144 +fn_804D2890 = .text:0x804D2890; // type:function size:0x4 +fn_804D2894 = .text:0x804D2894; // type:function size:0x14 +fn_804D28A8 = .text:0x804D28A8; // type:function size:0x14 +fn_804D28BC = .text:0x804D28BC; // type:function size:0x14 +fn_804D28D0 = .text:0x804D28D0; // type:function size:0x14 +fn_804D28E4 = .text:0x804D28E4; // type:function size:0x14 +fn_804D28F8 = .text:0x804D28F8; // type:function size:0x14 +fn_804D290C = .text:0x804D290C; // type:function size:0x14 +fn_804D2920 = .text:0x804D2920; // type:function size:0x14 +fn_804D2934 = .text:0x804D2934; // type:function size:0x14 +fn_804D2948 = .text:0x804D2948; // type:function size:0x14 +fn_804D295C = .text:0x804D295C; // type:function size:0x14 +fn_804D2970 = .text:0x804D2970; // type:function size:0x14 +fn_804D2984 = .text:0x804D2984; // type:function size:0x44 +fn_804D29C8 = .text:0x804D29C8; // type:function size:0x58 +fn_804D2A20 = .text:0x804D2A20; // type:function size:0x7C +fn_804D2A9C = .text:0x804D2A9C; // type:function size:0x4 +fn_804D2AA0 = .text:0x804D2AA0; // type:function size:0xE8 +fn_804D2B88 = .text:0x804D2B88; // type:function size:0xB8 +fn_804D2C40 = .text:0x804D2C40; // type:function size:0x2B4 +Handle__18CharEyeDartRulesetFP9DataArrayb = .text:0x804D2EF4; // type:function size:0xC4 +fn_804D2FB8 = .text:0x804D2FB8; // type:function size:0x4 +fn_804D2FBC = .text:0x804D2FBC; // type:function size:0x128 +fn_804D30E4 = .text:0x804D30E4; // type:function size:0x180 +fn_804D3264 = .text:0x804D3264; // type:function size:0xD4 +fn_804D3338 = .text:0x804D3338; // type:function size:0x40 +fn_804D3378 = .text:0x804D3378; // type:function size:0x84 +fn_804D33FC = .text:0x804D33FC; // type:function size:0xE4 +fn_804D34E0 = .text:0x804D34E0; // type:function size:0x78 +fn_804D3558 = .text:0x804D3558; // type:function size:0x8 +fn_804D3560 = .text:0x804D3560; // type:function size:0x8C +fn_804D35EC = .text:0x804D35EC; // type:function size:0x14C +fn_804D3738 = .text:0x804D3738; // type:function size:0x8 +fn_804D3740 = .text:0x804D3740; // type:function size:0x154 +fn_804D3894 = .text:0x804D3894; // type:function size:0xC +fn_804D38A0 = .text:0x804D38A0; // type:function size:0x4 +fn_804D38A4 = .text:0x804D38A4; // type:function size:0x1C4 +fn_804D3A68 = .text:0x804D3A68; // type:function size:0xD0 +fn_804D3B38 = .text:0x804D3B38; // type:function size:0xD0 +fn_804D3C08 = .text:0x804D3C08; // type:function size:0x26C +fn_804D3E74 = .text:0x804D3E74; // type:function size:0x134 +fn_804D3FA8 = .text:0x804D3FA8; // type:function size:0x4 +fn_804D3FAC = .text:0x804D3FAC; // type:function size:0x8 +fn_804D3FB4 = .text:0x804D3FB4; // type:function size:0x14 +fn_804D3FC8 = .text:0x804D3FC8; // type:function size:0x14 +fn_804D3FDC = .text:0x804D3FDC; // type:function size:0x14 +fn_804D3FF0 = .text:0x804D3FF0; // type:function size:0x14 +fn_804D4004 = .text:0x804D4004; // type:function size:0x14 +fn_804D4018 = .text:0x804D4018; // type:function size:0x14 +fn_804D402C = .text:0x804D402C; // type:function size:0x14 +fn_804D4040 = .text:0x804D4040; // type:function size:0x14 +fn_804D4054 = .text:0x804D4054; // type:function size:0x14 +fn_804D4068 = .text:0x804D4068; // type:function size:0x8 +fn_804D4070 = .text:0x804D4070; // type:function size:0x8 +fn_804D4078 = .text:0x804D4078; // type:function size:0x8 +fn_804D4080 = .text:0x804D4080; // type:function size:0x8 +fn_804D4088 = .text:0x804D4088; // type:function size:0x8 +fn_804D4090 = .text:0x804D4090; // type:function size:0xD8 +fn_804D4168 = .text:0x804D4168; // type:function size:0x1E4 +fn_804D434C = .text:0x804D434C; // type:function size:0xB8 +fn_804D4404 = .text:0x804D4404; // type:function size:0x4 +fn_804D4408 = .text:0x804D4408; // type:function size:0x4 +fn_804D440C = .text:0x804D440C; // type:function size:0xB8 +fn_804D44C4 = .text:0x804D44C4; // type:function size:0x90 +fn_804D4554 = .text:0x804D4554; // type:function size:0xD0 +fn_804D4624 = .text:0x804D4624; // type:function size:0x148 +fn_804D476C = .text:0x804D476C; // type:function size:0xA4 +fn_804D4810 = .text:0x804D4810; // type:function size:0x134 +fn_804D4944 = .text:0x804D4944; // type:function size:0x4 +fn_804D4948 = .text:0x804D4948; // type:function size:0x14 +fn_804D495C = .text:0x804D495C; // type:function size:0x14 +fn_804D4970 = .text:0x804D4970; // type:function size:0x14 +fn_804D4984 = .text:0x804D4984; // type:function size:0x14 +fn_804D4998 = .text:0x804D4998; // type:function size:0x14 +fn_804D49AC = .text:0x804D49AC; // type:function size:0x14 +fn_804D49C0 = .text:0x804D49C0; // type:function size:0x14 +fn_804D49D4 = .text:0x804D49D4; // type:function size:0x14 +fn_804D49E8 = .text:0x804D49E8; // type:function size:0x8 +fn_804D49F0 = .text:0x804D49F0; // type:function size:0x8 +fn_804D49F8 = .text:0x804D49F8; // type:function size:0x20C +fn_804D4C04 = .text:0x804D4C04; // type:function size:0x24 +fn_804D4C28 = .text:0x804D4C28; // type:function size:0x5C +fn_804D4C84 = .text:0x804D4C84; // type:function size:0x68 +fn_804D4CEC = .text:0x804D4CEC; // type:function size:0x4 +fn_804D4CF0 = .text:0x804D4CF0; // type:function size:0x90 +fn_804D4D80 = .text:0x804D4D80; // type:function size:0x4 +fn_804D4D84 = .text:0x804D4D84; // type:function size:0x40 +fn_804D4DC4 = .text:0x804D4DC4; // type:function size:0x8C +fn_804D4E50 = .text:0x804D4E50; // type:function size:0x8 +fn_804D4E58 = .text:0x804D4E58; // type:function size:0x2C +fn_804D4E84 = .text:0x804D4E84; // type:function size:0x58 +fn_804D4EDC = .text:0x804D4EDC; // type:function size:0x8 +fn_804D4EE4 = .text:0x804D4EE4; // type:function size:0x28 +fn_804D4F0C = .text:0x804D4F0C; // type:function size:0x68 +fn_804D4F74 = .text:0x804D4F74; // type:function size:0xE8 +fn_804D505C = .text:0x804D505C; // type:function size:0xB8 +fn_804D5114 = .text:0x804D5114; // type:function size:0xA0 +fn_804D51B4 = .text:0x804D51B4; // type:function size:0x100 +fn_804D52B4 = .text:0x804D52B4; // type:function size:0x5C +fn_804D5310 = .text:0x804D5310; // type:function size:0x16C +fn_804D547C = .text:0x804D547C; // type:function size:0x80 +fn_804D54FC = .text:0x804D54FC; // type:function size:0x58 +fn_804D5554 = .text:0x804D5554; // type:function size:0x58 +fn_804D55AC = .text:0x804D55AC; // type:function size:0x80 +fn_804D562C = .text:0x804D562C; // type:function size:0x80 +fn_804D56AC = .text:0x804D56AC; // type:function size:0x58 +fn_804D5704 = .text:0x804D5704; // type:function size:0x54 +fn_804D5758 = .text:0x804D5758; // type:function size:0x5C +fn_804D57B4 = .text:0x804D57B4; // type:function size:0x6C +fn_804D5820 = .text:0x804D5820; // type:function size:0x28 +fn_804D5848 = .text:0x804D5848; // type:function size:0x8 +fn_804D5850 = .text:0x804D5850; // type:function size:0x68 +fn_804D58B8 = .text:0x804D58B8; // type:function size:0x58 +fn_804D5910 = .text:0x804D5910; // type:function size:0x58 +fn_804D5968 = .text:0x804D5968; // type:function size:0x80 +fn_804D59E8 = .text:0x804D59E8; // type:function size:0x80 +fn_804D5A68 = .text:0x804D5A68; // type:function size:0x58 +fn_804D5AC0 = .text:0x804D5AC0; // type:function size:0x54 +fn_804D5B14 = .text:0x804D5B14; // type:function size:0x5C +fn_804D5B70 = .text:0x804D5B70; // type:function size:0x6C +fn_804D5BDC = .text:0x804D5BDC; // type:function size:0x28 +fn_804D5C04 = .text:0x804D5C04; // type:function size:0x8 +fn_804D5C0C = .text:0x804D5C0C; // type:function size:0x3C +fn_804D5C48 = .text:0x804D5C48; // type:function size:0x8 +fn_804D5C50 = .text:0x804D5C50; // type:function size:0x3C +fn_804D5C8C = .text:0x804D5C8C; // type:function size:0x68 +fn_804D5CF4 = .text:0x804D5CF4; // type:function size:0x50 +fn_804D5D44 = .text:0x804D5D44; // type:function size:0x30 +fn_804D5D74 = .text:0x804D5D74; // type:function size:0x30 +fn_804D5DA4 = .text:0x804D5DA4; // type:function size:0x40 +fn_804D5DE4 = .text:0x804D5DE4; // type:function size:0xBC +fn_804D5EA0 = .text:0x804D5EA0; // type:function size:0x40 +fn_804D5EE0 = .text:0x804D5EE0; // type:function size:0xF8 +fn_804D5FD8 = .text:0x804D5FD8; // type:function size:0x8 +fn_804D5FE0 = .text:0x804D5FE0; // type:function size:0x58 +fn_804D6038 = .text:0x804D6038; // type:function size:0x1D4 +fn_804D620C = .text:0x804D620C; // type:function size:0x4 +fn_804D6210 = .text:0x804D6210; // type:function size:0xA8 +fn_804D62B8 = .text:0x804D62B8; // type:function size:0xE4 +fn_804D639C = .text:0x804D639C; // type:function size:0x8 +fn_804D63A4 = .text:0x804D63A4; // type:function size:0x78 +fn_804D641C = .text:0x804D641C; // type:function size:0xD0 +fn_804D64EC = .text:0x804D64EC; // type:function size:0xA4 +fn_804D6590 = .text:0x804D6590; // type:function size:0x778 +fn_804D6D08 = .text:0x804D6D08; // type:function size:0xE8 +fn_804D6DF0 = .text:0x804D6DF0; // type:function size:0x58 +fn_804D6E48 = .text:0x804D6E48; // type:function size:0x158 +fn_804D6FA0 = .text:0x804D6FA0; // type:function size:0xAC +fn_804D704C = .text:0x804D704C; // type:function size:0xC4 +fn_804D7110 = .text:0x804D7110; // type:function size:0x50 +fn_804D7160 = .text:0x804D7160; // type:function size:0xD0 +fn_804D7230 = .text:0x804D7230; // type:function size:0x78 +fn_804D72A8 = .text:0x804D72A8; // type:function size:0x2F8 +fn_804D75A0 = .text:0x804D75A0; // type:function size:0x70 +fn_804D7610 = .text:0x804D7610; // type:function size:0x8 +fn_804D7618 = .text:0x804D7618; // type:function size:0x8 +fn_804D7620 = .text:0x804D7620; // type:function size:0x8 +fn_804D7628 = .text:0x804D7628; // type:function size:0x1E0 +fn_804D7808 = .text:0x804D7808; // type:function size:0x94 +fn_804D789C = .text:0x804D789C; // type:function size:0x74 +fn_804D7910 = .text:0x804D7910; // type:function size:0x10 +fn_804D7920 = .text:0x804D7920; // type:function size:0x4 +fn_804D7924 = .text:0x804D7924; // type:function size:0x114 +fn_804D7A38 = .text:0x804D7A38; // type:function size:0x74 +fn_804D7AAC = .text:0x804D7AAC; // type:function size:0x5C +fn_804D7B08 = .text:0x804D7B08; // type:function size:0x4 +fn_804D7B0C = .text:0x804D7B0C; // type:function size:0x90 +fn_804D7B9C = .text:0x804D7B9C; // type:function size:0x4 +fn_804D7BA0 = .text:0x804D7BA0; // type:function size:0x40 +fn_804D7BE0 = .text:0x804D7BE0; // type:function size:0x8C +fn_804D7C6C = .text:0x804D7C6C; // type:function size:0x8 +fn_804D7C74 = .text:0x804D7C74; // type:function size:0x2C +fn_804D7CA0 = .text:0x804D7CA0; // type:function size:0x58 +fn_804D7CF8 = .text:0x804D7CF8; // type:function size:0x28 +fn_804D7D20 = .text:0x804D7D20; // type:function size:0x68 +fn_804D7D88 = .text:0x804D7D88; // type:function size:0x90 +fn_804D7E18 = .text:0x804D7E18; // type:function size:0x5C +fn_804D7E74 = .text:0x804D7E74; // type:function size:0x30 +fn_804D7EA4 = .text:0x804D7EA4; // type:function size:0x90 +fn_804D7F34 = .text:0x804D7F34; // type:function size:0x50 +fn_804D7F84 = .text:0x804D7F84; // type:function size:0x30 +fn_804D7FB4 = .text:0x804D7FB4; // type:function size:0x30 +fn_804D7FE4 = .text:0x804D7FE4; // type:function size:0x40 +fn_804D8024 = .text:0x804D8024; // type:function size:0x40 +fn_804D8064 = .text:0x804D8064; // type:function size:0x104 +fn_804D8168 = .text:0x804D8168; // type:function size:0xC8 +fn_804D8230 = .text:0x804D8230; // type:function size:0x8 +fn_804D8238 = .text:0x804D8238; // type:function size:0x5C +fn_804D8294 = .text:0x804D8294; // type:function size:0x30 +fn_804D82C4 = .text:0x804D82C4; // type:function size:0x1F8 +fn_804D84BC = .text:0x804D84BC; // type:function size:0x1B0 +fn_804D866C = .text:0x804D866C; // type:function size:0x1E8 +fn_804D8854 = .text:0x804D8854; // type:function size:0xC0 +fn_804D8914 = .text:0x804D8914; // type:function size:0x44 +fn_804D8958 = .text:0x804D8958; // type:function size:0x288 +fn_804D8BE0 = .text:0x804D8BE0; // type:function size:0x170 +fn_804D8D50 = .text:0x804D8D50; // type:function size:0x2C +fn_804D8D7C = .text:0x804D8D7C; // type:function size:0x84 +fn_804D8E00 = .text:0x804D8E00; // type:function size:0x2C +fn_804D8E2C = .text:0x804D8E2C; // type:function size:0x2BC +fn_804D90E8 = .text:0x804D90E8; // type:function size:0x170 +fn_804D9258 = .text:0x804D9258; // type:function size:0x2C +fn_804D9284 = .text:0x804D9284; // type:function size:0x84 +fn_804D9308 = .text:0x804D9308; // type:function size:0x2C +fn_804D9334 = .text:0x804D9334; // type:function size:0xC0 +fn_804D93F4 = .text:0x804D93F4; // type:function size:0x60 +fn_804D9454 = .text:0x804D9454; // type:function size:0x68 +fn_804D94BC = .text:0x804D94BC; // type:function size:0x2C +fn_804D94E8 = .text:0x804D94E8; // type:function size:0x58 +fn_804D9540 = .text:0x804D9540; // type:function size:0x160 +fn_804D96A0 = .text:0x804D96A0; // type:function size:0x5C +fn_804D96FC = .text:0x804D96FC; // type:function size:0x10 +fn_804D970C = .text:0x804D970C; // type:function size:0xC4 +fn_804D97D0 = .text:0x804D97D0; // type:function size:0x94 +fn_804D9864 = .text:0x804D9864; // type:function size:0x28 +fn_804D988C = .text:0x804D988C; // type:function size:0x5C +fn_804D98E8 = .text:0x804D98E8; // type:function size:0x60 +fn_804D9948 = .text:0x804D9948; // type:function size:0x68 +fn_804D99B0 = .text:0x804D99B0; // type:function size:0x2C +fn_804D99DC = .text:0x804D99DC; // type:function size:0x58 +fn_804D9A34 = .text:0x804D9A34; // type:function size:0x160 +fn_804D9B94 = .text:0x804D9B94; // type:function size:0x5C +fn_804D9BF0 = .text:0x804D9BF0; // type:function size:0x10 +fn_804D9C00 = .text:0x804D9C00; // type:function size:0xA0 +fn_804D9CA0 = .text:0x804D9CA0; // type:function size:0x44 +fn_804D9CE4 = .text:0x804D9CE4; // type:function size:0x30 +fn_804D9D14 = .text:0x804D9D14; // type:function size:0xA0 +fn_804D9DB4 = .text:0x804D9DB4; // type:function size:0x70 +fn_804D9E24 = .text:0x804D9E24; // type:function size:0x28 +fn_804D9E4C = .text:0x804D9E4C; // type:function size:0x5C +fn_804D9EA8 = .text:0x804D9EA8; // type:function size:0x60 +fn_804D9F08 = .text:0x804D9F08; // type:function size:0x134 +fn_804DA03C = .text:0x804DA03C; // type:function size:0x4 +fn_804DA040 = .text:0x804DA040; // type:function size:0x198 +fn_804DA1D8 = .text:0x804DA1D8; // type:function size:0x5C +fn_804DA234 = .text:0x804DA234; // type:function size:0x54 +fn_804DA288 = .text:0x804DA288; // type:function size:0x28 +fn_804DA2B0 = .text:0x804DA2B0; // type:function size:0x68 +fn_804DA318 = .text:0x804DA318; // type:function size:0x38 +fn_804DA350 = .text:0x804DA350; // type:function size:0x114 +fn_804DA464 = .text:0x804DA464; // type:function size:0x5C +fn_804DA4C0 = .text:0x804DA4C0; // type:function size:0x5C +fn_804DA51C = .text:0x804DA51C; // type:function size:0x54 +fn_804DA570 = .text:0x804DA570; // type:function size:0x198 +fn_804DA708 = .text:0x804DA708; // type:function size:0x5C +fn_804DA764 = .text:0x804DA764; // type:function size:0x54 +fn_804DA7B8 = .text:0x804DA7B8; // type:function size:0x28 +fn_804DA7E0 = .text:0x804DA7E0; // type:function size:0x68 +fn_804DA848 = .text:0x804DA848; // type:function size:0x114 +fn_804DA95C = .text:0x804DA95C; // type:function size:0x5C +fn_804DA9B8 = .text:0x804DA9B8; // type:function size:0x5C +fn_804DAA14 = .text:0x804DAA14; // type:function size:0x54 +fn_804DAA68 = .text:0x804DAA68; // type:function size:0x14 +fn_804DAA7C = .text:0x804DAA7C; // type:function size:0x14 +fn_804DAA90 = .text:0x804DAA90; // type:function size:0x14 +fn_804DAAA4 = .text:0x804DAAA4; // type:function size:0x14 +fn_804DAAB8 = .text:0x804DAAB8; // type:function size:0x14 +fn_804DAACC = .text:0x804DAACC; // type:function size:0x14 +fn_804DAAE0 = .text:0x804DAAE0; // type:function size:0x14 +fn_804DAAF4 = .text:0x804DAAF4; // type:function size:0x14 +fn_804DAB08 = .text:0x804DAB08; // type:function size:0x14 +fn_804DAB1C = .text:0x804DAB1C; // type:function size:0x8 +fn_804DAB24 = .text:0x804DAB24; // type:function size:0x8 +fn_804DAB2C = .text:0x804DAB2C; // type:function size:0x8 +fn_804DAB34 = .text:0x804DAB34; // type:function size:0x8 +fn_804DAB3C = .text:0x804DAB3C; // type:function size:0x8 +fn_804DAB44 = .text:0x804DAB44; // type:function size:0x8 +fn_804DAB4C = .text:0x804DAB4C; // type:function size:0x8 +fn_804DAB54 = .text:0x804DAB54; // type:function size:0x21C +fn_804DAD70 = .text:0x804DAD70; // type:function size:0x58 +fn_804DADC8 = .text:0x804DADC8; // type:function size:0x80 +fn_804DAE48 = .text:0x804DAE48; // type:function size:0x80 +fn_804DAEC8 = .text:0x804DAEC8; // type:function size:0x58 +fn_804DAF20 = .text:0x804DAF20; // type:function size:0x10 +fn_804DAF30 = .text:0x804DAF30; // type:function size:0x54 +fn_804DAF84 = .text:0x804DAF84; // type:function size:0x5C +fn_804DAFE0 = .text:0x804DAFE0; // type:function size:0x6C +fn_804DB04C = .text:0x804DB04C; // type:function size:0x28 +fn_804DB074 = .text:0x804DB074; // type:function size:0x10 +fn_804DB084 = .text:0x804DB084; // type:function size:0x8 +fn_804DB08C = .text:0x804DB08C; // type:function size:0xC +fn_804DB098 = .text:0x804DB098; // type:function size:0x8 +fn_804DB0A0 = .text:0x804DB0A0; // type:function size:0x3C +fn_804DB0DC = .text:0x804DB0DC; // type:function size:0x14 +fn_804DB0F0 = .text:0x804DB0F0; // type:function size:0x34 +fn_804DB124 = .text:0x804DB124; // type:function size:0x3C +fn_804DB160 = .text:0x804DB160; // type:function size:0x80 +fn_804DB1E0 = .text:0x804DB1E0; // type:function size:0x4 +fn_804DB1E4 = .text:0x804DB1E4; // type:function size:0x90 +fn_804DB274 = .text:0x804DB274; // type:function size:0x4 +fn_804DB278 = .text:0x804DB278; // type:function size:0x40 +fn_804DB2B8 = .text:0x804DB2B8; // type:function size:0x8C +fn_804DB344 = .text:0x804DB344; // type:function size:0x8 +fn_804DB34C = .text:0x804DB34C; // type:function size:0x2C +fn_804DB378 = .text:0x804DB378; // type:function size:0x58 +fn_804DB3D0 = .text:0x804DB3D0; // type:function size:0x28 +fn_804DB3F8 = .text:0x804DB3F8; // type:function size:0x68 +fn_804DB460 = .text:0x804DB460; // type:function size:0x118 +fn_804DB578 = .text:0x804DB578; // type:function size:0xB8 +fn_804DB630 = .text:0x804DB630; // type:function size:0x30 +fn_804DB660 = .text:0x804DB660; // type:function size:0x30 +fn_804DB690 = .text:0x804DB690; // type:function size:0x40 +fn_804DB6D0 = .text:0x804DB6D0; // type:function size:0xE0 +fn_804DB7B0 = .text:0x804DB7B0; // type:function size:0xC4 +fn_804DB874 = .text:0x804DB874; // type:function size:0x10 +fn_804DB884 = .text:0x804DB884; // type:function size:0x7C +fn_804DB900 = .text:0x804DB900; // type:function size:0x9A0 +fn_804DC2A0 = .text:0x804DC2A0; // type:function size:0xE8 +fn_804DC388 = .text:0x804DC388; // type:function size:0xD0 +fn_804DC458 = .text:0x804DC458; // type:function size:0x3B4 +fn_804DC80C = .text:0x804DC80C; // type:function size:0x44 +fn_804DC850 = .text:0x804DC850; // type:function size:0x310 +fn_804DCB60 = .text:0x804DCB60; // type:function size:0x2E8 +fn_804DCE48 = .text:0x804DCE48; // type:function size:0x430 +fn_804DD278 = .text:0x804DD278; // type:function size:0x140 +fn_804DD3B8 = .text:0x804DD3B8; // type:function size:0x19C +fn_804DD554 = .text:0x804DD554; // type:function size:0x234 +fn_804DD788 = .text:0x804DD788; // type:function size:0x4 +fn_804DD78C = .text:0x804DD78C; // type:function size:0x4 +fn_804DD790 = .text:0x804DD790; // type:function size:0x100 +fn_804DD890 = .text:0x804DD890; // type:function size:0xC8 +fn_804DD958 = .text:0x804DD958; // type:function size:0x11C +fn_804DDA74 = .text:0x804DDA74; // type:function size:0x22C +fn_804DDCA0 = .text:0x804DDCA0; // type:function size:0x68 +fn_804DDD08 = .text:0x804DDD08; // type:function size:0x2C +fn_804DDD34 = .text:0x804DDD34; // type:function size:0x134 +fn_804DDE68 = .text:0x804DDE68; // type:function size:0x4 +fn_804DDE6C = .text:0x804DDE6C; // type:function size:0x198 +fn_804DE004 = .text:0x804DE004; // type:function size:0x5C +fn_804DE060 = .text:0x804DE060; // type:function size:0x10 +fn_804DE070 = .text:0x804DE070; // type:function size:0x54 +fn_804DE0C4 = .text:0x804DE0C4; // type:function size:0x28 +fn_804DE0EC = .text:0x804DE0EC; // type:function size:0x68 +fn_804DE154 = .text:0x804DE154; // type:function size:0x5C +fn_804DE1B0 = .text:0x804DE1B0; // type:function size:0x38 +fn_804DE1E8 = .text:0x804DE1E8; // type:function size:0x114 +fn_804DE2FC = .text:0x804DE2FC; // type:function size:0x5C +fn_804DE358 = .text:0x804DE358; // type:function size:0x5C +fn_804DE3B4 = .text:0x804DE3B4; // type:function size:0x54 +fn_804DE408 = .text:0x804DE408; // type:function size:0xC +fn_804DE414 = .text:0x804DE414; // type:function size:0x8 +fn_804DE41C = .text:0x804DE41C; // type:function size:0x8 +fn_804DE424 = .text:0x804DE424; // type:function size:0x8 +fn_804DE42C = .text:0x804DE42C; // type:function size:0x8 +fn_804DE434 = .text:0x804DE434; // type:function size:0x8 +fn_804DE43C = .text:0x804DE43C; // type:function size:0x8 +fn_804DE444 = .text:0x804DE444; // type:function size:0x8 +fn_804DE44C = .text:0x804DE44C; // type:function size:0x8 +fn_804DE454 = .text:0x804DE454; // type:function size:0x14 +fn_804DE468 = .text:0x804DE468; // type:function size:0x14 +fn_804DE47C = .text:0x804DE47C; // type:function size:0x14 +fn_804DE490 = .text:0x804DE490; // type:function size:0x14 +fn_804DE4A4 = .text:0x804DE4A4; // type:function size:0x14 +fn_804DE4B8 = .text:0x804DE4B8; // type:function size:0x14 +fn_804DE4CC = .text:0x804DE4CC; // type:function size:0x14 +fn_804DE4E0 = .text:0x804DE4E0; // type:function size:0x14 +fn_804DE4F4 = .text:0x804DE4F4; // type:function size:0x14 +fn_804DE508 = .text:0x804DE508; // type:function size:0x14 +fn_804DE51C = .text:0x804DE51C; // type:function size:0x8 +fn_804DE524 = .text:0x804DE524; // type:function size:0x8 +fn_804DE52C = .text:0x804DE52C; // type:function size:0x8 +fn_804DE534 = .text:0x804DE534; // type:function size:0x8 +fn_804DE53C = .text:0x804DE53C; // type:function size:0x8 +fn_804DE544 = .text:0x804DE544; // type:function size:0x8 +fn_804DE54C = .text:0x804DE54C; // type:function size:0x114 +fn_804DE660 = .text:0x804DE660; // type:function size:0xF0 +fn_804DE750 = .text:0x804DE750; // type:function size:0x18 +fn_804DE768 = .text:0x804DE768; // type:function size:0x4 +fn_804DE76C = .text:0x804DE76C; // type:function size:0x68 +fn_804DE7D4 = .text:0x804DE7D4; // type:function size:0x2C0 +fn_804DEA94 = .text:0x804DEA94; // type:function size:0xD0 +fn_804DEB64 = .text:0x804DEB64; // type:function size:0x48 +fn_804DEBAC = .text:0x804DEBAC; // type:function size:0x24 +fn_804DEBD0 = .text:0x804DEBD0; // type:function size:0x3C +fn_804DEC0C = .text:0x804DEC0C; // type:function size:0x5C +fn_804DEC68 = .text:0x804DEC68; // type:function size:0x4 +fn_804DEC6C = .text:0x804DEC6C; // type:function size:0x90 +fn_804DECFC = .text:0x804DECFC; // type:function size:0x4 +fn_804DED00 = .text:0x804DED00; // type:function size:0x40 +fn_804DED40 = .text:0x804DED40; // type:function size:0x8C +fn_804DEDCC = .text:0x804DEDCC; // type:function size:0x8 +fn_804DEDD4 = .text:0x804DEDD4; // type:function size:0x2C +fn_804DEE00 = .text:0x804DEE00; // type:function size:0x58 +fn_804DEE58 = .text:0x804DEE58; // type:function size:0x8 +fn_804DEE60 = .text:0x804DEE60; // type:function size:0x28 +fn_804DEE88 = .text:0x804DEE88; // type:function size:0x68 +fn_804DEEF0 = .text:0x804DEEF0; // type:function size:0x40 +fn_804DEF30 = .text:0x804DEF30; // type:function size:0x40 +fn_804DEF70 = .text:0x804DEF70; // type:function size:0x4 +fn_804DEF74 = .text:0x804DEF74; // type:function size:0x3C +fn_804DEFB0 = .text:0x804DEFB0; // type:function size:0x4 +fn_804DEFB4 = .text:0x804DEFB4; // type:function size:0x4 +fn_804DEFB8 = .text:0x804DEFB8; // type:function size:0xF0 +fn_804DF0A8 = .text:0x804DF0A8; // type:function size:0x78 +fn_804DF120 = .text:0x804DF120; // type:function size:0xD0 +fn_804DF1F0 = .text:0x804DF1F0; // type:function size:0xF4 +fn_804DF2E4 = .text:0x804DF2E4; // type:function size:0x68 +fn_804DF34C = .text:0x804DF34C; // type:function size:0x2C +fn_804DF378 = .text:0x804DF378; // type:function size:0x134 +fn_804DF4AC = .text:0x804DF4AC; // type:function size:0x4 +fn_804DF4B0 = .text:0x804DF4B0; // type:function size:0x19C +fn_804DF64C = .text:0x804DF64C; // type:function size:0x5C +fn_804DF6A8 = .text:0x804DF6A8; // type:function size:0x10 +fn_804DF6B8 = .text:0x804DF6B8; // type:function size:0x54 +fn_804DF70C = .text:0x804DF70C; // type:function size:0x28 +fn_804DF734 = .text:0x804DF734; // type:function size:0x68 +fn_804DF79C = .text:0x804DF79C; // type:function size:0x5C +fn_804DF7F8 = .text:0x804DF7F8; // type:function size:0x114 +fn_804DF90C = .text:0x804DF90C; // type:function size:0x60 +fn_804DF96C = .text:0x804DF96C; // type:function size:0x5C +fn_804DF9C8 = .text:0x804DF9C8; // type:function size:0x54 +fn_804DFA1C = .text:0x804DFA1C; // type:function size:0x5C +fn_804DFA78 = .text:0x804DFA78; // type:function size:0x6C +fn_804DFAE4 = .text:0x804DFAE4; // type:function size:0x28 +fn_804DFB0C = .text:0x804DFB0C; // type:function size:0x8 +fn_804DFB14 = .text:0x804DFB14; // type:function size:0x3C +fn_804DFB50 = .text:0x804DFB50; // type:function size:0x8 +fn_804DFB58 = .text:0x804DFB58; // type:function size:0x8 +fn_804DFB60 = .text:0x804DFB60; // type:function size:0x8 +fn_804DFB68 = .text:0x804DFB68; // type:function size:0x8 +fn_804DFB70 = .text:0x804DFB70; // type:function size:0x8 +fn_804DFB78 = .text:0x804DFB78; // type:function size:0x8 +fn_804DFB80 = .text:0x804DFB80; // type:function size:0x8 +fn_804DFB88 = .text:0x804DFB88; // type:function size:0x8 +fn_804DFB90 = .text:0x804DFB90; // type:function size:0x14 +fn_804DFBA4 = .text:0x804DFBA4; // type:function size:0x14 +fn_804DFBB8 = .text:0x804DFBB8; // type:function size:0x14 +fn_804DFBCC = .text:0x804DFBCC; // type:function size:0x14 +fn_804DFBE0 = .text:0x804DFBE0; // type:function size:0x14 +fn_804DFBF4 = .text:0x804DFBF4; // type:function size:0x14 +fn_804DFC08 = .text:0x804DFC08; // type:function size:0x14 +fn_804DFC1C = .text:0x804DFC1C; // type:function size:0x14 +fn_804DFC30 = .text:0x804DFC30; // type:function size:0x14 +fn_804DFC44 = .text:0x804DFC44; // type:function size:0x14 +fn_804DFC58 = .text:0x804DFC58; // type:function size:0x8 +fn_804DFC60 = .text:0x804DFC60; // type:function size:0x8 +fn_804DFC68 = .text:0x804DFC68; // type:function size:0x8 +fn_804DFC70 = .text:0x804DFC70; // type:function size:0x8 +fn_804DFC78 = .text:0x804DFC78; // type:function size:0x8 +fn_804DFC80 = .text:0x804DFC80; // type:function size:0x8 +fn_804DFC88 = .text:0x804DFC88; // type:function size:0x8 +fn_804DFC90 = .text:0x804DFC90; // type:function size:0x150 +fn_804DFDE0 = .text:0x804DFDE0; // type:function size:0x84 +fn_804DFE64 = .text:0x804DFE64; // type:function size:0x58 +fn_804DFEBC = .text:0x804DFEBC; // type:function size:0x58 +fn_804DFF14 = .text:0x804DFF14; // type:function size:0x80 +fn_804DFF94 = .text:0x804DFF94; // type:function size:0x80 +fn_804E0014 = .text:0x804E0014; // type:function size:0x58 +fn_804E006C = .text:0x804E006C; // type:function size:0x54 +fn_804E00C0 = .text:0x804E00C0; // type:function size:0x6C +fn_804E012C = .text:0x804E012C; // type:function size:0x50 +fn_804E017C = .text:0x804E017C; // type:function size:0x30 +fn_804E01AC = .text:0x804E01AC; // type:function size:0x30 +fn_804E01DC = .text:0x804E01DC; // type:function size:0x40 +fn_804E021C = .text:0x804E021C; // type:function size:0xC8 +fn_804E02E4 = .text:0x804E02E4; // type:function size:0x6D0 +fn_804E09B4 = .text:0x804E09B4; // type:function size:0x744 +fn_804E10F8 = .text:0x804E10F8; // type:function size:0x94 +fn_804E118C = .text:0x804E118C; // type:function size:0x38 +fn_804E11C4 = .text:0x804E11C4; // type:function size:0x50 +fn_804E1214 = .text:0x804E1214; // type:function size:0xE4 +fn_804E12F8 = .text:0x804E12F8; // type:function size:0x1B8 +fn_804E14B0 = .text:0x804E14B0; // type:function size:0x4 +fn_804E14B4 = .text:0x804E14B4; // type:function size:0x4 +fn_804E14B8 = .text:0x804E14B8; // type:function size:0x378 +fn_804E1830 = .text:0x804E1830; // type:function size:0x74 +fn_804E18A4 = .text:0x804E18A4; // type:function size:0x40 +fn_804E18E4 = .text:0x804E18E4; // type:function size:0x104 +fn_804E19E8 = .text:0x804E19E8; // type:function size:0x108 +fn_804E1AF0 = .text:0x804E1AF0; // type:function size:0x8 +fn_804E1AF8 = .text:0x804E1AF8; // type:function size:0x5C +fn_804E1B54 = .text:0x804E1B54; // type:function size:0x30 +fn_804E1B84 = .text:0x804E1B84; // type:function size:0x48 +fn_804E1BCC = .text:0x804E1BCC; // type:function size:0x14C +fn_804E1D18 = .text:0x804E1D18; // type:function size:0xE0 +fn_804E1DF8 = .text:0x804E1DF8; // type:function size:0x38C +fn_804E2184 = .text:0x804E2184; // type:function size:0x170 +fn_804E22F4 = .text:0x804E22F4; // type:function size:0x2C +fn_804E2320 = .text:0x804E2320; // type:function size:0x84 +fn_804E23A4 = .text:0x804E23A4; // type:function size:0x2C +fn_804E23D0 = .text:0x804E23D0; // type:function size:0xD0 +fn_804E24A0 = .text:0x804E24A0; // type:function size:0x58 +fn_804E24F8 = .text:0x804E24F8; // type:function size:0x160 +fn_804E2658 = .text:0x804E2658; // type:function size:0x28 +fn_804E2680 = .text:0x804E2680; // type:function size:0x5C +fn_804E26DC = .text:0x804E26DC; // type:function size:0x60 +fn_804E273C = .text:0x804E273C; // type:function size:0x70 +fn_804E27AC = .text:0x804E27AC; // type:function size:0x134 +fn_804E28E0 = .text:0x804E28E0; // type:function size:0x4 +fn_804E28E4 = .text:0x804E28E4; // type:function size:0x8 +fn_804E28EC = .text:0x804E28EC; // type:function size:0x8 +fn_804E28F4 = .text:0x804E28F4; // type:function size:0x8 +fn_804E28FC = .text:0x804E28FC; // type:function size:0x8 +fn_804E2904 = .text:0x804E2904; // type:function size:0x8 +fn_804E290C = .text:0x804E290C; // type:function size:0x8 +fn_804E2914 = .text:0x804E2914; // type:function size:0x8 +fn_804E291C = .text:0x804E291C; // type:function size:0x8 +fn_804E2924 = .text:0x804E2924; // type:function size:0x14 +fn_804E2938 = .text:0x804E2938; // type:function size:0x14 +fn_804E294C = .text:0x804E294C; // type:function size:0x14 +fn_804E2960 = .text:0x804E2960; // type:function size:0x14 +fn_804E2974 = .text:0x804E2974; // type:function size:0x14 +fn_804E2988 = .text:0x804E2988; // type:function size:0x14 +fn_804E299C = .text:0x804E299C; // type:function size:0x14 +fn_804E29B0 = .text:0x804E29B0; // type:function size:0x14 +fn_804E29C4 = .text:0x804E29C4; // type:function size:0x14 +fn_804E29D8 = .text:0x804E29D8; // type:function size:0x8 +fn_804E29E0 = .text:0x804E29E0; // type:function size:0x8 +fn_804E29E8 = .text:0x804E29E8; // type:function size:0x8 +fn_804E29F0 = .text:0x804E29F0; // type:function size:0x8 +fn_804E29F8 = .text:0x804E29F8; // type:function size:0x8 +fn_804E2A00 = .text:0x804E2A00; // type:function size:0x8 +fn_804E2A08 = .text:0x804E2A08; // type:function size:0x1B8 +fn_804E2BC0 = .text:0x804E2BC0; // type:function size:0x58 +fn_804E2C18 = .text:0x804E2C18; // type:function size:0x58 +fn_804E2C70 = .text:0x804E2C70; // type:function size:0x80 +fn_804E2CF0 = .text:0x804E2CF0; // type:function size:0x80 +fn_804E2D70 = .text:0x804E2D70; // type:function size:0x58 +fn_804E2DC8 = .text:0x804E2DC8; // type:function size:0x54 +fn_804E2E1C = .text:0x804E2E1C; // type:function size:0x5C +fn_804E2E78 = .text:0x804E2E78; // type:function size:0x6C +fn_804E2EE4 = .text:0x804E2EE4; // type:function size:0x28 +fn_804E2F0C = .text:0x804E2F0C; // type:function size:0x8 +fn_804E2F14 = .text:0x804E2F14; // type:function size:0x8 +fn_804E2F1C = .text:0x804E2F1C; // type:function size:0x3C +fn_804E2F58 = .text:0x804E2F58; // type:function size:0x50 +fn_804E2FA8 = .text:0x804E2FA8; // type:function size:0x30 +fn_804E2FD8 = .text:0x804E2FD8; // type:function size:0x30 +fn_804E3008 = .text:0x804E3008; // type:function size:0x40 +fn_804E3048 = .text:0x804E3048; // type:function size:0xEC +fn_804E3134 = .text:0x804E3134; // type:function size:0x68 +fn_804E319C = .text:0x804E319C; // type:function size:0x544 +fn_804E36E0 = .text:0x804E36E0; // type:function size:0x34 +fn_804E3714 = .text:0x804E3714; // type:function size:0x140 +fn_804E3854 = .text:0x804E3854; // type:function size:0x4 +fn_804E3858 = .text:0x804E3858; // type:function size:0x164 +fn_804E39BC = .text:0x804E39BC; // type:function size:0x5C +fn_804E3A18 = .text:0x804E3A18; // type:function size:0x4 +fn_804E3A1C = .text:0x804E3A1C; // type:function size:0x90 +fn_804E3AAC = .text:0x804E3AAC; // type:function size:0x4 +fn_804E3AB0 = .text:0x804E3AB0; // type:function size:0x40 +fn_804E3AF0 = .text:0x804E3AF0; // type:function size:0x8C +fn_804E3B7C = .text:0x804E3B7C; // type:function size:0x8 +fn_804E3B84 = .text:0x804E3B84; // type:function size:0x2C +fn_804E3BB0 = .text:0x804E3BB0; // type:function size:0x58 +fn_804E3C08 = .text:0x804E3C08; // type:function size:0x28 +fn_804E3C30 = .text:0x804E3C30; // type:function size:0x68 +fn_804E3C98 = .text:0x804E3C98; // type:function size:0x64 +fn_804E3CFC = .text:0x804E3CFC; // type:function size:0x60 +fn_804E3D5C = .text:0x804E3D5C; // type:function size:0x4 +fn_804E3D60 = .text:0x804E3D60; // type:function size:0x3C +fn_804E3D9C = .text:0x804E3D9C; // type:function size:0x4 +fn_804E3DA0 = .text:0x804E3DA0; // type:function size:0xF0 +fn_804E3E90 = .text:0x804E3E90; // type:function size:0xDC +fn_804E3F6C = .text:0x804E3F6C; // type:function size:0x11C +fn_804E4088 = .text:0x804E4088; // type:function size:0x27C +fn_804E4304 = .text:0x804E4304; // type:function size:0x68 +fn_804E436C = .text:0x804E436C; // type:function size:0x2C +fn_804E4398 = .text:0x804E4398; // type:function size:0x134 +fn_804E44CC = .text:0x804E44CC; // type:function size:0x4 +fn_804E44D0 = .text:0x804E44D0; // type:function size:0x19C +fn_804E466C = .text:0x804E466C; // type:function size:0x5C +fn_804E46C8 = .text:0x804E46C8; // type:function size:0x10 +fn_804E46D8 = .text:0x804E46D8; // type:function size:0x54 +fn_804E472C = .text:0x804E472C; // type:function size:0x28 +fn_804E4754 = .text:0x804E4754; // type:function size:0x68 +fn_804E47BC = .text:0x804E47BC; // type:function size:0x5C +fn_804E4818 = .text:0x804E4818; // type:function size:0x58 +fn_804E4870 = .text:0x804E4870; // type:function size:0x114 +fn_804E4984 = .text:0x804E4984; // type:function size:0x60 +fn_804E49E4 = .text:0x804E49E4; // type:function size:0x5C +fn_804E4A40 = .text:0x804E4A40; // type:function size:0x54 +fn_804E4A94 = .text:0x804E4A94; // type:function size:0x8 +fn_804E4A9C = .text:0x804E4A9C; // type:function size:0x8 +fn_804E4AA4 = .text:0x804E4AA4; // type:function size:0x8 +fn_804E4AAC = .text:0x804E4AAC; // type:function size:0x8 +fn_804E4AB4 = .text:0x804E4AB4; // type:function size:0x8 +fn_804E4ABC = .text:0x804E4ABC; // type:function size:0x8 +fn_804E4AC4 = .text:0x804E4AC4; // type:function size:0x8 +fn_804E4ACC = .text:0x804E4ACC; // type:function size:0x8 +fn_804E4AD4 = .text:0x804E4AD4; // type:function size:0x14 +fn_804E4AE8 = .text:0x804E4AE8; // type:function size:0x14 +fn_804E4AFC = .text:0x804E4AFC; // type:function size:0x14 +fn_804E4B10 = .text:0x804E4B10; // type:function size:0x14 +fn_804E4B24 = .text:0x804E4B24; // type:function size:0x14 +fn_804E4B38 = .text:0x804E4B38; // type:function size:0x14 +fn_804E4B4C = .text:0x804E4B4C; // type:function size:0x14 +fn_804E4B60 = .text:0x804E4B60; // type:function size:0x14 +fn_804E4B74 = .text:0x804E4B74; // type:function size:0x14 +fn_804E4B88 = .text:0x804E4B88; // type:function size:0x14 +fn_804E4B9C = .text:0x804E4B9C; // type:function size:0x8 +fn_804E4BA4 = .text:0x804E4BA4; // type:function size:0x8 +fn_804E4BAC = .text:0x804E4BAC; // type:function size:0x8 +fn_804E4BB4 = .text:0x804E4BB4; // type:function size:0x8 +fn_804E4BBC = .text:0x804E4BBC; // type:function size:0x8 +fn_804E4BC4 = .text:0x804E4BC4; // type:function size:0x8 +fn_804E4BCC = .text:0x804E4BCC; // type:function size:0x148 +fn_804E4D14 = .text:0x804E4D14; // type:function size:0xBC +fn_804E4DD0 = .text:0x804E4DD0; // type:function size:0x70 +fn_804E4E40 = .text:0x804E4E40; // type:function size:0xE8 +fn_804E4F28 = .text:0x804E4F28; // type:function size:0x264 +fn_804E518C = .text:0x804E518C; // type:function size:0x4 +fn_804E5190 = .text:0x804E5190; // type:function size:0xA4 +fn_804E5234 = .text:0x804E5234; // type:function size:0x4 +fn_804E5238 = .text:0x804E5238; // type:function size:0x108 +fn_804E5340 = .text:0x804E5340; // type:function size:0x74 +fn_804E53B4 = .text:0x804E53B4; // type:function size:0x60 +fn_804E5414 = .text:0x804E5414; // type:function size:0x4 +fn_804E5418 = .text:0x804E5418; // type:function size:0x90 +fn_804E54A8 = .text:0x804E54A8; // type:function size:0x4 +fn_804E54AC = .text:0x804E54AC; // type:function size:0x40 +fn_804E54EC = .text:0x804E54EC; // type:function size:0x8C +fn_804E5578 = .text:0x804E5578; // type:function size:0x8 +fn_804E5580 = .text:0x804E5580; // type:function size:0x2C +fn_804E55AC = .text:0x804E55AC; // type:function size:0x58 +fn_804E5604 = .text:0x804E5604; // type:function size:0x28 +fn_804E562C = .text:0x804E562C; // type:function size:0x68 +fn_804E5694 = .text:0x804E5694; // type:function size:0x40 +fn_804E56D4 = .text:0x804E56D4; // type:function size:0x104 +fn_804E57D8 = .text:0x804E57D8; // type:function size:0x58 +fn_804E5830 = .text:0x804E5830; // type:function size:0x58 +fn_804E5888 = .text:0x804E5888; // type:function size:0x80 +fn_804E5908 = .text:0x804E5908; // type:function size:0x80 +fn_804E5988 = .text:0x804E5988; // type:function size:0x58 +fn_804E59E0 = .text:0x804E59E0; // type:function size:0x54 +fn_804E5A34 = .text:0x804E5A34; // type:function size:0x5C +fn_804E5A90 = .text:0x804E5A90; // type:function size:0x6C +fn_804E5AFC = .text:0x804E5AFC; // type:function size:0x28 +fn_804E5B24 = .text:0x804E5B24; // type:function size:0x8 +fn_804E5B2C = .text:0x804E5B2C; // type:function size:0x3C +fn_804E5B68 = .text:0x804E5B68; // type:function size:0x50 +fn_804E5BB8 = .text:0x804E5BB8; // type:function size:0x30 +fn_804E5BE8 = .text:0x804E5BE8; // type:function size:0x30 +fn_804E5C18 = .text:0x804E5C18; // type:function size:0x40 +fn_804E5C58 = .text:0x804E5C58; // type:function size:0x88 +fn_804E5CE0 = .text:0x804E5CE0; // type:function size:0x8 +fn_804E5CE8 = .text:0x804E5CE8; // type:function size:0x144 +fn_804E5E2C = .text:0x804E5E2C; // type:function size:0x1AC +fn_804E5FD8 = .text:0x804E5FD8; // type:function size:0xCC +fn_804E60A4 = .text:0x804E60A4; // type:function size:0x68 +fn_804E610C = .text:0x804E610C; // type:function size:0x2C +fn_804E6138 = .text:0x804E6138; // type:function size:0x134 +fn_804E626C = .text:0x804E626C; // type:function size:0x4 +fn_804E6270 = .text:0x804E6270; // type:function size:0x198 +fn_804E6408 = .text:0x804E6408; // type:function size:0x5C +fn_804E6464 = .text:0x804E6464; // type:function size:0x10 +fn_804E6474 = .text:0x804E6474; // type:function size:0x54 +fn_804E64C8 = .text:0x804E64C8; // type:function size:0x28 +fn_804E64F0 = .text:0x804E64F0; // type:function size:0x68 +fn_804E6558 = .text:0x804E6558; // type:function size:0x5C +fn_804E65B4 = .text:0x804E65B4; // type:function size:0x114 +fn_804E66C8 = .text:0x804E66C8; // type:function size:0x5C +fn_804E6724 = .text:0x804E6724; // type:function size:0x5C +fn_804E6780 = .text:0x804E6780; // type:function size:0x54 +fn_804E67D4 = .text:0x804E67D4; // type:function size:0x14 +fn_804E67E8 = .text:0x804E67E8; // type:function size:0x14 +fn_804E67FC = .text:0x804E67FC; // type:function size:0x14 +fn_804E6810 = .text:0x804E6810; // type:function size:0x14 +fn_804E6824 = .text:0x804E6824; // type:function size:0x14 +fn_804E6838 = .text:0x804E6838; // type:function size:0x14 +fn_804E684C = .text:0x804E684C; // type:function size:0x14 +fn_804E6860 = .text:0x804E6860; // type:function size:0x14 +fn_804E6874 = .text:0x804E6874; // type:function size:0x8 +fn_804E687C = .text:0x804E687C; // type:function size:0x8 +fn_804E6884 = .text:0x804E6884; // type:function size:0x8 +fn_804E688C = .text:0x804E688C; // type:function size:0x8 +fn_804E6894 = .text:0x804E6894; // type:function size:0x8 +fn_804E689C = .text:0x804E689C; // type:function size:0x8 +fn_804E68A4 = .text:0x804E68A4; // type:function size:0x8 +fn_804E68AC = .text:0x804E68AC; // type:function size:0x104 +fn_804E69B0 = .text:0x804E69B0; // type:function size:0xB0 +fn_804E6A60 = .text:0x804E6A60; // type:function size:0x6C +fn_804E6ACC = .text:0x804E6ACC; // type:function size:0x18C +fn_804E6C58 = .text:0x804E6C58; // type:function size:0x68 +fn_804E6CC0 = .text:0x804E6CC0; // type:function size:0xC8 +fn_804E6D88 = .text:0x804E6D88; // type:function size:0x4 +fn_804E6D8C = .text:0x804E6D8C; // type:function size:0xB8 +fn_804E6E44 = .text:0x804E6E44; // type:function size:0xB4 +fn_804E6EF8 = .text:0x804E6EF8; // type:function size:0xD0 +fn_804E6FC8 = .text:0x804E6FC8; // type:function size:0x288 +fn_804E7250 = .text:0x804E7250; // type:function size:0x134 +fn_804E7384 = .text:0x804E7384; // type:function size:0x4 +fn_804E7388 = .text:0x804E7388; // type:function size:0x14 +fn_804E739C = .text:0x804E739C; // type:function size:0x14 +fn_804E73B0 = .text:0x804E73B0; // type:function size:0x14 +fn_804E73C4 = .text:0x804E73C4; // type:function size:0x14 +fn_804E73D8 = .text:0x804E73D8; // type:function size:0x14 +fn_804E73EC = .text:0x804E73EC; // type:function size:0x14 +fn_804E7400 = .text:0x804E7400; // type:function size:0x14 +fn_804E7414 = .text:0x804E7414; // type:function size:0x14 +fn_804E7428 = .text:0x804E7428; // type:function size:0xEC +fn_804E7514 = .text:0x804E7514; // type:function size:0xA4 +fn_804E75B8 = .text:0x804E75B8; // type:function size:0x238 +fn_804E77F0 = .text:0x804E77F0; // type:function size:0x48 +fn_804E7838 = .text:0x804E7838; // type:function size:0x50 +fn_804E7888 = .text:0x804E7888; // type:function size:0xE8 +fn_804E7970 = .text:0x804E7970; // type:function size:0x4 +fn_804E7974 = .text:0x804E7974; // type:function size:0xD0 +fn_804E7A44 = .text:0x804E7A44; // type:function size:0xB4 +fn_804E7AF8 = .text:0x804E7AF8; // type:function size:0x17C +fn_804E7C74 = .text:0x804E7C74; // type:function size:0x1C4 +fn_804E7E38 = .text:0x804E7E38; // type:function size:0x134 +fn_804E7F6C = .text:0x804E7F6C; // type:function size:0x4 +fn_804E7F70 = .text:0x804E7F70; // type:function size:0x14 +fn_804E7F84 = .text:0x804E7F84; // type:function size:0x14 +fn_804E7F98 = .text:0x804E7F98; // type:function size:0x14 +fn_804E7FAC = .text:0x804E7FAC; // type:function size:0x14 +fn_804E7FC0 = .text:0x804E7FC0; // type:function size:0x14 +fn_804E7FD4 = .text:0x804E7FD4; // type:function size:0x14 +fn_804E7FE8 = .text:0x804E7FE8; // type:function size:0x14 +fn_804E7FFC = .text:0x804E7FFC; // type:function size:0x14 +fn_804E8010 = .text:0x804E8010; // type:function size:0x14 +fn_804E8024 = .text:0x804E8024; // type:function size:0x8 +fn_804E802C = .text:0x804E802C; // type:function size:0x8 +fn_804E8034 = .text:0x804E8034; // type:function size:0x8 +fn_804E803C = .text:0x804E803C; // type:function size:0x8 +fn_804E8044 = .text:0x804E8044; // type:function size:0x8 +fn_804E804C = .text:0x804E804C; // type:function size:0x8 +fn_804E8054 = .text:0x804E8054; // type:function size:0x154 +fn_804E81A8 = .text:0x804E81A8; // type:function size:0xC8 +fn_804E8270 = .text:0x804E8270; // type:function size:0x20 +fn_804E8290 = .text:0x804E8290; // type:function size:0x68 +fn_804E82F8 = .text:0x804E82F8; // type:function size:0xC +fn_804E8304 = .text:0x804E8304; // type:function size:0xCC +fn_804E83D0 = .text:0x804E83D0; // type:function size:0x23C +fn_804E860C = .text:0x804E860C; // type:function size:0x4 +fn_804E8610 = .text:0x804E8610; // type:function size:0xC8 +fn_804E86D8 = .text:0x804E86D8; // type:function size:0x4 +fn_804E86DC = .text:0x804E86DC; // type:function size:0xAC +fn_804E8788 = .text:0x804E8788; // type:function size:0xA8 +fn_804E8830 = .text:0x804E8830; // type:function size:0x1A4 +fn_804E89D4 = .text:0x804E89D4; // type:function size:0x1C8 +fn_804E8B9C = .text:0x804E8B9C; // type:function size:0x134 +fn_804E8CD0 = .text:0x804E8CD0; // type:function size:0x4 +fn_804E8CD4 = .text:0x804E8CD4; // type:function size:0x8 +fn_804E8CDC = .text:0x804E8CDC; // type:function size:0x8 +fn_804E8CE4 = .text:0x804E8CE4; // type:function size:0x8 +fn_804E8CEC = .text:0x804E8CEC; // type:function size:0x8 +fn_804E8CF4 = .text:0x804E8CF4; // type:function size:0x8 +fn_804E8CFC = .text:0x804E8CFC; // type:function size:0x8 +fn_804E8D04 = .text:0x804E8D04; // type:function size:0x8 +fn_804E8D0C = .text:0x804E8D0C; // type:function size:0x8 +fn_804E8D14 = .text:0x804E8D14; // type:function size:0x14 +fn_804E8D28 = .text:0x804E8D28; // type:function size:0x14 +fn_804E8D3C = .text:0x804E8D3C; // type:function size:0x14 +fn_804E8D50 = .text:0x804E8D50; // type:function size:0x14 +fn_804E8D64 = .text:0x804E8D64; // type:function size:0x14 +fn_804E8D78 = .text:0x804E8D78; // type:function size:0x14 +fn_804E8D8C = .text:0x804E8D8C; // type:function size:0x14 +fn_804E8DA0 = .text:0x804E8DA0; // type:function size:0x14 +fn_804E8DB4 = .text:0x804E8DB4; // type:function size:0x14 +fn_804E8DC8 = .text:0x804E8DC8; // type:function size:0x14 +fn_804E8DDC = .text:0x804E8DDC; // type:function size:0x8 +fn_804E8DE4 = .text:0x804E8DE4; // type:function size:0x8 +fn_804E8DEC = .text:0x804E8DEC; // type:function size:0x8 +fn_804E8DF4 = .text:0x804E8DF4; // type:function size:0x8 +fn_804E8DFC = .text:0x804E8DFC; // type:function size:0x8 +fn_804E8E04 = .text:0x804E8E04; // type:function size:0x8 +fn_804E8E0C = .text:0x804E8E0C; // type:function size:0x8 +fn_804E8E14 = .text:0x804E8E14; // type:function size:0x4 +fn_804E8E18 = .text:0x804E8E18; // type:function size:0x8C +fn_804E8EA4 = .text:0x804E8EA4; // type:function size:0x4 +fn_804E8EA8 = .text:0x804E8EA8; // type:function size:0x40 +fn_804E8EE8 = .text:0x804E8EE8; // type:function size:0x78 +fn_804E8F60 = .text:0x804E8F60; // type:function size:0x2C +fn_804E8F8C = .text:0x804E8F8C; // type:function size:0x84 +fn_804E9010 = .text:0x804E9010; // type:function size:0x60 +fn_804E9070 = .text:0x804E9070; // type:function size:0x58 +fn_804E90C8 = .text:0x804E90C8; // type:function size:0x80 +fn_804E9148 = .text:0x804E9148; // type:function size:0x80 +fn_804E91C8 = .text:0x804E91C8; // type:function size:0x58 +fn_804E9220 = .text:0x804E9220; // type:function size:0x54 +fn_804E9274 = .text:0x804E9274; // type:function size:0x5C +fn_804E92D0 = .text:0x804E92D0; // type:function size:0x6C +fn_804E933C = .text:0x804E933C; // type:function size:0x28 +fn_804E9364 = .text:0x804E9364; // type:function size:0x8 +fn_804E936C = .text:0x804E936C; // type:function size:0x58 +fn_804E93C4 = .text:0x804E93C4; // type:function size:0x8 +fn_804E93CC = .text:0x804E93CC; // type:function size:0x3C +fn_804E9408 = .text:0x804E9408; // type:function size:0x30 +fn_804E9438 = .text:0x804E9438; // type:function size:0x30 +fn_804E9468 = .text:0x804E9468; // type:function size:0x40 +fn_804E94A8 = .text:0x804E94A8; // type:function size:0x1E4 +fn_804E968C = .text:0x804E968C; // type:function size:0x4 +fn_804E9690 = .text:0x804E9690; // type:function size:0x90 +fn_804E9720 = .text:0x804E9720; // type:function size:0x4 +fn_804E9724 = .text:0x804E9724; // type:function size:0x40 +fn_804E9764 = .text:0x804E9764; // type:function size:0x8C +fn_804E97F0 = .text:0x804E97F0; // type:function size:0x8 +fn_804E97F8 = .text:0x804E97F8; // type:function size:0x2C +fn_804E9824 = .text:0x804E9824; // type:function size:0x58 +fn_804E987C = .text:0x804E987C; // type:function size:0x28 +fn_804E98A4 = .text:0x804E98A4; // type:function size:0x68 +fn_804E990C = .text:0x804E990C; // type:function size:0x54 +fn_804E9960 = .text:0x804E9960; // type:function size:0x38 +fn_804E9998 = .text:0x804E9998; // type:function size:0x8 +fn_804E99A0 = .text:0x804E99A0; // type:function size:0x8C +fn_804E9A2C = .text:0x804E9A2C; // type:function size:0x290 +fn_804E9CBC = .text:0x804E9CBC; // type:function size:0x34 +fn_804E9CF0 = .text:0x804E9CF0; // type:function size:0x84 +fn_804E9D74 = .text:0x804E9D74; // type:function size:0x58 +fn_804E9DCC = .text:0x804E9DCC; // type:function size:0x80 +fn_804E9E4C = .text:0x804E9E4C; // type:function size:0x80 +fn_804E9ECC = .text:0x804E9ECC; // type:function size:0x3C +fn_804E9F08 = .text:0x804E9F08; // type:function size:0x30 +fn_804E9F38 = .text:0x804E9F38; // type:function size:0x30 +fn_804E9F68 = .text:0x804E9F68; // type:function size:0x40 +fn_804E9FA8 = .text:0x804E9FA8; // type:function size:0x80 +fn_804EA028 = .text:0x804EA028; // type:function size:0x4 +fn_804EA02C = .text:0x804EA02C; // type:function size:0xA0 +fn_804EA0CC = .text:0x804EA0CC; // type:function size:0x78 +fn_804EA144 = .text:0x804EA144; // type:function size:0x90 +fn_804EA1D4 = .text:0x804EA1D4; // type:function size:0x30 +fn_804EA204 = .text:0x804EA204; // type:function size:0x30 +fn_804EA234 = .text:0x804EA234; // type:function size:0x1DC +fn_804EA410 = .text:0x804EA410; // type:function size:0x164 +fn_804EA574 = .text:0x804EA574; // type:function size:0x40 +Handle__11CharLipSyncFP9DataArrayb = .text:0x804EA5B4; // type:function size:0xC4 +fn_804EA678 = .text:0x804EA678; // type:function size:0x68 +fn_804EA6E0 = .text:0x804EA6E0; // type:function size:0x2C +fn_804EA70C = .text:0x804EA70C; // type:function size:0x58 +fn_804EA764 = .text:0x804EA764; // type:function size:0x160 +fn_804EA8C4 = .text:0x804EA8C4; // type:function size:0x28 +fn_804EA8EC = .text:0x804EA8EC; // type:function size:0x60 +fn_804EA94C = .text:0x804EA94C; // type:function size:0x68 +fn_804EA9B4 = .text:0x804EA9B4; // type:function size:0x14C +fn_804EAB00 = .text:0x804EAB00; // type:function size:0x5C +fn_804EAB5C = .text:0x804EAB5C; // type:function size:0xD4 +fn_804EAC30 = .text:0x804EAC30; // type:function size:0x50 +fn_804EAC80 = .text:0x804EAC80; // type:function size:0x4 +fn_804EAC84 = .text:0x804EAC84; // type:function size:0x128 +fn_804EADAC = .text:0x804EADAC; // type:function size:0x198 +fn_804EAF44 = .text:0x804EAF44; // type:function size:0x5C +fn_804EAFA0 = .text:0x804EAFA0; // type:function size:0x10 +fn_804EAFB0 = .text:0x804EAFB0; // type:function size:0x54 +fn_804EB004 = .text:0x804EB004; // type:function size:0x28 +fn_804EB02C = .text:0x804EB02C; // type:function size:0x68 +fn_804EB094 = .text:0x804EB094; // type:function size:0x5C +fn_804EB0F0 = .text:0x804EB0F0; // type:function size:0x54 +fn_804EB144 = .text:0x804EB144; // type:function size:0x68 +fn_804EB1AC = .text:0x804EB1AC; // type:function size:0x114 +fn_804EB2C0 = .text:0x804EB2C0; // type:function size:0x5C +fn_804EB31C = .text:0x804EB31C; // type:function size:0x5C +fn_804EB378 = .text:0x804EB378; // type:function size:0x54 +fn_804EB3CC = .text:0x804EB3CC; // type:function size:0x16C +fn_804EB538 = .text:0x804EB538; // type:function size:0x1DC +fn_804EB714 = .text:0x804EB714; // type:function size:0x80 +fn_804EB794 = .text:0x804EB794; // type:function size:0x80 +fn_804EB814 = .text:0x804EB814; // type:function size:0x68 +fn_804EB87C = .text:0x804EB87C; // type:function size:0x68 +fn_804EB8E4 = .text:0x804EB8E4; // type:function size:0x140 +fn_804EBA24 = .text:0x804EBA24; // type:function size:0x58 +fn_804EBA7C = .text:0x804EBA7C; // type:function size:0x4 +fn_804EBA80 = .text:0x804EBA80; // type:function size:0x54 +fn_804EBAD4 = .text:0x804EBAD4; // type:function size:0x38 +fn_804EBB0C = .text:0x804EBB0C; // type:function size:0x6C +fn_804EBB78 = .text:0x804EBB78; // type:function size:0xEC +fn_804EBC64 = .text:0x804EBC64; // type:function size:0x3C8 +fn_804EC02C = .text:0x804EC02C; // type:function size:0xD4 +fn_804EC100 = .text:0x804EC100; // type:function size:0xC +fn_804EC10C = .text:0x804EC10C; // type:function size:0x48 +fn_804EC154 = .text:0x804EC154; // type:function size:0x4 +fn_804EC158 = .text:0x804EC158; // type:function size:0x1F8 +fn_804EC350 = .text:0x804EC350; // type:function size:0x40 +fn_804EC390 = .text:0x804EC390; // type:function size:0x104 +fn_804EC494 = .text:0x804EC494; // type:function size:0x40 +fn_804EC4D4 = .text:0x804EC4D4; // type:function size:0x104 +fn_804EC5D8 = .text:0x804EC5D8; // type:function size:0x110 +fn_804EC6E8 = .text:0x804EC6E8; // type:function size:0x8 +fn_804EC6F0 = .text:0x804EC6F0; // type:function size:0x8 +fn_804EC6F8 = .text:0x804EC6F8; // type:function size:0x8 +fn_804EC700 = .text:0x804EC700; // type:function size:0x8 +fn_804EC708 = .text:0x804EC708; // type:function size:0x100 +fn_804EC808 = .text:0x804EC808; // type:function size:0x3D4 +fn_804ECBDC = .text:0x804ECBDC; // type:function size:0xCC +fn_804ECCA8 = .text:0x804ECCA8; // type:function size:0xCC +fn_804ECD74 = .text:0x804ECD74; // type:function size:0xCC +fn_804ECE40 = .text:0x804ECE40; // type:function size:0x3C +fn_804ECE7C = .text:0x804ECE7C; // type:function size:0x60 +fn_804ECEDC = .text:0x804ECEDC; // type:function size:0x6C +fn_804ECF48 = .text:0x804ECF48; // type:function size:0x134 +fn_804ED07C = .text:0x804ED07C; // type:function size:0x4 +fn_804ED080 = .text:0x804ED080; // type:function size:0x8 +fn_804ED088 = .text:0x804ED088; // type:function size:0x8 +fn_804ED090 = .text:0x804ED090; // type:function size:0x8 +fn_804ED098 = .text:0x804ED098; // type:function size:0x8 +fn_804ED0A0 = .text:0x804ED0A0; // type:function size:0x8 +fn_804ED0A8 = .text:0x804ED0A8; // type:function size:0x8 +fn_804ED0B0 = .text:0x804ED0B0; // type:function size:0x8 +fn_804ED0B8 = .text:0x804ED0B8; // type:function size:0x8 +fn_804ED0C0 = .text:0x804ED0C0; // type:function size:0x14 +fn_804ED0D4 = .text:0x804ED0D4; // type:function size:0x14 +fn_804ED0E8 = .text:0x804ED0E8; // type:function size:0x14 +fn_804ED0FC = .text:0x804ED0FC; // type:function size:0x14 +fn_804ED110 = .text:0x804ED110; // type:function size:0x14 +fn_804ED124 = .text:0x804ED124; // type:function size:0x14 +fn_804ED138 = .text:0x804ED138; // type:function size:0x14 +fn_804ED14C = .text:0x804ED14C; // type:function size:0x14 +fn_804ED160 = .text:0x804ED160; // type:function size:0x14 +fn_804ED174 = .text:0x804ED174; // type:function size:0x8 +fn_804ED17C = .text:0x804ED17C; // type:function size:0x8 +fn_804ED184 = .text:0x804ED184; // type:function size:0x8 +fn_804ED18C = .text:0x804ED18C; // type:function size:0x8 +fn_804ED194 = .text:0x804ED194; // type:function size:0x8 +fn_804ED19C = .text:0x804ED19C; // type:function size:0x8 +fn_804ED1A4 = .text:0x804ED1A4; // type:function size:0x8 +fn_804ED1AC = .text:0x804ED1AC; // type:function size:0x1B4 +fn_804ED360 = .text:0x804ED360; // type:function size:0xBC +fn_804ED41C = .text:0x804ED41C; // type:function size:0x6C +fn_804ED488 = .text:0x804ED488; // type:function size:0x4 +fn_804ED48C = .text:0x804ED48C; // type:function size:0x688 +fn_804EDB14 = .text:0x804EDB14; // type:function size:0x8 +fn_804EDB1C = .text:0x804EDB1C; // type:function size:0x8 +fn_804EDB24 = .text:0x804EDB24; // type:function size:0x8 +fn_804EDB2C = .text:0x804EDB2C; // type:function size:0x8 +fn_804EDB34 = .text:0x804EDB34; // type:function size:0x184 +fn_804EDCB8 = .text:0x804EDCB8; // type:function size:0xA0 +fn_804EDD58 = .text:0x804EDD58; // type:function size:0x4 +fn_804EDD5C = .text:0x804EDD5C; // type:function size:0x190 +fn_804EDEEC = .text:0x804EDEEC; // type:function size:0x110 +fn_804EDFFC = .text:0x804EDFFC; // type:function size:0x11C +fn_804EE118 = .text:0x804EE118; // type:function size:0x464 +fn_804EE57C = .text:0x804EE57C; // type:function size:0x134 +fn_804EE6B0 = .text:0x804EE6B0; // type:function size:0x4 +fn_804EE6B4 = .text:0x804EE6B4; // type:function size:0x8 +fn_804EE6BC = .text:0x804EE6BC; // type:function size:0x8 +fn_804EE6C4 = .text:0x804EE6C4; // type:function size:0x8 +fn_804EE6CC = .text:0x804EE6CC; // type:function size:0x8 +fn_804EE6D4 = .text:0x804EE6D4; // type:function size:0x8 +fn_804EE6DC = .text:0x804EE6DC; // type:function size:0x8 +fn_804EE6E4 = .text:0x804EE6E4; // type:function size:0x8 +fn_804EE6EC = .text:0x804EE6EC; // type:function size:0x8 +fn_804EE6F4 = .text:0x804EE6F4; // type:function size:0x14 +fn_804EE708 = .text:0x804EE708; // type:function size:0x14 +fn_804EE71C = .text:0x804EE71C; // type:function size:0x14 +fn_804EE730 = .text:0x804EE730; // type:function size:0x14 +fn_804EE744 = .text:0x804EE744; // type:function size:0x14 +fn_804EE758 = .text:0x804EE758; // type:function size:0x14 +fn_804EE76C = .text:0x804EE76C; // type:function size:0x14 +fn_804EE780 = .text:0x804EE780; // type:function size:0x14 +fn_804EE794 = .text:0x804EE794; // type:function size:0x14 +fn_804EE7A8 = .text:0x804EE7A8; // type:function size:0x8 +fn_804EE7B0 = .text:0x804EE7B0; // type:function size:0x8 +fn_804EE7B8 = .text:0x804EE7B8; // type:function size:0x8 +fn_804EE7C0 = .text:0x804EE7C0; // type:function size:0x8 +fn_804EE7C8 = .text:0x804EE7C8; // type:function size:0x8 +fn_804EE7D0 = .text:0x804EE7D0; // type:function size:0x8 +fn_804EE7D8 = .text:0x804EE7D8; // type:function size:0x8 +fn_804EE7E0 = .text:0x804EE7E0; // type:function size:0x40 +fn_804EE820 = .text:0x804EE820; // type:function size:0x6C +fn_804EE88C = .text:0x804EE88C; // type:function size:0x4C +fn_804EE8D8 = .text:0x804EE8D8; // type:function size:0x70 +fn_804EE948 = .text:0x804EE948; // type:function size:0x4C +fn_804EE994 = .text:0x804EE994; // type:function size:0x8 +fn_804EE99C = .text:0x804EE99C; // type:function size:0x4 +fn_804EE9A0 = .text:0x804EE9A0; // type:function size:0x34 +fn_804EE9D4 = .text:0x804EE9D4; // type:function size:0x34 +fn_804EEA08 = .text:0x804EEA08; // type:function size:0x4C +fn_804EEA54 = .text:0x804EEA54; // type:function size:0xD8 +fn_804EEB2C = .text:0x804EEB2C; // type:function size:0x30 +fn_804EEB5C = .text:0x804EEB5C; // type:function size:0x98 +fn_804EEBF4 = .text:0x804EEBF4; // type:function size:0x50 +fn_804EEC44 = .text:0x804EEC44; // type:function size:0x58 +fn_804EEC9C = .text:0x804EEC9C; // type:function size:0x58 +fn_804EECF4 = .text:0x804EECF4; // type:function size:0x80 +fn_804EED74 = .text:0x804EED74; // type:function size:0x80 +fn_804EEDF4 = .text:0x804EEDF4; // type:function size:0x58 +fn_804EEE4C = .text:0x804EEE4C; // type:function size:0x54 +fn_804EEEA0 = .text:0x804EEEA0; // type:function size:0x5C +fn_804EEEFC = .text:0x804EEEFC; // type:function size:0x6C +fn_804EEF68 = .text:0x804EEF68; // type:function size:0x28 +fn_804EEF90 = .text:0x804EEF90; // type:function size:0x8 +fn_804EEF98 = .text:0x804EEF98; // type:function size:0x58 +fn_804EEFF0 = .text:0x804EEFF0; // type:function size:0x8 +fn_804EEFF8 = .text:0x804EEFF8; // type:function size:0x3C +fn_804EF034 = .text:0x804EF034; // type:function size:0x50 +fn_804EF084 = .text:0x804EF084; // type:function size:0x30 +fn_804EF0B4 = .text:0x804EF0B4; // type:function size:0x30 +fn_804EF0E4 = .text:0x804EF0E4; // type:function size:0x40 +fn_804EF124 = .text:0x804EF124; // type:function size:0x68 +fn_804EF18C = .text:0x804EF18C; // type:function size:0x60 +fn_804EF1EC = .text:0x804EF1EC; // type:function size:0x40 +fn_804EF22C = .text:0x804EF22C; // type:function size:0x104 +fn_804EF330 = .text:0x804EF330; // type:function size:0x4 +fn_804EF334 = .text:0x804EF334; // type:function size:0x7C +fn_804EF3B0 = .text:0x804EF3B0; // type:function size:0x74 +fn_804EF424 = .text:0x804EF424; // type:function size:0x5C +fn_804EF480 = .text:0x804EF480; // type:function size:0x4 +fn_804EF484 = .text:0x804EF484; // type:function size:0x90 +fn_804EF514 = .text:0x804EF514; // type:function size:0x4 +fn_804EF518 = .text:0x804EF518; // type:function size:0x40 +fn_804EF558 = .text:0x804EF558; // type:function size:0x8C +fn_804EF5E4 = .text:0x804EF5E4; // type:function size:0x8 +fn_804EF5EC = .text:0x804EF5EC; // type:function size:0x2C +fn_804EF618 = .text:0x804EF618; // type:function size:0x58 +fn_804EF670 = .text:0x804EF670; // type:function size:0x28 +fn_804EF698 = .text:0x804EF698; // type:function size:0x68 +fn_804EF700 = .text:0x804EF700; // type:function size:0x78 +fn_804EF778 = .text:0x804EF778; // type:function size:0x5C +fn_804EF7D4 = .text:0x804EF7D4; // type:function size:0x30 +Handle__12CharMeshHideFP9DataArrayb = .text:0x804EF804; // type:function size:0xC4 +fn_804EF8C8 = .text:0x804EF8C8; // type:function size:0x114 +fn_804EF9DC = .text:0x804EF9DC; // type:function size:0xD0 +fn_804EFAAC = .text:0x804EFAAC; // type:function size:0xE0 +fn_804EFB8C = .text:0x804EFB8C; // type:function size:0x170 +fn_804EFCFC = .text:0x804EFCFC; // type:function size:0x2C +fn_804EFD28 = .text:0x804EFD28; // type:function size:0x84 +fn_804EFDAC = .text:0x804EFDAC; // type:function size:0x2C +fn_804EFDD8 = .text:0x804EFDD8; // type:function size:0x68 +fn_804EFE40 = .text:0x804EFE40; // type:function size:0x2C +fn_804EFE6C = .text:0x804EFE6C; // type:function size:0x58 +fn_804EFEC4 = .text:0x804EFEC4; // type:function size:0x160 +fn_804F0024 = .text:0x804F0024; // type:function size:0x5C +fn_804F0080 = .text:0x804F0080; // type:function size:0x10 +fn_804F0090 = .text:0x804F0090; // type:function size:0x28 +fn_804F00B8 = .text:0x804F00B8; // type:function size:0x5C +fn_804F0114 = .text:0x804F0114; // type:function size:0x60 +fn_804F0174 = .text:0x804F0174; // type:function size:0x4 +fn_804F0178 = .text:0x804F0178; // type:function size:0x128 +fn_804F02A0 = .text:0x804F02A0; // type:function size:0x198 +fn_804F0438 = .text:0x804F0438; // type:function size:0x5C +fn_804F0494 = .text:0x804F0494; // type:function size:0x54 +fn_804F04E8 = .text:0x804F04E8; // type:function size:0x28 +fn_804F0510 = .text:0x804F0510; // type:function size:0x68 +fn_804F0578 = .text:0x804F0578; // type:function size:0x114 +fn_804F068C = .text:0x804F068C; // type:function size:0x5C +fn_804F06E8 = .text:0x804F06E8; // type:function size:0x5C +fn_804F0744 = .text:0x804F0744; // type:function size:0x54 +fn_804F0798 = .text:0x804F0798; // type:function size:0x5C +fn_804F07F4 = .text:0x804F07F4; // type:function size:0x10 +fn_804F0804 = .text:0x804F0804; // type:function size:0xA8 +fn_804F08AC = .text:0x804F08AC; // type:function size:0xB4 +fn_804F0960 = .text:0x804F0960; // type:function size:0x58 +fn_804F09B8 = .text:0x804F09B8; // type:function size:0x80 +fn_804F0A38 = .text:0x804F0A38; // type:function size:0x80 +fn_804F0AB8 = .text:0x804F0AB8; // type:function size:0x58 +fn_804F0B10 = .text:0x804F0B10; // type:function size:0x54 +fn_804F0B64 = .text:0x804F0B64; // type:function size:0x5C +fn_804F0BC0 = .text:0x804F0BC0; // type:function size:0x6C +fn_804F0C2C = .text:0x804F0C2C; // type:function size:0x28 +fn_804F0C54 = .text:0x804F0C54; // type:function size:0x8 +fn_804F0C5C = .text:0x804F0C5C; // type:function size:0x3C +fn_804F0C98 = .text:0x804F0C98; // type:function size:0xF4 +fn_804F0D8C = .text:0x804F0D8C; // type:function size:0x30 +fn_804F0DBC = .text:0x804F0DBC; // type:function size:0x14 +fn_804F0DD0 = .text:0x804F0DD0; // type:function size:0x40 +fn_804F0E10 = .text:0x804F0E10; // type:function size:0x78 +fn_804F0E88 = .text:0x804F0E88; // type:function size:0x88 +fn_804F0F10 = .text:0x804F0F10; // type:function size:0xC0 +fn_804F0FD0 = .text:0x804F0FD0; // type:function size:0x1E0 +fn_804F11B0 = .text:0x804F11B0; // type:function size:0x4 +fn_804F11B4 = .text:0x804F11B4; // type:function size:0x90 +fn_804F1244 = .text:0x804F1244; // type:function size:0x4 +fn_804F1248 = .text:0x804F1248; // type:function size:0x40 +fn_804F1288 = .text:0x804F1288; // type:function size:0x8C +fn_804F1314 = .text:0x804F1314; // type:function size:0x8 +fn_804F131C = .text:0x804F131C; // type:function size:0x2C +fn_804F1348 = .text:0x804F1348; // type:function size:0x58 +fn_804F13A0 = .text:0x804F13A0; // type:function size:0x28 +fn_804F13C8 = .text:0x804F13C8; // type:function size:0x68 +fn_804F1430 = .text:0x804F1430; // type:function size:0x84 +fn_804F14B4 = .text:0x804F14B4; // type:function size:0x30 +fn_804F14E4 = .text:0x804F14E4; // type:function size:0x30 +fn_804F1514 = .text:0x804F1514; // type:function size:0x40 +fn_804F1554 = .text:0x804F1554; // type:function size:0x30 +fn_804F1584 = .text:0x804F1584; // type:function size:0x30 +fn_804F15B4 = .text:0x804F15B4; // type:function size:0x40 +fn_804F15F4 = .text:0x804F15F4; // type:function size:0x6C +fn_804F1660 = .text:0x804F1660; // type:function size:0x160 +fn_804F17C0 = .text:0x804F17C0; // type:function size:0x28 +fn_804F17E8 = .text:0x804F17E8; // type:function size:0x60 +fn_804F1848 = .text:0x804F1848; // type:function size:0x68 +fn_804F18B0 = .text:0x804F18B0; // type:function size:0x2C +fn_804F18DC = .text:0x804F18DC; // type:function size:0x18C +fn_804F1A68 = .text:0x804F1A68; // type:function size:0x5C +fn_804F1AC4 = .text:0x804F1AC4; // type:function size:0x10 +fn_804F1AD4 = .text:0x804F1AD4; // type:function size:0x54 +fn_804F1B28 = .text:0x804F1B28; // type:function size:0x28 +fn_804F1B50 = .text:0x804F1B50; // type:function size:0x68 +fn_804F1BB8 = .text:0x804F1BB8; // type:function size:0x5C +fn_804F1C14 = .text:0x804F1C14; // type:function size:0x48 +fn_804F1C5C = .text:0x804F1C5C; // type:function size:0x114 +fn_804F1D70 = .text:0x804F1D70; // type:function size:0x5C +fn_804F1DCC = .text:0x804F1DCC; // type:function size:0x5C +fn_804F1E28 = .text:0x804F1E28; // type:function size:0x54 +fn_804F1E7C = .text:0x804F1E7C; // type:function size:0xEC +fn_804F1F68 = .text:0x804F1F68; // type:function size:0x58 +fn_804F1FC0 = .text:0x804F1FC0; // type:function size:0x80 +fn_804F2040 = .text:0x804F2040; // type:function size:0x80 +fn_804F20C0 = .text:0x804F20C0; // type:function size:0x58 +fn_804F2118 = .text:0x804F2118; // type:function size:0x54 +fn_804F216C = .text:0x804F216C; // type:function size:0x5C +fn_804F21C8 = .text:0x804F21C8; // type:function size:0x6C +fn_804F2234 = .text:0x804F2234; // type:function size:0x28 +fn_804F225C = .text:0x804F225C; // type:function size:0x8 +fn_804F2264 = .text:0x804F2264; // type:function size:0x3C +fn_804F22A0 = .text:0x804F22A0; // type:function size:0x80 +fn_804F2320 = .text:0x804F2320; // type:function size:0x30 +fn_804F2350 = .text:0x804F2350; // type:function size:0x30 +fn_804F2380 = .text:0x804F2380; // type:function size:0x40 +fn_804F23C0 = .text:0x804F23C0; // type:function size:0x68 +fn_804F2428 = .text:0x804F2428; // type:function size:0x234 +fn_804F265C = .text:0x804F265C; // type:function size:0x58 +fn_804F26B4 = .text:0x804F26B4; // type:function size:0x58 +fn_804F270C = .text:0x804F270C; // type:function size:0x210 +fn_804F291C = .text:0x804F291C; // type:function size:0x4 +fn_804F2920 = .text:0x804F2920; // type:function size:0x90 +fn_804F29B0 = .text:0x804F29B0; // type:function size:0x4 +fn_804F29B4 = .text:0x804F29B4; // type:function size:0x40 +fn_804F29F4 = .text:0x804F29F4; // type:function size:0x8C +fn_804F2A80 = .text:0x804F2A80; // type:function size:0x8 +fn_804F2A88 = .text:0x804F2A88; // type:function size:0x2C +fn_804F2AB4 = .text:0x804F2AB4; // type:function size:0x58 +fn_804F2B0C = .text:0x804F2B0C; // type:function size:0x28 +fn_804F2B34 = .text:0x804F2B34; // type:function size:0x68 +fn_804F2B9C = .text:0x804F2B9C; // type:function size:0x48 +fn_804F2BE4 = .text:0x804F2BE4; // type:function size:0x4 +fn_804F2BE8 = .text:0x804F2BE8; // type:function size:0x90 +fn_804F2C78 = .text:0x804F2C78; // type:function size:0x40 +fn_804F2CB8 = .text:0x804F2CB8; // type:function size:0x104 +fn_804F2DBC = .text:0x804F2DBC; // type:function size:0xA4 +fn_804F2E60 = .text:0x804F2E60; // type:function size:0x11C +fn_804F2F7C = .text:0x804F2F7C; // type:function size:0x1A4 +fn_804F3120 = .text:0x804F3120; // type:function size:0x3C +fn_804F315C = .text:0x804F315C; // type:function size:0xBC +fn_804F3218 = .text:0x804F3218; // type:function size:0x68 +fn_804F3280 = .text:0x804F3280; // type:function size:0x2C +fn_804F32AC = .text:0x804F32AC; // type:function size:0x6C +fn_804F3318 = .text:0x804F3318; // type:function size:0x134 +fn_804F344C = .text:0x804F344C; // type:function size:0x4 +fn_804F3450 = .text:0x804F3450; // type:function size:0x190 +fn_804F35E0 = .text:0x804F35E0; // type:function size:0x5C +fn_804F363C = .text:0x804F363C; // type:function size:0x10 +fn_804F364C = .text:0x804F364C; // type:function size:0x54 +fn_804F36A0 = .text:0x804F36A0; // type:function size:0x28 +fn_804F36C8 = .text:0x804F36C8; // type:function size:0x68 +fn_804F3730 = .text:0x804F3730; // type:function size:0x5C +fn_804F378C = .text:0x804F378C; // type:function size:0x114 +fn_804F38A0 = .text:0x804F38A0; // type:function size:0x60 +fn_804F3900 = .text:0x804F3900; // type:function size:0x5C +fn_804F395C = .text:0x804F395C; // type:function size:0x54 +fn_804F39B0 = .text:0x804F39B0; // type:function size:0x14 +fn_804F39C4 = .text:0x804F39C4; // type:function size:0x14 +fn_804F39D8 = .text:0x804F39D8; // type:function size:0x14 +fn_804F39EC = .text:0x804F39EC; // type:function size:0x14 +fn_804F3A00 = .text:0x804F3A00; // type:function size:0x14 +fn_804F3A14 = .text:0x804F3A14; // type:function size:0x14 +fn_804F3A28 = .text:0x804F3A28; // type:function size:0x14 +fn_804F3A3C = .text:0x804F3A3C; // type:function size:0x14 +fn_804F3A50 = .text:0x804F3A50; // type:function size:0x14 +fn_804F3A64 = .text:0x804F3A64; // type:function size:0x8 +fn_804F3A6C = .text:0x804F3A6C; // type:function size:0x8 +fn_804F3A74 = .text:0x804F3A74; // type:function size:0x8 +fn_804F3A7C = .text:0x804F3A7C; // type:function size:0x8 +fn_804F3A84 = .text:0x804F3A84; // type:function size:0x8 +fn_804F3A8C = .text:0x804F3A8C; // type:function size:0x8 +fn_804F3A94 = .text:0x804F3A94; // type:function size:0xB0 +fn_804F3B44 = .text:0x804F3B44; // type:function size:0x134 +fn_804F3C78 = .text:0x804F3C78; // type:function size:0x80 +fn_804F3CF8 = .text:0x804F3CF8; // type:function size:0x4 +fn_804F3CFC = .text:0x804F3CFC; // type:function size:0x7C +fn_804F3D78 = .text:0x804F3D78; // type:function size:0x80 +fn_804F3DF8 = .text:0x804F3DF8; // type:function size:0xD0 +fn_804F3EC8 = .text:0x804F3EC8; // type:function size:0xE0 +fn_804F3FA8 = .text:0x804F3FA8; // type:function size:0x98 +fn_804F4040 = .text:0x804F4040; // type:function size:0x134 +fn_804F4174 = .text:0x804F4174; // type:function size:0x4 +fn_804F4178 = .text:0x804F4178; // type:function size:0x14 +fn_804F418C = .text:0x804F418C; // type:function size:0x14 +fn_804F41A0 = .text:0x804F41A0; // type:function size:0x14 +fn_804F41B4 = .text:0x804F41B4; // type:function size:0x14 +fn_804F41C8 = .text:0x804F41C8; // type:function size:0x14 +fn_804F41DC = .text:0x804F41DC; // type:function size:0x14 +fn_804F41F0 = .text:0x804F41F0; // type:function size:0x14 +fn_804F4204 = .text:0x804F4204; // type:function size:0x14 +fn_804F4218 = .text:0x804F4218; // type:function size:0xFC +fn_804F4314 = .text:0x804F4314; // type:function size:0x48 +fn_804F435C = .text:0x804F435C; // type:function size:0x98 +fn_804F43F4 = .text:0x804F43F4; // type:function size:0x164 +fn_804F4558 = .text:0x804F4558; // type:function size:0xE8 +fn_804F4640 = .text:0x804F4640; // type:function size:0x4 +fn_804F4644 = .text:0x804F4644; // type:function size:0xE4 +fn_804F4728 = .text:0x804F4728; // type:function size:0x44 +fn_804F476C = .text:0x804F476C; // type:function size:0x8C +fn_804F47F8 = .text:0x804F47F8; // type:function size:0xD0 +fn_804F48C8 = .text:0x804F48C8; // type:function size:0x114 +fn_804F49DC = .text:0x804F49DC; // type:function size:0x134 +fn_804F4B10 = .text:0x804F4B10; // type:function size:0x4 +fn_804F4B14 = .text:0x804F4B14; // type:function size:0x14 +fn_804F4B28 = .text:0x804F4B28; // type:function size:0x14 +fn_804F4B3C = .text:0x804F4B3C; // type:function size:0x14 +fn_804F4B50 = .text:0x804F4B50; // type:function size:0x14 +fn_804F4B64 = .text:0x804F4B64; // type:function size:0x14 +fn_804F4B78 = .text:0x804F4B78; // type:function size:0x14 +fn_804F4B8C = .text:0x804F4B8C; // type:function size:0x14 +fn_804F4BA0 = .text:0x804F4BA0; // type:function size:0x14 +fn_804F4BB4 = .text:0x804F4BB4; // type:function size:0xE4 +fn_804F4C98 = .text:0x804F4C98; // type:function size:0x80 +fn_804F4D18 = .text:0x804F4D18; // type:function size:0x6C +fn_804F4D84 = .text:0x804F4D84; // type:function size:0x40 +fn_804F4DC4 = .text:0x804F4DC4; // type:function size:0x44 +fn_804F4E08 = .text:0x804F4E08; // type:function size:0x54 +fn_804F4E5C = .text:0x804F4E5C; // type:function size:0x68 +fn_804F4EC4 = .text:0x804F4EC4; // type:function size:0x68 +fn_804F4F2C = .text:0x804F4F2C; // type:function size:0xB0 +fn_804F4FDC = .text:0x804F4FDC; // type:function size:0x84 +fn_804F5060 = .text:0x804F5060; // type:function size:0x2C +fn_804F508C = .text:0x804F508C; // type:function size:0x30 +fn_804F50BC = .text:0x804F50BC; // type:function size:0x84 +fn_804F5140 = .text:0x804F5140; // type:function size:0x9C +fn_804F51DC = .text:0x804F51DC; // type:function size:0x8C +fn_804F5268 = .text:0x804F5268; // type:function size:0x100 +fn_804F5368 = .text:0x804F5368; // type:function size:0x4 +fn_804F536C = .text:0x804F536C; // type:function size:0xAC +fn_804F5418 = .text:0x804F5418; // type:function size:0x3C +fn_804F5454 = .text:0x804F5454; // type:function size:0x11C +fn_804F5570 = .text:0x804F5570; // type:function size:0x4C +fn_804F55BC = .text:0x804F55BC; // type:function size:0x78 +fn_804F5634 = .text:0x804F5634; // type:function size:0x40 +fn_804F5674 = .text:0x804F5674; // type:function size:0x104 +fn_804F5778 = .text:0x804F5778; // type:function size:0x138 +fn_804F58B0 = .text:0x804F58B0; // type:function size:0x8 +fn_804F58B8 = .text:0x804F58B8; // type:function size:0xB8 +fn_804F5970 = .text:0x804F5970; // type:function size:0x10 +fn_804F5980 = .text:0x804F5980; // type:function size:0x6C +fn_804F59EC = .text:0x804F59EC; // type:function size:0x13C +fn_804F5B28 = .text:0x804F5B28; // type:function size:0x100 +fn_804F5C28 = .text:0x804F5C28; // type:function size:0x128 +fn_804F5D50 = .text:0x804F5D50; // type:function size:0x1E8 +fn_804F5F38 = .text:0x804F5F38; // type:function size:0xBC +fn_804F5FF4 = .text:0x804F5FF4; // type:function size:0x44 +fn_804F6038 = .text:0x804F6038; // type:function size:0xCC +fn_804F6104 = .text:0x804F6104; // type:function size:0x10C +fn_804F6210 = .text:0x804F6210; // type:function size:0x6C +fn_804F627C = .text:0x804F627C; // type:function size:0x134 +fn_804F63B0 = .text:0x804F63B0; // type:function size:0x4 +fn_804F63B4 = .text:0x804F63B4; // type:function size:0x14 +fn_804F63C8 = .text:0x804F63C8; // type:function size:0x14 +fn_804F63DC = .text:0x804F63DC; // type:function size:0x14 +fn_804F63F0 = .text:0x804F63F0; // type:function size:0x14 +fn_804F6404 = .text:0x804F6404; // type:function size:0x14 +fn_804F6418 = .text:0x804F6418; // type:function size:0x14 +fn_804F642C = .text:0x804F642C; // type:function size:0x14 +fn_804F6440 = .text:0x804F6440; // type:function size:0x14 +fn_804F6454 = .text:0x804F6454; // type:function size:0x14 +fn_804F6468 = .text:0x804F6468; // type:function size:0x8 +fn_804F6470 = .text:0x804F6470; // type:function size:0x8 +fn_804F6478 = .text:0x804F6478; // type:function size:0x8 +fn_804F6480 = .text:0x804F6480; // type:function size:0x8 +fn_804F6488 = .text:0x804F6488; // type:function size:0x8 +fn_804F6490 = .text:0x804F6490; // type:function size:0x8 +fn_804F6498 = .text:0x804F6498; // type:function size:0x8 +fn_804F64A0 = .text:0x804F64A0; // type:function size:0x8 +fn_804F64A8 = .text:0x804F64A8; // type:function size:0xEC +fn_804F6594 = .text:0x804F6594; // type:function size:0xA4 +fn_804F6638 = .text:0x804F6638; // type:function size:0x4 +fn_804F663C = .text:0x804F663C; // type:function size:0x58 +fn_804F6694 = .text:0x804F6694; // type:function size:0x70 +fn_804F6704 = .text:0x804F6704; // type:function size:0x2DC +fn_804F69E0 = .text:0x804F69E0; // type:function size:0xD8 +fn_804F6AB8 = .text:0x804F6AB8; // type:function size:0x50 +fn_804F6B08 = .text:0x804F6B08; // type:function size:0x54 +fn_804F6B5C = .text:0x804F6B5C; // type:function size:0x1C +fn_804F6B78 = .text:0x804F6B78; // type:function size:0x78 +fn_804F6BF0 = .text:0x804F6BF0; // type:function size:0x74 +fn_804F6C64 = .text:0x804F6C64; // type:function size:0x11C +fn_804F6D80 = .text:0x804F6D80; // type:function size:0x114 +fn_804F6E94 = .text:0x804F6E94; // type:function size:0xC +fn_804F6EA0 = .text:0x804F6EA0; // type:function size:0x4 +fn_804F6EA4 = .text:0x804F6EA4; // type:function size:0x98 +fn_804F6F3C = .text:0x804F6F3C; // type:function size:0x80 +fn_804F6FBC = .text:0x804F6FBC; // type:function size:0x11C +fn_804F70D8 = .text:0x804F70D8; // type:function size:0x1F4 +fn_804F72CC = .text:0x804F72CC; // type:function size:0xD0 +fn_804F739C = .text:0x804F739C; // type:function size:0x134 +fn_804F74D0 = .text:0x804F74D0; // type:function size:0x4 +fn_804F74D4 = .text:0x804F74D4; // type:function size:0x8 +fn_804F74DC = .text:0x804F74DC; // type:function size:0x8 +fn_804F74E4 = .text:0x804F74E4; // type:function size:0x8 +fn_804F74EC = .text:0x804F74EC; // type:function size:0x8 +fn_804F74F4 = .text:0x804F74F4; // type:function size:0x8 +fn_804F74FC = .text:0x804F74FC; // type:function size:0x8 +fn_804F7504 = .text:0x804F7504; // type:function size:0x8 +fn_804F750C = .text:0x804F750C; // type:function size:0x14 +fn_804F7520 = .text:0x804F7520; // type:function size:0x14 +fn_804F7534 = .text:0x804F7534; // type:function size:0x14 +fn_804F7548 = .text:0x804F7548; // type:function size:0x14 +fn_804F755C = .text:0x804F755C; // type:function size:0x14 +fn_804F7570 = .text:0x804F7570; // type:function size:0x14 +fn_804F7584 = .text:0x804F7584; // type:function size:0x14 +fn_804F7598 = .text:0x804F7598; // type:function size:0x14 +fn_804F75AC = .text:0x804F75AC; // type:function size:0x14 +fn_804F75C0 = .text:0x804F75C0; // type:function size:0x14 +fn_804F75D4 = .text:0x804F75D4; // type:function size:0x8 +fn_804F75DC = .text:0x804F75DC; // type:function size:0x8 +fn_804F75E4 = .text:0x804F75E4; // type:function size:0x8 +fn_804F75EC = .text:0x804F75EC; // type:function size:0x8 +fn_804F75F4 = .text:0x804F75F4; // type:function size:0x8 +fn_804F75FC = .text:0x804F75FC; // type:function size:0x150 +fn_804F774C = .text:0x804F774C; // type:function size:0xB0 +fn_804F77FC = .text:0x804F77FC; // type:function size:0x68 +fn_804F7864 = .text:0x804F7864; // type:function size:0x510 +fn_804F7D74 = .text:0x804F7D74; // type:function size:0xB8 +fn_804F7E2C = .text:0x804F7E2C; // type:function size:0x4 +fn_804F7E30 = .text:0x804F7E30; // type:function size:0x4 +fn_804F7E34 = .text:0x804F7E34; // type:function size:0xC4 +fn_804F7EF8 = .text:0x804F7EF8; // type:function size:0xB0 +fn_804F7FA8 = .text:0x804F7FA8; // type:function size:0xD0 +fn_804F8078 = .text:0x804F8078; // type:function size:0x218 +fn_804F8290 = .text:0x804F8290; // type:function size:0x134 +fn_804F83C4 = .text:0x804F83C4; // type:function size:0x4 +fn_804F83C8 = .text:0x804F83C8; // type:function size:0x14 +fn_804F83DC = .text:0x804F83DC; // type:function size:0x14 +fn_804F83F0 = .text:0x804F83F0; // type:function size:0x14 +fn_804F8404 = .text:0x804F8404; // type:function size:0x14 +fn_804F8418 = .text:0x804F8418; // type:function size:0x14 +fn_804F842C = .text:0x804F842C; // type:function size:0x14 +fn_804F8440 = .text:0x804F8440; // type:function size:0x14 +fn_804F8454 = .text:0x804F8454; // type:function size:0x14 +fn_804F8468 = .text:0x804F8468; // type:function size:0x14 +fn_804F847C = .text:0x804F847C; // type:function size:0x8 +fn_804F8484 = .text:0x804F8484; // type:function size:0x8 +fn_804F848C = .text:0x804F848C; // type:function size:0x8 +fn_804F8494 = .text:0x804F8494; // type:function size:0x8 +fn_804F849C = .text:0x804F849C; // type:function size:0x8 +fn_804F84A4 = .text:0x804F84A4; // type:function size:0x8 +fn_804F84AC = .text:0x804F84AC; // type:function size:0x4 +fn_804F84B0 = .text:0x804F84B0; // type:function size:0xB0 +fn_804F8560 = .text:0x804F8560; // type:function size:0x98 +fn_804F85F8 = .text:0x804F85F8; // type:function size:0x70 +fn_804F8668 = .text:0x804F8668; // type:function size:0x80 +fn_804F86E8 = .text:0x804F86E8; // type:function size:0x4 +fn_804F86EC = .text:0x804F86EC; // type:function size:0x7C +fn_804F8768 = .text:0x804F8768; // type:function size:0x80 +fn_804F87E8 = .text:0x804F87E8; // type:function size:0x11C +fn_804F8904 = .text:0x804F8904; // type:function size:0xE0 +fn_804F89E4 = .text:0x804F89E4; // type:function size:0x134 +fn_804F8B18 = .text:0x804F8B18; // type:function size:0x4 +fn_804F8B1C = .text:0x804F8B1C; // type:function size:0x14 +fn_804F8B30 = .text:0x804F8B30; // type:function size:0x14 +fn_804F8B44 = .text:0x804F8B44; // type:function size:0x14 +fn_804F8B58 = .text:0x804F8B58; // type:function size:0x14 +fn_804F8B6C = .text:0x804F8B6C; // type:function size:0x14 +fn_804F8B80 = .text:0x804F8B80; // type:function size:0x14 +fn_804F8B94 = .text:0x804F8B94; // type:function size:0x14 +fn_804F8BA8 = .text:0x804F8BA8; // type:function size:0x14 +fn_804F8BBC = .text:0x804F8BBC; // type:function size:0xD0 +fn_804F8C8C = .text:0x804F8C8C; // type:function size:0x6C +fn_804F8CF8 = .text:0x804F8CF8; // type:function size:0x40 +fn_804F8D38 = .text:0x804F8D38; // type:function size:0x44 +fn_804F8D7C = .text:0x804F8D7C; // type:function size:0x54 +fn_804F8DD0 = .text:0x804F8DD0; // type:function size:0x68 +fn_804F8E38 = .text:0x804F8E38; // type:function size:0xDC +fn_804F8F14 = .text:0x804F8F14; // type:function size:0x4 +fn_804F8F18 = .text:0x804F8F18; // type:function size:0x88 +fn_804F8FA0 = .text:0x804F8FA0; // type:function size:0x2C +fn_804F8FCC = .text:0x804F8FCC; // type:function size:0x8 +fn_804F8FD4 = .text:0x804F8FD4; // type:function size:0x30 +fn_804F9004 = .text:0x804F9004; // type:function size:0x8C +fn_804F9090 = .text:0x804F9090; // type:function size:0x3C +fn_804F90CC = .text:0x804F90CC; // type:function size:0x11C +fn_804F91E8 = .text:0x804F91E8; // type:function size:0x4C +fn_804F9234 = .text:0x804F9234; // type:function size:0x78 +fn_804F92AC = .text:0x804F92AC; // type:function size:0x8C +fn_804F9338 = .text:0x804F9338; // type:function size:0xB8 +fn_804F93F0 = .text:0x804F93F0; // type:function size:0xBC +fn_804F94AC = .text:0x804F94AC; // type:function size:0x124 +fn_804F95D0 = .text:0x804F95D0; // type:function size:0xC0 +fn_804F9690 = .text:0x804F9690; // type:function size:0x1E8 +fn_804F9878 = .text:0x804F9878; // type:function size:0xBC +fn_804F9934 = .text:0x804F9934; // type:function size:0x44 +fn_804F9978 = .text:0x804F9978; // type:function size:0x10C +fn_804F9A84 = .text:0x804F9A84; // type:function size:0x144 +fn_804F9BC8 = .text:0x804F9BC8; // type:function size:0x4 +fn_804F9BCC = .text:0x804F9BCC; // type:function size:0x14 +fn_804F9BE0 = .text:0x804F9BE0; // type:function size:0x14 +fn_804F9BF4 = .text:0x804F9BF4; // type:function size:0x14 +fn_804F9C08 = .text:0x804F9C08; // type:function size:0x14 +fn_804F9C1C = .text:0x804F9C1C; // type:function size:0x14 +fn_804F9C30 = .text:0x804F9C30; // type:function size:0x14 +fn_804F9C44 = .text:0x804F9C44; // type:function size:0x14 +fn_804F9C58 = .text:0x804F9C58; // type:function size:0x14 +fn_804F9C6C = .text:0x804F9C6C; // type:function size:0x14 +fn_804F9C80 = .text:0x804F9C80; // type:function size:0x14 +fn_804F9C94 = .text:0x804F9C94; // type:function size:0x150 +fn_804F9DE4 = .text:0x804F9DE4; // type:function size:0x6C +fn_804F9E50 = .text:0x804F9E50; // type:function size:0x40 +fn_804F9E90 = .text:0x804F9E90; // type:function size:0x44 +fn_804F9ED4 = .text:0x804F9ED4; // type:function size:0x54 +fn_804F9F28 = .text:0x804F9F28; // type:function size:0x80 +fn_804F9FA8 = .text:0x804F9FA8; // type:function size:0x68 +fn_804FA010 = .text:0x804FA010; // type:function size:0x68 +fn_804FA078 = .text:0x804FA078; // type:function size:0xF8 +fn_804FA170 = .text:0x804FA170; // type:function size:0x10 +fn_804FA180 = .text:0x804FA180; // type:function size:0x220 +fn_804FA3A0 = .text:0x804FA3A0; // type:function size:0x40 +fn_804FA3E0 = .text:0x804FA3E0; // type:function size:0x104 +fn_804FA4E4 = .text:0x804FA4E4; // type:function size:0xA0 +fn_804FA584 = .text:0x804FA584; // type:function size:0x11C +fn_804FA6A0 = .text:0x804FA6A0; // type:function size:0x4C +fn_804FA6EC = .text:0x804FA6EC; // type:function size:0x78 +fn_804FA764 = .text:0x804FA764; // type:function size:0x2C +fn_804FA790 = .text:0x804FA790; // type:function size:0x90 +fn_804FA820 = .text:0x804FA820; // type:function size:0x110 +fn_804FA930 = .text:0x804FA930; // type:function size:0x6C +fn_804FA99C = .text:0x804FA99C; // type:function size:0xCC +fn_804FAA68 = .text:0x804FAA68; // type:function size:0xA4 +fn_804FAB0C = .text:0x804FAB0C; // type:function size:0x154 +fn_804FAC60 = .text:0x804FAC60; // type:function size:0x50 +fn_804FACB0 = .text:0x804FACB0; // type:function size:0xA4 +fn_804FAD54 = .text:0x804FAD54; // type:function size:0x4 +fn_804FAD58 = .text:0x804FAD58; // type:function size:0x88 +fn_804FADE0 = .text:0x804FADE0; // type:function size:0x8C +fn_804FAE6C = .text:0x804FAE6C; // type:function size:0xD0 +fn_804FAF3C = .text:0x804FAF3C; // type:function size:0x114 +fn_804FB050 = .text:0x804FB050; // type:function size:0x134 +fn_804FB184 = .text:0x804FB184; // type:function size:0x4 +fn_804FB188 = .text:0x804FB188; // type:function size:0x14 +fn_804FB19C = .text:0x804FB19C; // type:function size:0x14 +fn_804FB1B0 = .text:0x804FB1B0; // type:function size:0x14 +fn_804FB1C4 = .text:0x804FB1C4; // type:function size:0x14 +fn_804FB1D8 = .text:0x804FB1D8; // type:function size:0x14 +fn_804FB1EC = .text:0x804FB1EC; // type:function size:0x14 +fn_804FB200 = .text:0x804FB200; // type:function size:0x14 +fn_804FB214 = .text:0x804FB214; // type:function size:0x14 +fn_804FB228 = .text:0x804FB228; // type:function size:0x44 +fn_804FB26C = .text:0x804FB26C; // type:function size:0xC4 +fn_804FB330 = .text:0x804FB330; // type:function size:0x140 +fn_804FB470 = .text:0x804FB470; // type:function size:0x5C +fn_804FB4CC = .text:0x804FB4CC; // type:function size:0x58 +fn_804FB524 = .text:0x804FB524; // type:function size:0x80 +fn_804FB5A4 = .text:0x804FB5A4; // type:function size:0x80 +fn_804FB624 = .text:0x804FB624; // type:function size:0x58 +fn_804FB67C = .text:0x804FB67C; // type:function size:0x54 +fn_804FB6D0 = .text:0x804FB6D0; // type:function size:0x5C +fn_804FB72C = .text:0x804FB72C; // type:function size:0x6C +fn_804FB798 = .text:0x804FB798; // type:function size:0x28 +fn_804FB7C0 = .text:0x804FB7C0; // type:function size:0x8 +fn_804FB7C8 = .text:0x804FB7C8; // type:function size:0x3C +fn_804FB804 = .text:0x804FB804; // type:function size:0x4 +fn_804FB808 = .text:0x804FB808; // type:function size:0x88 +fn_804FB890 = .text:0x804FB890; // type:function size:0x2C +fn_804FB8BC = .text:0x804FB8BC; // type:function size:0x10 +fn_804FB8CC = .text:0x804FB8CC; // type:function size:0x30 +fn_804FB8FC = .text:0x804FB8FC; // type:function size:0x30 +fn_804FB92C = .text:0x804FB92C; // type:function size:0x40 +fn_804FB96C = .text:0x804FB96C; // type:function size:0x58 +fn_804FB9C4 = .text:0x804FB9C4; // type:function size:0x24C +fn_804FBC10 = .text:0x804FBC10; // type:function size:0x8 +fn_804FBC18 = .text:0x804FBC18; // type:function size:0x60 +fn_804FBC78 = .text:0x804FBC78; // type:function size:0x84 +fn_804FBCFC = .text:0x804FBCFC; // type:function size:0xFC +fn_804FBDF8 = .text:0x804FBDF8; // type:function size:0x90 +fn_804FBE88 = .text:0x804FBE88; // type:function size:0xA0 +fn_804FBF28 = .text:0x804FBF28; // type:function size:0xEC +fn_804FC014 = .text:0x804FC014; // type:function size:0x60 +fn_804FC074 = .text:0x804FC074; // type:function size:0x50 +fn_804FC0C4 = .text:0x804FC0C4; // type:function size:0xD0 +fn_804FC194 = .text:0x804FC194; // type:function size:0x78 +fn_804FC20C = .text:0x804FC20C; // type:function size:0x114 +fn_804FC320 = .text:0x804FC320; // type:function size:0x5C +fn_804FC37C = .text:0x804FC37C; // type:function size:0x5C +fn_804FC3D8 = .text:0x804FC3D8; // type:function size:0x54 +fn_804FC42C = .text:0x804FC42C; // type:function size:0x5C +fn_804FC488 = .text:0x804FC488; // type:function size:0x5C +fn_804FC4E4 = .text:0x804FC4E4; // type:function size:0x94 +fn_804FC578 = .text:0x804FC578; // type:function size:0x68 +fn_804FC5E0 = .text:0x804FC5E0; // type:function size:0xA4 +fn_804FC684 = .text:0x804FC684; // type:function size:0x4 +fn_804FC688 = .text:0x804FC688; // type:function size:0x7C +fn_804FC704 = .text:0x804FC704; // type:function size:0x40 +fn_804FC744 = .text:0x804FC744; // type:function size:0x104 +fn_804FC848 = .text:0x804FC848; // type:function size:0x9C +fn_804FC8E4 = .text:0x804FC8E4; // type:function size:0x1C +fn_804FC900 = .text:0x804FC900; // type:function size:0xD0 +fn_804FC9D0 = .text:0x804FC9D0; // type:function size:0x184 +fn_804FCB54 = .text:0x804FCB54; // type:function size:0x3C +fn_804FCB90 = .text:0x804FCB90; // type:function size:0x134 +fn_804FCCC4 = .text:0x804FCCC4; // type:function size:0x4 +fn_804FCCC8 = .text:0x804FCCC8; // type:function size:0x14 +fn_804FCCDC = .text:0x804FCCDC; // type:function size:0x14 +fn_804FCCF0 = .text:0x804FCCF0; // type:function size:0x14 +fn_804FCD04 = .text:0x804FCD04; // type:function size:0x14 +fn_804FCD18 = .text:0x804FCD18; // type:function size:0x14 +fn_804FCD2C = .text:0x804FCD2C; // type:function size:0x14 +fn_804FCD40 = .text:0x804FCD40; // type:function size:0x14 +fn_804FCD54 = .text:0x804FCD54; // type:function size:0x14 +fn_804FCD68 = .text:0x804FCD68; // type:function size:0x14 +fn_804FCD7C = .text:0x804FCD7C; // type:function size:0x128 +fn_804FCEA4 = .text:0x804FCEA4; // type:function size:0x6C +fn_804FCF10 = .text:0x804FCF10; // type:function size:0x40 +fn_804FCF50 = .text:0x804FCF50; // type:function size:0x44 +fn_804FCF94 = .text:0x804FCF94; // type:function size:0x54 +fn_804FCFE8 = .text:0x804FCFE8; // type:function size:0x68 +fn_804FD050 = .text:0x804FD050; // type:function size:0x8 +fn_804FD058 = .text:0x804FD058; // type:function size:0x200 +fn_804FD258 = .text:0x804FD258; // type:function size:0x2C +fn_804FD284 = .text:0x804FD284; // type:function size:0x30 +fn_804FD2B4 = .text:0x804FD2B4; // type:function size:0x1E8 +fn_804FD49C = .text:0x804FD49C; // type:function size:0x8 +fn_804FD4A4 = .text:0x804FD4A4; // type:function size:0x4 +fn_804FD4A8 = .text:0x804FD4A8; // type:function size:0x300 +fn_804FD7A8 = .text:0x804FD7A8; // type:function size:0x3C +fn_804FD7E4 = .text:0x804FD7E4; // type:function size:0x11C +fn_804FD900 = .text:0x804FD900; // type:function size:0x4C +fn_804FD94C = .text:0x804FD94C; // type:function size:0x78 +fn_804FD9C4 = .text:0x804FD9C4; // type:function size:0x40 +fn_804FDA04 = .text:0x804FDA04; // type:function size:0x44 +fn_804FDA48 = .text:0x804FDA48; // type:function size:0x54 +fn_804FDA9C = .text:0x804FDA9C; // type:function size:0x3C +fn_804FDAD8 = .text:0x804FDAD8; // type:function size:0x11C +fn_804FDBF4 = .text:0x804FDBF4; // type:function size:0x4C +fn_804FDC40 = .text:0x804FDC40; // type:function size:0x78 +fn_804FDCB8 = .text:0x804FDCB8; // type:function size:0x6C +fn_804FDD24 = .text:0x804FDD24; // type:function size:0x2C +fn_804FDD50 = .text:0x804FDD50; // type:function size:0x30 +fn_804FDD80 = .text:0x804FDD80; // type:function size:0x68 +fn_804FDDE8 = .text:0x804FDDE8; // type:function size:0xD4 +fn_804FDEBC = .text:0x804FDEBC; // type:function size:0xB8 +fn_804FDF74 = .text:0x804FDF74; // type:function size:0xD0 +fn_804FE044 = .text:0x804FE044; // type:function size:0x260 +fn_804FE2A4 = .text:0x804FE2A4; // type:function size:0x1E8 +fn_804FE48C = .text:0x804FE48C; // type:function size:0xBC +fn_804FE548 = .text:0x804FE548; // type:function size:0x44 +fn_804FE58C = .text:0x804FE58C; // type:function size:0xBC +fn_804FE648 = .text:0x804FE648; // type:function size:0x10C +fn_804FE754 = .text:0x804FE754; // type:function size:0x10C +fn_804FE860 = .text:0x804FE860; // type:function size:0x134 +fn_804FE994 = .text:0x804FE994; // type:function size:0x4 +fn_804FE998 = .text:0x804FE998; // type:function size:0x14 +fn_804FE9AC = .text:0x804FE9AC; // type:function size:0x14 +fn_804FE9C0 = .text:0x804FE9C0; // type:function size:0x14 +fn_804FE9D4 = .text:0x804FE9D4; // type:function size:0x14 +fn_804FE9E8 = .text:0x804FE9E8; // type:function size:0x14 +fn_804FE9FC = .text:0x804FE9FC; // type:function size:0x14 +fn_804FEA10 = .text:0x804FEA10; // type:function size:0x14 +fn_804FEA24 = .text:0x804FEA24; // type:function size:0x14 +fn_804FEA38 = .text:0x804FEA38; // type:function size:0x14 +fn_804FEA4C = .text:0x804FEA4C; // type:function size:0x8 +fn_804FEA54 = .text:0x804FEA54; // type:function size:0x8 +fn_804FEA5C = .text:0x804FEA5C; // type:function size:0x8 +fn_804FEA64 = .text:0x804FEA64; // type:function size:0x8 +fn_804FEA6C = .text:0x804FEA6C; // type:function size:0x8 +fn_804FEA74 = .text:0x804FEA74; // type:function size:0x8 +fn_804FEA7C = .text:0x804FEA7C; // type:function size:0x24 +fn_804FEAA0 = .text:0x804FEAA0; // type:function size:0x30 +fn_804FEAD0 = .text:0x804FEAD0; // type:function size:0x160 +fn_804FEC30 = .text:0x804FEC30; // type:function size:0x28 +fn_804FEC58 = .text:0x804FEC58; // type:function size:0x60 +fn_804FECB8 = .text:0x804FECB8; // type:function size:0x30 +fn_804FECE8 = .text:0x804FECE8; // type:function size:0x98 +fn_804FED80 = .text:0x804FED80; // type:function size:0x70 +fn_804FEDF0 = .text:0x804FEDF0; // type:function size:0x1BC +fn_804FEFAC = .text:0x804FEFAC; // type:function size:0x40 +fn_804FEFEC = .text:0x804FEFEC; // type:function size:0x50 +fn_804FF03C = .text:0x804FF03C; // type:function size:0xCC +fn_804FF108 = .text:0x804FF108; // type:function size:0x58 +fn_804FF160 = .text:0x804FF160; // type:function size:0x58 +fn_804FF1B8 = .text:0x804FF1B8; // type:function size:0x80 +fn_804FF238 = .text:0x804FF238; // type:function size:0x80 +fn_804FF2B8 = .text:0x804FF2B8; // type:function size:0x58 +fn_804FF310 = .text:0x804FF310; // type:function size:0x54 +fn_804FF364 = .text:0x804FF364; // type:function size:0x50 +fn_804FF3B4 = .text:0x804FF3B4; // type:function size:0x30 +fn_804FF3E4 = .text:0x804FF3E4; // type:function size:0x30 +fn_804FF414 = .text:0x804FF414; // type:function size:0x40 +fn_804FF454 = .text:0x804FF454; // type:function size:0x10 +fn_804FF464 = .text:0x804FF464; // type:function size:0xD0 +fn_804FF534 = .text:0x804FF534; // type:function size:0x54 +fn_804FF588 = .text:0x804FF588; // type:function size:0x8C +fn_804FF614 = .text:0x804FF614; // type:function size:0x5C +fn_804FF670 = .text:0x804FF670; // type:function size:0x8 +fn_804FF678 = .text:0x804FF678; // type:function size:0x268 +fn_804FF8E0 = .text:0x804FF8E0; // type:function size:0x4C +fn_804FF92C = .text:0x804FF92C; // type:function size:0x2C +fn_804FF958 = .text:0x804FF958; // type:function size:0x1D0 +fn_804FFB28 = .text:0x804FFB28; // type:function size:0x148 +fn_804FFC70 = .text:0x804FFC70; // type:function size:0x30 +fn_804FFCA0 = .text:0x804FFCA0; // type:function size:0x3C +fn_804FFCDC = .text:0x804FFCDC; // type:function size:0x7C +fn_804FFD58 = .text:0x804FFD58; // type:function size:0x38 +fn_804FFD90 = .text:0x804FFD90; // type:function size:0x60 +fn_804FFDF0 = .text:0x804FFDF0; // type:function size:0x90 +fn_804FFE80 = .text:0x804FFE80; // type:function size:0x9C +fn_804FFF1C = .text:0x804FFF1C; // type:function size:0xE8 +fn_80500004 = .text:0x80500004; // type:function size:0x3C +fn_80500040 = .text:0x80500040; // type:function size:0x124 +fn_80500164 = .text:0x80500164; // type:function size:0x5C +fn_805001C0 = .text:0x805001C0; // type:function size:0x80 +fn_80500240 = .text:0x80500240; // type:function size:0xC +fn_8050024C = .text:0x8050024C; // type:function size:0x158 +fn_805003A4 = .text:0x805003A4; // type:function size:0x4C +fn_805003F0 = .text:0x805003F0; // type:function size:0x24C +fn_8050063C = .text:0x8050063C; // type:function size:0x40 +fn_8050067C = .text:0x8050067C; // type:function size:0x40 +fn_805006BC = .text:0x805006BC; // type:function size:0x84 +fn_80500740 = .text:0x80500740; // type:function size:0xAC +fn_805007EC = .text:0x805007EC; // type:function size:0x188 +fn_80500974 = .text:0x80500974; // type:function size:0xC +fn_80500980 = .text:0x80500980; // type:function size:0x210 +fn_80500B90 = .text:0x80500B90; // type:function size:0x220 +fn_80500DB0 = .text:0x80500DB0; // type:function size:0x214 +fn_80500FC4 = .text:0x80500FC4; // type:function size:0x50 +fn_80501014 = .text:0x80501014; // type:function size:0x78 +fn_8050108C = .text:0x8050108C; // type:function size:0xA4 +fn_80501130 = .text:0x80501130; // type:function size:0x4 +fn_80501134 = .text:0x80501134; // type:function size:0x4 +fn_80501138 = .text:0x80501138; // type:function size:0xC +fn_80501144 = .text:0x80501144; // type:function size:0xAC +fn_805011F0 = .text:0x805011F0; // type:function size:0x74 +fn_80501264 = .text:0x80501264; // type:function size:0x5C +fn_805012C0 = .text:0x805012C0; // type:function size:0x4 +fn_805012C4 = .text:0x805012C4; // type:function size:0x90 +fn_80501354 = .text:0x80501354; // type:function size:0x4 +fn_80501358 = .text:0x80501358; // type:function size:0x4 +fn_8050135C = .text:0x8050135C; // type:function size:0x5C +fn_805013B8 = .text:0x805013B8; // type:function size:0x70 +fn_80501428 = .text:0x80501428; // type:function size:0x5C +fn_80501484 = .text:0x80501484; // type:function size:0x30 +Handle__10FileMergerFP9DataArrayb = .text:0x805014B4; // type:function size:0x2E8 +fn_8050179C = .text:0x8050179C; // type:function size:0x8C +fn_80501828 = .text:0x80501828; // type:function size:0x7C +fn_805018A4 = .text:0x805018A4; // type:function size:0x2DC +fn_80501B80 = .text:0x80501B80; // type:function size:0x1E8 +fn_80501D68 = .text:0x80501D68; // type:function size:0x44 +fn_80501DAC = .text:0x80501DAC; // type:function size:0x30 +fn_80501DDC = .text:0x80501DDC; // type:function size:0x198 +fn_80501F74 = .text:0x80501F74; // type:function size:0x170 +fn_805020E4 = .text:0x805020E4; // type:function size:0x2C +fn_80502110 = .text:0x80502110; // type:function size:0x84 +fn_80502194 = .text:0x80502194; // type:function size:0x2C +fn_805021C0 = .text:0x805021C0; // type:function size:0x68 +fn_80502228 = .text:0x80502228; // type:function size:0x58 +fn_80502280 = .text:0x80502280; // type:function size:0x160 +fn_805023E0 = .text:0x805023E0; // type:function size:0x28 +fn_80502408 = .text:0x80502408; // type:function size:0x5C +fn_80502464 = .text:0x80502464; // type:function size:0x60 +fn_805024C4 = .text:0x805024C4; // type:function size:0x4 +fn_805024C8 = .text:0x805024C8; // type:function size:0x128 +fn_805025F0 = .text:0x805025F0; // type:function size:0x8C +fn_8050267C = .text:0x8050267C; // type:function size:0x34 +fn_805026B0 = .text:0x805026B0; // type:function size:0x68 +fn_80502718 = .text:0x80502718; // type:function size:0xC +fn_80502724 = .text:0x80502724; // type:function size:0x198 +fn_805028BC = .text:0x805028BC; // type:function size:0x54 +fn_80502910 = .text:0x80502910; // type:function size:0x34 +fn_80502944 = .text:0x80502944; // type:function size:0x8 +fn_8050294C = .text:0x8050294C; // type:function size:0x8 +fn_80502954 = .text:0x80502954; // type:function size:0x8 +fn_8050295C = .text:0x8050295C; // type:function size:0x8 +fn_80502964 = .text:0x80502964; // type:function size:0x8 +fn_8050296C = .text:0x8050296C; // type:function size:0x8 +fn_80502974 = .text:0x80502974; // type:function size:0x8 +fn_8050297C = .text:0x8050297C; // type:function size:0x8 +fn_80502984 = .text:0x80502984; // type:function size:0x1C0 +fn_80502B44 = .text:0x80502B44; // type:function size:0x100 +fn_80502C44 = .text:0x80502C44; // type:function size:0x58 +fn_80502C9C = .text:0x80502C9C; // type:function size:0x4C +fn_80502CE8 = .text:0x80502CE8; // type:function size:0x8 +fn_80502CF0 = .text:0x80502CF0; // type:function size:0x4 +fn_80502CF4 = .text:0x80502CF4; // type:function size:0x40 +fn_80502D34 = .text:0x80502D34; // type:function size:0x74 +fn_80502DA8 = .text:0x80502DA8; // type:function size:0x9C +fn_80502E44 = .text:0x80502E44; // type:function size:0x34 +fn_80502E78 = .text:0x80502E78; // type:function size:0x64 +fn_80502EDC = .text:0x80502EDC; // type:function size:0xF0 +fn_80502FCC = .text:0x80502FCC; // type:function size:0x4 +fn_80502FD0 = .text:0x80502FD0; // type:function size:0x4 +fn_80502FD4 = .text:0x80502FD4; // type:function size:0x34 +fn_80503008 = .text:0x80503008; // type:function size:0xC +fn_80503014 = .text:0x80503014; // type:function size:0xFC +fn_80503110 = .text:0x80503110; // type:function size:0xFC +fn_8050320C = .text:0x8050320C; // type:function size:0x60 +fn_8050326C = .text:0x8050326C; // type:function size:0x4 +fn_80503270 = .text:0x80503270; // type:function size:0x54 +fn_805032C4 = .text:0x805032C4; // type:function size:0x64 +fn_80503328 = .text:0x80503328; // type:function size:0x50 +fn_80503378 = .text:0x80503378; // type:function size:0xF8 +fn_80503470 = .text:0x80503470; // type:function size:0x50 +fn_805034C0 = .text:0x805034C0; // type:function size:0x6C +fn_8050352C = .text:0x8050352C; // type:function size:0x2C +fn_80503558 = .text:0x80503558; // type:function size:0xB0 +fn_80503608 = .text:0x80503608; // type:function size:0x180 +fn_80503788 = .text:0x80503788; // type:function size:0x184 +fn_8050390C = .text:0x8050390C; // type:function size:0x34 +fn_80503940 = .text:0x80503940; // type:function size:0x34 +fn_80503974 = .text:0x80503974; // type:function size:0x4C +fn_805039C0 = .text:0x805039C0; // type:function size:0x78 +fn_80503A38 = .text:0x80503A38; // type:function size:0x58 +fn_80503A90 = .text:0x80503A90; // type:function size:0x58 +fn_80503AE8 = .text:0x80503AE8; // type:function size:0x60 +fn_80503B48 = .text:0x80503B48; // type:function size:0x58 +fn_80503BA0 = .text:0x80503BA0; // type:function size:0x30 +fn_80503BD0 = .text:0x80503BD0; // type:function size:0x30 +fn_80503C00 = .text:0x80503C00; // type:function size:0x60 +fn_80503C60 = .text:0x80503C60; // type:function size:0x4 +fn_80503C64 = .text:0x80503C64; // type:function size:0x4 +fn_80503C68 = .text:0x80503C68; // type:function size:0x4 +Handle__19FileMergerOrganizerFP9DataArrayb = .text:0x80503C6C; // type:function size:0x104 +fn_80503D70 = .text:0x80503D70; // type:function size:0x6C +fn_80503DDC = .text:0x80503DDC; // type:function size:0x74 +fn_80503E50 = .text:0x80503E50; // type:function size:0x388 +fn_805041D8 = .text:0x805041D8; // type:function size:0x68 +fn_80504240 = .text:0x80504240; // type:function size:0x4 +fn_80504244 = .text:0x80504244; // type:function size:0x128 +fn_8050436C = .text:0x8050436C; // type:function size:0xC +fn_80504378 = .text:0x80504378; // type:function size:0xC +fn_80504384 = .text:0x80504384; // type:function size:0x158 +fn_805044DC = .text:0x805044DC; // type:function size:0x44 +fn_80504520 = .text:0x80504520; // type:function size:0x8 +fn_80504528 = .text:0x80504528; // type:function size:0x104 +fn_8050462C = .text:0x8050462C; // type:function size:0x5C +fn_80504688 = .text:0x80504688; // type:function size:0x10 +fn_80504698 = .text:0x80504698; // type:function size:0x4C +fn_805046E4 = .text:0x805046E4; // type:function size:0x48 +fn_8050472C = .text:0x8050472C; // type:function size:0x58 +fn_80504784 = .text:0x80504784; // type:function size:0x60 +fn_805047E4 = .text:0x805047E4; // type:function size:0x58 +fn_8050483C = .text:0x8050483C; // type:function size:0x58 +fn_80504894 = .text:0x80504894; // type:function size:0x50 +fn_805048E4 = .text:0x805048E4; // type:function size:0x44 +fn_80504928 = .text:0x80504928; // type:function size:0x3C +fn_80504964 = .text:0x80504964; // type:function size:0x70 +fn_805049D4 = .text:0x805049D4; // type:function size:0x6C +fn_80504A40 = .text:0x80504A40; // type:function size:0x2C +fn_80504A6C = .text:0x80504A6C; // type:function size:0x8 +fn_80504A74 = .text:0x80504A74; // type:function size:0x8 +fn_80504A7C = .text:0x80504A7C; // type:function size:0x8 +fn_80504A84 = .text:0x80504A84; // type:function size:0xC8 +fn_80504B4C = .text:0x80504B4C; // type:function size:0x34 +fn_80504B80 = .text:0x80504B80; // type:function size:0x48 +fn_80504BC8 = .text:0x80504BC8; // type:function size:0x3C +fn_80504C04 = .text:0x80504C04; // type:function size:0xA4 +fn_80504CA8 = .text:0x80504CA8; // type:function size:0x3C +fn_80504CE4 = .text:0x80504CE4; // type:function size:0x3C +fn_80504D20 = .text:0x80504D20; // type:function size:0xEC +fn_80504E0C = .text:0x80504E0C; // type:function size:0x84 +fn_80504E90 = .text:0x80504E90; // type:function size:0x8 +fn_80504E98 = .text:0x80504E98; // type:function size:0x6C +fn_80504F04 = .text:0x80504F04; // type:function size:0x68 +fn_80504F6C = .text:0x80504F6C; // type:function size:0x54 +fn_80504FC0 = .text:0x80504FC0; // type:function size:0x7C +fn_8050503C = .text:0x8050503C; // type:function size:0xE4 +fn_80505120 = .text:0x80505120; // type:function size:0x134 +fn_80505254 = .text:0x80505254; // type:function size:0x58 +fn_805052AC = .text:0x805052AC; // type:function size:0x58 +fn_80505304 = .text:0x80505304; // type:function size:0x80 +fn_80505384 = .text:0x80505384; // type:function size:0x80 +fn_80505404 = .text:0x80505404; // type:function size:0x58 +fn_8050545C = .text:0x8050545C; // type:function size:0x54 +fn_805054B0 = .text:0x805054B0; // type:function size:0x5C +fn_8050550C = .text:0x8050550C; // type:function size:0x6C +fn_80505578 = .text:0x80505578; // type:function size:0x28 +fn_805055A0 = .text:0x805055A0; // type:function size:0x8 +fn_805055A8 = .text:0x805055A8; // type:function size:0x3C +fn_805055E4 = .text:0x805055E4; // type:function size:0x50 +fn_80505634 = .text:0x80505634; // type:function size:0x30 +fn_80505664 = .text:0x80505664; // type:function size:0x30 +fn_80505694 = .text:0x80505694; // type:function size:0x40 +fn_805056D4 = .text:0x805056D4; // type:function size:0x15C +fn_80505830 = .text:0x80505830; // type:function size:0x5C +fn_8050588C = .text:0x8050588C; // type:function size:0xEC +fn_80505978 = .text:0x80505978; // type:function size:0x2C +fn_805059A4 = .text:0x805059A4; // type:function size:0x84 +fn_80505A28 = .text:0x80505A28; // type:function size:0x2C +fn_80505A54 = .text:0x80505A54; // type:function size:0x28 +fn_80505A7C = .text:0x80505A7C; // type:function size:0x68 +fn_80505AE4 = .text:0x80505AE4; // type:function size:0x4 +fn_80505AE8 = .text:0x80505AE8; // type:function size:0xB8 +fn_80505BA0 = .text:0x80505BA0; // type:function size:0xC +fn_80505BAC = .text:0x80505BAC; // type:function size:0xC +fn_80505BB8 = .text:0x80505BB8; // type:function size:0x180 +fn_80505D38 = .text:0x80505D38; // type:function size:0x6C +fn_80505DA4 = .text:0x80505DA4; // type:function size:0xBC +fn_80505E60 = .text:0x80505E60; // type:function size:0x5C +fn_80505EBC = .text:0x80505EBC; // type:function size:0x30 +fn_80505EEC = .text:0x80505EEC; // type:function size:0x60 +fn_80505F4C = .text:0x80505F4C; // type:function size:0x4 +fn_80505F50 = .text:0x80505F50; // type:function size:0x90 +fn_80505FE0 = .text:0x80505FE0; // type:function size:0x4 +fn_80505FE4 = .text:0x80505FE4; // type:function size:0x40 +fn_80506024 = .text:0x80506024; // type:function size:0x8C +fn_805060B0 = .text:0x805060B0; // type:function size:0x8 +fn_805060B8 = .text:0x805060B8; // type:function size:0x2C +fn_805060E4 = .text:0x805060E4; // type:function size:0x58 +fn_8050613C = .text:0x8050613C; // type:function size:0x6C +fn_805061A8 = .text:0x805061A8; // type:function size:0x4 +fn_805061AC = .text:0x805061AC; // type:function size:0x138 +fn_805062E4 = .text:0x805062E4; // type:function size:0x74 +fn_80506358 = .text:0x80506358; // type:function size:0x40 +fn_80506398 = .text:0x80506398; // type:function size:0x104 +fn_8050649C = .text:0x8050649C; // type:function size:0x2A0 +fn_8050673C = .text:0x8050673C; // type:function size:0x174 +fn_805068B0 = .text:0x805068B0; // type:function size:0xC0 +fn_80506970 = .text:0x80506970; // type:function size:0x124 +fn_80506A94 = .text:0x80506A94; // type:function size:0x68 +fn_80506AFC = .text:0x80506AFC; // type:function size:0x2C +fn_80506B28 = .text:0x80506B28; // type:function size:0x58 +fn_80506B80 = .text:0x80506B80; // type:function size:0x160 +fn_80506CE0 = .text:0x80506CE0; // type:function size:0x5C +fn_80506D3C = .text:0x80506D3C; // type:function size:0x10 +fn_80506D4C = .text:0x80506D4C; // type:function size:0x28 +fn_80506D74 = .text:0x80506D74; // type:function size:0x5C +fn_80506DD0 = .text:0x80506DD0; // type:function size:0x60 +fn_80506E30 = .text:0x80506E30; // type:function size:0x144 +fn_80506F74 = .text:0x80506F74; // type:function size:0x4 +fn_80506F78 = .text:0x80506F78; // type:function size:0x198 +fn_80507110 = .text:0x80507110; // type:function size:0x5C +fn_8050716C = .text:0x8050716C; // type:function size:0x54 +fn_805071C0 = .text:0x805071C0; // type:function size:0x28 +fn_805071E8 = .text:0x805071E8; // type:function size:0x68 +fn_80507250 = .text:0x80507250; // type:function size:0x114 +fn_80507364 = .text:0x80507364; // type:function size:0x5C +fn_805073C0 = .text:0x805073C0; // type:function size:0x5C +fn_8050741C = .text:0x8050741C; // type:function size:0x54 +fn_80507470 = .text:0x80507470; // type:function size:0x14 +fn_80507484 = .text:0x80507484; // type:function size:0x14 +fn_80507498 = .text:0x80507498; // type:function size:0x14 +fn_805074AC = .text:0x805074AC; // type:function size:0x14 +fn_805074C0 = .text:0x805074C0; // type:function size:0x14 +fn_805074D4 = .text:0x805074D4; // type:function size:0x14 +fn_805074E8 = .text:0x805074E8; // type:function size:0x14 +fn_805074FC = .text:0x805074FC; // type:function size:0x14 +fn_80507510 = .text:0x80507510; // type:function size:0x14 +fn_80507524 = .text:0x80507524; // type:function size:0x14 +fn_80507538 = .text:0x80507538; // type:function size:0x14 +fn_8050754C = .text:0x8050754C; // type:function size:0x14 +fn_80507560 = .text:0x80507560; // type:function size:0xF0 +fn_80507650 = .text:0x80507650; // type:function size:0xB0 +fn_80507700 = .text:0x80507700; // type:function size:0x14C +fn_8050784C = .text:0x8050784C; // type:function size:0xC8 +fn_80507914 = .text:0x80507914; // type:function size:0x4 +fn_80507918 = .text:0x80507918; // type:function size:0x94 +fn_805079AC = .text:0x805079AC; // type:function size:0x98 +fn_80507A44 = .text:0x80507A44; // type:function size:0x110 +fn_80507B54 = .text:0x80507B54; // type:function size:0x148 +fn_80507C9C = .text:0x80507C9C; // type:function size:0x134 +fn_80507DD0 = .text:0x80507DD0; // type:function size:0x4 +fn_80507DD4 = .text:0x80507DD4; // type:function size:0x14 +fn_80507DE8 = .text:0x80507DE8; // type:function size:0x14 +fn_80507DFC = .text:0x80507DFC; // type:function size:0x14 +fn_80507E10 = .text:0x80507E10; // type:function size:0x14 +fn_80507E24 = .text:0x80507E24; // type:function size:0x14 +fn_80507E38 = .text:0x80507E38; // type:function size:0x14 +fn_80507E4C = .text:0x80507E4C; // type:function size:0x14 +fn_80507E60 = .text:0x80507E60; // type:function size:0x14 +fn_80507E74 = .text:0x80507E74; // type:function size:0xA0 +fn_80507F14 = .text:0x80507F14; // type:function size:0x4 +fn_80507F18 = .text:0x80507F18; // type:function size:0x4 +fn_80507F1C = .text:0x80507F1C; // type:function size:0x7C +fn_80507F98 = .text:0x80507F98; // type:function size:0x1F4 +fn_8050818C = .text:0x8050818C; // type:function size:0x38C +fn_80508518 = .text:0x80508518; // type:function size:0x38 +fn_80508550 = .text:0x80508550; // type:function size:0x19C +fn_805086EC = .text:0x805086EC; // type:function size:0x4 +fn_805086F0 = .text:0x805086F0; // type:function size:0x114 +fn_80508804 = .text:0x80508804; // type:function size:0x5C +fn_80508860 = .text:0x80508860; // type:function size:0x744 +fn_80508FA4 = .text:0x80508FA4; // type:function size:0x58 +fn_80508FFC = .text:0x80508FFC; // type:function size:0x4 +fn_80509000 = .text:0x80509000; // type:function size:0xF0 +fn_805090F0 = .text:0x805090F0; // type:function size:0x40 +__ct__15VibratoDetectorFii = .text:0x80509130; // type:function size:0x78 +fn_805091A8 = .text:0x805091A8; // type:function size:0x40 +fn_805091E8 = .text:0x805091E8; // type:function size:0x13C +fn_80509324 = .text:0x80509324; // type:function size:0x224 +fn_80509548 = .text:0x80509548; // type:function size:0x58 +fn_805095A0 = .text:0x805095A0; // type:function size:0x4 +fn_805095A4 = .text:0x805095A4; // type:function size:0x4C +__ct__12AchievementsFv = .text:0x805095F0; // type:function size:0x4C +fn_8050963C = .text:0x8050963C; // type:function size:0x4 +SetAllowAchievements__12AchievementsFb = .text:0x80509640; // type:function size:0x8 +Handle__12AchievementsFP9DataArrayb = .text:0x80509648; // type:function size:0x108 +fn_80509750 = .text:0x80509750; // type:function size:0xF8 +fn_80509848 = .text:0x80509848; // type:function size:0x4C +fn_80509894 = .text:0x80509894; // type:function size:0xC +fn_805098A0 = .text:0x805098A0; // type:function size:0x14C +fn_805099EC = .text:0x805099EC; // type:function size:0x58 +fn_80509A44 = .text:0x80509A44; // type:function size:0x80 +fn_80509AC4 = .text:0x80509AC4; // type:function size:0x80 +fn_80509B44 = .text:0x80509B44; // type:function size:0x58 +fn_80509B9C = .text:0x80509B9C; // type:function size:0x54 +fn_80509BF0 = .text:0x80509BF0; // type:function size:0x5C +fn_80509C4C = .text:0x80509C4C; // type:function size:0x6C +fn_80509CB8 = .text:0x80509CB8; // type:function size:0x28 +fn_80509CE0 = .text:0x80509CE0; // type:function size:0x8 +fn_80509CE8 = .text:0x80509CE8; // type:function size:0x3C +fn_80509D24 = .text:0x80509D24; // type:function size:0x4 +fn_80509D28 = .text:0x80509D28; // type:function size:0x88 +fn_80509DB0 = .text:0x80509DB0; // type:function size:0x2C +fn_80509DDC = .text:0x80509DDC; // type:function size:0x30 +fn_80509E0C = .text:0x80509E0C; // type:function size:0x30 +fn_80509E3C = .text:0x80509E3C; // type:function size:0x40 +fn_80509E7C = .text:0x80509E7C; // type:function size:0x94 +fn_80509F10 = .text:0x80509F10; // type:function size:0x84 +fn_80509F94 = .text:0x80509F94; // type:function size:0x58 +fn_80509FEC = .text:0x80509FEC; // type:function size:0x80 +fn_8050A06C = .text:0x8050A06C; // type:function size:0x80 +fn_8050A0EC = .text:0x8050A0EC; // type:function size:0x58 +fn_8050A144 = .text:0x8050A144; // type:function size:0x54 +fn_8050A198 = .text:0x8050A198; // type:function size:0x5C +fn_8050A1F4 = .text:0x8050A1F4; // type:function size:0x6C +fn_8050A260 = .text:0x8050A260; // type:function size:0x28 +fn_8050A288 = .text:0x8050A288; // type:function size:0x8 +fn_8050A290 = .text:0x8050A290; // type:function size:0x5C +fn_8050A2EC = .text:0x8050A2EC; // type:function size:0x8 +fn_8050A2F4 = .text:0x8050A2F4; // type:function size:0x3C +fn_8050A330 = .text:0x8050A330; // type:function size:0x30 +fn_8050A360 = .text:0x8050A360; // type:function size:0x30 +fn_8050A390 = .text:0x8050A390; // type:function size:0x40 +fn_8050A3D0 = .text:0x8050A3D0; // type:function size:0x124 +fn_8050A4F4 = .text:0x8050A4F4; // type:function size:0x4 +fn_8050A4F8 = .text:0x8050A4F8; // type:function size:0x88 +fn_8050A580 = .text:0x8050A580; // type:function size:0x2C +fn_8050A5AC = .text:0x8050A5AC; // type:function size:0x10 +fn_8050A5BC = .text:0x8050A5BC; // type:function size:0x48 +fn_8050A604 = .text:0x8050A604; // type:function size:0x30 +fn_8050A634 = .text:0x8050A634; // type:function size:0x98 +fn_8050A6CC = .text:0x8050A6CC; // type:function size:0x5C +fn_8050A728 = .text:0x8050A728; // type:function size:0x70 +fn_8050A798 = .text:0x8050A798; // type:function size:0x48 +fn_8050A7E0 = .text:0x8050A7E0; // type:function size:0x30 +fn_8050A810 = .text:0x8050A810; // type:function size:0x4 +fn_8050A814 = .text:0x8050A814; // type:function size:0x3C +fn_8050A850 = .text:0x8050A850; // type:function size:0x40 +fn_8050A890 = .text:0x8050A890; // type:function size:0x8C +fn_8050A91C = .text:0x8050A91C; // type:function size:0x8 +fn_8050A924 = .text:0x8050A924; // type:function size:0x2C +fn_8050A950 = .text:0x8050A950; // type:function size:0x58 +fn_8050A9A8 = .text:0x8050A9A8; // type:function size:0x28 +fn_8050A9D0 = .text:0x8050A9D0; // type:function size:0x68 +fn_8050AA38 = .text:0x8050AA38; // type:function size:0x48 +fn_8050AA80 = .text:0x8050AA80; // type:function size:0x30 +fn_8050AAB0 = .text:0x8050AAB0; // type:function size:0xC4 +fn_8050AB74 = .text:0x8050AB74; // type:function size:0xEC +fn_8050AC60 = .text:0x8050AC60; // type:function size:0x24 +fn_8050AC84 = .text:0x8050AC84; // type:function size:0x154 +fn_8050ADD8 = .text:0x8050ADD8; // type:function size:0x14 +fn_8050ADEC = .text:0x8050ADEC; // type:function size:0x44C +fn_8050B238 = .text:0x8050B238; // type:function size:0x30 +fn_8050B268 = .text:0x8050B268; // type:function size:0x98 +fn_8050B300 = .text:0x8050B300; // type:function size:0x5C +fn_8050B35C = .text:0x8050B35C; // type:function size:0x70 +Handle__12ButtonHolderFP9DataArrayb = .text:0x8050B3CC; // type:function size:0x154 +__dt__12ButtonHolderFv = .text:0x8050B520; // type:function size:0x68 +fn_8050B588 = .text:0x8050B588; // type:function size:0x160 +fn_8050B6E8 = .text:0x8050B6E8; // type:function size:0x8 +fn_8050B6F0 = .text:0x8050B6F0; // type:function size:0x2C +fn_8050B71C = .text:0x8050B71C; // type:function size:0x58 +fn_8050B774 = .text:0x8050B774; // type:function size:0x28 +fn_8050B79C = .text:0x8050B79C; // type:function size:0x68 +fn_8050B804 = .text:0x8050B804; // type:function size:0x2C +fn_8050B830 = .text:0x8050B830; // type:function size:0x5C +fn_8050B88C = .text:0x8050B88C; // type:function size:0x60 +fn_8050B8EC = .text:0x8050B8EC; // type:function size:0x114 +fn_8050BA00 = .text:0x8050BA00; // type:function size:0x5C +fn_8050BA5C = .text:0x8050BA5C; // type:function size:0x5C +fn_8050BAB8 = .text:0x8050BAB8; // type:function size:0x54 +fn_8050BB0C = .text:0x8050BB0C; // type:function size:0x5C +fn_8050BB68 = .text:0x8050BB68; // type:function size:0x160 +fn_8050BCC8 = .text:0x8050BCC8; // type:function size:0x28 +fn_8050BCF0 = .text:0x8050BCF0; // type:function size:0x5C +fn_8050BD4C = .text:0x8050BD4C; // type:function size:0x60 +fn_8050BDAC = .text:0x8050BDAC; // type:function size:0x114 +fn_8050BEC0 = .text:0x8050BEC0; // type:function size:0x60 +fn_8050BF20 = .text:0x8050BF20; // type:function size:0x5C +fn_8050BF7C = .text:0x8050BF7C; // type:function size:0x54 +fn_8050BFD0 = .text:0x8050BFD0; // type:function size:0x5C +__ct__12CreditsPanelFv = .text:0x8050C02C; // type:function size:0xB0 +fn_8050C0DC = .text:0x8050C0DC; // type:function size:0x8C +fn_8050C168 = .text:0x8050C168; // type:function size:0xAC +fn_8050C214 = .text:0x8050C214; // type:function size:0x68 +fn_8050C27C = .text:0x8050C27C; // type:function size:0x8C +fn_8050C308 = .text:0x8050C308; // type:function size:0x90 +fn_8050C398 = .text:0x8050C398; // type:function size:0x90 +fn_8050C428 = .text:0x8050C428; // type:function size:0x70 +fn_8050C498 = .text:0x8050C498; // type:function size:0x58 +fn_8050C4F0 = .text:0x8050C4F0; // type:function size:0x1C8 +fn_8050C6B8 = .text:0x8050C6B8; // type:function size:0x2C +fn_8050C6E4 = .text:0x8050C6E4; // type:function size:0xC4 +Handle__12CreditsPanelFP9DataArrayb = .text:0x8050C7A8; // type:function size:0x1B8 +fn_8050C960 = .text:0x8050C960; // type:function size:0x20 +fn_8050C980 = .text:0x8050C980; // type:function size:0x5C +fn_8050C9DC = .text:0x8050C9DC; // type:function size:0xB8 +fn_8050CA94 = .text:0x8050CA94; // type:function size:0x8 +fn_8050CA9C = .text:0x8050CA9C; // type:function size:0x134 +fn_8050CBD0 = .text:0x8050CBD0; // type:function size:0x4 +fn_8050CBD4 = .text:0x8050CBD4; // type:function size:0x14 +fn_8050CBE8 = .text:0x8050CBE8; // type:function size:0x14 +fn_8050CBFC = .text:0x8050CBFC; // type:function size:0x14 +fn_8050CC10 = .text:0x8050CC10; // type:function size:0x14 +fn_8050CC24 = .text:0x8050CC24; // type:function size:0x8 +fn_8050CC2C = .text:0x8050CC2C; // type:function size:0x8 +fn_8050CC34 = .text:0x8050CC34; // type:function size:0x8 +fn_8050CC3C = .text:0x8050CC3C; // type:function size:0x8 +fn_8050CC44 = .text:0x8050CC44; // type:function size:0x8 +fn_8050CC4C = .text:0x8050CC4C; // type:function size:0x8 +fn_8050CC54 = .text:0x8050CC54; // type:function size:0x8 +fn_8050CC5C = .text:0x8050CC5C; // type:function size:0x8 +fn_8050CC64 = .text:0x8050CC64; // type:function size:0x8 +fn_8050CC6C = .text:0x8050CC6C; // type:function size:0x8 +fn_8050CC74 = .text:0x8050CC74; // type:function size:0x8 +fn_8050CC7C = .text:0x8050CC7C; // type:function size:0x8 +__ct__21ConnectionStatusPanelFv = .text:0x8050CC84; // type:function size:0x78 +fn_8050CCFC = .text:0x8050CCFC; // type:function size:0x7C +fn_8050CD78 = .text:0x8050CD78; // type:function size:0x78 +fn_8050CDF0 = .text:0x8050CDF0; // type:function size:0x5C +fn_8050CE4C = .text:0x8050CE4C; // type:function size:0x3C +fn_8050CE88 = .text:0x8050CE88; // type:function size:0x74 +Handle__21ConnectionStatusPanelFP9DataArrayb = .text:0x8050CEFC; // type:function size:0x14C +fn_8050D048 = .text:0x8050D048; // type:function size:0x134 +fn_8050D17C = .text:0x8050D17C; // type:function size:0x4C +fn_8050D1C8 = .text:0x8050D1C8; // type:function size:0x4 +fn_8050D1CC = .text:0x8050D1CC; // type:function size:0x14 +fn_8050D1E0 = .text:0x8050D1E0; // type:function size:0x14 +fn_8050D1F4 = .text:0x8050D1F4; // type:function size:0x14 +fn_8050D208 = .text:0x8050D208; // type:function size:0x14 +fn_8050D21C = .text:0x8050D21C; // type:function size:0x978 +fn_8050DB94 = .text:0x8050DB94; // type:function size:0x24 +fn_8050DBB8 = .text:0x8050DBB8; // type:function size:0x4 +fn_8050DBBC = .text:0x8050DBBC; // type:function size:0x88 +fn_8050DC44 = .text:0x8050DC44; // type:function size:0x2C +fn_8050DC70 = .text:0x8050DC70; // type:function size:0x44 +fn_8050DCB4 = .text:0x8050DCB4; // type:function size:0x4 +fn_8050DCB8 = .text:0x8050DCB8; // type:function size:0x3C +fn_8050DCF4 = .text:0x8050DCF4; // type:function size:0x3C +__dt__17DataArraySongInfoFv = .text:0x8050DD30; // type:function size:0x58 +fn_8050DD88 = .text:0x8050DD88; // type:function size:0xF8 +fn_8050DE80 = .text:0x8050DE80; // type:function size:0x74 +fn_8050DEF4 = .text:0x8050DEF4; // type:function size:0x74 +fn_8050DF68 = .text:0x8050DF68; // type:function size:0xF4 +fn_8050E05C = .text:0x8050E05C; // type:function size:0x8C +fn_8050E0E8 = .text:0x8050E0E8; // type:function size:0x4 +fn_8050E0EC = .text:0x8050E0EC; // type:function size:0x90 +fn_8050E17C = .text:0x8050E17C; // type:function size:0x4 +fn_8050E180 = .text:0x8050E180; // type:function size:0x40 +fn_8050E1C0 = .text:0x8050E1C0; // type:function size:0x8C +fn_8050E24C = .text:0x8050E24C; // type:function size:0x28 +fn_8050E274 = .text:0x8050E274; // type:function size:0x8 +fn_8050E27C = .text:0x8050E27C; // type:function size:0x48 +fn_8050E2C4 = .text:0x8050E2C4; // type:function size:0x44 +fn_8050E308 = .text:0x8050E308; // type:function size:0x44 +fn_8050E34C = .text:0x8050E34C; // type:function size:0x4C +fn_8050E398 = .text:0x8050E398; // type:function size:0x54 +fn_8050E3EC = .text:0x8050E3EC; // type:function size:0x68 +fn_8050E454 = .text:0x8050E454; // type:function size:0xCC +fn_8050E520 = .text:0x8050E520; // type:function size:0x5C +fn_8050E57C = .text:0x8050E57C; // type:function size:0x60 +fn_8050E5DC = .text:0x8050E5DC; // type:function size:0x114 +fn_8050E6F0 = .text:0x8050E6F0; // type:function size:0x5C +fn_8050E74C = .text:0x8050E74C; // type:function size:0x54 +fn_8050E7A0 = .text:0x8050E7A0; // type:function size:0x5C +fn_8050E7FC = .text:0x8050E7FC; // type:function size:0x10 +fn_8050E80C = .text:0x8050E80C; // type:function size:0x198 +fn_8050E9A4 = .text:0x8050E9A4; // type:function size:0x54 +fn_8050E9F8 = .text:0x8050E9F8; // type:function size:0x28 +fn_8050EA20 = .text:0x8050EA20; // type:function size:0x68 +__ct__13DeJitterPanelFv = .text:0x8050EA88; // type:function size:0x90 +fn_8050EB18 = .text:0x8050EB18; // type:function size:0x8C +fn_8050EBA4 = .text:0x8050EBA4; // type:function size:0x5C +fn_8050EC00 = .text:0x8050EC00; // type:function size:0x68 +fn_8050EC68 = .text:0x8050EC68; // type:function size:0xB4 +fn_8050ED1C = .text:0x8050ED1C; // type:function size:0x90 +fn_8050EDAC = .text:0x8050EDAC; // type:function size:0x134 +fn_8050EEE0 = .text:0x8050EEE0; // type:function size:0x4C +fn_8050EF2C = .text:0x8050EF2C; // type:function size:0x4 +fn_8050EF30 = .text:0x8050EF30; // type:function size:0x14 +fn_8050EF44 = .text:0x8050EF44; // type:function size:0x14 +fn_8050EF58 = .text:0x8050EF58; // type:function size:0x14 +fn_8050EF6C = .text:0x8050EF6C; // type:function size:0x14 +__ct__17FixedSizeSaveableFv = .text:0x8050EF80; // type:function size:0x18 +__dt__17FixedSizeSaveableFv = .text:0x8050EF98; // type:function size:0x40 +fn_8050EFD8 = .text:0x8050EFD8; // type:function size:0x14 +fn_8050EFEC = .text:0x8050EFEC; // type:function size:0x7C +fn_8050F068 = .text:0x8050F068; // type:function size:0x6C +fn_8050F0D4 = .text:0x8050F0D4; // type:function size:0x8C +fn_8050F160 = .text:0x8050F160; // type:function size:0x8C +fn_8050F1EC = .text:0x8050F1EC; // type:function size:0x8C +fn_8050F278 = .text:0x8050F278; // type:function size:0x8C +fn_8050F304 = .text:0x8050F304; // type:function size:0x88 +fn_8050F38C = .text:0x8050F38C; // type:function size:0x60 +fn_8050F3EC = .text:0x8050F3EC; // type:function size:0xE4 +fn_8050F4D0 = .text:0x8050F4D0; // type:function size:0x34 +fn_8050F504 = .text:0x8050F504; // type:function size:0xA8 +fn_8050F5AC = .text:0x8050F5AC; // type:function size:0x98 +fn_8050F644 = .text:0x8050F644; // type:function size:0xA0 +fn_8050F6E4 = .text:0x8050F6E4; // type:function size:0xCC +fn_8050F7B0 = .text:0x8050F7B0; // type:function size:0x90 +fn_8050F840 = .text:0x8050F840; // type:function size:0xCC +fn_8050F90C = .text:0x8050F90C; // type:function size:0x94 +fn_8050F9A0 = .text:0x8050F9A0; // type:function size:0x44 +fn_8050F9E4 = .text:0x8050F9E4; // type:function size:0x4C +__ct__23FixedSizeSaveableStreamFPvib = .text:0x8050FA30; // type:function size:0x58 +__dt__23FixedSizeSaveableStreamFv = .text:0x8050FA88; // type:function size:0x74 +fn_8050FAFC = .text:0x8050FAFC; // type:function size:0x64 +fn_8050FB60 = .text:0x8050FB60; // type:function size:0xC +fn_8050FB6C = .text:0x8050FB6C; // type:function size:0x78 +fn_8050FBE4 = .text:0x8050FBE4; // type:function size:0x4C +fn_8050FC30 = .text:0x8050FC30; // type:function size:0x8 +fn_8050FC38 = .text:0x8050FC38; // type:function size:0x38 +fn_8050FC70 = .text:0x8050FC70; // type:function size:0x40 +fn_8050FCB0 = .text:0x8050FCB0; // type:function size:0x74 +fn_8050FD24 = .text:0x8050FD24; // type:function size:0x8C +fn_8050FDB0 = .text:0x8050FDB0; // type:function size:0x84 +fn_8050FE34 = .text:0x8050FE34; // type:function size:0x5C +fn_8050FE90 = .text:0x8050FE90; // type:function size:0x30 +fn_8050FEC0 = .text:0x8050FEC0; // type:function size:0x34 +__ct__15HeldButtonPanelFv = .text:0x8050FEF4; // type:function size:0xAC +__dt__15HeldButtonPanelFv = .text:0x8050FFA0; // type:function size:0xB8 +fn_80510058 = .text:0x80510058; // type:function size:0x138 +fn_80510190 = .text:0x80510190; // type:function size:0x60 +fn_805101F0 = .text:0x805101F0; // type:function size:0x58 +fn_80510248 = .text:0x80510248; // type:function size:0x380 +Handle__15HeldButtonPanelFP9DataArrayb = .text:0x805105C8; // type:function size:0x1B8 +fn_80510780 = .text:0x80510780; // type:function size:0x3C +fn_805107BC = .text:0x805107BC; // type:function size:0x134 +fn_805108F0 = .text:0x805108F0; // type:function size:0x4 +fn_805108F4 = .text:0x805108F4; // type:function size:0x14 +fn_80510908 = .text:0x80510908; // type:function size:0x14 +fn_8051091C = .text:0x8051091C; // type:function size:0x14 +fn_80510930 = .text:0x80510930; // type:function size:0x14 +fn_80510944 = .text:0x80510944; // type:function size:0x3C +fn_80510980 = .text:0x80510980; // type:function size:0xC +fn_8051098C = .text:0x8051098C; // type:function size:0x4 +fn_80510990 = .text:0x80510990; // type:function size:0x44 +fn_805109D4 = .text:0x805109D4; // type:function size:0x34 +fn_80510A08 = .text:0x80510A08; // type:function size:0x40 +fn_80510A48 = .text:0x80510A48; // type:function size:0x4C +fn_80510A94 = .text:0x80510A94; // type:function size:0x34 +fn_80510AC8 = .text:0x80510AC8; // type:function size:0x40 +fn_80510B08 = .text:0x80510B08; // type:function size:0x34 +fn_80510B3C = .text:0x80510B3C; // type:function size:0x40 +fn_80510B7C = .text:0x80510B7C; // type:function size:0x80 +fn_80510BFC = .text:0x80510BFC; // type:function size:0x5C +fn_80510C58 = .text:0x80510C58; // type:function size:0xDC +fn_80510D34 = .text:0x80510D34; // type:function size:0x8 +fn_80510D3C = .text:0x80510D3C; // type:function size:0x8 +__ct__16MetaMusicManagerFP9DataArray = .text:0x80510D44; // type:function size:0x90 +fn_80510DD4 = .text:0x80510DD4; // type:function size:0x58 +fn_80510E2C = .text:0x80510E2C; // type:function size:0x60 +fn_80510E8C = .text:0x80510E8C; // type:function size:0x58 +fn_80510EE4 = .text:0x80510EE4; // type:function size:0x58 +fn_80510F3C = .text:0x80510F3C; // type:function size:0x50 +fn_80510F8C = .text:0x80510F8C; // type:function size:0x44 +fn_80510FD0 = .text:0x80510FD0; // type:function size:0x3C +fn_8051100C = .text:0x8051100C; // type:function size:0x70 +__dt__16MetaMusicManagerFv = .text:0x8051107C; // type:function size:0x90 +fn_8051110C = .text:0x8051110C; // type:function size:0xC4 +fn_805111D0 = .text:0x805111D0; // type:function size:0x4 +fn_805111D4 = .text:0x805111D4; // type:function size:0x8 +fn_805111DC = .text:0x805111DC; // type:function size:0x34 +fn_80511210 = .text:0x80511210; // type:function size:0x4 +fn_80511214 = .text:0x80511214; // type:function size:0x8 +fn_8051121C = .text:0x8051121C; // type:function size:0x64 +fn_80511280 = .text:0x80511280; // type:function size:0x184 +fn_80511404 = .text:0x80511404; // type:function size:0xFC +fn_80511500 = .text:0x80511500; // type:function size:0x58 +fn_80511558 = .text:0x80511558; // type:function size:0x4 +fn_8051155C = .text:0x8051155C; // type:function size:0x40 +fn_8051159C = .text:0x8051159C; // type:function size:0x74 +fn_80511610 = .text:0x80511610; // type:function size:0x40 +fn_80511650 = .text:0x80511650; // type:function size:0x84 +fn_805116D4 = .text:0x805116D4; // type:function size:0x34 +fn_80511708 = .text:0x80511708; // type:function size:0x74 +fn_8051177C = .text:0x8051177C; // type:function size:0x2C +fn_805117A8 = .text:0x805117A8; // type:function size:0x30 +fn_805117D8 = .text:0x805117D8; // type:function size:0xA0 +Handle__16MetaMusicManagerFP9DataArrayb = .text:0x80511878; // type:function size:0xC4 +fn_8051193C = .text:0x8051193C; // type:function size:0x388 +fn_80511CC4 = .text:0x80511CC4; // type:function size:0x6C +fn_80511D30 = .text:0x80511D30; // type:function size:0x2C +fn_80511D5C = .text:0x80511D5C; // type:function size:0x158 +fn_80511EB4 = .text:0x80511EB4; // type:function size:0x44 +fn_80511EF8 = .text:0x80511EF8; // type:function size:0x104 +fn_80511FFC = .text:0x80511FFC; // type:function size:0x5C +fn_80512058 = .text:0x80512058; // type:function size:0x10 +__ct__10MoviePanelFv = .text:0x80512068; // type:function size:0x108 +__ct__Q28HomeMenu8CallbackFv = .text:0x80512170; // type:function size:0x10 +fn_80512180 = .text:0x80512180; // type:function size:0xB8 +fn_80512238 = .text:0x80512238; // type:function size:0x2CC +fn_80512504 = .text:0x80512504; // type:function size:0x74 +fn_80512578 = .text:0x80512578; // type:function size:0xC0 +fn_80512638 = .text:0x80512638; // type:function size:0x60 +fn_80512698 = .text:0x80512698; // type:function size:0xA8 +fn_80512740 = .text:0x80512740; // type:function size:0x58 +fn_80512798 = .text:0x80512798; // type:function size:0x238 +fn_805129D0 = .text:0x805129D0; // type:function size:0x68 +fn_80512A38 = .text:0x80512A38; // type:function size:0x118 +fn_80512B50 = .text:0x80512B50; // type:function size:0x6C +fn_80512BBC = .text:0x80512BBC; // type:function size:0x8C +fn_80512C48 = .text:0x80512C48; // type:function size:0xB4 +fn_80512CFC = .text:0x80512CFC; // type:function size:0x8 +fn_80512D04 = .text:0x80512D04; // type:function size:0x14 +fn_80512D18 = .text:0x80512D18; // type:function size:0x8 +fn_80512D20 = .text:0x80512D20; // type:function size:0x90 +fn_80512DB0 = .text:0x80512DB0; // type:function size:0xAC +fn_80512E5C = .text:0x80512E5C; // type:function size:0x4 +fn_80512E60 = .text:0x80512E60; // type:function size:0x4 +fn_80512E64 = .text:0x80512E64; // type:function size:0x64 +fn_80512EC8 = .text:0x80512EC8; // type:function size:0x24 +Handle__10MoviePanelFP9DataArrayb = .text:0x80512EEC; // type:function size:0x1C4 +SyncProperty__10MoviePanelFR8DataNodeP9DataArrayi6PropOp = .text:0x805130B0; // type:function size:0xC0 +fn_80513170 = .text:0x80513170; // type:function size:0xA4 +SetType__10MoviePanelF6Symbol = .text:0x80513214; // type:function size:0x134 +ClassName__10MoviePanelCFv = .text:0x80513348; // type:function size:0x4 +fn_8051334C = .text:0x8051334C; // type:function size:0x14 +fn_80513360 = .text:0x80513360; // type:function size:0x14 +fn_80513374 = .text:0x80513374; // type:function size:0x14 +fn_80513388 = .text:0x80513388; // type:function size:0x14 +fn_8051339C = .text:0x8051339C; // type:function size:0x14 +fn_805133B0 = .text:0x805133B0; // type:function size:0x14 +fn_805133C4 = .text:0x805133C4; // type:function size:0x8 +fn_805133CC = .text:0x805133CC; // type:function size:0x8 +fn_805133D4 = .text:0x805133D4; // type:function size:0x8 +fn_805133DC = .text:0x805133DC; // type:function size:0x8 +fn_805133E4 = .text:0x805133E4; // type:function size:0x118 +fn_805134FC = .text:0x805134FC; // type:function size:0xB0 +fn_805135AC = .text:0x805135AC; // type:function size:0x50 +fn_805135FC = .text:0x805135FC; // type:function size:0x260 +fn_8051385C = .text:0x8051385C; // type:function size:0x100 +fn_8051395C = .text:0x8051395C; // type:function size:0x48 +fn_805139A4 = .text:0x805139A4; // type:function size:0x68 +fn_80513A0C = .text:0x80513A0C; // type:function size:0x38 +fn_80513A44 = .text:0x80513A44; // type:function size:0x8 +fn_80513A4C = .text:0x80513A4C; // type:function size:0x38 +fn_80513A84 = .text:0x80513A84; // type:function size:0x38 +fn_80513ABC = .text:0x80513ABC; // type:function size:0x44 +fn_80513B00 = .text:0x80513B00; // type:function size:0x34 +fn_80513B34 = .text:0x80513B34; // type:function size:0x3C +fn_80513B70 = .text:0x80513B70; // type:function size:0x174 +fn_80513CE4 = .text:0x80513CE4; // type:function size:0xC8 +fn_80513DAC = .text:0x80513DAC; // type:function size:0x48 +fn_80513DF4 = .text:0x80513DF4; // type:function size:0x64 +fn_80513E58 = .text:0x80513E58; // type:function size:0x1B4 +Handle__12PreloadPanelFP9DataArrayb = .text:0x8051400C; // type:function size:0x1C8 +fn_805141D4 = .text:0x805141D4; // type:function size:0x134 +fn_80514308 = .text:0x80514308; // type:function size:0x4 +fn_8051430C = .text:0x8051430C; // type:function size:0x14 +fn_80514320 = .text:0x80514320; // type:function size:0x14 +fn_80514334 = .text:0x80514334; // type:function size:0x14 +fn_80514348 = .text:0x80514348; // type:function size:0x14 +fn_8051435C = .text:0x8051435C; // type:function size:0x14 +fn_80514370 = .text:0x80514370; // type:function size:0x14 +fn_80514384 = .text:0x80514384; // type:function size:0x14 +fn_80514398 = .text:0x80514398; // type:function size:0x8 +fn_805143A0 = .text:0x805143A0; // type:function size:0x90 +__dt__7ProfileFv = .text:0x80514430; // type:function size:0xA8 +fn_805144D8 = .text:0x805144D8; // type:function size:0x14 +fn_805144EC = .text:0x805144EC; // type:function size:0x58 +fn_80514544 = .text:0x80514544; // type:function size:0x30 +fn_80514574 = .text:0x80514574; // type:function size:0x8 +fn_8051457C = .text:0x8051457C; // type:function size:0x14 +fn_80514590 = .text:0x80514590; // type:function size:0x8 +fn_80514598 = .text:0x80514598; // type:function size:0x10 +fn_805145A8 = .text:0x805145A8; // type:function size:0x4C +fn_805145F4 = .text:0x805145F4; // type:function size:0x4 +fn_805145F8 = .text:0x805145F8; // type:function size:0x8 +fn_80514600 = .text:0x80514600; // type:function size:0xC +fn_8051460C = .text:0x8051460C; // type:function size:0xC +Handle__7ProfileFP9DataArrayb = .text:0x80514618; // type:function size:0x164 +fn_8051477C = .text:0x8051477C; // type:function size:0x14 +fn_80514790 = .text:0x80514790; // type:function size:0x14 +fn_805147A4 = .text:0x805147A4; // type:function size:0x88 +__ct__12SongMetadataFv = .text:0x8051482C; // type:function size:0x54 +fn_80514880 = .text:0x80514880; // type:function size:0x414 +__dt__12SongMetadataFv = .text:0x80514C94; // type:function size:0x8C +fn_80514D20 = .text:0x80514D20; // type:function size:0x8 +fn_80514D28 = .text:0x80514D28; // type:function size:0x8 +fn_80514D30 = .text:0x80514D30; // type:function size:0x8 +fn_80514D38 = .text:0x80514D38; // type:function size:0x14 +fn_80514D4C = .text:0x80514D4C; // type:function size:0x8 +fn_80514D54 = .text:0x80514D54; // type:function size:0x14 +fn_80514D68 = .text:0x80514D68; // type:function size:0xB0 +fn_80514E18 = .text:0x80514E18; // type:function size:0x238 +Handle__12SongMetadataFP9DataArrayb = .text:0x80515050; // type:function size:0xEC +fn_8051513C = .text:0x8051513C; // type:function size:0x1A8 +fn_805152E4 = .text:0x805152E4; // type:function size:0x68 +fn_8051534C = .text:0x8051534C; // type:function size:0xD4 +fn_80515420 = .text:0x80515420; // type:function size:0x28 +fn_80515448 = .text:0x80515448; // type:function size:0x54 +Data__7SongMgrCF6Symbol = .text:0x8051549C; // type:function size:0x74 +fn_80515510 = .text:0x80515510; // type:function size:0xDC +fn_805155EC = .text:0x805155EC; // type:function size:0x30 +fn_8051561C = .text:0x8051561C; // type:function size:0x8C +fn_805156A8 = .text:0x805156A8; // type:function size:0x10 +fn_805156B8 = .text:0x805156B8; // type:function size:0x178 +fn_80515830 = .text:0x80515830; // type:function size:0xC +fn_8051583C = .text:0x8051583C; // type:function size:0x238 +fn_80515A74 = .text:0x80515A74; // type:function size:0x48 +fn_80515ABC = .text:0x80515ABC; // type:function size:0x3C +fn_80515AF8 = .text:0x80515AF8; // type:function size:0x6C +fn_80515B64 = .text:0x80515B64; // type:function size:0x18 +fn_80515B7C = .text:0x80515B7C; // type:function size:0xD8 +fn_80515C54 = .text:0x80515C54; // type:function size:0xA8 +fn_80515CFC = .text:0x80515CFC; // type:function size:0x3C +fn_80515D38 = .text:0x80515D38; // type:function size:0x6C +fn_80515DA4 = .text:0x80515DA4; // type:function size:0x4 +fn_80515DA8 = .text:0x80515DA8; // type:function size:0x40 +fn_80515DE8 = .text:0x80515DE8; // type:function size:0xA0 +fn_80515E88 = .text:0x80515E88; // type:function size:0xC8 +fn_80515F50 = .text:0x80515F50; // type:function size:0x60 +fn_80515FB0 = .text:0x80515FB0; // type:function size:0x50 +fn_80516000 = .text:0x80516000; // type:function size:0x70 +fn_80516070 = .text:0x80516070; // type:function size:0x28 +fn_80516098 = .text:0x80516098; // type:function size:0x20 +fn_805160B8 = .text:0x805160B8; // type:function size:0x68 +fn_80516120 = .text:0x80516120; // type:function size:0xC +fn_8051612C = .text:0x8051612C; // type:function size:0x88 +fn_805161B4 = .text:0x805161B4; // type:function size:0x6C +fn_80516220 = .text:0x80516220; // type:function size:0xA4 +fn_805162C4 = .text:0x805162C4; // type:function size:0x80 +fn_80516344 = .text:0x80516344; // type:function size:0xC +fn_80516350 = .text:0x80516350; // type:function size:0xB8 +fn_80516408 = .text:0x80516408; // type:function size:0x4 +fn_8051640C = .text:0x8051640C; // type:function size:0xC0 +fn_805164CC = .text:0x805164CC; // type:function size:0x3C +fn_80516508 = .text:0x80516508; // type:function size:0x218 +fn_80516720 = .text:0x80516720; // type:function size:0xCC +fn_805167EC = .text:0x805167EC; // type:function size:0xBC +fn_805168A8 = .text:0x805168A8; // type:function size:0x70 +fn_80516918 = .text:0x80516918; // type:function size:0x28 +fn_80516940 = .text:0x80516940; // type:function size:0x18 +fn_80516958 = .text:0x80516958; // type:function size:0x24 +fn_8051697C = .text:0x8051697C; // type:function size:0x5C +fn_805169D8 = .text:0x805169D8; // type:function size:0x84 +fn_80516A5C = .text:0x80516A5C; // type:function size:0x8C +Handle__7SongMgrFP9DataArrayb = .text:0x80516AE8; // type:function size:0x358 +fn_80516E40 = .text:0x80516E40; // type:function size:0x14 +fn_80516E54 = .text:0x80516E54; // type:function size:0x14 +fn_80516E68 = .text:0x80516E68; // type:function size:0x14 +fn_80516E7C = .text:0x80516E7C; // type:function size:0x14 +fn_80516E90 = .text:0x80516E90; // type:function size:0x14 +fn_80516EA4 = .text:0x80516EA4; // type:function size:0x14 +fn_80516EB8 = .text:0x80516EB8; // type:function size:0x14 +fn_80516ECC = .text:0x80516ECC; // type:function size:0x8 +fn_80516ED4 = .text:0x80516ED4; // type:function size:0x8 +fn_80516EDC = .text:0x80516EDC; // type:function size:0x8 +fn_80516EE4 = .text:0x80516EE4; // type:function size:0xC8 +__dt__11SongPreviewFv = .text:0x80516FAC; // type:function size:0x80 +fn_8051702C = .text:0x8051702C; // type:function size:0x15C +fn_80517188 = .text:0x80517188; // type:function size:0x128 +fn_805172B0 = .text:0x805172B0; // type:function size:0x2C4 +fn_80517574 = .text:0x80517574; // type:function size:0x5C +fn_805175D0 = .text:0x805175D0; // type:function size:0x7C +fn_8051764C = .text:0x8051764C; // type:function size:0x10C +fn_80517758 = .text:0x80517758; // type:function size:0x354 +fn_80517AAC = .text:0x80517AAC; // type:function size:0x10C +fn_80517BB8 = .text:0x80517BB8; // type:function size:0x78 +fn_80517C30 = .text:0x80517C30; // type:function size:0x10 +fn_80517C40 = .text:0x80517C40; // type:function size:0x80 +fn_80517CC0 = .text:0x80517CC0; // type:function size:0x3C +fn_80517CFC = .text:0x80517CFC; // type:function size:0xCC +fn_80517DC8 = .text:0x80517DC8; // type:function size:0x350 +Handle__11SongPreviewFP9DataArrayb = .text:0x80518118; // type:function size:0x1A8 +fn_805182C0 = .text:0x805182C0; // type:function size:0x8 +fn_805182C8 = .text:0x805182C8; // type:function size:0x8 +AlphaKeySkip__FPCcb = .text:0x805182D0; // type:function size:0x144 +fn_80518414 = .text:0x80518414; // type:function size:0x40 +fn_80518454 = .text:0x80518454; // type:function size:0x10 +AlphaKeyStrCmp__FPCcPCcb = .text:0x80518464; // type:function size:0xA8 +FirstSortChar__FPCcb = .text:0x8051850C; // type:function size:0xBC +fn_805185C8 = .text:0x805185C8; // type:function size:0x40 +fn_80518608 = .text:0x80518608; // type:function size:0x6C +fn_80518674 = .text:0x80518674; // type:function size:0x50 +fn_805186C4 = .text:0x805186C4; // type:function size:0x30 +fn_805186F4 = .text:0x805186F4; // type:function size:0x30 +fn_80518724 = .text:0x80518724; // type:function size:0x60 +fn_80518784 = .text:0x80518784; // type:function size:0x4 +fn_80518788 = .text:0x80518788; // type:function size:0x14 +fn_8051879C = .text:0x8051879C; // type:function size:0x20 +fn_805187BC = .text:0x805187BC; // type:function size:0x9C +fn_80518858 = .text:0x80518858; // type:function size:0x20 +fn_80518878 = .text:0x80518878; // type:function size:0x58 +fn_805188D0 = .text:0x805188D0; // type:function size:0x90 +fn_80518960 = .text:0x80518960; // type:function size:0x58 +fn_805189B8 = .text:0x805189B8; // type:function size:0x80 +fn_80518A38 = .text:0x80518A38; // type:function size:0x80 +fn_80518AB8 = .text:0x80518AB8; // type:function size:0x58 +fn_80518B10 = .text:0x80518B10; // type:function size:0x54 +fn_80518B64 = .text:0x80518B64; // type:function size:0x5C +fn_80518BC0 = .text:0x80518BC0; // type:function size:0x6C +fn_80518C2C = .text:0x80518C2C; // type:function size:0x28 +fn_80518C54 = .text:0x80518C54; // type:function size:0x8 +fn_80518C5C = .text:0x80518C5C; // type:function size:0x8 +fn_80518C64 = .text:0x80518C64; // type:function size:0x3C +fn_80518CA0 = .text:0x80518CA0; // type:function size:0x30 +fn_80518CD0 = .text:0x80518CD0; // type:function size:0x30 +fn_80518D00 = .text:0x80518D00; // type:function size:0x40 +fn_80518D40 = .text:0x80518D40; // type:function size:0xA8 +fn_80518DE8 = .text:0x80518DE8; // type:function size:0x128 +fn_80518F10 = .text:0x80518F10; // type:function size:0x40 +fn_80518F50 = .text:0x80518F50; // type:function size:0x40 +fn_80518F90 = .text:0x80518F90; // type:function size:0xB8 +fn_80519048 = .text:0x80519048; // type:function size:0x4 +fn_8051904C = .text:0x8051904C; // type:function size:0x88 +fn_805190D4 = .text:0x805190D4; // type:function size:0x2C +fn_80519100 = .text:0x80519100; // type:function size:0x10 +fn_80519110 = .text:0x80519110; // type:function size:0x4C +fn_8051915C = .text:0x8051915C; // type:function size:0x90 +fn_805191EC = .text:0x805191EC; // type:function size:0x64 +fn_80519250 = .text:0x80519250; // type:function size:0x78 +fn_805192C8 = .text:0x805192C8; // type:function size:0x4 +fn_805192CC = .text:0x805192CC; // type:function size:0x3C +fn_80519308 = .text:0x80519308; // type:function size:0x40 +fn_80519348 = .text:0x80519348; // type:function size:0x8C +fn_805193D4 = .text:0x805193D4; // type:function size:0x8 +fn_805193DC = .text:0x805193DC; // type:function size:0x2C +fn_80519408 = .text:0x80519408; // type:function size:0x58 +fn_80519460 = .text:0x80519460; // type:function size:0x28 +fn_80519488 = .text:0x80519488; // type:function size:0x68 +fn_805194F0 = .text:0x805194F0; // type:function size:0x4C +Handle__19StoreArtLoaderPanelFP9DataArrayb = .text:0x8051953C; // type:function size:0xD0 +fn_8051960C = .text:0x8051960C; // type:function size:0x114 +fn_80519720 = .text:0x80519720; // type:function size:0x5C +fn_8051977C = .text:0x8051977C; // type:function size:0x5C +fn_805197D8 = .text:0x805197D8; // type:function size:0x54 +fn_8051982C = .text:0x8051982C; // type:function size:0x5C +fn_80519888 = .text:0x80519888; // type:function size:0x5C +fn_805198E4 = .text:0x805198E4; // type:function size:0x134 +fn_80519A18 = .text:0x80519A18; // type:function size:0x4C +fn_80519A64 = .text:0x80519A64; // type:function size:0x4 +fn_80519A68 = .text:0x80519A68; // type:function size:0x14 +fn_80519A7C = .text:0x80519A7C; // type:function size:0x14 +fn_80519A90 = .text:0x80519A90; // type:function size:0x14 +fn_80519AA4 = .text:0x80519AA4; // type:function size:0x14 +fn_80519AB8 = .text:0x80519AB8; // type:function size:0x48 +fn_80519B00 = .text:0x80519B00; // type:function size:0x10 +fn_80519B10 = .text:0x80519B10; // type:function size:0x30 +fn_80519B40 = .text:0x80519B40; // type:function size:0x2C +fn_80519B6C = .text:0x80519B6C; // type:function size:0x2C +fn_80519B98 = .text:0x80519B98; // type:function size:0xCC +fn_80519C64 = .text:0x80519C64; // type:function size:0xC +fn_80519C70 = .text:0x80519C70; // type:function size:0x3C +fn_80519CAC = .text:0x80519CAC; // type:function size:0x58 +fn_80519D04 = .text:0x80519D04; // type:function size:0xC +fn_80519D10 = .text:0x80519D10; // type:function size:0x258 +fn_80519F68 = .text:0x80519F68; // type:function size:0x4C +fn_80519FB4 = .text:0x80519FB4; // type:function size:0x230 +fn_8051A1E4 = .text:0x8051A1E4; // type:function size:0x14 +fn_8051A1F8 = .text:0x8051A1F8; // type:function size:0xC +fn_8051A204 = .text:0x8051A204; // type:function size:0x80 +fn_8051A284 = .text:0x8051A284; // type:function size:0x90 +fn_8051A314 = .text:0x8051A314; // type:function size:0x88 +fn_8051A39C = .text:0x8051A39C; // type:function size:0x8 +fn_8051A3A4 = .text:0x8051A3A4; // type:function size:0x18 +fn_8051A3BC = .text:0x8051A3BC; // type:function size:0x3AC +fn_8051A768 = .text:0x8051A768; // type:function size:0x8C +fn_8051A7F4 = .text:0x8051A7F4; // type:function size:0xC +fn_8051A800 = .text:0x8051A800; // type:function size:0x100 +fn_8051A900 = .text:0x8051A900; // type:function size:0x240 +fn_8051AB40 = .text:0x8051AB40; // type:function size:0x84 +fn_8051ABC4 = .text:0x8051ABC4; // type:function size:0xC +fn_8051ABD0 = .text:0x8051ABD0; // type:function size:0x50 +fn_8051AC20 = .text:0x8051AC20; // type:function size:0xC +fn_8051AC2C = .text:0x8051AC2C; // type:function size:0x48 +fn_8051AC74 = .text:0x8051AC74; // type:function size:0x48 +fn_8051ACBC = .text:0x8051ACBC; // type:function size:0x8 +fn_8051ACC4 = .text:0x8051ACC4; // type:function size:0x8 +fn_8051ACCC = .text:0x8051ACCC; // type:function size:0x48 +fn_8051AD14 = .text:0x8051AD14; // type:function size:0x48 +fn_8051AD5C = .text:0x8051AD5C; // type:function size:0x18 +fn_8051AD74 = .text:0x8051AD74; // type:function size:0x10 +fn_8051AD84 = .text:0x8051AD84; // type:function size:0x10 +fn_8051AD94 = .text:0x8051AD94; // type:function size:0x34 +fn_8051ADC8 = .text:0x8051ADC8; // type:function size:0x44 +fn_8051AE0C = .text:0x8051AE0C; // type:function size:0x14 +fn_8051AE20 = .text:0x8051AE20; // type:function size:0x44 +fn_8051AE64 = .text:0x8051AE64; // type:function size:0x14 +fn_8051AE78 = .text:0x8051AE78; // type:function size:0xB8 +fn_8051AF30 = .text:0x8051AF30; // type:function size:0xC +fn_8051AF3C = .text:0x8051AF3C; // type:function size:0x18 +fn_8051AF54 = .text:0x8051AF54; // type:function size:0x18 +fn_8051AF6C = .text:0x8051AF6C; // type:function size:0x14 +fn_8051AF80 = .text:0x8051AF80; // type:function size:0x8 +fn_8051AF88 = .text:0x8051AF88; // type:function size:0x44 +fn_8051AFCC = .text:0x8051AFCC; // type:function size:0x2C +fn_8051AFF8 = .text:0x8051AFF8; // type:function size:0x30 +fn_8051B028 = .text:0x8051B028; // type:function size:0x18 +fn_8051B040 = .text:0x8051B040; // type:function size:0x38 +fn_8051B078 = .text:0x8051B078; // type:function size:0x38 +fn_8051B0B0 = .text:0x8051B0B0; // type:function size:0x5C +fn_8051B10C = .text:0x8051B10C; // type:function size:0x94 +fn_8051B1A0 = .text:0x8051B1A0; // type:function size:0x28 +fn_8051B1C8 = .text:0x8051B1C8; // type:function size:0x8 +fn_8051B1D0 = .text:0x8051B1D0; // type:function size:0x68 +fn_8051B238 = .text:0x8051B238; // type:function size:0x1BC +fn_8051B3F4 = .text:0x8051B3F4; // type:function size:0x58 +fn_8051B44C = .text:0x8051B44C; // type:function size:0x80 +fn_8051B4CC = .text:0x8051B4CC; // type:function size:0x80 +fn_8051B54C = .text:0x8051B54C; // type:function size:0x58 +fn_8051B5A4 = .text:0x8051B5A4; // type:function size:0x10 +fn_8051B5B4 = .text:0x8051B5B4; // type:function size:0x54 +fn_8051B608 = .text:0x8051B608; // type:function size:0x5C +fn_8051B664 = .text:0x8051B664; // type:function size:0x6C +fn_8051B6D0 = .text:0x8051B6D0; // type:function size:0x28 +fn_8051B6F8 = .text:0x8051B6F8; // type:function size:0x10 +fn_8051B708 = .text:0x8051B708; // type:function size:0xC +fn_8051B714 = .text:0x8051B714; // type:function size:0x8 +fn_8051B71C = .text:0x8051B71C; // type:function size:0x3C +fn_8051B758 = .text:0x8051B758; // type:function size:0x14 +fn_8051B76C = .text:0x8051B76C; // type:function size:0x30 +fn_8051B79C = .text:0x8051B79C; // type:function size:0x30 +fn_8051B7CC = .text:0x8051B7CC; // type:function size:0x40 +fn_8051B80C = .text:0x8051B80C; // type:function size:0x154 +fn_8051B960 = .text:0x8051B960; // type:function size:0x50 +fn_8051B9B0 = .text:0x8051B9B0; // type:function size:0x9D4 +fn_8051C384 = .text:0x8051C384; // type:function size:0x14 +fn_8051C398 = .text:0x8051C398; // type:function size:0x14 +fn_8051C3AC = .text:0x8051C3AC; // type:function size:0x328 +fn_8051C6D4 = .text:0x8051C6D4; // type:function size:0xA0 +fn_8051C774 = .text:0x8051C774; // type:function size:0x7C +fn_8051C7F0 = .text:0x8051C7F0; // type:function size:0x44 +fn_8051C834 = .text:0x8051C834; // type:function size:0xB0 +fn_8051C8E4 = .text:0x8051C8E4; // type:function size:0xB4 +fn_8051C998 = .text:0x8051C998; // type:function size:0x10 +fn_8051C9A8 = .text:0x8051C9A8; // type:function size:0x104 +fn_8051CAAC = .text:0x8051CAAC; // type:function size:0xB4 +fn_8051CB60 = .text:0x8051CB60; // type:function size:0x48 +fn_8051CBA8 = .text:0x8051CBA8; // type:function size:0x14 +fn_8051CBBC = .text:0x8051CBBC; // type:function size:0x14 +fn_8051CBD0 = .text:0x8051CBD0; // type:function size:0x14 +fn_8051CBE4 = .text:0x8051CBE4; // type:function size:0x34 +fn_8051CC18 = .text:0x8051CC18; // type:function size:0x74 +fn_8051CC8C = .text:0x8051CC8C; // type:function size:0x34 +fn_8051CCC0 = .text:0x8051CCC0; // type:function size:0x8 +fn_8051CCC8 = .text:0x8051CCC8; // type:function size:0x8 +fn_8051CCD0 = .text:0x8051CCD0; // type:function size:0xC4 +fn_8051CD94 = .text:0x8051CD94; // type:function size:0x60 +fn_8051CDF4 = .text:0x8051CDF4; // type:function size:0xE8 +fn_8051CEDC = .text:0x8051CEDC; // type:function size:0x8 +fn_8051CEE4 = .text:0x8051CEE4; // type:function size:0x140 +fn_8051D024 = .text:0x8051D024; // type:function size:0x68 +fn_8051D08C = .text:0x8051D08C; // type:function size:0x68 +fn_8051D0F4 = .text:0x8051D0F4; // type:function size:0x14 +fn_8051D108 = .text:0x8051D108; // type:function size:0x8C +fn_8051D194 = .text:0x8051D194; // type:function size:0x14 +fn_8051D1A8 = .text:0x8051D1A8; // type:function size:0xBC +fn_8051D264 = .text:0x8051D264; // type:function size:0x74 +fn_8051D2D8 = .text:0x8051D2D8; // type:function size:0x54 +fn_8051D32C = .text:0x8051D32C; // type:function size:0x68 +fn_8051D394 = .text:0x8051D394; // type:function size:0x64 +fn_8051D3F8 = .text:0x8051D3F8; // type:function size:0x3C +fn_8051D434 = .text:0x8051D434; // type:function size:0x70 +fn_8051D4A4 = .text:0x8051D4A4; // type:function size:0x14C +fn_8051D5F0 = .text:0x8051D5F0; // type:function size:0x78 +fn_8051D668 = .text:0x8051D668; // type:function size:0x118 +fn_8051D780 = .text:0x8051D780; // type:function size:0x44 +fn_8051D7C4 = .text:0x8051D7C4; // type:function size:0x68 +fn_8051D82C = .text:0x8051D82C; // type:function size:0x68 +fn_8051D894 = .text:0x8051D894; // type:function size:0x78 +fn_8051D90C = .text:0x8051D90C; // type:function size:0xD8 +fn_8051D9E4 = .text:0x8051D9E4; // type:function size:0x44 +fn_8051DA28 = .text:0x8051DA28; // type:function size:0x60 +fn_8051DA88 = .text:0x8051DA88; // type:function size:0xB0 +fn_8051DB38 = .text:0x8051DB38; // type:function size:0xC0 +fn_8051DBF8 = .text:0x8051DBF8; // type:function size:0x168 +fn_8051DD60 = .text:0x8051DD60; // type:function size:0xDC +fn_8051DE3C = .text:0x8051DE3C; // type:function size:0x94 +fn_8051DED0 = .text:0x8051DED0; // type:function size:0x174 +fn_8051E044 = .text:0x8051E044; // type:function size:0x10 +fn_8051E054 = .text:0x8051E054; // type:function size:0xB0 +fn_8051E104 = .text:0x8051E104; // type:function size:0x54 +fn_8051E158 = .text:0x8051E158; // type:function size:0x90 +fn_8051E1E8 = .text:0x8051E1E8; // type:function size:0x74 +fn_8051E25C = .text:0x8051E25C; // type:function size:0x74 +fn_8051E2D0 = .text:0x8051E2D0; // type:function size:0x164 +fn_8051E434 = .text:0x8051E434; // type:function size:0x104 +fn_8051E538 = .text:0x8051E538; // type:function size:0x58 +fn_8051E590 = .text:0x8051E590; // type:function size:0x14 +fn_8051E5A4 = .text:0x8051E5A4; // type:function size:0x8 +fn_8051E5AC = .text:0x8051E5AC; // type:function size:0x4 +fn_8051E5B0 = .text:0x8051E5B0; // type:function size:0x40 +fn_8051E5F0 = .text:0x8051E5F0; // type:function size:0x80 +fn_8051E670 = .text:0x8051E670; // type:function size:0x4 +fn_8051E674 = .text:0x8051E674; // type:function size:0x50 +fn_8051E6C4 = .text:0x8051E6C4; // type:function size:0x8C +fn_8051E750 = .text:0x8051E750; // type:function size:0x58 +fn_8051E7A8 = .text:0x8051E7A8; // type:function size:0x60 +fn_8051E808 = .text:0x8051E808; // type:function size:0x58 +fn_8051E860 = .text:0x8051E860; // type:function size:0x58 +fn_8051E8B8 = .text:0x8051E8B8; // type:function size:0x90 +fn_8051E948 = .text:0x8051E948; // type:function size:0x4 +fn_8051E94C = .text:0x8051E94C; // type:function size:0x40 +fn_8051E98C = .text:0x8051E98C; // type:function size:0xAC +fn_8051EA38 = .text:0x8051EA38; // type:function size:0xCC +fn_8051EB04 = .text:0x8051EB04; // type:function size:0x14 +fn_8051EB18 = .text:0x8051EB18; // type:function size:0x120 +fn_8051EC38 = .text:0x8051EC38; // type:function size:0xC8 +fn_8051ED00 = .text:0x8051ED00; // type:function size:0x104 +fn_8051EE04 = .text:0x8051EE04; // type:function size:0x58 +fn_8051EE5C = .text:0x8051EE5C; // type:function size:0x1C +fn_8051EE78 = .text:0x8051EE78; // type:function size:0x24 +fn_8051EE9C = .text:0x8051EE9C; // type:function size:0x4 +fn_8051EEA0 = .text:0x8051EEA0; // type:function size:0x40 +fn_8051EEE0 = .text:0x8051EEE0; // type:function size:0x80 +fn_8051EF60 = .text:0x8051EF60; // type:function size:0x38 +fn_8051EF98 = .text:0x8051EF98; // type:function size:0x8 +fn_8051EFA0 = .text:0x8051EFA0; // type:function size:0x4 +fn_8051EFA4 = .text:0x8051EFA4; // type:function size:0x40 +fn_8051EFE4 = .text:0x8051EFE4; // type:function size:0xAC +fn_8051F090 = .text:0x8051F090; // type:function size:0xA4 +fn_8051F134 = .text:0x8051F134; // type:function size:0x2A8 +fn_8051F3DC = .text:0x8051F3DC; // type:function size:0x34 +fn_8051F410 = .text:0x8051F410; // type:function size:0x3C8 +fn_8051F7D8 = .text:0x8051F7D8; // type:function size:0x3C +fn_8051F814 = .text:0x8051F814; // type:function size:0x40 +fn_8051F854 = .text:0x8051F854; // type:function size:0x34 +fn_8051F888 = .text:0x8051F888; // type:function size:0x44 +fn_8051F8CC = .text:0x8051F8CC; // type:function size:0x3C +fn_8051F908 = .text:0x8051F908; // type:function size:0x70 +fn_8051F978 = .text:0x8051F978; // type:function size:0x38 +fn_8051F9B0 = .text:0x8051F9B0; // type:function size:0x60 +fn_8051FA10 = .text:0x8051FA10; // type:function size:0x18 +fn_8051FA28 = .text:0x8051FA28; // type:function size:0x10C +fn_8051FB34 = .text:0x8051FB34; // type:function size:0x8 +fn_8051FB3C = .text:0x8051FB3C; // type:function size:0x14 +fn_8051FB50 = .text:0x8051FB50; // type:function size:0x8 +fn_8051FB58 = .text:0x8051FB58; // type:function size:0x14 +fn_8051FB6C = .text:0x8051FB6C; // type:function size:0x68 +fn_8051FBD4 = .text:0x8051FBD4; // type:function size:0x4 +fn_8051FBD8 = .text:0x8051FBD8; // type:function size:0x54 +fn_8051FC2C = .text:0x8051FC2C; // type:function size:0x64 +fn_8051FC90 = .text:0x8051FC90; // type:function size:0x50 +fn_8051FCE0 = .text:0x8051FCE0; // type:function size:0x2C +fn_8051FD0C = .text:0x8051FD0C; // type:function size:0x4 +fn_8051FD10 = .text:0x8051FD10; // type:function size:0x1C +fn_8051FD2C = .text:0x8051FD2C; // type:function size:0xE4 +fn_8051FE10 = .text:0x8051FE10; // type:function size:0x50 +fn_8051FE60 = .text:0x8051FE60; // type:function size:0x50 +fn_8051FEB0 = .text:0x8051FEB0; // type:function size:0x90 +fn_8051FF40 = .text:0x8051FF40; // type:function size:0x3C +fn_8051FF7C = .text:0x8051FF7C; // type:function size:0x38 +fn_8051FFB4 = .text:0x8051FFB4; // type:function size:0x58 +fn_8052000C = .text:0x8052000C; // type:function size:0x4 +fn_80520010 = .text:0x80520010; // type:function size:0x20C +fn_8052021C = .text:0x8052021C; // type:function size:0x288 +fn_805204A4 = .text:0x805204A4; // type:function size:0xC0 +fn_80520564 = .text:0x80520564; // type:function size:0x70 +fn_805205D4 = .text:0x805205D4; // type:function size:0x254 +fn_80520828 = .text:0x80520828; // type:function size:0x14 +fn_8052083C = .text:0x8052083C; // type:function size:0x34 +fn_80520870 = .text:0x80520870; // type:function size:0x26C +fn_80520ADC = .text:0x80520ADC; // type:function size:0x5C +fn_80520B38 = .text:0x80520B38; // type:function size:0x140 +fn_80520C78 = .text:0x80520C78; // type:function size:0x4 +fn_80520C7C = .text:0x80520C7C; // type:function size:0xA4 +fn_80520D20 = .text:0x80520D20; // type:function size:0x4 +fn_80520D24 = .text:0x80520D24; // type:function size:0x50 +fn_80520D74 = .text:0x80520D74; // type:function size:0x4 +fn_80520D78 = .text:0x80520D78; // type:function size:0x8 +fn_80520D80 = .text:0x80520D80; // type:function size:0x58 +fn_80520DD8 = .text:0x80520DD8; // type:function size:0x68 +fn_80520E40 = .text:0x80520E40; // type:function size:0x17C +fn_80520FBC = .text:0x80520FBC; // type:function size:0x84 +fn_80521040 = .text:0x80521040; // type:function size:0xC +fn_8052104C = .text:0x8052104C; // type:function size:0x30 +fn_8052107C = .text:0x8052107C; // type:function size:0x64 +fn_805210E0 = .text:0x805210E0; // type:function size:0x5C +fn_8052113C = .text:0x8052113C; // type:function size:0x350 +Handle__20StoreMetadataManagerFP9DataArrayb = .text:0x8052148C; // type:function size:0x190 +fn_8052161C = .text:0x8052161C; // type:function size:0x3C +fn_80521658 = .text:0x80521658; // type:function size:0x80 +fn_805216D8 = .text:0x805216D8; // type:function size:0x60 +fn_80521738 = .text:0x80521738; // type:function size:0x58 +fn_80521790 = .text:0x80521790; // type:function size:0x60 +fn_805217F0 = .text:0x805217F0; // type:function size:0x58 +fn_80521848 = .text:0x80521848; // type:function size:0x58 +fn_805218A0 = .text:0x805218A0; // type:function size:0x58 +fn_805218F8 = .text:0x805218F8; // type:function size:0x58 +fn_80521950 = .text:0x80521950; // type:function size:0x60 +fn_805219B0 = .text:0x805219B0; // type:function size:0x58 +fn_80521A08 = .text:0x80521A08; // type:function size:0x3B8 +fn_80521DC0 = .text:0x80521DC0; // type:function size:0x6C +fn_80521E2C = .text:0x80521E2C; // type:function size:0x2C +fn_80521E58 = .text:0x80521E58; // type:function size:0x3B8 +fn_80522210 = .text:0x80522210; // type:function size:0x6C +fn_8052227C = .text:0x8052227C; // type:function size:0x2C +fn_805222A8 = .text:0x805222A8; // type:function size:0x68 +fn_80522310 = .text:0x80522310; // type:function size:0x2C +fn_8052233C = .text:0x8052233C; // type:function size:0x8 +fn_80522344 = .text:0x80522344; // type:function size:0x15C +fn_805224A0 = .text:0x805224A0; // type:function size:0x44 +fn_805224E4 = .text:0x805224E4; // type:function size:0x8 +fn_805224EC = .text:0x805224EC; // type:function size:0x108 +fn_805225F4 = .text:0x805225F4; // type:function size:0x5C +fn_80522650 = .text:0x80522650; // type:function size:0x10 +fn_80522660 = .text:0x80522660; // type:function size:0x15C +fn_805227BC = .text:0x805227BC; // type:function size:0x44 +fn_80522800 = .text:0x80522800; // type:function size:0x108 +fn_80522908 = .text:0x80522908; // type:function size:0x5C +fn_80522964 = .text:0x80522964; // type:function size:0x2C +fn_80522990 = .text:0x80522990; // type:function size:0x7C +fn_80522A0C = .text:0x80522A0C; // type:function size:0xB4 +fn_80522AC0 = .text:0x80522AC0; // type:function size:0x30 +fn_80522AF0 = .text:0x80522AF0; // type:function size:0x30 +fn_80522B20 = .text:0x80522B20; // type:function size:0x60 +fn_80522B80 = .text:0x80522B80; // type:function size:0x3C +fn_80522BBC = .text:0x80522BBC; // type:function size:0x44 +fn_80522C00 = .text:0x80522C00; // type:function size:0x3C +fn_80522C3C = .text:0x80522C3C; // type:function size:0x70 +fn_80522CAC = .text:0x80522CAC; // type:function size:0xF0 +fn_80522D9C = .text:0x80522D9C; // type:function size:0xF4 +fn_80522E90 = .text:0x80522E90; // type:function size:0x70 +fn_80522F00 = .text:0x80522F00; // type:function size:0x60 +fn_80522F60 = .text:0x80522F60; // type:function size:0x4 +fn_80522F64 = .text:0x80522F64; // type:function size:0xB8 +fn_8052301C = .text:0x8052301C; // type:function size:0x6C +fn_80523088 = .text:0x80523088; // type:function size:0x8C +fn_80523114 = .text:0x80523114; // type:function size:0x260 +fn_80523374 = .text:0x80523374; // type:function size:0x4 +fn_80523378 = .text:0x80523378; // type:function size:0x44 +fn_805233BC = .text:0x805233BC; // type:function size:0x30 +fn_805233EC = .text:0x805233EC; // type:function size:0x64 +fn_80523450 = .text:0x80523450; // type:function size:0x4C +fn_8052349C = .text:0x8052349C; // type:function size:0xE0 +fn_8052357C = .text:0x8052357C; // type:function size:0x190 +fn_8052370C = .text:0x8052370C; // type:function size:0xE4 +Handle__15StorePreviewMgrFP9DataArrayb = .text:0x805237F0; // type:function size:0x214 +fn_80523A04 = .text:0x80523A04; // type:function size:0x14 +fn_80523A18 = .text:0x80523A18; // type:function size:0x14 +fn_80523A2C = .text:0x80523A2C; // type:function size:0x64 +fn_80523A90 = .text:0x80523A90; // type:function size:0x6C +fn_80523AFC = .text:0x80523AFC; // type:function size:0x90 +fn_80523B8C = .text:0x80523B8C; // type:function size:0x90 +fn_80523C1C = .text:0x80523C1C; // type:function size:0xCC +fn_80523CE8 = .text:0x80523CE8; // type:function size:0xF0 +fn_80523DD8 = .text:0x80523DD8; // type:function size:0x4 +fn_80523DDC = .text:0x80523DDC; // type:function size:0x28 +Handle__12StreamPlayerFP9DataArrayb = .text:0x80523E04; // type:function size:0xB4 +fn_80523EB8 = .text:0x80523EB8; // type:function size:0xBC +fn_80523F74 = .text:0x80523F74; // type:function size:0x8C +fn_80524000 = .text:0x80524000; // type:function size:0x200 +fn_80524200 = .text:0x80524200; // type:function size:0x5C +fn_8052425C = .text:0x8052425C; // type:function size:0x94 +fn_805242F0 = .text:0x805242F0; // type:function size:0x4C +fn_8052433C = .text:0x8052433C; // type:function size:0x4C +fn_80524388 = .text:0x80524388; // type:function size:0x4 +fn_8052438C = .text:0x8052438C; // type:function size:0x4 +fn_80524390 = .text:0x80524390; // type:function size:0x4 +fn_80524394 = .text:0x80524394; // type:function size:0x64 +fn_805243F8 = .text:0x805243F8; // type:function size:0x1E0 +fn_805245D8 = .text:0x805245D8; // type:function size:0x64 +fn_8052463C = .text:0x8052463C; // type:function size:0x8 +fn_80524644 = .text:0x80524644; // type:function size:0x8 +fn_8052464C = .text:0x8052464C; // type:function size:0x4 +fn_80524650 = .text:0x80524650; // type:function size:0x194 +fn_805247E4 = .text:0x805247E4; // type:function size:0x1B4 +fn_80524998 = .text:0x80524998; // type:function size:0x8 +fn_805249A0 = .text:0x805249A0; // type:function size:0x110 +fn_80524AB0 = .text:0x80524AB0; // type:function size:0xC +fn_80524ABC = .text:0x80524ABC; // type:function size:0x10C +fn_80524BC8 = .text:0x80524BC8; // type:function size:0xB8 +fn_80524C80 = .text:0x80524C80; // type:function size:0x1C +fn_80524C9C = .text:0x80524C9C; // type:function size:0x58 +fn_80524CF4 = .text:0x80524CF4; // type:function size:0x48 +fn_80524D3C = .text:0x80524D3C; // type:function size:0xBC +fn_80524DF8 = .text:0x80524DF8; // type:function size:0x38 +fn_80524E30 = .text:0x80524E30; // type:function size:0x40 +fn_80524E70 = .text:0x80524E70; // type:function size:0x11C +fn_80524F8C = .text:0x80524F8C; // type:function size:0x2E8 +fn_80525274 = .text:0x80525274; // type:function size:0x88 +fn_805252FC = .text:0x805252FC; // type:function size:0x28 +fn_80525324 = .text:0x80525324; // type:function size:0x50 +fn_80525374 = .text:0x80525374; // type:function size:0x50 +fn_805253C4 = .text:0x805253C4; // type:function size:0x38 +fn_805253FC = .text:0x805253FC; // type:function size:0x50 +fn_8052544C = .text:0x8052544C; // type:function size:0x28 +fn_80525474 = .text:0x80525474; // type:function size:0xC +fn_80525480 = .text:0x80525480; // type:function size:0xC +Handle__10MemcardMgrFP9DataArrayb = .text:0x8052548C; // type:function size:0x318 +fn_805257A4 = .text:0x805257A4; // type:function size:0x4C +fn_805257F0 = .text:0x805257F0; // type:function size:0x14 +fn_80525804 = .text:0x80525804; // type:function size:0x14 +fn_80525818 = .text:0x80525818; // type:function size:0x8 +fn_80525820 = .text:0x80525820; // type:function size:0x8 +fn_80525828 = .text:0x80525828; // type:function size:0x8 +fn_80525830 = .text:0x80525830; // type:function size:0x144 +fn_80525974 = .text:0x80525974; // type:function size:0x100 +fn_80525A74 = .text:0x80525A74; // type:function size:0x5C +fn_80525AD0 = .text:0x80525AD0; // type:function size:0x5C +fn_80525B2C = .text:0x80525B2C; // type:function size:0xF8 +fn_80525C24 = .text:0x80525C24; // type:function size:0x80 +fn_80525CA4 = .text:0x80525CA4; // type:function size:0x74 +fn_80525D18 = .text:0x80525D18; // type:function size:0xB4 +fn_80525DCC = .text:0x80525DCC; // type:function size:0x30 +fn_80525DFC = .text:0x80525DFC; // type:function size:0x68 +fn_80525E64 = .text:0x80525E64; // type:function size:0x4C +fn_80525EB0 = .text:0x80525EB0; // type:function size:0x488 +fn_80526338 = .text:0x80526338; // type:function size:0x3C +fn_80526374 = .text:0x80526374; // type:function size:0x5C +fn_805263D0 = .text:0x805263D0; // type:function size:0x3C +fn_8052640C = .text:0x8052640C; // type:function size:0xC +fn_80526418 = .text:0x80526418; // type:function size:0x8C +fn_805264A4 = .text:0x805264A4; // type:function size:0x174 +fn_80526618 = .text:0x80526618; // type:function size:0xC +fn_80526624 = .text:0x80526624; // type:function size:0x58 +fn_8052667C = .text:0x8052667C; // type:function size:0x1C +fn_80526698 = .text:0x80526698; // type:function size:0xA0 +fn_80526738 = .text:0x80526738; // type:function size:0x54 +fn_8052678C = .text:0x8052678C; // type:function size:0x10 +fn_8052679C = .text:0x8052679C; // type:function size:0x38 +fn_805267D4 = .text:0x805267D4; // type:function size:0xE8 +fn_805268BC = .text:0x805268BC; // type:function size:0x6C +fn_80526928 = .text:0x80526928; // type:function size:0x90 +fn_805269B8 = .text:0x805269B8; // type:function size:0x10 +fn_805269C8 = .text:0x805269C8; // type:function size:0xC +fn_805269D4 = .text:0x805269D4; // type:function size:0xC +fn_805269E0 = .text:0x805269E0; // type:function size:0x1C8 +fn_80526BA8 = .text:0x80526BA8; // type:function size:0x8 +fn_80526BB0 = .text:0x80526BB0; // type:function size:0x84 +fn_80526C34 = .text:0x80526C34; // type:function size:0x10 +fn_80526C44 = .text:0x80526C44; // type:function size:0xC0 +fn_80526D04 = .text:0x80526D04; // type:function size:0x588 +fn_8052728C = .text:0x8052728C; // type:function size:0x78 +fn_80527304 = .text:0x80527304; // type:function size:0xCC +fn_805273D0 = .text:0x805273D0; // type:function size:0xC +fn_805273DC = .text:0x805273DC; // type:function size:0xA0 +fn_8052747C = .text:0x8052747C; // type:function size:0xC +fn_80527488 = .text:0x80527488; // type:function size:0x84 +fn_8052750C = .text:0x8052750C; // type:function size:0xD0 +fn_805275DC = .text:0x805275DC; // type:function size:0x64 +fn_80527640 = .text:0x80527640; // type:function size:0x20 +fn_80527660 = .text:0x80527660; // type:function size:0x1C +fn_8052767C = .text:0x8052767C; // type:function size:0xAC +fn_80527728 = .text:0x80527728; // type:function size:0x6C +fn_80527794 = .text:0x80527794; // type:function size:0xC +fn_805277A0 = .text:0x805277A0; // type:function size:0x7C +fn_8052781C = .text:0x8052781C; // type:function size:0x68 +fn_80527884 = .text:0x80527884; // type:function size:0x80 +fn_80527904 = .text:0x80527904; // type:function size:0x58 +fn_8052795C = .text:0x8052795C; // type:function size:0x58 +fn_805279B4 = .text:0x805279B4; // type:function size:0xC +fn_805279C0 = .text:0x805279C0; // type:function size:0x58 +fn_80527A18 = .text:0x80527A18; // type:function size:0x58 +fn_80527A70 = .text:0x80527A70; // type:function size:0x60 +fn_80527AD0 = .text:0x80527AD0; // type:function size:0x58 +fn_80527B28 = .text:0x80527B28; // type:function size:0x58 +fn_80527B80 = .text:0x80527B80; // type:function size:0x50 +fn_80527BD0 = .text:0x80527BD0; // type:function size:0xFC +fn_80527CCC = .text:0x80527CCC; // type:function size:0x58 +fn_80527D24 = .text:0x80527D24; // type:function size:0x4 +fn_80527D28 = .text:0x80527D28; // type:function size:0x40 +fn_80527D68 = .text:0x80527D68; // type:function size:0x80 +fn_80527DE8 = .text:0x80527DE8; // type:function size:0x8 +fn_80527DF0 = .text:0x80527DF0; // type:function size:0x4 +fn_80527DF4 = .text:0x80527DF4; // type:function size:0x40 +fn_80527E34 = .text:0x80527E34; // type:function size:0xAC +fn_80527EE0 = .text:0x80527EE0; // type:function size:0x44 +fn_80527F24 = .text:0x80527F24; // type:function size:0x3C +fn_80527F60 = .text:0x80527F60; // type:function size:0x70 +fn_80527FD0 = .text:0x80527FD0; // type:function size:0xBC +fn_8052808C = .text:0x8052808C; // type:function size:0x94 +fn_80528120 = .text:0x80528120; // type:function size:0x4 +fn_80528124 = .text:0x80528124; // type:function size:0x3C +fn_80528160 = .text:0x80528160; // type:function size:0x74 +Handle__10StorePanelFP9DataArrayb = .text:0x805281D4; // type:function size:0x438 +SyncProperty__10StorePanelFR8DataNodeP9DataArrayi6PropOp = .text:0x8052860C; // type:function size:0x190 +fn_8052879C = .text:0x8052879C; // type:function size:0xB0 +fn_8052884C = .text:0x8052884C; // type:function size:0x3B8 +fn_80528C04 = .text:0x80528C04; // type:function size:0x6C +fn_80528C70 = .text:0x80528C70; // type:function size:0x2C +fn_80528C9C = .text:0x80528C9C; // type:function size:0x15C +fn_80528DF8 = .text:0x80528DF8; // type:function size:0x44 +fn_80528E3C = .text:0x80528E3C; // type:function size:0x8 +fn_80528E44 = .text:0x80528E44; // type:function size:0x108 +fn_80528F4C = .text:0x80528F4C; // type:function size:0x5C +fn_80528FA8 = .text:0x80528FA8; // type:function size:0x10 +fn_80528FB8 = .text:0x80528FB8; // type:function size:0x14 +fn_80528FCC = .text:0x80528FCC; // type:function size:0x14 +fn_80528FE0 = .text:0x80528FE0; // type:function size:0x14 +fn_80528FF4 = .text:0x80528FF4; // type:function size:0x14 +fn_80529008 = .text:0x80529008; // type:function size:0x14 +fn_8052901C = .text:0x8052901C; // type:function size:0x54 +fn_80529070 = .text:0x80529070; // type:function size:0x58 +fn_805290C8 = .text:0x805290C8; // type:function size:0x84 +fn_8052914C = .text:0x8052914C; // type:function size:0x8 +fn_80529154 = .text:0x80529154; // type:function size:0x88 +fn_805291DC = .text:0x805291DC; // type:function size:0x94 +fn_80529270 = .text:0x80529270; // type:function size:0x4 +fn_80529274 = .text:0x80529274; // type:function size:0x8 +fn_8052927C = .text:0x8052927C; // type:function size:0x60 +fn_805292DC = .text:0x805292DC; // type:function size:0x14 +fn_805292F0 = .text:0x805292F0; // type:function size:0x44 +Handle__10WiiProfileFP9DataArrayb = .text:0x80529334; // type:function size:0x74 +__ct__13WiiProfileMgrFv = .text:0x805293A8; // type:function size:0xC0 +fn_80529468 = .text:0x80529468; // type:function size:0xA4 +fn_8052950C = .text:0x8052950C; // type:function size:0x4 +fn_80529510 = .text:0x80529510; // type:function size:0x88 +fn_80529598 = .text:0x80529598; // type:function size:0x3C +fn_805295D4 = .text:0x805295D4; // type:function size:0x28 +fn_805295FC = .text:0x805295FC; // type:function size:0x8 +fn_80529604 = .text:0x80529604; // type:function size:0x28 +fn_8052962C = .text:0x8052962C; // type:function size:0xC +fn_80529638 = .text:0x80529638; // type:function size:0xB0 +fn_805296E8 = .text:0x805296E8; // type:function size:0xC +fn_805296F4 = .text:0x805296F4; // type:function size:0x4 +fn_805296F8 = .text:0x805296F8; // type:function size:0x10C +fn_80529804 = .text:0x80529804; // type:function size:0x1C +fn_80529820 = .text:0x80529820; // type:function size:0x4C +fn_8052986C = .text:0x8052986C; // type:function size:0xB4 +fn_80529920 = .text:0x80529920; // type:function size:0x20 +fn_80529940 = .text:0x80529940; // type:function size:0x6C +fn_805299AC = .text:0x805299AC; // type:function size:0x80 +fn_80529A2C = .text:0x80529A2C; // type:function size:0x24 +fn_80529A50 = .text:0x80529A50; // type:function size:0x3C +fn_80529A8C = .text:0x80529A8C; // type:function size:0xAC +fn_80529B38 = .text:0x80529B38; // type:function size:0x74 +fn_80529BAC = .text:0x80529BAC; // type:function size:0x74 +fn_80529C20 = .text:0x80529C20; // type:function size:0x20 +fn_80529C40 = .text:0x80529C40; // type:function size:0x38 +fn_80529C78 = .text:0x80529C78; // type:function size:0x20 +fn_80529C98 = .text:0x80529C98; // type:function size:0x20 +fn_80529CB8 = .text:0x80529CB8; // type:function size:0x4C +fn_80529D04 = .text:0x80529D04; // type:function size:0x94 +fn_80529D98 = .text:0x80529D98; // type:function size:0x38 +fn_80529DD0 = .text:0x80529DD0; // type:function size:0x6C +fn_80529E3C = .text:0x80529E3C; // type:function size:0x24 +fn_80529E60 = .text:0x80529E60; // type:function size:0x4C +fn_80529EAC = .text:0x80529EAC; // type:function size:0x24 +fn_80529ED0 = .text:0x80529ED0; // type:function size:0x4C +fn_80529F1C = .text:0x80529F1C; // type:function size:0x24 +fn_80529F40 = .text:0x80529F40; // type:function size:0x38 +fn_80529F78 = .text:0x80529F78; // type:function size:0x4C +fn_80529FC4 = .text:0x80529FC4; // type:function size:0x24 +fn_80529FE8 = .text:0x80529FE8; // type:function size:0x20 +fn_8052A008 = .text:0x8052A008; // type:function size:0x24 +fn_8052A02C = .text:0x8052A02C; // type:function size:0x28 +fn_8052A054 = .text:0x8052A054; // type:function size:0x68 +fn_8052A0BC = .text:0x8052A0BC; // type:function size:0x38 +fn_8052A0F4 = .text:0x8052A0F4; // type:function size:0xC4 +fn_8052A1B8 = .text:0x8052A1B8; // type:function size:0x4C +fn_8052A204 = .text:0x8052A204; // type:function size:0x6C +fn_8052A270 = .text:0x8052A270; // type:function size:0x68 +fn_8052A2D8 = .text:0x8052A2D8; // type:function size:0x68 +fn_8052A340 = .text:0x8052A340; // type:function size:0x48 +fn_8052A388 = .text:0x8052A388; // type:function size:0x78 +fn_8052A400 = .text:0x8052A400; // type:function size:0x4C +fn_8052A44C = .text:0x8052A44C; // type:function size:0x14 +fn_8052A460 = .text:0x8052A460; // type:function size:0x14 +fn_8052A474 = .text:0x8052A474; // type:function size:0x14 +fn_8052A488 = .text:0x8052A488; // type:function size:0x14 +fn_8052A49C = .text:0x8052A49C; // type:function size:0x14 +fn_8052A4B0 = .text:0x8052A4B0; // type:function size:0x14 +fn_8052A4C4 = .text:0x8052A4C4; // type:function size:0x14 +fn_8052A4D8 = .text:0x8052A4D8; // type:function size:0x8 +fn_8052A4E0 = .text:0x8052A4E0; // type:function size:0x28 +__ct__13DataEventListFv = .text:0x8052A508; // type:function size:0x88 +fn_8052A590 = .text:0x8052A590; // type:function size:0x60 +fn_8052A5F0 = .text:0x8052A5F0; // type:function size:0x58 +fn_8052A648 = .text:0x8052A648; // type:function size:0x80 +fn_8052A6C8 = .text:0x8052A6C8; // type:function size:0x80 +fn_8052A748 = .text:0x8052A748; // type:function size:0x58 +fn_8052A7A0 = .text:0x8052A7A0; // type:function size:0x54 +fn_8052A7F4 = .text:0x8052A7F4; // type:function size:0x5C +fn_8052A850 = .text:0x8052A850; // type:function size:0x6C +fn_8052A8BC = .text:0x8052A8BC; // type:function size:0x28 +fn_8052A8E4 = .text:0x8052A8E4; // type:function size:0x8 +fn_8052A8EC = .text:0x8052A8EC; // type:function size:0x3C +fn_8052A928 = .text:0x8052A928; // type:function size:0x14 +fn_8052A93C = .text:0x8052A93C; // type:function size:0x58 +fn_8052A994 = .text:0x8052A994; // type:function size:0x80 +fn_8052AA14 = .text:0x8052AA14; // type:function size:0x80 +fn_8052AA94 = .text:0x8052AA94; // type:function size:0x58 +fn_8052AAEC = .text:0x8052AAEC; // type:function size:0x54 +fn_8052AB40 = .text:0x8052AB40; // type:function size:0x5C +fn_8052AB9C = .text:0x8052AB9C; // type:function size:0x6C +fn_8052AC08 = .text:0x8052AC08; // type:function size:0x28 +fn_8052AC30 = .text:0x8052AC30; // type:function size:0x8 +fn_8052AC38 = .text:0x8052AC38; // type:function size:0x8 +fn_8052AC40 = .text:0x8052AC40; // type:function size:0x3C +fn_8052AC7C = .text:0x8052AC7C; // type:function size:0x1C +fn_8052AC98 = .text:0x8052AC98; // type:function size:0x30 +fn_8052ACC8 = .text:0x8052ACC8; // type:function size:0x30 +fn_8052ACF8 = .text:0x8052ACF8; // type:function size:0x40 +fn_8052AD38 = .text:0x8052AD38; // type:function size:0x30 +fn_8052AD68 = .text:0x8052AD68; // type:function size:0x30 +fn_8052AD98 = .text:0x8052AD98; // type:function size:0x40 +fn_8052ADD8 = .text:0x8052ADD8; // type:function size:0x74 +fn_8052AE4C = .text:0x8052AE4C; // type:function size:0x54 +fn_8052AEA0 = .text:0x8052AEA0; // type:function size:0x5C +fn_8052AEFC = .text:0x8052AEFC; // type:function size:0x144 +fn_8052B040 = .text:0x8052B040; // type:function size:0x4 +fn_8052B044 = .text:0x8052B044; // type:function size:0x48 +fn_8052B08C = .text:0x8052B08C; // type:function size:0x4 +FindStartFromBack__13DataEventListCFf = .text:0x8052B090; // type:function size:0xB8 +fn_8052B148 = .text:0x8052B148; // type:function size:0xAC +fn_8052B1F4 = .text:0x8052B1F4; // type:function size:0x30 +fn_8052B224 = .text:0x8052B224; // type:function size:0xA8 +fn_8052B2CC = .text:0x8052B2CC; // type:function size:0x14 +fn_8052B2E0 = .text:0x8052B2E0; // type:function size:0x24 +fn_8052B304 = .text:0x8052B304; // type:function size:0x30 +fn_8052B334 = .text:0x8052B334; // type:function size:0xA8 +fn_8052B3DC = .text:0x8052B3DC; // type:function size:0x14 +fn_8052B3F0 = .text:0x8052B3F0; // type:function size:0x24 +Event__13DataEventListCFi = .text:0x8052B414; // type:function size:0x68 +fn_8052B47C = .text:0x8052B47C; // type:function size:0xAC +EndPtr__13DataEventListFi = .text:0x8052B528; // type:function size:0x44 +fn_8052B56C = .text:0x8052B56C; // type:function size:0xC4 +SecOffset__13DataEventListFf = .text:0x8052B630; // type:function size:0xFC +fn_8052B72C = .text:0x8052B72C; // type:function size:0x58 +fn_8052B784 = .text:0x8052B784; // type:function size:0x4C +fn_8052B7D0 = .text:0x8052B7D0; // type:function size:0x4 +fn_8052B7D4 = .text:0x8052B7D4; // type:function size:0x50 +fn_8052B824 = .text:0x8052B824; // type:function size:0x58 +fn_8052B87C = .text:0x8052B87C; // type:function size:0x30 +fn_8052B8AC = .text:0x8052B8AC; // type:function size:0x98 +fn_8052B944 = .text:0x8052B944; // type:function size:0x5C +fn_8052B9A0 = .text:0x8052B9A0; // type:function size:0x70 +fn_8052BA10 = .text:0x8052BA10; // type:function size:0x4C +fn_8052BA5C = .text:0x8052BA5C; // type:function size:0x4 +fn_8052BA60 = .text:0x8052BA60; // type:function size:0x50 +fn_8052BAB0 = .text:0x8052BAB0; // type:function size:0x58 +fn_8052BB08 = .text:0x8052BB08; // type:function size:0x30 +fn_8052BB38 = .text:0x8052BB38; // type:function size:0x98 +fn_8052BBD0 = .text:0x8052BBD0; // type:function size:0x5C +fn_8052BC2C = .text:0x8052BC2C; // type:function size:0x10 +fn_8052BC3C = .text:0x8052BC3C; // type:function size:0x38 +fn_8052BC74 = .text:0x8052BC74; // type:function size:0x44 +fn_8052BCB8 = .text:0x8052BCB8; // type:function size:0x70 +Clear__13DataEventListFv = .text:0x8052BD28; // type:function size:0x44 +fn_8052BD6C = .text:0x8052BD6C; // type:function size:0x58 +fn_8052BDC4 = .text:0x8052BDC4; // type:function size:0x58 +fn_8052BE1C = .text:0x8052BE1C; // type:function size:0x58 +fn_8052BE74 = .text:0x8052BE74; // type:function size:0xCC +fn_8052BF40 = .text:0x8052BF40; // type:function size:0x5C +fn_8052BF9C = .text:0x8052BF9C; // type:function size:0x5C +fn_8052BFF8 = .text:0x8052BFF8; // type:function size:0x60 +fn_8052C058 = .text:0x8052C058; // type:function size:0x58 +fn_8052C0B0 = .text:0x8052C0B0; // type:function size:0xCC +fn_8052C17C = .text:0x8052C17C; // type:function size:0x5C +fn_8052C1D8 = .text:0x8052C1D8; // type:function size:0x5C +fn_8052C234 = .text:0x8052C234; // type:function size:0x60 +fn_8052C294 = .text:0x8052C294; // type:function size:0x10 +fn_8052C2A4 = .text:0x8052C2A4; // type:function size:0x68 +fn_8052C30C = .text:0x8052C30C; // type:function size:0x2C +fn_8052C338 = .text:0x8052C338; // type:function size:0x68 +fn_8052C3A0 = .text:0x8052C3A0; // type:function size:0x2C +fn_8052C3CC = .text:0x8052C3CC; // type:function size:0x198 +fn_8052C564 = .text:0x8052C564; // type:function size:0x5C +fn_8052C5C0 = .text:0x8052C5C0; // type:function size:0x54 +fn_8052C614 = .text:0x8052C614; // type:function size:0x28 +fn_8052C63C = .text:0x8052C63C; // type:function size:0x68 +fn_8052C6A4 = .text:0x8052C6A4; // type:function size:0x114 +fn_8052C7B8 = .text:0x8052C7B8; // type:function size:0x5C +fn_8052C814 = .text:0x8052C814; // type:function size:0x54 +fn_8052C868 = .text:0x8052C868; // type:function size:0x198 +fn_8052CA00 = .text:0x8052CA00; // type:function size:0x5C +fn_8052CA5C = .text:0x8052CA5C; // type:function size:0x54 +fn_8052CAB0 = .text:0x8052CAB0; // type:function size:0x1C +fn_8052CACC = .text:0x8052CACC; // type:function size:0x28 +fn_8052CAF4 = .text:0x8052CAF4; // type:function size:0x68 +fn_8052CB5C = .text:0x8052CB5C; // type:function size:0x34 +fn_8052CB90 = .text:0x8052CB90; // type:function size:0x114 +fn_8052CCA4 = .text:0x8052CCA4; // type:function size:0x5C +fn_8052CD00 = .text:0x8052CD00; // type:function size:0x54 +DisplayEvents__FP13DataEventListff = .text:0x8052CD54; // type:function size:0x478 +fn_8052D1CC = .text:0x8052D1CC; // type:function size:0x60 +fn_8052D22C = .text:0x8052D22C; // type:function size:0x17C +Init__10MidiParserFv = .text:0x8052D3A8; // type:function size:0x158 +fn_8052D500 = .text:0x8052D500; // type:function size:0x34 +NewObject__10MidiParserFv = .text:0x8052D534; // type:function size:0x40 +StaticClassName__10MidiParserFv = .text:0x8052D574; // type:function size:0x4C +__ct__Q210MidiParser11PostProcessFv = .text:0x8052D5C0; // type:function size:0x44 +__ct__10MidiParserFv = .text:0x8052D604; // type:function size:0x138 +fn_8052D73C = .text:0x8052D73C; // type:function size:0x58 +fn_8052D794 = .text:0x8052D794; // type:function size:0x80 +fn_8052D814 = .text:0x8052D814; // type:function size:0x80 +fn_8052D894 = .text:0x8052D894; // type:function size:0x58 +fn_8052D8EC = .text:0x8052D8EC; // type:function size:0x54 +fn_8052D940 = .text:0x8052D940; // type:function size:0x5C +fn_8052D99C = .text:0x8052D99C; // type:function size:0x6C +fn_8052DA08 = .text:0x8052DA08; // type:function size:0x28 +fn_8052DA30 = .text:0x8052DA30; // type:function size:0x8 +fn_8052DA38 = .text:0x8052DA38; // type:function size:0x3C +fn_8052DA74 = .text:0x8052DA74; // type:function size:0x30 +fn_8052DAA4 = .text:0x8052DAA4; // type:function size:0x30 +fn_8052DAD4 = .text:0x8052DAD4; // type:function size:0x40 +__dt__10MidiParserFv = .text:0x8052DB14; // type:function size:0xD4 +SetTypeDef__10MidiParserFP9DataArray = .text:0x8052DBE8; // type:function size:0x374 +fn_8052DF5C = .text:0x8052DF5C; // type:function size:0x5C +fn_8052DFB8 = .text:0x8052DFB8; // type:function size:0x8 +fn_8052DFC0 = .text:0x8052DFC0; // type:function size:0x228 +InsertIdle__10MidiParserFfi = .text:0x8052E1E8; // type:function size:0x90 +fn_8052E278 = .text:0x8052E278; // type:function size:0x84 +fn_8052E2FC = .text:0x8052E2FC; // type:function size:0xF8 +fn_8052E3F4 = .text:0x8052E3F4; // type:function size:0x10 +fn_8052E404 = .text:0x8052E404; // type:function size:0x4 +fn_8052E408 = .text:0x8052E408; // type:function size:0x1F4 +GetIndex__10MidiParserFv = .text:0x8052E5FC; // type:function size:0x40 +SetIndex__10MidiParserFi = .text:0x8052E63C; // type:function size:0x188 +fn_8052E7C4 = .text:0x8052E7C4; // type:function size:0x454 +fn_8052EC18 = .text:0x8052EC18; // type:function size:0x58 +fn_8052EC70 = .text:0x8052EC70; // type:function size:0x4 +fn_8052EC74 = .text:0x8052EC74; // type:function size:0x50 +fn_8052ECC4 = .text:0x8052ECC4; // type:function size:0x58 +fn_8052ED1C = .text:0x8052ED1C; // type:function size:0x2C +SetGlobalVars__10MidiParserFiiRC8DataNode = .text:0x8052ED48; // type:function size:0x340 +HandleEvent__10MidiParserFiiRC8DataNode = .text:0x8052F088; // type:function size:0x88 +InsertDataEvent__10MidiParserFffRC8DataNode = .text:0x8052F110; // type:function size:0x118 +AddMessage__10MidiParserFffP9DataArrayi = .text:0x8052F228; // type:function size:0x2D4 +GetStart__10MidiParserFi = .text:0x8052F4FC; // type:function size:0xD0 +GetEnd__10MidiParserFi = .text:0x8052F5CC; // type:function size:0xD0 +Handle__10MidiParserFP9DataArrayb = .text:0x8052F69C; // type:function size:0x758 +OnInsertIdle__10MidiParserFP9DataArray = .text:0x8052FDF4; // type:function size:0x1FC +ConvertToBeats__10MidiParserFff = .text:0x8052FFF0; // type:function size:0x58 +FixGap__10MidiParserFPf = .text:0x80530048; // type:function size:0x104 +OnNextStartDelta__10MidiParserFP9DataArray = .text:0x8053014C; // type:function size:0x80 +OnGetStart__10MidiParserFP9DataArray = .text:0x805301CC; // type:function size:0x54 +OnGetEnd__10MidiParserFP9DataArray = .text:0x80530220; // type:function size:0x54 +OnDebugDraw__10MidiParserFP9DataArray = .text:0x80530274; // type:function size:0xFC +OnBeatToSecLength__10MidiParserFP9DataArray = .text:0x80530370; // type:function size:0x90 +OnSecOffsetAll__10MidiParserFP9DataArray = .text:0x80530400; // type:function size:0x54 +OnSecOffset__10MidiParserFP9DataArray = .text:0x80530454; // type:function size:0x94 +OnNextVal__10MidiParserFP9DataArray = .text:0x805304E8; // type:function size:0x68 +OnPrevVal__10MidiParserFP9DataArray = .text:0x80530550; // type:function size:0x98 +OnDelta__10MidiParserFP9DataArray = .text:0x805305E8; // type:function size:0x7C +OnHasSpace__10MidiParserFP9DataArray = .text:0x80530664; // type:function size:0xDC +OnRtComputeSpace__10MidiParserFP9DataArray = .text:0x80530740; // type:function size:0xEC +SyncProperty__10MidiParserFR8DataNodeP9DataArrayi6PropOp = .text:0x8053082C; // type:function size:0x334 +fn_80530B60 = .text:0x80530B60; // type:function size:0x58 +fn_80530BB8 = .text:0x80530BB8; // type:function size:0xCC +fn_80530C84 = .text:0x80530C84; // type:function size:0x5C +fn_80530CE0 = .text:0x80530CE0; // type:function size:0x5C +fn_80530D3C = .text:0x80530D3C; // type:function size:0x60 +fn_80530D9C = .text:0x80530D9C; // type:function size:0x5C +fn_80530DF8 = .text:0x80530DF8; // type:function size:0x10 +SetType__10MidiParserF6Symbol = .text:0x80530E08; // type:function size:0x134 +ClassName__10MidiParserCFv = .text:0x80530F3C; // type:function size:0x4 +fn_80530F40 = .text:0x80530F40; // type:function size:0x10 +fn_80530F50 = .text:0x80530F50; // type:function size:0x68 +fn_80530FB8 = .text:0x80530FB8; // type:function size:0x2C +fn_80530FE4 = .text:0x80530FE4; // type:function size:0x18C +fn_80531170 = .text:0x80531170; // type:function size:0x5C +fn_805311CC = .text:0x805311CC; // type:function size:0x54 +fn_80531220 = .text:0x80531220; // type:function size:0x28 +fn_80531248 = .text:0x80531248; // type:function size:0x68 +fn_805312B0 = .text:0x805312B0; // type:function size:0x114 +fn_805313C4 = .text:0x805313C4; // type:function size:0x5C +fn_80531420 = .text:0x80531420; // type:function size:0x54 +fn_80531474 = .text:0x80531474; // type:function size:0x60 +fn_805314D4 = .text:0x805314D4; // type:function size:0x14 +fn_805314E8 = .text:0x805314E8; // type:function size:0x14 +fn_805314FC = .text:0x805314FC; // type:function size:0x14 +fn_80531510 = .text:0x80531510; // type:function size:0x14 +fn_80531524 = .text:0x80531524; // type:function size:0x14 +fn_80531538 = .text:0x80531538; // type:function size:0x14 +fn_8053154C = .text:0x8053154C; // type:function size:0x14 +fn_80531560 = .text:0x80531560; // type:function size:0x14 +fn_80531574 = .text:0x80531574; // type:function size:0x60 +fn_805315D4 = .text:0x805315D4; // type:function size:0x178 +fn_8053174C = .text:0x8053174C; // type:function size:0x58 +fn_805317A4 = .text:0x805317A4; // type:function size:0x80 +fn_80531824 = .text:0x80531824; // type:function size:0x80 +fn_805318A4 = .text:0x805318A4; // type:function size:0x58 +fn_805318FC = .text:0x805318FC; // type:function size:0x54 +fn_80531950 = .text:0x80531950; // type:function size:0x5C +fn_805319AC = .text:0x805319AC; // type:function size:0x6C +fn_80531A18 = .text:0x80531A18; // type:function size:0x28 +fn_80531A40 = .text:0x80531A40; // type:function size:0x8 +fn_80531A48 = .text:0x80531A48; // type:function size:0x58 +fn_80531AA0 = .text:0x80531AA0; // type:function size:0x8 +fn_80531AA8 = .text:0x80531AA8; // type:function size:0x3C +fn_80531AE4 = .text:0x80531AE4; // type:function size:0x58 +fn_80531B3C = .text:0x80531B3C; // type:function size:0x80 +fn_80531BBC = .text:0x80531BBC; // type:function size:0x80 +fn_80531C3C = .text:0x80531C3C; // type:function size:0x3C +fn_80531C78 = .text:0x80531C78; // type:function size:0x14 +fn_80531C8C = .text:0x80531C8C; // type:function size:0x30 +fn_80531CBC = .text:0x80531CBC; // type:function size:0x30 +fn_80531CEC = .text:0x80531CEC; // type:function size:0x40 +fn_80531D2C = .text:0x80531D2C; // type:function size:0x30 +fn_80531D5C = .text:0x80531D5C; // type:function size:0x30 +fn_80531D8C = .text:0x80531D8C; // type:function size:0x40 +__dt__13MidiParserMgrFv = .text:0x80531DCC; // type:function size:0xB0 +fn_80531E7C = .text:0x80531E7C; // type:function size:0xB8 +fn_80531F34 = .text:0x80531F34; // type:function size:0xA4 +fn_80531FD8 = .text:0x80531FD8; // type:function size:0x94 +fn_8053206C = .text:0x8053206C; // type:function size:0x38 +fn_805320A4 = .text:0x805320A4; // type:function size:0x58 +fn_805320FC = .text:0x805320FC; // type:function size:0x4 +fn_80532100 = .text:0x80532100; // type:function size:0x50 +fn_80532150 = .text:0x80532150; // type:function size:0x58 +fn_805321A8 = .text:0x805321A8; // type:function size:0x4 +fn_805321AC = .text:0x805321AC; // type:function size:0x50 +fn_805321FC = .text:0x805321FC; // type:function size:0x58 +fn_80532254 = .text:0x80532254; // type:function size:0x7C +fn_805322D0 = .text:0x805322D0; // type:function size:0x4 +fn_805322D4 = .text:0x805322D4; // type:function size:0x4 +fn_805322D8 = .text:0x805322D8; // type:function size:0x90 +fn_80532368 = .text:0x80532368; // type:function size:0x4 +fn_8053236C = .text:0x8053236C; // type:function size:0x40 +fn_805323AC = .text:0x805323AC; // type:function size:0x80 +fn_8053242C = .text:0x8053242C; // type:function size:0x138 +fn_80532564 = .text:0x80532564; // type:function size:0x4 +fn_80532568 = .text:0x80532568; // type:function size:0xA8 +fn_80532610 = .text:0x80532610; // type:function size:0xDC +fn_805326EC = .text:0x805326EC; // type:function size:0x38 +fn_80532724 = .text:0x80532724; // type:function size:0x54 +fn_80532778 = .text:0x80532778; // type:function size:0x104 +fn_8053287C = .text:0x8053287C; // type:function size:0x148 +fn_805329C4 = .text:0x805329C4; // type:function size:0x4 +fn_805329C8 = .text:0x805329C8; // type:function size:0x88 +fn_80532A50 = .text:0x80532A50; // type:function size:0x2C +fn_80532A7C = .text:0x80532A7C; // type:function size:0x10 +fn_80532A8C = .text:0x80532A8C; // type:function size:0x44 +fn_80532AD0 = .text:0x80532AD0; // type:function size:0x30 +fn_80532B00 = .text:0x80532B00; // type:function size:0x144 +fn_80532C44 = .text:0x80532C44; // type:function size:0x44 +fn_80532C88 = .text:0x80532C88; // type:function size:0x4C +fn_80532CD4 = .text:0x80532CD4; // type:function size:0xC0 +SyncProperty__13MidiParserMgrFR8DataNodeP9DataArrayi6PropOp = .text:0x80532D94; // type:function size:0xAC +fn_80532E40 = .text:0x80532E40; // type:function size:0x68 +fn_80532EA8 = .text:0x80532EA8; // type:function size:0xCC +fn_80532F74 = .text:0x80532F74; // type:function size:0x5C +fn_80532FD0 = .text:0x80532FD0; // type:function size:0x5C +fn_8053302C = .text:0x8053302C; // type:function size:0x60 +fn_8053308C = .text:0x8053308C; // type:function size:0x5C +fn_805330E8 = .text:0x805330E8; // type:function size:0x114 +fn_805331FC = .text:0x805331FC; // type:function size:0x5C +fn_80533258 = .text:0x80533258; // type:function size:0x54 +fn_805332AC = .text:0x805332AC; // type:function size:0x5C +fn_80533308 = .text:0x80533308; // type:function size:0x10 +fn_80533318 = .text:0x80533318; // type:function size:0x180 +fn_80533498 = .text:0x80533498; // type:function size:0x34 +fn_805334CC = .text:0x805334CC; // type:function size:0xD8 +fn_805335A4 = .text:0x805335A4; // type:function size:0x60 +fn_80533604 = .text:0x80533604; // type:function size:0x5C +fn_80533660 = .text:0x80533660; // type:function size:0x8 +fn_80533668 = .text:0x80533668; // type:function size:0x8 +fn_80533670 = .text:0x80533670; // type:function size:0x58 +fn_805336C8 = .text:0x805336C8; // type:function size:0x80 +fn_80533748 = .text:0x80533748; // type:function size:0x58 +fn_805337A0 = .text:0x805337A0; // type:function size:0x80 +fn_80533820 = .text:0x80533820; // type:function size:0x80 +fn_805338A0 = .text:0x805338A0; // type:function size:0x58 +fn_805338F8 = .text:0x805338F8; // type:function size:0x10 +fn_80533908 = .text:0x80533908; // type:function size:0x54 +fn_8053395C = .text:0x8053395C; // type:function size:0x5C +fn_805339B8 = .text:0x805339B8; // type:function size:0x6C +fn_80533A24 = .text:0x80533A24; // type:function size:0x28 +fn_80533A4C = .text:0x80533A4C; // type:function size:0x10 +fn_80533A5C = .text:0x80533A5C; // type:function size:0xC +fn_80533A68 = .text:0x80533A68; // type:function size:0x8 +fn_80533A70 = .text:0x80533A70; // type:function size:0x3C +fn_80533AAC = .text:0x80533AAC; // type:function size:0x14 +fn_80533AC0 = .text:0x80533AC0; // type:function size:0x30 +fn_80533AF0 = .text:0x80533AF0; // type:function size:0x30 +fn_80533B20 = .text:0x80533B20; // type:function size:0x40 +fn_80533B60 = .text:0x80533B60; // type:function size:0xD0 +fn_80533C30 = .text:0x80533C30; // type:function size:0x78 +fn_80533CA8 = .text:0x80533CA8; // type:function size:0xE4 +fn_80533D8C = .text:0x80533D8C; // type:function size:0x64 +fn_80533DF0 = .text:0x80533DF0; // type:function size:0x74 +fn_80533E64 = .text:0x80533E64; // type:function size:0x5C +fn_80533EC0 = .text:0x80533EC0; // type:function size:0xA4 +fn_80533F64 = .text:0x80533F64; // type:function size:0x8 +fn_80533F6C = .text:0x80533F6C; // type:function size:0x4C +fn_80533FB8 = .text:0x80533FB8; // type:function size:0x150 +fn_80534108 = .text:0x80534108; // type:function size:0x28 +fn_80534130 = .text:0x80534130; // type:function size:0x50 +fn_80534180 = .text:0x80534180; // type:function size:0x30 +fn_805341B0 = .text:0x805341B0; // type:function size:0xD0 +fn_80534280 = .text:0x80534280; // type:function size:0x124 +fn_805343A4 = .text:0x805343A4; // type:function size:0x11C +fn_805344C0 = .text:0x805344C0; // type:function size:0xA8 +fn_80534568 = .text:0x80534568; // type:function size:0x4D8 +fn_80534A40 = .text:0x80534A40; // type:function size:0x3C +fn_80534A7C = .text:0x80534A7C; // type:function size:0x58 +fn_80534AD4 = .text:0x80534AD4; // type:function size:0x4 +fn_80534AD8 = .text:0x80534AD8; // type:function size:0x88 +fn_80534B60 = .text:0x80534B60; // type:function size:0x2C +fn_80534B8C = .text:0x80534B8C; // type:function size:0x1C +fn_80534BA8 = .text:0x80534BA8; // type:function size:0x9C +fn_80534C44 = .text:0x80534C44; // type:function size:0x78 +fn_80534CBC = .text:0x80534CBC; // type:function size:0xD8 +fn_80534D94 = .text:0x80534D94; // type:function size:0xC +fn_80534DA0 = .text:0x80534DA0; // type:function size:0xB0 +fn_80534E50 = .text:0x80534E50; // type:function size:0xC +fn_80534E5C = .text:0x80534E5C; // type:function size:0x98 +fn_80534EF4 = .text:0x80534EF4; // type:function size:0xEC +fn_80534FE0 = .text:0x80534FE0; // type:function size:0xAC +fn_8053508C = .text:0x8053508C; // type:function size:0x1C +fn_805350A8 = .text:0x805350A8; // type:function size:0x64 +fn_8053510C = .text:0x8053510C; // type:function size:0xC +fn_80535118 = .text:0x80535118; // type:function size:0x44 +fn_8053515C = .text:0x8053515C; // type:function size:0x78 +fn_805351D4 = .text:0x805351D4; // type:function size:0xAC +fn_80535280 = .text:0x80535280; // type:function size:0x6C +fn_805352EC = .text:0x805352EC; // type:function size:0xC +fn_805352F8 = .text:0x805352F8; // type:function size:0x48 +fn_80535340 = .text:0x80535340; // type:function size:0x7C +fn_805353BC = .text:0x805353BC; // type:function size:0x78 +fn_80535434 = .text:0x80535434; // type:function size:0x98 +fn_805354CC = .text:0x805354CC; // type:function size:0x7C +fn_80535548 = .text:0x80535548; // type:function size:0x58 +fn_805355A0 = .text:0x805355A0; // type:function size:0x64 +fn_80535604 = .text:0x80535604; // type:function size:0x28 +fn_8053562C = .text:0x8053562C; // type:function size:0x68 +fn_80535694 = .text:0x80535694; // type:function size:0xC +fn_805356A0 = .text:0x805356A0; // type:function size:0x68 +fn_80535708 = .text:0x80535708; // type:function size:0x4 +fn_8053570C = .text:0x8053570C; // type:function size:0x3C +fn_80535748 = .text:0x80535748; // type:function size:0x40 +fn_80535788 = .text:0x80535788; // type:function size:0x8C +fn_80535814 = .text:0x80535814; // type:function size:0x8 +fn_8053581C = .text:0x8053581C; // type:function size:0x2C +fn_80535848 = .text:0x80535848; // type:function size:0x58 +fn_805358A0 = .text:0x805358A0; // type:function size:0x28 +fn_805358C8 = .text:0x805358C8; // type:function size:0x68 +fn_80535930 = .text:0x80535930; // type:function size:0x114 +fn_80535A44 = .text:0x80535A44; // type:function size:0x5C +fn_80535AA0 = .text:0x80535AA0; // type:function size:0x5C +fn_80535AFC = .text:0x80535AFC; // type:function size:0x54 +fn_80535B50 = .text:0x80535B50; // type:function size:0x5C +fn_80535BAC = .text:0x80535BAC; // type:function size:0x5C +fn_80535C08 = .text:0x80535C08; // type:function size:0xC +fn_80535C14 = .text:0x80535C14; // type:function size:0x4C +__ct__12MidiReceiverFv = .text:0x80535C60; // type:function size:0x18 +fn_80535C78 = .text:0x80535C78; // type:function size:0x74 +fn_80535CEC = .text:0x80535CEC; // type:function size:0x8 +fn_80535CF4 = .text:0x80535CF4; // type:function size:0x8 +fn_80535CFC = .text:0x80535CFC; // type:function size:0x30 +fn_80535D2C = .text:0x80535D2C; // type:function size:0x70 +fn_80535D9C = .text:0x80535D9C; // type:function size:0xE8 +fn_80535E84 = .text:0x80535E84; // type:function size:0x40 +fn_80535EC4 = .text:0x80535EC4; // type:function size:0x118 +fn_80535FDC = .text:0x80535FDC; // type:function size:0x58 +fn_80536034 = .text:0x80536034; // type:function size:0x8 +fn_8053603C = .text:0x8053603C; // type:function size:0x4 +fn_80536040 = .text:0x80536040; // type:function size:0x40 +fn_80536080 = .text:0x80536080; // type:function size:0x80 +fn_80536100 = .text:0x80536100; // type:function size:0x140 +fn_80536240 = .text:0x80536240; // type:function size:0x4 +fn_80536244 = .text:0x80536244; // type:function size:0x50 +fn_80536294 = .text:0x80536294; // type:function size:0x34 +fn_805362C8 = .text:0x805362C8; // type:function size:0x4 +fn_805362CC = .text:0x805362CC; // type:function size:0x8 +fn_805362D4 = .text:0x805362D4; // type:function size:0x48 +fn_8053631C = .text:0x8053631C; // type:function size:0x8 +fn_80536324 = .text:0x80536324; // type:function size:0x4 +fn_80536328 = .text:0x80536328; // type:function size:0x4C +fn_80536374 = .text:0x80536374; // type:function size:0x4 +fn_80536378 = .text:0x80536378; // type:function size:0x120 +fn_80536498 = .text:0x80536498; // type:function size:0x34 +fn_805364CC = .text:0x805364CC; // type:function size:0x48 +fn_80536514 = .text:0x80536514; // type:function size:0x4C +fn_80536560 = .text:0x80536560; // type:function size:0x70 +fn_805365D0 = .text:0x805365D0; // type:function size:0x34 +fn_80536604 = .text:0x80536604; // type:function size:0x3C +fn_80536640 = .text:0x80536640; // type:function size:0x50 +fn_80536690 = .text:0x80536690; // type:function size:0x64 +fn_805366F4 = .text:0x805366F4; // type:function size:0x144 +fn_80536838 = .text:0x80536838; // type:function size:0x68 +fn_805368A0 = .text:0x805368A0; // type:function size:0xC +fn_805368AC = .text:0x805368AC; // type:function size:0x14C +fn_805369F8 = .text:0x805369F8; // type:function size:0x58 +fn_80536A50 = .text:0x80536A50; // type:function size:0x60 +fn_80536AB0 = .text:0x80536AB0; // type:function size:0x58 +fn_80536B08 = .text:0x80536B08; // type:function size:0x58 +fn_80536B60 = .text:0x80536B60; // type:function size:0x44 +fn_80536BA4 = .text:0x80536BA4; // type:function size:0x3C +fn_80536BE0 = .text:0x80536BE0; // type:function size:0x70 +fn_80536C50 = .text:0x80536C50; // type:function size:0x8C +fn_80536CDC = .text:0x80536CDC; // type:function size:0xB8 +fn_80536D94 = .text:0x80536D94; // type:function size:0x4 +fn_80536D98 = .text:0x80536D98; // type:function size:0x25C +fn_80536FF4 = .text:0x80536FF4; // type:function size:0x70 +fn_80537064 = .text:0x80537064; // type:function size:0xC4 +fn_80537128 = .text:0x80537128; // type:function size:0x8C +fn_805371B4 = .text:0x805371B4; // type:function size:0x1F4 +fn_805373A8 = .text:0x805373A8; // type:function size:0x18C +fn_80537534 = .text:0x80537534; // type:function size:0x148 +fn_8053767C = .text:0x8053767C; // type:function size:0x4C +fn_805376C8 = .text:0x805376C8; // type:function size:0x108 +fn_805377D0 = .text:0x805377D0; // type:function size:0xA0 +fn_80537870 = .text:0x80537870; // type:function size:0x88 +fn_805378F8 = .text:0x805378F8; // type:function size:0x58 +fn_80537950 = .text:0x80537950; // type:function size:0x21C +fn_80537B6C = .text:0x80537B6C; // type:function size:0x10 +fn_80537B7C = .text:0x80537B7C; // type:function size:0x188 +fn_80537D04 = .text:0x80537D04; // type:function size:0x200 +fn_80537F04 = .text:0x80537F04; // type:function size:0x58 +fn_80537F5C = .text:0x80537F5C; // type:function size:0x5C +fn_80537FB8 = .text:0x80537FB8; // type:function size:0x8 +fn_80537FC0 = .text:0x80537FC0; // type:function size:0x34 +fn_80537FF4 = .text:0x80537FF4; // type:function size:0x30 +fn_80538024 = .text:0x80538024; // type:function size:0x148 +fn_8053816C = .text:0x8053816C; // type:function size:0x70 +fn_805381DC = .text:0x805381DC; // type:function size:0xA0 +fn_8053827C = .text:0x8053827C; // type:function size:0x5C +fn_805382D8 = .text:0x805382D8; // type:function size:0x44 +fn_8053831C = .text:0x8053831C; // type:function size:0x5C +fn_80538378 = .text:0x80538378; // type:function size:0x8 +fn_80538380 = .text:0x80538380; // type:function size:0x8 +fn_80538388 = .text:0x80538388; // type:function size:0x8 +fn_80538390 = .text:0x80538390; // type:function size:0x8 +fn_80538398 = .text:0x80538398; // type:function size:0x8 +fn_805383A0 = .text:0x805383A0; // type:function size:0x8 +fn_805383A8 = .text:0x805383A8; // type:function size:0x8 +fn_805383B0 = .text:0x805383B0; // type:function size:0x8 +fn_805383B8 = .text:0x805383B8; // type:function size:0x8 +fn_805383C0 = .text:0x805383C0; // type:function size:0x8 +fn_805383C8 = .text:0x805383C8; // type:function size:0x8 +fn_805383D0 = .text:0x805383D0; // type:function size:0x8 +fn_805383D8 = .text:0x805383D8; // type:function size:0x8 +fn_805383E0 = .text:0x805383E0; // type:function size:0x8 +fn_805383E8 = .text:0x805383E8; // type:function size:0x8 +fn_805383F0 = .text:0x805383F0; // type:function size:0x8 +fn_805383F8 = .text:0x805383F8; // type:function size:0x8 +fn_80538400 = .text:0x80538400; // type:function size:0x8 +fn_80538408 = .text:0x80538408; // type:function size:0x3B8 +fn_805387C0 = .text:0x805387C0; // type:function size:0x6C +fn_8053882C = .text:0x8053882C; // type:function size:0x2C +fn_80538858 = .text:0x80538858; // type:function size:0x8 +fn_80538860 = .text:0x80538860; // type:function size:0x8C +fn_805388EC = .text:0x805388EC; // type:function size:0x34 +fn_80538920 = .text:0x80538920; // type:function size:0x84 +fn_805389A4 = .text:0x805389A4; // type:function size:0xC +fn_805389B0 = .text:0x805389B0; // type:function size:0x15C +fn_80538B0C = .text:0x80538B0C; // type:function size:0x44 +fn_80538B50 = .text:0x80538B50; // type:function size:0x108 +fn_80538C58 = .text:0x80538C58; // type:function size:0x5C +fn_80538CB4 = .text:0x80538CB4; // type:function size:0x10 +fn_80538CC4 = .text:0x80538CC4; // type:function size:0xB0 +fn_80538D74 = .text:0x80538D74; // type:function size:0x24 +fn_80538D98 = .text:0x80538D98; // type:function size:0x168 +fn_80538F00 = .text:0x80538F00; // type:function size:0x58 +fn_80538F58 = .text:0x80538F58; // type:function size:0x58 +fn_80538FB0 = .text:0x80538FB0; // type:function size:0x60 +fn_80539010 = .text:0x80539010; // type:function size:0x58 +fn_80539068 = .text:0x80539068; // type:function size:0x58 +fn_805390C0 = .text:0x805390C0; // type:function size:0x58 +fn_80539118 = .text:0x80539118; // type:function size:0x60 +fn_80539178 = .text:0x80539178; // type:function size:0x58 +fn_805391D0 = .text:0x805391D0; // type:function size:0x30 +fn_80539200 = .text:0x80539200; // type:function size:0x30 +fn_80539230 = .text:0x80539230; // type:function size:0x60 +fn_80539290 = .text:0x80539290; // type:function size:0x30 +fn_805392C0 = .text:0x805392C0; // type:function size:0x30 +fn_805392F0 = .text:0x805392F0; // type:function size:0x60 +fn_80539350 = .text:0x80539350; // type:function size:0xA4 +fn_805393F4 = .text:0x805393F4; // type:function size:0xC +fn_80539400 = .text:0x80539400; // type:function size:0xC +fn_8053940C = .text:0x8053940C; // type:function size:0xC +fn_80539418 = .text:0x80539418; // type:function size:0x128 +fn_80539540 = .text:0x80539540; // type:function size:0x8 +fn_80539548 = .text:0x80539548; // type:function size:0x14C +fn_80539694 = .text:0x80539694; // type:function size:0x3C +fn_805396D0 = .text:0x805396D0; // type:function size:0x34 +fn_80539704 = .text:0x80539704; // type:function size:0x3C +fn_80539740 = .text:0x80539740; // type:function size:0xD8 +fn_80539818 = .text:0x80539818; // type:function size:0x18 +fn_80539830 = .text:0x80539830; // type:function size:0xE0 +fn_80539910 = .text:0x80539910; // type:function size:0x94 +fn_805399A4 = .text:0x805399A4; // type:function size:0xC0 +fn_80539A64 = .text:0x80539A64; // type:function size:0x8 +AddScreen__6SplashFPCc = .text:0x80539A6C; // type:function size:0x54 +fn_80539AC0 = .text:0x80539AC0; // type:function size:0x4 +fn_80539AC4 = .text:0x80539AC4; // type:function size:0x54 +fn_80539B18 = .text:0x80539B18; // type:function size:0x64 +fn_80539B7C = .text:0x80539B7C; // type:function size:0x50 +fn_80539BCC = .text:0x80539BCC; // type:function size:0x4 +fn_80539BD0 = .text:0x80539BD0; // type:function size:0x160 +fn_80539D30 = .text:0x80539D30; // type:function size:0x4 +fn_80539D34 = .text:0x80539D34; // type:function size:0x44 +fn_80539D78 = .text:0x80539D78; // type:function size:0x6C +fn_80539DE4 = .text:0x80539DE4; // type:function size:0x2C +fn_80539E10 = .text:0x80539E10; // type:function size:0x8 +fn_80539E18 = .text:0x80539E18; // type:function size:0x4 +fn_80539E1C = .text:0x80539E1C; // type:function size:0x54 +fn_80539E70 = .text:0x80539E70; // type:function size:0x64 +fn_80539ED4 = .text:0x80539ED4; // type:function size:0x50 +fn_80539F24 = .text:0x80539F24; // type:function size:0x4 +fn_80539F28 = .text:0x80539F28; // type:function size:0xA0 +fn_80539FC8 = .text:0x80539FC8; // type:function size:0x30 +fn_80539FF8 = .text:0x80539FF8; // type:function size:0x38 +fn_8053A030 = .text:0x8053A030; // type:function size:0xA8 +fn_8053A0D8 = .text:0x8053A0D8; // type:function size:0xC8 +fn_8053A1A0 = .text:0x8053A1A0; // type:function size:0x84 +fn_8053A224 = .text:0x8053A224; // type:function size:0x10C +fn_8053A330 = .text:0x8053A330; // type:function size:0x134 +fn_8053A464 = .text:0x8053A464; // type:function size:0x10C +fn_8053A570 = .text:0x8053A570; // type:function size:0x4 +fn_8053A574 = .text:0x8053A574; // type:function size:0x44 +fn_8053A5B8 = .text:0x8053A5B8; // type:function size:0x6C +fn_8053A624 = .text:0x8053A624; // type:function size:0x2C +fn_8053A650 = .text:0x8053A650; // type:function size:0x8 +fn_8053A658 = .text:0x8053A658; // type:function size:0x4C +fn_8053A6A4 = .text:0x8053A6A4; // type:function size:0x70 +fn_8053A714 = .text:0x8053A714; // type:function size:0x30 +fn_8053A744 = .text:0x8053A744; // type:function size:0x2C +fn_8053A770 = .text:0x8053A770; // type:function size:0x1F8 +fn_8053A968 = .text:0x8053A968; // type:function size:0x30 +fn_8053A998 = .text:0x8053A998; // type:function size:0x228 +fn_8053ABC0 = .text:0x8053ABC0; // type:function size:0x50 +fn_8053AC10 = .text:0x8053AC10; // type:function size:0x68 +fn_8053AC78 = .text:0x8053AC78; // type:function size:0x68 +fn_8053ACE0 = .text:0x8053ACE0; // type:function size:0x108 +fn_8053ADE8 = .text:0x8053ADE8; // type:function size:0x80 +fn_8053AE68 = .text:0x8053AE68; // type:function size:0x68 +fn_8053AED0 = .text:0x8053AED0; // type:function size:0x104 +fn_8053AFD4 = .text:0x8053AFD4; // type:function size:0xB8 +fn_8053B08C = .text:0x8053B08C; // type:function size:0x8 +fn_8053B094 = .text:0x8053B094; // type:function size:0x88 +fn_8053B11C = .text:0x8053B11C; // type:function size:0x4 +fn_8053B120 = .text:0x8053B120; // type:function size:0x180 +fn_8053B2A0 = .text:0x8053B2A0; // type:function size:0x40 +fn_8053B2E0 = .text:0x8053B2E0; // type:function size:0x104 +fn_8053B3E4 = .text:0x8053B3E4; // type:function size:0xD8 +fn_8053B4BC = .text:0x8053B4BC; // type:function size:0xC +fn_8053B4C8 = .text:0x8053B4C8; // type:function size:0xB8 +fn_8053B580 = .text:0x8053B580; // type:function size:0x40 +fn_8053B5C0 = .text:0x8053B5C0; // type:function size:0x54 +fn_8053B614 = .text:0x8053B614; // type:function size:0x80 +fn_8053B694 = .text:0x8053B694; // type:function size:0x108 +fn_8053B79C = .text:0x8053B79C; // type:function size:0x10 +fn_8053B7AC = .text:0x8053B7AC; // type:function size:0x54 +fn_8053B800 = .text:0x8053B800; // type:function size:0x6C +fn_8053B86C = .text:0x8053B86C; // type:function size:0x8 +fn_8053B874 = .text:0x8053B874; // type:function size:0x40 +fn_8053B8B4 = .text:0x8053B8B4; // type:function size:0x90 +fn_8053B944 = .text:0x8053B944; // type:function size:0x230 +fn_8053BB74 = .text:0x8053BB74; // type:function size:0x210 +fn_8053BD84 = .text:0x8053BD84; // type:function size:0xB0 +fn_8053BE34 = .text:0x8053BE34; // type:function size:0x144 +fn_8053BF78 = .text:0x8053BF78; // type:function size:0x4 +fn_8053BF7C = .text:0x8053BF7C; // type:function size:0x14 +fn_8053BF90 = .text:0x8053BF90; // type:function size:0x14 +fn_8053BFA4 = .text:0x8053BFA4; // type:function size:0x14 +fn_8053BFB8 = .text:0x8053BFB8; // type:function size:0x14 +fn_8053BFCC = .text:0x8053BFCC; // type:function size:0x14 +fn_8053BFE0 = .text:0x8053BFE0; // type:function size:0x14 +fn_8053BFF4 = .text:0x8053BFF4; // type:function size:0x14 +fn_8053C008 = .text:0x8053C008; // type:function size:0x14 +fn_8053C01C = .text:0x8053C01C; // type:function size:0x14 +fn_8053C030 = .text:0x8053C030; // type:function size:0x14 +fn_8053C044 = .text:0x8053C044; // type:function size:0x14 +fn_8053C058 = .text:0x8053C058; // type:function size:0x8 +fn_8053C060 = .text:0x8053C060; // type:function size:0x8 +fn_8053C068 = .text:0x8053C068; // type:function size:0x8 +fn_8053C070 = .text:0x8053C070; // type:function size:0x8 +fn_8053C078 = .text:0x8053C078; // type:function size:0x8 +fn_8053C080 = .text:0x8053C080; // type:function size:0x8 +fn_8053C088 = .text:0x8053C088; // type:function size:0x8 +fn_8053C090 = .text:0x8053C090; // type:function size:0x14 +fn_8053C0A4 = .text:0x8053C0A4; // type:function size:0xC +fn_8053C0B0 = .text:0x8053C0B0; // type:function size:0x20 +fn_8053C0D0 = .text:0x8053C0D0; // type:function size:0x84 +fn_8053C154 = .text:0x8053C154; // type:function size:0x118 +fn_8053C26C = .text:0x8053C26C; // type:function size:0x84 +fn_8053C2F0 = .text:0x8053C2F0; // type:function size:0xC0 +fn_8053C3B0 = .text:0x8053C3B0; // type:function size:0xB8 +fn_8053C468 = .text:0x8053C468; // type:function size:0x64 +fn_8053C4CC = .text:0x8053C4CC; // type:function size:0x66C +fn_8053CB38 = .text:0x8053CB38; // type:function size:0xC +fn_8053CB44 = .text:0x8053CB44; // type:function size:0x434 +fn_8053CF78 = .text:0x8053CF78; // type:function size:0x4 +fn_8053CF7C = .text:0x8053CF7C; // type:function size:0x40 +fn_8053CFBC = .text:0x8053CFBC; // type:function size:0x344 +fn_8053D300 = .text:0x8053D300; // type:function size:0x4C +fn_8053D34C = .text:0x8053D34C; // type:function size:0x90 +fn_8053D3DC = .text:0x8053D3DC; // type:function size:0x228 +fn_8053D604 = .text:0x8053D604; // type:function size:0x8 +fn_8053D60C = .text:0x8053D60C; // type:function size:0x60 +fn_8053D66C = .text:0x8053D66C; // type:function size:0x60 +fn_8053D6CC = .text:0x8053D6CC; // type:function size:0x48 +fn_8053D714 = .text:0x8053D714; // type:function size:0x10C +fn_8053D820 = .text:0x8053D820; // type:function size:0x100 +fn_8053D920 = .text:0x8053D920; // type:function size:0x74 +fn_8053D994 = .text:0x8053D994; // type:function size:0x30 +fn_8053D9C4 = .text:0x8053D9C4; // type:function size:0x264 +fn_8053DC28 = .text:0x8053DC28; // type:function size:0x290 +fn_8053DEB8 = .text:0x8053DEB8; // type:function size:0x10 +fn_8053DEC8 = .text:0x8053DEC8; // type:function size:0x10 +fn_8053DED8 = .text:0x8053DED8; // type:function size:0xC +fn_8053DEE4 = .text:0x8053DEE4; // type:function size:0x8 +fn_8053DEEC = .text:0x8053DEEC; // type:function size:0x8 +fn_8053DEF4 = .text:0x8053DEF4; // type:function size:0xAC +fn_8053DFA0 = .text:0x8053DFA0; // type:function size:0x154 +fn_8053E0F4 = .text:0x8053E0F4; // type:function size:0x24 +fn_8053E118 = .text:0x8053E118; // type:function size:0x34 +fn_8053E14C = .text:0x8053E14C; // type:function size:0x48 +fn_8053E194 = .text:0x8053E194; // type:function size:0x4C +fn_8053E1E0 = .text:0x8053E1E0; // type:function size:0x34 +fn_8053E214 = .text:0x8053E214; // type:function size:0x44 +fn_8053E258 = .text:0x8053E258; // type:function size:0x4C +fn_8053E2A4 = .text:0x8053E2A4; // type:function size:0x398 +fn_8053E63C = .text:0x8053E63C; // type:function size:0x198 +fn_8053E7D4 = .text:0x8053E7D4; // type:function size:0x378 +fn_8053EB4C = .text:0x8053EB4C; // type:function size:0x50 +fn_8053EB9C = .text:0x8053EB9C; // type:function size:0xD0 +fn_8053EC6C = .text:0x8053EC6C; // type:function size:0x78 +fn_8053ECE4 = .text:0x8053ECE4; // type:function size:0xDC +fn_8053EDC0 = .text:0x8053EDC0; // type:function size:0x4C +fn_8053EE0C = .text:0x8053EE0C; // type:function size:0xA8 +fn_8053EEB4 = .text:0x8053EEB4; // type:function size:0x30 +fn_8053EEE4 = .text:0x8053EEE4; // type:function size:0x4 +fn_8053EEE8 = .text:0x8053EEE8; // type:function size:0x5C +fn_8053EF44 = .text:0x8053EF44; // type:function size:0x88 +fn_8053EFCC = .text:0x8053EFCC; // type:function size:0x1F4 +fn_8053F1C0 = .text:0x8053F1C0; // type:function size:0x80 +fn_8053F240 = .text:0x8053F240; // type:function size:0x4 +fn_8053F244 = .text:0x8053F244; // type:function size:0x90 +fn_8053F2D4 = .text:0x8053F2D4; // type:function size:0x4 +fn_8053F2D8 = .text:0x8053F2D8; // type:function size:0x40 +fn_8053F318 = .text:0x8053F318; // type:function size:0x8C +fn_8053F3A4 = .text:0x8053F3A4; // type:function size:0x8 +fn_8053F3AC = .text:0x8053F3AC; // type:function size:0x2C +fn_8053F3D8 = .text:0x8053F3D8; // type:function size:0x58 +fn_8053F430 = .text:0x8053F430; // type:function size:0x28 +fn_8053F458 = .text:0x8053F458; // type:function size:0x68 +fn_8053F4C0 = .text:0x8053F4C0; // type:function size:0x4F8 +fn_8053F9B8 = .text:0x8053F9B8; // type:function size:0xAC +fn_8053FA64 = .text:0x8053FA64; // type:function size:0x6C +fn_8053FAD0 = .text:0x8053FAD0; // type:function size:0xF8 +fn_8053FBC8 = .text:0x8053FBC8; // type:function size:0x10 +fn_8053FBD8 = .text:0x8053FBD8; // type:function size:0x10 +fn_8053FBE8 = .text:0x8053FBE8; // type:function size:0xC +fn_8053FBF4 = .text:0x8053FBF4; // type:function size:0xC +fn_8053FC00 = .text:0x8053FC00; // type:function size:0x48 +fn_8053FC48 = .text:0x8053FC48; // type:function size:0xF4 +fn_8053FD3C = .text:0x8053FD3C; // type:function size:0x58 +fn_8053FD94 = .text:0x8053FD94; // type:function size:0x54 +fn_8053FDE8 = .text:0x8053FDE8; // type:function size:0x58 +fn_8053FE40 = .text:0x8053FE40; // type:function size:0x20 +fn_8053FE60 = .text:0x8053FE60; // type:function size:0x20 +fn_8053FE80 = .text:0x8053FE80; // type:function size:0x54 +fn_8053FED4 = .text:0x8053FED4; // type:function size:0x1A4 +fn_80540078 = .text:0x80540078; // type:function size:0x10 +fn_80540088 = .text:0x80540088; // type:function size:0x74 +fn_805400FC = .text:0x805400FC; // type:function size:0xC0 +fn_805401BC = .text:0x805401BC; // type:function size:0x8 +fn_805401C4 = .text:0x805401C4; // type:function size:0x184 +fn_80540348 = .text:0x80540348; // type:function size:0x1F8 +fn_80540540 = .text:0x80540540; // type:function size:0x14C +fn_8054068C = .text:0x8054068C; // type:function size:0x2C +fn_805406B8 = .text:0x805406B8; // type:function size:0x84 +fn_8054073C = .text:0x8054073C; // type:function size:0x2C +fn_80540768 = .text:0x80540768; // type:function size:0x68 +fn_805407D0 = .text:0x805407D0; // type:function size:0x58 +fn_80540828 = .text:0x80540828; // type:function size:0x160 +fn_80540988 = .text:0x80540988; // type:function size:0x28 +fn_805409B0 = .text:0x805409B0; // type:function size:0x5C +fn_80540A0C = .text:0x80540A0C; // type:function size:0x60 +fn_80540A6C = .text:0x80540A6C; // type:function size:0x134 +fn_80540BA0 = .text:0x80540BA0; // type:function size:0x4 +fn_80540BA4 = .text:0x80540BA4; // type:function size:0x18C +fn_80540D30 = .text:0x80540D30; // type:function size:0x54 +fn_80540D84 = .text:0x80540D84; // type:function size:0x28 +fn_80540DAC = .text:0x80540DAC; // type:function size:0x68 +fn_80540E14 = .text:0x80540E14; // type:function size:0x8 +fn_80540E1C = .text:0x80540E1C; // type:function size:0x8 +fn_80540E24 = .text:0x80540E24; // type:function size:0x8 +fn_80540E2C = .text:0x80540E2C; // type:function size:0x8 +fn_80540E34 = .text:0x80540E34; // type:function size:0x8 +fn_80540E3C = .text:0x80540E3C; // type:function size:0x8 +fn_80540E44 = .text:0x80540E44; // type:function size:0x8 +fn_80540E4C = .text:0x80540E4C; // type:function size:0x8 +fn_80540E54 = .text:0x80540E54; // type:function size:0x8 +fn_80540E5C = .text:0x80540E5C; // type:function size:0x8 +fn_80540E64 = .text:0x80540E64; // type:function size:0x8 +fn_80540E6C = .text:0x80540E6C; // type:function size:0x8 +fn_80540E74 = .text:0x80540E74; // type:function size:0x8 +fn_80540E7C = .text:0x80540E7C; // type:function size:0x8 +fn_80540E84 = .text:0x80540E84; // type:function size:0x8 +fn_80540E8C = .text:0x80540E8C; // type:function size:0x8 +fn_80540E94 = .text:0x80540E94; // type:function size:0x14 +fn_80540EA8 = .text:0x80540EA8; // type:function size:0x14 +fn_80540EBC = .text:0x80540EBC; // type:function size:0x8 +fn_80540EC4 = .text:0x80540EC4; // type:function size:0x8 +fn_80540ECC = .text:0x80540ECC; // type:function size:0x8 +fn_80540ED4 = .text:0x80540ED4; // type:function size:0x8 +fn_80540EDC = .text:0x80540EDC; // type:function size:0x8 +fn_80540EE4 = .text:0x80540EE4; // type:function size:0x8 +fn_80540EEC = .text:0x80540EEC; // type:function size:0x8 +fn_80540EF4 = .text:0x80540EF4; // type:function size:0x8 +fn_80540EFC = .text:0x80540EFC; // type:function size:0x8 +fn_80540F04 = .text:0x80540F04; // type:function size:0x8 +fn_80540F0C = .text:0x80540F0C; // type:function size:0x8 +fn_80540F14 = .text:0x80540F14; // type:function size:0x8 +fn_80540F1C = .text:0x80540F1C; // type:function size:0x8 +fn_80540F24 = .text:0x80540F24; // type:function size:0x14 +fn_80540F38 = .text:0x80540F38; // type:function size:0x14 +fn_80540F4C = .text:0x80540F4C; // type:function size:0x14 +fn_80540F60 = .text:0x80540F60; // type:function size:0x14 +fn_80540F74 = .text:0x80540F74; // type:function size:0x14 +fn_80540F88 = .text:0x80540F88; // type:function size:0x14 +fn_80540F9C = .text:0x80540F9C; // type:function size:0x14 +fn_80540FB0 = .text:0x80540FB0; // type:function size:0x14 +fn_80540FC4 = .text:0x80540FC4; // type:function size:0x14 +fn_80540FD8 = .text:0x80540FD8; // type:function size:0x14 +fn_80540FEC = .text:0x80540FEC; // type:function size:0x14 +fn_80541000 = .text:0x80541000; // type:function size:0x14 +fn_80541014 = .text:0x80541014; // type:function size:0x14 +fn_80541028 = .text:0x80541028; // type:function size:0x14 +fn_8054103C = .text:0x8054103C; // type:function size:0x14 +fn_80541050 = .text:0x80541050; // type:function size:0x8 +fn_80541058 = .text:0x80541058; // type:function size:0x8 +fn_80541060 = .text:0x80541060; // type:function size:0x8 +fn_80541068 = .text:0x80541068; // type:function size:0x8 +fn_80541070 = .text:0x80541070; // type:function size:0x8 +fn_80541078 = .text:0x80541078; // type:function size:0x254 +fn_805412CC = .text:0x805412CC; // type:function size:0x80 +fn_8054134C = .text:0x8054134C; // type:function size:0x68 +fn_805413B4 = .text:0x805413B4; // type:function size:0x150 +fn_80541504 = .text:0x80541504; // type:function size:0x1C0 +fn_805416C4 = .text:0x805416C4; // type:function size:0x8 +fn_805416CC = .text:0x805416CC; // type:function size:0x4 +fn_805416D0 = .text:0x805416D0; // type:function size:0x32C +fn_805419FC = .text:0x805419FC; // type:function size:0x40 +fn_80541A3C = .text:0x80541A3C; // type:function size:0x104 +fn_80541B40 = .text:0x80541B40; // type:function size:0x14 +fn_80541B54 = .text:0x80541B54; // type:function size:0xB4 +fn_80541C08 = .text:0x80541C08; // type:function size:0x68 +fn_80541C70 = .text:0x80541C70; // type:function size:0x14 +fn_80541C84 = .text:0x80541C84; // type:function size:0x14 +fn_80541C98 = .text:0x80541C98; // type:function size:0x14 +fn_80541CAC = .text:0x80541CAC; // type:function size:0xB8 +fn_80541D64 = .text:0x80541D64; // type:function size:0x8 +fn_80541D6C = .text:0x80541D6C; // type:function size:0x34 +fn_80541DA0 = .text:0x80541DA0; // type:function size:0xD0 +fn_80541E70 = .text:0x80541E70; // type:function size:0x94 +fn_80541F04 = .text:0x80541F04; // type:function size:0x4C +fn_80541F50 = .text:0x80541F50; // type:function size:0xE4 +fn_80542034 = .text:0x80542034; // type:function size:0x14 +fn_80542048 = .text:0x80542048; // type:function size:0x18 +fn_80542060 = .text:0x80542060; // type:function size:0x11C +fn_8054217C = .text:0x8054217C; // type:function size:0x14 +fn_80542190 = .text:0x80542190; // type:function size:0xC +fn_8054219C = .text:0x8054219C; // type:function size:0x14 +fn_805421B0 = .text:0x805421B0; // type:function size:0x8 +fn_805421B8 = .text:0x805421B8; // type:function size:0x1A0 +fn_80542358 = .text:0x80542358; // type:function size:0x64 +fn_805423BC = .text:0x805423BC; // type:function size:0x58 +fn_80542414 = .text:0x80542414; // type:function size:0x58 +fn_8054246C = .text:0x8054246C; // type:function size:0x60 +fn_805424CC = .text:0x805424CC; // type:function size:0x58 +fn_80542524 = .text:0x80542524; // type:function size:0x58 +fn_8054257C = .text:0x8054257C; // type:function size:0x30 +fn_805425AC = .text:0x805425AC; // type:function size:0x30 +fn_805425DC = .text:0x805425DC; // type:function size:0x60 +fn_8054263C = .text:0x8054263C; // type:function size:0x3C +fn_80542678 = .text:0x80542678; // type:function size:0x10 +fn_80542688 = .text:0x80542688; // type:function size:0x64 +fn_805426EC = .text:0x805426EC; // type:function size:0x58 +fn_80542744 = .text:0x80542744; // type:function size:0x58 +fn_8054279C = .text:0x8054279C; // type:function size:0x60 +fn_805427FC = .text:0x805427FC; // type:function size:0x58 +fn_80542854 = .text:0x80542854; // type:function size:0x58 +fn_805428AC = .text:0x805428AC; // type:function size:0x30 +fn_805428DC = .text:0x805428DC; // type:function size:0x30 +fn_8054290C = .text:0x8054290C; // type:function size:0x60 +fn_8054296C = .text:0x8054296C; // type:function size:0x3C +fn_805429A8 = .text:0x805429A8; // type:function size:0x14 +fn_805429BC = .text:0x805429BC; // type:function size:0x40 +fn_805429FC = .text:0x805429FC; // type:function size:0xD0 +fn_80542ACC = .text:0x80542ACC; // type:function size:0x38 +fn_80542B04 = .text:0x80542B04; // type:function size:0x80 +fn_80542B84 = .text:0x80542B84; // type:function size:0xA4 +fn_80542C28 = .text:0x80542C28; // type:function size:0xD4 +fn_80542CFC = .text:0x80542CFC; // type:function size:0xA8 +fn_80542DA4 = .text:0x80542DA4; // type:function size:0x58 +fn_80542DFC = .text:0x80542DFC; // type:function size:0x10 +fn_80542E0C = .text:0x80542E0C; // type:function size:0x304 +fn_80543110 = .text:0x80543110; // type:function size:0x9C0 +fn_80543AD0 = .text:0x80543AD0; // type:function size:0xC0 +fn_80543B90 = .text:0x80543B90; // type:function size:0xD0 +fn_80543C60 = .text:0x80543C60; // type:function size:0x68 +fn_80543CC8 = .text:0x80543CC8; // type:function size:0x2C +fn_80543CF4 = .text:0x80543CF4; // type:function size:0x60 +fn_80543D54 = .text:0x80543D54; // type:function size:0x44 +fn_80543D98 = .text:0x80543D98; // type:function size:0x3C +fn_80543DD4 = .text:0x80543DD4; // type:function size:0x30 +fn_80543E04 = .text:0x80543E04; // type:function size:0x8 +fn_80543E0C = .text:0x80543E0C; // type:function size:0x6C +fn_80543E78 = .text:0x80543E78; // type:function size:0x2EC +fn_80544164 = .text:0x80544164; // type:function size:0x4 +fn_80544168 = .text:0x80544168; // type:function size:0x4 +fn_8054416C = .text:0x8054416C; // type:function size:0x64 +fn_805441D0 = .text:0x805441D0; // type:function size:0x140 +fn_80544310 = .text:0x80544310; // type:function size:0x80 +fn_80544390 = .text:0x80544390; // type:function size:0x68 +fn_805443F8 = .text:0x805443F8; // type:function size:0x8C +fn_80544484 = .text:0x80544484; // type:function size:0x6C +fn_805444F0 = .text:0x805444F0; // type:function size:0x34 +fn_80544524 = .text:0x80544524; // type:function size:0x44 +fn_80544568 = .text:0x80544568; // type:function size:0x48 +fn_805445B0 = .text:0x805445B0; // type:function size:0x30 +fn_805445E0 = .text:0x805445E0; // type:function size:0x4C +fn_8054462C = .text:0x8054462C; // type:function size:0x70 +fn_8054469C = .text:0x8054469C; // type:function size:0x30 +fn_805446CC = .text:0x805446CC; // type:function size:0x2C +fn_805446F8 = .text:0x805446F8; // type:function size:0x44 +fn_8054473C = .text:0x8054473C; // type:function size:0x3C +fn_80544778 = .text:0x80544778; // type:function size:0x30 +fn_805447A8 = .text:0x805447A8; // type:function size:0x8 +fn_805447B0 = .text:0x805447B0; // type:function size:0x6C +fn_8054481C = .text:0x8054481C; // type:function size:0x2EC +fn_80544B08 = .text:0x80544B08; // type:function size:0x4 +fn_80544B0C = .text:0x80544B0C; // type:function size:0x4 +fn_80544B10 = .text:0x80544B10; // type:function size:0x4 +fn_80544B14 = .text:0x80544B14; // type:function size:0x64 +fn_80544B78 = .text:0x80544B78; // type:function size:0x140 +fn_80544CB8 = .text:0x80544CB8; // type:function size:0x80 +fn_80544D38 = .text:0x80544D38; // type:function size:0x68 +fn_80544DA0 = .text:0x80544DA0; // type:function size:0x8C +fn_80544E2C = .text:0x80544E2C; // type:function size:0x6C +fn_80544E98 = .text:0x80544E98; // type:function size:0x34 +fn_80544ECC = .text:0x80544ECC; // type:function size:0x44 +fn_80544F10 = .text:0x80544F10; // type:function size:0x48 +fn_80544F58 = .text:0x80544F58; // type:function size:0x4 +fn_80544F5C = .text:0x80544F5C; // type:function size:0x30 +fn_80544F8C = .text:0x80544F8C; // type:function size:0x4C +fn_80544FD8 = .text:0x80544FD8; // type:function size:0x70 +fn_80545048 = .text:0x80545048; // type:function size:0x30 +fn_80545078 = .text:0x80545078; // type:function size:0x2C +fn_805450A4 = .text:0x805450A4; // type:function size:0x144 +fn_805451E8 = .text:0x805451E8; // type:function size:0x4 +fn_805451EC = .text:0x805451EC; // type:function size:0x44 +fn_80545230 = .text:0x80545230; // type:function size:0x3C +fn_8054526C = .text:0x8054526C; // type:function size:0x34 +fn_805452A0 = .text:0x805452A0; // type:function size:0x54 +fn_805452F4 = .text:0x805452F4; // type:function size:0x4C +fn_80545340 = .text:0x80545340; // type:function size:0x44 +fn_80545384 = .text:0x80545384; // type:function size:0x30 +fn_805453B4 = .text:0x805453B4; // type:function size:0x2C +fn_805453E0 = .text:0x805453E0; // type:function size:0x2C +fn_8054540C = .text:0x8054540C; // type:function size:0x1D0 +fn_805455DC = .text:0x805455DC; // type:function size:0x148 +fn_80545724 = .text:0x80545724; // type:function size:0x18 +fn_8054573C = .text:0x8054573C; // type:function size:0xAC +fn_805457E8 = .text:0x805457E8; // type:function size:0x58 +fn_80545840 = .text:0x80545840; // type:function size:0x6C +fn_805458AC = .text:0x805458AC; // type:function size:0x9C +fn_80545948 = .text:0x80545948; // type:function size:0x30 +fn_80545978 = .text:0x80545978; // type:function size:0x44 +fn_805459BC = .text:0x805459BC; // type:function size:0x3C +fn_805459F8 = .text:0x805459F8; // type:function size:0x34 +fn_80545A2C = .text:0x80545A2C; // type:function size:0x54 +fn_80545A80 = .text:0x80545A80; // type:function size:0x4C +fn_80545ACC = .text:0x80545ACC; // type:function size:0x4 +fn_80545AD0 = .text:0x80545AD0; // type:function size:0x54 +fn_80545B24 = .text:0x80545B24; // type:function size:0x64 +fn_80545B88 = .text:0x80545B88; // type:function size:0x50 +fn_80545BD8 = .text:0x80545BD8; // type:function size:0x10 +fn_80545BE8 = .text:0x80545BE8; // type:function size:0x44 +fn_80545C2C = .text:0x80545C2C; // type:function size:0x44 +fn_80545C70 = .text:0x80545C70; // type:function size:0x30 +fn_80545CA0 = .text:0x80545CA0; // type:function size:0x2C +fn_80545CCC = .text:0x80545CCC; // type:function size:0x2C +fn_80545CF8 = .text:0x80545CF8; // type:function size:0x1D0 +fn_80545EC8 = .text:0x80545EC8; // type:function size:0x148 +fn_80546010 = .text:0x80546010; // type:function size:0xAC +fn_805460BC = .text:0x805460BC; // type:function size:0x58 +fn_80546114 = .text:0x80546114; // type:function size:0x6C +fn_80546180 = .text:0x80546180; // type:function size:0x9C +fn_8054621C = .text:0x8054621C; // type:function size:0x30 +fn_8054624C = .text:0x8054624C; // type:function size:0x40 +fn_8054628C = .text:0x8054628C; // type:function size:0x40 +fn_805462CC = .text:0x805462CC; // type:function size:0x14 +fn_805462E0 = .text:0x805462E0; // type:function size:0x14 +fn_805462F4 = .text:0x805462F4; // type:function size:0x14 +fn_80546308 = .text:0x80546308; // type:function size:0x14 +fn_8054631C = .text:0x8054631C; // type:function size:0x14 +fn_80546330 = .text:0x80546330; // type:function size:0x14 +fn_80546344 = .text:0x80546344; // type:function size:0x14 +fn_80546358 = .text:0x80546358; // type:function size:0x14 +fn_8054636C = .text:0x8054636C; // type:function size:0x14 +fn_80546380 = .text:0x80546380; // type:function size:0x14 +fn_80546394 = .text:0x80546394; // type:function size:0x340 +fn_805466D4 = .text:0x805466D4; // type:function size:0x6C +fn_80546740 = .text:0x80546740; // type:function size:0x98 +fn_805467D8 = .text:0x805467D8; // type:function size:0x48 +fn_80546820 = .text:0x80546820; // type:function size:0x4C +fn_8054686C = .text:0x8054686C; // type:function size:0xBC +fn_80546928 = .text:0x80546928; // type:function size:0xE4 +fn_80546A0C = .text:0x80546A0C; // type:function size:0xA0 +fn_80546AAC = .text:0x80546AAC; // type:function size:0x2C +fn_80546AD8 = .text:0x80546AD8; // type:function size:0x6C +fn_80546B44 = .text:0x80546B44; // type:function size:0xBC +fn_80546C00 = .text:0x80546C00; // type:function size:0x54 +fn_80546C54 = .text:0x80546C54; // type:function size:0x54 +fn_80546CA8 = .text:0x80546CA8; // type:function size:0x68 +fn_80546D10 = .text:0x80546D10; // type:function size:0x88 +fn_80546D98 = .text:0x80546D98; // type:function size:0x90 +fn_80546E28 = .text:0x80546E28; // type:function size:0x5C +fn_80546E84 = .text:0x80546E84; // type:function size:0x5C +fn_80546EE0 = .text:0x80546EE0; // type:function size:0x68 +fn_80546F48 = .text:0x80546F48; // type:function size:0x154 +fn_8054709C = .text:0x8054709C; // type:function size:0x58 +fn_805470F4 = .text:0x805470F4; // type:function size:0x58 +fn_8054714C = .text:0x8054714C; // type:function size:0x60 +fn_805471AC = .text:0x805471AC; // type:function size:0x58 +fn_80547204 = .text:0x80547204; // type:function size:0x58 +fn_8054725C = .text:0x8054725C; // type:function size:0x10 +fn_8054726C = .text:0x8054726C; // type:function size:0x40 +fn_805472AC = .text:0x805472AC; // type:function size:0x30 +fn_805472DC = .text:0x805472DC; // type:function size:0x30 +fn_8054730C = .text:0x8054730C; // type:function size:0x60 +fn_8054736C = .text:0x8054736C; // type:function size:0x3C +fn_805473A8 = .text:0x805473A8; // type:function size:0x18C +fn_80547534 = .text:0x80547534; // type:function size:0x34 +fn_80547568 = .text:0x80547568; // type:function size:0x4 +fn_8054756C = .text:0x8054756C; // type:function size:0x4 +fn_80547570 = .text:0x80547570; // type:function size:0x54 +fn_805475C4 = .text:0x805475C4; // type:function size:0x64 +fn_80547628 = .text:0x80547628; // type:function size:0x50 +fn_80547678 = .text:0x80547678; // type:function size:0x10 +fn_80547688 = .text:0x80547688; // type:function size:0x58 +fn_805476E0 = .text:0x805476E0; // type:function size:0x54 +fn_80547734 = .text:0x80547734; // type:function size:0x15C +fn_80547890 = .text:0x80547890; // type:function size:0x68 +fn_805478F8 = .text:0x805478F8; // type:function size:0x8C +fn_80547984 = .text:0x80547984; // type:function size:0x6C +fn_805479F0 = .text:0x805479F0; // type:function size:0x2C +fn_80547A1C = .text:0x80547A1C; // type:function size:0x8 +fn_80547A24 = .text:0x80547A24; // type:function size:0x5C +fn_80547A80 = .text:0x80547A80; // type:function size:0x34 +fn_80547AB4 = .text:0x80547AB4; // type:function size:0x144 +fn_80547BF8 = .text:0x80547BF8; // type:function size:0x4 +fn_80547BFC = .text:0x80547BFC; // type:function size:0x4 +fn_80547C00 = .text:0x80547C00; // type:function size:0x8 +fn_80547C08 = .text:0x80547C08; // type:function size:0x50 +fn_80547C58 = .text:0x80547C58; // type:function size:0x4 +fn_80547C5C = .text:0x80547C5C; // type:function size:0x44 +fn_80547CA0 = .text:0x80547CA0; // type:function size:0x48 +fn_80547CE8 = .text:0x80547CE8; // type:function size:0x4 +fn_80547CEC = .text:0x80547CEC; // type:function size:0xD8 +fn_80547DC4 = .text:0x80547DC4; // type:function size:0x8 +fn_80547DCC = .text:0x80547DCC; // type:function size:0x68 +fn_80547E34 = .text:0x80547E34; // type:function size:0x74 +fn_80547EA8 = .text:0x80547EA8; // type:function size:0x68 +fn_80547F10 = .text:0x80547F10; // type:function size:0x68 +fn_80547F78 = .text:0x80547F78; // type:function size:0x44 +fn_80547FBC = .text:0x80547FBC; // type:function size:0x3C +fn_80547FF8 = .text:0x80547FF8; // type:function size:0x30 +fn_80548028 = .text:0x80548028; // type:function size:0x6C +fn_80548094 = .text:0x80548094; // type:function size:0x2EC +fn_80548380 = .text:0x80548380; // type:function size:0x64 +fn_805483E4 = .text:0x805483E4; // type:function size:0x140 +fn_80548524 = .text:0x80548524; // type:function size:0x54 +fn_80548578 = .text:0x80548578; // type:function size:0x4C +fn_805485C4 = .text:0x805485C4; // type:function size:0x80 +fn_80548644 = .text:0x80548644; // type:function size:0x30 +fn_80548674 = .text:0x80548674; // type:function size:0x4C +fn_805486C0 = .text:0x805486C0; // type:function size:0x70 +fn_80548730 = .text:0x80548730; // type:function size:0x30 +fn_80548760 = .text:0x80548760; // type:function size:0x2C +fn_8054878C = .text:0x8054878C; // type:function size:0xB8 +fn_80548844 = .text:0x80548844; // type:function size:0xD4 +fn_80548918 = .text:0x80548918; // type:function size:0x58 +fn_80548970 = .text:0x80548970; // type:function size:0x44 +fn_805489B4 = .text:0x805489B4; // type:function size:0x3C +fn_805489F0 = .text:0x805489F0; // type:function size:0x44 +fn_80548A34 = .text:0x80548A34; // type:function size:0x30 +fn_80548A64 = .text:0x80548A64; // type:function size:0x2C +fn_80548A90 = .text:0x80548A90; // type:function size:0x2C +fn_80548ABC = .text:0x80548ABC; // type:function size:0x1D0 +fn_80548C8C = .text:0x80548C8C; // type:function size:0x148 +fn_80548DD4 = .text:0x80548DD4; // type:function size:0xAC +fn_80548E80 = .text:0x80548E80; // type:function size:0x58 +fn_80548ED8 = .text:0x80548ED8; // type:function size:0x6C +fn_80548F44 = .text:0x80548F44; // type:function size:0x9C +fn_80548FE0 = .text:0x80548FE0; // type:function size:0x30 +fn_80549010 = .text:0x80549010; // type:function size:0xC0 +fn_805490D0 = .text:0x805490D0; // type:function size:0x40 +fn_80549110 = .text:0x80549110; // type:function size:0x40 +fn_80549150 = .text:0x80549150; // type:function size:0x40 +fn_80549190 = .text:0x80549190; // type:function size:0x34 +fn_805491C4 = .text:0x805491C4; // type:function size:0x48 +fn_8054920C = .text:0x8054920C; // type:function size:0x4C +fn_80549258 = .text:0x80549258; // type:function size:0x154 +fn_805493AC = .text:0x805493AC; // type:function size:0xB4 +fn_80549460 = .text:0x80549460; // type:function size:0xC4 +fn_80549524 = .text:0x80549524; // type:function size:0x4 +fn_80549528 = .text:0x80549528; // type:function size:0x34 +fn_8054955C = .text:0x8054955C; // type:function size:0x5C +fn_805495B8 = .text:0x805495B8; // type:function size:0xC8 +fn_80549680 = .text:0x80549680; // type:function size:0x40 +fn_805496C0 = .text:0x805496C0; // type:function size:0x80 +fn_80549740 = .text:0x80549740; // type:function size:0x178 +fn_805498B8 = .text:0x805498B8; // type:function size:0x38 +fn_805498F0 = .text:0x805498F0; // type:function size:0x48 +fn_80549938 = .text:0x80549938; // type:function size:0xB0 +fn_805499E8 = .text:0x805499E8; // type:function size:0xC +fn_805499F4 = .text:0x805499F4; // type:function size:0x48 +fn_80549A3C = .text:0x80549A3C; // type:function size:0x144 +fn_80549B80 = .text:0x80549B80; // type:function size:0x338 +fn_80549EB8 = .text:0x80549EB8; // type:function size:0x138 +fn_80549FF0 = .text:0x80549FF0; // type:function size:0x4 +fn_80549FF4 = .text:0x80549FF4; // type:function size:0x14 +fn_8054A008 = .text:0x8054A008; // type:function size:0x14 +fn_8054A01C = .text:0x8054A01C; // type:function size:0x8 +fn_8054A024 = .text:0x8054A024; // type:function size:0x8 +fn_8054A02C = .text:0x8054A02C; // type:function size:0x8 +fn_8054A034 = .text:0x8054A034; // type:function size:0x8 +fn_8054A03C = .text:0x8054A03C; // type:function size:0x8 +fn_8054A044 = .text:0x8054A044; // type:function size:0x8 +fn_8054A04C = .text:0x8054A04C; // type:function size:0x8 +fn_8054A054 = .text:0x8054A054; // type:function size:0x8 +fn_8054A05C = .text:0x8054A05C; // type:function size:0x14 +fn_8054A070 = .text:0x8054A070; // type:function size:0x14 +fn_8054A084 = .text:0x8054A084; // type:function size:0x14 +fn_8054A098 = .text:0x8054A098; // type:function size:0x14 +fn_8054A0AC = .text:0x8054A0AC; // type:function size:0x14 +fn_8054A0C0 = .text:0x8054A0C0; // type:function size:0x14 +fn_8054A0D4 = .text:0x8054A0D4; // type:function size:0x14 +fn_8054A0E8 = .text:0x8054A0E8; // type:function size:0x14 +fn_8054A0FC = .text:0x8054A0FC; // type:function size:0x14 +fn_8054A110 = .text:0x8054A110; // type:function size:0x14 +fn_8054A124 = .text:0x8054A124; // type:function size:0x14 +fn_8054A138 = .text:0x8054A138; // type:function size:0x14 +fn_8054A14C = .text:0x8054A14C; // type:function size:0x14 +fn_8054A160 = .text:0x8054A160; // type:function size:0x8 +fn_8054A168 = .text:0x8054A168; // type:function size:0x8 +fn_8054A170 = .text:0x8054A170; // type:function size:0x8 +fn_8054A178 = .text:0x8054A178; // type:function size:0x8 +fn_8054A180 = .text:0x8054A180; // type:function size:0x8 +fn_8054A188 = .text:0x8054A188; // type:function size:0x8 +fn_8054A190 = .text:0x8054A190; // type:function size:0x40 +fn_8054A1D0 = .text:0x8054A1D0; // type:function size:0x34 +fn_8054A204 = .text:0x8054A204; // type:function size:0x48 +fn_8054A24C = .text:0x8054A24C; // type:function size:0x4C +fn_8054A298 = .text:0x8054A298; // type:function size:0xFC +fn_8054A394 = .text:0x8054A394; // type:function size:0xA8 +fn_8054A43C = .text:0x8054A43C; // type:function size:0x8C +fn_8054A4C8 = .text:0x8054A4C8; // type:function size:0x4 +fn_8054A4CC = .text:0x8054A4CC; // type:function size:0x34 +fn_8054A500 = .text:0x8054A500; // type:function size:0x5C +fn_8054A55C = .text:0x8054A55C; // type:function size:0x78 +fn_8054A5D4 = .text:0x8054A5D4; // type:function size:0x40 +fn_8054A614 = .text:0x8054A614; // type:function size:0x180 +fn_8054A794 = .text:0x8054A794; // type:function size:0x8 +fn_8054A79C = .text:0x8054A79C; // type:function size:0x4 +fn_8054A7A0 = .text:0x8054A7A0; // type:function size:0x88 +fn_8054A828 = .text:0x8054A828; // type:function size:0x4 +fn_8054A82C = .text:0x8054A82C; // type:function size:0x100 +fn_8054A92C = .text:0x8054A92C; // type:function size:0x8 +fn_8054A934 = .text:0x8054A934; // type:function size:0x8 +fn_8054A93C = .text:0x8054A93C; // type:function size:0x48 +fn_8054A984 = .text:0x8054A984; // type:function size:0xD4 +fn_8054AA58 = .text:0x8054AA58; // type:function size:0x198 +fn_8054ABF0 = .text:0x8054ABF0; // type:function size:0x138 +fn_8054AD28 = .text:0x8054AD28; // type:function size:0x4 +fn_8054AD2C = .text:0x8054AD2C; // type:function size:0x14 +fn_8054AD40 = .text:0x8054AD40; // type:function size:0x8 +fn_8054AD48 = .text:0x8054AD48; // type:function size:0x8 +fn_8054AD50 = .text:0x8054AD50; // type:function size:0x8 +fn_8054AD58 = .text:0x8054AD58; // type:function size:0x8 +fn_8054AD60 = .text:0x8054AD60; // type:function size:0x8 +fn_8054AD68 = .text:0x8054AD68; // type:function size:0x8 +fn_8054AD70 = .text:0x8054AD70; // type:function size:0x8 +fn_8054AD78 = .text:0x8054AD78; // type:function size:0x8 +fn_8054AD80 = .text:0x8054AD80; // type:function size:0x14 +fn_8054AD94 = .text:0x8054AD94; // type:function size:0x14 +fn_8054ADA8 = .text:0x8054ADA8; // type:function size:0x14 +fn_8054ADBC = .text:0x8054ADBC; // type:function size:0x14 +fn_8054ADD0 = .text:0x8054ADD0; // type:function size:0x14 +fn_8054ADE4 = .text:0x8054ADE4; // type:function size:0x14 +fn_8054ADF8 = .text:0x8054ADF8; // type:function size:0x14 +fn_8054AE0C = .text:0x8054AE0C; // type:function size:0x14 +fn_8054AE20 = .text:0x8054AE20; // type:function size:0x14 +fn_8054AE34 = .text:0x8054AE34; // type:function size:0x14 +fn_8054AE48 = .text:0x8054AE48; // type:function size:0x8 +fn_8054AE50 = .text:0x8054AE50; // type:function size:0x8 +fn_8054AE58 = .text:0x8054AE58; // type:function size:0x8 +fn_8054AE60 = .text:0x8054AE60; // type:function size:0x8 +fn_8054AE68 = .text:0x8054AE68; // type:function size:0x8 +fn_8054AE70 = .text:0x8054AE70; // type:function size:0x8 +fn_8054AE78 = .text:0x8054AE78; // type:function size:0x4 +fn_8054AE7C = .text:0x8054AE7C; // type:function size:0x4C +__ct__8PanelDirFv = .text:0x8054AEC8; // type:function size:0x1BC +__dt__8PanelDirFv = .text:0x8054B084; // type:function size:0x1D4 +fn_8054B258 = .text:0x8054B258; // type:function size:0x4 +fn_8054B25C = .text:0x8054B25C; // type:function size:0x88 +fn_8054B2E4 = .text:0x8054B2E4; // type:function size:0x14C +fn_8054B430 = .text:0x8054B430; // type:function size:0xA8 +fn_8054B4D8 = .text:0x8054B4D8; // type:function size:0x30 +fn_8054B508 = .text:0x8054B508; // type:function size:0x144 +fn_8054B64C = .text:0x8054B64C; // type:function size:0x50 +fn_8054B69C = .text:0x8054B69C; // type:function size:0xD0 +fn_8054B76C = .text:0x8054B76C; // type:function size:0x78 +fn_8054B7E4 = .text:0x8054B7E4; // type:function size:0x50 +fn_8054B834 = .text:0x8054B834; // type:function size:0xD0 +fn_8054B904 = .text:0x8054B904; // type:function size:0x78 +fn_8054B97C = .text:0x8054B97C; // type:function size:0xEC +fn_8054BA68 = .text:0x8054BA68; // type:function size:0x44 +fn_8054BAAC = .text:0x8054BAAC; // type:function size:0x2C +fn_8054BAD8 = .text:0x8054BAD8; // type:function size:0xCC +fn_8054BBA4 = .text:0x8054BBA4; // type:function size:0x10 +fn_8054BBB4 = .text:0x8054BBB4; // type:function size:0x44 +fn_8054BBF8 = .text:0x8054BBF8; // type:function size:0x2C +fn_8054BC24 = .text:0x8054BC24; // type:function size:0xCC +fn_8054BCF0 = .text:0x8054BCF0; // type:function size:0x14 +fn_8054BD04 = .text:0x8054BD04; // type:function size:0x50 +fn_8054BD54 = .text:0x8054BD54; // type:function size:0x184 +fn_8054BED8 = .text:0x8054BED8; // type:function size:0xC0 +fn_8054BF98 = .text:0x8054BF98; // type:function size:0x3C +fn_8054BFD4 = .text:0x8054BFD4; // type:function size:0x3C +fn_8054C010 = .text:0x8054C010; // type:function size:0x60 +fn_8054C070 = .text:0x8054C070; // type:function size:0x10C +fn_8054C17C = .text:0x8054C17C; // type:function size:0x100 +fn_8054C27C = .text:0x8054C27C; // type:function size:0x30 +fn_8054C2AC = .text:0x8054C2AC; // type:function size:0x30 +fn_8054C2DC = .text:0x8054C2DC; // type:function size:0x30 +fn_8054C30C = .text:0x8054C30C; // type:function size:0x30 +fn_8054C33C = .text:0x8054C33C; // type:function size:0x100 +fn_8054C43C = .text:0x8054C43C; // type:function size:0x8 +fn_8054C444 = .text:0x8054C444; // type:function size:0x8 +fn_8054C44C = .text:0x8054C44C; // type:function size:0x140 +fn_8054C58C = .text:0x8054C58C; // type:function size:0x100 +fn_8054C68C = .text:0x8054C68C; // type:function size:0x8 +fn_8054C694 = .text:0x8054C694; // type:function size:0x4C +fn_8054C6E0 = .text:0x8054C6E0; // type:function size:0xC4 +fn_8054C7A4 = .text:0x8054C7A4; // type:function size:0xF4 +fn_8054C898 = .text:0x8054C898; // type:function size:0x198 +fn_8054CA30 = .text:0x8054CA30; // type:function size:0x3C +fn_8054CA6C = .text:0x8054CA6C; // type:function size:0x34 +fn_8054CAA0 = .text:0x8054CAA0; // type:function size:0x3C +fn_8054CADC = .text:0x8054CADC; // type:function size:0xB4 +fn_8054CB90 = .text:0x8054CB90; // type:function size:0x3A4 +fn_8054CF34 = .text:0x8054CF34; // type:function size:0x118 +fn_8054D04C = .text:0x8054D04C; // type:function size:0x1AC +fn_8054D1F8 = .text:0x8054D1F8; // type:function size:0x8 +fn_8054D200 = .text:0x8054D200; // type:function size:0x118 +fn_8054D318 = .text:0x8054D318; // type:function size:0xA4 +fn_8054D3BC = .text:0x8054D3BC; // type:function size:0xB8 +fn_8054D474 = .text:0x8054D474; // type:function size:0x4 +fn_8054D478 = .text:0x8054D478; // type:function size:0x190 +fn_8054D608 = .text:0x8054D608; // type:function size:0xBC +fn_8054D6C4 = .text:0x8054D6C4; // type:function size:0xC0 +fn_8054D784 = .text:0x8054D784; // type:function size:0x160 +fn_8054D8E4 = .text:0x8054D8E4; // type:function size:0x28 +fn_8054D90C = .text:0x8054D90C; // type:function size:0x5C +fn_8054D968 = .text:0x8054D968; // type:function size:0x60 +fn_8054D9C8 = .text:0x8054D9C8; // type:function size:0x8 +fn_8054D9D0 = .text:0x8054D9D0; // type:function size:0x8 +fn_8054D9D8 = .text:0x8054D9D8; // type:function size:0x8 +fn_8054D9E0 = .text:0x8054D9E0; // type:function size:0x8 +fn_8054D9E8 = .text:0x8054D9E8; // type:function size:0x8 +fn_8054D9F0 = .text:0x8054D9F0; // type:function size:0x8 +fn_8054D9F8 = .text:0x8054D9F8; // type:function size:0x8 +fn_8054DA00 = .text:0x8054DA00; // type:function size:0x8 +fn_8054DA08 = .text:0x8054DA08; // type:function size:0x8 +fn_8054DA10 = .text:0x8054DA10; // type:function size:0x8 +fn_8054DA18 = .text:0x8054DA18; // type:function size:0x14 +fn_8054DA2C = .text:0x8054DA2C; // type:function size:0x14 +fn_8054DA40 = .text:0x8054DA40; // type:function size:0x8 +fn_8054DA48 = .text:0x8054DA48; // type:function size:0x8 +fn_8054DA50 = .text:0x8054DA50; // type:function size:0x8 +fn_8054DA58 = .text:0x8054DA58; // type:function size:0x8 +fn_8054DA60 = .text:0x8054DA60; // type:function size:0x8 +fn_8054DA68 = .text:0x8054DA68; // type:function size:0x8 +fn_8054DA70 = .text:0x8054DA70; // type:function size:0x8 +fn_8054DA78 = .text:0x8054DA78; // type:function size:0x14 +fn_8054DA8C = .text:0x8054DA8C; // type:function size:0x14 +fn_8054DAA0 = .text:0x8054DAA0; // type:function size:0x14 +fn_8054DAB4 = .text:0x8054DAB4; // type:function size:0x14 +fn_8054DAC8 = .text:0x8054DAC8; // type:function size:0x14 +fn_8054DADC = .text:0x8054DADC; // type:function size:0x14 +fn_8054DAF0 = .text:0x8054DAF0; // type:function size:0x14 +fn_8054DB04 = .text:0x8054DB04; // type:function size:0x14 +fn_8054DB18 = .text:0x8054DB18; // type:function size:0x14 +fn_8054DB2C = .text:0x8054DB2C; // type:function size:0x14 +fn_8054DB40 = .text:0x8054DB40; // type:function size:0x14 +fn_8054DB54 = .text:0x8054DB54; // type:function size:0x14 +fn_8054DB68 = .text:0x8054DB68; // type:function size:0x14 +fn_8054DB7C = .text:0x8054DB7C; // type:function size:0x14 +fn_8054DB90 = .text:0x8054DB90; // type:function size:0x14 +fn_8054DBA4 = .text:0x8054DBA4; // type:function size:0x8 +fn_8054DBAC = .text:0x8054DBAC; // type:function size:0x8 +fn_8054DBB4 = .text:0x8054DBB4; // type:function size:0x8 +fn_8054DBBC = .text:0x8054DBBC; // type:function size:0x9C +fn_8054DC58 = .text:0x8054DC58; // type:function size:0x4 +fn_8054DC5C = .text:0x8054DC5C; // type:function size:0x88 +fn_8054DCE4 = .text:0x8054DCE4; // type:function size:0x4 +fn_8054DCE8 = .text:0x8054DCE8; // type:function size:0xC +fn_8054DCF4 = .text:0x8054DCF4; // type:function size:0x114 +fn_8054DE08 = .text:0x8054DE08; // type:function size:0xC4 +fn_8054DECC = .text:0x8054DECC; // type:function size:0x124 +fn_8054DFF0 = .text:0x8054DFF0; // type:function size:0xE4 +fn_8054E0D4 = .text:0x8054E0D4; // type:function size:0x144 +fn_8054E218 = .text:0x8054E218; // type:function size:0x4C +fn_8054E264 = .text:0x8054E264; // type:function size:0x4 +fn_8054E268 = .text:0x8054E268; // type:function size:0x14 +fn_8054E27C = .text:0x8054E27C; // type:function size:0x14 +fn_8054E290 = .text:0x8054E290; // type:function size:0x14 +fn_8054E2A4 = .text:0x8054E2A4; // type:function size:0x14 +fn_8054E2B8 = .text:0x8054E2B8; // type:function size:0x14 +fn_8054E2CC = .text:0x8054E2CC; // type:function size:0x14 +fn_8054E2E0 = .text:0x8054E2E0; // type:function size:0x14 +fn_8054E2F4 = .text:0x8054E2F4; // type:function size:0x14 +fn_8054E308 = .text:0x8054E308; // type:function size:0x14 +fn_8054E31C = .text:0x8054E31C; // type:function size:0x14 +__ct__12ScrollSelectFv = .text:0x8054E330; // type:function size:0x44 +fn_8054E374 = .text:0x8054E374; // type:function size:0x14 +fn_8054E388 = .text:0x8054E388; // type:function size:0x3C +fn_8054E3C4 = .text:0x8054E3C4; // type:function size:0xC +fn_8054E3D0 = .text:0x8054E3D0; // type:function size:0x88 +fn_8054E458 = .text:0x8054E458; // type:function size:0x1C0 +fn_8054E618 = .text:0x8054E618; // type:function size:0x28 +fn_8054E640 = .text:0x8054E640; // type:function size:0x38 +fn_8054E678 = .text:0x8054E678; // type:function size:0x4C +fn_8054E6C4 = .text:0x8054E6C4; // type:function size:0x160 +fn_8054E824 = .text:0x8054E824; // type:function size:0xC8 +fn_8054E8EC = .text:0x8054E8EC; // type:function size:0x4C +fn_8054E938 = .text:0x8054E938; // type:function size:0xF0 +fn_8054EA28 = .text:0x8054EA28; // type:function size:0xAC +fn_8054EAD4 = .text:0x8054EAD4; // type:function size:0x40 +fn_8054EB14 = .text:0x8054EB14; // type:function size:0xD8 +fn_8054EBEC = .text:0x8054EBEC; // type:function size:0x8C +fn_8054EC78 = .text:0x8054EC78; // type:function size:0x18 +fn_8054EC90 = .text:0x8054EC90; // type:function size:0x4F8 +fn_8054F188 = .text:0x8054F188; // type:function size:0x34 +fn_8054F1BC = .text:0x8054F1BC; // type:function size:0x48 +fn_8054F204 = .text:0x8054F204; // type:function size:0x34 +fn_8054F238 = .text:0x8054F238; // type:function size:0x34 +StaticClassName__7UIGuideFv = .text:0x8054F26C; // type:function size:0x4C +fn_8054F2B8 = .text:0x8054F2B8; // type:function size:0x34 +fn_8054F2EC = .text:0x8054F2EC; // type:function size:0x44 +fn_8054F330 = .text:0x8054F330; // type:function size:0x4C +fn_8054F37C = .text:0x8054F37C; // type:function size:0x34 +fn_8054F3B0 = .text:0x8054F3B0; // type:function size:0x44 +fn_8054F3F4 = .text:0x8054F3F4; // type:function size:0x4C +fn_8054F440 = .text:0x8054F440; // type:function size:0x34 +fn_8054F474 = .text:0x8054F474; // type:function size:0x48 +fn_8054F4BC = .text:0x8054F4BC; // type:function size:0x4C +fn_8054F508 = .text:0x8054F508; // type:function size:0x34 +fn_8054F53C = .text:0x8054F53C; // type:function size:0x48 +fn_8054F584 = .text:0x8054F584; // type:function size:0x4C +fn_8054F5D0 = .text:0x8054F5D0; // type:function size:0x34 +NewObject__7UIColorFv = .text:0x8054F604; // type:function size:0x34 +fn_8054F638 = .text:0x8054F638; // type:function size:0x34 +fn_8054F66C = .text:0x8054F66C; // type:function size:0x44 +fn_8054F6B0 = .text:0x8054F6B0; // type:function size:0x34 +fn_8054F6E4 = .text:0x8054F6E4; // type:function size:0x40 +fn_8054F724 = .text:0x8054F724; // type:function size:0x34 +fn_8054F758 = .text:0x8054F758; // type:function size:0x30 +StaticClassName__8UIScreenFv = .text:0x8054F788; // type:function size:0x4C +fn_8054F7D4 = .text:0x8054F7D4; // type:function size:0x44 +fn_8054F818 = .text:0x8054F818; // type:function size:0x48 +fn_8054F860 = .text:0x8054F860; // type:function size:0x4C +fn_8054F8AC = .text:0x8054F8AC; // type:function size:0x8 +fn_8054F8B4 = .text:0x8054F8B4; // type:function size:0x68 +fn_8054F91C = .text:0x8054F91C; // type:function size:0x14C +fn_8054FA68 = .text:0x8054FA68; // type:function size:0x68 +ClassName__8UIScreenCFv = .text:0x8054FAD0; // type:function size:0x4 +fn_8054FAD4 = .text:0x8054FAD4; // type:function size:0x330 +fn_8054FE04 = .text:0x8054FE04; // type:function size:0x70 +fn_8054FE74 = .text:0x8054FE74; // type:function size:0x8C +fn_8054FF00 = .text:0x8054FF00; // type:function size:0x84 +fn_8054FF84 = .text:0x8054FF84; // type:function size:0xE8 +fn_8055006C = .text:0x8055006C; // type:function size:0x128 +fn_80550194 = .text:0x80550194; // type:function size:0xAC +fn_80550240 = .text:0x80550240; // type:function size:0x68 +fn_805502A8 = .text:0x805502A8; // type:function size:0x4 +fn_805502AC = .text:0x805502AC; // type:function size:0x98 +fn_80550344 = .text:0x80550344; // type:function size:0xA0 +fn_805503E4 = .text:0x805503E4; // type:function size:0xB0 +fn_80550494 = .text:0x80550494; // type:function size:0x24 +fn_805504B8 = .text:0x805504B8; // type:function size:0x18 +FocusComponent__9UIManagerFv = .text:0x805504D0; // type:function size:0x34 +fn_80550504 = .text:0x80550504; // type:function size:0x40 +fn_80550544 = .text:0x80550544; // type:function size:0x168 +fn_805506AC = .text:0x805506AC; // type:function size:0x88 +fn_80550734 = .text:0x80550734; // type:function size:0xE8 +fn_8055081C = .text:0x8055081C; // type:function size:0x30 +fn_8055084C = .text:0x8055084C; // type:function size:0xB4 +fn_80550900 = .text:0x80550900; // type:function size:0x34 +fn_80550934 = .text:0x80550934; // type:function size:0x8C +fn_805509C0 = .text:0x805509C0; // type:function size:0xD4 +fn_80550A94 = .text:0x80550A94; // type:function size:0x98 +fn_80550B2C = .text:0x80550B2C; // type:function size:0x6C +fn_80550B98 = .text:0x80550B98; // type:function size:0x30 +fn_80550BC8 = .text:0x80550BC8; // type:function size:0x40 +fn_80550C08 = .text:0x80550C08; // type:function size:0x44 +fn_80550C4C = .text:0x80550C4C; // type:function size:0xC +fn_80550C58 = .text:0x80550C58; // type:function size:0xA4 +fn_80550CFC = .text:0x80550CFC; // type:function size:0x6C +fn_80550D68 = .text:0x80550D68; // type:function size:0xC +fn_80550D74 = .text:0x80550D74; // type:function size:0xE0 +fn_80550E54 = .text:0x80550E54; // type:function size:0x94 +fn_80550EE8 = .text:0x80550EE8; // type:function size:0x70 +fn_80550F58 = .text:0x80550F58; // type:function size:0x84 +fn_80550FDC = .text:0x80550FDC; // type:function size:0x6C +fn_80551048 = .text:0x80551048; // type:function size:0x58 +fn_805510A0 = .text:0x805510A0; // type:function size:0x58 +fn_805510F8 = .text:0x805510F8; // type:function size:0x30 +fn_80551128 = .text:0x80551128; // type:function size:0x60 +fn_80551188 = .text:0x80551188; // type:function size:0x120 +fn_805512A8 = .text:0x805512A8; // type:function size:0x30 +fn_805512D8 = .text:0x805512D8; // type:function size:0x14C +fn_80551424 = .text:0x80551424; // type:function size:0x30 +fn_80551454 = .text:0x80551454; // type:function size:0xAC +fn_80551500 = .text:0x80551500; // type:function size:0x30 +fn_80551530 = .text:0x80551530; // type:function size:0xAC +fn_805515DC = .text:0x805515DC; // type:function size:0x40 +fn_8055161C = .text:0x8055161C; // type:function size:0x3C +fn_80551658 = .text:0x80551658; // type:function size:0x24 +fn_8055167C = .text:0x8055167C; // type:function size:0x180 +fn_805517FC = .text:0x805517FC; // type:function size:0xC8 +fn_805518C4 = .text:0x805518C4; // type:function size:0x4C +fn_80551910 = .text:0x80551910; // type:function size:0xAC +fn_805519BC = .text:0x805519BC; // type:function size:0x4C +fn_80551A08 = .text:0x80551A08; // type:function size:0x8 +fn_80551A10 = .text:0x80551A10; // type:function size:0x4C +fn_80551A5C = .text:0x80551A5C; // type:function size:0x148 +fn_80551BA4 = .text:0x80551BA4; // type:function size:0x14 +fn_80551BB8 = .text:0x80551BB8; // type:function size:0x8 +fn_80551BC0 = .text:0x80551BC0; // type:function size:0xDC +Handle__9UIManagerFP9DataArrayb = .text:0x80551C9C; // type:function size:0x6C0 +fn_8055235C = .text:0x8055235C; // type:function size:0x12C +fn_80552488 = .text:0x80552488; // type:function size:0x8C +fn_80552514 = .text:0x80552514; // type:function size:0x12C +fn_80552640 = .text:0x80552640; // type:function size:0x14 +fn_80552654 = .text:0x80552654; // type:function size:0x14 +fn_80552668 = .text:0x80552668; // type:function size:0xC4 +fn_8055272C = .text:0x8055272C; // type:function size:0x40 +fn_8055276C = .text:0x8055276C; // type:function size:0x34 +fn_805527A0 = .text:0x805527A0; // type:function size:0x48 +fn_805527E8 = .text:0x805527E8; // type:function size:0x4C +fn_80552834 = .text:0x80552834; // type:function size:0x68 +fn_8055289C = .text:0x8055289C; // type:function size:0x4 +fn_805528A0 = .text:0x805528A0; // type:function size:0x5C +fn_805528FC = .text:0x805528FC; // type:function size:0x64 +fn_80552960 = .text:0x80552960; // type:function size:0x4 +fn_80552964 = .text:0x80552964; // type:function size:0x150 +fn_80552AB4 = .text:0x80552AB4; // type:function size:0x8C +fn_80552B40 = .text:0x80552B40; // type:function size:0x8C +fn_80552BCC = .text:0x80552BCC; // type:function size:0x138 +fn_80552D04 = .text:0x80552D04; // type:function size:0x4 +fn_80552D08 = .text:0x80552D08; // type:function size:0x14 +fn_80552D1C = .text:0x80552D1C; // type:function size:0x14 +fn_80552D30 = .text:0x80552D30; // type:function size:0x8 +fn_80552D38 = .text:0x80552D38; // type:function size:0x8 +fn_80552D40 = .text:0x80552D40; // type:function size:0x8 +fn_80552D48 = .text:0x80552D48; // type:function size:0x8 +fn_80552D50 = .text:0x80552D50; // type:function size:0x8 +fn_80552D58 = .text:0x80552D58; // type:function size:0x8 +fn_80552D60 = .text:0x80552D60; // type:function size:0x8 +fn_80552D68 = .text:0x80552D68; // type:function size:0x8 +fn_80552D70 = .text:0x80552D70; // type:function size:0x14 +fn_80552D84 = .text:0x80552D84; // type:function size:0x14 +fn_80552D98 = .text:0x80552D98; // type:function size:0x14 +fn_80552DAC = .text:0x80552DAC; // type:function size:0x14 +fn_80552DC0 = .text:0x80552DC0; // type:function size:0x14 +fn_80552DD4 = .text:0x80552DD4; // type:function size:0x14 +fn_80552DE8 = .text:0x80552DE8; // type:function size:0x14 +fn_80552DFC = .text:0x80552DFC; // type:function size:0x14 +fn_80552E10 = .text:0x80552E10; // type:function size:0x14 +fn_80552E24 = .text:0x80552E24; // type:function size:0x14 +fn_80552E38 = .text:0x80552E38; // type:function size:0x14 +fn_80552E4C = .text:0x80552E4C; // type:function size:0x14 +fn_80552E60 = .text:0x80552E60; // type:function size:0x8 +fn_80552E68 = .text:0x80552E68; // type:function size:0x8 +fn_80552E70 = .text:0x80552E70; // type:function size:0x8 +fn_80552E78 = .text:0x80552E78; // type:function size:0x8 +__ct__7UIColorFv = .text:0x80552E80; // type:function size:0x58 +GetColor__7UIColorCFv = .text:0x80552ED8; // type:function size:0x8 +__as__7UIColorFRCQ23Hmx5Color = .text:0x80552EE0; // type:function size:0x8 +Save__7UIColorFR9BinStream = .text:0x80552EE8; // type:function size:0x4 +Load__7UIColorFR9BinStream = .text:0x80552EEC; // type:function size:0x70 +Copy__7UIColorFPCQ23Hmx6ObjectQ33Hmx6Object8CopyType = .text:0x80552F5C; // type:function size:0x68 +Handle__7UIColorFP9DataArrayb = .text:0x80552FC4; // type:function size:0xC4 +SyncProperty__7UIColorFR8DataNodeP9DataArrayi6PropOp = .text:0x80553088; // type:function size:0xAC +ClassName__7UIColorCFv = .text:0x80553134; // type:function size:0x4 +SetType__7UIColorF6Symbol = .text:0x80553138; // type:function size:0x128 +fn_80553260 = .text:0x80553260; // type:function size:0xA0 +fn_80553300 = .text:0x80553300; // type:function size:0x6C +__ct__11UIComponentFv = .text:0x8055336C; // type:function size:0x174 +fn_805534E0 = .text:0x805534E0; // type:function size:0x58 +fn_80553538 = .text:0x80553538; // type:function size:0x80 +fn_805535B8 = .text:0x805535B8; // type:function size:0x80 +fn_80553638 = .text:0x80553638; // type:function size:0x58 +fn_80553690 = .text:0x80553690; // type:function size:0x54 +fn_805536E4 = .text:0x805536E4; // type:function size:0x5C +fn_80553740 = .text:0x80553740; // type:function size:0x6C +fn_805537AC = .text:0x805537AC; // type:function size:0x28 +fn_805537D4 = .text:0x805537D4; // type:function size:0x8 +fn_805537DC = .text:0x805537DC; // type:function size:0x3C +fn_80553818 = .text:0x80553818; // type:function size:0x84 +fn_8055389C = .text:0x8055389C; // type:function size:0x30 +fn_805538CC = .text:0x805538CC; // type:function size:0x30 +fn_805538FC = .text:0x805538FC; // type:function size:0x40 +fn_8055393C = .text:0x8055393C; // type:function size:0x6C +fn_805539A8 = .text:0x805539A8; // type:function size:0x7C +fn_80553A24 = .text:0x80553A24; // type:function size:0x34 +fn_80553A58 = .text:0x80553A58; // type:function size:0x48 +fn_80553AA0 = .text:0x80553AA0; // type:function size:0x4C +__dt__11UIComponentFv = .text:0x80553AEC; // type:function size:0x144 +fn_80553C30 = .text:0x80553C30; // type:function size:0x8 +fn_80553C38 = .text:0x80553C38; // type:function size:0x68 +fn_80553CA0 = .text:0x80553CA0; // type:function size:0x1B0 +fn_80553E50 = .text:0x80553E50; // type:function size:0x4 +fn_80553E54 = .text:0x80553E54; // type:function size:0xBC +fn_80553F10 = .text:0x80553F10; // type:function size:0xBC +fn_80553FCC = .text:0x80553FCC; // type:function size:0xB8 +fn_80554084 = .text:0x80554084; // type:function size:0x8 +fn_8055408C = .text:0x8055408C; // type:function size:0x4 +fn_80554090 = .text:0x80554090; // type:function size:0x5C +fn_805540EC = .text:0x805540EC; // type:function size:0xE8 +fn_805541D4 = .text:0x805541D4; // type:function size:0x40 +fn_80554214 = .text:0x80554214; // type:function size:0x104 +fn_80554318 = .text:0x80554318; // type:function size:0x174 +fn_8055448C = .text:0x8055448C; // type:function size:0x138 +fn_805545C4 = .text:0x805545C4; // type:function size:0x14 +fn_805545D8 = .text:0x805545D8; // type:function size:0x5C +fn_80554634 = .text:0x80554634; // type:function size:0x8 +fn_8055463C = .text:0x8055463C; // type:function size:0x24 +fn_80554660 = .text:0x80554660; // type:function size:0x170 +fn_805547D0 = .text:0x805547D0; // type:function size:0x50 +fn_80554820 = .text:0x80554820; // type:function size:0x41C +fn_80554C3C = .text:0x80554C3C; // type:function size:0x4 +fn_80554C40 = .text:0x80554C40; // type:function size:0x88 +fn_80554CC8 = .text:0x80554CC8; // type:function size:0x2C +fn_80554CF4 = .text:0x80554CF4; // type:function size:0x4 +fn_80554CF8 = .text:0x80554CF8; // type:function size:0x3C +fn_80554D34 = .text:0x80554D34; // type:function size:0x40 +fn_80554D74 = .text:0x80554D74; // type:function size:0x8C +fn_80554E00 = .text:0x80554E00; // type:function size:0x8 +fn_80554E08 = .text:0x80554E08; // type:function size:0x2C +fn_80554E34 = .text:0x80554E34; // type:function size:0x58 +fn_80554E8C = .text:0x80554E8C; // type:function size:0x28 +fn_80554EB4 = .text:0x80554EB4; // type:function size:0x68 +fn_80554F1C = .text:0x80554F1C; // type:function size:0x34 +fn_80554F50 = .text:0x80554F50; // type:function size:0x74 +fn_80554FC4 = .text:0x80554FC4; // type:function size:0x5C +fn_80555020 = .text:0x80555020; // type:function size:0x8C +fn_805550AC = .text:0x805550AC; // type:function size:0x110 +fn_805551BC = .text:0x805551BC; // type:function size:0x184 +fn_80555340 = .text:0x80555340; // type:function size:0x80 +fn_805553C0 = .text:0x805553C0; // type:function size:0x17C +fn_8055553C = .text:0x8055553C; // type:function size:0xA8 +fn_805555E4 = .text:0x805555E4; // type:function size:0x310 +fn_805558F4 = .text:0x805558F4; // type:function size:0x178 +fn_80555A6C = .text:0x80555A6C; // type:function size:0xD0 +fn_80555B3C = .text:0x80555B3C; // type:function size:0x70 +fn_80555BAC = .text:0x80555BAC; // type:function size:0x114 +fn_80555CC0 = .text:0x80555CC0; // type:function size:0x5C +fn_80555D1C = .text:0x80555D1C; // type:function size:0x5C +fn_80555D78 = .text:0x80555D78; // type:function size:0x54 +fn_80555DCC = .text:0x80555DCC; // type:function size:0x5C +fn_80555E28 = .text:0x80555E28; // type:function size:0x5C +fn_80555E84 = .text:0x80555E84; // type:function size:0x14 +fn_80555E98 = .text:0x80555E98; // type:function size:0x14 +fn_80555EAC = .text:0x80555EAC; // type:function size:0x8 +fn_80555EB4 = .text:0x80555EB4; // type:function size:0x8 +fn_80555EBC = .text:0x80555EBC; // type:function size:0x8 +fn_80555EC4 = .text:0x80555EC4; // type:function size:0x8 +fn_80555ECC = .text:0x80555ECC; // type:function size:0x8 +fn_80555ED4 = .text:0x80555ED4; // type:function size:0x8 +fn_80555EDC = .text:0x80555EDC; // type:function size:0x8 +fn_80555EE4 = .text:0x80555EE4; // type:function size:0x8 +fn_80555EEC = .text:0x80555EEC; // type:function size:0x14 +fn_80555F00 = .text:0x80555F00; // type:function size:0x14 +fn_80555F14 = .text:0x80555F14; // type:function size:0x14 +fn_80555F28 = .text:0x80555F28; // type:function size:0x14 +fn_80555F3C = .text:0x80555F3C; // type:function size:0x14 +fn_80555F50 = .text:0x80555F50; // type:function size:0x14 +fn_80555F64 = .text:0x80555F64; // type:function size:0x14 +fn_80555F78 = .text:0x80555F78; // type:function size:0x14 +fn_80555F8C = .text:0x80555F8C; // type:function size:0x14 +fn_80555FA0 = .text:0x80555FA0; // type:function size:0x14 +fn_80555FB4 = .text:0x80555FB4; // type:function size:0x14 +fn_80555FC8 = .text:0x80555FC8; // type:function size:0x14 +fn_80555FDC = .text:0x80555FDC; // type:function size:0x8 +fn_80555FE4 = .text:0x80555FE4; // type:function size:0x8 +fn_80555FEC = .text:0x80555FEC; // type:function size:0x8 +fn_80555FF4 = .text:0x80555FF4; // type:function size:0x8 +fn_80555FFC = .text:0x80555FFC; // type:function size:0x248 +fn_80556244 = .text:0x80556244; // type:function size:0x154 +fn_80556398 = .text:0x80556398; // type:function size:0x44 +fn_805563DC = .text:0x805563DC; // type:function size:0x34 +fn_80556410 = .text:0x80556410; // type:function size:0x44 +fn_80556454 = .text:0x80556454; // type:function size:0x4C +fn_805564A0 = .text:0x805564A0; // type:function size:0x34 +fn_805564D4 = .text:0x805564D4; // type:function size:0x48 +fn_8055651C = .text:0x8055651C; // type:function size:0x4C +fn_80556568 = .text:0x80556568; // type:function size:0x4 +fn_8055656C = .text:0x8055656C; // type:function size:0x7C +fn_805565E8 = .text:0x805565E8; // type:function size:0x1B0 +fn_80556798 = .text:0x80556798; // type:function size:0x4 +fn_8055679C = .text:0x8055679C; // type:function size:0x5C +fn_805567F8 = .text:0x805567F8; // type:function size:0x438 +fn_80556C30 = .text:0x80556C30; // type:function size:0x108 +fn_80556D38 = .text:0x80556D38; // type:function size:0x70 +fn_80556DA8 = .text:0x80556DA8; // type:function size:0x20 +fn_80556DC8 = .text:0x80556DC8; // type:function size:0x204 +fn_80556FCC = .text:0x80556FCC; // type:function size:0x40 +fn_8055700C = .text:0x8055700C; // type:function size:0x40 +fn_8055704C = .text:0x8055704C; // type:function size:0x20C +fn_80557258 = .text:0x80557258; // type:function size:0x34 +fn_8055728C = .text:0x8055728C; // type:function size:0x8 +fn_80557294 = .text:0x80557294; // type:function size:0x1C +fn_805572B0 = .text:0x805572B0; // type:function size:0x2C +fn_805572DC = .text:0x805572DC; // type:function size:0x134 +fn_80557410 = .text:0x80557410; // type:function size:0x120 +fn_80557530 = .text:0x80557530; // type:function size:0x44 +fn_80557574 = .text:0x80557574; // type:function size:0x14 +fn_80557588 = .text:0x80557588; // type:function size:0x14 +fn_8055759C = .text:0x8055759C; // type:function size:0x8 +fn_805575A4 = .text:0x805575A4; // type:function size:0x8 +fn_805575AC = .text:0x805575AC; // type:function size:0x58 +SetTextToken__7UILabelF6Symbol = .text:0x80557604; // type:function size:0x54 +fn_80557658 = .text:0x80557658; // type:function size:0x84 +fn_805576DC = .text:0x805576DC; // type:function size:0x4C +fn_80557728 = .text:0x80557728; // type:function size:0x74 +fn_8055779C = .text:0x8055779C; // type:function size:0x48 +fn_805577E4 = .text:0x805577E4; // type:function size:0x80 +fn_80557864 = .text:0x80557864; // type:function size:0x60 +fn_805578C4 = .text:0x805578C4; // type:function size:0x90 +fn_80557954 = .text:0x80557954; // type:function size:0x50 +fn_805579A4 = .text:0x805579A4; // type:function size:0xE8 +fn_80557A8C = .text:0x80557A8C; // type:function size:0x78 +fn_80557B04 = .text:0x80557B04; // type:function size:0x8 +fn_80557B0C = .text:0x80557B0C; // type:function size:0x19C +fn_80557CA8 = .text:0x80557CA8; // type:function size:0x1C +fn_80557CC4 = .text:0x80557CC4; // type:function size:0x22C +fn_80557EF0 = .text:0x80557EF0; // type:function size:0x58 +fn_80557F48 = .text:0x80557F48; // type:function size:0x38 +fn_80557F80 = .text:0x80557F80; // type:function size:0x8 +fn_80557F88 = .text:0x80557F88; // type:function size:0xC0 +fn_80558048 = .text:0x80558048; // type:function size:0xCC +fn_80558114 = .text:0x80558114; // type:function size:0xFC +fn_80558210 = .text:0x80558210; // type:function size:0x128 +fn_80558338 = .text:0x80558338; // type:function size:0x10 +fn_80558348 = .text:0x80558348; // type:function size:0x14 +fn_8055835C = .text:0x8055835C; // type:function size:0x14 +fn_80558370 = .text:0x80558370; // type:function size:0x14 +fn_80558384 = .text:0x80558384; // type:function size:0x4F0 +fn_80558874 = .text:0x80558874; // type:function size:0xC +fn_80558880 = .text:0x80558880; // type:function size:0x1C4 +fn_80558A44 = .text:0x80558A44; // type:function size:0x17C +fn_80558BC0 = .text:0x80558BC0; // type:function size:0x8C +fn_80558C4C = .text:0x80558C4C; // type:function size:0x19C +fn_80558DE8 = .text:0x80558DE8; // type:function size:0x4 +fn_80558DEC = .text:0x80558DEC; // type:function size:0x4 +fn_80558DF0 = .text:0x80558DF0; // type:function size:0x10C +fn_80558EFC = .text:0x80558EFC; // type:function size:0x8 +fn_80558F04 = .text:0x80558F04; // type:function size:0x1E4 +fn_805590E8 = .text:0x805590E8; // type:function size:0x3C4 +fn_805594AC = .text:0x805594AC; // type:function size:0xC64 +fn_8055A110 = .text:0x8055A110; // type:function size:0x138 +fn_8055A248 = .text:0x8055A248; // type:function size:0x4 +fn_8055A24C = .text:0x8055A24C; // type:function size:0x14 +fn_8055A260 = .text:0x8055A260; // type:function size:0x8 +fn_8055A268 = .text:0x8055A268; // type:function size:0x8 +fn_8055A270 = .text:0x8055A270; // type:function size:0x8 +fn_8055A278 = .text:0x8055A278; // type:function size:0x8 +fn_8055A280 = .text:0x8055A280; // type:function size:0x8 +fn_8055A288 = .text:0x8055A288; // type:function size:0x8 +fn_8055A290 = .text:0x8055A290; // type:function size:0x8 +fn_8055A298 = .text:0x8055A298; // type:function size:0x8 +fn_8055A2A0 = .text:0x8055A2A0; // type:function size:0x14 +fn_8055A2B4 = .text:0x8055A2B4; // type:function size:0x14 +fn_8055A2C8 = .text:0x8055A2C8; // type:function size:0x14 +fn_8055A2DC = .text:0x8055A2DC; // type:function size:0x14 +fn_8055A2F0 = .text:0x8055A2F0; // type:function size:0x14 +fn_8055A304 = .text:0x8055A304; // type:function size:0x14 +fn_8055A318 = .text:0x8055A318; // type:function size:0x14 +fn_8055A32C = .text:0x8055A32C; // type:function size:0x14 +fn_8055A340 = .text:0x8055A340; // type:function size:0x14 +fn_8055A354 = .text:0x8055A354; // type:function size:0x14 +fn_8055A368 = .text:0x8055A368; // type:function size:0x8 +fn_8055A370 = .text:0x8055A370; // type:function size:0x8 +fn_8055A378 = .text:0x8055A378; // type:function size:0x8 +fn_8055A380 = .text:0x8055A380; // type:function size:0x8 +fn_8055A388 = .text:0x8055A388; // type:function size:0x4C +fn_8055A3D4 = .text:0x8055A3D4; // type:function size:0x30 +fn_8055A404 = .text:0x8055A404; // type:function size:0x30 +fn_8055A434 = .text:0x8055A434; // type:function size:0x4C +fn_8055A480 = .text:0x8055A480; // type:function size:0x23C +fn_8055A6BC = .text:0x8055A6BC; // type:function size:0x6C +fn_8055A728 = .text:0x8055A728; // type:function size:0x40 +fn_8055A768 = .text:0x8055A768; // type:function size:0x44 +fn_8055A7AC = .text:0x8055A7AC; // type:function size:0x54 +fn_8055A800 = .text:0x8055A800; // type:function size:0x6C +fn_8055A86C = .text:0x8055A86C; // type:function size:0x40 +fn_8055A8AC = .text:0x8055A8AC; // type:function size:0x44 +fn_8055A8F0 = .text:0x8055A8F0; // type:function size:0x54 +fn_8055A944 = .text:0x8055A944; // type:function size:0x68 +fn_8055A9AC = .text:0x8055A9AC; // type:function size:0x68 +fn_8055AA14 = .text:0x8055AA14; // type:function size:0x104 +fn_8055AB18 = .text:0x8055AB18; // type:function size:0x180 +fn_8055AC98 = .text:0x8055AC98; // type:function size:0xB8 +fn_8055AD50 = .text:0x8055AD50; // type:function size:0x4C +fn_8055AD9C = .text:0x8055AD9C; // type:function size:0x78 +fn_8055AE14 = .text:0x8055AE14; // type:function size:0x2C +fn_8055AE40 = .text:0x8055AE40; // type:function size:0xB8 +fn_8055AEF8 = .text:0x8055AEF8; // type:function size:0x4C +fn_8055AF44 = .text:0x8055AF44; // type:function size:0x78 +fn_8055AFBC = .text:0x8055AFBC; // type:function size:0x2C +fn_8055AFE8 = .text:0x8055AFE8; // type:function size:0x4 +fn_8055AFEC = .text:0x8055AFEC; // type:function size:0x280 +fn_8055B26C = .text:0x8055B26C; // type:function size:0x3C +fn_8055B2A8 = .text:0x8055B2A8; // type:function size:0x11C +fn_8055B3C4 = .text:0x8055B3C4; // type:function size:0x3C +fn_8055B400 = .text:0x8055B400; // type:function size:0x11C +fn_8055B51C = .text:0x8055B51C; // type:function size:0x424 +fn_8055B940 = .text:0x8055B940; // type:function size:0x44 +fn_8055B984 = .text:0x8055B984; // type:function size:0x30 +fn_8055B9B4 = .text:0x8055B9B4; // type:function size:0x30 +fn_8055B9E4 = .text:0x8055B9E4; // type:function size:0x88 +fn_8055BA6C = .text:0x8055BA6C; // type:function size:0x8 +fn_8055BA74 = .text:0x8055BA74; // type:function size:0xEC +fn_8055BB60 = .text:0x8055BB60; // type:function size:0xEC +fn_8055BC4C = .text:0x8055BC4C; // type:function size:0x54 +fn_8055BCA0 = .text:0x8055BCA0; // type:function size:0x54 +fn_8055BCF4 = .text:0x8055BCF4; // type:function size:0xB4 +fn_8055BDA8 = .text:0x8055BDA8; // type:function size:0x70 +fn_8055BE18 = .text:0x8055BE18; // type:function size:0xB0 +fn_8055BEC8 = .text:0x8055BEC8; // type:function size:0x8 +fn_8055BED0 = .text:0x8055BED0; // type:function size:0x350 +fn_8055C220 = .text:0x8055C220; // type:function size:0x70 +fn_8055C290 = .text:0x8055C290; // type:function size:0x108 +fn_8055C398 = .text:0x8055C398; // type:function size:0x138 +fn_8055C4D0 = .text:0x8055C4D0; // type:function size:0x58 +fn_8055C528 = .text:0x8055C528; // type:function size:0x80 +fn_8055C5A8 = .text:0x8055C5A8; // type:function size:0x80 +fn_8055C628 = .text:0x8055C628; // type:function size:0x58 +fn_8055C680 = .text:0x8055C680; // type:function size:0x54 +fn_8055C6D4 = .text:0x8055C6D4; // type:function size:0x5C +fn_8055C730 = .text:0x8055C730; // type:function size:0x6C +fn_8055C79C = .text:0x8055C79C; // type:function size:0x28 +fn_8055C7C4 = .text:0x8055C7C4; // type:function size:0x8 +fn_8055C7CC = .text:0x8055C7CC; // type:function size:0x3C +fn_8055C808 = .text:0x8055C808; // type:function size:0x58 +fn_8055C860 = .text:0x8055C860; // type:function size:0x80 +fn_8055C8E0 = .text:0x8055C8E0; // type:function size:0x80 +fn_8055C960 = .text:0x8055C960; // type:function size:0x58 +fn_8055C9B8 = .text:0x8055C9B8; // type:function size:0x54 +fn_8055CA0C = .text:0x8055CA0C; // type:function size:0x5C +fn_8055CA68 = .text:0x8055CA68; // type:function size:0x6C +fn_8055CAD4 = .text:0x8055CAD4; // type:function size:0x28 +fn_8055CAFC = .text:0x8055CAFC; // type:function size:0x8 +fn_8055CB04 = .text:0x8055CB04; // type:function size:0x3C +fn_8055CB40 = .text:0x8055CB40; // type:function size:0x30 +fn_8055CB70 = .text:0x8055CB70; // type:function size:0x30 +fn_8055CBA0 = .text:0x8055CBA0; // type:function size:0x40 +fn_8055CBE0 = .text:0x8055CBE0; // type:function size:0x80 +fn_8055CC60 = .text:0x8055CC60; // type:function size:0x180 +fn_8055CDE0 = .text:0x8055CDE0; // type:function size:0x68 +fn_8055CE48 = .text:0x8055CE48; // type:function size:0x11C +fn_8055CF64 = .text:0x8055CF64; // type:function size:0x80 +fn_8055CFE4 = .text:0x8055CFE4; // type:function size:0x8 +fn_8055CFEC = .text:0x8055CFEC; // type:function size:0x4 +fn_8055CFF0 = .text:0x8055CFF0; // type:function size:0x44 +fn_8055D034 = .text:0x8055D034; // type:function size:0x44 +fn_8055D078 = .text:0x8055D078; // type:function size:0x3C +fn_8055D0B4 = .text:0x8055D0B4; // type:function size:0x34C +fn_8055D400 = .text:0x8055D400; // type:function size:0xA0 +fn_8055D4A0 = .text:0x8055D4A0; // type:function size:0x98 +fn_8055D538 = .text:0x8055D538; // type:function size:0x44 +fn_8055D57C = .text:0x8055D57C; // type:function size:0x88 +fn_8055D604 = .text:0x8055D604; // type:function size:0x44 +fn_8055D648 = .text:0x8055D648; // type:function size:0x124 +fn_8055D76C = .text:0x8055D76C; // type:function size:0x8C +fn_8055D7F8 = .text:0x8055D7F8; // type:function size:0x210 +fn_8055DA08 = .text:0x8055DA08; // type:function size:0x1A8 +fn_8055DBB0 = .text:0x8055DBB0; // type:function size:0xFC +fn_8055DCAC = .text:0x8055DCAC; // type:function size:0x2C +Handle__14UIFontImporterFP9DataArrayb = .text:0x8055DCD8; // type:function size:0x430 +fn_8055E108 = .text:0x8055E108; // type:function size:0x92C +fn_8055EA34 = .text:0x8055EA34; // type:function size:0x1E8 +fn_8055EC1C = .text:0x8055EC1C; // type:function size:0xB0 +fn_8055ECCC = .text:0x8055ECCC; // type:function size:0x1E8 +fn_8055EEB4 = .text:0x8055EEB4; // type:function size:0xB0 +fn_8055EF64 = .text:0x8055EF64; // type:function size:0x6C +fn_8055EFD0 = .text:0x8055EFD0; // type:function size:0x100 +fn_8055F0D0 = .text:0x8055F0D0; // type:function size:0x100 +fn_8055F1D0 = .text:0x8055F1D0; // type:function size:0x134 +fn_8055F304 = .text:0x8055F304; // type:function size:0x4 +fn_8055F308 = .text:0x8055F308; // type:function size:0x14 +fn_8055F31C = .text:0x8055F31C; // type:function size:0x14 +fn_8055F330 = .text:0x8055F330; // type:function size:0x14 +fn_8055F344 = .text:0x8055F344; // type:function size:0x14 +fn_8055F358 = .text:0x8055F358; // type:function size:0x14 +fn_8055F36C = .text:0x8055F36C; // type:function size:0x14 +fn_8055F380 = .text:0x8055F380; // type:function size:0x14 +fn_8055F394 = .text:0x8055F394; // type:function size:0x14 +fn_8055F3A8 = .text:0x8055F3A8; // type:function size:0x6C +fn_8055F414 = .text:0x8055F414; // type:function size:0x7C +fn_8055F490 = .text:0x8055F490; // type:function size:0x5C +fn_8055F4EC = .text:0x8055F4EC; // type:function size:0x5C +fn_8055F548 = .text:0x8055F548; // type:function size:0x5C +fn_8055F5A4 = .text:0x8055F5A4; // type:function size:0x58 +fn_8055F5FC = .text:0x8055F5FC; // type:function size:0x14 +fn_8055F610 = .text:0x8055F610; // type:function size:0x10 +fn_8055F620 = .text:0x8055F620; // type:function size:0x10 +fn_8055F630 = .text:0x8055F630; // type:function size:0x14 +fn_8055F644 = .text:0x8055F644; // type:function size:0xC +fn_8055F650 = .text:0x8055F650; // type:function size:0x68 +fn_8055F6B8 = .text:0x8055F6B8; // type:function size:0x100 +fn_8055F7B8 = .text:0x8055F7B8; // type:function size:0x5C +fn_8055F814 = .text:0x8055F814; // type:function size:0x4 +fn_8055F818 = .text:0x8055F818; // type:function size:0x4 +fn_8055F81C = .text:0x8055F81C; // type:function size:0x4 +fn_8055F820 = .text:0x8055F820; // type:function size:0x78 +fn_8055F898 = .text:0x8055F898; // type:function size:0x64 +fn_8055F8FC = .text:0x8055F8FC; // type:function size:0x74 +fn_8055F970 = .text:0x8055F970; // type:function size:0x8C +fn_8055F9FC = .text:0x8055F9FC; // type:function size:0x84 +fn_8055FA80 = .text:0x8055FA80; // type:function size:0x7C +fn_8055FAFC = .text:0x8055FAFC; // type:function size:0x84 +fn_8055FB80 = .text:0x8055FB80; // type:function size:0x7C +fn_8055FBFC = .text:0x8055FBFC; // type:function size:0x7C +fn_8055FC78 = .text:0x8055FC78; // type:function size:0x7C +fn_8055FCF4 = .text:0x8055FCF4; // type:function size:0x4C +fn_8055FD40 = .text:0x8055FD40; // type:function size:0x54 +fn_8055FD94 = .text:0x8055FD94; // type:function size:0x10 +fn_8055FDA4 = .text:0x8055FDA4; // type:function size:0x4C +fn_8055FDF0 = .text:0x8055FDF0; // type:function size:0x4C +fn_8055FE3C = .text:0x8055FE3C; // type:function size:0x29C +fn_805600D8 = .text:0x805600D8; // type:function size:0x4 +fn_805600DC = .text:0x805600DC; // type:function size:0x88 +fn_80560164 = .text:0x80560164; // type:function size:0x2C +fn_80560190 = .text:0x80560190; // type:function size:0x10 +fn_805601A0 = .text:0x805601A0; // type:function size:0x68 +fn_80560208 = .text:0x80560208; // type:function size:0x30 +fn_80560238 = .text:0x80560238; // type:function size:0x30 +fn_80560268 = .text:0x80560268; // type:function size:0x40 +fn_805602A8 = .text:0x805602A8; // type:function size:0x90 +fn_80560338 = .text:0x80560338; // type:function size:0x1C +fn_80560354 = .text:0x80560354; // type:function size:0x64 +fn_805603B8 = .text:0x805603B8; // type:function size:0x8 +fn_805603C0 = .text:0x805603C0; // type:function size:0x8 +fn_805603C8 = .text:0x805603C8; // type:function size:0x8 +fn_805603D0 = .text:0x805603D0; // type:function size:0x8 +fn_805603D8 = .text:0x805603D8; // type:function size:0x8 +fn_805603E0 = .text:0x805603E0; // type:function size:0x8 +fn_805603E8 = .text:0x805603E8; // type:function size:0x8 +fn_805603F0 = .text:0x805603F0; // type:function size:0x38 +fn_80560428 = .text:0x80560428; // type:function size:0x4 +fn_8056042C = .text:0x8056042C; // type:function size:0x34 +fn_80560460 = .text:0x80560460; // type:function size:0x4 +fn_80560464 = .text:0x80560464; // type:function size:0x88 +fn_805604EC = .text:0x805604EC; // type:function size:0x1F8 +fn_805606E4 = .text:0x805606E4; // type:function size:0xC0 +fn_805607A4 = .text:0x805607A4; // type:function size:0x30 +fn_805607D4 = .text:0x805607D4; // type:function size:0x5E0 +fn_80560DB4 = .text:0x80560DB4; // type:function size:0x3C +fn_80560DF0 = .text:0x80560DF0; // type:function size:0x11C +fn_80560F0C = .text:0x80560F0C; // type:function size:0x160 +fn_8056106C = .text:0x8056106C; // type:function size:0x5C +fn_805610C8 = .text:0x805610C8; // type:function size:0x8 +fn_805610D0 = .text:0x805610D0; // type:function size:0x2C +fn_805610FC = .text:0x805610FC; // type:function size:0x58 +fn_80561154 = .text:0x80561154; // type:function size:0x28 +fn_8056117C = .text:0x8056117C; // type:function size:0x68 +fn_805611E4 = .text:0x805611E4; // type:function size:0x5C +fn_80561240 = .text:0x80561240; // type:function size:0x60 +fn_805612A0 = .text:0x805612A0; // type:function size:0x114 +fn_805613B4 = .text:0x805613B4; // type:function size:0x5C +fn_80561410 = .text:0x80561410; // type:function size:0x5C +fn_8056146C = .text:0x8056146C; // type:function size:0x54 +fn_805614C0 = .text:0x805614C0; // type:function size:0x5C +fn_8056151C = .text:0x8056151C; // type:function size:0x134 +fn_80561650 = .text:0x80561650; // type:function size:0x4 +fn_80561654 = .text:0x80561654; // type:function size:0x8 +fn_8056165C = .text:0x8056165C; // type:function size:0x8 +fn_80561664 = .text:0x80561664; // type:function size:0x8 +fn_8056166C = .text:0x8056166C; // type:function size:0x8 +fn_80561674 = .text:0x80561674; // type:function size:0x8 +fn_8056167C = .text:0x8056167C; // type:function size:0x8 +fn_80561684 = .text:0x80561684; // type:function size:0x8 +fn_8056168C = .text:0x8056168C; // type:function size:0x8 +fn_80561694 = .text:0x80561694; // type:function size:0x8 +fn_8056169C = .text:0x8056169C; // type:function size:0x8 +fn_805616A4 = .text:0x805616A4; // type:function size:0x8 +fn_805616AC = .text:0x805616AC; // type:function size:0x8 +fn_805616B4 = .text:0x805616B4; // type:function size:0x8 +fn_805616BC = .text:0x805616BC; // type:function size:0x8 +fn_805616C4 = .text:0x805616C4; // type:function size:0x8 +fn_805616CC = .text:0x805616CC; // type:function size:0x8 +fn_805616D4 = .text:0x805616D4; // type:function size:0x14 +fn_805616E8 = .text:0x805616E8; // type:function size:0x14 +fn_805616FC = .text:0x805616FC; // type:function size:0x8 +fn_80561704 = .text:0x80561704; // type:function size:0x8 +fn_8056170C = .text:0x8056170C; // type:function size:0x8 +fn_80561714 = .text:0x80561714; // type:function size:0x8 +fn_8056171C = .text:0x8056171C; // type:function size:0x8 +fn_80561724 = .text:0x80561724; // type:function size:0x8 +fn_8056172C = .text:0x8056172C; // type:function size:0x8 +fn_80561734 = .text:0x80561734; // type:function size:0x8 +fn_8056173C = .text:0x8056173C; // type:function size:0x8 +fn_80561744 = .text:0x80561744; // type:function size:0x8 +fn_8056174C = .text:0x8056174C; // type:function size:0x8 +fn_80561754 = .text:0x80561754; // type:function size:0x8 +fn_8056175C = .text:0x8056175C; // type:function size:0x8 +fn_80561764 = .text:0x80561764; // type:function size:0x8 +fn_8056176C = .text:0x8056176C; // type:function size:0x8 +fn_80561774 = .text:0x80561774; // type:function size:0x8 +fn_8056177C = .text:0x8056177C; // type:function size:0x8 +fn_80561784 = .text:0x80561784; // type:function size:0x14 +fn_80561798 = .text:0x80561798; // type:function size:0x14 +fn_805617AC = .text:0x805617AC; // type:function size:0x14 +fn_805617C0 = .text:0x805617C0; // type:function size:0x14 +fn_805617D4 = .text:0x805617D4; // type:function size:0x14 +fn_805617E8 = .text:0x805617E8; // type:function size:0x14 +fn_805617FC = .text:0x805617FC; // type:function size:0x14 +fn_80561810 = .text:0x80561810; // type:function size:0x14 +fn_80561824 = .text:0x80561824; // type:function size:0x14 +fn_80561838 = .text:0x80561838; // type:function size:0x14 +fn_8056184C = .text:0x8056184C; // type:function size:0x14 +fn_80561860 = .text:0x80561860; // type:function size:0x14 +fn_80561874 = .text:0x80561874; // type:function size:0x14 +fn_80561888 = .text:0x80561888; // type:function size:0x14 +fn_8056189C = .text:0x8056189C; // type:function size:0x14 +fn_805618B0 = .text:0x805618B0; // type:function size:0x8 +fn_805618B8 = .text:0x805618B8; // type:function size:0x8 +fn_805618C0 = .text:0x805618C0; // type:function size:0x8 +fn_805618C8 = .text:0x805618C8; // type:function size:0x8 +fn_805618D0 = .text:0x805618D0; // type:function size:0x8 +fn_805618D8 = .text:0x805618D8; // type:function size:0x8 +fn_805618E0 = .text:0x805618E0; // type:function size:0x8 +fn_805618E8 = .text:0x805618E8; // type:function size:0x8 +__ct__6UIListFv = .text:0x805618F0; // type:function size:0x220 +fn_80561B10 = .text:0x80561B10; // type:function size:0x6C +fn_80561B7C = .text:0x80561B7C; // type:function size:0x40 +fn_80561BBC = .text:0x80561BBC; // type:function size:0x44 +fn_80561C00 = .text:0x80561C00; // type:function size:0x54 +fn_80561C54 = .text:0x80561C54; // type:function size:0x5C +fn_80561CB0 = .text:0x80561CB0; // type:function size:0x68 +__ct__19UIListStateCallbackFv = .text:0x80561D18; // type:function size:0x10 +__dt__6UIListFv = .text:0x80561D28; // type:function size:0x218 +fn_80561F40 = .text:0x80561F40; // type:function size:0x5C +fn_80561F9C = .text:0x80561F9C; // type:function size:0x5C +__dt__12UIListWidgetFv = .text:0x80561FF8; // type:function size:0x74 +fn_8056206C = .text:0x8056206C; // type:function size:0x58 +fn_805620C4 = .text:0x805620C4; // type:function size:0x80 +fn_80562144 = .text:0x80562144; // type:function size:0x80 +fn_805621C4 = .text:0x805621C4; // type:function size:0x58 +fn_8056221C = .text:0x8056221C; // type:function size:0x54 +fn_80562270 = .text:0x80562270; // type:function size:0x5C +fn_805622CC = .text:0x805622CC; // type:function size:0x6C +fn_80562338 = .text:0x80562338; // type:function size:0x28 +fn_80562360 = .text:0x80562360; // type:function size:0x8 +fn_80562368 = .text:0x80562368; // type:function size:0x8 +fn_80562370 = .text:0x80562370; // type:function size:0x3C +fn_805623AC = .text:0x805623AC; // type:function size:0x3C +fn_805623E8 = .text:0x805623E8; // type:function size:0x34 +fn_8056241C = .text:0x8056241C; // type:function size:0x5C +fn_80562478 = .text:0x80562478; // type:function size:0x3C +fn_805624B4 = .text:0x805624B4; // type:function size:0x64 +fn_80562518 = .text:0x80562518; // type:function size:0x34 +fn_8056254C = .text:0x8056254C; // type:function size:0x34 +StaticClassName__12UIListWidgetFv = .text:0x80562580; // type:function size:0x4C +fn_805625CC = .text:0x805625CC; // type:function size:0x34 +fn_80562600 = .text:0x80562600; // type:function size:0x34 +fn_80562634 = .text:0x80562634; // type:function size:0x4C +fn_80562680 = .text:0x80562680; // type:function size:0x34 +fn_805626B4 = .text:0x805626B4; // type:function size:0x34 +fn_805626E8 = .text:0x805626E8; // type:function size:0x4C +fn_80562734 = .text:0x80562734; // type:function size:0x34 +fn_80562768 = .text:0x80562768; // type:function size:0x34 +fn_8056279C = .text:0x8056279C; // type:function size:0x4C +fn_805627E8 = .text:0x805627E8; // type:function size:0x34 +fn_8056281C = .text:0x8056281C; // type:function size:0x34 +fn_80562850 = .text:0x80562850; // type:function size:0x4C +fn_8056289C = .text:0x8056289C; // type:function size:0x34 +fn_805628D0 = .text:0x805628D0; // type:function size:0x34 +fn_80562904 = .text:0x80562904; // type:function size:0x4C +fn_80562950 = .text:0x80562950; // type:function size:0x34 +fn_80562984 = .text:0x80562984; // type:function size:0x44 +fn_805629C8 = .text:0x805629C8; // type:function size:0x4C +fn_80562A14 = .text:0x80562A14; // type:function size:0x34 +fn_80562A48 = .text:0x80562A48; // type:function size:0x34 +fn_80562A7C = .text:0x80562A7C; // type:function size:0x4C +fn_80562AC8 = .text:0x80562AC8; // type:function size:0x34 +fn_80562AFC = .text:0x80562AFC; // type:function size:0x34 +fn_80562B30 = .text:0x80562B30; // type:function size:0x4C +fn_80562B7C = .text:0x80562B7C; // type:function size:0x34 +fn_80562BB0 = .text:0x80562BB0; // type:function size:0x48 +fn_80562BF8 = .text:0x80562BF8; // type:function size:0x184 +fn_80562D7C = .text:0x80562D7C; // type:function size:0xB8 +fn_80562E34 = .text:0x80562E34; // type:function size:0x4C +fn_80562E80 = .text:0x80562E80; // type:function size:0x78 +fn_80562EF8 = .text:0x80562EF8; // type:function size:0x2C +fn_80562F24 = .text:0x80562F24; // type:function size:0x4 +fn_80562F28 = .text:0x80562F28; // type:function size:0x5C +fn_80562F84 = .text:0x80562F84; // type:function size:0x68 +fn_80562FEC = .text:0x80562FEC; // type:function size:0x8 +fn_80562FF4 = .text:0x80562FF4; // type:function size:0x314 +fn_80563308 = .text:0x80563308; // type:function size:0x3C +fn_80563344 = .text:0x80563344; // type:function size:0x11C +fn_80563460 = .text:0x80563460; // type:function size:0x3C +fn_8056349C = .text:0x8056349C; // type:function size:0x100 +fn_8056359C = .text:0x8056359C; // type:function size:0x8 +fn_805635A4 = .text:0x805635A4; // type:function size:0x8 +fn_805635AC = .text:0x805635AC; // type:function size:0x8 +fn_805635B4 = .text:0x805635B4; // type:function size:0x8 +fn_805635BC = .text:0x805635BC; // type:function size:0x8 +fn_805635C4 = .text:0x805635C4; // type:function size:0x8 +fn_805635CC = .text:0x805635CC; // type:function size:0x8 +fn_805635D4 = .text:0x805635D4; // type:function size:0x8 +fn_805635DC = .text:0x805635DC; // type:function size:0x8 +fn_805635E4 = .text:0x805635E4; // type:function size:0x88 +fn_8056366C = .text:0x8056366C; // type:function size:0x8 +fn_80563674 = .text:0x80563674; // type:function size:0x8 +fn_8056367C = .text:0x8056367C; // type:function size:0x40 +fn_805636BC = .text:0x805636BC; // type:function size:0x8 +fn_805636C4 = .text:0x805636C4; // type:function size:0x8 +fn_805636CC = .text:0x805636CC; // type:function size:0x50 +fn_8056371C = .text:0x8056371C; // type:function size:0x50 +fn_8056376C = .text:0x8056376C; // type:function size:0x68 +fn_805637D4 = .text:0x805637D4; // type:function size:0x8 +fn_805637DC = .text:0x805637DC; // type:function size:0xA8 +fn_80563884 = .text:0x80563884; // type:function size:0x7C +fn_80563900 = .text:0x80563900; // type:function size:0x94 +fn_80563994 = .text:0x80563994; // type:function size:0x6C +fn_80563A00 = .text:0x80563A00; // type:function size:0xA0 +fn_80563AA0 = .text:0x80563AA0; // type:function size:0x14 +fn_80563AB4 = .text:0x80563AB4; // type:function size:0x8 +fn_80563ABC = .text:0x80563ABC; // type:function size:0xAC +fn_80563B68 = .text:0x80563B68; // type:function size:0xC +fn_80563B74 = .text:0x80563B74; // type:function size:0x140 +fn_80563CB4 = .text:0x80563CB4; // type:function size:0xEC +fn_80563DA0 = .text:0x80563DA0; // type:function size:0x100 +fn_80563EA0 = .text:0x80563EA0; // type:function size:0x3C +fn_80563EDC = .text:0x80563EDC; // type:function size:0xF8 +fn_80563FD4 = .text:0x80563FD4; // type:function size:0xC4 +fn_80564098 = .text:0x80564098; // type:function size:0x194 +fn_8056422C = .text:0x8056422C; // type:function size:0x158 +fn_80564384 = .text:0x80564384; // type:function size:0x58 +fn_805643DC = .text:0x805643DC; // type:function size:0x80 +fn_8056445C = .text:0x8056445C; // type:function size:0x80 +fn_805644DC = .text:0x805644DC; // type:function size:0x58 +fn_80564534 = .text:0x80564534; // type:function size:0x54 +fn_80564588 = .text:0x80564588; // type:function size:0x5C +fn_805645E4 = .text:0x805645E4; // type:function size:0x6C +fn_80564650 = .text:0x80564650; // type:function size:0x28 +fn_80564678 = .text:0x80564678; // type:function size:0x8 +fn_80564680 = .text:0x80564680; // type:function size:0x8 +fn_80564688 = .text:0x80564688; // type:function size:0x3C +fn_805646C4 = .text:0x805646C4; // type:function size:0x5C +fn_80564720 = .text:0x80564720; // type:function size:0x30 +fn_80564750 = .text:0x80564750; // type:function size:0x30 +fn_80564780 = .text:0x80564780; // type:function size:0x40 +fn_805647C0 = .text:0x805647C0; // type:function size:0xA0 +fn_80564860 = .text:0x80564860; // type:function size:0xE4 +fn_80564944 = .text:0x80564944; // type:function size:0x94 +fn_805649D8 = .text:0x805649D8; // type:function size:0x3A8 +fn_80564D80 = .text:0x80564D80; // type:function size:0x4 +fn_80564D84 = .text:0x80564D84; // type:function size:0x88 +fn_80564E0C = .text:0x80564E0C; // type:function size:0x2C +fn_80564E38 = .text:0x80564E38; // type:function size:0xB4 +fn_80564EEC = .text:0x80564EEC; // type:function size:0x10 +fn_80564EFC = .text:0x80564EFC; // type:function size:0x4 +fn_80564F00 = .text:0x80564F00; // type:function size:0x3C +fn_80564F3C = .text:0x80564F3C; // type:function size:0x4 +fn_80564F40 = .text:0x80564F40; // type:function size:0x3C +fn_80564F7C = .text:0x80564F7C; // type:function size:0x40 +fn_80564FBC = .text:0x80564FBC; // type:function size:0xEC +fn_805650A8 = .text:0x805650A8; // type:function size:0x2C +fn_805650D4 = .text:0x805650D4; // type:function size:0x8 +fn_805650DC = .text:0x805650DC; // type:function size:0x2C +fn_80565108 = .text:0x80565108; // type:function size:0x58 +fn_80565160 = .text:0x80565160; // type:function size:0x8 +fn_80565168 = .text:0x80565168; // type:function size:0x54 +fn_805651BC = .text:0x805651BC; // type:function size:0x48 +fn_80565204 = .text:0x80565204; // type:function size:0x4C +fn_80565250 = .text:0x80565250; // type:function size:0x4C +fn_8056529C = .text:0x8056529C; // type:function size:0x8C +fn_80565328 = .text:0x80565328; // type:function size:0x2C +fn_80565354 = .text:0x80565354; // type:function size:0x8 +fn_8056535C = .text:0x8056535C; // type:function size:0x60 +fn_805653BC = .text:0x805653BC; // type:function size:0x48 +fn_80565404 = .text:0x80565404; // type:function size:0x84 +fn_80565488 = .text:0x80565488; // type:function size:0x48 +fn_805654D0 = .text:0x805654D0; // type:function size:0x48 +fn_80565518 = .text:0x80565518; // type:function size:0x8 +fn_80565520 = .text:0x80565520; // type:function size:0x8 +fn_80565528 = .text:0x80565528; // type:function size:0xE4 +fn_8056560C = .text:0x8056560C; // type:function size:0xA8 +fn_805656B4 = .text:0x805656B4; // type:function size:0x4C +fn_80565700 = .text:0x80565700; // type:function size:0x15C +fn_8056585C = .text:0x8056585C; // type:function size:0x4C +fn_805658A8 = .text:0x805658A8; // type:function size:0x200 +fn_80565AA8 = .text:0x80565AA8; // type:function size:0x30 +fn_80565AD8 = .text:0x80565AD8; // type:function size:0x498 +fn_80565F70 = .text:0x80565F70; // type:function size:0x8A4 +fn_80566814 = .text:0x80566814; // type:function size:0x34 +fn_80566848 = .text:0x80566848; // type:function size:0x3C +fn_80566884 = .text:0x80566884; // type:function size:0x12C +fn_805669B0 = .text:0x805669B0; // type:function size:0x8 +fn_805669B8 = .text:0x805669B8; // type:function size:0x194 +fn_80566B4C = .text:0x80566B4C; // type:function size:0x144 +fn_80566C90 = .text:0x80566C90; // type:function size:0x88 +fn_80566D18 = .text:0x80566D18; // type:function size:0x94 +fn_80566DAC = .text:0x80566DAC; // type:function size:0x2C +fn_80566DD8 = .text:0x80566DD8; // type:function size:0x38 +fn_80566E10 = .text:0x80566E10; // type:function size:0x8 +fn_80566E18 = .text:0x80566E18; // type:function size:0x7EC +fn_80567604 = .text:0x80567604; // type:function size:0x1E8 +fn_805677EC = .text:0x805677EC; // type:function size:0xC0 +fn_805678AC = .text:0x805678AC; // type:function size:0x44 +fn_805678F0 = .text:0x805678F0; // type:function size:0x110 +fn_80567A00 = .text:0x80567A00; // type:function size:0x124 +fn_80567B24 = .text:0x80567B24; // type:function size:0x60 +fn_80567B84 = .text:0x80567B84; // type:function size:0x5C +fn_80567BE0 = .text:0x80567BE0; // type:function size:0x54 +fn_80567C34 = .text:0x80567C34; // type:function size:0x5C +fn_80567C90 = .text:0x80567C90; // type:function size:0x5C +fn_80567CEC = .text:0x80567CEC; // type:function size:0x138 +fn_80567E24 = .text:0x80567E24; // type:function size:0x60 +fn_80567E84 = .text:0x80567E84; // type:function size:0x14 +fn_80567E98 = .text:0x80567E98; // type:function size:0x14 +fn_80567EAC = .text:0x80567EAC; // type:function size:0x8 +fn_80567EB4 = .text:0x80567EB4; // type:function size:0x8 +fn_80567EBC = .text:0x80567EBC; // type:function size:0x8 +fn_80567EC4 = .text:0x80567EC4; // type:function size:0x8 +fn_80567ECC = .text:0x80567ECC; // type:function size:0x8 +fn_80567ED4 = .text:0x80567ED4; // type:function size:0x8 +fn_80567EDC = .text:0x80567EDC; // type:function size:0x8 +fn_80567EE4 = .text:0x80567EE4; // type:function size:0x8 +fn_80567EEC = .text:0x80567EEC; // type:function size:0x14 +fn_80567F00 = .text:0x80567F00; // type:function size:0x14 +fn_80567F14 = .text:0x80567F14; // type:function size:0x14 +fn_80567F28 = .text:0x80567F28; // type:function size:0x14 +fn_80567F3C = .text:0x80567F3C; // type:function size:0x14 +fn_80567F50 = .text:0x80567F50; // type:function size:0x14 +fn_80567F64 = .text:0x80567F64; // type:function size:0x14 +fn_80567F78 = .text:0x80567F78; // type:function size:0x14 +fn_80567F8C = .text:0x80567F8C; // type:function size:0x14 +fn_80567FA0 = .text:0x80567FA0; // type:function size:0x14 +fn_80567FB4 = .text:0x80567FB4; // type:function size:0x14 +fn_80567FC8 = .text:0x80567FC8; // type:function size:0x14 +fn_80567FDC = .text:0x80567FDC; // type:function size:0x14 +fn_80567FF0 = .text:0x80567FF0; // type:function size:0x8 +fn_80567FF8 = .text:0x80567FF8; // type:function size:0x8 +fn_80568000 = .text:0x80568000; // type:function size:0x8 +fn_80568008 = .text:0x80568008; // type:function size:0x8 +fn_80568010 = .text:0x80568010; // type:function size:0x8 +fn_80568018 = .text:0x80568018; // type:function size:0x8 +fn_80568020 = .text:0x80568020; // type:function size:0x8 +fn_80568028 = .text:0x80568028; // type:function size:0x8 +fn_80568030 = .text:0x80568030; // type:function size:0x8 +fn_80568038 = .text:0x80568038; // type:function size:0x8 +fn_80568040 = .text:0x80568040; // type:function size:0x8 +fn_80568048 = .text:0x80568048; // type:function size:0x6C +fn_805680B4 = .text:0x805680B4; // type:function size:0x4 +fn_805680B8 = .text:0x805680B8; // type:function size:0xA8 +fn_80568160 = .text:0x80568160; // type:function size:0x8C +fn_805681EC = .text:0x805681EC; // type:function size:0x180 +fn_8056836C = .text:0x8056836C; // type:function size:0x88 +fn_805683F4 = .text:0x805683F4; // type:function size:0xC4 +fn_805684B8 = .text:0x805684B8; // type:function size:0x1CC +fn_80568684 = .text:0x80568684; // type:function size:0x74 +fn_805686F8 = .text:0x805686F8; // type:function size:0x4 +fn_805686FC = .text:0x805686FC; // type:function size:0x128 +fn_80568824 = .text:0x80568824; // type:function size:0x4C +fn_80568870 = .text:0x80568870; // type:function size:0x9C +fn_8056890C = .text:0x8056890C; // type:function size:0xF8 +fn_80568A04 = .text:0x80568A04; // type:function size:0x54 +fn_80568A58 = .text:0x80568A58; // type:function size:0x10 +fn_80568A68 = .text:0x80568A68; // type:function size:0x40 +fn_80568AA8 = .text:0x80568AA8; // type:function size:0x4 +fn_80568AAC = .text:0x80568AAC; // type:function size:0x70 +fn_80568B1C = .text:0x80568B1C; // type:function size:0x68 +fn_80568B84 = .text:0x80568B84; // type:function size:0xC4 +fn_80568C48 = .text:0x80568C48; // type:function size:0x10C +fn_80568D54 = .text:0x80568D54; // type:function size:0x68 +fn_80568DBC = .text:0x80568DBC; // type:function size:0x4 +fn_80568DC0 = .text:0x80568DC0; // type:function size:0x128 +fn_80568EE8 = .text:0x80568EE8; // type:function size:0x8C +fn_80568F74 = .text:0x80568F74; // type:function size:0x28 +fn_80568F9C = .text:0x80568F9C; // type:function size:0x104 +__ct__9UIListDirFv = .text:0x805690A0; // type:function size:0x1D0 +__dt__9UIListDirFv = .text:0x80569270; // type:function size:0x130 +fn_805693A0 = .text:0x805693A0; // type:function size:0x8 +fn_805693A8 = .text:0x805693A8; // type:function size:0x8 +fn_805693B0 = .text:0x805693B0; // type:function size:0x714 +fn_80569AC4 = .text:0x80569AC4; // type:function size:0x4 +fn_80569AC8 = .text:0x80569AC8; // type:function size:0x88 +fn_80569B50 = .text:0x80569B50; // type:function size:0x2C +fn_80569B7C = .text:0x80569B7C; // type:function size:0x10 +fn_80569B8C = .text:0x80569B8C; // type:function size:0x7C +fn_80569C08 = .text:0x80569C08; // type:function size:0x4 +fn_80569C0C = .text:0x80569C0C; // type:function size:0x4 +fn_80569C10 = .text:0x80569C10; // type:function size:0x3C +fn_80569C4C = .text:0x80569C4C; // type:function size:0x40 +fn_80569C8C = .text:0x80569C8C; // type:function size:0x8C +fn_80569D18 = .text:0x80569D18; // type:function size:0x8 +fn_80569D20 = .text:0x80569D20; // type:function size:0x2C +fn_80569D4C = .text:0x80569D4C; // type:function size:0x58 +fn_80569DA4 = .text:0x80569DA4; // type:function size:0x28 +fn_80569DCC = .text:0x80569DCC; // type:function size:0x68 +fn_80569E34 = .text:0x80569E34; // type:function size:0x54 +fn_80569E88 = .text:0x80569E88; // type:function size:0x138 +fn_80569FC0 = .text:0x80569FC0; // type:function size:0x80 +fn_8056A040 = .text:0x8056A040; // type:function size:0x154 +fn_8056A194 = .text:0x8056A194; // type:function size:0x88 +fn_8056A21C = .text:0x8056A21C; // type:function size:0xE8 +fn_8056A304 = .text:0x8056A304; // type:function size:0x30 +fn_8056A334 = .text:0x8056A334; // type:function size:0xB4 +fn_8056A3E8 = .text:0x8056A3E8; // type:function size:0x34 +fn_8056A41C = .text:0x8056A41C; // type:function size:0x8C +fn_8056A4A8 = .text:0x8056A4A8; // type:function size:0xD4 +fn_8056A57C = .text:0x8056A57C; // type:function size:0x98 +fn_8056A614 = .text:0x8056A614; // type:function size:0x6C +fn_8056A680 = .text:0x8056A680; // type:function size:0x30 +fn_8056A6B0 = .text:0x8056A6B0; // type:function size:0x40 +fn_8056A6F0 = .text:0x8056A6F0; // type:function size:0x44 +fn_8056A734 = .text:0x8056A734; // type:function size:0x50 +fn_8056A784 = .text:0x8056A784; // type:function size:0xA4 +fn_8056A828 = .text:0x8056A828; // type:function size:0x6C +fn_8056A894 = .text:0x8056A894; // type:function size:0xC +fn_8056A8A0 = .text:0x8056A8A0; // type:function size:0xE0 +fn_8056A980 = .text:0x8056A980; // type:function size:0x94 +fn_8056AA14 = .text:0x8056AA14; // type:function size:0x70 +fn_8056AA84 = .text:0x8056AA84; // type:function size:0x84 +fn_8056AB08 = .text:0x8056AB08; // type:function size:0x6C +fn_8056AB74 = .text:0x8056AB74; // type:function size:0x58 +fn_8056ABCC = .text:0x8056ABCC; // type:function size:0x58 +fn_8056AC24 = .text:0x8056AC24; // type:function size:0x30 +fn_8056AC54 = .text:0x8056AC54; // type:function size:0x60 +fn_8056ACB4 = .text:0x8056ACB4; // type:function size:0x50 +fn_8056AD04 = .text:0x8056AD04; // type:function size:0xD0 +ClassName__12UIListWidgetCFv = .text:0x8056ADD4; // type:function size:0x4 +fn_8056ADD8 = .text:0x8056ADD8; // type:function size:0x78 +fn_8056AE50 = .text:0x8056AE50; // type:function size:0x6C +fn_8056AEBC = .text:0x8056AEBC; // type:function size:0x158 +fn_8056B014 = .text:0x8056B014; // type:function size:0x214 +fn_8056B228 = .text:0x8056B228; // type:function size:0x5C +fn_8056B284 = .text:0x8056B284; // type:function size:0x58 +fn_8056B2DC = .text:0x8056B2DC; // type:function size:0x80 +fn_8056B35C = .text:0x8056B35C; // type:function size:0x80 +fn_8056B3DC = .text:0x8056B3DC; // type:function size:0x58 +fn_8056B434 = .text:0x8056B434; // type:function size:0x54 +fn_8056B488 = .text:0x8056B488; // type:function size:0x5C +fn_8056B4E4 = .text:0x8056B4E4; // type:function size:0x6C +fn_8056B550 = .text:0x8056B550; // type:function size:0x28 +fn_8056B578 = .text:0x8056B578; // type:function size:0x8 +fn_8056B580 = .text:0x8056B580; // type:function size:0x3C +fn_8056B5BC = .text:0x8056B5BC; // type:function size:0x44 +fn_8056B600 = .text:0x8056B600; // type:function size:0x30 +fn_8056B630 = .text:0x8056B630; // type:function size:0x30 +fn_8056B660 = .text:0x8056B660; // type:function size:0x40 +fn_8056B6A0 = .text:0x8056B6A0; // type:function size:0x68 +fn_8056B708 = .text:0x8056B708; // type:function size:0x60 +fn_8056B768 = .text:0x8056B768; // type:function size:0x10 +fn_8056B778 = .text:0x8056B778; // type:function size:0x8 +fn_8056B780 = .text:0x8056B780; // type:function size:0xB8 +fn_8056B838 = .text:0x8056B838; // type:function size:0xAC +fn_8056B8E4 = .text:0x8056B8E4; // type:function size:0x4C +fn_8056B930 = .text:0x8056B930; // type:function size:0x4 +fn_8056B934 = .text:0x8056B934; // type:function size:0x88 +fn_8056B9BC = .text:0x8056B9BC; // type:function size:0x100 +fn_8056BABC = .text:0x8056BABC; // type:function size:0xEC +fn_8056BBA8 = .text:0x8056BBA8; // type:function size:0x4 +fn_8056BBAC = .text:0x8056BBAC; // type:function size:0x4 +fn_8056BBB0 = .text:0x8056BBB0; // type:function size:0x4 +fn_8056BBB4 = .text:0x8056BBB4; // type:function size:0x8 +fn_8056BBBC = .text:0x8056BBBC; // type:function size:0x8 +fn_8056BBC4 = .text:0x8056BBC4; // type:function size:0x30 +fn_8056BBF4 = .text:0x8056BBF4; // type:function size:0x47C +fn_8056C070 = .text:0x8056C070; // type:function size:0x114 +fn_8056C184 = .text:0x8056C184; // type:function size:0xCC +fn_8056C250 = .text:0x8056C250; // type:function size:0x5C +fn_8056C2AC = .text:0x8056C2AC; // type:function size:0x5C +fn_8056C308 = .text:0x8056C308; // type:function size:0x60 +fn_8056C368 = .text:0x8056C368; // type:function size:0x5C +fn_8056C3C4 = .text:0x8056C3C4; // type:function size:0xC +fn_8056C3D0 = .text:0x8056C3D0; // type:function size:0x114 +fn_8056C4E4 = .text:0x8056C4E4; // type:function size:0x5C +fn_8056C540 = .text:0x8056C540; // type:function size:0x54 +fn_8056C594 = .text:0x8056C594; // type:function size:0x5C +fn_8056C5F0 = .text:0x8056C5F0; // type:function size:0x134 +fn_8056C724 = .text:0x8056C724; // type:function size:0x4 +fn_8056C728 = .text:0x8056C728; // type:function size:0xC +fn_8056C734 = .text:0x8056C734; // type:function size:0x8 +fn_8056C73C = .text:0x8056C73C; // type:function size:0x8 +fn_8056C744 = .text:0x8056C744; // type:function size:0x8 +fn_8056C74C = .text:0x8056C74C; // type:function size:0x8 +fn_8056C754 = .text:0x8056C754; // type:function size:0x8 +fn_8056C75C = .text:0x8056C75C; // type:function size:0x8 +fn_8056C764 = .text:0x8056C764; // type:function size:0x8 +fn_8056C76C = .text:0x8056C76C; // type:function size:0x8 +fn_8056C774 = .text:0x8056C774; // type:function size:0x8 +fn_8056C77C = .text:0x8056C77C; // type:function size:0x8 +fn_8056C784 = .text:0x8056C784; // type:function size:0x8 +fn_8056C78C = .text:0x8056C78C; // type:function size:0x8 +fn_8056C794 = .text:0x8056C794; // type:function size:0x8 +fn_8056C79C = .text:0x8056C79C; // type:function size:0x8 +fn_8056C7A4 = .text:0x8056C7A4; // type:function size:0x8 +fn_8056C7AC = .text:0x8056C7AC; // type:function size:0x14 +fn_8056C7C0 = .text:0x8056C7C0; // type:function size:0x14 +fn_8056C7D4 = .text:0x8056C7D4; // type:function size:0x8 +fn_8056C7DC = .text:0x8056C7DC; // type:function size:0x8 +fn_8056C7E4 = .text:0x8056C7E4; // type:function size:0x8 +fn_8056C7EC = .text:0x8056C7EC; // type:function size:0x8 +fn_8056C7F4 = .text:0x8056C7F4; // type:function size:0x8 +fn_8056C7FC = .text:0x8056C7FC; // type:function size:0x8 +fn_8056C804 = .text:0x8056C804; // type:function size:0x8 +fn_8056C80C = .text:0x8056C80C; // type:function size:0x8 +fn_8056C814 = .text:0x8056C814; // type:function size:0x8 +fn_8056C81C = .text:0x8056C81C; // type:function size:0x8 +fn_8056C824 = .text:0x8056C824; // type:function size:0x8 +fn_8056C82C = .text:0x8056C82C; // type:function size:0x8 +fn_8056C834 = .text:0x8056C834; // type:function size:0x14 +fn_8056C848 = .text:0x8056C848; // type:function size:0x14 +fn_8056C85C = .text:0x8056C85C; // type:function size:0x14 +fn_8056C870 = .text:0x8056C870; // type:function size:0x14 +fn_8056C884 = .text:0x8056C884; // type:function size:0x14 +fn_8056C898 = .text:0x8056C898; // type:function size:0x14 +fn_8056C8AC = .text:0x8056C8AC; // type:function size:0x14 +fn_8056C8C0 = .text:0x8056C8C0; // type:function size:0x14 +fn_8056C8D4 = .text:0x8056C8D4; // type:function size:0x14 +fn_8056C8E8 = .text:0x8056C8E8; // type:function size:0x14 +fn_8056C8FC = .text:0x8056C8FC; // type:function size:0x14 +fn_8056C910 = .text:0x8056C910; // type:function size:0x14 +fn_8056C924 = .text:0x8056C924; // type:function size:0x14 +fn_8056C938 = .text:0x8056C938; // type:function size:0x14 +fn_8056C94C = .text:0x8056C94C; // type:function size:0x8 +fn_8056C954 = .text:0x8056C954; // type:function size:0x8 +fn_8056C95C = .text:0x8056C95C; // type:function size:0x8 +fn_8056C964 = .text:0x8056C964; // type:function size:0x8 +fn_8056C96C = .text:0x8056C96C; // type:function size:0x8 +fn_8056C974 = .text:0x8056C974; // type:function size:0x8 +fn_8056C97C = .text:0x8056C97C; // type:function size:0x8 +fn_8056C984 = .text:0x8056C984; // type:function size:0x8 +fn_8056C98C = .text:0x8056C98C; // type:function size:0x8 +fn_8056C994 = .text:0x8056C994; // type:function size:0x8 +fn_8056C99C = .text:0x8056C99C; // type:function size:0x8 +fn_8056C9A4 = .text:0x8056C9A4; // type:function size:0x8 +fn_8056C9AC = .text:0x8056C9AC; // type:function size:0x4C +fn_8056C9F8 = .text:0x8056C9F8; // type:function size:0x4 +fn_8056C9FC = .text:0x8056C9FC; // type:function size:0x70 +fn_8056CA6C = .text:0x8056CA6C; // type:function size:0x68 +fn_8056CAD4 = .text:0x8056CAD4; // type:function size:0x100 +fn_8056CBD4 = .text:0x8056CBD4; // type:function size:0xC4 +fn_8056CC98 = .text:0x8056CC98; // type:function size:0xC0 +fn_8056CD58 = .text:0x8056CD58; // type:function size:0x68 +fn_8056CDC0 = .text:0x8056CDC0; // type:function size:0x4 +fn_8056CDC4 = .text:0x8056CDC4; // type:function size:0x128 +fn_8056CEEC = .text:0x8056CEEC; // type:function size:0x4C +fn_8056CF38 = .text:0x8056CF38; // type:function size:0x50 +fn_8056CF88 = .text:0x8056CF88; // type:function size:0xCC +fn_8056D054 = .text:0x8056D054; // type:function size:0x54 +fn_8056D0A8 = .text:0x8056D0A8; // type:function size:0x30 +fn_8056D0D8 = .text:0x8056D0D8; // type:function size:0x4 +fn_8056D0DC = .text:0x8056D0DC; // type:function size:0x70 +fn_8056D14C = .text:0x8056D14C; // type:function size:0x68 +fn_8056D1B4 = .text:0x8056D1B4; // type:function size:0xC4 +fn_8056D278 = .text:0x8056D278; // type:function size:0xC0 +fn_8056D338 = .text:0x8056D338; // type:function size:0xD0 +fn_8056D408 = .text:0x8056D408; // type:function size:0x68 +fn_8056D470 = .text:0x8056D470; // type:function size:0x4 +fn_8056D474 = .text:0x8056D474; // type:function size:0x128 +fn_8056D59C = .text:0x8056D59C; // type:function size:0x8C +fn_8056D628 = .text:0x8056D628; // type:function size:0x28 +fn_8056D650 = .text:0x8056D650; // type:function size:0x194 +fn_8056D7E4 = .text:0x8056D7E4; // type:function size:0x8 +fn_8056D7EC = .text:0x8056D7EC; // type:function size:0x8 +fn_8056D7F4 = .text:0x8056D7F4; // type:function size:0x8 +fn_8056D7FC = .text:0x8056D7FC; // type:function size:0x48 +fn_8056D844 = .text:0x8056D844; // type:function size:0x5C +fn_8056D8A0 = .text:0x8056D8A0; // type:function size:0x8 +DefaultMat__10UIListMeshCFv = .text:0x8056D8A8; // type:function size:0x8 +fn_8056D8B0 = .text:0x8056D8B0; // type:function size:0x40 +fn_8056D8F0 = .text:0x8056D8F0; // type:function size:0x54 +fn_8056D944 = .text:0x8056D944; // type:function size:0x30 +fn_8056D974 = .text:0x8056D974; // type:function size:0xA4 +fn_8056DA18 = .text:0x8056DA18; // type:function size:0x4 +fn_8056DA1C = .text:0x8056DA1C; // type:function size:0x78 +fn_8056DA94 = .text:0x8056DA94; // type:function size:0x74 +fn_8056DB08 = .text:0x8056DB08; // type:function size:0xC4 +fn_8056DBCC = .text:0x8056DBCC; // type:function size:0xF4 +fn_8056DCC0 = .text:0x8056DCC0; // type:function size:0x58 +fn_8056DD18 = .text:0x8056DD18; // type:function size:0x74 +fn_8056DD8C = .text:0x8056DD8C; // type:function size:0x4 +fn_8056DD90 = .text:0x8056DD90; // type:function size:0x128 +fn_8056DEB8 = .text:0x8056DEB8; // type:function size:0x4C +fn_8056DF04 = .text:0x8056DF04; // type:function size:0x120 +Text__14UIListProviderCFiiP11UIListLabelP7UILabel = .text:0x8056E024; // type:function size:0x44 +Mat__14UIListProviderCFiiP10UIListMesh = .text:0x8056E068; // type:function size:0x8 +UpdateExtendedText__14UIListProviderCFiiP7UILabel = .text:0x8056E070; // type:function size:0x50 +UpdateExtendedMesh__14UIListProviderCFiiP7RndMesh = .text:0x8056E0C0; // type:function size:0x40 +UpdateExtendedCustom__14UIListProviderCFiiPQ23Hmx6Object = .text:0x8056E100; // type:function size:0x8 +fn_8056E108 = .text:0x8056E108; // type:function size:0x12C +fn_8056E234 = .text:0x8056E234; // type:function size:0x9C +fn_8056E2D0 = .text:0x8056E2D0; // type:function size:0x98 +fn_8056E368 = .text:0x8056E368; // type:function size:0xA8 +fn_8056E410 = .text:0x8056E410; // type:function size:0x98 +fn_8056E4A8 = .text:0x8056E4A8; // type:function size:0xA8 +fn_8056E550 = .text:0x8056E550; // type:function size:0x1A0 +fn_8056E6F0 = .text:0x8056E6F0; // type:function size:0x44 +fn_8056E734 = .text:0x8056E734; // type:function size:0x68 +fn_8056E79C = .text:0x8056E79C; // type:function size:0x84 +fn_8056E820 = .text:0x8056E820; // type:function size:0x58 +fn_8056E878 = .text:0x8056E878; // type:function size:0x5C +fn_8056E8D4 = .text:0x8056E8D4; // type:function size:0x5C +fn_8056E930 = .text:0x8056E930; // type:function size:0x38 +fn_8056E968 = .text:0x8056E968; // type:function size:0xAC +fn_8056EA14 = .text:0x8056EA14; // type:function size:0x254 +fn_8056EC68 = .text:0x8056EC68; // type:function size:0x8C +fn_8056ECF4 = .text:0x8056ECF4; // type:function size:0x88 +fn_8056ED7C = .text:0x8056ED7C; // type:function size:0xD0 +fn_8056EE4C = .text:0x8056EE4C; // type:function size:0x24 +fn_8056EE70 = .text:0x8056EE70; // type:function size:0x68 +fn_8056EED8 = .text:0x8056EED8; // type:function size:0x4C +fn_8056EF24 = .text:0x8056EF24; // type:function size:0x4 +fn_8056EF28 = .text:0x8056EF28; // type:function size:0x78 +fn_8056EFA0 = .text:0x8056EFA0; // type:function size:0x60 +fn_8056F000 = .text:0x8056F000; // type:function size:0xC4 +fn_8056F0C4 = .text:0x8056F0C4; // type:function size:0xFC +fn_8056F1C0 = .text:0x8056F1C0; // type:function size:0x4 +fn_8056F1C4 = .text:0x8056F1C4; // type:function size:0x128 +fn_8056F2EC = .text:0x8056F2EC; // type:function size:0xB4 +fn_8056F3A0 = .text:0x8056F3A0; // type:function size:0x38 +fn_8056F3D8 = .text:0x8056F3D8; // type:function size:0x7C +fn_8056F454 = .text:0x8056F454; // type:function size:0x38 +fn_8056F48C = .text:0x8056F48C; // type:function size:0x1C +fn_8056F4A8 = .text:0x8056F4A8; // type:function size:0x18 +fn_8056F4C0 = .text:0x8056F4C0; // type:function size:0x54 +fn_8056F514 = .text:0x8056F514; // type:function size:0x8 +fn_8056F51C = .text:0x8056F51C; // type:function size:0x8 +fn_8056F524 = .text:0x8056F524; // type:function size:0x8 +fn_8056F52C = .text:0x8056F52C; // type:function size:0x8 +fn_8056F534 = .text:0x8056F534; // type:function size:0x8 +fn_8056F53C = .text:0x8056F53C; // type:function size:0xA0 +fn_8056F5DC = .text:0x8056F5DC; // type:function size:0xCC +fn_8056F6A8 = .text:0x8056F6A8; // type:function size:0x8 +fn_8056F6B0 = .text:0x8056F6B0; // type:function size:0x8 +fn_8056F6B8 = .text:0x8056F6B8; // type:function size:0x8 +fn_8056F6C0 = .text:0x8056F6C0; // type:function size:0x5C +fn_8056F71C = .text:0x8056F71C; // type:function size:0x48 +fn_8056F764 = .text:0x8056F764; // type:function size:0x7C +fn_8056F7E0 = .text:0x8056F7E0; // type:function size:0x68 +fn_8056F848 = .text:0x8056F848; // type:function size:0x90 +fn_8056F8D8 = .text:0x8056F8D8; // type:function size:0xB0 +fn_8056F988 = .text:0x8056F988; // type:function size:0x60 +fn_8056F9E8 = .text:0x8056F9E8; // type:function size:0x8 +fn_8056F9F0 = .text:0x8056F9F0; // type:function size:0x10C +fn_8056FAFC = .text:0x8056FAFC; // type:function size:0xBC +fn_8056FBB8 = .text:0x8056FBB8; // type:function size:0xCC +fn_8056FC84 = .text:0x8056FC84; // type:function size:0x20 +fn_8056FCA4 = .text:0x8056FCA4; // type:function size:0x20 +fn_8056FCC4 = .text:0x8056FCC4; // type:function size:0x3C +fn_8056FD00 = .text:0x8056FD00; // type:function size:0x8 +fn_8056FD08 = .text:0x8056FD08; // type:function size:0x20 +fn_8056FD28 = .text:0x8056FD28; // type:function size:0x8 +fn_8056FD30 = .text:0x8056FD30; // type:function size:0x44 +fn_8056FD74 = .text:0x8056FD74; // type:function size:0x8 +fn_8056FD7C = .text:0x8056FD7C; // type:function size:0x16C +fn_8056FEE8 = .text:0x8056FEE8; // type:function size:0x150 +fn_80570038 = .text:0x80570038; // type:function size:0x258 +fn_80570290 = .text:0x80570290; // type:function size:0xF4 +fn_80570384 = .text:0x80570384; // type:function size:0x1F4 +fn_80570578 = .text:0x80570578; // type:function size:0x258 +fn_805707D0 = .text:0x805707D0; // type:function size:0x74 +fn_80570844 = .text:0x80570844; // type:function size:0xA0 +fn_805708E4 = .text:0x805708E4; // type:function size:0x4C +fn_80570930 = .text:0x80570930; // type:function size:0x84 +fn_805709B4 = .text:0x805709B4; // type:function size:0x6C +fn_80570A20 = .text:0x80570A20; // type:function size:0x54 +fn_80570A74 = .text:0x80570A74; // type:function size:0x14C +fn_80570BC0 = .text:0x80570BC0; // type:function size:0x130 +fn_80570CF0 = .text:0x80570CF0; // type:function size:0x54 +fn_80570D44 = .text:0x80570D44; // type:function size:0x30 +fn_80570D74 = .text:0x80570D74; // type:function size:0x4 +fn_80570D78 = .text:0x80570D78; // type:function size:0x70 +fn_80570DE8 = .text:0x80570DE8; // type:function size:0x40 +fn_80570E28 = .text:0x80570E28; // type:function size:0x104 +fn_80570F2C = .text:0x80570F2C; // type:function size:0x68 +fn_80570F94 = .text:0x80570F94; // type:function size:0x8 +fn_80570F9C = .text:0x80570F9C; // type:function size:0xC4 +fn_80571060 = .text:0x80571060; // type:function size:0xC0 +fn_80571120 = .text:0x80571120; // type:function size:0xD0 +fn_805711F0 = .text:0x805711F0; // type:function size:0x68 +fn_80571258 = .text:0x80571258; // type:function size:0x70 +fn_805712C8 = .text:0x805712C8; // type:function size:0x4 +fn_805712CC = .text:0x805712CC; // type:function size:0x128 +fn_805713F4 = .text:0x805713F4; // type:function size:0x8C +fn_80571480 = .text:0x80571480; // type:function size:0xB4 +fn_80571534 = .text:0x80571534; // type:function size:0x84 +fn_805715B8 = .text:0x805715B8; // type:function size:0x14 +__ct__12UIListWidgetFv = .text:0x805715CC; // type:function size:0x108 +fn_805716D4 = .text:0x805716D4; // type:function size:0x4 +fn_805716D8 = .text:0x805716D8; // type:function size:0x88 +fn_80571760 = .text:0x80571760; // type:function size:0x2C +fn_8057178C = .text:0x8057178C; // type:function size:0xB4 +fn_80571840 = .text:0x80571840; // type:function size:0x30 +fn_80571870 = .text:0x80571870; // type:function size:0x98 +fn_80571908 = .text:0x80571908; // type:function size:0x70 +fn_80571978 = .text:0x80571978; // type:function size:0x10 +fn_80571988 = .text:0x80571988; // type:function size:0x30 +fn_805719B8 = .text:0x805719B8; // type:function size:0x30 +fn_805719E8 = .text:0x805719E8; // type:function size:0x40 +fn_80571A28 = .text:0x80571A28; // type:function size:0x8 +fn_80571A30 = .text:0x80571A30; // type:function size:0x8 +fn_80571A38 = .text:0x80571A38; // type:function size:0x8 +fn_80571A40 = .text:0x80571A40; // type:function size:0x8 +fn_80571A48 = .text:0x80571A48; // type:function size:0xE4 +fn_80571B2C = .text:0x80571B2C; // type:function size:0x2C +fn_80571B58 = .text:0x80571B58; // type:function size:0x74 +fn_80571BCC = .text:0x80571BCC; // type:function size:0x4C +fn_80571C18 = .text:0x80571C18; // type:function size:0x14 +fn_80571C2C = .text:0x80571C2C; // type:function size:0x8 +Save__12UIListWidgetFR9BinStream = .text:0x80571C34; // type:function size:0x4 +Load__12UIListWidgetFR9BinStream = .text:0x80571C38; // type:function size:0x128 +Copy__12UIListWidgetFPCQ23Hmx6ObjectQ33Hmx6Object8CopyType = .text:0x80571D60; // type:function size:0x8C +fn_80571DEC = .text:0x80571DEC; // type:function size:0x30 +Handle__12UIListWidgetFP9DataArrayb = .text:0x80571E1C; // type:function size:0xC4 +SyncProperty__12UIListWidgetFR8DataNodeP9DataArrayi6PropOp = .text:0x80571EE0; // type:function size:0xA6C +fn_8057294C = .text:0x8057294C; // type:function size:0x160 +fn_80572AAC = .text:0x80572AAC; // type:function size:0x5C +fn_80572B08 = .text:0x80572B08; // type:function size:0x8 +fn_80572B10 = .text:0x80572B10; // type:function size:0x2C +fn_80572B3C = .text:0x80572B3C; // type:function size:0x58 +fn_80572B94 = .text:0x80572B94; // type:function size:0x28 +fn_80572BBC = .text:0x80572BBC; // type:function size:0x68 +fn_80572C24 = .text:0x80572C24; // type:function size:0x5C +fn_80572C80 = .text:0x80572C80; // type:function size:0x60 +fn_80572CE0 = .text:0x80572CE0; // type:function size:0x124 +fn_80572E04 = .text:0x80572E04; // type:function size:0x60 +fn_80572E64 = .text:0x80572E64; // type:function size:0x5C +fn_80572EC0 = .text:0x80572EC0; // type:function size:0x54 +fn_80572F14 = .text:0x80572F14; // type:function size:0x5C +fn_80572F70 = .text:0x80572F70; // type:function size:0x5C +fn_80572FCC = .text:0x80572FCC; // type:function size:0x54 +fn_80573020 = .text:0x80573020; // type:function size:0x48 +fn_80573068 = .text:0x80573068; // type:function size:0x4C +fn_805730B4 = .text:0x805730B4; // type:function size:0x4C +fn_80573100 = .text:0x80573100; // type:function size:0x8C +fn_8057318C = .text:0x8057318C; // type:function size:0x2C +SetType__12UIListWidgetF6Symbol = .text:0x805731B8; // type:function size:0x128 +__ct__7UIPanelFv = .text:0x805732E0; // type:function size:0xC0 +DataDir__7UIPanelFv = .text:0x805733A0; // type:function size:0x28 +SetTypeDef__7UIPanelFP9DataArray = .text:0x805733C8; // type:function size:0x98 +fn_80573460 = .text:0x80573460; // type:function size:0x28 +CheckUnload__7UIPanelFv = .text:0x80573488; // type:function size:0x9C +SetLoadedDir__7UIPanelFP8PanelDirb = .text:0x80573524; // type:function size:0x64 +UnsetLoadedDir__7UIPanelFv = .text:0x80573588; // type:function size:0x4C +Load__7UIPanelFv = .text:0x805735D4; // type:function size:0x1EC +Unload__7UIPanelFv = .text:0x805737C0; // type:function size:0x160 +fn_80573920 = .text:0x80573920; // type:function size:0xBC +IsLoaded__7UIPanelFv = .text:0x805739DC; // type:function size:0xCC +fn_80573AA8 = .text:0x80573AA8; // type:function size:0x88 +FinishLoad__7UIPanelFv = .text:0x80573B30; // type:function size:0x58 +fn_80573B88 = .text:0x80573B88; // type:function size:0x24 +__dt__7UIPanelFv = .text:0x80573BAC; // type:function size:0xB4 +Entering__7UIPanelFv = .text:0x80573C60; // type:function size:0x34 +Exiting__7UIPanelFv = .text:0x80573C94; // type:function size:0x34 +Unloading__7UIPanelFv = .text:0x80573CC8; // type:function size:0x6C +Enter__7UIPanelFv = .text:0x80573D34; // type:function size:0xC8 +Exit__7UIPanelFv = .text:0x80573DFC; // type:function size:0x108 +Poll__7UIPanelFv = .text:0x80573F04; // type:function size:0x78 +Draw__7UIPanelFv = .text:0x80573F7C; // type:function size:0x30 +SetFocusComponent__7UIPanelFP11UIComponent = .text:0x80573FAC; // type:function size:0x6C +Handle__7UIPanelFP9DataArrayb = .text:0x80574018; // type:function size:0x58C +OnLoad__7UIPanelFP9DataArray = .text:0x805745A4; // type:function size:0x94 +fn_80574638 = .text:0x80574638; // type:function size:0x14 +__ct__9UIPictureFv = .text:0x8057464C; // type:function size:0x140 +__dt__9UIPictureFv = .text:0x8057478C; // type:function size:0x13C +fn_805748C8 = .text:0x805748C8; // type:function size:0xE8 +fn_805749B0 = .text:0x805749B0; // type:function size:0x9C +fn_80574A4C = .text:0x80574A4C; // type:function size:0x4 +fn_80574A50 = .text:0x80574A50; // type:function size:0x5C +fn_80574AAC = .text:0x80574AAC; // type:function size:0xA0 +fn_80574B4C = .text:0x80574B4C; // type:function size:0x54 +fn_80574BA0 = .text:0x80574BA0; // type:function size:0x6C +fn_80574C0C = .text:0x80574C0C; // type:function size:0x34 +fn_80574C40 = .text:0x80574C40; // type:function size:0x10 +fn_80574C50 = .text:0x80574C50; // type:function size:0x84 +fn_80574CD4 = .text:0x80574CD4; // type:function size:0x78 +fn_80574D4C = .text:0x80574D4C; // type:function size:0xD8 +fn_80574E24 = .text:0x80574E24; // type:function size:0x64 +fn_80574E88 = .text:0x80574E88; // type:function size:0x58 +fn_80574EE0 = .text:0x80574EE0; // type:function size:0xDC +fn_80574FBC = .text:0x80574FBC; // type:function size:0x20 +fn_80574FDC = .text:0x80574FDC; // type:function size:0x140 +fn_8057511C = .text:0x8057511C; // type:function size:0x28C +fn_805753A8 = .text:0x805753A8; // type:function size:0x138 +fn_805754E0 = .text:0x805754E0; // type:function size:0x4 +fn_805754E4 = .text:0x805754E4; // type:function size:0x14 +fn_805754F8 = .text:0x805754F8; // type:function size:0x14 +fn_8057550C = .text:0x8057550C; // type:function size:0x8 +fn_80575514 = .text:0x80575514; // type:function size:0x8 +fn_8057551C = .text:0x8057551C; // type:function size:0x8 +fn_80575524 = .text:0x80575524; // type:function size:0x8 +fn_8057552C = .text:0x8057552C; // type:function size:0x8 +fn_80575534 = .text:0x80575534; // type:function size:0x8 +fn_8057553C = .text:0x8057553C; // type:function size:0x8 +fn_80575544 = .text:0x80575544; // type:function size:0x8 +fn_8057554C = .text:0x8057554C; // type:function size:0x14 +fn_80575560 = .text:0x80575560; // type:function size:0x14 +fn_80575574 = .text:0x80575574; // type:function size:0x14 +fn_80575588 = .text:0x80575588; // type:function size:0x14 +fn_8057559C = .text:0x8057559C; // type:function size:0x14 +fn_805755B0 = .text:0x805755B0; // type:function size:0x14 +fn_805755C4 = .text:0x805755C4; // type:function size:0x14 +fn_805755D8 = .text:0x805755D8; // type:function size:0x14 +fn_805755EC = .text:0x805755EC; // type:function size:0x14 +fn_80575600 = .text:0x80575600; // type:function size:0x14 +fn_80575614 = .text:0x80575614; // type:function size:0x14 +fn_80575628 = .text:0x80575628; // type:function size:0x14 +fn_8057563C = .text:0x8057563C; // type:function size:0x14 +fn_80575650 = .text:0x80575650; // type:function size:0x8 +fn_80575658 = .text:0x80575658; // type:function size:0x8 +fn_80575660 = .text:0x80575660; // type:function size:0x8 +fn_80575668 = .text:0x80575668; // type:function size:0x8 +fn_80575670 = .text:0x80575670; // type:function size:0x8 +fn_80575678 = .text:0x80575678; // type:function size:0x8 +fn_80575680 = .text:0x80575680; // type:function size:0x8 +fn_80575688 = .text:0x80575688; // type:function size:0x8 +fn_80575690 = .text:0x80575690; // type:function size:0x8 +fn_80575698 = .text:0x80575698; // type:function size:0x120 +fn_805757B8 = .text:0x805757B8; // type:function size:0x188 +fn_80575940 = .text:0x80575940; // type:function size:0x8 +fn_80575948 = .text:0x80575948; // type:function size:0x7C +fn_805759C4 = .text:0x805759C4; // type:function size:0x4 +fn_805759C8 = .text:0x805759C8; // type:function size:0x5C +fn_80575A24 = .text:0x80575A24; // type:function size:0x8C +fn_80575AB0 = .text:0x80575AB0; // type:function size:0xB4 +fn_80575B64 = .text:0x80575B64; // type:function size:0xB8 +fn_80575C1C = .text:0x80575C1C; // type:function size:0xA0 +fn_80575CBC = .text:0x80575CBC; // type:function size:0x94 +fn_80575D50 = .text:0x80575D50; // type:function size:0x70 +fn_80575DC0 = .text:0x80575DC0; // type:function size:0x54 +fn_80575E14 = .text:0x80575E14; // type:function size:0x40 +fn_80575E54 = .text:0x80575E54; // type:function size:0xEC +fn_80575F40 = .text:0x80575F40; // type:function size:0x60 +fn_80575FA0 = .text:0x80575FA0; // type:function size:0x74 +fn_80576014 = .text:0x80576014; // type:function size:0x124 +fn_80576138 = .text:0x80576138; // type:function size:0xB4 +fn_805761EC = .text:0x805761EC; // type:function size:0x170 +fn_8057635C = .text:0x8057635C; // type:function size:0x8 +fn_80576364 = .text:0x80576364; // type:function size:0xEC +fn_80576450 = .text:0x80576450; // type:function size:0xB4 +fn_80576504 = .text:0x80576504; // type:function size:0x138 +fn_8057663C = .text:0x8057663C; // type:function size:0x4 +fn_80576640 = .text:0x80576640; // type:function size:0x14 +fn_80576654 = .text:0x80576654; // type:function size:0x8 +fn_8057665C = .text:0x8057665C; // type:function size:0x8 +fn_80576664 = .text:0x80576664; // type:function size:0x8 +fn_8057666C = .text:0x8057666C; // type:function size:0x8 +fn_80576674 = .text:0x80576674; // type:function size:0x8 +fn_8057667C = .text:0x8057667C; // type:function size:0x8 +fn_80576684 = .text:0x80576684; // type:function size:0x8 +fn_8057668C = .text:0x8057668C; // type:function size:0x8 +fn_80576694 = .text:0x80576694; // type:function size:0x14 +fn_805766A8 = .text:0x805766A8; // type:function size:0x14 +fn_805766BC = .text:0x805766BC; // type:function size:0x14 +fn_805766D0 = .text:0x805766D0; // type:function size:0x14 +fn_805766E4 = .text:0x805766E4; // type:function size:0x14 +fn_805766F8 = .text:0x805766F8; // type:function size:0x14 +fn_8057670C = .text:0x8057670C; // type:function size:0x14 +fn_80576720 = .text:0x80576720; // type:function size:0x14 +fn_80576734 = .text:0x80576734; // type:function size:0x14 +fn_80576748 = .text:0x80576748; // type:function size:0x14 +fn_8057675C = .text:0x8057675C; // type:function size:0x14 +fn_80576770 = .text:0x80576770; // type:function size:0x8 +fn_80576778 = .text:0x80576778; // type:function size:0x8 +fn_80576780 = .text:0x80576780; // type:function size:0x8 +fn_80576788 = .text:0x80576788; // type:function size:0x8 +fn_80576790 = .text:0x80576790; // type:function size:0x8 +fn_80576798 = .text:0x80576798; // type:function size:0x44 +fn_805767DC = .text:0x805767DC; // type:function size:0x6C +fn_80576848 = .text:0x80576848; // type:function size:0x4C +fn_80576894 = .text:0x80576894; // type:function size:0x50 +fn_805768E4 = .text:0x805768E4; // type:function size:0x14 +__ct__8UIScreenFv = .text:0x805768F8; // type:function size:0x80 +fn_80576978 = .text:0x80576978; // type:function size:0x30 +fn_805769A8 = .text:0x805769A8; // type:function size:0x30 +fn_805769D8 = .text:0x805769D8; // type:function size:0x40 +SetTypeDef__8UIScreenFP9DataArray = .text:0x80576A18; // type:function size:0x200 +fn_80576C18 = .text:0x80576C18; // type:function size:0x4 +fn_80576C1C = .text:0x80576C1C; // type:function size:0x88 +fn_80576CA4 = .text:0x80576CA4; // type:function size:0x2C +fn_80576CD0 = .text:0x80576CD0; // type:function size:0x10 +fn_80576CE0 = .text:0x80576CE0; // type:function size:0x24 +fn_80576D04 = .text:0x80576D04; // type:function size:0xC +fn_80576D10 = .text:0x80576D10; // type:function size:0x4 +fn_80576D14 = .text:0x80576D14; // type:function size:0x3C +fn_80576D50 = .text:0x80576D50; // type:function size:0x40 +fn_80576D90 = .text:0x80576D90; // type:function size:0x8C +fn_80576E1C = .text:0x80576E1C; // type:function size:0x8 +fn_80576E24 = .text:0x80576E24; // type:function size:0x2C +fn_80576E50 = .text:0x80576E50; // type:function size:0x58 +fn_80576EA8 = .text:0x80576EA8; // type:function size:0x28 +fn_80576ED0 = .text:0x80576ED0; // type:function size:0x68 +Handle__8UIScreenFP9DataArrayb = .text:0x80576F38; // type:function size:0x44C +Entering__8UIScreenFv = .text:0x80577384; // type:function size:0xC0 +fn_80577444 = .text:0x80577444; // type:function size:0x28 +fn_8057746C = .text:0x8057746C; // type:function size:0x84 +fn_805774F0 = .text:0x805774F0; // type:function size:0x80 +Poll__8UIScreenFv = .text:0x80577570; // type:function size:0xA8 +Enter__8UIScreenFP8UIScreen = .text:0x80577618; // type:function size:0x174 +fn_8057778C = .text:0x8057778C; // type:function size:0x8C +fn_80577818 = .text:0x80577818; // type:function size:0x7C +InComponentSelect__8UIScreenCFv = .text:0x80577894; // type:function size:0x48 +fn_805778DC = .text:0x805778DC; // type:function size:0x74 +fn_80577950 = .text:0x80577950; // type:function size:0x8C +Exit__8UIScreenFP8UIScreen = .text:0x805779DC; // type:function size:0x188 +fn_80577B64 = .text:0x80577B64; // type:function size:0x8 +fn_80577B6C = .text:0x80577B6C; // type:function size:0xB0 +fn_80577C1C = .text:0x80577C1C; // type:function size:0x90 +fn_80577CAC = .text:0x80577CAC; // type:function size:0x8 +LoadPanels__8UIScreenFv = .text:0x80577CB4; // type:function size:0xAC +UnloadPanels__8UIScreenFv = .text:0x80577D60; // type:function size:0x84 +fn_80577DE4 = .text:0x80577DE4; // type:function size:0x4 +fn_80577DE8 = .text:0x80577DE8; // type:function size:0x4 +fn_80577DEC = .text:0x80577DEC; // type:function size:0x78 +fn_80577E64 = .text:0x80577E64; // type:function size:0xD8 +fn_80577F3C = .text:0x80577F3C; // type:function size:0x78 +Print__8UIScreenFR10TextStream = .text:0x80577FB4; // type:function size:0x214 +fn_805781C8 = .text:0x805781C8; // type:function size:0x14C +fn_80578314 = .text:0x80578314; // type:function size:0x118 +fn_8057842C = .text:0x8057842C; // type:function size:0x4 +fn_80578430 = .text:0x80578430; // type:function size:0x114 +fn_80578544 = .text:0x80578544; // type:function size:0x60 +fn_805785A4 = .text:0x805785A4; // type:function size:0x5C +fn_80578600 = .text:0x80578600; // type:function size:0x54 +fn_80578654 = .text:0x80578654; // type:function size:0x5C +fn_805786B0 = .text:0x805786B0; // type:function size:0x5C +SetType__8UIScreenF6Symbol = .text:0x8057870C; // type:function size:0x128 +__ct__8UISliderFv = .text:0x80578834; // type:function size:0xE8 +fn_8057891C = .text:0x8057891C; // type:function size:0x40 +fn_8057895C = .text:0x8057895C; // type:function size:0x34 +fn_80578990 = .text:0x80578990; // type:function size:0x48 +fn_805789D8 = .text:0x805789D8; // type:function size:0x4C +fn_80578A24 = .text:0x80578A24; // type:function size:0x80 +fn_80578AA4 = .text:0x80578AA4; // type:function size:0x4 +fn_80578AA8 = .text:0x80578AA8; // type:function size:0x5C +fn_80578B04 = .text:0x80578B04; // type:function size:0x64 +fn_80578B68 = .text:0x80578B68; // type:function size:0x64 +fn_80578BCC = .text:0x80578BCC; // type:function size:0x34 +fn_80578C00 = .text:0x80578C00; // type:function size:0x5C +fn_80578C5C = .text:0x80578C5C; // type:function size:0x78 +fn_80578CD4 = .text:0x80578CD4; // type:function size:0x54 +fn_80578D28 = .text:0x80578D28; // type:function size:0x8 +fn_80578D30 = .text:0x80578D30; // type:function size:0x64 +fn_80578D94 = .text:0x80578D94; // type:function size:0x20 +fn_80578DB4 = .text:0x80578DB4; // type:function size:0x10 +fn_80578DC4 = .text:0x80578DC4; // type:function size:0x68 +fn_80578E2C = .text:0x80578E2C; // type:function size:0x8C +fn_80578EB8 = .text:0x80578EB8; // type:function size:0x50 +fn_80578F08 = .text:0x80578F08; // type:function size:0x4 +fn_80578F0C = .text:0x80578F0C; // type:function size:0x10 +fn_80578F1C = .text:0x80578F1C; // type:function size:0x3EC +fn_80579308 = .text:0x80579308; // type:function size:0x1E8 +fn_805794F0 = .text:0x805794F0; // type:function size:0xB4 +fn_805795A4 = .text:0x805795A4; // type:function size:0xA8 +fn_8057964C = .text:0x8057964C; // type:function size:0x138 +fn_80579784 = .text:0x80579784; // type:function size:0x4 +fn_80579788 = .text:0x80579788; // type:function size:0x14 +fn_8057979C = .text:0x8057979C; // type:function size:0x14 +fn_805797B0 = .text:0x805797B0; // type:function size:0x8 +fn_805797B8 = .text:0x805797B8; // type:function size:0x8 +fn_805797C0 = .text:0x805797C0; // type:function size:0x8 +fn_805797C8 = .text:0x805797C8; // type:function size:0x8 +fn_805797D0 = .text:0x805797D0; // type:function size:0x8 +fn_805797D8 = .text:0x805797D8; // type:function size:0x8 +fn_805797E0 = .text:0x805797E0; // type:function size:0x8 +fn_805797E8 = .text:0x805797E8; // type:function size:0x8 +fn_805797F0 = .text:0x805797F0; // type:function size:0x14 +fn_80579804 = .text:0x80579804; // type:function size:0x14 +fn_80579818 = .text:0x80579818; // type:function size:0x14 +fn_8057982C = .text:0x8057982C; // type:function size:0x14 +fn_80579840 = .text:0x80579840; // type:function size:0x14 +fn_80579854 = .text:0x80579854; // type:function size:0x14 +fn_80579868 = .text:0x80579868; // type:function size:0x14 +fn_8057987C = .text:0x8057987C; // type:function size:0x14 +fn_80579890 = .text:0x80579890; // type:function size:0x14 +fn_805798A4 = .text:0x805798A4; // type:function size:0x14 +fn_805798B8 = .text:0x805798B8; // type:function size:0x14 +fn_805798CC = .text:0x805798CC; // type:function size:0x14 +fn_805798E0 = .text:0x805798E0; // type:function size:0x14 +fn_805798F4 = .text:0x805798F4; // type:function size:0x8 +fn_805798FC = .text:0x805798FC; // type:function size:0x8 +fn_80579904 = .text:0x80579904; // type:function size:0x8 +fn_8057990C = .text:0x8057990C; // type:function size:0x8 +fn_80579914 = .text:0x80579914; // type:function size:0x8 +fn_8057991C = .text:0x8057991C; // type:function size:0x8 +fn_80579924 = .text:0x80579924; // type:function size:0x8 +fn_8057992C = .text:0x8057992C; // type:function size:0x8 +fn_80579934 = .text:0x80579934; // type:function size:0x8 +fn_8057993C = .text:0x8057993C; // type:function size:0x8 +fn_80579944 = .text:0x80579944; // type:function size:0x70 +fn_805799B4 = .text:0x805799B4; // type:function size:0xAC +fn_80579A60 = .text:0x80579A60; // type:function size:0x4C +fn_80579AAC = .text:0x80579AAC; // type:function size:0x3C +fn_80579AE8 = .text:0x80579AE8; // type:function size:0x84 +fn_80579B6C = .text:0x80579B6C; // type:function size:0x78 +fn_80579BE4 = .text:0x80579BE4; // type:function size:0x174 +fn_80579D58 = .text:0x80579D58; // type:function size:0xB0 +fn_80579E08 = .text:0x80579E08; // type:function size:0x8 +fn_80579E10 = .text:0x80579E10; // type:function size:0x8 +fn_80579E18 = .text:0x80579E18; // type:function size:0x48 +fn_80579E60 = .text:0x80579E60; // type:function size:0x48 +fn_80579EA8 = .text:0x80579EA8; // type:function size:0xC +fn_80579EB4 = .text:0x80579EB4; // type:function size:0x5C +fn_80579F10 = .text:0x80579F10; // type:function size:0xCC +fn_80579FDC = .text:0x80579FDC; // type:function size:0x134 +fn_8057A110 = .text:0x8057A110; // type:function size:0x58 +fn_8057A168 = .text:0x8057A168; // type:function size:0x58 +fn_8057A1C0 = .text:0x8057A1C0; // type:function size:0x80 +fn_8057A240 = .text:0x8057A240; // type:function size:0x80 +fn_8057A2C0 = .text:0x8057A2C0; // type:function size:0x58 +fn_8057A318 = .text:0x8057A318; // type:function size:0x54 +fn_8057A36C = .text:0x8057A36C; // type:function size:0x5C +fn_8057A3C8 = .text:0x8057A3C8; // type:function size:0x6C +fn_8057A434 = .text:0x8057A434; // type:function size:0x28 +fn_8057A45C = .text:0x8057A45C; // type:function size:0x8 +fn_8057A464 = .text:0x8057A464; // type:function size:0x58 +fn_8057A4BC = .text:0x8057A4BC; // type:function size:0x80 +fn_8057A53C = .text:0x8057A53C; // type:function size:0x8 +fn_8057A544 = .text:0x8057A544; // type:function size:0x3C +fn_8057A580 = .text:0x8057A580; // type:function size:0x58 +fn_8057A5D8 = .text:0x8057A5D8; // type:function size:0x58 +fn_8057A630 = .text:0x8057A630; // type:function size:0x80 +fn_8057A6B0 = .text:0x8057A6B0; // type:function size:0x80 +fn_8057A730 = .text:0x8057A730; // type:function size:0x58 +fn_8057A788 = .text:0x8057A788; // type:function size:0x54 +fn_8057A7DC = .text:0x8057A7DC; // type:function size:0x5C +fn_8057A838 = .text:0x8057A838; // type:function size:0x6C +fn_8057A8A4 = .text:0x8057A8A4; // type:function size:0x28 +fn_8057A8CC = .text:0x8057A8CC; // type:function size:0x8 +fn_8057A8D4 = .text:0x8057A8D4; // type:function size:0x68 +fn_8057A93C = .text:0x8057A93C; // type:function size:0x80 +fn_8057A9BC = .text:0x8057A9BC; // type:function size:0x80 +fn_8057AA3C = .text:0x8057AA3C; // type:function size:0x8 +fn_8057AA44 = .text:0x8057AA44; // type:function size:0x3C +fn_8057AA80 = .text:0x8057AA80; // type:function size:0x6C +fn_8057AAEC = .text:0x8057AAEC; // type:function size:0x40 +fn_8057AB2C = .text:0x8057AB2C; // type:function size:0x44 +fn_8057AB70 = .text:0x8057AB70; // type:function size:0x54 +fn_8057ABC4 = .text:0x8057ABC4; // type:function size:0x58 +fn_8057AC1C = .text:0x8057AC1C; // type:function size:0x58 +fn_8057AC74 = .text:0x8057AC74; // type:function size:0x80 +fn_8057ACF4 = .text:0x8057ACF4; // type:function size:0x80 +fn_8057AD74 = .text:0x8057AD74; // type:function size:0x58 +fn_8057ADCC = .text:0x8057ADCC; // type:function size:0x54 +fn_8057AE20 = .text:0x8057AE20; // type:function size:0x5C +fn_8057AE7C = .text:0x8057AE7C; // type:function size:0x6C +fn_8057AEE8 = .text:0x8057AEE8; // type:function size:0x28 +fn_8057AF10 = .text:0x8057AF10; // type:function size:0x8 +fn_8057AF18 = .text:0x8057AF18; // type:function size:0x58 +fn_8057AF70 = .text:0x8057AF70; // type:function size:0x84 +fn_8057AFF4 = .text:0x8057AFF4; // type:function size:0x8 +fn_8057AFFC = .text:0x8057AFFC; // type:function size:0x3C +fn_8057B038 = .text:0x8057B038; // type:function size:0x6C +fn_8057B0A4 = .text:0x8057B0A4; // type:function size:0x40 +fn_8057B0E4 = .text:0x8057B0E4; // type:function size:0x44 +fn_8057B128 = .text:0x8057B128; // type:function size:0x54 +fn_8057B17C = .text:0x8057B17C; // type:function size:0x68 +fn_8057B1E4 = .text:0x8057B1E4; // type:function size:0x4 +fn_8057B1E8 = .text:0x8057B1E8; // type:function size:0x158 +fn_8057B340 = .text:0x8057B340; // type:function size:0x24 +fn_8057B364 = .text:0x8057B364; // type:function size:0x3C +fn_8057B3A0 = .text:0x8057B3A0; // type:function size:0x5C +fn_8057B3FC = .text:0x8057B3FC; // type:function size:0x4 +fn_8057B400 = .text:0x8057B400; // type:function size:0x90 +fn_8057B490 = .text:0x8057B490; // type:function size:0x4 +fn_8057B494 = .text:0x8057B494; // type:function size:0x40 +fn_8057B4D4 = .text:0x8057B4D4; // type:function size:0x8C +fn_8057B560 = .text:0x8057B560; // type:function size:0x8 +fn_8057B568 = .text:0x8057B568; // type:function size:0x2C +fn_8057B594 = .text:0x8057B594; // type:function size:0x58 +fn_8057B5EC = .text:0x8057B5EC; // type:function size:0x28 +fn_8057B614 = .text:0x8057B614; // type:function size:0x68 +fn_8057B67C = .text:0x8057B67C; // type:function size:0x8C +fn_8057B708 = .text:0x8057B708; // type:function size:0x8 +fn_8057B710 = .text:0x8057B710; // type:function size:0x4 +fn_8057B714 = .text:0x8057B714; // type:function size:0x3C +fn_8057B750 = .text:0x8057B750; // type:function size:0x48 +fn_8057B798 = .text:0x8057B798; // type:function size:0x44 +fn_8057B7DC = .text:0x8057B7DC; // type:function size:0x90 +fn_8057B86C = .text:0x8057B86C; // type:function size:0x48 +fn_8057B8B4 = .text:0x8057B8B4; // type:function size:0x1C8 +fn_8057BA7C = .text:0x8057BA7C; // type:function size:0x80 +fn_8057BAFC = .text:0x8057BAFC; // type:function size:0x74 +fn_8057BB70 = .text:0x8057BB70; // type:function size:0xD0 +fn_8057BC40 = .text:0x8057BC40; // type:function size:0xD0 +fn_8057BD10 = .text:0x8057BD10; // type:function size:0x98 +fn_8057BDA8 = .text:0x8057BDA8; // type:function size:0xB8 +fn_8057BE60 = .text:0x8057BE60; // type:function size:0x70 +fn_8057BED0 = .text:0x8057BED0; // type:function size:0x4C +fn_8057BF1C = .text:0x8057BF1C; // type:function size:0x1E8 +fn_8057C104 = .text:0x8057C104; // type:function size:0xF4 +fn_8057C1F8 = .text:0x8057C1F8; // type:function size:0x98 +fn_8057C290 = .text:0x8057C290; // type:function size:0x68 +fn_8057C2F8 = .text:0x8057C2F8; // type:function size:0x2C +fn_8057C324 = .text:0x8057C324; // type:function size:0x100 +fn_8057C424 = .text:0x8057C424; // type:function size:0x10C +fn_8057C530 = .text:0x8057C530; // type:function size:0x134 +fn_8057C664 = .text:0x8057C664; // type:function size:0x4 +fn_8057C668 = .text:0x8057C668; // type:function size:0x198 +fn_8057C800 = .text:0x8057C800; // type:function size:0x5C +fn_8057C85C = .text:0x8057C85C; // type:function size:0x10 +fn_8057C86C = .text:0x8057C86C; // type:function size:0x54 +fn_8057C8C0 = .text:0x8057C8C0; // type:function size:0x28 +fn_8057C8E8 = .text:0x8057C8E8; // type:function size:0x68 +fn_8057C950 = .text:0x8057C950; // type:function size:0x5C +fn_8057C9AC = .text:0x8057C9AC; // type:function size:0x90 +fn_8057CA3C = .text:0x8057CA3C; // type:function size:0x68 +fn_8057CAA4 = .text:0x8057CAA4; // type:function size:0x114 +fn_8057CBB8 = .text:0x8057CBB8; // type:function size:0x5C +fn_8057CC14 = .text:0x8057CC14; // type:function size:0x5C +fn_8057CC70 = .text:0x8057CC70; // type:function size:0x54 +fn_8057CCC4 = .text:0x8057CCC4; // type:function size:0x14 +fn_8057CCD8 = .text:0x8057CCD8; // type:function size:0x14 +fn_8057CCEC = .text:0x8057CCEC; // type:function size:0x14 +fn_8057CD00 = .text:0x8057CD00; // type:function size:0x14 +fn_8057CD14 = .text:0x8057CD14; // type:function size:0x14 +fn_8057CD28 = .text:0x8057CD28; // type:function size:0x14 +fn_8057CD3C = .text:0x8057CD3C; // type:function size:0x14 +fn_8057CD50 = .text:0x8057CD50; // type:function size:0x14 +fn_8057CD64 = .text:0x8057CD64; // type:function size:0x14 +fn_8057CD78 = .text:0x8057CD78; // type:function size:0x14 +fn_8057CD8C = .text:0x8057CD8C; // type:function size:0x8 +fn_8057CD94 = .text:0x8057CD94; // type:function size:0x8 +fn_8057CD9C = .text:0x8057CD9C; // type:function size:0x8 +fn_8057CDA4 = .text:0x8057CDA4; // type:function size:0x8 +fn_8057CDAC = .text:0x8057CDAC; // type:function size:0x8 +fn_8057CDB4 = .text:0x8057CDB4; // type:function size:0x8 +__ct__7UIGuideFv = .text:0x8057CDBC; // type:function size:0x50 +__dt__7UIGuideFv = .text:0x8057CE0C; // type:function size:0x58 +Save__7UIGuideFR9BinStream = .text:0x8057CE64; // type:function size:0x4 +Load__7UIGuideFR9BinStream = .text:0x8057CE68; // type:function size:0x7C +Copy__7UIGuideFPCQ23Hmx6ObjectQ33Hmx6Object8CopyType = .text:0x8057CEE4; // type:function size:0x70 +SyncProperty__7UIGuideFR8DataNodeP9DataArrayi6PropOp = .text:0x8057CF54; // type:function size:0xE0 +Handle__7UIGuideFP9DataArrayb = .text:0x8057D034; // type:function size:0xC4 +ClassName__7UIGuideCFv = .text:0x8057D0F8; // type:function size:0x4 +SetType__7UIGuideF6Symbol = .text:0x8057D0FC; // type:function size:0x128 +fn_8057D224 = .text:0x8057D224; // type:function size:0x13C +fn_8057D360 = .text:0x8057D360; // type:function size:0x20 +fn_8057D380 = .text:0x8057D380; // type:function size:0x18 +__ct__13CameraManagerFv = .text:0x8057D398; // type:function size:0xB0 +__dt__27ObjPtr<7CamShot,9ObjectDir>Fv = .text:0x8057D448; // type:function size:0x80 +fn_8057D4C8 = .text:0x8057D4C8; // type:function size:0x58 +fn_8057D520 = .text:0x8057D520; // type:function size:0x80 +fn_8057D5A0 = .text:0x8057D5A0; // type:function size:0x80 +fn_8057D620 = .text:0x8057D620; // type:function size:0x58 +fn_8057D678 = .text:0x8057D678; // type:function size:0x54 +fn_8057D6CC = .text:0x8057D6CC; // type:function size:0x5C +fn_8057D728 = .text:0x8057D728; // type:function size:0x6C +fn_8057D794 = .text:0x8057D794; // type:function size:0x28 +fn_8057D7BC = .text:0x8057D7BC; // type:function size:0x8 +fn_8057D7C4 = .text:0x8057D7C4; // type:function size:0x3C +__ct__27ObjPtr<7CamShot,9ObjectDir>FPQ23Hmx6ObjectP7CamShot = .text:0x8057D800; // type:function size:0x68 +fn_8057D868 = .text:0x8057D868; // type:function size:0x30 +fn_8057D898 = .text:0x8057D898; // type:function size:0x30 +fn_8057D8C8 = .text:0x8057D8C8; // type:function size:0x40 +__dt__13CameraManagerFv = .text:0x8057D908; // type:function size:0x10C +__dt__31ObjPtrList<7CamShot,9ObjectDir>Fv = .text:0x8057DA14; // type:function size:0x6C +fn_8057DA80 = .text:0x8057DA80; // type:function size:0x40 +fn_8057DAC0 = .text:0x8057DAC0; // type:function size:0x44 +fn_8057DB04 = .text:0x8057DB04; // type:function size:0x54 +fn_8057DB58 = .text:0x8057DB58; // type:function size:0xF4 +fn_8057DC4C = .text:0x8057DC4C; // type:function size:0x94 +fn_8057DCE0 = .text:0x8057DCE0; // type:function size:0x100 +fn_8057DDE0 = .text:0x8057DDE0; // type:function size:0x30 +fn_8057DE10 = .text:0x8057DE10; // type:function size:0xCC +fn_8057DEDC = .text:0x8057DEDC; // type:function size:0x34 +fn_8057DF10 = .text:0x8057DF10; // type:function size:0xA8 +fn_8057DFB8 = .text:0x8057DFB8; // type:function size:0xEC +fn_8057E0A4 = .text:0x8057E0A4; // type:function size:0xA0 +fn_8057E144 = .text:0x8057E144; // type:function size:0x6C +fn_8057E1B0 = .text:0x8057E1B0; // type:function size:0x30 +fn_8057E1E0 = .text:0x8057E1E0; // type:function size:0x74 +fn_8057E254 = .text:0x8057E254; // type:function size:0x80 +fn_8057E2D4 = .text:0x8057E2D4; // type:function size:0x98 +fn_8057E36C = .text:0x8057E36C; // type:function size:0x6C +fn_8057E3D8 = .text:0x8057E3D8; // type:function size:0xC +fn_8057E3E4 = .text:0x8057E3E4; // type:function size:0x58 +fn_8057E43C = .text:0x8057E43C; // type:function size:0x94 +fn_8057E4D0 = .text:0x8057E4D0; // type:function size:0x80 +fn_8057E550 = .text:0x8057E550; // type:function size:0x98 +fn_8057E5E8 = .text:0x8057E5E8; // type:function size:0x70 +fn_8057E658 = .text:0x8057E658; // type:function size:0x58 +fn_8057E6B0 = .text:0x8057E6B0; // type:function size:0x64 +fn_8057E714 = .text:0x8057E714; // type:function size:0x28 +fn_8057E73C = .text:0x8057E73C; // type:function size:0x68 +fn_8057E7A4 = .text:0x8057E7A4; // type:function size:0x30 +fn_8057E7D4 = .text:0x8057E7D4; // type:function size:0x70 +fn_8057E844 = .text:0x8057E844; // type:function size:0x4 +fn_8057E848 = .text:0x8057E848; // type:function size:0x88 +fn_8057E8D0 = .text:0x8057E8D0; // type:function size:0x2C +fn_8057E8FC = .text:0x8057E8FC; // type:function size:0x10 +__ct__31ObjPtrList<7CamShot,9ObjectDir>FPQ23Hmx6Object11ObjListMode = .text:0x8057E90C; // type:function size:0x68 +fn_8057E974 = .text:0x8057E974; // type:function size:0x64 +fn_8057E9D8 = .text:0x8057E9D8; // type:function size:0xA0 +fn_8057EA78 = .text:0x8057EA78; // type:function size:0x24 +fn_8057EA9C = .text:0x8057EA9C; // type:function size:0x1AC +fn_8057EC48 = .text:0x8057EC48; // type:function size:0x88 +fn_8057ECD0 = .text:0x8057ECD0; // type:function size:0xE8 +fn_8057EDB8 = .text:0x8057EDB8; // type:function size:0x30 +fn_8057EDE8 = .text:0x8057EDE8; // type:function size:0xB4 +fn_8057EE9C = .text:0x8057EE9C; // type:function size:0x34 +fn_8057EED0 = .text:0x8057EED0; // type:function size:0x8C +fn_8057EF5C = .text:0x8057EF5C; // type:function size:0xD4 +fn_8057F030 = .text:0x8057F030; // type:function size:0x98 +fn_8057F0C8 = .text:0x8057F0C8; // type:function size:0x6C +fn_8057F134 = .text:0x8057F134; // type:function size:0x30 +fn_8057F164 = .text:0x8057F164; // type:function size:0x40 +fn_8057F1A4 = .text:0x8057F1A4; // type:function size:0x44 +fn_8057F1E8 = .text:0x8057F1E8; // type:function size:0x50 +fn_8057F238 = .text:0x8057F238; // type:function size:0xA4 +fn_8057F2DC = .text:0x8057F2DC; // type:function size:0x6C +fn_8057F348 = .text:0x8057F348; // type:function size:0xC +fn_8057F354 = .text:0x8057F354; // type:function size:0xE0 +fn_8057F434 = .text:0x8057F434; // type:function size:0x94 +fn_8057F4C8 = .text:0x8057F4C8; // type:function size:0x70 +fn_8057F538 = .text:0x8057F538; // type:function size:0x84 +fn_8057F5BC = .text:0x8057F5BC; // type:function size:0x6C +fn_8057F628 = .text:0x8057F628; // type:function size:0x58 +fn_8057F680 = .text:0x8057F680; // type:function size:0x58 +fn_8057F6D8 = .text:0x8057F6D8; // type:function size:0x30 +fn_8057F708 = .text:0x8057F708; // type:function size:0x60 +fn_8057F768 = .text:0x8057F768; // type:function size:0x4C +fn_8057F7B4 = .text:0x8057F7B4; // type:function size:0x78 +fn_8057F82C = .text:0x8057F82C; // type:function size:0x6C +fn_8057F898 = .text:0x8057F898; // type:function size:0xBC +fn_8057F954 = .text:0x8057F954; // type:function size:0x50 +fn_8057F9A4 = .text:0x8057F9A4; // type:function size:0xD0 +fn_8057FA74 = .text:0x8057FA74; // type:function size:0x78 +fn_8057FAEC = .text:0x8057FAEC; // type:function size:0x4 +fn_8057FAF0 = .text:0x8057FAF0; // type:function size:0x4 +fn_8057FAF4 = .text:0x8057FAF4; // type:function size:0x3C +fn_8057FB30 = .text:0x8057FB30; // type:function size:0x40 +fn_8057FB70 = .text:0x8057FB70; // type:function size:0x8C +fn_8057FBFC = .text:0x8057FBFC; // type:function size:0x8 +fn_8057FC04 = .text:0x8057FC04; // type:function size:0x2C +fn_8057FC30 = .text:0x8057FC30; // type:function size:0x58 +fn_8057FC88 = .text:0x8057FC88; // type:function size:0x28 +fn_8057FCB0 = .text:0x8057FCB0; // type:function size:0x68 +fn_8057FD18 = .text:0x8057FD18; // type:function size:0x230 +fn_8057FF48 = .text:0x8057FF48; // type:function size:0x64 +fn_8057FFAC = .text:0x8057FFAC; // type:function size:0x120 +fn_805800CC = .text:0x805800CC; // type:function size:0x7C +fn_80580148 = .text:0x80580148; // type:function size:0x8 +fn_80580150 = .text:0x80580150; // type:function size:0xF8 +fn_80580248 = .text:0x80580248; // type:function size:0x100 +fn_80580348 = .text:0x80580348; // type:function size:0x204 +fn_8058054C = .text:0x8058054C; // type:function size:0xB8 +fn_80580604 = .text:0x80580604; // type:function size:0x4 +fn_80580608 = .text:0x80580608; // type:function size:0xC0 +fn_805806C8 = .text:0x805806C8; // type:function size:0xB4 +fn_8058077C = .text:0x8058077C; // type:function size:0x8 +fn_80580784 = .text:0x80580784; // type:function size:0x130 +fn_805808B4 = .text:0x805808B4; // type:function size:0xB0 +fn_80580964 = .text:0x80580964; // type:function size:0x68 +fn_805809CC = .text:0x805809CC; // type:function size:0x7C +fn_80580A48 = .text:0x80580A48; // type:function size:0x8 +fn_80580A50 = .text:0x80580A50; // type:function size:0x54 +fn_80580AA4 = .text:0x80580AA4; // type:function size:0x8 +fn_80580AAC = .text:0x80580AAC; // type:function size:0xA8 +fn_80580B54 = .text:0x80580B54; // type:function size:0x70 +fn_80580BC4 = .text:0x80580BC4; // type:function size:0x38 +fn_80580BFC = .text:0x80580BFC; // type:function size:0x88 +fn_80580C84 = .text:0x80580C84; // type:function size:0x478 +fn_805810FC = .text:0x805810FC; // type:function size:0x8 +fn_80581104 = .text:0x80581104; // type:function size:0x34 +fn_80581138 = .text:0x80581138; // type:function size:0x3C +fn_80581174 = .text:0x80581174; // type:function size:0x48 +fn_805811BC = .text:0x805811BC; // type:function size:0x158 +fn_80581314 = .text:0x80581314; // type:function size:0x4 +fn_80581318 = .text:0x80581318; // type:function size:0x10C +fn_80581424 = .text:0x80581424; // type:function size:0x6C +fn_80581490 = .text:0x80581490; // type:function size:0xCC +fn_8058155C = .text:0x8058155C; // type:function size:0x60 +fn_805815BC = .text:0x805815BC; // type:function size:0x5C +fn_80581618 = .text:0x80581618; // type:function size:0x60 +fn_80581678 = .text:0x80581678; // type:function size:0x5C +fn_805816D4 = .text:0x805816D4; // type:function size:0x114 +fn_805817E8 = .text:0x805817E8; // type:function size:0x5C +fn_80581844 = .text:0x80581844; // type:function size:0x54 +fn_80581898 = .text:0x80581898; // type:function size:0x5C +fn_805818F4 = .text:0x805818F4; // type:function size:0xCC +fn_805819C0 = .text:0x805819C0; // type:function size:0x5C +fn_80581A1C = .text:0x80581A1C; // type:function size:0x60 +fn_80581A7C = .text:0x80581A7C; // type:function size:0x10 +fn_80581A8C = .text:0x80581A8C; // type:function size:0x10 +fn_80581A9C = .text:0x80581A9C; // type:function size:0x2CC +fn_80581D68 = .text:0x80581D68; // type:function size:0x84 +fn_80581DEC = .text:0x80581DEC; // type:function size:0x58 +fn_80581E44 = .text:0x80581E44; // type:function size:0x58 +fn_80581E9C = .text:0x80581E9C; // type:function size:0x80 +fn_80581F1C = .text:0x80581F1C; // type:function size:0x80 +fn_80581F9C = .text:0x80581F9C; // type:function size:0x58 +fn_80581FF4 = .text:0x80581FF4; // type:function size:0x54 +fn_80582048 = .text:0x80582048; // type:function size:0x5C +fn_805820A4 = .text:0x805820A4; // type:function size:0x6C +fn_80582110 = .text:0x80582110; // type:function size:0x28 +fn_80582138 = .text:0x80582138; // type:function size:0x8 +fn_80582140 = .text:0x80582140; // type:function size:0x68 +fn_805821A8 = .text:0x805821A8; // type:function size:0x84 +fn_8058222C = .text:0x8058222C; // type:function size:0x8 +fn_80582234 = .text:0x80582234; // type:function size:0x3C +fn_80582270 = .text:0x80582270; // type:function size:0x6C +fn_805822DC = .text:0x805822DC; // type:function size:0x58 +fn_80582334 = .text:0x80582334; // type:function size:0x58 +fn_8058238C = .text:0x8058238C; // type:function size:0x80 +fn_8058240C = .text:0x8058240C; // type:function size:0x80 +fn_8058248C = .text:0x8058248C; // type:function size:0x58 +fn_805824E4 = .text:0x805824E4; // type:function size:0x10 +fn_805824F4 = .text:0x805824F4; // type:function size:0x54 +fn_80582548 = .text:0x80582548; // type:function size:0x5C +fn_805825A4 = .text:0x805825A4; // type:function size:0x6C +fn_80582610 = .text:0x80582610; // type:function size:0x28 +fn_80582638 = .text:0x80582638; // type:function size:0x10 +fn_80582648 = .text:0x80582648; // type:function size:0x8 +fn_80582650 = .text:0x80582650; // type:function size:0x74 +fn_805826C4 = .text:0x805826C4; // type:function size:0xC +fn_805826D0 = .text:0x805826D0; // type:function size:0x8 +fn_805826D8 = .text:0x805826D8; // type:function size:0x3C +fn_80582714 = .text:0x80582714; // type:function size:0x14 +fn_80582728 = .text:0x80582728; // type:function size:0x6C +fn_80582794 = .text:0x80582794; // type:function size:0x50 +fn_805827E4 = .text:0x805827E4; // type:function size:0x30 +fn_80582814 = .text:0x80582814; // type:function size:0x30 +fn_80582844 = .text:0x80582844; // type:function size:0x40 +fn_80582884 = .text:0x80582884; // type:function size:0x68 +fn_805828EC = .text:0x805828EC; // type:function size:0x50 +fn_8058293C = .text:0x8058293C; // type:function size:0x30 +fn_8058296C = .text:0x8058296C; // type:function size:0x30 +fn_8058299C = .text:0x8058299C; // type:function size:0x40 +fn_805829DC = .text:0x805829DC; // type:function size:0x11C +fn_80582AF8 = .text:0x80582AF8; // type:function size:0x2C +fn_80582B24 = .text:0x80582B24; // type:function size:0x34 +fn_80582B58 = .text:0x80582B58; // type:function size:0x44 +fn_80582B9C = .text:0x80582B9C; // type:function size:0x4C +fn_80582BE8 = .text:0x80582BE8; // type:function size:0x8C +fn_80582C74 = .text:0x80582C74; // type:function size:0xC +fn_80582C80 = .text:0x80582C80; // type:function size:0x160 +fn_80582DE0 = .text:0x80582DE0; // type:function size:0xB0 +fn_80582E90 = .text:0x80582E90; // type:function size:0x34C +fn_805831DC = .text:0x805831DC; // type:function size:0xB8 +fn_80583294 = .text:0x80583294; // type:function size:0xA4 +fn_80583338 = .text:0x80583338; // type:function size:0x2D8 +fn_80583610 = .text:0x80583610; // type:function size:0x5C +fn_8058366C = .text:0x8058366C; // type:function size:0xC +fn_80583678 = .text:0x80583678; // type:function size:0x34 +fn_805836AC = .text:0x805836AC; // type:function size:0x378 +fn_80583A24 = .text:0x80583A24; // type:function size:0x390 +fn_80583DB4 = .text:0x80583DB4; // type:function size:0x10 +fn_80583DC4 = .text:0x80583DC4; // type:function size:0x24 +fn_80583DE8 = .text:0x80583DE8; // type:function size:0x88 +fn_80583E70 = .text:0x80583E70; // type:function size:0x25C +fn_805840CC = .text:0x805840CC; // type:function size:0x28 +fn_805840F4 = .text:0x805840F4; // type:function size:0x28 +fn_8058411C = .text:0x8058411C; // type:function size:0x18C +fn_805842A8 = .text:0x805842A8; // type:function size:0x22C +fn_805844D4 = .text:0x805844D4; // type:function size:0xB8 +fn_8058458C = .text:0x8058458C; // type:function size:0xB8 +fn_80584644 = .text:0x80584644; // type:function size:0x8 +fn_8058464C = .text:0x8058464C; // type:function size:0x48 +fn_80584694 = .text:0x80584694; // type:function size:0x58 +fn_805846EC = .text:0x805846EC; // type:function size:0x30 +fn_8058471C = .text:0x8058471C; // type:function size:0x8 +fn_80584724 = .text:0x80584724; // type:function size:0x24 +fn_80584748 = .text:0x80584748; // type:function size:0x3C +fn_80584784 = .text:0x80584784; // type:function size:0x5C +fn_805847E0 = .text:0x805847E0; // type:function size:0x4 +fn_805847E4 = .text:0x805847E4; // type:function size:0x90 +fn_80584874 = .text:0x80584874; // type:function size:0x4 +fn_80584878 = .text:0x80584878; // type:function size:0x40 +fn_805848B8 = .text:0x805848B8; // type:function size:0x8C +fn_80584944 = .text:0x80584944; // type:function size:0x8 +fn_8058494C = .text:0x8058494C; // type:function size:0x2C +fn_80584978 = .text:0x80584978; // type:function size:0x58 +fn_805849D0 = .text:0x805849D0; // type:function size:0x28 +fn_805849F8 = .text:0x805849F8; // type:function size:0x68 +fn_80584A60 = .text:0x80584A60; // type:function size:0x4 +fn_80584A64 = .text:0x80584A64; // type:function size:0x3C +fn_80584AA0 = .text:0x80584AA0; // type:function size:0x48 +fn_80584AE8 = .text:0x80584AE8; // type:function size:0x114 +fn_80584BFC = .text:0x80584BFC; // type:function size:0x3C +fn_80584C38 = .text:0x80584C38; // type:function size:0x5C +fn_80584C94 = .text:0x80584C94; // type:function size:0x4 +fn_80584C98 = .text:0x80584C98; // type:function size:0x90 +fn_80584D28 = .text:0x80584D28; // type:function size:0x4 +fn_80584D2C = .text:0x80584D2C; // type:function size:0x40 +fn_80584D6C = .text:0x80584D6C; // type:function size:0x8C +fn_80584DF8 = .text:0x80584DF8; // type:function size:0x8 +fn_80584E00 = .text:0x80584E00; // type:function size:0x2C +fn_80584E2C = .text:0x80584E2C; // type:function size:0x58 +fn_80584E84 = .text:0x80584E84; // type:function size:0x28 +fn_80584EAC = .text:0x80584EAC; // type:function size:0x68 +fn_80584F14 = .text:0x80584F14; // type:function size:0x4 +fn_80584F18 = .text:0x80584F18; // type:function size:0x3C +fn_80584F54 = .text:0x80584F54; // type:function size:0x248 +fn_8058519C = .text:0x8058519C; // type:function size:0x48 +fn_805851E4 = .text:0x805851E4; // type:function size:0x4C +fn_80585230 = .text:0x80585230; // type:function size:0xA0 +fn_805852D0 = .text:0x805852D0; // type:function size:0xC4 +fn_80585394 = .text:0x80585394; // type:function size:0x4 +fn_80585398 = .text:0x80585398; // type:function size:0xB04 +fn_80585E9C = .text:0x80585E9C; // type:function size:0x74 +fn_80585F10 = .text:0x80585F10; // type:function size:0x38 +fn_80585F48 = .text:0x80585F48; // type:function size:0x80 +fn_80585FC8 = .text:0x80585FC8; // type:function size:0x44 +fn_8058600C = .text:0x8058600C; // type:function size:0x40 +fn_8058604C = .text:0x8058604C; // type:function size:0x104 +fn_80586150 = .text:0x80586150; // type:function size:0x40 +fn_80586190 = .text:0x80586190; // type:function size:0x104 +fn_80586294 = .text:0x80586294; // type:function size:0x74 +fn_80586308 = .text:0x80586308; // type:function size:0x38 +fn_80586340 = .text:0x80586340; // type:function size:0x44 +fn_80586384 = .text:0x80586384; // type:function size:0x78 +fn_805863FC = .text:0x805863FC; // type:function size:0xD0 +fn_805864CC = .text:0x805864CC; // type:function size:0x28 +fn_805864F4 = .text:0x805864F4; // type:function size:0x28 +fn_8058651C = .text:0x8058651C; // type:function size:0x28 +fn_80586544 = .text:0x80586544; // type:function size:0x58 +fn_8058659C = .text:0x8058659C; // type:function size:0x28 +fn_805865C4 = .text:0x805865C4; // type:function size:0x130 +fn_805866F4 = .text:0x805866F4; // type:function size:0x12C +fn_80586820 = .text:0x80586820; // type:function size:0x94 +fn_805868B4 = .text:0x805868B4; // type:function size:0x35C +fn_80586C10 = .text:0x80586C10; // type:function size:0x28 +fn_80586C38 = .text:0x80586C38; // type:function size:0xA8 +fn_80586CE0 = .text:0x80586CE0; // type:function size:0xA8 +fn_80586D88 = .text:0x80586D88; // type:function size:0x130 +fn_80586EB8 = .text:0x80586EB8; // type:function size:0x40 +fn_80586EF8 = .text:0x80586EF8; // type:function size:0x130 +fn_80587028 = .text:0x80587028; // type:function size:0x668 +fn_80587690 = .text:0x80587690; // type:function size:0x84 +fn_80587714 = .text:0x80587714; // type:function size:0x38 +fn_8058774C = .text:0x8058774C; // type:function size:0x38 +fn_80587784 = .text:0x80587784; // type:function size:0x38 +fn_805877BC = .text:0x805877BC; // type:function size:0x5C +fn_80587818 = .text:0x80587818; // type:function size:0x38 +fn_80587850 = .text:0x80587850; // type:function size:0x58 +fn_805878A8 = .text:0x805878A8; // type:function size:0xEC +fn_80587994 = .text:0x80587994; // type:function size:0x88 +fn_80587A1C = .text:0x80587A1C; // type:function size:0x408 +fn_80587E24 = .text:0x80587E24; // type:function size:0x8 +fn_80587E2C = .text:0x80587E2C; // type:function size:0x8 +fn_80587E34 = .text:0x80587E34; // type:function size:0x84 +fn_80587EB8 = .text:0x80587EB8; // type:function size:0x6C +fn_80587F24 = .text:0x80587F24; // type:function size:0x7C +fn_80587FA0 = .text:0x80587FA0; // type:function size:0x30 +fn_80587FD0 = .text:0x80587FD0; // type:function size:0x98 +fn_80588068 = .text:0x80588068; // type:function size:0x70 +fn_805880D8 = .text:0x805880D8; // type:function size:0x70 +fn_80588148 = .text:0x80588148; // type:function size:0xBC +fn_80588204 = .text:0x80588204; // type:function size:0x60 +fn_80588264 = .text:0x80588264; // type:function size:0x8 +fn_8058826C = .text:0x8058826C; // type:function size:0x4 +fn_80588270 = .text:0x80588270; // type:function size:0x60 +fn_805882D0 = .text:0x805882D0; // type:function size:0x7C +fn_8058834C = .text:0x8058834C; // type:function size:0x58 +fn_805883A4 = .text:0x805883A4; // type:function size:0x58 +fn_805883FC = .text:0x805883FC; // type:function size:0x60 +fn_8058845C = .text:0x8058845C; // type:function size:0x58 +fn_805884B4 = .text:0x805884B4; // type:function size:0x30 +fn_805884E4 = .text:0x805884E4; // type:function size:0x30 +fn_80588514 = .text:0x80588514; // type:function size:0x60 +fn_80588574 = .text:0x80588574; // type:function size:0x74 +fn_805885E8 = .text:0x805885E8; // type:function size:0xF0 +fn_805886D8 = .text:0x805886D8; // type:function size:0x2C +fn_80588704 = .text:0x80588704; // type:function size:0x4 +fn_80588708 = .text:0x80588708; // type:function size:0x54 +fn_8058875C = .text:0x8058875C; // type:function size:0x64 +fn_805887C0 = .text:0x805887C0; // type:function size:0x50 +fn_80588810 = .text:0x80588810; // type:function size:0x10 +fn_80588820 = .text:0x80588820; // type:function size:0x40 +fn_80588860 = .text:0x80588860; // type:function size:0x4 +fn_80588864 = .text:0x80588864; // type:function size:0x28 +fn_8058888C = .text:0x8058888C; // type:function size:0x40 +fn_805888CC = .text:0x805888CC; // type:function size:0x8 +fn_805888D4 = .text:0x805888D4; // type:function size:0x30 +fn_80588904 = .text:0x80588904; // type:function size:0x3F8 +fn_80588CFC = .text:0x80588CFC; // type:function size:0x24 +fn_80588D20 = .text:0x80588D20; // type:function size:0x154 +fn_80588E74 = .text:0x80588E74; // type:function size:0x2C +fn_80588EA0 = .text:0x80588EA0; // type:function size:0x4C +fn_80588EEC = .text:0x80588EEC; // type:function size:0x70 +fn_80588F5C = .text:0x80588F5C; // type:function size:0x30 +fn_80588F8C = .text:0x80588F8C; // type:function size:0x2C +fn_80588FB8 = .text:0x80588FB8; // type:function size:0x30 +fn_80588FE8 = .text:0x80588FE8; // type:function size:0x8 +Handle__7CamShotFP9DataArrayb = .text:0x80588FF0; // type:function size:0x4C8 +fn_805894B8 = .text:0x805894B8; // type:function size:0x5C +fn_80589514 = .text:0x80589514; // type:function size:0x4 +fn_80589518 = .text:0x80589518; // type:function size:0x70 +fn_80589588 = .text:0x80589588; // type:function size:0xC +fn_80589594 = .text:0x80589594; // type:function size:0x68 +fn_805895FC = .text:0x805895FC; // type:function size:0x4 +fn_80589600 = .text:0x80589600; // type:function size:0x4 +fn_80589604 = .text:0x80589604; // type:function size:0x68 +fn_8058966C = .text:0x8058966C; // type:function size:0x68 +fn_805896D4 = .text:0x805896D4; // type:function size:0x78 +fn_8058974C = .text:0x8058974C; // type:function size:0xA0 +fn_805897EC = .text:0x805897EC; // type:function size:0x21C +fn_80589A08 = .text:0x80589A08; // type:function size:0x44 +fn_80589A4C = .text:0x80589A4C; // type:function size:0xC4 +fn_80589B10 = .text:0x80589B10; // type:function size:0x48 +fn_80589B58 = .text:0x80589B58; // type:function size:0x104 +fn_80589C5C = .text:0x80589C5C; // type:function size:0xD0 +fn_80589D2C = .text:0x80589D2C; // type:function size:0x844 +fn_8058A570 = .text:0x8058A570; // type:function size:0x7F0 +fn_8058AD60 = .text:0x8058AD60; // type:function size:0x170 +fn_8058AED0 = .text:0x8058AED0; // type:function size:0x2C +fn_8058AEFC = .text:0x8058AEFC; // type:function size:0x84 +fn_8058AF80 = .text:0x8058AF80; // type:function size:0x2C +fn_8058AFAC = .text:0x8058AFAC; // type:function size:0x1E8 +fn_8058B194 = .text:0x8058B194; // type:function size:0xC0 +fn_8058B254 = .text:0x8058B254; // type:function size:0xD0 +fn_8058B324 = .text:0x8058B324; // type:function size:0x170 +fn_8058B494 = .text:0x8058B494; // type:function size:0x2C +fn_8058B4C0 = .text:0x8058B4C0; // type:function size:0x84 +fn_8058B544 = .text:0x8058B544; // type:function size:0x2C +fn_8058B570 = .text:0x8058B570; // type:function size:0x1E8 +fn_8058B758 = .text:0x8058B758; // type:function size:0xBC +fn_8058B814 = .text:0x8058B814; // type:function size:0x44 +fn_8058B858 = .text:0x8058B858; // type:function size:0x10C +fn_8058B964 = .text:0x8058B964; // type:function size:0x70 +fn_8058B9D4 = .text:0x8058B9D4; // type:function size:0x70 +fn_8058BA44 = .text:0x8058BA44; // type:function size:0x160 +fn_8058BBA4 = .text:0x8058BBA4; // type:function size:0x28 +fn_8058BBCC = .text:0x8058BBCC; // type:function size:0x5C +fn_8058BC28 = .text:0x8058BC28; // type:function size:0x60 +fn_8058BC88 = .text:0x8058BC88; // type:function size:0x68 +fn_8058BCF0 = .text:0x8058BCF0; // type:function size:0x2C +fn_8058BD1C = .text:0x8058BD1C; // type:function size:0x58 +fn_8058BD74 = .text:0x8058BD74; // type:function size:0x68 +fn_8058BDDC = .text:0x8058BDDC; // type:function size:0x2C +fn_8058BE08 = .text:0x8058BE08; // type:function size:0x58 +fn_8058BE60 = .text:0x8058BE60; // type:function size:0x68 +fn_8058BEC8 = .text:0x8058BEC8; // type:function size:0x2C +fn_8058BEF4 = .text:0x8058BEF4; // type:function size:0x134 +fn_8058C028 = .text:0x8058C028; // type:function size:0x4 +fn_8058C02C = .text:0x8058C02C; // type:function size:0x198 +fn_8058C1C4 = .text:0x8058C1C4; // type:function size:0x5C +fn_8058C220 = .text:0x8058C220; // type:function size:0x10 +fn_8058C230 = .text:0x8058C230; // type:function size:0x54 +fn_8058C284 = .text:0x8058C284; // type:function size:0x28 +fn_8058C2AC = .text:0x8058C2AC; // type:function size:0x68 +fn_8058C314 = .text:0x8058C314; // type:function size:0x5C +fn_8058C370 = .text:0x8058C370; // type:function size:0x104 +fn_8058C474 = .text:0x8058C474; // type:function size:0x38 +fn_8058C4AC = .text:0x8058C4AC; // type:function size:0x114 +fn_8058C5C0 = .text:0x8058C5C0; // type:function size:0x5C +fn_8058C61C = .text:0x8058C61C; // type:function size:0x5C +fn_8058C678 = .text:0x8058C678; // type:function size:0x54 +fn_8058C6CC = .text:0x8058C6CC; // type:function size:0xC +fn_8058C6D8 = .text:0x8058C6D8; // type:function size:0x198 +fn_8058C870 = .text:0x8058C870; // type:function size:0x5C +fn_8058C8CC = .text:0x8058C8CC; // type:function size:0x10 +fn_8058C8DC = .text:0x8058C8DC; // type:function size:0x54 +fn_8058C930 = .text:0x8058C930; // type:function size:0x28 +fn_8058C958 = .text:0x8058C958; // type:function size:0x68 +fn_8058C9C0 = .text:0x8058C9C0; // type:function size:0x5C +fn_8058CA1C = .text:0x8058CA1C; // type:function size:0x58 +fn_8058CA74 = .text:0x8058CA74; // type:function size:0x114 +fn_8058CB88 = .text:0x8058CB88; // type:function size:0x5C +fn_8058CBE4 = .text:0x8058CBE4; // type:function size:0x5C +fn_8058CC40 = .text:0x8058CC40; // type:function size:0x54 +fn_8058CC94 = .text:0x8058CC94; // type:function size:0x14 +fn_8058CCA8 = .text:0x8058CCA8; // type:function size:0x14 +fn_8058CCBC = .text:0x8058CCBC; // type:function size:0x14 +fn_8058CCD0 = .text:0x8058CCD0; // type:function size:0x14 +fn_8058CCE4 = .text:0x8058CCE4; // type:function size:0x14 +fn_8058CCF8 = .text:0x8058CCF8; // type:function size:0x14 +fn_8058CD0C = .text:0x8058CD0C; // type:function size:0x14 +fn_8058CD20 = .text:0x8058CD20; // type:function size:0x14 +fn_8058CD34 = .text:0x8058CD34; // type:function size:0x104 +fn_8058CE38 = .text:0x8058CE38; // type:function size:0x4 +fn_8058CE3C = .text:0x8058CE3C; // type:function size:0x2C +fn_8058CE68 = .text:0x8058CE68; // type:function size:0x108 +fn_8058CF70 = .text:0x8058CF70; // type:function size:0x6C +fn_8058CFDC = .text:0x8058CFDC; // type:function size:0x18 +fn_8058CFF4 = .text:0x8058CFF4; // type:function size:0x8 +fn_8058CFFC = .text:0x8058CFFC; // type:function size:0x4 +fn_8058D000 = .text:0x8058D000; // type:function size:0x2C +fn_8058D02C = .text:0x8058D02C; // type:function size:0x58 +fn_8058D084 = .text:0x8058D084; // type:function size:0x1D0 +fn_8058D254 = .text:0x8058D254; // type:function size:0x148 +fn_8058D39C = .text:0x8058D39C; // type:function size:0xAC +fn_8058D448 = .text:0x8058D448; // type:function size:0x58 +fn_8058D4A0 = .text:0x8058D4A0; // type:function size:0x6C +fn_8058D50C = .text:0x8058D50C; // type:function size:0x9C +fn_8058D5A8 = .text:0x8058D5A8; // type:function size:0x58 +fn_8058D600 = .text:0x8058D600; // type:function size:0x60 +fn_8058D660 = .text:0x8058D660; // type:function size:0x30 +fn_8058D690 = .text:0x8058D690; // type:function size:0x60 +fn_8058D6F0 = .text:0x8058D6F0; // type:function size:0x4 +fn_8058D6F4 = .text:0x8058D6F4; // type:function size:0x54 +fn_8058D748 = .text:0x8058D748; // type:function size:0x64 +fn_8058D7AC = .text:0x8058D7AC; // type:function size:0x50 +fn_8058D7FC = .text:0x8058D7FC; // type:function size:0x2C +fn_8058D828 = .text:0x8058D828; // type:function size:0x40 +fn_8058D868 = .text:0x8058D868; // type:function size:0x234 +fn_8058DA9C = .text:0x8058DA9C; // type:function size:0x58 +fn_8058DAF4 = .text:0x8058DAF4; // type:function size:0x58 +fn_8058DB4C = .text:0x8058DB4C; // type:function size:0x58 +fn_8058DBA4 = .text:0x8058DBA4; // type:function size:0x60 +fn_8058DC04 = .text:0x8058DC04; // type:function size:0x58 +fn_8058DC5C = .text:0x8058DC5C; // type:function size:0x10 +fn_8058DC6C = .text:0x8058DC6C; // type:function size:0x28 +fn_8058DC94 = .text:0x8058DC94; // type:function size:0x50 +fn_8058DCE4 = .text:0x8058DCE4; // type:function size:0x30 +fn_8058DD14 = .text:0x8058DD14; // type:function size:0x30 +fn_8058DD44 = .text:0x8058DD44; // type:function size:0x60 +fn_8058DDA4 = .text:0x8058DDA4; // type:function size:0x5C +fn_8058DE00 = .text:0x8058DE00; // type:function size:0x238 +fn_8058E038 = .text:0x8058E038; // type:function size:0x4 +fn_8058E03C = .text:0x8058E03C; // type:function size:0x4 +fn_8058E040 = .text:0x8058E040; // type:function size:0x8 +fn_8058E048 = .text:0x8058E048; // type:function size:0x4 +fn_8058E04C = .text:0x8058E04C; // type:function size:0x8 +fn_8058E054 = .text:0x8058E054; // type:function size:0x178 +fn_8058E1CC = .text:0x8058E1CC; // type:function size:0x8 +fn_8058E1D4 = .text:0x8058E1D4; // type:function size:0x294 +fn_8058E468 = .text:0x8058E468; // type:function size:0x30 +fn_8058E498 = .text:0x8058E498; // type:function size:0x30 +fn_8058E4C8 = .text:0x8058E4C8; // type:function size:0x68 +fn_8058E530 = .text:0x8058E530; // type:function size:0x8 +fn_8058E538 = .text:0x8058E538; // type:function size:0x5C +fn_8058E594 = .text:0x8058E594; // type:function size:0x80 +fn_8058E614 = .text:0x8058E614; // type:function size:0x68 +fn_8058E67C = .text:0x8058E67C; // type:function size:0x58 +fn_8058E6D4 = .text:0x8058E6D4; // type:function size:0x80 +fn_8058E754 = .text:0x8058E754; // type:function size:0x80 +fn_8058E7D4 = .text:0x8058E7D4; // type:function size:0x58 +fn_8058E82C = .text:0x8058E82C; // type:function size:0x54 +fn_8058E880 = .text:0x8058E880; // type:function size:0x5C +fn_8058E8DC = .text:0x8058E8DC; // type:function size:0x6C +fn_8058E948 = .text:0x8058E948; // type:function size:0x28 +fn_8058E970 = .text:0x8058E970; // type:function size:0x8 +fn_8058E978 = .text:0x8058E978; // type:function size:0x5C +fn_8058E9D4 = .text:0x8058E9D4; // type:function size:0x8 +fn_8058E9DC = .text:0x8058E9DC; // type:function size:0x3C +fn_8058EA18 = .text:0x8058EA18; // type:function size:0x4 +fn_8058EA1C = .text:0x8058EA1C; // type:function size:0x4 +fn_8058EA20 = .text:0x8058EA20; // type:function size:0x4 +fn_8058EA24 = .text:0x8058EA24; // type:function size:0x168 +fn_8058EB8C = .text:0x8058EB8C; // type:function size:0x4 +fn_8058EB90 = .text:0x8058EB90; // type:function size:0x3C +fn_8058EBCC = .text:0x8058EBCC; // type:function size:0x40 +fn_8058EC0C = .text:0x8058EC0C; // type:function size:0x8C +fn_8058EC98 = .text:0x8058EC98; // type:function size:0x8 +fn_8058ECA0 = .text:0x8058ECA0; // type:function size:0x2C +fn_8058ECCC = .text:0x8058ECCC; // type:function size:0x58 +fn_8058ED24 = .text:0x8058ED24; // type:function size:0x28 +fn_8058ED4C = .text:0x8058ED4C; // type:function size:0x68 +fn_8058EDB4 = .text:0x8058EDB4; // type:function size:0x50 +fn_8058EE04 = .text:0x8058EE04; // type:function size:0x58 +fn_8058EE5C = .text:0x8058EE5C; // type:function size:0xC8 +fn_8058EF24 = .text:0x8058EF24; // type:function size:0x88 +fn_8058EFAC = .text:0x8058EFAC; // type:function size:0x104 +fn_8058F0B0 = .text:0x8058F0B0; // type:function size:0x30 +fn_8058F0E0 = .text:0x8058F0E0; // type:function size:0xCC +fn_8058F1AC = .text:0x8058F1AC; // type:function size:0x34 +fn_8058F1E0 = .text:0x8058F1E0; // type:function size:0xA4 +fn_8058F284 = .text:0x8058F284; // type:function size:0xF8 +fn_8058F37C = .text:0x8058F37C; // type:function size:0xA8 +fn_8058F424 = .text:0x8058F424; // type:function size:0x6C +fn_8058F490 = .text:0x8058F490; // type:function size:0x30 +fn_8058F4C0 = .text:0x8058F4C0; // type:function size:0x74 +fn_8058F534 = .text:0x8058F534; // type:function size:0x88 +fn_8058F5BC = .text:0x8058F5BC; // type:function size:0x20 +fn_8058F5DC = .text:0x8058F5DC; // type:function size:0xA4 +fn_8058F680 = .text:0x8058F680; // type:function size:0x6C +fn_8058F6EC = .text:0x8058F6EC; // type:function size:0xC +fn_8058F6F8 = .text:0x8058F6F8; // type:function size:0x64 +fn_8058F75C = .text:0x8058F75C; // type:function size:0x50 +fn_8058F7AC = .text:0x8058F7AC; // type:function size:0x30 +fn_8058F7DC = .text:0x8058F7DC; // type:function size:0x98 +fn_8058F874 = .text:0x8058F874; // type:function size:0x70 +fn_8058F8E4 = .text:0x8058F8E4; // type:function size:0xE0 +fn_8058F9C4 = .text:0x8058F9C4; // type:function size:0x94 +fn_8058FA58 = .text:0x8058FA58; // type:function size:0x88 +fn_8058FAE0 = .text:0x8058FAE0; // type:function size:0xA4 +fn_8058FB84 = .text:0x8058FB84; // type:function size:0x78 +fn_8058FBFC = .text:0x8058FBFC; // type:function size:0x58 +fn_8058FC54 = .text:0x8058FC54; // type:function size:0x64 +fn_8058FCB8 = .text:0x8058FCB8; // type:function size:0x28 +fn_8058FCE0 = .text:0x8058FCE0; // type:function size:0x68 +fn_8058FD48 = .text:0x8058FD48; // type:function size:0x30 +fn_8058FD78 = .text:0x8058FD78; // type:function size:0x78 +fn_8058FDF0 = .text:0x8058FDF0; // type:function size:0x154 +fn_8058FF44 = .text:0x8058FF44; // type:function size:0x4 +fn_8058FF48 = .text:0x8058FF48; // type:function size:0x88 +fn_8058FFD0 = .text:0x8058FFD0; // type:function size:0x2C +fn_8058FFFC = .text:0x8058FFFC; // type:function size:0x10 +fn_8059000C = .text:0x8059000C; // type:function size:0x58 +fn_80590064 = .text:0x80590064; // type:function size:0x240 +fn_805902A4 = .text:0x805902A4; // type:function size:0x58 +fn_805902FC = .text:0x805902FC; // type:function size:0x80 +fn_8059037C = .text:0x8059037C; // type:function size:0x80 +fn_805903FC = .text:0x805903FC; // type:function size:0x58 +fn_80590454 = .text:0x80590454; // type:function size:0x54 +fn_805904A8 = .text:0x805904A8; // type:function size:0x5C +fn_80590504 = .text:0x80590504; // type:function size:0x6C +fn_80590570 = .text:0x80590570; // type:function size:0x28 +fn_80590598 = .text:0x80590598; // type:function size:0x8 +fn_805905A0 = .text:0x805905A0; // type:function size:0x3C +fn_805905DC = .text:0x805905DC; // type:function size:0x50 +fn_8059062C = .text:0x8059062C; // type:function size:0x4 +fn_80590630 = .text:0x80590630; // type:function size:0x88 +fn_805906B8 = .text:0x805906B8; // type:function size:0x2C +fn_805906E4 = .text:0x805906E4; // type:function size:0x4 +fn_805906E8 = .text:0x805906E8; // type:function size:0x30 +fn_80590718 = .text:0x80590718; // type:function size:0x30 +fn_80590748 = .text:0x80590748; // type:function size:0x40 +fn_80590788 = .text:0x80590788; // type:function size:0xD8 +fn_80590860 = .text:0x80590860; // type:function size:0x44 +fn_805908A4 = .text:0x805908A4; // type:function size:0x14 +fn_805908B8 = .text:0x805908B8; // type:function size:0x20 +fn_805908D8 = .text:0x805908D8; // type:function size:0xB8 +fn_80590990 = .text:0x80590990; // type:function size:0x394 +fn_80590D24 = .text:0x80590D24; // type:function size:0x8 +fn_80590D2C = .text:0x80590D2C; // type:function size:0x8 +fn_80590D34 = .text:0x80590D34; // type:function size:0x8 +fn_80590D3C = .text:0x80590D3C; // type:function size:0x8 +fn_80590D44 = .text:0x80590D44; // type:function size:0x8 +fn_80590D4C = .text:0x80590D4C; // type:function size:0x8 +fn_80590D54 = .text:0x80590D54; // type:function size:0x8 +fn_80590D5C = .text:0x80590D5C; // type:function size:0x4DC +fn_80591238 = .text:0x80591238; // type:function size:0x58 +fn_80591290 = .text:0x80591290; // type:function size:0x80 +fn_80591310 = .text:0x80591310; // type:function size:0x80 +fn_80591390 = .text:0x80591390; // type:function size:0x58 +fn_805913E8 = .text:0x805913E8; // type:function size:0x54 +fn_8059143C = .text:0x8059143C; // type:function size:0x5C +fn_80591498 = .text:0x80591498; // type:function size:0x6C +fn_80591504 = .text:0x80591504; // type:function size:0x28 +fn_8059152C = .text:0x8059152C; // type:function size:0x8 +fn_80591534 = .text:0x80591534; // type:function size:0x3C +fn_80591570 = .text:0x80591570; // type:function size:0x8 +fn_80591578 = .text:0x80591578; // type:function size:0x4 +fn_8059157C = .text:0x8059157C; // type:function size:0x3C +fn_805915B8 = .text:0x805915B8; // type:function size:0x40 +fn_805915F8 = .text:0x805915F8; // type:function size:0x8C +fn_80591684 = .text:0x80591684; // type:function size:0x8 +fn_8059168C = .text:0x8059168C; // type:function size:0x2C +fn_805916B8 = .text:0x805916B8; // type:function size:0x58 +fn_80591710 = .text:0x80591710; // type:function size:0x28 +fn_80591738 = .text:0x80591738; // type:function size:0x68 +fn_805917A0 = .text:0x805917A0; // type:function size:0x4 +fn_805917A4 = .text:0x805917A4; // type:function size:0x30 +fn_805917D4 = .text:0x805917D4; // type:function size:0x30 +fn_80591804 = .text:0x80591804; // type:function size:0x40 +fn_80591844 = .text:0x80591844; // type:function size:0x8 +fn_8059184C = .text:0x8059184C; // type:function size:0x22C +fn_80591A78 = .text:0x80591A78; // type:function size:0x3C +fn_80591AB4 = .text:0x80591AB4; // type:function size:0x39C +fn_80591E50 = .text:0x80591E50; // type:function size:0x4 +fn_80591E54 = .text:0x80591E54; // type:function size:0x3C +fn_80591E90 = .text:0x80591E90; // type:function size:0x2C +fn_80591EBC = .text:0x80591EBC; // type:function size:0x80 +fn_80591F3C = .text:0x80591F3C; // type:function size:0x68 +fn_80591FA4 = .text:0x80591FA4; // type:function size:0x4 +fn_80591FA8 = .text:0x80591FA8; // type:function size:0x58 +fn_80592000 = .text:0x80592000; // type:function size:0x58 +fn_80592058 = .text:0x80592058; // type:function size:0x60 +fn_805920B8 = .text:0x805920B8; // type:function size:0x58 +fn_80592110 = .text:0x80592110; // type:function size:0x64 +fn_80592174 = .text:0x80592174; // type:function size:0x50 +fn_805921C4 = .text:0x805921C4; // type:function size:0x4 +fn_805921C8 = .text:0x805921C8; // type:function size:0x30 +fn_805921F8 = .text:0x805921F8; // type:function size:0x30 +fn_80592228 = .text:0x80592228; // type:function size:0x60 +fn_80592288 = .text:0x80592288; // type:function size:0x564 +fn_805927EC = .text:0x805927EC; // type:function size:0xAC +fn_80592898 = .text:0x80592898; // type:function size:0x34 +fn_805928CC = .text:0x805928CC; // type:function size:0x38 +fn_80592904 = .text:0x80592904; // type:function size:0xB8 +fn_805929BC = .text:0x805929BC; // type:function size:0x34 +fn_805929F0 = .text:0x805929F0; // type:function size:0x44 +fn_80592A34 = .text:0x80592A34; // type:function size:0x4 +fn_80592A38 = .text:0x80592A38; // type:function size:0x38 +fn_80592A70 = .text:0x80592A70; // type:function size:0xB8 +fn_80592B28 = .text:0x80592B28; // type:function size:0x38 +fn_80592B60 = .text:0x80592B60; // type:function size:0xB8 +fn_80592C18 = .text:0x80592C18; // type:function size:0x34 +fn_80592C4C = .text:0x80592C4C; // type:function size:0x4 +fn_80592C50 = .text:0x80592C50; // type:function size:0x58 +fn_80592CA8 = .text:0x80592CA8; // type:function size:0x58 +fn_80592D00 = .text:0x80592D00; // type:function size:0x60 +fn_80592D60 = .text:0x80592D60; // type:function size:0x58 +fn_80592DB8 = .text:0x80592DB8; // type:function size:0x4 +fn_80592DBC = .text:0x80592DBC; // type:function size:0x4 +fn_80592DC0 = .text:0x80592DC0; // type:function size:0x4 +fn_80592DC4 = .text:0x80592DC4; // type:function size:0x4 +fn_80592DC8 = .text:0x80592DC8; // type:function size:0x8 +fn_80592DD0 = .text:0x80592DD0; // type:function size:0x4 +fn_80592DD4 = .text:0x80592DD4; // type:function size:0x4 +fn_80592DD8 = .text:0x80592DD8; // type:function size:0x8 +fn_80592DE0 = .text:0x80592DE0; // type:function size:0x30 +fn_80592E10 = .text:0x80592E10; // type:function size:0x30 +fn_80592E40 = .text:0x80592E40; // type:function size:0x60 +fn_80592EA0 = .text:0x80592EA0; // type:function size:0x218 +fn_805930B8 = .text:0x805930B8; // type:function size:0x4 +fn_805930BC = .text:0x805930BC; // type:function size:0x3C +fn_805930F8 = .text:0x805930F8; // type:function size:0xA0 +fn_80593198 = .text:0x80593198; // type:function size:0x58 +fn_805931F0 = .text:0x805931F0; // type:function size:0x140 +fn_80593330 = .text:0x80593330; // type:function size:0x104 +fn_80593434 = .text:0x80593434; // type:function size:0xA0 +fn_805934D4 = .text:0x805934D4; // type:function size:0xB8 +fn_8059358C = .text:0x8059358C; // type:function size:0x150 +fn_805936DC = .text:0x805936DC; // type:function size:0x98 +fn_80593774 = .text:0x80593774; // type:function size:0x344 +fn_80593AB8 = .text:0x80593AB8; // type:function size:0x58 +fn_80593B10 = .text:0x80593B10; // type:function size:0x4 +fn_80593B14 = .text:0x80593B14; // type:function size:0x14 +fn_80593B28 = .text:0x80593B28; // type:function size:0x4 +fn_80593B2C = .text:0x80593B2C; // type:function size:0x30 +fn_80593B5C = .text:0x80593B5C; // type:function size:0x14 +fn_80593B70 = .text:0x80593B70; // type:function size:0x80 +fn_80593BF0 = .text:0x80593BF0; // type:function size:0x30 +fn_80593C20 = .text:0x80593C20; // type:function size:0x30 +fn_80593C50 = .text:0x80593C50; // type:function size:0x40 +fn_80593C90 = .text:0x80593C90; // type:function size:0x10 +fn_80593CA0 = .text:0x80593CA0; // type:function size:0x38 +fn_80593CD8 = .text:0x80593CD8; // type:function size:0x7C +fn_80593D54 = .text:0x80593D54; // type:function size:0x88 +fn_80593DDC = .text:0x80593DDC; // type:function size:0x40 +fn_80593E1C = .text:0x80593E1C; // type:function size:0x104 +fn_80593F20 = .text:0x80593F20; // type:function size:0x2B8 +fn_805941D8 = .text:0x805941D8; // type:function size:0x90 +fn_80594268 = .text:0x80594268; // type:function size:0x260 +fn_805944C8 = .text:0x805944C8; // type:function size:0x98 +fn_80594560 = .text:0x80594560; // type:function size:0x148 +fn_805946A8 = .text:0x805946A8; // type:function size:0xCC +fn_80594774 = .text:0x80594774; // type:function size:0x320 +fn_80594A94 = .text:0x80594A94; // type:function size:0x1A8 +fn_80594C3C = .text:0x80594C3C; // type:function size:0x58 +fn_80594C94 = .text:0x80594C94; // type:function size:0x64 +fn_80594CF8 = .text:0x80594CF8; // type:function size:0x50 +fn_80594D48 = .text:0x80594D48; // type:function size:0x10 +fn_80594D58 = .text:0x80594D58; // type:function size:0x68 +fn_80594DC0 = .text:0x80594DC0; // type:function size:0x30 +fn_80594DF0 = .text:0x80594DF0; // type:function size:0x98 +fn_80594E88 = .text:0x80594E88; // type:function size:0x5C +fn_80594EE4 = .text:0x80594EE4; // type:function size:0x70 +fn_80594F54 = .text:0x80594F54; // type:function size:0x30 +fn_80594F84 = .text:0x80594F84; // type:function size:0x90 +fn_80595014 = .text:0x80595014; // type:function size:0x60 +fn_80595074 = .text:0x80595074; // type:function size:0x90 +fn_80595104 = .text:0x80595104; // type:function size:0x68 +fn_8059516C = .text:0x8059516C; // type:function size:0x94 +fn_80595200 = .text:0x80595200; // type:function size:0x6C +fn_8059526C = .text:0x8059526C; // type:function size:0xC +fn_80595278 = .text:0x80595278; // type:function size:0x50 +fn_805952C8 = .text:0x805952C8; // type:function size:0x6C +fn_80595334 = .text:0x80595334; // type:function size:0x10 +fn_80595344 = .text:0x80595344; // type:function size:0x2C +fn_80595370 = .text:0x80595370; // type:function size:0x8 +fn_80595378 = .text:0x80595378; // type:function size:0x5C +fn_805953D4 = .text:0x805953D4; // type:function size:0x10 +fn_805953E4 = .text:0x805953E4; // type:function size:0x160 +fn_80595544 = .text:0x80595544; // type:function size:0x28 +fn_8059556C = .text:0x8059556C; // type:function size:0x5C +fn_805955C8 = .text:0x805955C8; // type:function size:0x60 +fn_80595628 = .text:0x80595628; // type:function size:0x114 +fn_8059573C = .text:0x8059573C; // type:function size:0x5C +fn_80595798 = .text:0x80595798; // type:function size:0x5C +fn_805957F4 = .text:0x805957F4; // type:function size:0x54 +fn_80595848 = .text:0x80595848; // type:function size:0x5C +fn_805958A4 = .text:0x805958A4; // type:function size:0xCC +fn_80595970 = .text:0x80595970; // type:function size:0x60 +fn_805959D0 = .text:0x805959D0; // type:function size:0x5C +fn_80595A2C = .text:0x80595A2C; // type:function size:0x60 +fn_80595A8C = .text:0x80595A8C; // type:function size:0x5C +fn_80595AE8 = .text:0x80595AE8; // type:function size:0x114 +fn_80595BFC = .text:0x80595BFC; // type:function size:0x5C +fn_80595C58 = .text:0x80595C58; // type:function size:0x54 +fn_80595CAC = .text:0x80595CAC; // type:function size:0x5C +fn_80595D08 = .text:0x80595D08; // type:function size:0xCC +fn_80595DD4 = .text:0x80595DD4; // type:function size:0x60 +fn_80595E34 = .text:0x80595E34; // type:function size:0x5C +fn_80595E90 = .text:0x80595E90; // type:function size:0x60 +fn_80595EF0 = .text:0x80595EF0; // type:function size:0x5C +fn_80595F4C = .text:0x80595F4C; // type:function size:0x10 +fn_80595F5C = .text:0x80595F5C; // type:function size:0x68 +fn_80595FC4 = .text:0x80595FC4; // type:function size:0x68 +fn_8059602C = .text:0x8059602C; // type:function size:0x68 +fn_80596094 = .text:0x80596094; // type:function size:0x68 +fn_805960FC = .text:0x805960FC; // type:function size:0x2C +fn_80596128 = .text:0x80596128; // type:function size:0x194 +fn_805962BC = .text:0x805962BC; // type:function size:0x60 +fn_8059631C = .text:0x8059631C; // type:function size:0xA0 +fn_805963BC = .text:0x805963BC; // type:function size:0x74 +fn_80596430 = .text:0x80596430; // type:function size:0x40 +fn_80596470 = .text:0x80596470; // type:function size:0xE4 +fn_80596554 = .text:0x80596554; // type:function size:0x54 +fn_805965A8 = .text:0x805965A8; // type:function size:0x6C +fn_80596614 = .text:0x80596614; // type:function size:0xE4 +fn_805966F8 = .text:0x805966F8; // type:function size:0x54 +fn_8059674C = .text:0x8059674C; // type:function size:0x6C +fn_805967B8 = .text:0x805967B8; // type:function size:0x8C +fn_80596844 = .text:0x80596844; // type:function size:0xE4 +fn_80596928 = .text:0x80596928; // type:function size:0x54 +fn_8059697C = .text:0x8059697C; // type:function size:0x6C +fn_805969E8 = .text:0x805969E8; // type:function size:0x8C +fn_80596A74 = .text:0x80596A74; // type:function size:0x6C +fn_80596AE0 = .text:0x80596AE0; // type:function size:0xE4 +fn_80596BC4 = .text:0x80596BC4; // type:function size:0x54 +fn_80596C18 = .text:0x80596C18; // type:function size:0x6C +fn_80596C84 = .text:0x80596C84; // type:function size:0x64 +fn_80596CE8 = .text:0x80596CE8; // type:function size:0x50 +fn_80596D38 = .text:0x80596D38; // type:function size:0x10 +fn_80596D48 = .text:0x80596D48; // type:function size:0x48 +fn_80596D90 = .text:0x80596D90; // type:function size:0x8C +fn_80596E1C = .text:0x80596E1C; // type:function size:0x6C +fn_80596E88 = .text:0x80596E88; // type:function size:0x144 +fn_80596FCC = .text:0x80596FCC; // type:function size:0x4C +fn_80597018 = .text:0x80597018; // type:function size:0x4 +fn_8059701C = .text:0x8059701C; // type:function size:0x10 +fn_8059702C = .text:0x8059702C; // type:function size:0x14 +fn_80597040 = .text:0x80597040; // type:function size:0x14 +fn_80597054 = .text:0x80597054; // type:function size:0x14 +fn_80597068 = .text:0x80597068; // type:function size:0x14 +fn_8059707C = .text:0x8059707C; // type:function size:0x14 +fn_80597090 = .text:0x80597090; // type:function size:0x14 +fn_805970A4 = .text:0x805970A4; // type:function size:0x14 +fn_805970B8 = .text:0x805970B8; // type:function size:0x14 +fn_805970CC = .text:0x805970CC; // type:function size:0x14 +fn_805970E0 = .text:0x805970E0; // type:function size:0x14 +fn_805970F4 = .text:0x805970F4; // type:function size:0x8 +fn_805970FC = .text:0x805970FC; // type:function size:0x8 +fn_80597104 = .text:0x80597104; // type:function size:0x8 +fn_8059710C = .text:0x8059710C; // type:function size:0x8 +fn_80597114 = .text:0x80597114; // type:function size:0x8 +fn_8059711C = .text:0x8059711C; // type:function size:0x8 +fn_80597124 = .text:0x80597124; // type:function size:0x8 +fn_8059712C = .text:0x8059712C; // type:function size:0x8 +fn_80597134 = .text:0x80597134; // type:function size:0x54 +fn_80597188 = .text:0x80597188; // type:function size:0x48 +fn_805971D0 = .text:0x805971D0; // type:function size:0x4 +fn_805971D4 = .text:0x805971D4; // type:function size:0xE0 +fn_805972B4 = .text:0x805972B4; // type:function size:0x80 +fn_80597334 = .text:0x80597334; // type:function size:0x4 +fn_80597338 = .text:0x80597338; // type:function size:0x90 +fn_805973C8 = .text:0x805973C8; // type:function size:0x4 +fn_805973CC = .text:0x805973CC; // type:function size:0x40 +fn_8059740C = .text:0x8059740C; // type:function size:0x8C +fn_80597498 = .text:0x80597498; // type:function size:0x8 +fn_805974A0 = .text:0x805974A0; // type:function size:0x2C +fn_805974CC = .text:0x805974CC; // type:function size:0x58 +fn_80597524 = .text:0x80597524; // type:function size:0x28 +fn_8059754C = .text:0x8059754C; // type:function size:0x68 +fn_805975B4 = .text:0x805975B4; // type:function size:0x38 +fn_805975EC = .text:0x805975EC; // type:function size:0x58 +fn_80597644 = .text:0x80597644; // type:function size:0x80 +fn_805976C4 = .text:0x805976C4; // type:function size:0x80 +fn_80597744 = .text:0x80597744; // type:function size:0x58 +fn_8059779C = .text:0x8059779C; // type:function size:0x54 +fn_805977F0 = .text:0x805977F0; // type:function size:0x5C +fn_8059784C = .text:0x8059784C; // type:function size:0x6C +fn_805978B8 = .text:0x805978B8; // type:function size:0x28 +fn_805978E0 = .text:0x805978E0; // type:function size:0x8 +fn_805978E8 = .text:0x805978E8; // type:function size:0x3C +fn_80597924 = .text:0x80597924; // type:function size:0x30 +fn_80597954 = .text:0x80597954; // type:function size:0x30 +fn_80597984 = .text:0x80597984; // type:function size:0x40 +fn_805979C4 = .text:0x805979C4; // type:function size:0x74 +Handle__12ColorPaletteFP9DataArrayb = .text:0x80597A38; // type:function size:0xC4 +fn_80597AFC = .text:0x80597AFC; // type:function size:0xAC +fn_80597BA8 = .text:0x80597BA8; // type:function size:0x68 +fn_80597C10 = .text:0x80597C10; // type:function size:0x2C +fn_80597C3C = .text:0x80597C3C; // type:function size:0x4 +fn_80597C40 = .text:0x80597C40; // type:function size:0x128 +fn_80597D68 = .text:0x80597D68; // type:function size:0x190 +fn_80597EF8 = .text:0x80597EF8; // type:function size:0x5C +fn_80597F54 = .text:0x80597F54; // type:function size:0x10 +fn_80597F64 = .text:0x80597F64; // type:function size:0x54 +fn_80597FB8 = .text:0x80597FB8; // type:function size:0x28 +fn_80597FE0 = .text:0x80597FE0; // type:function size:0x68 +fn_80598048 = .text:0x80598048; // type:function size:0x5C +fn_805980A4 = .text:0x805980A4; // type:function size:0x48 +fn_805980EC = .text:0x805980EC; // type:function size:0x114 +fn_80598200 = .text:0x80598200; // type:function size:0x60 +fn_80598260 = .text:0x80598260; // type:function size:0x5C +fn_805982BC = .text:0x805982BC; // type:function size:0x54 +fn_80598310 = .text:0x80598310; // type:function size:0x288 +fn_80598598 = .text:0x80598598; // type:function size:0x80 +fn_80598618 = .text:0x80598618; // type:function size:0x6C +fn_80598684 = .text:0x80598684; // type:function size:0x40 +fn_805986C4 = .text:0x805986C4; // type:function size:0x44 +fn_80598708 = .text:0x80598708; // type:function size:0x54 +fn_8059875C = .text:0x8059875C; // type:function size:0x58 +fn_805987B4 = .text:0x805987B4; // type:function size:0x58 +fn_8059880C = .text:0x8059880C; // type:function size:0x58 +fn_80598864 = .text:0x80598864; // type:function size:0x60 +fn_805988C4 = .text:0x805988C4; // type:function size:0x58 +fn_8059891C = .text:0x8059891C; // type:function size:0x58 +fn_80598974 = .text:0x80598974; // type:function size:0x58 +fn_805989CC = .text:0x805989CC; // type:function size:0x58 +fn_80598A24 = .text:0x80598A24; // type:function size:0x60 +fn_80598A84 = .text:0x80598A84; // type:function size:0x58 +fn_80598ADC = .text:0x80598ADC; // type:function size:0x58 +fn_80598B34 = .text:0x80598B34; // type:function size:0x58 +fn_80598B8C = .text:0x80598B8C; // type:function size:0x58 +fn_80598BE4 = .text:0x80598BE4; // type:function size:0x60 +fn_80598C44 = .text:0x80598C44; // type:function size:0x58 +fn_80598C9C = .text:0x80598C9C; // type:function size:0x68 +fn_80598D04 = .text:0x80598D04; // type:function size:0x68 +fn_80598D6C = .text:0x80598D6C; // type:function size:0x50 +fn_80598DBC = .text:0x80598DBC; // type:function size:0x30 +fn_80598DEC = .text:0x80598DEC; // type:function size:0x30 +fn_80598E1C = .text:0x80598E1C; // type:function size:0x60 +fn_80598E7C = .text:0x80598E7C; // type:function size:0x50 +fn_80598ECC = .text:0x80598ECC; // type:function size:0x30 +fn_80598EFC = .text:0x80598EFC; // type:function size:0x30 +fn_80598F2C = .text:0x80598F2C; // type:function size:0x60 +fn_80598F8C = .text:0x80598F8C; // type:function size:0x50 +fn_80598FDC = .text:0x80598FDC; // type:function size:0x30 +fn_8059900C = .text:0x8059900C; // type:function size:0x30 +fn_8059903C = .text:0x8059903C; // type:function size:0x60 +fn_8059909C = .text:0x8059909C; // type:function size:0xA4 +fn_80599140 = .text:0x80599140; // type:function size:0x28 +fn_80599168 = .text:0x80599168; // type:function size:0x34 +fn_8059919C = .text:0x8059919C; // type:function size:0x44 +fn_805991E0 = .text:0x805991E0; // type:function size:0x4C +fn_8059922C = .text:0x8059922C; // type:function size:0x1F4 +fn_80599420 = .text:0x80599420; // type:function size:0xA8 +fn_805994C8 = .text:0x805994C8; // type:function size:0x28 +fn_805994F0 = .text:0x805994F0; // type:function size:0x74 +fn_80599564 = .text:0x80599564; // type:function size:0x60 +fn_805995C4 = .text:0x805995C4; // type:function size:0x80 +fn_80599644 = .text:0x80599644; // type:function size:0x118 +fn_8059975C = .text:0x8059975C; // type:function size:0x4 +fn_80599760 = .text:0x80599760; // type:function size:0x170 +fn_805998D0 = .text:0x805998D0; // type:function size:0x8 +fn_805998D8 = .text:0x805998D8; // type:function size:0xB8 +fn_80599990 = .text:0x80599990; // type:function size:0x5C +fn_805999EC = .text:0x805999EC; // type:function size:0x30 +fn_80599A1C = .text:0x80599A1C; // type:function size:0x5C +fn_80599A78 = .text:0x80599A78; // type:function size:0x68 +fn_80599AE0 = .text:0x80599AE0; // type:function size:0x80 +fn_80599B60 = .text:0x80599B60; // type:function size:0x4 +fn_80599B64 = .text:0x80599B64; // type:function size:0x50 +fn_80599BB4 = .text:0x80599BB4; // type:function size:0x68 +fn_80599C1C = .text:0x80599C1C; // type:function size:0x4C +fn_80599C68 = .text:0x80599C68; // type:function size:0x70 +fn_80599CD8 = .text:0x80599CD8; // type:function size:0x30 +fn_80599D08 = .text:0x80599D08; // type:function size:0x2C +fn_80599D34 = .text:0x80599D34; // type:function size:0x5C +fn_80599D90 = .text:0x80599D90; // type:function size:0x30 +fn_80599DC0 = .text:0x80599DC0; // type:function size:0x5C +fn_80599E1C = .text:0x80599E1C; // type:function size:0x74 +fn_80599E90 = .text:0x80599E90; // type:function size:0x4 +fn_80599E94 = .text:0x80599E94; // type:function size:0x60 +fn_80599EF4 = .text:0x80599EF4; // type:function size:0x4C +fn_80599F40 = .text:0x80599F40; // type:function size:0x70 +fn_80599FB0 = .text:0x80599FB0; // type:function size:0x30 +fn_80599FE0 = .text:0x80599FE0; // type:function size:0x2C +fn_8059A00C = .text:0x8059A00C; // type:function size:0x5C +fn_8059A068 = .text:0x8059A068; // type:function size:0x30 +fn_8059A098 = .text:0x8059A098; // type:function size:0x5C +fn_8059A0F4 = .text:0x8059A0F4; // type:function size:0x68 +fn_8059A15C = .text:0x8059A15C; // type:function size:0x4 +fn_8059A160 = .text:0x8059A160; // type:function size:0x50 +fn_8059A1B0 = .text:0x8059A1B0; // type:function size:0x4C +fn_8059A1FC = .text:0x8059A1FC; // type:function size:0x70 +fn_8059A26C = .text:0x8059A26C; // type:function size:0x30 +fn_8059A29C = .text:0x8059A29C; // type:function size:0x2C +fn_8059A2C8 = .text:0x8059A2C8; // type:function size:0x174 +fn_8059A43C = .text:0x8059A43C; // type:function size:0x60 +fn_8059A49C = .text:0x8059A49C; // type:function size:0x164 +fn_8059A600 = .text:0x8059A600; // type:function size:0x418 +fn_8059AA18 = .text:0x8059AA18; // type:function size:0xAC +fn_8059AAC4 = .text:0x8059AAC4; // type:function size:0x4 +fn_8059AAC8 = .text:0x8059AAC8; // type:function size:0x4 +fn_8059AACC = .text:0x8059AACC; // type:function size:0x34 +fn_8059AB00 = .text:0x8059AB00; // type:function size:0x4 +fn_8059AB04 = .text:0x8059AB04; // type:function size:0x8 +fn_8059AB0C = .text:0x8059AB0C; // type:function size:0xAC +fn_8059ABB8 = .text:0x8059ABB8; // type:function size:0x4 +fn_8059ABBC = .text:0x8059ABBC; // type:function size:0x4 +fn_8059ABC0 = .text:0x8059ABC0; // type:function size:0x34 +fn_8059ABF4 = .text:0x8059ABF4; // type:function size:0x44 +fn_8059AC38 = .text:0x8059AC38; // type:function size:0x4 +fn_8059AC3C = .text:0x8059AC3C; // type:function size:0x8 +fn_8059AC44 = .text:0x8059AC44; // type:function size:0xAC +fn_8059ACF0 = .text:0x8059ACF0; // type:function size:0x4 +fn_8059ACF4 = .text:0x8059ACF4; // type:function size:0x4 +fn_8059ACF8 = .text:0x8059ACF8; // type:function size:0x34 +fn_8059AD2C = .text:0x8059AD2C; // type:function size:0x44 +fn_8059AD70 = .text:0x8059AD70; // type:function size:0x40 +fn_8059ADB0 = .text:0x8059ADB0; // type:function size:0x104 +fn_8059AEB4 = .text:0x8059AEB4; // type:function size:0x4 +fn_8059AEB8 = .text:0x8059AEB8; // type:function size:0x8 +fn_8059AEC0 = .text:0x8059AEC0; // type:function size:0x40 +fn_8059AF00 = .text:0x8059AF00; // type:function size:0x104 +fn_8059B004 = .text:0x8059B004; // type:function size:0x11C +fn_8059B120 = .text:0x8059B120; // type:function size:0x8 +fn_8059B128 = .text:0x8059B128; // type:function size:0xFC +fn_8059B224 = .text:0x8059B224; // type:function size:0x84 +fn_8059B2A8 = .text:0x8059B2A8; // type:function size:0x2C +fn_8059B2D4 = .text:0x8059B2D4; // type:function size:0x30 +fn_8059B304 = .text:0x8059B304; // type:function size:0x50 +fn_8059B354 = .text:0x8059B354; // type:function size:0x4C +fn_8059B3A0 = .text:0x8059B3A0; // type:function size:0x78 +fn_8059B418 = .text:0x8059B418; // type:function size:0x70 +fn_8059B488 = .text:0x8059B488; // type:function size:0xCC +fn_8059B554 = .text:0x8059B554; // type:function size:0x410 +fn_8059B964 = .text:0x8059B964; // type:function size:0x40 +fn_8059B9A4 = .text:0x8059B9A4; // type:function size:0x28 +fn_8059B9CC = .text:0x8059B9CC; // type:function size:0x8 +fn_8059B9D4 = .text:0x8059B9D4; // type:function size:0x194 +fn_8059BB68 = .text:0x8059BB68; // type:function size:0x11C +fn_8059BC84 = .text:0x8059BC84; // type:function size:0xB8 +fn_8059BD3C = .text:0x8059BD3C; // type:function size:0x90 +fn_8059BDCC = .text:0x8059BDCC; // type:function size:0x88 +fn_8059BE54 = .text:0x8059BE54; // type:function size:0x88 +fn_8059BEDC = .text:0x8059BEDC; // type:function size:0x88 +fn_8059BF64 = .text:0x8059BF64; // type:function size:0x8C +fn_8059BFF0 = .text:0x8059BFF0; // type:function size:0x2B4 +fn_8059C2A4 = .text:0x8059C2A4; // type:function size:0xC4 +fn_8059C368 = .text:0x8059C368; // type:function size:0x6C +fn_8059C3D4 = .text:0x8059C3D4; // type:function size:0x8 +fn_8059C3DC = .text:0x8059C3DC; // type:function size:0x188 +fn_8059C564 = .text:0x8059C564; // type:function size:0x1B0 +fn_8059C714 = .text:0x8059C714; // type:function size:0xCC +fn_8059C7E0 = .text:0x8059C7E0; // type:function size:0xC0 +fn_8059C8A0 = .text:0x8059C8A0; // type:function size:0x1B0 +fn_8059CA50 = .text:0x8059CA50; // type:function size:0x1B0 +fn_8059CC00 = .text:0x8059CC00; // type:function size:0x454 +fn_8059D054 = .text:0x8059D054; // type:function size:0x1A8 +fn_8059D1FC = .text:0x8059D1FC; // type:function size:0x58 +fn_8059D254 = .text:0x8059D254; // type:function size:0x64 +fn_8059D2B8 = .text:0x8059D2B8; // type:function size:0x50 +fn_8059D308 = .text:0x8059D308; // type:function size:0x10 +fn_8059D318 = .text:0x8059D318; // type:function size:0x48 +fn_8059D360 = .text:0x8059D360; // type:function size:0x50 +fn_8059D3B0 = .text:0x8059D3B0; // type:function size:0x6C +fn_8059D41C = .text:0x8059D41C; // type:function size:0x2C +fn_8059D448 = .text:0x8059D448; // type:function size:0x8 +fn_8059D450 = .text:0x8059D450; // type:function size:0x5C +fn_8059D4AC = .text:0x8059D4AC; // type:function size:0x1A8 +fn_8059D654 = .text:0x8059D654; // type:function size:0x58 +fn_8059D6AC = .text:0x8059D6AC; // type:function size:0x64 +fn_8059D710 = .text:0x8059D710; // type:function size:0x50 +fn_8059D760 = .text:0x8059D760; // type:function size:0x10 +fn_8059D770 = .text:0x8059D770; // type:function size:0x54 +fn_8059D7C4 = .text:0x8059D7C4; // type:function size:0x50 +fn_8059D814 = .text:0x8059D814; // type:function size:0x6C +fn_8059D880 = .text:0x8059D880; // type:function size:0x2C +fn_8059D8AC = .text:0x8059D8AC; // type:function size:0x8 +fn_8059D8B4 = .text:0x8059D8B4; // type:function size:0x5C +fn_8059D910 = .text:0x8059D910; // type:function size:0x1A8 +fn_8059DAB8 = .text:0x8059DAB8; // type:function size:0x58 +fn_8059DB10 = .text:0x8059DB10; // type:function size:0x64 +fn_8059DB74 = .text:0x8059DB74; // type:function size:0x50 +fn_8059DBC4 = .text:0x8059DBC4; // type:function size:0x10 +fn_8059DBD4 = .text:0x8059DBD4; // type:function size:0x48 +fn_8059DC1C = .text:0x8059DC1C; // type:function size:0x68 +fn_8059DC84 = .text:0x8059DC84; // type:function size:0x6C +fn_8059DCF0 = .text:0x8059DCF0; // type:function size:0x50 +fn_8059DD40 = .text:0x8059DD40; // type:function size:0x6C +fn_8059DDAC = .text:0x8059DDAC; // type:function size:0x2C +fn_8059DDD8 = .text:0x8059DDD8; // type:function size:0x8 +fn_8059DDE0 = .text:0x8059DDE0; // type:function size:0x5C +fn_8059DE3C = .text:0x8059DE3C; // type:function size:0x1E8 +fn_8059E024 = .text:0x8059E024; // type:function size:0xBC +fn_8059E0E0 = .text:0x8059E0E0; // type:function size:0x44 +fn_8059E124 = .text:0x8059E124; // type:function size:0x110 +fn_8059E234 = .text:0x8059E234; // type:function size:0x60 +fn_8059E294 = .text:0x8059E294; // type:function size:0x6C +fn_8059E300 = .text:0x8059E300; // type:function size:0x68 +fn_8059E368 = .text:0x8059E368; // type:function size:0x68 +fn_8059E3D0 = .text:0x8059E3D0; // type:function size:0x68 +fn_8059E438 = .text:0x8059E438; // type:function size:0x194 +fn_8059E5CC = .text:0x8059E5CC; // type:function size:0x60 +fn_8059E62C = .text:0x8059E62C; // type:function size:0xA0 +fn_8059E6CC = .text:0x8059E6CC; // type:function size:0x6C +fn_8059E738 = .text:0x8059E738; // type:function size:0x74 +fn_8059E7AC = .text:0x8059E7AC; // type:function size:0x60 +fn_8059E80C = .text:0x8059E80C; // type:function size:0x90 +fn_8059E89C = .text:0x8059E89C; // type:function size:0x8C +fn_8059E928 = .text:0x8059E928; // type:function size:0x48 +fn_8059E970 = .text:0x8059E970; // type:function size:0x8 +fn_8059E978 = .text:0x8059E978; // type:function size:0x40 +fn_8059E9B8 = .text:0x8059E9B8; // type:function size:0xE4 +fn_8059EA9C = .text:0x8059EA9C; // type:function size:0x54 +fn_8059EAF0 = .text:0x8059EAF0; // type:function size:0x6C +fn_8059EB5C = .text:0x8059EB5C; // type:function size:0x194 +fn_8059ECF0 = .text:0x8059ECF0; // type:function size:0x60 +fn_8059ED50 = .text:0x8059ED50; // type:function size:0xA0 +fn_8059EDF0 = .text:0x8059EDF0; // type:function size:0x6C +fn_8059EE5C = .text:0x8059EE5C; // type:function size:0x74 +fn_8059EED0 = .text:0x8059EED0; // type:function size:0x60 +fn_8059EF30 = .text:0x8059EF30; // type:function size:0x90 +fn_8059EFC0 = .text:0x8059EFC0; // type:function size:0x8C +fn_8059F04C = .text:0x8059F04C; // type:function size:0x48 +fn_8059F094 = .text:0x8059F094; // type:function size:0x40 +fn_8059F0D4 = .text:0x8059F0D4; // type:function size:0xE4 +fn_8059F1B8 = .text:0x8059F1B8; // type:function size:0x54 +fn_8059F20C = .text:0x8059F20C; // type:function size:0x6C +fn_8059F278 = .text:0x8059F278; // type:function size:0x194 +fn_8059F40C = .text:0x8059F40C; // type:function size:0x60 +fn_8059F46C = .text:0x8059F46C; // type:function size:0xA0 +fn_8059F50C = .text:0x8059F50C; // type:function size:0x6C +fn_8059F578 = .text:0x8059F578; // type:function size:0x74 +fn_8059F5EC = .text:0x8059F5EC; // type:function size:0x60 +fn_8059F64C = .text:0x8059F64C; // type:function size:0x90 +fn_8059F6DC = .text:0x8059F6DC; // type:function size:0x8C +fn_8059F768 = .text:0x8059F768; // type:function size:0x54 +fn_8059F7BC = .text:0x8059F7BC; // type:function size:0x40 +fn_8059F7FC = .text:0x8059F7FC; // type:function size:0xE4 +fn_8059F8E0 = .text:0x8059F8E0; // type:function size:0x54 +fn_8059F934 = .text:0x8059F934; // type:function size:0x6C +fn_8059F9A0 = .text:0x8059F9A0; // type:function size:0x134 +fn_8059FAD4 = .text:0x8059FAD4; // type:function size:0x4 +fn_8059FAD8 = .text:0x8059FAD8; // type:function size:0x60 +fn_8059FB38 = .text:0x8059FB38; // type:function size:0x8 +fn_8059FB40 = .text:0x8059FB40; // type:function size:0x8 +fn_8059FB48 = .text:0x8059FB48; // type:function size:0x8 +fn_8059FB50 = .text:0x8059FB50; // type:function size:0x8 +fn_8059FB58 = .text:0x8059FB58; // type:function size:0x8 +fn_8059FB60 = .text:0x8059FB60; // type:function size:0x8 +fn_8059FB68 = .text:0x8059FB68; // type:function size:0x8 +fn_8059FB70 = .text:0x8059FB70; // type:function size:0x8 +fn_8059FB78 = .text:0x8059FB78; // type:function size:0x8 +fn_8059FB80 = .text:0x8059FB80; // type:function size:0x8 +fn_8059FB88 = .text:0x8059FB88; // type:function size:0x8 +fn_8059FB90 = .text:0x8059FB90; // type:function size:0x8 +fn_8059FB98 = .text:0x8059FB98; // type:function size:0x8 +fn_8059FBA0 = .text:0x8059FBA0; // type:function size:0x8 +fn_8059FBA8 = .text:0x8059FBA8; // type:function size:0x8 +fn_8059FBB0 = .text:0x8059FBB0; // type:function size:0x8 +fn_8059FBB8 = .text:0x8059FBB8; // type:function size:0x14 +fn_8059FBCC = .text:0x8059FBCC; // type:function size:0x14 +fn_8059FBE0 = .text:0x8059FBE0; // type:function size:0x8 +fn_8059FBE8 = .text:0x8059FBE8; // type:function size:0x8 +fn_8059FBF0 = .text:0x8059FBF0; // type:function size:0x8 +fn_8059FBF8 = .text:0x8059FBF8; // type:function size:0x8 +fn_8059FC00 = .text:0x8059FC00; // type:function size:0x8 +fn_8059FC08 = .text:0x8059FC08; // type:function size:0x8 +fn_8059FC10 = .text:0x8059FC10; // type:function size:0x8 +fn_8059FC18 = .text:0x8059FC18; // type:function size:0x8 +fn_8059FC20 = .text:0x8059FC20; // type:function size:0x8 +fn_8059FC28 = .text:0x8059FC28; // type:function size:0x8 +fn_8059FC30 = .text:0x8059FC30; // type:function size:0x8 +fn_8059FC38 = .text:0x8059FC38; // type:function size:0x8 +fn_8059FC40 = .text:0x8059FC40; // type:function size:0x8 +fn_8059FC48 = .text:0x8059FC48; // type:function size:0x14 +fn_8059FC5C = .text:0x8059FC5C; // type:function size:0x14 +fn_8059FC70 = .text:0x8059FC70; // type:function size:0x14 +fn_8059FC84 = .text:0x8059FC84; // type:function size:0x14 +fn_8059FC98 = .text:0x8059FC98; // type:function size:0x14 +fn_8059FCAC = .text:0x8059FCAC; // type:function size:0x14 +fn_8059FCC0 = .text:0x8059FCC0; // type:function size:0x14 +fn_8059FCD4 = .text:0x8059FCD4; // type:function size:0x14 +fn_8059FCE8 = .text:0x8059FCE8; // type:function size:0x14 +fn_8059FCFC = .text:0x8059FCFC; // type:function size:0x14 +fn_8059FD10 = .text:0x8059FD10; // type:function size:0x14 +fn_8059FD24 = .text:0x8059FD24; // type:function size:0x14 +fn_8059FD38 = .text:0x8059FD38; // type:function size:0x14 +fn_8059FD4C = .text:0x8059FD4C; // type:function size:0x14 +fn_8059FD60 = .text:0x8059FD60; // type:function size:0x14 +fn_8059FD74 = .text:0x8059FD74; // type:function size:0x8 +fn_8059FD7C = .text:0x8059FD7C; // type:function size:0x8 +fn_8059FD84 = .text:0x8059FD84; // type:function size:0x8 +fn_8059FD8C = .text:0x8059FD8C; // type:function size:0x8 +fn_8059FD94 = .text:0x8059FD94; // type:function size:0x8 +fn_8059FD9C = .text:0x8059FD9C; // type:function size:0xA0 +fn_8059FE3C = .text:0x8059FE3C; // type:function size:0x58 +fn_8059FE94 = .text:0x8059FE94; // type:function size:0x88 +fn_8059FF1C = .text:0x8059FF1C; // type:function size:0xC +fn_8059FF28 = .text:0x8059FF28; // type:function size:0x10 +fn_8059FF38 = .text:0x8059FF38; // type:function size:0x558 +fn_805A0490 = .text:0x805A0490; // type:function size:0x44 +Handle__10FreeCameraFP9DataArrayb = .text:0x805A04D4; // type:function size:0x260 +fn_805A0734 = .text:0x805A0734; // type:function size:0xE0 +fn_805A0814 = .text:0x805A0814; // type:function size:0x90 +fn_805A08A4 = .text:0x805A08A4; // type:function size:0x1D4 +fn_805A0A78 = .text:0x805A0A78; // type:function size:0x58 +fn_805A0AD0 = .text:0x805A0AD0; // type:function size:0x80 +fn_805A0B50 = .text:0x805A0B50; // type:function size:0x80 +fn_805A0BD0 = .text:0x805A0BD0; // type:function size:0x58 +fn_805A0C28 = .text:0x805A0C28; // type:function size:0x54 +fn_805A0C7C = .text:0x805A0C7C; // type:function size:0x5C +fn_805A0CD8 = .text:0x805A0CD8; // type:function size:0x6C +fn_805A0D44 = .text:0x805A0D44; // type:function size:0x28 +fn_805A0D6C = .text:0x805A0D6C; // type:function size:0x8 +fn_805A0D74 = .text:0x805A0D74; // type:function size:0x3C +fn_805A0DB0 = .text:0x805A0DB0; // type:function size:0x58 +fn_805A0E08 = .text:0x805A0E08; // type:function size:0x80 +fn_805A0E88 = .text:0x805A0E88; // type:function size:0x80 +fn_805A0F08 = .text:0x805A0F08; // type:function size:0x58 +fn_805A0F60 = .text:0x805A0F60; // type:function size:0x54 +fn_805A0FB4 = .text:0x805A0FB4; // type:function size:0x5C +fn_805A1010 = .text:0x805A1010; // type:function size:0x6C +fn_805A107C = .text:0x805A107C; // type:function size:0x28 +fn_805A10A4 = .text:0x805A10A4; // type:function size:0x8 +fn_805A10AC = .text:0x805A10AC; // type:function size:0x3C +fn_805A10E8 = .text:0x805A10E8; // type:function size:0x58 +fn_805A1140 = .text:0x805A1140; // type:function size:0x80 +fn_805A11C0 = .text:0x805A11C0; // type:function size:0x80 +fn_805A1240 = .text:0x805A1240; // type:function size:0x58 +fn_805A1298 = .text:0x805A1298; // type:function size:0x54 +fn_805A12EC = .text:0x805A12EC; // type:function size:0x5C +fn_805A1348 = .text:0x805A1348; // type:function size:0x6C +fn_805A13B4 = .text:0x805A13B4; // type:function size:0x28 +fn_805A13DC = .text:0x805A13DC; // type:function size:0x8 +fn_805A13E4 = .text:0x805A13E4; // type:function size:0x3C +fn_805A1420 = .text:0x805A1420; // type:function size:0x58 +fn_805A1478 = .text:0x805A1478; // type:function size:0x58 +fn_805A14D0 = .text:0x805A14D0; // type:function size:0x80 +fn_805A1550 = .text:0x805A1550; // type:function size:0x80 +fn_805A15D0 = .text:0x805A15D0; // type:function size:0x58 +fn_805A1628 = .text:0x805A1628; // type:function size:0x54 +fn_805A167C = .text:0x805A167C; // type:function size:0x5C +fn_805A16D8 = .text:0x805A16D8; // type:function size:0x6C +fn_805A1744 = .text:0x805A1744; // type:function size:0x28 +fn_805A176C = .text:0x805A176C; // type:function size:0x8 +fn_805A1774 = .text:0x805A1774; // type:function size:0x3C +fn_805A17B0 = .text:0x805A17B0; // type:function size:0x58 +fn_805A1808 = .text:0x805A1808; // type:function size:0x58 +fn_805A1860 = .text:0x805A1860; // type:function size:0x80 +fn_805A18E0 = .text:0x805A18E0; // type:function size:0x80 +fn_805A1960 = .text:0x805A1960; // type:function size:0x58 +fn_805A19B8 = .text:0x805A19B8; // type:function size:0x54 +fn_805A1A0C = .text:0x805A1A0C; // type:function size:0x5C +fn_805A1A68 = .text:0x805A1A68; // type:function size:0x6C +fn_805A1AD4 = .text:0x805A1AD4; // type:function size:0x28 +fn_805A1AFC = .text:0x805A1AFC; // type:function size:0x8 +fn_805A1B04 = .text:0x805A1B04; // type:function size:0xC8 +fn_805A1BCC = .text:0x805A1BCC; // type:function size:0x8 +fn_805A1BD4 = .text:0x805A1BD4; // type:function size:0x3C +fn_805A1C10 = .text:0x805A1C10; // type:function size:0x30 +fn_805A1C40 = .text:0x805A1C40; // type:function size:0x30 +fn_805A1C70 = .text:0x805A1C70; // type:function size:0x40 +fn_805A1CB0 = .text:0x805A1CB0; // type:function size:0x30 +fn_805A1CE0 = .text:0x805A1CE0; // type:function size:0x30 +fn_805A1D10 = .text:0x805A1D10; // type:function size:0x40 +fn_805A1D50 = .text:0x805A1D50; // type:function size:0x30 +fn_805A1D80 = .text:0x805A1D80; // type:function size:0x30 +fn_805A1DB0 = .text:0x805A1DB0; // type:function size:0x40 +fn_805A1DF0 = .text:0x805A1DF0; // type:function size:0x50 +fn_805A1E40 = .text:0x805A1E40; // type:function size:0x30 +fn_805A1E70 = .text:0x805A1E70; // type:function size:0x30 +fn_805A1EA0 = .text:0x805A1EA0; // type:function size:0x40 +fn_805A1EE0 = .text:0x805A1EE0; // type:function size:0x50 +fn_805A1F30 = .text:0x805A1F30; // type:function size:0x30 +fn_805A1F60 = .text:0x805A1F60; // type:function size:0x30 +fn_805A1F90 = .text:0x805A1F90; // type:function size:0x40 +fn_805A1FD0 = .text:0x805A1FD0; // type:function size:0x28 +fn_805A1FF8 = .text:0x805A1FF8; // type:function size:0x114 +fn_805A210C = .text:0x805A210C; // type:function size:0x10 +fn_805A211C = .text:0x805A211C; // type:function size:0x178 +fn_805A2294 = .text:0x805A2294; // type:function size:0x4 +fn_805A2298 = .text:0x805A2298; // type:function size:0x3C +fn_805A22D4 = .text:0x805A22D4; // type:function size:0x40 +fn_805A2314 = .text:0x805A2314; // type:function size:0x8C +fn_805A23A0 = .text:0x805A23A0; // type:function size:0x8 +fn_805A23A8 = .text:0x805A23A8; // type:function size:0x2C +fn_805A23D4 = .text:0x805A23D4; // type:function size:0x58 +fn_805A242C = .text:0x805A242C; // type:function size:0x28 +fn_805A2454 = .text:0x805A2454; // type:function size:0x68 +fn_805A24BC = .text:0x805A24BC; // type:function size:0xC0 +fn_805A257C = .text:0x805A257C; // type:function size:0x30 +fn_805A25AC = .text:0x805A25AC; // type:function size:0x30 +fn_805A25DC = .text:0x805A25DC; // type:function size:0x30 +fn_805A260C = .text:0x805A260C; // type:function size:0x30 +fn_805A263C = .text:0x805A263C; // type:function size:0x5C +fn_805A2698 = .text:0x805A2698; // type:function size:0x30 +fn_805A26C8 = .text:0x805A26C8; // type:function size:0x50 +fn_805A2718 = .text:0x805A2718; // type:function size:0x4 +fn_805A271C = .text:0x805A271C; // type:function size:0x90 +fn_805A27AC = .text:0x805A27AC; // type:function size:0x4 +fn_805A27B0 = .text:0x805A27B0; // type:function size:0x40 +fn_805A27F0 = .text:0x805A27F0; // type:function size:0x8C +fn_805A287C = .text:0x805A287C; // type:function size:0x8 +fn_805A2884 = .text:0x805A2884; // type:function size:0x2C +fn_805A28B0 = .text:0x805A28B0; // type:function size:0x58 +fn_805A2908 = .text:0x805A2908; // type:function size:0x28 +fn_805A2930 = .text:0x805A2930; // type:function size:0x68 +fn_805A2998 = .text:0x805A2998; // type:function size:0x44 +fn_805A29DC = .text:0x805A29DC; // type:function size:0x2A4 +fn_805A2C80 = .text:0x805A2C80; // type:function size:0x4 +fn_805A2C84 = .text:0x805A2C84; // type:function size:0x90 +fn_805A2D14 = .text:0x805A2D14; // type:function size:0x4 +fn_805A2D18 = .text:0x805A2D18; // type:function size:0x40 +fn_805A2D58 = .text:0x805A2D58; // type:function size:0x8C +fn_805A2DE4 = .text:0x805A2DE4; // type:function size:0x8 +fn_805A2DEC = .text:0x805A2DEC; // type:function size:0x2C +fn_805A2E18 = .text:0x805A2E18; // type:function size:0x58 +fn_805A2E70 = .text:0x805A2E70; // type:function size:0x28 +fn_805A2E98 = .text:0x805A2E98; // type:function size:0x68 +fn_805A2F00 = .text:0x805A2F00; // type:function size:0x54 +fn_805A2F54 = .text:0x805A2F54; // type:function size:0x4 +fn_805A2F58 = .text:0x805A2F58; // type:function size:0x90 +fn_805A2FE8 = .text:0x805A2FE8; // type:function size:0x4 +fn_805A2FEC = .text:0x805A2FEC; // type:function size:0x40 +fn_805A302C = .text:0x805A302C; // type:function size:0x8C +fn_805A30B8 = .text:0x805A30B8; // type:function size:0x8 +fn_805A30C0 = .text:0x805A30C0; // type:function size:0x2C +fn_805A30EC = .text:0x805A30EC; // type:function size:0x58 +fn_805A3144 = .text:0x805A3144; // type:function size:0x28 +fn_805A316C = .text:0x805A316C; // type:function size:0x68 +fn_805A31D4 = .text:0x805A31D4; // type:function size:0x2C +fn_805A3200 = .text:0x805A3200; // type:function size:0x5C +fn_805A325C = .text:0x805A325C; // type:function size:0x30 +fn_805A328C = .text:0x805A328C; // type:function size:0x5C +fn_805A32E8 = .text:0x805A32E8; // type:function size:0x4 +fn_805A32EC = .text:0x805A32EC; // type:function size:0x90 +fn_805A337C = .text:0x805A337C; // type:function size:0x4 +fn_805A3380 = .text:0x805A3380; // type:function size:0x4 +fn_805A3384 = .text:0x805A3384; // type:function size:0x8C8 +fn_805A3C4C = .text:0x805A3C4C; // type:function size:0x74 +fn_805A3CC0 = .text:0x805A3CC0; // type:function size:0x48 +fn_805A3D08 = .text:0x805A3D08; // type:function size:0x34 +fn_805A3D3C = .text:0x805A3D3C; // type:function size:0x8 +fn_805A3D44 = .text:0x805A3D44; // type:function size:0x28 +fn_805A3D6C = .text:0x805A3D6C; // type:function size:0x4 +fn_805A3D70 = .text:0x805A3D70; // type:function size:0x90 +fn_805A3E00 = .text:0x805A3E00; // type:function size:0x4 +fn_805A3E04 = .text:0x805A3E04; // type:function size:0x40 +fn_805A3E44 = .text:0x805A3E44; // type:function size:0x8C +fn_805A3ED0 = .text:0x805A3ED0; // type:function size:0x8 +fn_805A3ED8 = .text:0x805A3ED8; // type:function size:0x2C +fn_805A3F04 = .text:0x805A3F04; // type:function size:0x58 +fn_805A3F5C = .text:0x805A3F5C; // type:function size:0x28 +fn_805A3F84 = .text:0x805A3F84; // type:function size:0x68 +fn_805A3FEC = .text:0x805A3FEC; // type:function size:0xA0 +fn_805A408C = .text:0x805A408C; // type:function size:0x38 +fn_805A40C4 = .text:0x805A40C4; // type:function size:0xA0 +fn_805A4164 = .text:0x805A4164; // type:function size:0xA0 +fn_805A4204 = .text:0x805A4204; // type:function size:0xC +fn_805A4210 = .text:0x805A4210; // type:function size:0x74 +fn_805A4284 = .text:0x805A4284; // type:function size:0x5C +fn_805A42E0 = .text:0x805A42E0; // type:function size:0x360 +fn_805A4640 = .text:0x805A4640; // type:function size:0xE0 +fn_805A4720 = .text:0x805A4720; // type:function size:0x2C +fn_805A474C = .text:0x805A474C; // type:function size:0x84 +fn_805A47D0 = .text:0x805A47D0; // type:function size:0x2C +fn_805A47FC = .text:0x805A47FC; // type:function size:0xD8 +fn_805A48D4 = .text:0x805A48D4; // type:function size:0x2C +fn_805A4900 = .text:0x805A4900; // type:function size:0x84 +fn_805A4984 = .text:0x805A4984; // type:function size:0x2C +fn_805A49B0 = .text:0x805A49B0; // type:function size:0xE0 +fn_805A4A90 = .text:0x805A4A90; // type:function size:0x2C +fn_805A4ABC = .text:0x805A4ABC; // type:function size:0x84 +fn_805A4B40 = .text:0x805A4B40; // type:function size:0x2C +fn_805A4B6C = .text:0x805A4B6C; // type:function size:0xE0 +fn_805A4C4C = .text:0x805A4C4C; // type:function size:0x2C +fn_805A4C78 = .text:0x805A4C78; // type:function size:0x84 +fn_805A4CFC = .text:0x805A4CFC; // type:function size:0x2C +fn_805A4D28 = .text:0x805A4D28; // type:function size:0x104 +fn_805A4E2C = .text:0x805A4E2C; // type:function size:0x8 +fn_805A4E34 = .text:0x805A4E34; // type:function size:0x37C +fn_805A51B0 = .text:0x805A51B0; // type:function size:0xC +fn_805A51BC = .text:0x805A51BC; // type:function size:0x4 +fn_805A51C0 = .text:0x805A51C0; // type:function size:0x38 +fn_805A51F8 = .text:0x805A51F8; // type:function size:0x2C +fn_805A5224 = .text:0x805A5224; // type:function size:0x5C +fn_805A5280 = .text:0x805A5280; // type:function size:0x4 +fn_805A5284 = .text:0x805A5284; // type:function size:0x58 +fn_805A52DC = .text:0x805A52DC; // type:function size:0x10 +fn_805A52EC = .text:0x805A52EC; // type:function size:0x30 +fn_805A531C = .text:0x805A531C; // type:function size:0x94 +fn_805A53B0 = .text:0x805A53B0; // type:function size:0x6C +fn_805A541C = .text:0x805A541C; // type:function size:0x300 +fn_805A571C = .text:0x805A571C; // type:function size:0x24 +fn_805A5740 = .text:0x805A5740; // type:function size:0x60 +fn_805A57A0 = .text:0x805A57A0; // type:function size:0x1E4 +fn_805A5984 = .text:0x805A5984; // type:function size:0x258 +fn_805A5BDC = .text:0x805A5BDC; // type:function size:0x168 +fn_805A5D44 = .text:0x805A5D44; // type:function size:0xB4 +fn_805A5DF8 = .text:0x805A5DF8; // type:function size:0x24 +fn_805A5E1C = .text:0x805A5E1C; // type:function size:0x50 +fn_805A5E6C = .text:0x805A5E6C; // type:function size:0xD0 +fn_805A5F3C = .text:0x805A5F3C; // type:function size:0x78 +fn_805A5FB4 = .text:0x805A5FB4; // type:function size:0x2F0 +fn_805A62A4 = .text:0x805A62A4; // type:function size:0x24 +fn_805A62C8 = .text:0x805A62C8; // type:function size:0x24 +fn_805A62EC = .text:0x805A62EC; // type:function size:0x24 +fn_805A6310 = .text:0x805A6310; // type:function size:0x50 +fn_805A6360 = .text:0x805A6360; // type:function size:0xD0 +fn_805A6430 = .text:0x805A6430; // type:function size:0x78 +fn_805A64A8 = .text:0x805A64A8; // type:function size:0x50 +fn_805A64F8 = .text:0x805A64F8; // type:function size:0xD0 +fn_805A65C8 = .text:0x805A65C8; // type:function size:0x2C +fn_805A65F4 = .text:0x805A65F4; // type:function size:0x30 +fn_805A6624 = .text:0x805A6624; // type:function size:0x78 +fn_805A669C = .text:0x805A669C; // type:function size:0x100 +fn_805A679C = .text:0x805A679C; // type:function size:0x48 +fn_805A67E4 = .text:0x805A67E4; // type:function size:0x24 +fn_805A6808 = .text:0x805A6808; // type:function size:0x3C +fn_805A6844 = .text:0x805A6844; // type:function size:0xCC +fn_805A6910 = .text:0x805A6910; // type:function size:0x4 +fn_805A6914 = .text:0x805A6914; // type:function size:0x88 +fn_805A699C = .text:0x805A699C; // type:function size:0x2C +fn_805A69C8 = .text:0x805A69C8; // type:function size:0x10 +fn_805A69D8 = .text:0x805A69D8; // type:function size:0xD4 +fn_805A6AAC = .text:0x805A6AAC; // type:function size:0x4 +fn_805A6AB0 = .text:0x805A6AB0; // type:function size:0x88 +fn_805A6B38 = .text:0x805A6B38; // type:function size:0x2C +fn_805A6B64 = .text:0x805A6B64; // type:function size:0x10 +fn_805A6B74 = .text:0x805A6B74; // type:function size:0x60 +fn_805A6BD4 = .text:0x805A6BD4; // type:function size:0xD4 +fn_805A6CA8 = .text:0x805A6CA8; // type:function size:0x4 +fn_805A6CAC = .text:0x805A6CAC; // type:function size:0x88 +fn_805A6D34 = .text:0x805A6D34; // type:function size:0x2C +fn_805A6D60 = .text:0x805A6D60; // type:function size:0x10 +fn_805A6D70 = .text:0x805A6D70; // type:function size:0x2AC +fn_805A701C = .text:0x805A701C; // type:function size:0x18 +fn_805A7034 = .text:0x805A7034; // type:function size:0xDC +fn_805A7110 = .text:0x805A7110; // type:function size:0x8 +fn_805A7118 = .text:0x805A7118; // type:function size:0x8 +fn_805A7120 = .text:0x805A7120; // type:function size:0x1D8 +fn_805A72F8 = .text:0x805A72F8; // type:function size:0x8 +fn_805A7300 = .text:0x805A7300; // type:function size:0x8 +fn_805A7308 = .text:0x805A7308; // type:function size:0x8 +fn_805A7310 = .text:0x805A7310; // type:function size:0x50 +fn_805A7360 = .text:0x805A7360; // type:function size:0x24 +fn_805A7384 = .text:0x805A7384; // type:function size:0x8 +fn_805A738C = .text:0x805A738C; // type:function size:0x8 +fn_805A7394 = .text:0x805A7394; // type:function size:0x8 +Interp__FRCQ23Hmx5ColorRCQ23Hmx5ColorfRQ23Hmx5Color = .text:0x805A739C; // type:function size:0xDC +fn_805A7478 = .text:0x805A7478; // type:function size:0x8 +fn_805A7480 = .text:0x805A7480; // type:function size:0x94 +fn_805A7514 = .text:0x805A7514; // type:function size:0x28 +fn_805A753C = .text:0x805A753C; // type:function size:0x15C +fn_805A7698 = .text:0x805A7698; // type:function size:0x8 +fn_805A76A0 = .text:0x805A76A0; // type:function size:0x8 +fn_805A76A8 = .text:0x805A76A8; // type:function size:0x8 +fn_805A76B0 = .text:0x805A76B0; // type:function size:0x3C +fn_805A76EC = .text:0x805A76EC; // type:function size:0x8 +fn_805A76F4 = .text:0x805A76F4; // type:function size:0x78 +fn_805A776C = .text:0x805A776C; // type:function size:0x28 +fn_805A7794 = .text:0x805A7794; // type:function size:0x28 +fn_805A77BC = .text:0x805A77BC; // type:function size:0x28 +fn_805A77E4 = .text:0x805A77E4; // type:function size:0x28 +fn_805A780C = .text:0x805A780C; // type:function size:0x1AC +fn_805A79B8 = .text:0x805A79B8; // type:function size:0x34 +fn_805A79EC = .text:0x805A79EC; // type:function size:0x58 +fn_805A7A44 = .text:0x805A7A44; // type:function size:0x3C +fn_805A7A80 = .text:0x805A7A80; // type:function size:0x24 +fn_805A7AA4 = .text:0x805A7AA4; // type:function size:0xB8 +fn_805A7B5C = .text:0x805A7B5C; // type:function size:0xD0 +fn_805A7C2C = .text:0x805A7C2C; // type:function size:0xA4 +fn_805A7CD0 = .text:0x805A7CD0; // type:function size:0x4 +fn_805A7CD4 = .text:0x805A7CD4; // type:function size:0x74 +fn_805A7D48 = .text:0x805A7D48; // type:function size:0x1DC +fn_805A7F24 = .text:0x805A7F24; // type:function size:0x4C +fn_805A7F70 = .text:0x805A7F70; // type:function size:0x90 +fn_805A8000 = .text:0x805A8000; // type:function size:0x74 +fn_805A8074 = .text:0x805A8074; // type:function size:0x38 +fn_805A80AC = .text:0x805A80AC; // type:function size:0x80 +fn_805A812C = .text:0x805A812C; // type:function size:0x38 +fn_805A8164 = .text:0x805A8164; // type:function size:0x80 +fn_805A81E4 = .text:0x805A81E4; // type:function size:0x38 +fn_805A821C = .text:0x805A821C; // type:function size:0x80 +fn_805A829C = .text:0x805A829C; // type:function size:0x38 +fn_805A82D4 = .text:0x805A82D4; // type:function size:0xFC +fn_805A83D0 = .text:0x805A83D0; // type:function size:0x40 +fn_805A8410 = .text:0x805A8410; // type:function size:0x104 +fn_805A8514 = .text:0x805A8514; // type:function size:0x54 +fn_805A8568 = .text:0x805A8568; // type:function size:0x17C +fn_805A86E4 = .text:0x805A86E4; // type:function size:0x8C +fn_805A8770 = .text:0x805A8770; // type:function size:0xF8 +fn_805A8868 = .text:0x805A8868; // type:function size:0x88 +fn_805A88F0 = .text:0x805A88F0; // type:function size:0x24 +fn_805A8914 = .text:0x805A8914; // type:function size:0x90 +fn_805A89A4 = .text:0x805A89A4; // type:function size:0x14C +fn_805A8AF0 = .text:0x805A8AF0; // type:function size:0x78 +fn_805A8B68 = .text:0x805A8B68; // type:function size:0x58 +fn_805A8BC0 = .text:0x805A8BC0; // type:function size:0x84 +fn_805A8C44 = .text:0x805A8C44; // type:function size:0xB0 +fn_805A8CF4 = .text:0x805A8CF4; // type:function size:0xA8 +fn_805A8D9C = .text:0x805A8D9C; // type:function size:0x1C +fn_805A8DB8 = .text:0x805A8DB8; // type:function size:0x80 +fn_805A8E38 = .text:0x805A8E38; // type:function size:0x98 +fn_805A8ED0 = .text:0x805A8ED0; // type:function size:0x64 +fn_805A8F34 = .text:0x805A8F34; // type:function size:0x54 +fn_805A8F88 = .text:0x805A8F88; // type:function size:0x94 +fn_805A901C = .text:0x805A901C; // type:function size:0x94 +fn_805A90B0 = .text:0x805A90B0; // type:function size:0x8C +fn_805A913C = .text:0x805A913C; // type:function size:0x94 +fn_805A91D0 = .text:0x805A91D0; // type:function size:0x240 +fn_805A9410 = .text:0x805A9410; // type:function size:0x264 +fn_805A9674 = .text:0x805A9674; // type:function size:0x2C0 +fn_805A9934 = .text:0x805A9934; // type:function size:0x244 +fn_805A9B78 = .text:0x805A9B78; // type:function size:0x218 +fn_805A9D90 = .text:0x805A9D90; // type:function size:0x158 +fn_805A9EE8 = .text:0x805A9EE8; // type:function size:0x14C +fn_805AA034 = .text:0x805AA034; // type:function size:0x14C +fn_805AA180 = .text:0x805AA180; // type:function size:0x14C +fn_805AA2CC = .text:0x805AA2CC; // type:function size:0x28C +fn_805AA558 = .text:0x805AA558; // type:function size:0x170 +fn_805AA6C8 = .text:0x805AA6C8; // type:function size:0x2C +fn_805AA6F4 = .text:0x805AA6F4; // type:function size:0x84 +fn_805AA778 = .text:0x805AA778; // type:function size:0x2C +fn_805AA7A4 = .text:0x805AA7A4; // type:function size:0xB0 +fn_805AA854 = .text:0x805AA854; // type:function size:0x2A4 +fn_805AAAF8 = .text:0x805AAAF8; // type:function size:0x68 +fn_805AAB60 = .text:0x805AAB60; // type:function size:0x2C +fn_805AAB8C = .text:0x805AAB8C; // type:function size:0x58 +fn_805AABE4 = .text:0x805AABE4; // type:function size:0x160 +fn_805AAD44 = .text:0x805AAD44; // type:function size:0x5C +fn_805AADA0 = .text:0x805AADA0; // type:function size:0x10 +fn_805AADB0 = .text:0x805AADB0; // type:function size:0x58 +fn_805AAE08 = .text:0x805AAE08; // type:function size:0x28 +fn_805AAE30 = .text:0x805AAE30; // type:function size:0x5C +fn_805AAE8C = .text:0x805AAE8C; // type:function size:0x60 +fn_805AAEEC = .text:0x805AAEEC; // type:function size:0x68 +fn_805AAF54 = .text:0x805AAF54; // type:function size:0x58 +fn_805AAFAC = .text:0x805AAFAC; // type:function size:0x160 +fn_805AB10C = .text:0x805AB10C; // type:function size:0x5C +fn_805AB168 = .text:0x805AB168; // type:function size:0x28 +fn_805AB190 = .text:0x805AB190; // type:function size:0x5C +fn_805AB1EC = .text:0x805AB1EC; // type:function size:0x60 +fn_805AB24C = .text:0x805AB24C; // type:function size:0x114 +fn_805AB360 = .text:0x805AB360; // type:function size:0x5C +fn_805AB3BC = .text:0x805AB3BC; // type:function size:0x5C +fn_805AB418 = .text:0x805AB418; // type:function size:0x54 +fn_805AB46C = .text:0x805AB46C; // type:function size:0x5C +fn_805AB4C8 = .text:0x805AB4C8; // type:function size:0x68 +fn_805AB530 = .text:0x805AB530; // type:function size:0x58 +fn_805AB588 = .text:0x805AB588; // type:function size:0x160 +fn_805AB6E8 = .text:0x805AB6E8; // type:function size:0x5C +fn_805AB744 = .text:0x805AB744; // type:function size:0x28 +fn_805AB76C = .text:0x805AB76C; // type:function size:0x5C +fn_805AB7C8 = .text:0x805AB7C8; // type:function size:0x60 +fn_805AB828 = .text:0x805AB828; // type:function size:0x114 +fn_805AB93C = .text:0x805AB93C; // type:function size:0x5C +fn_805AB998 = .text:0x805AB998; // type:function size:0x5C +fn_805AB9F4 = .text:0x805AB9F4; // type:function size:0x54 +fn_805ABA48 = .text:0x805ABA48; // type:function size:0x5C +fn_805ABAA4 = .text:0x805ABAA4; // type:function size:0x68 +fn_805ABB0C = .text:0x805ABB0C; // type:function size:0x58 +fn_805ABB64 = .text:0x805ABB64; // type:function size:0x160 +fn_805ABCC4 = .text:0x805ABCC4; // type:function size:0x5C +fn_805ABD20 = .text:0x805ABD20; // type:function size:0x28 +fn_805ABD48 = .text:0x805ABD48; // type:function size:0x5C +fn_805ABDA4 = .text:0x805ABDA4; // type:function size:0x60 +fn_805ABE04 = .text:0x805ABE04; // type:function size:0x114 +fn_805ABF18 = .text:0x805ABF18; // type:function size:0x60 +fn_805ABF78 = .text:0x805ABF78; // type:function size:0x5C +fn_805ABFD4 = .text:0x805ABFD4; // type:function size:0x54 +fn_805AC028 = .text:0x805AC028; // type:function size:0x5C +fn_805AC084 = .text:0x805AC084; // type:function size:0x14C +fn_805AC1D0 = .text:0x805AC1D0; // type:function size:0x58 +fn_805AC228 = .text:0x805AC228; // type:function size:0x60 +fn_805AC288 = .text:0x805AC288; // type:function size:0x68 +fn_805AC2F0 = .text:0x805AC2F0; // type:function size:0x2C +fn_805AC31C = .text:0x805AC31C; // type:function size:0x58 +fn_805AC374 = .text:0x805AC374; // type:function size:0x160 +fn_805AC4D4 = .text:0x805AC4D4; // type:function size:0x5C +fn_805AC530 = .text:0x805AC530; // type:function size:0x10 +fn_805AC540 = .text:0x805AC540; // type:function size:0xC0 +fn_805AC600 = .text:0x805AC600; // type:function size:0x30 +fn_805AC630 = .text:0x805AC630; // type:function size:0x90 +fn_805AC6C0 = .text:0x805AC6C0; // type:function size:0x68 +fn_805AC728 = .text:0x805AC728; // type:function size:0x30 +fn_805AC758 = .text:0x805AC758; // type:function size:0x98 +fn_805AC7F0 = .text:0x805AC7F0; // type:function size:0x70 +fn_805AC860 = .text:0x805AC860; // type:function size:0x30 +fn_805AC890 = .text:0x805AC890; // type:function size:0x98 +fn_805AC928 = .text:0x805AC928; // type:function size:0x70 +fn_805AC998 = .text:0x805AC998; // type:function size:0x30 +fn_805AC9C8 = .text:0x805AC9C8; // type:function size:0x98 +fn_805ACA60 = .text:0x805ACA60; // type:function size:0x70 +fn_805ACAD0 = .text:0x805ACAD0; // type:function size:0x44 +fn_805ACB14 = .text:0x805ACB14; // type:function size:0x30 +fn_805ACB44 = .text:0x805ACB44; // type:function size:0x98 +fn_805ACBDC = .text:0x805ACBDC; // type:function size:0x70 +fn_805ACC4C = .text:0x805ACC4C; // type:function size:0x28 +fn_805ACC74 = .text:0x805ACC74; // type:function size:0x5C +fn_805ACCD0 = .text:0x805ACCD0; // type:function size:0x60 +fn_805ACD30 = .text:0x805ACD30; // type:function size:0x70 +fn_805ACDA0 = .text:0x805ACDA0; // type:function size:0x78 +fn_805ACE18 = .text:0x805ACE18; // type:function size:0x34 +fn_805ACE4C = .text:0x805ACE4C; // type:function size:0xB8 +fn_805ACF04 = .text:0x805ACF04; // type:function size:0x30 +fn_805ACF34 = .text:0x805ACF34; // type:function size:0x8 +fn_805ACF3C = .text:0x805ACF3C; // type:function size:0x2C +fn_805ACF68 = .text:0x805ACF68; // type:function size:0x58 +fn_805ACFC0 = .text:0x805ACFC0; // type:function size:0x134 +fn_805AD0F4 = .text:0x805AD0F4; // type:function size:0x4C +fn_805AD140 = .text:0x805AD140; // type:function size:0x4 +fn_805AD144 = .text:0x805AD144; // type:function size:0x190 +fn_805AD2D4 = .text:0x805AD2D4; // type:function size:0x5C +fn_805AD330 = .text:0x805AD330; // type:function size:0x54 +fn_805AD384 = .text:0x805AD384; // type:function size:0x28 +fn_805AD3AC = .text:0x805AD3AC; // type:function size:0x68 +fn_805AD414 = .text:0x805AD414; // type:function size:0x114 +fn_805AD528 = .text:0x805AD528; // type:function size:0x60 +fn_805AD588 = .text:0x805AD588; // type:function size:0x5C +fn_805AD5E4 = .text:0x805AD5E4; // type:function size:0x54 +fn_805AD638 = .text:0x805AD638; // type:function size:0x18C +fn_805AD7C4 = .text:0x805AD7C4; // type:function size:0x54 +fn_805AD818 = .text:0x805AD818; // type:function size:0x28 +fn_805AD840 = .text:0x805AD840; // type:function size:0x68 +fn_805AD8A8 = .text:0x805AD8A8; // type:function size:0x18C +fn_805ADA34 = .text:0x805ADA34; // type:function size:0x54 +fn_805ADA88 = .text:0x805ADA88; // type:function size:0x28 +fn_805ADAB0 = .text:0x805ADAB0; // type:function size:0x68 +fn_805ADB18 = .text:0x805ADB18; // type:function size:0x190 +fn_805ADCA8 = .text:0x805ADCA8; // type:function size:0x54 +fn_805ADCFC = .text:0x805ADCFC; // type:function size:0x28 +fn_805ADD24 = .text:0x805ADD24; // type:function size:0x68 +fn_805ADD8C = .text:0x805ADD8C; // type:function size:0x198 +fn_805ADF24 = .text:0x805ADF24; // type:function size:0x5C +fn_805ADF80 = .text:0x805ADF80; // type:function size:0x54 +fn_805ADFD4 = .text:0x805ADFD4; // type:function size:0x28 +fn_805ADFFC = .text:0x805ADFFC; // type:function size:0x68 +fn_805AE064 = .text:0x805AE064; // type:function size:0x114 +fn_805AE178 = .text:0x805AE178; // type:function size:0x5C +fn_805AE1D4 = .text:0x805AE1D4; // type:function size:0x5C +fn_805AE230 = .text:0x805AE230; // type:function size:0x54 +fn_805AE284 = .text:0x805AE284; // type:function size:0x160 +fn_805AE3E4 = .text:0x805AE3E4; // type:function size:0x58 +fn_805AE43C = .text:0x805AE43C; // type:function size:0x58 +fn_805AE494 = .text:0x805AE494; // type:function size:0x58 +fn_805AE4EC = .text:0x805AE4EC; // type:function size:0x58 +fn_805AE544 = .text:0x805AE544; // type:function size:0x60 +fn_805AE5A4 = .text:0x805AE5A4; // type:function size:0x58 +fn_805AE5FC = .text:0x805AE5FC; // type:function size:0x80 +fn_805AE67C = .text:0x805AE67C; // type:function size:0x54 +fn_805AE6D0 = .text:0x805AE6D0; // type:function size:0x5C +fn_805AE72C = .text:0x805AE72C; // type:function size:0x68 +fn_805AE794 = .text:0x805AE794; // type:function size:0x30 +fn_805AE7C4 = .text:0x805AE7C4; // type:function size:0x54 +fn_805AE818 = .text:0x805AE818; // type:function size:0x30 +fn_805AE848 = .text:0x805AE848; // type:function size:0x30 +fn_805AE878 = .text:0x805AE878; // type:function size:0x34 +fn_805AE8AC = .text:0x805AE8AC; // type:function size:0x80 +fn_805AE92C = .text:0x805AE92C; // type:function size:0x58 +fn_805AE984 = .text:0x805AE984; // type:function size:0x58 +fn_805AE9DC = .text:0x805AE9DC; // type:function size:0x30 +fn_805AEA0C = .text:0x805AEA0C; // type:function size:0x94 +fn_805AEAA0 = .text:0x805AEAA0; // type:function size:0xC4 +fn_805AEB64 = .text:0x805AEB64; // type:function size:0x5C +fn_805AEBC0 = .text:0x805AEBC0; // type:function size:0x58 +fn_805AEC18 = .text:0x805AEC18; // type:function size:0x14 +fn_805AEC2C = .text:0x805AEC2C; // type:function size:0x14 +fn_805AEC40 = .text:0x805AEC40; // type:function size:0x14 +fn_805AEC54 = .text:0x805AEC54; // type:function size:0x14 +fn_805AEC68 = .text:0x805AEC68; // type:function size:0x14 +fn_805AEC7C = .text:0x805AEC7C; // type:function size:0x14 +fn_805AEC90 = .text:0x805AEC90; // type:function size:0x14 +fn_805AECA4 = .text:0x805AECA4; // type:function size:0x14 +fn_805AECB8 = .text:0x805AECB8; // type:function size:0x14 +fn_805AECCC = .text:0x805AECCC; // type:function size:0x54 +fn_805AED20 = .text:0x805AED20; // type:function size:0x40 +fn_805AED60 = .text:0x805AED60; // type:function size:0x30 +fn_805AED90 = .text:0x805AED90; // type:function size:0x30 +fn_805AEDC0 = .text:0x805AEDC0; // type:function size:0x40 +fn_805AEE00 = .text:0x805AEE00; // type:function size:0xA4 +fn_805AEEA4 = .text:0x805AEEA4; // type:function size:0x7C +fn_805AEF20 = .text:0x805AEF20; // type:function size:0x30 +fn_805AEF50 = .text:0x805AEF50; // type:function size:0x30 +fn_805AEF80 = .text:0x805AEF80; // type:function size:0x4 +fn_805AEF84 = .text:0x805AEF84; // type:function size:0x5C +fn_805AEFE0 = .text:0x805AEFE0; // type:function size:0xF4 +fn_805AF0D4 = .text:0x805AF0D4; // type:function size:0x80 +fn_805AF154 = .text:0x805AF154; // type:function size:0x44 +fn_805AF198 = .text:0x805AF198; // type:function size:0x4 +fn_805AF19C = .text:0x805AF19C; // type:function size:0x90 +fn_805AF22C = .text:0x805AF22C; // type:function size:0x4 +fn_805AF230 = .text:0x805AF230; // type:function size:0x40 +fn_805AF270 = .text:0x805AF270; // type:function size:0x8C +fn_805AF2FC = .text:0x805AF2FC; // type:function size:0x8 +fn_805AF304 = .text:0x805AF304; // type:function size:0x2C +fn_805AF330 = .text:0x805AF330; // type:function size:0x58 +fn_805AF388 = .text:0x805AF388; // type:function size:0x28 +fn_805AF3B0 = .text:0x805AF3B0; // type:function size:0x68 +fn_805AF418 = .text:0x805AF418; // type:function size:0x40 +fn_805AF458 = .text:0x805AF458; // type:function size:0x4C +fn_805AF4A4 = .text:0x805AF4A4; // type:function size:0x2C8 +fn_805AF76C = .text:0x805AF76C; // type:function size:0x4 +fn_805AF770 = .text:0x805AF770; // type:function size:0x3C +fn_805AF7AC = .text:0x805AF7AC; // type:function size:0x120 +fn_805AF8CC = .text:0x805AF8CC; // type:function size:0x68 +fn_805AF934 = .text:0x805AF934; // type:function size:0x30 +Handle__8LightHueFP9DataArrayb = .text:0x805AF964; // type:function size:0xC4 +fn_805AFA28 = .text:0x805AFA28; // type:function size:0xD0 +fn_805AFAF8 = .text:0x805AFAF8; // type:function size:0x68 +fn_805AFB60 = .text:0x805AFB60; // type:function size:0x2C +fn_805AFB8C = .text:0x805AFB8C; // type:function size:0x160 +fn_805AFCEC = .text:0x805AFCEC; // type:function size:0x5C +fn_805AFD48 = .text:0x805AFD48; // type:function size:0x10 +fn_805AFD58 = .text:0x805AFD58; // type:function size:0x44 +fn_805AFD9C = .text:0x805AFD9C; // type:function size:0x28 +fn_805AFDC4 = .text:0x805AFDC4; // type:function size:0x5C +fn_805AFE20 = .text:0x805AFE20; // type:function size:0x60 +fn_805AFE80 = .text:0x805AFE80; // type:function size:0x4 +fn_805AFE84 = .text:0x805AFE84; // type:function size:0x4C +fn_805AFED0 = .text:0x805AFED0; // type:function size:0x128 +fn_805AFFF8 = .text:0x805AFFF8; // type:function size:0x190 +fn_805B0188 = .text:0x805B0188; // type:function size:0x5C +fn_805B01E4 = .text:0x805B01E4; // type:function size:0x54 +fn_805B0238 = .text:0x805B0238; // type:function size:0x28 +fn_805B0260 = .text:0x805B0260; // type:function size:0x68 +fn_805B02C8 = .text:0x805B02C8; // type:function size:0x114 +fn_805B03DC = .text:0x805B03DC; // type:function size:0x60 +fn_805B043C = .text:0x805B043C; // type:function size:0x5C +fn_805B0498 = .text:0x805B0498; // type:function size:0x54 +fn_805B04EC = .text:0x805B04EC; // type:function size:0x98 +fn_805B0584 = .text:0x805B0584; // type:function size:0x58 +fn_805B05DC = .text:0x805B05DC; // type:function size:0x60 +fn_805B063C = .text:0x805B063C; // type:function size:0x58 +fn_805B0694 = .text:0x805B0694; // type:function size:0x58 +fn_805B06EC = .text:0x805B06EC; // type:function size:0x50 +fn_805B073C = .text:0x805B073C; // type:function size:0x44 +fn_805B0780 = .text:0x805B0780; // type:function size:0x3C +fn_805B07BC = .text:0x805B07BC; // type:function size:0x70 +fn_805B082C = .text:0x805B082C; // type:function size:0x5C +fn_805B0888 = .text:0x805B0888; // type:function size:0x10 +fn_805B0898 = .text:0x805B0898; // type:function size:0xB0 +fn_805B0948 = .text:0x805B0948; // type:function size:0x50 +fn_805B0998 = .text:0x805B0998; // type:function size:0xD0 +fn_805B0A68 = .text:0x805B0A68; // type:function size:0x120 +fn_805B0B88 = .text:0x805B0B88; // type:function size:0x5C +fn_805B0BE4 = .text:0x805B0BE4; // type:function size:0x58 +fn_805B0C3C = .text:0x805B0C3C; // type:function size:0x48 +fn_805B0C84 = .text:0x805B0C84; // type:function size:0x8 +fn_805B0C8C = .text:0x805B0C8C; // type:function size:0x4 +fn_805B0C90 = .text:0x805B0C90; // type:function size:0x40 +fn_805B0CD0 = .text:0x805B0CD0; // type:function size:0x74 +fn_805B0D44 = .text:0x805B0D44; // type:function size:0x78 +fn_805B0DBC = .text:0x805B0DBC; // type:function size:0x4 +fn_805B0DC0 = .text:0x805B0DC0; // type:function size:0xF0 +fn_805B0EB0 = .text:0x805B0EB0; // type:function size:0x88 +fn_805B0F38 = .text:0x805B0F38; // type:function size:0x4 +fn_805B0F3C = .text:0x805B0F3C; // type:function size:0x220 +fn_805B115C = .text:0x805B115C; // type:function size:0xA0 +fn_805B11FC = .text:0x805B11FC; // type:function size:0xAC +fn_805B12A8 = .text:0x805B12A8; // type:function size:0x4C +fn_805B12F4 = .text:0x805B12F4; // type:function size:0x20C +fn_805B1500 = .text:0x805B1500; // type:function size:0xB4 +fn_805B15B4 = .text:0x805B15B4; // type:function size:0x7C +fn_805B1630 = .text:0x805B1630; // type:function size:0xC0 +fn_805B16F0 = .text:0x805B16F0; // type:function size:0x18 +fn_805B1708 = .text:0x805B1708; // type:function size:0x88 +fn_805B1790 = .text:0x805B1790; // type:function size:0x34 +fn_805B17C4 = .text:0x805B17C4; // type:function size:0x9C +fn_805B1860 = .text:0x805B1860; // type:function size:0x10 +fn_805B1870 = .text:0x805B1870; // type:function size:0x6C +fn_805B18DC = .text:0x805B18DC; // type:function size:0x78 +fn_805B1954 = .text:0x805B1954; // type:function size:0x4 +fn_805B1958 = .text:0x805B1958; // type:function size:0x4 +fn_805B195C = .text:0x805B195C; // type:function size:0x14 +fn_805B1970 = .text:0x805B1970; // type:function size:0x1E4 +fn_805B1B54 = .text:0x805B1B54; // type:function size:0x388 +fn_805B1EDC = .text:0x805B1EDC; // type:function size:0x6C +fn_805B1F48 = .text:0x805B1F48; // type:function size:0x2C +fn_805B1F74 = .text:0x805B1F74; // type:function size:0x8 +fn_805B1F7C = .text:0x805B1F7C; // type:function size:0x158 +fn_805B20D4 = .text:0x805B20D4; // type:function size:0x44 +fn_805B2118 = .text:0x805B2118; // type:function size:0x8 +fn_805B2120 = .text:0x805B2120; // type:function size:0x104 +fn_805B2224 = .text:0x805B2224; // type:function size:0x5C +fn_805B2280 = .text:0x805B2280; // type:function size:0x10 +fn_805B2290 = .text:0x805B2290; // type:function size:0x48 +fn_805B22D8 = .text:0x805B22D8; // type:function size:0x1CC +fn_805B24A4 = .text:0x805B24A4; // type:function size:0x150 +fn_805B25F4 = .text:0x805B25F4; // type:function size:0x128 +fn_805B271C = .text:0x805B271C; // type:function size:0xE0 +fn_805B27FC = .text:0x805B27FC; // type:function size:0x90 +fn_805B288C = .text:0x805B288C; // type:function size:0x1E4 +fn_805B2A70 = .text:0x805B2A70; // type:function size:0x10 +fn_805B2A80 = .text:0x805B2A80; // type:function size:0x4 +fn_805B2A84 = .text:0x805B2A84; // type:function size:0xD0 +fn_805B2B54 = .text:0x805B2B54; // type:function size:0xC8 +fn_805B2C1C = .text:0x805B2C1C; // type:function size:0x170 +fn_805B2D8C = .text:0x805B2D8C; // type:function size:0x1B8 +fn_805B2F44 = .text:0x805B2F44; // type:function size:0x144 +fn_805B3088 = .text:0x805B3088; // type:function size:0x4C +fn_805B30D4 = .text:0x805B30D4; // type:function size:0x4 +fn_805B30D8 = .text:0x805B30D8; // type:function size:0x14 +fn_805B30EC = .text:0x805B30EC; // type:function size:0x14 +fn_805B3100 = .text:0x805B3100; // type:function size:0x14 +fn_805B3114 = .text:0x805B3114; // type:function size:0x14 +fn_805B3128 = .text:0x805B3128; // type:function size:0x14 +fn_805B313C = .text:0x805B313C; // type:function size:0x14 +fn_805B3150 = .text:0x805B3150; // type:function size:0x14 +fn_805B3164 = .text:0x805B3164; // type:function size:0x14 +fn_805B3178 = .text:0x805B3178; // type:function size:0x14 +fn_805B318C = .text:0x805B318C; // type:function size:0x14 +fn_805B31A0 = .text:0x805B31A0; // type:function size:0x8 +fn_805B31A8 = .text:0x805B31A8; // type:function size:0x8 +fn_805B31B0 = .text:0x805B31B0; // type:function size:0x8 +fn_805B31B8 = .text:0x805B31B8; // type:function size:0x8 +fn_805B31C0 = .text:0x805B31C0; // type:function size:0x8 +fn_805B31C8 = .text:0x805B31C8; // type:function size:0x8 +fn_805B31D0 = .text:0x805B31D0; // type:function size:0x8 +fn_805B31D8 = .text:0x805B31D8; // type:function size:0x8 +fn_805B31E0 = .text:0x805B31E0; // type:function size:0x8 +fn_805B31E8 = .text:0x805B31E8; // type:function size:0x60 +fn_805B3248 = .text:0x805B3248; // type:function size:0x34 +fn_805B327C = .text:0x805B327C; // type:function size:0x44 +fn_805B32C0 = .text:0x805B32C0; // type:function size:0x4C +fn_805B330C = .text:0x805B330C; // type:function size:0x34 +fn_805B3340 = .text:0x805B3340; // type:function size:0x48 +fn_805B3388 = .text:0x805B3388; // type:function size:0x4C +fn_805B33D4 = .text:0x805B33D4; // type:function size:0x34 +fn_805B3408 = .text:0x805B3408; // type:function size:0x34 +fn_805B343C = .text:0x805B343C; // type:function size:0x34 +fn_805B3470 = .text:0x805B3470; // type:function size:0x44 +fn_805B34B4 = .text:0x805B34B4; // type:function size:0x34 +fn_805B34E8 = .text:0x805B34E8; // type:function size:0x48 +fn_805B3530 = .text:0x805B3530; // type:function size:0x34 +fn_805B3564 = .text:0x805B3564; // type:function size:0x48 +fn_805B35AC = .text:0x805B35AC; // type:function size:0x34 +fn_805B35E0 = .text:0x805B35E0; // type:function size:0x44 +fn_805B3624 = .text:0x805B3624; // type:function size:0x34 +fn_805B3658 = .text:0x805B3658; // type:function size:0x34 +fn_805B368C = .text:0x805B368C; // type:function size:0x78 +fn_805B3704 = .text:0x805B3704; // type:function size:0x30 +fn_805B3734 = .text:0x805B3734; // type:function size:0x34 +fn_805B3768 = .text:0x805B3768; // type:function size:0x48 +fn_805B37B0 = .text:0x805B37B0; // type:function size:0x4C +fn_805B37FC = .text:0x805B37FC; // type:function size:0x318 +fn_805B3B14 = .text:0x805B3B14; // type:function size:0x6C +fn_805B3B80 = .text:0x805B3B80; // type:function size:0x40 +fn_805B3BC0 = .text:0x805B3BC0; // type:function size:0x44 +fn_805B3C04 = .text:0x805B3C04; // type:function size:0x54 +fn_805B3C58 = .text:0x805B3C58; // type:function size:0x84 +fn_805B3CDC = .text:0x805B3CDC; // type:function size:0x68 +fn_805B3D44 = .text:0x805B3D44; // type:function size:0x6C +fn_805B3DB0 = .text:0x805B3DB0; // type:function size:0x48 +fn_805B3DF8 = .text:0x805B3DF8; // type:function size:0x4C +fn_805B3E44 = .text:0x805B3E44; // type:function size:0x18C +fn_805B3FD0 = .text:0x805B3FD0; // type:function size:0x8 +fn_805B3FD8 = .text:0x805B3FD8; // type:function size:0x8 +fn_805B3FE0 = .text:0x805B3FE0; // type:function size:0x84 +fn_805B4064 = .text:0x805B4064; // type:function size:0x3C +fn_805B40A0 = .text:0x805B40A0; // type:function size:0x10 +fn_805B40B0 = .text:0x805B40B0; // type:function size:0xC8 +fn_805B4178 = .text:0x805B4178; // type:function size:0x564 +fn_805B46DC = .text:0x805B46DC; // type:function size:0x74 +fn_805B4750 = .text:0x805B4750; // type:function size:0x5C +fn_805B47AC = .text:0x805B47AC; // type:function size:0x4 +fn_805B47B0 = .text:0x805B47B0; // type:function size:0x90 +fn_805B4840 = .text:0x805B4840; // type:function size:0x4 +fn_805B4844 = .text:0x805B4844; // type:function size:0x40 +fn_805B4884 = .text:0x805B4884; // type:function size:0x8C +fn_805B4910 = .text:0x805B4910; // type:function size:0x8 +fn_805B4918 = .text:0x805B4918; // type:function size:0x2C +fn_805B4944 = .text:0x805B4944; // type:function size:0x58 +fn_805B499C = .text:0x805B499C; // type:function size:0x8 +fn_805B49A4 = .text:0x805B49A4; // type:function size:0x28 +fn_805B49CC = .text:0x805B49CC; // type:function size:0x68 +fn_805B4A34 = .text:0x805B4A34; // type:function size:0x3C +fn_805B4A70 = .text:0x805B4A70; // type:function size:0x11C +fn_805B4B8C = .text:0x805B4B8C; // type:function size:0x4C +fn_805B4BD8 = .text:0x805B4BD8; // type:function size:0x78 +fn_805B4C50 = .text:0x805B4C50; // type:function size:0x40 +fn_805B4C90 = .text:0x805B4C90; // type:function size:0x104 +fn_805B4D94 = .text:0x805B4D94; // type:function size:0x58 +fn_805B4DEC = .text:0x805B4DEC; // type:function size:0x34 +fn_805B4E20 = .text:0x805B4E20; // type:function size:0x58 +fn_805B4E78 = .text:0x805B4E78; // type:function size:0x58 +fn_805B4ED0 = .text:0x805B4ED0; // type:function size:0x80 +fn_805B4F50 = .text:0x805B4F50; // type:function size:0x80 +fn_805B4FD0 = .text:0x805B4FD0; // type:function size:0x58 +fn_805B5028 = .text:0x805B5028; // type:function size:0x54 +fn_805B507C = .text:0x805B507C; // type:function size:0x5C +fn_805B50D8 = .text:0x805B50D8; // type:function size:0x6C +fn_805B5144 = .text:0x805B5144; // type:function size:0x28 +fn_805B516C = .text:0x805B516C; // type:function size:0x8 +fn_805B5174 = .text:0x805B5174; // type:function size:0x3C +fn_805B51B0 = .text:0x805B51B0; // type:function size:0xDC +fn_805B528C = .text:0x805B528C; // type:function size:0x50 +fn_805B52DC = .text:0x805B52DC; // type:function size:0x30 +fn_805B530C = .text:0x805B530C; // type:function size:0x30 +fn_805B533C = .text:0x805B533C; // type:function size:0x40 +fn_805B537C = .text:0x805B537C; // type:function size:0x38 +fn_805B53B4 = .text:0x805B53B4; // type:function size:0xA8 +fn_805B545C = .text:0x805B545C; // type:function size:0x4 +fn_805B5460 = .text:0x805B5460; // type:function size:0x178 +fn_805B55D8 = .text:0x805B55D8; // type:function size:0x2A4 +fn_805B587C = .text:0x805B587C; // type:function size:0xB8 +fn_805B5934 = .text:0x805B5934; // type:function size:0xB0 +fn_805B59E4 = .text:0x805B59E4; // type:function size:0x138 +fn_805B5B1C = .text:0x805B5B1C; // type:function size:0x130 +fn_805B5C4C = .text:0x805B5C4C; // type:function size:0x1A8 +fn_805B5DF4 = .text:0x805B5DF4; // type:function size:0x98 +fn_805B5E8C = .text:0x805B5E8C; // type:function size:0x124 +fn_805B5FB0 = .text:0x805B5FB0; // type:function size:0x8 +fn_805B5FB8 = .text:0x805B5FB8; // type:function size:0xA0 +fn_805B6058 = .text:0x805B6058; // type:function size:0x80 +fn_805B60D8 = .text:0x805B60D8; // type:function size:0x7C +fn_805B6154 = .text:0x805B6154; // type:function size:0x48 +fn_805B619C = .text:0x805B619C; // type:function size:0x1D0 +fn_805B636C = .text:0x805B636C; // type:function size:0xBC +fn_805B6428 = .text:0x805B6428; // type:function size:0x68 +fn_805B6490 = .text:0x805B6490; // type:function size:0x5C +fn_805B64EC = .text:0x805B64EC; // type:function size:0x40 +fn_805B652C = .text:0x805B652C; // type:function size:0x350 +fn_805B687C = .text:0x805B687C; // type:function size:0x8 +fn_805B6884 = .text:0x805B6884; // type:function size:0x64 +fn_805B68E8 = .text:0x805B68E8; // type:function size:0x1BC +fn_805B6AA4 = .text:0x805B6AA4; // type:function size:0x388 +fn_805B6E2C = .text:0x805B6E2C; // type:function size:0x8 +fn_805B6E34 = .text:0x805B6E34; // type:function size:0xB8 +fn_805B6EEC = .text:0x805B6EEC; // type:function size:0x1C +fn_805B6F08 = .text:0x805B6F08; // type:function size:0x20C +fn_805B7114 = .text:0x805B7114; // type:function size:0x6F0 +fn_805B7804 = .text:0x805B7804; // type:function size:0x4C4 +fn_805B7CC8 = .text:0x805B7CC8; // type:function size:0x3C +fn_805B7D04 = .text:0x805B7D04; // type:function size:0x458 +fn_805B815C = .text:0x805B815C; // type:function size:0x5C +fn_805B81B8 = .text:0x805B81B8; // type:function size:0x14 +fn_805B81CC = .text:0x805B81CC; // type:function size:0x460 +fn_805B862C = .text:0x805B862C; // type:function size:0x774 +fn_805B8DA0 = .text:0x805B8DA0; // type:function size:0x6C +fn_805B8E0C = .text:0x805B8E0C; // type:function size:0x214 +fn_805B9020 = .text:0x805B9020; // type:function size:0xF0 +fn_805B9110 = .text:0x805B9110; // type:function size:0x148 +fn_805B9258 = .text:0x805B9258; // type:function size:0x94 +fn_805B92EC = .text:0x805B92EC; // type:function size:0x9C +fn_805B9388 = .text:0x805B9388; // type:function size:0x50 +fn_805B93D8 = .text:0x805B93D8; // type:function size:0x5C +fn_805B9434 = .text:0x805B9434; // type:function size:0x80 +fn_805B94B4 = .text:0x805B94B4; // type:function size:0x224 +fn_805B96D8 = .text:0x805B96D8; // type:function size:0xF78 +fn_805BA650 = .text:0x805BA650; // type:function size:0xC0 +fn_805BA710 = .text:0x805BA710; // type:function size:0x1E8 +fn_805BA8F8 = .text:0x805BA8F8; // type:function size:0xC0 +fn_805BA9B8 = .text:0x805BA9B8; // type:function size:0x44 +fn_805BA9FC = .text:0x805BA9FC; // type:function size:0x8 +fn_805BAA04 = .text:0x805BAA04; // type:function size:0x110 +fn_805BAB14 = .text:0x805BAB14; // type:function size:0x68 +fn_805BAB7C = .text:0x805BAB7C; // type:function size:0x2C +fn_805BABA8 = .text:0x805BABA8; // type:function size:0x144 +fn_805BACEC = .text:0x805BACEC; // type:function size:0x4 +fn_805BACF0 = .text:0x805BACF0; // type:function size:0x198 +fn_805BAE88 = .text:0x805BAE88; // type:function size:0x5C +fn_805BAEE4 = .text:0x805BAEE4; // type:function size:0x10 +fn_805BAEF4 = .text:0x805BAEF4; // type:function size:0x54 +fn_805BAF48 = .text:0x805BAF48; // type:function size:0x28 +fn_805BAF70 = .text:0x805BAF70; // type:function size:0x68 +fn_805BAFD8 = .text:0x805BAFD8; // type:function size:0x5C +fn_805BB034 = .text:0x805BB034; // type:function size:0x114 +fn_805BB148 = .text:0x805BB148; // type:function size:0x5C +fn_805BB1A4 = .text:0x805BB1A4; // type:function size:0x5C +fn_805BB200 = .text:0x805BB200; // type:function size:0x54 +fn_805BB254 = .text:0x805BB254; // type:function size:0x14 +fn_805BB268 = .text:0x805BB268; // type:function size:0x14 +fn_805BB27C = .text:0x805BB27C; // type:function size:0x8 +fn_805BB284 = .text:0x805BB284; // type:function size:0x8 +fn_805BB28C = .text:0x805BB28C; // type:function size:0x8 +fn_805BB294 = .text:0x805BB294; // type:function size:0x8 +fn_805BB29C = .text:0x805BB29C; // type:function size:0x8 +fn_805BB2A4 = .text:0x805BB2A4; // type:function size:0x8 +fn_805BB2AC = .text:0x805BB2AC; // type:function size:0x8 +fn_805BB2B4 = .text:0x805BB2B4; // type:function size:0x8 +fn_805BB2BC = .text:0x805BB2BC; // type:function size:0x8 +fn_805BB2C4 = .text:0x805BB2C4; // type:function size:0x8 +fn_805BB2CC = .text:0x805BB2CC; // type:function size:0x14 +fn_805BB2E0 = .text:0x805BB2E0; // type:function size:0x14 +fn_805BB2F4 = .text:0x805BB2F4; // type:function size:0x14 +fn_805BB308 = .text:0x805BB308; // type:function size:0x14 +fn_805BB31C = .text:0x805BB31C; // type:function size:0x14 +fn_805BB330 = .text:0x805BB330; // type:function size:0x14 +fn_805BB344 = .text:0x805BB344; // type:function size:0x14 +fn_805BB358 = .text:0x805BB358; // type:function size:0x14 +fn_805BB36C = .text:0x805BB36C; // type:function size:0x14 +fn_805BB380 = .text:0x805BB380; // type:function size:0x14 +fn_805BB394 = .text:0x805BB394; // type:function size:0x8 +fn_805BB39C = .text:0x805BB39C; // type:function size:0x8 +fn_805BB3A4 = .text:0x805BB3A4; // type:function size:0x8 +fn_805BB3AC = .text:0x805BB3AC; // type:function size:0x8 +fn_805BB3B4 = .text:0x805BB3B4; // type:function size:0x8 +__ct__15SpotlightDrawerFv = .text:0x805BB3BC; // type:function size:0xDC +fn_805BB498 = .text:0x805BB498; // type:function size:0x68 +__ct__13PostProcessorFv = .text:0x805BB500; // type:function size:0x10 +fn_805BB510 = .text:0x805BB510; // type:function size:0x58 +fn_805BB568 = .text:0x805BB568; // type:function size:0x58 +__dt__15SpotlightDrawerFv = .text:0x805BB5C0; // type:function size:0x118 +fn_805BB6D8 = .text:0x805BB6D8; // type:function size:0x58 +fn_805BB730 = .text:0x805BB730; // type:function size:0x58 +fn_805BB788 = .text:0x805BB788; // type:function size:0x80 +fn_805BB808 = .text:0x805BB808; // type:function size:0x80 +fn_805BB888 = .text:0x805BB888; // type:function size:0x54 +fn_805BB8DC = .text:0x805BB8DC; // type:function size:0x5C +fn_805BB938 = .text:0x805BB938; // type:function size:0x6C +fn_805BB9A4 = .text:0x805BB9A4; // type:function size:0x28 +fn_805BB9CC = .text:0x805BB9CC; // type:function size:0x8 +fn_805BB9D4 = .text:0x805BB9D4; // type:function size:0x3C +fn_805BBA10 = .text:0x805BBA10; // type:function size:0x4 +fn_805BBA14 = .text:0x805BBA14; // type:function size:0x50 +fn_805BBA64 = .text:0x805BBA64; // type:function size:0x58 +fn_805BBABC = .text:0x805BBABC; // type:function size:0x30 +fn_805BBAEC = .text:0x805BBAEC; // type:function size:0x30 +fn_805BBB1C = .text:0x805BBB1C; // type:function size:0x40 +fn_805BBB5C = .text:0x805BBB5C; // type:function size:0x58 +fn_805BBBB4 = .text:0x805BBBB4; // type:function size:0x58 +fn_805BBC0C = .text:0x805BBC0C; // type:function size:0x58 +fn_805BBC64 = .text:0x805BBC64; // type:function size:0x80 +fn_805BBCE4 = .text:0x805BBCE4; // type:function size:0x80 +fn_805BBD64 = .text:0x805BBD64; // type:function size:0x54 +fn_805BBDB8 = .text:0x805BBDB8; // type:function size:0x5C +fn_805BBE14 = .text:0x805BBE14; // type:function size:0x6C +fn_805BBE80 = .text:0x805BBE80; // type:function size:0x28 +fn_805BBEA8 = .text:0x805BBEA8; // type:function size:0x8 +fn_805BBEB0 = .text:0x805BBEB0; // type:function size:0x3C +fn_805BBEEC = .text:0x805BBEEC; // type:function size:0x4 +fn_805BBEF0 = .text:0x805BBEF0; // type:function size:0x50 +fn_805BBF40 = .text:0x805BBF40; // type:function size:0x58 +fn_805BBF98 = .text:0x805BBF98; // type:function size:0x30 +fn_805BBFC8 = .text:0x805BBFC8; // type:function size:0x30 +fn_805BBFF8 = .text:0x805BBFF8; // type:function size:0x40 +fn_805BC038 = .text:0x805BC038; // type:function size:0xF4 +fn_805BC12C = .text:0x805BC12C; // type:function size:0x2C +fn_805BC158 = .text:0x805BC158; // type:function size:0x84 +fn_805BC1DC = .text:0x805BC1DC; // type:function size:0x2C +fn_805BC208 = .text:0x805BC208; // type:function size:0x28 +fn_805BC230 = .text:0x805BC230; // type:function size:0x68 +fn_805BC298 = .text:0x805BC298; // type:function size:0x58 +fn_805BC2F0 = .text:0x805BC2F0; // type:function size:0x2C +fn_805BC31C = .text:0x805BC31C; // type:function size:0x84 +fn_805BC3A0 = .text:0x805BC3A0; // type:function size:0x2C +fn_805BC3CC = .text:0x805BC3CC; // type:function size:0x28 +fn_805BC3F4 = .text:0x805BC3F4; // type:function size:0x68 +fn_805BC45C = .text:0x805BC45C; // type:function size:0x3C +fn_805BC498 = .text:0x805BC498; // type:function size:0x48 +fn_805BC4E0 = .text:0x805BC4E0; // type:function size:0x1F4 +fn_805BC6D4 = .text:0x805BC6D4; // type:function size:0x4 +fn_805BC6D8 = .text:0x805BC6D8; // type:function size:0x88 +fn_805BC760 = .text:0x805BC760; // type:function size:0x2C +fn_805BC78C = .text:0x805BC78C; // type:function size:0x10 +fn_805BC79C = .text:0x805BC79C; // type:function size:0x58 +fn_805BC7F4 = .text:0x805BC7F4; // type:function size:0x44 +fn_805BC838 = .text:0x805BC838; // type:function size:0x9C +fn_805BC8D4 = .text:0x805BC8D4; // type:function size:0x8 +fn_805BC8DC = .text:0x805BC8DC; // type:function size:0x8 +fn_805BC8E4 = .text:0x805BC8E4; // type:function size:0x4 +fn_805BC8E8 = .text:0x805BC8E8; // type:function size:0x88 +fn_805BC970 = .text:0x805BC970; // type:function size:0x2C +fn_805BC99C = .text:0x805BC99C; // type:function size:0x10 +fn_805BC9AC = .text:0x805BC9AC; // type:function size:0x8 +fn_805BC9B4 = .text:0x805BC9B4; // type:function size:0x8 +fn_805BC9BC = .text:0x805BC9BC; // type:function size:0x74 +fn_805BCA30 = .text:0x805BCA30; // type:function size:0xA4 +fn_805BCAD4 = .text:0x805BCAD4; // type:function size:0x94 +fn_805BCB68 = .text:0x805BCB68; // type:function size:0x8 +fn_805BCB70 = .text:0x805BCB70; // type:function size:0x4 +fn_805BCB74 = .text:0x805BCB74; // type:function size:0x84 +fn_805BCBF8 = .text:0x805BCBF8; // type:function size:0x2C +fn_805BCC24 = .text:0x805BCC24; // type:function size:0x54 +fn_805BCC78 = .text:0x805BCC78; // type:function size:0x48 +fn_805BCCC0 = .text:0x805BCCC0; // type:function size:0x4C +fn_805BCD0C = .text:0x805BCD0C; // type:function size:0x34 +fn_805BCD40 = .text:0x805BCD40; // type:function size:0x48 +fn_805BCD88 = .text:0x805BCD88; // type:function size:0x44 +fn_805BCDCC = .text:0x805BCDCC; // type:function size:0x8 +fn_805BCDD4 = .text:0x805BCDD4; // type:function size:0x8C +fn_805BCE60 = .text:0x805BCE60; // type:function size:0x88 +fn_805BCEE8 = .text:0x805BCEE8; // type:function size:0x100 +fn_805BCFE8 = .text:0x805BCFE8; // type:function size:0x30 +fn_805BD018 = .text:0x805BD018; // type:function size:0xD0 +fn_805BD0E8 = .text:0x805BD0E8; // type:function size:0x34 +fn_805BD11C = .text:0x805BD11C; // type:function size:0xA8 +fn_805BD1C4 = .text:0x805BD1C4; // type:function size:0xF0 +fn_805BD2B4 = .text:0x805BD2B4; // type:function size:0xA8 +fn_805BD35C = .text:0x805BD35C; // type:function size:0x6C +fn_805BD3C8 = .text:0x805BD3C8; // type:function size:0x30 +fn_805BD3F8 = .text:0x805BD3F8; // type:function size:0x74 +fn_805BD46C = .text:0x805BD46C; // type:function size:0x80 +fn_805BD4EC = .text:0x805BD4EC; // type:function size:0xA4 +fn_805BD590 = .text:0x805BD590; // type:function size:0x6C +fn_805BD5FC = .text:0x805BD5FC; // type:function size:0xC +fn_805BD608 = .text:0x805BD608; // type:function size:0x58 +fn_805BD660 = .text:0x805BD660; // type:function size:0xE0 +fn_805BD740 = .text:0x805BD740; // type:function size:0x94 +fn_805BD7D4 = .text:0x805BD7D4; // type:function size:0x80 +fn_805BD854 = .text:0x805BD854; // type:function size:0x9C +fn_805BD8F0 = .text:0x805BD8F0; // type:function size:0x78 +fn_805BD968 = .text:0x805BD968; // type:function size:0x58 +fn_805BD9C0 = .text:0x805BD9C0; // type:function size:0x64 +fn_805BDA24 = .text:0x805BDA24; // type:function size:0x28 +fn_805BDA4C = .text:0x805BDA4C; // type:function size:0x68 +fn_805BDAB4 = .text:0x805BDAB4; // type:function size:0x30 +fn_805BDAE4 = .text:0x805BDAE4; // type:function size:0x70 +fn_805BDB54 = .text:0x805BDB54; // type:function size:0x88 +fn_805BDBDC = .text:0x805BDBDC; // type:function size:0xF0 +fn_805BDCCC = .text:0x805BDCCC; // type:function size:0x30 +fn_805BDCFC = .text:0x805BDCFC; // type:function size:0xC0 +fn_805BDDBC = .text:0x805BDDBC; // type:function size:0x34 +fn_805BDDF0 = .text:0x805BDDF0; // type:function size:0x98 +fn_805BDE88 = .text:0x805BDE88; // type:function size:0xEC +fn_805BDF74 = .text:0x805BDF74; // type:function size:0xA8 +fn_805BE01C = .text:0x805BE01C; // type:function size:0x6C +fn_805BE088 = .text:0x805BE088; // type:function size:0x30 +fn_805BE0B8 = .text:0x805BE0B8; // type:function size:0x64 +fn_805BE11C = .text:0x805BE11C; // type:function size:0x7C +fn_805BE198 = .text:0x805BE198; // type:function size:0x3C +fn_805BE1D4 = .text:0x805BE1D4; // type:function size:0xA4 +fn_805BE278 = .text:0x805BE278; // type:function size:0x6C +fn_805BE2E4 = .text:0x805BE2E4; // type:function size:0xC +fn_805BE2F0 = .text:0x805BE2F0; // type:function size:0x58 +fn_805BE348 = .text:0x805BE348; // type:function size:0xE0 +fn_805BE428 = .text:0x805BE428; // type:function size:0x94 +fn_805BE4BC = .text:0x805BE4BC; // type:function size:0x7C +fn_805BE538 = .text:0x805BE538; // type:function size:0x98 +fn_805BE5D0 = .text:0x805BE5D0; // type:function size:0x78 +fn_805BE648 = .text:0x805BE648; // type:function size:0x58 +fn_805BE6A0 = .text:0x805BE6A0; // type:function size:0x64 +fn_805BE704 = .text:0x805BE704; // type:function size:0x28 +fn_805BE72C = .text:0x805BE72C; // type:function size:0x68 +fn_805BE794 = .text:0x805BE794; // type:function size:0x30 +fn_805BE7C4 = .text:0x805BE7C4; // type:function size:0x6C +fn_805BE830 = .text:0x805BE830; // type:function size:0x244 +fn_805BEA74 = .text:0x805BEA74; // type:function size:0x1C0 +fn_805BEC34 = .text:0x805BEC34; // type:function size:0xC +fn_805BEC40 = .text:0x805BEC40; // type:function size:0x10 +fn_805BEC50 = .text:0x805BEC50; // type:function size:0xC +fn_805BEC5C = .text:0x805BEC5C; // type:function size:0x30 +fn_805BEC8C = .text:0x805BEC8C; // type:function size:0x28 +fn_805BECB4 = .text:0x805BECB4; // type:function size:0x4 +fn_805BECB8 = .text:0x805BECB8; // type:function size:0x90 +fn_805BED48 = .text:0x805BED48; // type:function size:0x4 +fn_805BED4C = .text:0x805BED4C; // type:function size:0x40 +fn_805BED8C = .text:0x805BED8C; // type:function size:0x8C +fn_805BEE18 = .text:0x805BEE18; // type:function size:0x8 +fn_805BEE20 = .text:0x805BEE20; // type:function size:0x2C +fn_805BEE4C = .text:0x805BEE4C; // type:function size:0x58 +fn_805BEEA4 = .text:0x805BEEA4; // type:function size:0x44 +fn_805BEEE8 = .text:0x805BEEE8; // type:function size:0x14C +fn_805BF034 = .text:0x805BF034; // type:function size:0x5C +fn_805BF090 = .text:0x805BF090; // type:function size:0x18 +fn_805BF0A8 = .text:0x805BF0A8; // type:function size:0x18 +fn_805BF0C0 = .text:0x805BF0C0; // type:function size:0x58 +fn_805BF118 = .text:0x805BF118; // type:function size:0x8 +fn_805BF120 = .text:0x805BF120; // type:function size:0x8 +fn_805BF128 = .text:0x805BF128; // type:function size:0x8 +fn_805BF130 = .text:0x805BF130; // type:function size:0x158 +fn_805BF288 = .text:0x805BF288; // type:function size:0x7C +fn_805BF304 = .text:0x805BF304; // type:function size:0x124 +fn_805BF428 = .text:0x805BF428; // type:function size:0xC4 +fn_805BF4EC = .text:0x805BF4EC; // type:function size:0x8C +fn_805BF578 = .text:0x805BF578; // type:function size:0xDC +fn_805BF654 = .text:0x805BF654; // type:function size:0x8C +fn_805BF6E0 = .text:0x805BF6E0; // type:function size:0x28 +fn_805BF708 = .text:0x805BF708; // type:function size:0x7C +fn_805BF784 = .text:0x805BF784; // type:function size:0x4 +fn_805BF788 = .text:0x805BF788; // type:function size:0x90 +fn_805BF818 = .text:0x805BF818; // type:function size:0x4 +fn_805BF81C = .text:0x805BF81C; // type:function size:0x40 +fn_805BF85C = .text:0x805BF85C; // type:function size:0x8C +fn_805BF8E8 = .text:0x805BF8E8; // type:function size:0x8 +fn_805BF8F0 = .text:0x805BF8F0; // type:function size:0x2C +fn_805BF91C = .text:0x805BF91C; // type:function size:0x58 +fn_805BF974 = .text:0x805BF974; // type:function size:0x4 +fn_805BF978 = .text:0x805BF978; // type:function size:0x70 +fn_805BF9E8 = .text:0x805BF9E8; // type:function size:0x94 +fn_805BFA7C = .text:0x805BFA7C; // type:function size:0xC4 +fn_805BFB40 = .text:0x805BFB40; // type:function size:0x84 +fn_805BFBC4 = .text:0x805BFBC4; // type:function size:0x164 +fn_805BFD28 = .text:0x805BFD28; // type:function size:0x184 +fn_805BFEAC = .text:0x805BFEAC; // type:function size:0x1C4 +fn_805C0070 = .text:0x805C0070; // type:function size:0x68 +fn_805C00D8 = .text:0x805C00D8; // type:function size:0x114 +fn_805C01EC = .text:0x805C01EC; // type:function size:0x60 +fn_805C024C = .text:0x805C024C; // type:function size:0x5C +fn_805C02A8 = .text:0x805C02A8; // type:function size:0x54 +fn_805C02FC = .text:0x805C02FC; // type:function size:0x5C +fn_805C0358 = .text:0x805C0358; // type:function size:0x5C +fn_805C03B4 = .text:0x805C03B4; // type:function size:0x68 +fn_805C041C = .text:0x805C041C; // type:function size:0x114 +fn_805C0530 = .text:0x805C0530; // type:function size:0x60 +fn_805C0590 = .text:0x805C0590; // type:function size:0x5C +fn_805C05EC = .text:0x805C05EC; // type:function size:0x54 +fn_805C0640 = .text:0x805C0640; // type:function size:0x5C +fn_805C069C = .text:0x805C069C; // type:function size:0x5C +fn_805C06F8 = .text:0x805C06F8; // type:function size:0x144 +fn_805C083C = .text:0x805C083C; // type:function size:0x4 +fn_805C0840 = .text:0x805C0840; // type:function size:0xC +fn_805C084C = .text:0x805C084C; // type:function size:0x190 +fn_805C09DC = .text:0x805C09DC; // type:function size:0x54 +fn_805C0A30 = .text:0x805C0A30; // type:function size:0x190 +fn_805C0BC0 = .text:0x805C0BC0; // type:function size:0x54 +fn_805C0C14 = .text:0x805C0C14; // type:function size:0x38 +fn_805C0C4C = .text:0x805C0C4C; // type:function size:0xC8 +fn_805C0D14 = .text:0x805C0D14; // type:function size:0x14 +fn_805C0D28 = .text:0x805C0D28; // type:function size:0x14 +fn_805C0D3C = .text:0x805C0D3C; // type:function size:0x14 +fn_805C0D50 = .text:0x805C0D50; // type:function size:0x14 +fn_805C0D64 = .text:0x805C0D64; // type:function size:0x14 +fn_805C0D78 = .text:0x805C0D78; // type:function size:0x14 +fn_805C0D8C = .text:0x805C0D8C; // type:function size:0x14 +fn_805C0DA0 = .text:0x805C0DA0; // type:function size:0x14 +fn_805C0DB4 = .text:0x805C0DB4; // type:function size:0x14 +fn_805C0DC8 = .text:0x805C0DC8; // type:function size:0x14 +fn_805C0DDC = .text:0x805C0DDC; // type:function size:0x8 +fn_805C0DE4 = .text:0x805C0DE4; // type:function size:0x8 +fn_805C0DEC = .text:0x805C0DEC; // type:function size:0x8 +fn_805C0DF4 = .text:0x805C0DF4; // type:function size:0x8 +fn_805C0DFC = .text:0x805C0DFC; // type:function size:0x8 +fn_805C0E04 = .text:0x805C0E04; // type:function size:0xC0 +fn_805C0EC4 = .text:0x805C0EC4; // type:function size:0x9C +fn_805C0F60 = .text:0x805C0F60; // type:function size:0xC +fn_805C0F6C = .text:0x805C0F6C; // type:function size:0x74 +fn_805C0FE0 = .text:0x805C0FE0; // type:function size:0x4 +fn_805C0FE4 = .text:0x805C0FE4; // type:function size:0x54 +fn_805C1038 = .text:0x805C1038; // type:function size:0x124 +fn_805C115C = .text:0x805C115C; // type:function size:0x8C +fn_805C11E8 = .text:0x805C11E8; // type:function size:0x144 +fn_805C132C = .text:0x805C132C; // type:function size:0x4 +fn_805C1330 = .text:0x805C1330; // type:function size:0x14 +fn_805C1344 = .text:0x805C1344; // type:function size:0x14 +fn_805C1358 = .text:0x805C1358; // type:function size:0x14 +fn_805C136C = .text:0x805C136C; // type:function size:0x14 +fn_805C1380 = .text:0x805C1380; // type:function size:0x14 +fn_805C1394 = .text:0x805C1394; // type:function size:0x14 +fn_805C13A8 = .text:0x805C13A8; // type:function size:0x14 +fn_805C13BC = .text:0x805C13BC; // type:function size:0x14 +fn_805C13D0 = .text:0x805C13D0; // type:function size:0x14 +fn_805C13E4 = .text:0x805C13E4; // type:function size:0x14 +fn_805C13F8 = .text:0x805C13F8; // type:function size:0xC4 +fn_805C14BC = .text:0x805C14BC; // type:function size:0x3C +fn_805C14F8 = .text:0x805C14F8; // type:function size:0x3C +fn_805C1534 = .text:0x805C1534; // type:function size:0x130 +fn_805C1664 = .text:0x805C1664; // type:function size:0x4C +fn_805C16B0 = .text:0x805C16B0; // type:function size:0x68 +fn_805C1718 = .text:0x805C1718; // type:function size:0x60 +fn_805C1778 = .text:0x805C1778; // type:function size:0x5C +fn_805C17D4 = .text:0x805C17D4; // type:function size:0xC8 +fn_805C189C = .text:0x805C189C; // type:function size:0x80 +fn_805C191C = .text:0x805C191C; // type:function size:0x68 +fn_805C1984 = .text:0x805C1984; // type:function size:0x98 +fn_805C1A1C = .text:0x805C1A1C; // type:function size:0xF0 +fn_805C1B0C = .text:0x805C1B0C; // type:function size:0xC +fn_805C1B18 = .text:0x805C1B18; // type:function size:0xF8 +fn_805C1C10 = .text:0x805C1C10; // type:function size:0x70 +fn_805C1C80 = .text:0x805C1C80; // type:function size:0x108 +fn_805C1D88 = .text:0x805C1D88; // type:function size:0x80 +fn_805C1E08 = .text:0x805C1E08; // type:function size:0x48 +fn_805C1E50 = .text:0x805C1E50; // type:function size:0x124 +fn_805C1F74 = .text:0x805C1F74; // type:function size:0x48 +fn_805C1FBC = .text:0x805C1FBC; // type:function size:0x48 +fn_805C2004 = .text:0x805C2004; // type:function size:0x4C +fn_805C2050 = .text:0x805C2050; // type:function size:0xA8 +fn_805C20F8 = .text:0x805C20F8; // type:function size:0x8C +fn_805C2184 = .text:0x805C2184; // type:function size:0xC4 +fn_805C2248 = .text:0x805C2248; // type:function size:0x4 +fn_805C224C = .text:0x805C224C; // type:function size:0x4 +fn_805C2250 = .text:0x805C2250; // type:function size:0x288 +fn_805C24D8 = .text:0x805C24D8; // type:function size:0x30 +fn_805C2508 = .text:0x805C2508; // type:function size:0x284 +fn_805C278C = .text:0x805C278C; // type:function size:0x4 +fn_805C2790 = .text:0x805C2790; // type:function size:0x4 +fn_805C2794 = .text:0x805C2794; // type:function size:0x5C +fn_805C27F0 = .text:0x805C27F0; // type:function size:0x104 +fn_805C28F4 = .text:0x805C28F4; // type:function size:0x74 +fn_805C2968 = .text:0x805C2968; // type:function size:0x180 +fn_805C2AE8 = .text:0x805C2AE8; // type:function size:0x4 +fn_805C2AEC = .text:0x805C2AEC; // type:function size:0xE8 +fn_805C2BD4 = .text:0x805C2BD4; // type:function size:0x90 +fn_805C2C64 = .text:0x805C2C64; // type:function size:0x7E0 +fn_805C3444 = .text:0x805C3444; // type:function size:0x58 +fn_805C349C = .text:0x805C349C; // type:function size:0x58 +fn_805C34F4 = .text:0x805C34F4; // type:function size:0x60 +fn_805C3554 = .text:0x805C3554; // type:function size:0x58 +fn_805C35AC = .text:0x805C35AC; // type:function size:0x4 +fn_805C35B0 = .text:0x805C35B0; // type:function size:0x4 +fn_805C35B4 = .text:0x805C35B4; // type:function size:0xC +fn_805C35C0 = .text:0x805C35C0; // type:function size:0x2C +fn_805C35EC = .text:0x805C35EC; // type:function size:0x4 +fn_805C35F0 = .text:0x805C35F0; // type:function size:0x54 +fn_805C3644 = .text:0x805C3644; // type:function size:0x64 +fn_805C36A8 = .text:0x805C36A8; // type:function size:0x50 +fn_805C36F8 = .text:0x805C36F8; // type:function size:0x10 +fn_805C3708 = .text:0x805C3708; // type:function size:0x30 +fn_805C3738 = .text:0x805C3738; // type:function size:0x30 +fn_805C3768 = .text:0x805C3768; // type:function size:0x60 +fn_805C37C8 = .text:0x805C37C8; // type:function size:0xD0 +fn_805C3898 = .text:0x805C3898; // type:function size:0x1E0 +fn_805C3A78 = .text:0x805C3A78; // type:function size:0x8 +fn_805C3A80 = .text:0x805C3A80; // type:function size:0xAC +fn_805C3B2C = .text:0x805C3B2C; // type:function size:0x6C +fn_805C3B98 = .text:0x805C3B98; // type:function size:0x6C +fn_805C3C04 = .text:0x805C3C04; // type:function size:0x68 +fn_805C3C6C = .text:0x805C3C6C; // type:function size:0x2C +fn_805C3C98 = .text:0x805C3C98; // type:function size:0x8 +fn_805C3CA0 = .text:0x805C3CA0; // type:function size:0x134 +fn_805C3DD4 = .text:0x805C3DD4; // type:function size:0x4 +fn_805C3DD8 = .text:0x805C3DD8; // type:function size:0x14 +fn_805C3DEC = .text:0x805C3DEC; // type:function size:0x14 +fn_805C3E00 = .text:0x805C3E00; // type:function size:0x14 +fn_805C3E14 = .text:0x805C3E14; // type:function size:0x14 +fn_805C3E28 = .text:0x805C3E28; // type:function size:0x8 +fn_805C3E30 = .text:0x805C3E30; // type:function size:0x8 +fn_805C3E38 = .text:0x805C3E38; // type:function size:0x8 +fn_805C3E40 = .text:0x805C3E40; // type:function size:0x8 +fn_805C3E48 = .text:0x805C3E48; // type:function size:0x8 +fn_805C3E50 = .text:0x805C3E50; // type:function size:0x8 +fn_805C3E58 = .text:0x805C3E58; // type:function size:0x8 +fn_805C3E60 = .text:0x805C3E60; // type:function size:0x8 +fn_805C3E68 = .text:0x805C3E68; // type:function size:0x8 +fn_805C3E70 = .text:0x805C3E70; // type:function size:0x8 +fn_805C3E78 = .text:0x805C3E78; // type:function size:0x8 +fn_805C3E80 = .text:0x805C3E80; // type:function size:0x8 +fn_805C3E88 = .text:0x805C3E88; // type:function size:0x8 +fn_805C3E90 = .text:0x805C3E90; // type:function size:0x8 +fn_805C3E98 = .text:0x805C3E98; // type:function size:0x8 +fn_805C3EA0 = .text:0x805C3EA0; // type:function size:0x8 +fn_805C3EA8 = .text:0x805C3EA8; // type:function size:0x8 +fn_805C3EB0 = .text:0x805C3EB0; // type:function size:0x8 +fn_805C3EB8 = .text:0x805C3EB8; // type:function size:0x8 +fn_805C3EC0 = .text:0x805C3EC0; // type:function size:0x8 +fn_805C3EC8 = .text:0x805C3EC8; // type:function size:0x14 +fn_805C3EDC = .text:0x805C3EDC; // type:function size:0x14 +fn_805C3EF0 = .text:0x805C3EF0; // type:function size:0x8 +fn_805C3EF8 = .text:0x805C3EF8; // type:function size:0x8 +fn_805C3F00 = .text:0x805C3F00; // type:function size:0x8 +fn_805C3F08 = .text:0x805C3F08; // type:function size:0x8 +fn_805C3F10 = .text:0x805C3F10; // type:function size:0x8 +fn_805C3F18 = .text:0x805C3F18; // type:function size:0x8 +fn_805C3F20 = .text:0x805C3F20; // type:function size:0x8 +fn_805C3F28 = .text:0x805C3F28; // type:function size:0x8 +fn_805C3F30 = .text:0x805C3F30; // type:function size:0x8 +fn_805C3F38 = .text:0x805C3F38; // type:function size:0x8 +fn_805C3F40 = .text:0x805C3F40; // type:function size:0x8 +fn_805C3F48 = .text:0x805C3F48; // type:function size:0x8 +fn_805C3F50 = .text:0x805C3F50; // type:function size:0x8 +fn_805C3F58 = .text:0x805C3F58; // type:function size:0x8 +fn_805C3F60 = .text:0x805C3F60; // type:function size:0x8 +fn_805C3F68 = .text:0x805C3F68; // type:function size:0x14 +fn_805C3F7C = .text:0x805C3F7C; // type:function size:0x14 +fn_805C3F90 = .text:0x805C3F90; // type:function size:0x14 +fn_805C3FA4 = .text:0x805C3FA4; // type:function size:0x14 +fn_805C3FB8 = .text:0x805C3FB8; // type:function size:0x14 +fn_805C3FCC = .text:0x805C3FCC; // type:function size:0x14 +fn_805C3FE0 = .text:0x805C3FE0; // type:function size:0x14 +fn_805C3FF4 = .text:0x805C3FF4; // type:function size:0x14 +fn_805C4008 = .text:0x805C4008; // type:function size:0x14 +fn_805C401C = .text:0x805C401C; // type:function size:0x14 +fn_805C4030 = .text:0x805C4030; // type:function size:0x14 +fn_805C4044 = .text:0x805C4044; // type:function size:0x14 +fn_805C4058 = .text:0x805C4058; // type:function size:0x14 +fn_805C406C = .text:0x805C406C; // type:function size:0x14 +fn_805C4080 = .text:0x805C4080; // type:function size:0x14 +fn_805C4094 = .text:0x805C4094; // type:function size:0x8 +fn_805C409C = .text:0x805C409C; // type:function size:0x8 +fn_805C40A4 = .text:0x805C40A4; // type:function size:0x8 +fn_805C40AC = .text:0x805C40AC; // type:function size:0x8 +fn_805C40B4 = .text:0x805C40B4; // type:function size:0x8 +fn_805C40BC = .text:0x805C40BC; // type:function size:0x8 +fn_805C40C4 = .text:0x805C40C4; // type:function size:0xD4 +fn_805C4198 = .text:0x805C4198; // type:function size:0x58 +fn_805C41F0 = .text:0x805C41F0; // type:function size:0x58 +fn_805C4248 = .text:0x805C4248; // type:function size:0x58 +fn_805C42A0 = .text:0x805C42A0; // type:function size:0x60 +fn_805C4300 = .text:0x805C4300; // type:function size:0x58 +fn_805C4358 = .text:0x805C4358; // type:function size:0x50 +fn_805C43A8 = .text:0x805C43A8; // type:function size:0x30 +fn_805C43D8 = .text:0x805C43D8; // type:function size:0x30 +fn_805C4408 = .text:0x805C4408; // type:function size:0x60 +fn_805C4468 = .text:0x805C4468; // type:function size:0x50 +fn_805C44B8 = .text:0x805C44B8; // type:function size:0x30 +fn_805C44E8 = .text:0x805C44E8; // type:function size:0x30 +fn_805C4518 = .text:0x805C4518; // type:function size:0x50 +fn_805C4568 = .text:0x805C4568; // type:function size:0x40 +fn_805C45A8 = .text:0x805C45A8; // type:function size:0x14 +fn_805C45BC = .text:0x805C45BC; // type:function size:0xA0 +fn_805C465C = .text:0x805C465C; // type:function size:0x4 +fn_805C4660 = .text:0x805C4660; // type:function size:0x4 +fn_805C4664 = .text:0x805C4664; // type:function size:0x50 +fn_805C46B4 = .text:0x805C46B4; // type:function size:0xC4 +fn_805C4778 = .text:0x805C4778; // type:function size:0xAC +fn_805C4824 = .text:0x805C4824; // type:function size:0x4 +fn_805C4828 = .text:0x805C4828; // type:function size:0x4 +fn_805C482C = .text:0x805C482C; // type:function size:0xC0 +fn_805C48EC = .text:0x805C48EC; // type:function size:0xA8 +fn_805C4994 = .text:0x805C4994; // type:function size:0x5C +fn_805C49F0 = .text:0x805C49F0; // type:function size:0x30 +fn_805C4A20 = .text:0x805C4A20; // type:function size:0x5C +fn_805C4A7C = .text:0x805C4A7C; // type:function size:0x30 +fn_805C4AAC = .text:0x805C4AAC; // type:function size:0x4 +fn_805C4AB0 = .text:0x805C4AB0; // type:function size:0xAC +fn_805C4B5C = .text:0x805C4B5C; // type:function size:0xAC +fn_805C4C08 = .text:0x805C4C08; // type:function size:0xAC +fn_805C4CB4 = .text:0x805C4CB4; // type:function size:0x40 +fn_805C4CF4 = .text:0x805C4CF4; // type:function size:0x48 +fn_805C4D3C = .text:0x805C4D3C; // type:function size:0x58 +fn_805C4D94 = .text:0x805C4D94; // type:function size:0x18 +fn_805C4DAC = .text:0x805C4DAC; // type:function size:0xC +fn_805C4DB8 = .text:0x805C4DB8; // type:function size:0x2C +fn_805C4DE4 = .text:0x805C4DE4; // type:function size:0x1D0 +fn_805C4FB4 = .text:0x805C4FB4; // type:function size:0x13C +fn_805C50F0 = .text:0x805C50F0; // type:function size:0xAC +fn_805C519C = .text:0x805C519C; // type:function size:0x58 +fn_805C51F4 = .text:0x805C51F4; // type:function size:0x6C +fn_805C5260 = .text:0x805C5260; // type:function size:0x9C +fn_805C52FC = .text:0x805C52FC; // type:function size:0x40 +fn_805C533C = .text:0x805C533C; // type:function size:0x11C +fn_805C5458 = .text:0x805C5458; // type:function size:0xE0 +fn_805C5538 = .text:0x805C5538; // type:function size:0x108 +fn_805C5640 = .text:0x805C5640; // type:function size:0x1A8 +fn_805C57E8 = .text:0x805C57E8; // type:function size:0x58 +fn_805C5840 = .text:0x805C5840; // type:function size:0x50 +fn_805C5890 = .text:0x805C5890; // type:function size:0x5C +fn_805C58EC = .text:0x805C58EC; // type:function size:0x164 +fn_805C5A50 = .text:0x805C5A50; // type:function size:0x1A8 +fn_805C5BF8 = .text:0x805C5BF8; // type:function size:0x58 +fn_805C5C50 = .text:0x805C5C50; // type:function size:0x50 +fn_805C5CA0 = .text:0x805C5CA0; // type:function size:0x5C +fn_805C5CFC = .text:0x805C5CFC; // type:function size:0xA4 +fn_805C5DA0 = .text:0x805C5DA0; // type:function size:0x68 +fn_805C5E08 = .text:0x805C5E08; // type:function size:0x194 +fn_805C5F9C = .text:0x805C5F9C; // type:function size:0x60 +fn_805C5FFC = .text:0x805C5FFC; // type:function size:0xA0 +fn_805C609C = .text:0x805C609C; // type:function size:0x6C +fn_805C6108 = .text:0x805C6108; // type:function size:0x74 +fn_805C617C = .text:0x805C617C; // type:function size:0x48 +fn_805C61C4 = .text:0x805C61C4; // type:function size:0x194 +fn_805C6358 = .text:0x805C6358; // type:function size:0x60 +fn_805C63B8 = .text:0x805C63B8; // type:function size:0xA0 +fn_805C6458 = .text:0x805C6458; // type:function size:0x74 +fn_805C64CC = .text:0x805C64CC; // type:function size:0x60 +fn_805C652C = .text:0x805C652C; // type:function size:0x90 +fn_805C65BC = .text:0x805C65BC; // type:function size:0x40 +fn_805C65FC = .text:0x805C65FC; // type:function size:0x40 +fn_805C663C = .text:0x805C663C; // type:function size:0x134 +fn_805C6770 = .text:0x805C6770; // type:function size:0x4 +fn_805C6774 = .text:0x805C6774; // type:function size:0x14 +fn_805C6788 = .text:0x805C6788; // type:function size:0x14 +fn_805C679C = .text:0x805C679C; // type:function size:0x14 +fn_805C67B0 = .text:0x805C67B0; // type:function size:0x14 +fn_805C67C4 = .text:0x805C67C4; // type:function size:0x14 +fn_805C67D8 = .text:0x805C67D8; // type:function size:0x14 +fn_805C67EC = .text:0x805C67EC; // type:function size:0x14 +fn_805C6800 = .text:0x805C6800; // type:function size:0x14 +fn_805C6814 = .text:0x805C6814; // type:function size:0x14 +fn_805C6828 = .text:0x805C6828; // type:function size:0x18 +fn_805C6840 = .text:0x805C6840; // type:function size:0x18 +fn_805C6858 = .text:0x805C6858; // type:function size:0x58 +__ct__13RndAnimatableFv = .text:0x805C68B0; // type:function size:0x80 +fn_805C6930 = .text:0x805C6930; // type:function size:0x4 +fn_805C6934 = .text:0x805C6934; // type:function size:0x468 +fn_805C6D9C = .text:0x805C6D9C; // type:function size:0x64 +fn_805C6E00 = .text:0x805C6E00; // type:function size:0x48 +fn_805C6E48 = .text:0x805C6E48; // type:function size:0x4C +fn_805C6E94 = .text:0x805C6E94; // type:function size:0x60 +fn_805C6EF4 = .text:0x805C6EF4; // type:function size:0xBC +fn_805C6FB0 = .text:0x805C6FB0; // type:function size:0x108 +fn_805C70B8 = .text:0x805C70B8; // type:function size:0x154 +fn_805C720C = .text:0x805C720C; // type:function size:0x8 +fn_805C7214 = .text:0x805C7214; // type:function size:0x1C0 +fn_805C73D4 = .text:0x805C73D4; // type:function size:0x128 +fn_805C74FC = .text:0x805C74FC; // type:function size:0x2D4 +fn_805C77D0 = .text:0x805C77D0; // type:function size:0x3F4 +fn_805C7BC4 = .text:0x805C7BC4; // type:function size:0x8 +fn_805C7BCC = .text:0x805C7BCC; // type:function size:0x10 +fn_805C7BDC = .text:0x805C7BDC; // type:function size:0x90 +fn_805C7C6C = .text:0x805C7C6C; // type:function size:0x11C +fn_805C7D88 = .text:0x805C7D88; // type:function size:0x27C +fn_805C8004 = .text:0x805C8004; // type:function size:0x80 +fn_805C8084 = .text:0x805C8084; // type:function size:0x4C +fn_805C80D0 = .text:0x805C80D0; // type:function size:0x68 +fn_805C8138 = .text:0x805C8138; // type:function size:0x68 +fn_805C81A0 = .text:0x805C81A0; // type:function size:0xA0 +fn_805C8240 = .text:0x805C8240; // type:function size:0xB0 +fn_805C82F0 = .text:0x805C82F0; // type:function size:0x10 +fn_805C8300 = .text:0x805C8300; // type:function size:0xC0 +fn_805C83C0 = .text:0x805C83C0; // type:function size:0x208 +fn_805C85C8 = .text:0x805C85C8; // type:function size:0x60 +fn_805C8628 = .text:0x805C8628; // type:function size:0x134 +fn_805C875C = .text:0x805C875C; // type:function size:0x4C +fn_805C87A8 = .text:0x805C87A8; // type:function size:0x4 +fn_805C87AC = .text:0x805C87AC; // type:function size:0x4 +fn_805C87B0 = .text:0x805C87B0; // type:function size:0x14 +fn_805C87C4 = .text:0x805C87C4; // type:function size:0x14 +fn_805C87D8 = .text:0x805C87D8; // type:function size:0x14 +fn_805C87EC = .text:0x805C87EC; // type:function size:0x14 +fn_805C8800 = .text:0x805C8800; // type:function size:0x14 +fn_805C8814 = .text:0x805C8814; // type:function size:0x14 +fn_805C8828 = .text:0x805C8828; // type:function size:0x14 +fn_805C883C = .text:0x805C883C; // type:function size:0x14 +fn_805C8850 = .text:0x805C8850; // type:function size:0x90 +fn_805C88E0 = .text:0x805C88E0; // type:function size:0x58 +fn_805C8938 = .text:0x805C8938; // type:function size:0xD0 +fn_805C8A08 = .text:0x805C8A08; // type:function size:0x4 +fn_805C8A0C = .text:0x805C8A0C; // type:function size:0xF4 +fn_805C8B00 = .text:0x805C8B00; // type:function size:0x80 +fn_805C8B80 = .text:0x805C8B80; // type:function size:0x30 +fn_805C8BB0 = .text:0x805C8BB0; // type:function size:0x1BC +fn_805C8D6C = .text:0x805C8D6C; // type:function size:0x90 +fn_805C8DFC = .text:0x805C8DFC; // type:function size:0x8C +fn_805C8E88 = .text:0x805C8E88; // type:function size:0xA4 +fn_805C8F2C = .text:0x805C8F2C; // type:function size:0xCC +Handle__13RndAnimFilterFP9DataArrayb = .text:0x805C8FF8; // type:function size:0x17C +fn_805C9174 = .text:0x805C9174; // type:function size:0x18C +fn_805C9300 = .text:0x805C9300; // type:function size:0x50 +fn_805C9350 = .text:0x805C9350; // type:function size:0xD0 +fn_805C9420 = .text:0x805C9420; // type:function size:0x78 +fn_805C9498 = .text:0x805C9498; // type:function size:0x320 +fn_805C97B8 = .text:0x805C97B8; // type:function size:0x8C +fn_805C9844 = .text:0x805C9844; // type:function size:0x1C +fn_805C9860 = .text:0x805C9860; // type:function size:0x30 +fn_805C9890 = .text:0x805C9890; // type:function size:0x134 +fn_805C99C4 = .text:0x805C99C4; // type:function size:0x4 +fn_805C99C8 = .text:0x805C99C8; // type:function size:0x14 +fn_805C99DC = .text:0x805C99DC; // type:function size:0x14 +fn_805C99F0 = .text:0x805C99F0; // type:function size:0x14 +fn_805C9A04 = .text:0x805C9A04; // type:function size:0x14 +fn_805C9A18 = .text:0x805C9A18; // type:function size:0x14 +fn_805C9A2C = .text:0x805C9A2C; // type:function size:0x14 +fn_805C9A40 = .text:0x805C9A40; // type:function size:0x14 +fn_805C9A54 = .text:0x805C9A54; // type:function size:0x14 +Load__9RndBitmapFR9BinStreamRc = .text:0x805C9A68; // type:function size:0xCC +fn_805C9B34 = .text:0x805C9B34; // type:function size:0x94 +fn_805C9BC8 = .text:0x805C9BC8; // type:function size:0x54 +fn_805C9C1C = .text:0x805C9C1C; // type:function size:0x8C +fn_805C9CA8 = .text:0x805C9CA8; // type:function size:0x20 +PixelBytes__9RndBitmapCFv = .text:0x805C9CC8; // type:function size:0x10 +PaletteBytes__9RndBitmapCFv = .text:0x805C9CD8; // type:function size:0x38 +fn_805C9D10 = .text:0x805C9D10; // type:function size:0xD4 +fn_805C9DE4 = .text:0x805C9DE4; // type:function size:0x1DC +fn_805C9FC0 = .text:0x805C9FC0; // type:function size:0x4 +fn_805C9FC4 = .text:0x805C9FC4; // type:function size:0x138 +Reset__9RndBitmapFv = .text:0x805CA0FC; // type:function size:0x84 +Create__9RndBitmapFRC9RndBitmapUc14BitmapEncodingPv = .text:0x805CA180; // type:function size:0x160 +NumPaletteColors__9RndBitmapCFv = .text:0x805CA2E0; // type:function size:0x24 +AllocateBuffer__9RndBitmapFv = .text:0x805CA304; // type:function size:0x84 +Create__9RndBitmapFUsUsUsUc14BitmapEncodingPvPvPv = .text:0x805CA388; // type:function size:0x14C +Create__9RndBitmapFPv = .text:0x805CA4D4; // type:function size:0x158 +PixelOffset__9RndBitmapCFiiRb = .text:0x805CA62C; // type:function size:0x324 +PixelIndex__9RndBitmapCFii = .text:0x805CA950; // type:function size:0x68 +SetPixelIndex__9RndBitmapFiiUc = .text:0x805CA9B8; // type:function size:0x84 +GenerateMips__9RndBitmapFv = .text:0x805CAA3C; // type:function size:0x210 +fn_805CAC4C = .text:0x805CAC4C; // type:function size:0x14 +fn_805CAC60 = .text:0x805CAC60; // type:function size:0x74 +fn_805CACD4 = .text:0x805CACD4; // type:function size:0x8 +fn_805CACDC = .text:0x805CACDC; // type:function size:0x84 +fn_805CAD60 = .text:0x805CAD60; // type:function size:0x288 +fn_805CAFE8 = .text:0x805CAFE8; // type:function size:0xAC +fn_805CB094 = .text:0x805CB094; // type:function size:0xCC +fn_805CB160 = .text:0x805CB160; // type:function size:0x94 +Blt__9RndBitmapFRC9RndBitmapiiiiii = .text:0x805CB1F4; // type:function size:0x294 +PixelColor__9RndBitmapCFiiRUcRUcRUcRUc = .text:0x805CB488; // type:function size:0xAC +SetPixelColor__9RndBitmapFiiUcUcUcUc = .text:0x805CB534; // type:function size:0xAC +DecodeDxtColor__FPUciibRUcRUcRUcRUc = .text:0x805CB5E0; // type:function size:0x130 +fn_805CB710 = .text:0x805CB710; // type:function size:0x20 +fn_805CB730 = .text:0x805CB730; // type:function size:0x184 +DxtColor__9RndBitmapFUiUiRUcRUcRUcRUc = .text:0x805CB8B4; // type:function size:0x11C +PaletteOffset__9RndBitmapFi = .text:0x805CB9D0; // type:function size:0x40 +PaletteColor__9RndBitmapCFiRUcRUcRUcRUc = .text:0x805CBA10; // type:function size:0x68 +SetPaletteColor__9RndBitmapFiUcUcUcUc = .text:0x805CBA78; // type:function size:0x68 +fn_805CBAE0 = .text:0x805CBAE0; // type:function size:0x88 +fn_805CBB68 = .text:0x805CBB68; // type:function size:0x88 +fn_805CBBF0 = .text:0x805CBBF0; // type:function size:0x98 +fn_805CBC88 = .text:0x805CBC88; // type:function size:0x160 +fn_805CBDE8 = .text:0x805CBDE8; // type:function size:0x230 +fn_805CC018 = .text:0x805CC018; // type:function size:0x48 +fn_805CC060 = .text:0x805CC060; // type:function size:0x58 +fn_805CC0B8 = .text:0x805CC0B8; // type:function size:0x3C +fn_805CC0F4 = .text:0x805CC0F4; // type:function size:0x58 +fn_805CC14C = .text:0x805CC14C; // type:function size:0x34 +fn_805CC180 = .text:0x805CC180; // type:function size:0x58 +fn_805CC1D8 = .text:0x805CC1D8; // type:function size:0x3C +fn_805CC214 = .text:0x805CC214; // type:function size:0xC +fn_805CC220 = .text:0x805CC220; // type:function size:0xC +fn_805CC22C = .text:0x805CC22C; // type:function size:0xC +fn_805CC238 = .text:0x805CC238; // type:function size:0x158 +fn_805CC390 = .text:0x805CC390; // type:function size:0x5C +fn_805CC3EC = .text:0x805CC3EC; // type:function size:0x18 +fn_805CC404 = .text:0x805CC404; // type:function size:0x18 +fn_805CC41C = .text:0x805CC41C; // type:function size:0x58 +fn_805CC474 = .text:0x805CC474; // type:function size:0x18 +fn_805CC48C = .text:0x805CC48C; // type:function size:0x18 +fn_805CC4A4 = .text:0x805CC4A4; // type:function size:0x8 +fn_805CC4AC = .text:0x805CC4AC; // type:function size:0xD8 +fn_805CC584 = .text:0x805CC584; // type:function size:0xC +fn_805CC590 = .text:0x805CC590; // type:function size:0xC +fn_805CC59C = .text:0x805CC59C; // type:function size:0x10 +fn_805CC5AC = .text:0x805CC5AC; // type:function size:0x128 +fn_805CC6D4 = .text:0x805CC6D4; // type:function size:0x11C +fn_805CC7F0 = .text:0x805CC7F0; // type:function size:0x340 +fn_805CCB30 = .text:0x805CCB30; // type:function size:0xC +fn_805CCB3C = .text:0x805CCB3C; // type:function size:0x15C +fn_805CCC98 = .text:0x805CCC98; // type:function size:0x10 +fn_805CCCA8 = .text:0x805CCCA8; // type:function size:0xB8 +fn_805CCD60 = .text:0x805CCD60; // type:function size:0xD4 +fn_805CCE34 = .text:0x805CCE34; // type:function size:0x2C +fn_805CCE60 = .text:0x805CCE60; // type:function size:0xA0 +fn_805CCF00 = .text:0x805CCF00; // type:function size:0x80 +fn_805CCF80 = .text:0x805CCF80; // type:function size:0x4 +fn_805CCF84 = .text:0x805CCF84; // type:function size:0x194 +fn_805CD118 = .text:0x805CD118; // type:function size:0xCC +fn_805CD1E4 = .text:0x805CD1E4; // type:function size:0x168 +fn_805CD34C = .text:0x805CD34C; // type:function size:0xC4 +fn_805CD410 = .text:0x805CD410; // type:function size:0xF0 +fn_805CD500 = .text:0x805CD500; // type:function size:0x1D0 +fn_805CD6D0 = .text:0x805CD6D0; // type:function size:0x70 +fn_805CD740 = .text:0x805CD740; // type:function size:0x8C +fn_805CD7CC = .text:0x805CD7CC; // type:function size:0x2A4 +fn_805CDA70 = .text:0x805CDA70; // type:function size:0x104 +fn_805CDB74 = .text:0x805CDB74; // type:function size:0x74 +fn_805CDBE8 = .text:0x805CDBE8; // type:function size:0xB0 +fn_805CDC98 = .text:0x805CDC98; // type:function size:0x8 +fn_805CDCA0 = .text:0x805CDCA0; // type:function size:0x2D4 +fn_805CDF74 = .text:0x805CDF74; // type:function size:0x144 +fn_805CE0B8 = .text:0x805CE0B8; // type:function size:0x4 +fn_805CE0BC = .text:0x805CE0BC; // type:function size:0x84 +fn_805CE140 = .text:0x805CE140; // type:function size:0x14 +fn_805CE154 = .text:0x805CE154; // type:function size:0x14 +fn_805CE168 = .text:0x805CE168; // type:function size:0x14 +fn_805CE17C = .text:0x805CE17C; // type:function size:0x14 +fn_805CE190 = .text:0x805CE190; // type:function size:0x14 +fn_805CE1A4 = .text:0x805CE1A4; // type:function size:0x14 +fn_805CE1B8 = .text:0x805CE1B8; // type:function size:0x14 +fn_805CE1CC = .text:0x805CE1CC; // type:function size:0x14 +fn_805CE1E0 = .text:0x805CE1E0; // type:function size:0x14 +fn_805CE1F4 = .text:0x805CE1F4; // type:function size:0x14 +fn_805CE208 = .text:0x805CE208; // type:function size:0x14 +fn_805CE21C = .text:0x805CE21C; // type:function size:0x14 +fn_805CE230 = .text:0x805CE230; // type:function size:0xDC +fn_805CE30C = .text:0x805CE30C; // type:function size:0x8 +fn_805CE314 = .text:0x805CE314; // type:function size:0xD0 +fn_805CE3E4 = .text:0x805CE3E4; // type:function size:0xB4 +fn_805CE498 = .text:0x805CE498; // type:function size:0x68 +fn_805CE500 = .text:0x805CE500; // type:function size:0x4 +fn_805CE504 = .text:0x805CE504; // type:function size:0xF0 +fn_805CE5F4 = .text:0x805CE5F4; // type:function size:0x40 +fn_805CE634 = .text:0x805CE634; // type:function size:0x104 +fn_805CE738 = .text:0x805CE738; // type:function size:0xA4 +fn_805CE7DC = .text:0x805CE7DC; // type:function size:0x108 +fn_805CE8E4 = .text:0x805CE8E4; // type:function size:0x28 +fn_805CE90C = .text:0x805CE90C; // type:function size:0x24 +fn_805CE930 = .text:0x805CE930; // type:function size:0x6C +fn_805CE99C = .text:0x805CE99C; // type:function size:0xF8 +fn_805CEA94 = .text:0x805CEA94; // type:function size:0x128 +fn_805CEBBC = .text:0x805CEBBC; // type:function size:0xA4 +fn_805CEC60 = .text:0x805CEC60; // type:function size:0x80 +fn_805CECE0 = .text:0x805CECE0; // type:function size:0xB8 +fn_805CED98 = .text:0x805CED98; // type:function size:0x68 +fn_805CEE00 = .text:0x805CEE00; // type:function size:0x11C +fn_805CEF1C = .text:0x805CEF1C; // type:function size:0x8C +fn_805CEFA8 = .text:0x805CEFA8; // type:function size:0x58 +fn_805CF000 = .text:0x805CF000; // type:function size:0x34 +fn_805CF034 = .text:0x805CF034; // type:function size:0x134 +fn_805CF168 = .text:0x805CF168; // type:function size:0x4C +fn_805CF1B4 = .text:0x805CF1B4; // type:function size:0x4 +fn_805CF1B8 = .text:0x805CF1B8; // type:function size:0x14 +fn_805CF1CC = .text:0x805CF1CC; // type:function size:0x14 +fn_805CF1E0 = .text:0x805CF1E0; // type:function size:0x14 +fn_805CF1F4 = .text:0x805CF1F4; // type:function size:0x14 +fn_805CF208 = .text:0x805CF208; // type:function size:0x14 +fn_805CF21C = .text:0x805CF21C; // type:function size:0x14 +fn_805CF230 = .text:0x805CF230; // type:function size:0x14 +fn_805CF244 = .text:0x805CF244; // type:function size:0x14 +fn_805CF258 = .text:0x805CF258; // type:function size:0x14 +fn_805CF26C = .text:0x805CF26C; // type:function size:0x14 +__ct__11RndColorXfmFv = .text:0x805CF280; // type:function size:0xC0 +fn_805CF340 = .text:0x805CF340; // type:function size:0x8 +fn_805CF348 = .text:0x805CF348; // type:function size:0x1C +fn_805CF364 = .text:0x805CF364; // type:function size:0x330 +fn_805CF694 = .text:0x805CF694; // type:function size:0x138 +fn_805CF7CC = .text:0x805CF7CC; // type:function size:0x108 +fn_805CF8D4 = .text:0x805CF8D4; // type:function size:0x128 +fn_805CF9FC = .text:0x805CF9FC; // type:function size:0x80 +fn_805CFA7C = .text:0x805CFA7C; // type:function size:0x19C +fn_805CFC18 = .text:0x805CFC18; // type:function size:0x60 +fn_805CFC78 = .text:0x805CFC78; // type:function size:0xBC +DataContinue__FP9DataArray = .text:0x805CFD34; // type:function size:0x40 +DataBreak__FP9DataArray = .text:0x805CFD74; // type:function size:0x40 +DataStep__FP9DataArray = .text:0x805CFDB4; // type:function size:0x44 +DataNext__FP9DataArray = .text:0x805CFDF8; // type:function size:0x44 +DataFinish__FP9DataArray = .text:0x805CFE3C; // type:function size:0x44 +DataList__FP9DataArray = .text:0x805CFE80; // type:function size:0x40 +DataWhere__FP9DataArray = .text:0x805CFEC0; // type:function size:0x40 +DataSetBreak__FP9DataArray = .text:0x805CFF00; // type:function size:0x40 +DataBreakpoints__FP9DataArray = .text:0x805CFF40; // type:function size:0x40 +DataClear__FP9DataArray = .text:0x805CFF80; // type:function size:0xC8 +DataNop__FP9DataArray = .text:0x805D0048; // type:function size:0x8 +DataUp__FP9DataArray = .text:0x805D0050; // type:function size:0x44 +DataDown__FP9DataArray = .text:0x805D0094; // type:function size:0x44 +DataCppBreak__FP9DataArray = .text:0x805D00D8; // type:function size:0x38 +DataHelp__FP9DataArray = .text:0x805D0110; // type:function size:0x8C +__dt__Q210RndConsole10BreakpointFv = .text:0x805D019C; // type:function size:0x98 +MoveLevel__10RndConsoleFi = .text:0x805D0234; // type:function size:0x9C +InsertBreak__10RndConsoleFP9DataArrayi = .text:0x805D02D0; // type:function size:0x138 +fn_805D0408 = .text:0x805D0408; // type:function size:0x34 +fn_805D043C = .text:0x805D043C; // type:function size:0x4 +fn_805D0440 = .text:0x805D0440; // type:function size:0x4 +fn_805D0444 = .text:0x805D0444; // type:function size:0x54 +fn_805D0498 = .text:0x805D0498; // type:function size:0x64 +fn_805D04FC = .text:0x805D04FC; // type:function size:0x50 +fn_805D054C = .text:0x805D054C; // type:function size:0x10 +SetBreak__10RndConsoleFP9DataArray = .text:0x805D055C; // type:function size:0x234 +Clear__10RndConsoleFi = .text:0x805D0790; // type:function size:0x14C +fn_805D08DC = .text:0x805D08DC; // type:function size:0x4 +fn_805D08E0 = .text:0x805D08E0; // type:function size:0x4 +fn_805D08E4 = .text:0x805D08E4; // type:function size:0x50 +fn_805D0934 = .text:0x805D0934; // type:function size:0x6C +fn_805D09A0 = .text:0x805D09A0; // type:function size:0x2C +fn_805D09CC = .text:0x805D09CC; // type:function size:0x8 +fn_805D09D4 = .text:0x805D09D4; // type:function size:0xC +Breakpoints__10RndConsoleFv = .text:0x805D09E0; // type:function size:0xAC +Break__10RndConsoleFP9DataArray = .text:0x805D0A8C; // type:function size:0x21C +fn_805D0CA8 = .text:0x805D0CA8; // type:function size:0x8 +List__10RndConsoleFv = .text:0x805D0CB0; // type:function size:0x14C +MakeString__FPCcic_PCc = .text:0x805D0DFC; // type:function size:0x60 +fn_805D0E5C = .text:0x805D0E5C; // type:function size:0x8 +Where__10RndConsoleFv = .text:0x805D0E64; // type:function size:0x74 +Step__10RndConsoleFi = .text:0x805D0ED8; // type:function size:0x58 +Continue__10RndConsoleFv = .text:0x805D0F30; // type:function size:0x18 +Help__10RndConsoleF6Symbol = .text:0x805D0F48; // type:function size:0x344 +__ct__10RndConsoleFv = .text:0x805D128C; // type:function size:0x274 +fn_805D1500 = .text:0x805D1500; // type:function size:0x58 +fn_805D1558 = .text:0x805D1558; // type:function size:0x58 +fn_805D15B0 = .text:0x805D15B0; // type:function size:0x60 +fn_805D1610 = .text:0x805D1610; // type:function size:0x58 +fn_805D1668 = .text:0x805D1668; // type:function size:0x30 +fn_805D1698 = .text:0x805D1698; // type:function size:0x30 +fn_805D16C8 = .text:0x805D16C8; // type:function size:0x60 +__dt__10RndConsoleFv = .text:0x805D1728; // type:function size:0x90 +fn_805D17B8 = .text:0x805D17B8; // type:function size:0x10 +fn_805D17C8 = .text:0x805D17C8; // type:function size:0x4 +Handle__10RndConsoleFP9DataArrayb = .text:0x805D17CC; // type:function size:0xFC +OnMsg__10RndConsoleFRC14KeyboardKeyMsg = .text:0x805D18C8; // type:function size:0x5DC +fn_805D1EA4 = .text:0x805D1EA4; // type:function size:0x5C +fn_805D1F00 = .text:0x805D1F00; // type:function size:0x28C +fn_805D218C = .text:0x805D218C; // type:function size:0x4 +fn_805D2190 = .text:0x805D2190; // type:function size:0x58 +fn_805D21E8 = .text:0x805D21E8; // type:function size:0x4 +fn_805D21EC = .text:0x805D21EC; // type:function size:0x54 +fn_805D2240 = .text:0x805D2240; // type:function size:0x68 +__ct__6RndDirFv = .text:0x805D22A8; // type:function size:0x18C +fn_805D2434 = .text:0x805D2434; // type:function size:0x50 +fn_805D2484 = .text:0x805D2484; // type:function size:0x54 +fn_805D24D8 = .text:0x805D24D8; // type:function size:0x84 +fn_805D255C = .text:0x805D255C; // type:function size:0x80 +fn_805D25DC = .text:0x805D25DC; // type:function size:0x80 +fn_805D265C = .text:0x805D265C; // type:function size:0x44 +fn_805D26A0 = .text:0x805D26A0; // type:function size:0x2F4 +fn_805D2994 = .text:0x805D2994; // type:function size:0x74 +fn_805D2A08 = .text:0x805D2A08; // type:function size:0x78 +fn_805D2A80 = .text:0x805D2A80; // type:function size:0xCC +fn_805D2B4C = .text:0x805D2B4C; // type:function size:0xC +fn_805D2B58 = .text:0x805D2B58; // type:function size:0xA0 +fn_805D2BF8 = .text:0x805D2BF8; // type:function size:0xC +fn_805D2C04 = .text:0x805D2C04; // type:function size:0x84 +fn_805D2C88 = .text:0x805D2C88; // type:function size:0xD0 +fn_805D2D58 = .text:0x805D2D58; // type:function size:0x64 +fn_805D2DBC = .text:0x805D2DBC; // type:function size:0x20 +fn_805D2DDC = .text:0x805D2DDC; // type:function size:0x1C +fn_805D2DF8 = .text:0x805D2DF8; // type:function size:0xAC +fn_805D2EA4 = .text:0x805D2EA4; // type:function size:0x6C +fn_805D2F10 = .text:0x805D2F10; // type:function size:0xC +fn_805D2F1C = .text:0x805D2F1C; // type:function size:0x7C +fn_805D2F98 = .text:0x805D2F98; // type:function size:0x68 +fn_805D3000 = .text:0x805D3000; // type:function size:0x80 +fn_805D3080 = .text:0x805D3080; // type:function size:0x58 +fn_805D30D8 = .text:0x805D30D8; // type:function size:0x58 +fn_805D3130 = .text:0x805D3130; // type:function size:0xC +fn_805D313C = .text:0x805D313C; // type:function size:0x58 +fn_805D3194 = .text:0x805D3194; // type:function size:0x50 +fn_805D31E4 = .text:0x805D31E4; // type:function size:0xD0 +fn_805D32B4 = .text:0x805D32B4; // type:function size:0x78 +fn_805D332C = .text:0x805D332C; // type:function size:0x3C +fn_805D3368 = .text:0x805D3368; // type:function size:0x3C +fn_805D33A4 = .text:0x805D33A4; // type:function size:0x1A4 +fn_805D3548 = .text:0x805D3548; // type:function size:0x74 +fn_805D35BC = .text:0x805D35BC; // type:function size:0x3C +fn_805D35F8 = .text:0x805D35F8; // type:function size:0x3C +fn_805D3634 = .text:0x805D3634; // type:function size:0x50 +fn_805D3684 = .text:0x805D3684; // type:function size:0xD0 +fn_805D3754 = .text:0x805D3754; // type:function size:0x78 +fn_805D37CC = .text:0x805D37CC; // type:function size:0x80 +fn_805D384C = .text:0x805D384C; // type:function size:0x110 +fn_805D395C = .text:0x805D395C; // type:function size:0x110 +fn_805D3A6C = .text:0x805D3A6C; // type:function size:0x78 +fn_805D3AE4 = .text:0x805D3AE4; // type:function size:0xC8 +fn_805D3BAC = .text:0x805D3BAC; // type:function size:0x70 +fn_805D3C1C = .text:0x805D3C1C; // type:function size:0x78 +fn_805D3C94 = .text:0x805D3C94; // type:function size:0x84 +fn_805D3D18 = .text:0x805D3D18; // type:function size:0x60 +fn_805D3D78 = .text:0x805D3D78; // type:function size:0xA0 +fn_805D3E18 = .text:0x805D3E18; // type:function size:0x74 +fn_805D3E8C = .text:0x805D3E8C; // type:function size:0x60 +fn_805D3EEC = .text:0x805D3EEC; // type:function size:0x88 +fn_805D3F74 = .text:0x805D3F74; // type:function size:0xA8 +fn_805D401C = .text:0x805D401C; // type:function size:0x78 +fn_805D4094 = .text:0x805D4094; // type:function size:0x84 +fn_805D4118 = .text:0x805D4118; // type:function size:0x60 +fn_805D4178 = .text:0x805D4178; // type:function size:0xA0 +fn_805D4218 = .text:0x805D4218; // type:function size:0x74 +fn_805D428C = .text:0x805D428C; // type:function size:0x60 +fn_805D42EC = .text:0x805D42EC; // type:function size:0x88 +fn_805D4374 = .text:0x805D4374; // type:function size:0xB8 +fn_805D442C = .text:0x805D442C; // type:function size:0xEC +fn_805D4518 = .text:0x805D4518; // type:function size:0x88 +fn_805D45A0 = .text:0x805D45A0; // type:function size:0x74 +fn_805D4614 = .text:0x805D4614; // type:function size:0xA8 +fn_805D46BC = .text:0x805D46BC; // type:function size:0x88 +fn_805D4744 = .text:0x805D4744; // type:function size:0x78 +fn_805D47BC = .text:0x805D47BC; // type:function size:0x84 +fn_805D4840 = .text:0x805D4840; // type:function size:0x60 +fn_805D48A0 = .text:0x805D48A0; // type:function size:0xA0 +fn_805D4940 = .text:0x805D4940; // type:function size:0x74 +fn_805D49B4 = .text:0x805D49B4; // type:function size:0x60 +fn_805D4A14 = .text:0x805D4A14; // type:function size:0x88 +fn_805D4A9C = .text:0x805D4A9C; // type:function size:0x9C +fn_805D4B38 = .text:0x805D4B38; // type:function size:0xB8 +fn_805D4BF0 = .text:0x805D4BF0; // type:function size:0x4 +fn_805D4BF4 = .text:0x805D4BF4; // type:function size:0xB8 +fn_805D4CAC = .text:0x805D4CAC; // type:function size:0x21C +fn_805D4EC8 = .text:0x805D4EC8; // type:function size:0x4 +fn_805D4ECC = .text:0x805D4ECC; // type:function size:0x88 +fn_805D4F54 = .text:0x805D4F54; // type:function size:0x198 +fn_805D50EC = .text:0x805D50EC; // type:function size:0x48 +fn_805D5134 = .text:0x805D5134; // type:function size:0x4C +fn_805D5180 = .text:0x805D5180; // type:function size:0x30C +fn_805D548C = .text:0x805D548C; // type:function size:0x9C +GetRndDrawableAtIndex__FP9DataArrayi = .text:0x805D5528; // type:function size:0x34 +GetRndDrawable__FP8DataNodeP9DataArray = .text:0x805D555C; // type:function size:0x3C +fn_805D5598 = .text:0x805D5598; // type:function size:0x194 +fn_805D572C = .text:0x805D572C; // type:function size:0x1FC +fn_805D5928 = .text:0x805D5928; // type:function size:0x148 +fn_805D5A70 = .text:0x805D5A70; // type:function size:0xBC +fn_805D5B2C = .text:0x805D5B2C; // type:function size:0x148 +fn_805D5C74 = .text:0x805D5C74; // type:function size:0x8 +fn_805D5C7C = .text:0x805D5C7C; // type:function size:0x8 +fn_805D5C84 = .text:0x805D5C84; // type:function size:0x8 +fn_805D5C8C = .text:0x805D5C8C; // type:function size:0x8 +fn_805D5C94 = .text:0x805D5C94; // type:function size:0x8 +fn_805D5C9C = .text:0x805D5C9C; // type:function size:0x8 +fn_805D5CA4 = .text:0x805D5CA4; // type:function size:0x8 +fn_805D5CAC = .text:0x805D5CAC; // type:function size:0x8 +fn_805D5CB4 = .text:0x805D5CB4; // type:function size:0x14 +fn_805D5CC8 = .text:0x805D5CC8; // type:function size:0x14 +fn_805D5CDC = .text:0x805D5CDC; // type:function size:0x8 +fn_805D5CE4 = .text:0x805D5CE4; // type:function size:0x8 +fn_805D5CEC = .text:0x805D5CEC; // type:function size:0x8 +fn_805D5CF4 = .text:0x805D5CF4; // type:function size:0x8 +fn_805D5CFC = .text:0x805D5CFC; // type:function size:0x8 +fn_805D5D04 = .text:0x805D5D04; // type:function size:0x8 +fn_805D5D0C = .text:0x805D5D0C; // type:function size:0x14 +fn_805D5D20 = .text:0x805D5D20; // type:function size:0x14 +fn_805D5D34 = .text:0x805D5D34; // type:function size:0x14 +fn_805D5D48 = .text:0x805D5D48; // type:function size:0x14 +fn_805D5D5C = .text:0x805D5D5C; // type:function size:0x14 +fn_805D5D70 = .text:0x805D5D70; // type:function size:0x14 +fn_805D5D84 = .text:0x805D5D84; // type:function size:0x14 +fn_805D5D98 = .text:0x805D5D98; // type:function size:0x14 +fn_805D5DAC = .text:0x805D5DAC; // type:function size:0x14 +fn_805D5DC0 = .text:0x805D5DC0; // type:function size:0x14 +fn_805D5DD4 = .text:0x805D5DD4; // type:function size:0x14 +fn_805D5DE8 = .text:0x805D5DE8; // type:function size:0x14 +fn_805D5DFC = .text:0x805D5DFC; // type:function size:0x14 +fn_805D5E10 = .text:0x805D5E10; // type:function size:0x14 +fn_805D5E24 = .text:0x805D5E24; // type:function size:0x14 +fn_805D5E38 = .text:0x805D5E38; // type:function size:0x8 +fn_805D5E40 = .text:0x805D5E40; // type:function size:0x8 +__ct__7DOFProcFv = .text:0x805D5E48; // type:function size:0x3C +__dt__7DOFProcFv = .text:0x805D5E84; // type:function size:0x58 +Init__7DOFProcFv = .text:0x805D5EDC; // type:function size:0x3C +NewDOFProc__7DOFProcFv = .text:0x805D5F18; // type:function size:0x48 +StaticClassName__7DOFProcFv = .text:0x805D5F60; // type:function size:0x4C +Terminate__7DOFProcFv = .text:0x805D5FAC; // type:function size:0x4C +Params__7DOFProcFv = .text:0x805D5FF8; // type:function size:0xC +ClassName__7DOFProcCFv = .text:0x805D6004; // type:function size:0x4 +SetType__7DOFProcF6Symbol = .text:0x805D6008; // type:function size:0x128 +__ct__11RndDrawableFv = .text:0x805D6130; // type:function size:0xCC +DrawShowing__11RndDrawableFv = .text:0x805D61FC; // type:function size:0x8C +fn_805D6288 = .text:0x805D6288; // type:function size:0xAC +ListDrawChildren__11RndDrawableFv = .text:0x805D6334; // type:function size:0x30 +Highlight__11RndDrawableFv = .text:0x805D6364; // type:function size:0xD4 +Copy__11RndDrawableFPQ23Hmx6Objecti = .text:0x805D6438; // type:function size:0xC8 +Save__11RndDrawableFR9BinStream = .text:0x805D6500; // type:function size:0x4 +Load__11RndDrawableFR9BinStream = .text:0x805D6504; // type:function size:0x1EC +fn_805D66F0 = .text:0x805D66F0; // type:function size:0x8 +fn_805D66F8 = .text:0x805D66F8; // type:function size:0xEC +fn_805D67E4 = .text:0x805D67E4; // type:function size:0x94 +fn_805D6878 = .text:0x805D6878; // type:function size:0x70 +CollideList__11RndDrawableFi = .text:0x805D68E8; // type:function size:0xA8 +DrawPreClear__11RndDrawableFii = .text:0x805D6990; // type:function size:0x5C +fn_805D69EC = .text:0x805D69EC; // type:function size:0x4 +fn_805D69F0 = .text:0x805D69F0; // type:function size:0x54 +fn_805D6A44 = .text:0x805D6A44; // type:function size:0x64 +fn_805D6AA8 = .text:0x805D6AA8; // type:function size:0x50 +fn_805D6AF8 = .text:0x805D6AF8; // type:function size:0x10 +fn_805D6B08 = .text:0x805D6B08; // type:function size:0x48 +fn_805D6B50 = .text:0x805D6B50; // type:function size:0x4 +fn_805D6B54 = .text:0x805D6B54; // type:function size:0x40 +Handle__11RndDrawableFP9DataArrayb = .text:0x805D6B94; // type:function size:0x2A4 +OnCopySphere__11RndDrawableFPC9DataArray = .text:0x805D6E38; // type:function size:0x64 +OnGetSphere__11RndDrawableFPC9DataArray = .text:0x805D6E9C; // type:function size:0x104 +OnSetShowing__11RndDrawableFPC9DataArray = .text:0x805D6FA0; // type:function size:0x5C +OnShowing__11RndDrawableFPC9DataArray = .text:0x805D6FFC; // type:function size:0xC +OnZeroSphere__11RndDrawableFPC9DataArray = .text:0x805D7008; // type:function size:0x3C +SyncProperty__11RndDrawableFR8DataNodeP9DataArrayi6PropOp = .text:0x805D7044; // type:function size:0x17C +SetType__11RndDrawableF6Symbol = .text:0x805D71C0; // type:function size:0x144 +StaticClassName__11RndDrawableFv = .text:0x805D7304; // type:function size:0x4C +ClassName__11RndDrawableCFv = .text:0x805D7350; // type:function size:0x4 +fn_805D7354 = .text:0x805D7354; // type:function size:0x14 +fn_805D7368 = .text:0x805D7368; // type:function size:0x14 +fn_805D737C = .text:0x805D737C; // type:function size:0x14 +fn_805D7390 = .text:0x805D7390; // type:function size:0x14 +fn_805D73A4 = .text:0x805D73A4; // type:function size:0x14 +fn_805D73B8 = .text:0x805D73B8; // type:function size:0x14 +fn_805D73CC = .text:0x805D73CC; // type:function size:0x14 +ClassName__11RndDrawableFv = .text:0x805D73E0; // type:function size:0x14 +fn_805D73F4 = .text:0x805D73F4; // type:function size:0x14 +fn_805D7408 = .text:0x805D7408; // type:function size:0x8C +__ct__10RndEnvironFv = .text:0x805D7494; // type:function size:0x188 +fn_805D761C = .text:0x805D761C; // type:function size:0x80 +fn_805D769C = .text:0x805D769C; // type:function size:0x68 +__dt__10RndEnvironFv = .text:0x805D7704; // type:function size:0xCC +fn_805D77D0 = .text:0x805D77D0; // type:function size:0x4 +fn_805D77D4 = .text:0x805D77D4; // type:function size:0x284 +fn_805D7A58 = .text:0x805D7A58; // type:function size:0x40 +fn_805D7A98 = .text:0x805D7A98; // type:function size:0x104 +fn_805D7B9C = .text:0x805D7B9C; // type:function size:0x38 +fn_805D7BD4 = .text:0x805D7BD4; // type:function size:0x1B4 +fn_805D7D88 = .text:0x805D7D88; // type:function size:0x8 +fn_805D7D90 = .text:0x805D7D90; // type:function size:0xE0 +fn_805D7E70 = .text:0x805D7E70; // type:function size:0x48 +fn_805D7EB8 = .text:0x805D7EB8; // type:function size:0x80 +fn_805D7F38 = .text:0x805D7F38; // type:function size:0x70 +fn_805D7FA8 = .text:0x805D7FA8; // type:function size:0x8 +fn_805D7FB0 = .text:0x805D7FB0; // type:function size:0x8 +fn_805D7FB8 = .text:0x805D7FB8; // type:function size:0x28 +fn_805D7FE0 = .text:0x805D7FE0; // type:function size:0x94 +fn_805D8074 = .text:0x805D8074; // type:function size:0xA4 +fn_805D8118 = .text:0x805D8118; // type:function size:0x48 +fn_805D8160 = .text:0x805D8160; // type:function size:0x6C +fn_805D81CC = .text:0x805D81CC; // type:function size:0x134 +fn_805D8300 = .text:0x805D8300; // type:function size:0x98 +fn_805D8398 = .text:0x805D8398; // type:function size:0x4 +fn_805D839C = .text:0x805D839C; // type:function size:0x26C +fn_805D8608 = .text:0x805D8608; // type:function size:0x34 +fn_805D863C = .text:0x805D863C; // type:function size:0x3C +fn_805D8678 = .text:0x805D8678; // type:function size:0x40 +fn_805D86B8 = .text:0x805D86B8; // type:function size:0x208 +fn_805D88C0 = .text:0x805D88C0; // type:function size:0x50 +fn_805D8910 = .text:0x805D8910; // type:function size:0x50 +fn_805D8960 = .text:0x805D8960; // type:function size:0xD0 +fn_805D8A30 = .text:0x805D8A30; // type:function size:0x78 +fn_805D8AA8 = .text:0x805D8AA8; // type:function size:0x1FC +fn_805D8CA4 = .text:0x805D8CA4; // type:function size:0x264 +fn_805D8F08 = .text:0x805D8F08; // type:function size:0x24 +fn_805D8F2C = .text:0x805D8F2C; // type:function size:0x28 +fn_805D8F54 = .text:0x805D8F54; // type:function size:0x14 +fn_805D8F68 = .text:0x805D8F68; // type:function size:0x8 +fn_805D8F70 = .text:0x805D8F70; // type:function size:0x8D4 +fn_805D9844 = .text:0x805D9844; // type:function size:0xB0 +fn_805D98F4 = .text:0x805D98F4; // type:function size:0x4 +fn_805D98F8 = .text:0x805D98F8; // type:function size:0x128 +fn_805D9A20 = .text:0x805D9A20; // type:function size:0x44 +fn_805D9A64 = .text:0x805D9A64; // type:function size:0xC8 +fn_805D9B2C = .text:0x805D9B2C; // type:function size:0x80 +fn_805D9BAC = .text:0x805D9BAC; // type:function size:0x58 +fn_805D9C04 = .text:0x805D9C04; // type:function size:0x58 +fn_805D9C5C = .text:0x805D9C5C; // type:function size:0x80 +fn_805D9CDC = .text:0x805D9CDC; // type:function size:0x80 +fn_805D9D5C = .text:0x805D9D5C; // type:function size:0x58 +fn_805D9DB4 = .text:0x805D9DB4; // type:function size:0x54 +fn_805D9E08 = .text:0x805D9E08; // type:function size:0x5C +fn_805D9E64 = .text:0x805D9E64; // type:function size:0x6C +fn_805D9ED0 = .text:0x805D9ED0; // type:function size:0x28 +fn_805D9EF8 = .text:0x805D9EF8; // type:function size:0x8 +fn_805D9F00 = .text:0x805D9F00; // type:function size:0x3C +fn_805D9F3C = .text:0x805D9F3C; // type:function size:0x68 +fn_805D9FA4 = .text:0x805D9FA4; // type:function size:0x40 +fn_805D9FE4 = .text:0x805D9FE4; // type:function size:0x30 +fn_805DA014 = .text:0x805DA014; // type:function size:0x30 +fn_805DA044 = .text:0x805DA044; // type:function size:0x40 +fn_805DA084 = .text:0x805DA084; // type:function size:0x40 +fn_805DA0C4 = .text:0x805DA0C4; // type:function size:0x30 +fn_805DA0F4 = .text:0x805DA0F4; // type:function size:0x30 +fn_805DA124 = .text:0x805DA124; // type:function size:0x40 +fn_805DA164 = .text:0x805DA164; // type:function size:0xA4 +fn_805DA208 = .text:0x805DA208; // type:function size:0x8 +fn_805DA210 = .text:0x805DA210; // type:function size:0x4 +fn_805DA214 = .text:0x805DA214; // type:function size:0xCC +fn_805DA2E0 = .text:0x805DA2E0; // type:function size:0x40 +fn_805DA320 = .text:0x805DA320; // type:function size:0x104 +fn_805DA424 = .text:0x805DA424; // type:function size:0x80 +fn_805DA4A4 = .text:0x805DA4A4; // type:function size:0x44 +fn_805DA4E8 = .text:0x805DA4E8; // type:function size:0x4 +fn_805DA4EC = .text:0x805DA4EC; // type:function size:0x90 +fn_805DA57C = .text:0x805DA57C; // type:function size:0x4 +fn_805DA580 = .text:0x805DA580; // type:function size:0x40 +fn_805DA5C0 = .text:0x805DA5C0; // type:function size:0x8C +fn_805DA64C = .text:0x805DA64C; // type:function size:0x8 +fn_805DA654 = .text:0x805DA654; // type:function size:0x2C +fn_805DA680 = .text:0x805DA680; // type:function size:0x58 +fn_805DA6D8 = .text:0x805DA6D8; // type:function size:0x28 +fn_805DA700 = .text:0x805DA700; // type:function size:0x68 +fn_805DA768 = .text:0x805DA768; // type:function size:0x2C +fn_805DA794 = .text:0x805DA794; // type:function size:0x4C +fn_805DA7E0 = .text:0x805DA7E0; // type:function size:0x80 +fn_805DA860 = .text:0x805DA860; // type:function size:0x44 +fn_805DA8A4 = .text:0x805DA8A4; // type:function size:0x4 +fn_805DA8A8 = .text:0x805DA8A8; // type:function size:0x90 +fn_805DA938 = .text:0x805DA938; // type:function size:0x4 +fn_805DA93C = .text:0x805DA93C; // type:function size:0x40 +fn_805DA97C = .text:0x805DA97C; // type:function size:0x8C +fn_805DAA08 = .text:0x805DAA08; // type:function size:0x8 +fn_805DAA10 = .text:0x805DAA10; // type:function size:0x2C +fn_805DAA3C = .text:0x805DAA3C; // type:function size:0x58 +fn_805DAA94 = .text:0x805DAA94; // type:function size:0x28 +fn_805DAABC = .text:0x805DAABC; // type:function size:0x68 +fn_805DAB24 = .text:0x805DAB24; // type:function size:0x1C +fn_805DAB40 = .text:0x805DAB40; // type:function size:0x40 +fn_805DAB80 = .text:0x805DAB80; // type:function size:0xF4 +fn_805DAC74 = .text:0x805DAC74; // type:function size:0x30 +fn_805DACA4 = .text:0x805DACA4; // type:function size:0x30 +fn_805DACD4 = .text:0x805DACD4; // type:function size:0x30 +fn_805DAD04 = .text:0x805DAD04; // type:function size:0x30 +fn_805DAD34 = .text:0x805DAD34; // type:function size:0xF8 +fn_805DAE2C = .text:0x805DAE2C; // type:function size:0xB4 +fn_805DAEE0 = .text:0x805DAEE0; // type:function size:0x68 +fn_805DAF48 = .text:0x805DAF48; // type:function size:0xB4 +fn_805DAFFC = .text:0x805DAFFC; // type:function size:0x68 +fn_805DB064 = .text:0x805DB064; // type:function size:0x50 +fn_805DB0B4 = .text:0x805DB0B4; // type:function size:0x28 +fn_805DB0DC = .text:0x805DB0DC; // type:function size:0x4C +fn_805DB128 = .text:0x805DB128; // type:function size:0x24 +fn_805DB14C = .text:0x805DB14C; // type:function size:0x28 +fn_805DB174 = .text:0x805DB174; // type:function size:0x218 +fn_805DB38C = .text:0x805DB38C; // type:function size:0x68 +fn_805DB3F4 = .text:0x805DB3F4; // type:function size:0x13C +fn_805DB530 = .text:0x805DB530; // type:function size:0x110 +fn_805DB640 = .text:0x805DB640; // type:function size:0x24 +fn_805DB664 = .text:0x805DB664; // type:function size:0x28 +fn_805DB68C = .text:0x805DB68C; // type:function size:0x68 +fn_805DB6F4 = .text:0x805DB6F4; // type:function size:0x13C +fn_805DB830 = .text:0x805DB830; // type:function size:0x110 +fn_805DB940 = .text:0x805DB940; // type:function size:0xE4 +fn_805DBA24 = .text:0x805DBA24; // type:function size:0xF8 +fn_805DBB1C = .text:0x805DBB1C; // type:function size:0x40 +fn_805DBB5C = .text:0x805DBB5C; // type:function size:0x128 +fn_805DBC84 = .text:0x805DBC84; // type:function size:0xF8 +fn_805DBD7C = .text:0x805DBD7C; // type:function size:0x40 +fn_805DBDBC = .text:0x805DBDBC; // type:function size:0x128 +fn_805DBEE4 = .text:0x805DBEE4; // type:function size:0x11C +fn_805DC000 = .text:0x805DC000; // type:function size:0x8C +fn_805DC08C = .text:0x805DC08C; // type:function size:0xBC +fn_805DC148 = .text:0x805DC148; // type:function size:0x68 +fn_805DC1B0 = .text:0x805DC1B0; // type:function size:0x2C +fn_805DC1DC = .text:0x805DC1DC; // type:function size:0x58 +fn_805DC234 = .text:0x805DC234; // type:function size:0x160 +fn_805DC394 = .text:0x805DC394; // type:function size:0x5C +fn_805DC3F0 = .text:0x805DC3F0; // type:function size:0x10 +fn_805DC400 = .text:0x805DC400; // type:function size:0x44 +fn_805DC444 = .text:0x805DC444; // type:function size:0x28 +fn_805DC46C = .text:0x805DC46C; // type:function size:0x5C +fn_805DC4C8 = .text:0x805DC4C8; // type:function size:0x60 +fn_805DC528 = .text:0x805DC528; // type:function size:0x68 +fn_805DC590 = .text:0x805DC590; // type:function size:0x2C +fn_805DC5BC = .text:0x805DC5BC; // type:function size:0x58 +fn_805DC614 = .text:0x805DC614; // type:function size:0x160 +fn_805DC774 = .text:0x805DC774; // type:function size:0x5C +fn_805DC7D0 = .text:0x805DC7D0; // type:function size:0x10 +fn_805DC7E0 = .text:0x805DC7E0; // type:function size:0x44 +fn_805DC824 = .text:0x805DC824; // type:function size:0x28 +fn_805DC84C = .text:0x805DC84C; // type:function size:0x5C +fn_805DC8A8 = .text:0x805DC8A8; // type:function size:0x60 +fn_805DC908 = .text:0x805DC908; // type:function size:0x8 +fn_805DC910 = .text:0x805DC910; // type:function size:0x134 +fn_805DCA44 = .text:0x805DCA44; // type:function size:0x4C +fn_805DCA90 = .text:0x805DCA90; // type:function size:0x4 +fn_805DCA94 = .text:0x805DCA94; // type:function size:0x18C +fn_805DCC20 = .text:0x805DCC20; // type:function size:0x5C +fn_805DCC7C = .text:0x805DCC7C; // type:function size:0x54 +fn_805DCCD0 = .text:0x805DCCD0; // type:function size:0x28 +fn_805DCCF8 = .text:0x805DCCF8; // type:function size:0x68 +fn_805DCD60 = .text:0x805DCD60; // type:function size:0x114 +fn_805DCE74 = .text:0x805DCE74; // type:function size:0x5C +fn_805DCED0 = .text:0x805DCED0; // type:function size:0x5C +fn_805DCF2C = .text:0x805DCF2C; // type:function size:0x54 +fn_805DCF80 = .text:0x805DCF80; // type:function size:0x18C +fn_805DD10C = .text:0x805DD10C; // type:function size:0x5C +fn_805DD168 = .text:0x805DD168; // type:function size:0x54 +fn_805DD1BC = .text:0x805DD1BC; // type:function size:0x28 +fn_805DD1E4 = .text:0x805DD1E4; // type:function size:0x68 +fn_805DD24C = .text:0x805DD24C; // type:function size:0x114 +fn_805DD360 = .text:0x805DD360; // type:function size:0x5C +fn_805DD3BC = .text:0x805DD3BC; // type:function size:0x5C +fn_805DD418 = .text:0x805DD418; // type:function size:0x54 +fn_805DD46C = .text:0x805DD46C; // type:function size:0x14 +fn_805DD480 = .text:0x805DD480; // type:function size:0x14 +fn_805DD494 = .text:0x805DD494; // type:function size:0x14 +fn_805DD4A8 = .text:0x805DD4A8; // type:function size:0x14 +fn_805DD4BC = .text:0x805DD4BC; // type:function size:0x14 +fn_805DD4D0 = .text:0x805DD4D0; // type:function size:0x14 +fn_805DD4E4 = .text:0x805DD4E4; // type:function size:0x14 +fn_805DD4F8 = .text:0x805DD4F8; // type:function size:0x14 +fn_805DD50C = .text:0x805DD50C; // type:function size:0x14 +fn_805DD520 = .text:0x805DD520; // type:function size:0x14 +fn_805DD534 = .text:0x805DD534; // type:function size:0x108 +fn_805DD63C = .text:0x805DD63C; // type:function size:0x59C +fn_805DDBD8 = .text:0x805DDBD8; // type:function size:0x3C +fn_805DDC14 = .text:0x805DDC14; // type:function size:0x5C +fn_805DDC70 = .text:0x805DDC70; // type:function size:0x4 +fn_805DDC74 = .text:0x805DDC74; // type:function size:0x3C +fn_805DDCB0 = .text:0x805DDCB0; // type:function size:0x2C +fn_805DDCDC = .text:0x805DDCDC; // type:function size:0x48 +fn_805DDD24 = .text:0x805DDD24; // type:function size:0x50 +fn_805DDD74 = .text:0x805DDD74; // type:function size:0x8 +fn_805DDD7C = .text:0x805DDD7C; // type:function size:0x6C +fn_805DDDE8 = .text:0x805DDDE8; // type:function size:0x8 +fn_805DDDF0 = .text:0x805DDDF0; // type:function size:0x3C +fn_805DDE2C = .text:0x805DDE2C; // type:function size:0x5C +fn_805DDE88 = .text:0x805DDE88; // type:function size:0x4 +fn_805DDE8C = .text:0x805DDE8C; // type:function size:0x90 +fn_805DDF1C = .text:0x805DDF1C; // type:function size:0x4 +fn_805DDF20 = .text:0x805DDF20; // type:function size:0x40 +fn_805DDF60 = .text:0x805DDF60; // type:function size:0x8C +fn_805DDFEC = .text:0x805DDFEC; // type:function size:0x8 +fn_805DDFF4 = .text:0x805DDFF4; // type:function size:0x2C +fn_805DE020 = .text:0x805DE020; // type:function size:0x58 +fn_805DE078 = .text:0x805DE078; // type:function size:0x28 +fn_805DE0A0 = .text:0x805DE0A0; // type:function size:0x68 +fn_805DE108 = .text:0x805DE108; // type:function size:0x24 +fn_805DE12C = .text:0x805DE12C; // type:function size:0x4 +fn_805DE130 = .text:0x805DE130; // type:function size:0x3C +fn_805DE16C = .text:0x805DE16C; // type:function size:0x2C +fn_805DE198 = .text:0x805DE198; // type:function size:0x48 +fn_805DE1E0 = .text:0x805DE1E0; // type:function size:0x4C +fn_805DE22C = .text:0x805DE22C; // type:function size:0x8 +fn_805DE234 = .text:0x805DE234; // type:function size:0x3C +fn_805DE270 = .text:0x805DE270; // type:function size:0x5C +fn_805DE2CC = .text:0x805DE2CC; // type:function size:0x4 +fn_805DE2D0 = .text:0x805DE2D0; // type:function size:0x90 +fn_805DE360 = .text:0x805DE360; // type:function size:0x4 +fn_805DE364 = .text:0x805DE364; // type:function size:0x40 +fn_805DE3A4 = .text:0x805DE3A4; // type:function size:0x8C +fn_805DE430 = .text:0x805DE430; // type:function size:0x8 +fn_805DE438 = .text:0x805DE438; // type:function size:0x2C +fn_805DE464 = .text:0x805DE464; // type:function size:0x58 +fn_805DE4BC = .text:0x805DE4BC; // type:function size:0x28 +fn_805DE4E4 = .text:0x805DE4E4; // type:function size:0x68 +fn_805DE54C = .text:0x805DE54C; // type:function size:0x24 +fn_805DE570 = .text:0x805DE570; // type:function size:0x10 +fn_805DE580 = .text:0x805DE580; // type:function size:0x4C +fn_805DE5CC = .text:0x805DE5CC; // type:function size:0x78 +fn_805DE644 = .text:0x805DE644; // type:function size:0x2C +fn_805DE670 = .text:0x805DE670; // type:function size:0x4 +fn_805DE674 = .text:0x805DE674; // type:function size:0x3C +fn_805DE6B0 = .text:0x805DE6B0; // type:function size:0x2C +fn_805DE6DC = .text:0x805DE6DC; // type:function size:0x48 +fn_805DE724 = .text:0x805DE724; // type:function size:0x80 +fn_805DE7A4 = .text:0x805DE7A4; // type:function size:0x6C +fn_805DE810 = .text:0x805DE810; // type:function size:0x3C +fn_805DE84C = .text:0x805DE84C; // type:function size:0x8 +fn_805DE854 = .text:0x805DE854; // type:function size:0x40 +fn_805DE894 = .text:0x805DE894; // type:function size:0x34 +fn_805DE8C8 = .text:0x805DE8C8; // type:function size:0x44 +fn_805DE90C = .text:0x805DE90C; // type:function size:0x4C +fn_805DE958 = .text:0x805DE958; // type:function size:0x54 +fn_805DE9AC = .text:0x805DE9AC; // type:function size:0xCC +fn_805DEA78 = .text:0x805DEA78; // type:function size:0x84 +fn_805DEAFC = .text:0x805DEAFC; // type:function size:0xC0 +fn_805DEBBC = .text:0x805DEBBC; // type:function size:0x40 +fn_805DEBFC = .text:0x805DEBFC; // type:function size:0x104 +fn_805DED00 = .text:0x805DED00; // type:function size:0x70 +fn_805DED70 = .text:0x805DED70; // type:function size:0x40 +fn_805DEDB0 = .text:0x805DEDB0; // type:function size:0x104 +fn_805DEEB4 = .text:0x805DEEB4; // type:function size:0x104 +fn_805DEFB8 = .text:0x805DEFB8; // type:function size:0x58 +fn_805DF010 = .text:0x805DF010; // type:function size:0x68 +fn_805DF078 = .text:0x805DF078; // type:function size:0x68 +fn_805DF0E0 = .text:0x805DF0E0; // type:function size:0x248 +fn_805DF328 = .text:0x805DF328; // type:function size:0x68 +fn_805DF390 = .text:0x805DF390; // type:function size:0x50 +fn_805DF3E0 = .text:0x805DF3E0; // type:function size:0x30 +fn_805DF410 = .text:0x805DF410; // type:function size:0x30 +fn_805DF440 = .text:0x805DF440; // type:function size:0x40 +fn_805DF480 = .text:0x805DF480; // type:function size:0x68 +fn_805DF4E8 = .text:0x805DF4E8; // type:function size:0x50 +fn_805DF538 = .text:0x805DF538; // type:function size:0x30 +fn_805DF568 = .text:0x805DF568; // type:function size:0x30 +fn_805DF598 = .text:0x805DF598; // type:function size:0x40 +fn_805DF5D8 = .text:0x805DF5D8; // type:function size:0x50 +fn_805DF628 = .text:0x805DF628; // type:function size:0x30 +fn_805DF658 = .text:0x805DF658; // type:function size:0x30 +fn_805DF688 = .text:0x805DF688; // type:function size:0x40 +fn_805DF6C8 = .text:0x805DF6C8; // type:function size:0x48 +fn_805DF710 = .text:0x805DF710; // type:function size:0x6C +fn_805DF77C = .text:0x805DF77C; // type:function size:0x1EC +fn_805DF968 = .text:0x805DF968; // type:function size:0x170 +fn_805DFAD8 = .text:0x805DFAD8; // type:function size:0x14C +fn_805DFC24 = .text:0x805DFC24; // type:function size:0xB8 +fn_805DFCDC = .text:0x805DFCDC; // type:function size:0x4C +fn_805DFD28 = .text:0x805DFD28; // type:function size:0x78 +fn_805DFDA0 = .text:0x805DFDA0; // type:function size:0x2C +fn_805DFDCC = .text:0x805DFDCC; // type:function size:0x5C +fn_805DFE28 = .text:0x805DFE28; // type:function size:0x30 +fn_805DFE58 = .text:0x805DFE58; // type:function size:0x5C +fn_805DFEB4 = .text:0x805DFEB4; // type:function size:0x30 +fn_805DFEE4 = .text:0x805DFEE4; // type:function size:0xB8 +fn_805DFF9C = .text:0x805DFF9C; // type:function size:0x5C +fn_805DFFF8 = .text:0x805DFFF8; // type:function size:0x30 +fn_805E0028 = .text:0x805E0028; // type:function size:0x70 +fn_805E0098 = .text:0x805E0098; // type:function size:0x4 +fn_805E009C = .text:0x805E009C; // type:function size:0x15C +fn_805E01F8 = .text:0x805E01F8; // type:function size:0x3A8 +fn_805E05A0 = .text:0x805E05A0; // type:function size:0x60 +fn_805E0600 = .text:0x805E0600; // type:function size:0xB0 +fn_805E06B0 = .text:0x805E06B0; // type:function size:0x5C8 +fn_805E0C78 = .text:0x805E0C78; // type:function size:0x74 +fn_805E0CEC = .text:0x805E0CEC; // type:function size:0x3C +fn_805E0D28 = .text:0x805E0D28; // type:function size:0x11C +fn_805E0E44 = .text:0x805E0E44; // type:function size:0x74 +fn_805E0EB8 = .text:0x805E0EB8; // type:function size:0x4C +fn_805E0F04 = .text:0x805E0F04; // type:function size:0x40 +fn_805E0F44 = .text:0x805E0F44; // type:function size:0x104 +fn_805E1048 = .text:0x805E1048; // type:function size:0x74 +fn_805E10BC = .text:0x805E10BC; // type:function size:0x3C +fn_805E10F8 = .text:0x805E10F8; // type:function size:0x11C +fn_805E1214 = .text:0x805E1214; // type:function size:0x4 +fn_805E1218 = .text:0x805E1218; // type:function size:0x3C +fn_805E1254 = .text:0x805E1254; // type:function size:0xEC +fn_805E1340 = .text:0x805E1340; // type:function size:0x514 +fn_805E1854 = .text:0x805E1854; // type:function size:0x30 +fn_805E1884 = .text:0x805E1884; // type:function size:0x30 +fn_805E18B4 = .text:0x805E18B4; // type:function size:0x1FC +fn_805E1AB0 = .text:0x805E1AB0; // type:function size:0x2C +fn_805E1ADC = .text:0x805E1ADC; // type:function size:0x44 +fn_805E1B20 = .text:0x805E1B20; // type:function size:0x7C +fn_805E1B9C = .text:0x805E1B9C; // type:function size:0x308 +fn_805E1EA4 = .text:0x805E1EA4; // type:function size:0x80 +fn_805E1F24 = .text:0x805E1F24; // type:function size:0x4 +fn_805E1F28 = .text:0x805E1F28; // type:function size:0x228 +fn_805E2150 = .text:0x805E2150; // type:function size:0x70 +fn_805E21C0 = .text:0x805E21C0; // type:function size:0x248 +fn_805E2408 = .text:0x805E2408; // type:function size:0x2C +fn_805E2434 = .text:0x805E2434; // type:function size:0x84 +fn_805E24B8 = .text:0x805E24B8; // type:function size:0x2C +fn_805E24E4 = .text:0x805E24E4; // type:function size:0x84 +fn_805E2568 = .text:0x805E2568; // type:function size:0x2C +fn_805E2594 = .text:0x805E2594; // type:function size:0x84 +fn_805E2618 = .text:0x805E2618; // type:function size:0x44 +fn_805E265C = .text:0x805E265C; // type:function size:0x118 +fn_805E2774 = .text:0x805E2774; // type:function size:0x34 +fn_805E27A8 = .text:0x805E27A8; // type:function size:0x3C +fn_805E27E4 = .text:0x805E27E4; // type:function size:0x2D8 +fn_805E2ABC = .text:0x805E2ABC; // type:function size:0xBC +fn_805E2B78 = .text:0x805E2B78; // type:function size:0x150 +fn_805E2CC8 = .text:0x805E2CC8; // type:function size:0xBC +fn_805E2D84 = .text:0x805E2D84; // type:function size:0xBC +fn_805E2E40 = .text:0x805E2E40; // type:function size:0x114 +fn_805E2F54 = .text:0x805E2F54; // type:function size:0xC0 +fn_805E3014 = .text:0x805E3014; // type:function size:0x694 +fn_805E36A8 = .text:0x805E36A8; // type:function size:0x170 +fn_805E3818 = .text:0x805E3818; // type:function size:0x170 +fn_805E3988 = .text:0x805E3988; // type:function size:0x1E8 +fn_805E3B70 = .text:0x805E3B70; // type:function size:0xB0 +fn_805E3C20 = .text:0x805E3C20; // type:function size:0x44 +fn_805E3C64 = .text:0x805E3C64; // type:function size:0x170 +fn_805E3DD4 = .text:0x805E3DD4; // type:function size:0x1E8 +fn_805E3FBC = .text:0x805E3FBC; // type:function size:0xBC +fn_805E4078 = .text:0x805E4078; // type:function size:0x44 +fn_805E40BC = .text:0x805E40BC; // type:function size:0x14C +fn_805E4208 = .text:0x805E4208; // type:function size:0x84 +fn_805E428C = .text:0x805E428C; // type:function size:0x58 +fn_805E42E4 = .text:0x805E42E4; // type:function size:0x58 +fn_805E433C = .text:0x805E433C; // type:function size:0x160 +fn_805E449C = .text:0x805E449C; // type:function size:0x28 +fn_805E44C4 = .text:0x805E44C4; // type:function size:0x5C +fn_805E4520 = .text:0x805E4520; // type:function size:0x60 +fn_805E4580 = .text:0x805E4580; // type:function size:0x68 +fn_805E45E8 = .text:0x805E45E8; // type:function size:0x2C +fn_805E4614 = .text:0x805E4614; // type:function size:0x58 +fn_805E466C = .text:0x805E466C; // type:function size:0x160 +fn_805E47CC = .text:0x805E47CC; // type:function size:0x5C +fn_805E4828 = .text:0x805E4828; // type:function size:0x10 +fn_805E4838 = .text:0x805E4838; // type:function size:0x54 +fn_805E488C = .text:0x805E488C; // type:function size:0x68 +fn_805E48F4 = .text:0x805E48F4; // type:function size:0x68 +fn_805E495C = .text:0x805E495C; // type:function size:0x28 +fn_805E4984 = .text:0x805E4984; // type:function size:0x5C +fn_805E49E0 = .text:0x805E49E0; // type:function size:0x60 +fn_805E4A40 = .text:0x805E4A40; // type:function size:0x68 +fn_805E4AA8 = .text:0x805E4AA8; // type:function size:0x2C +fn_805E4AD4 = .text:0x805E4AD4; // type:function size:0x58 +fn_805E4B2C = .text:0x805E4B2C; // type:function size:0x160 +fn_805E4C8C = .text:0x805E4C8C; // type:function size:0x5C +fn_805E4CE8 = .text:0x805E4CE8; // type:function size:0x10 +fn_805E4CF8 = .text:0x805E4CF8; // type:function size:0x4C +fn_805E4D44 = .text:0x805E4D44; // type:function size:0x6C +fn_805E4DB0 = .text:0x805E4DB0; // type:function size:0x28 +fn_805E4DD8 = .text:0x805E4DD8; // type:function size:0x5C +fn_805E4E34 = .text:0x805E4E34; // type:function size:0x60 +fn_805E4E94 = .text:0x805E4E94; // type:function size:0x134 +fn_805E4FC8 = .text:0x805E4FC8; // type:function size:0x4 +fn_805E4FCC = .text:0x805E4FCC; // type:function size:0x198 +fn_805E5164 = .text:0x805E5164; // type:function size:0x5C +fn_805E51C0 = .text:0x805E51C0; // type:function size:0x54 +fn_805E5214 = .text:0x805E5214; // type:function size:0x28 +fn_805E523C = .text:0x805E523C; // type:function size:0x68 +fn_805E52A4 = .text:0x805E52A4; // type:function size:0x114 +fn_805E53B8 = .text:0x805E53B8; // type:function size:0x5C +fn_805E5414 = .text:0x805E5414; // type:function size:0x5C +fn_805E5470 = .text:0x805E5470; // type:function size:0x54 +fn_805E54C4 = .text:0x805E54C4; // type:function size:0x198 +fn_805E565C = .text:0x805E565C; // type:function size:0x5C +fn_805E56B8 = .text:0x805E56B8; // type:function size:0x54 +fn_805E570C = .text:0x805E570C; // type:function size:0x28 +fn_805E5734 = .text:0x805E5734; // type:function size:0x68 +fn_805E579C = .text:0x805E579C; // type:function size:0x114 +fn_805E58B0 = .text:0x805E58B0; // type:function size:0x5C +fn_805E590C = .text:0x805E590C; // type:function size:0x5C +fn_805E5968 = .text:0x805E5968; // type:function size:0x54 +fn_805E59BC = .text:0x805E59BC; // type:function size:0x14 +fn_805E59D0 = .text:0x805E59D0; // type:function size:0x14 +fn_805E59E4 = .text:0x805E59E4; // type:function size:0x14 +fn_805E59F8 = .text:0x805E59F8; // type:function size:0x14 +fn_805E5A0C = .text:0x805E5A0C; // type:function size:0x14 +fn_805E5A20 = .text:0x805E5A20; // type:function size:0x14 +fn_805E5A34 = .text:0x805E5A34; // type:function size:0x14 +fn_805E5A48 = .text:0x805E5A48; // type:function size:0x14 +fn_805E5A5C = .text:0x805E5A5C; // type:function size:0x14 +fn_805E5A70 = .text:0x805E5A70; // type:function size:0x14 +fn_805E5A84 = .text:0x805E5A84; // type:function size:0xE4 +fn_805E5B68 = .text:0x805E5B68; // type:function size:0xF0 +fn_805E5C58 = .text:0x805E5C58; // type:function size:0x4 +fn_805E5C5C = .text:0x805E5C5C; // type:function size:0x13C +fn_805E5D98 = .text:0x805E5D98; // type:function size:0x178 +fn_805E5F10 = .text:0x805E5F10; // type:function size:0x10C +fn_805E601C = .text:0x805E601C; // type:function size:0xB8 +fn_805E60D4 = .text:0x805E60D4; // type:function size:0x74 +fn_805E6148 = .text:0x805E6148; // type:function size:0x68 +fn_805E61B0 = .text:0x805E61B0; // type:function size:0x3F0 +fn_805E65A0 = .text:0x805E65A0; // type:function size:0x10 +fn_805E65B0 = .text:0x805E65B0; // type:function size:0x3C +fn_805E65EC = .text:0x805E65EC; // type:function size:0xC +fn_805E65F8 = .text:0x805E65F8; // type:function size:0x8 +fn_805E6600 = .text:0x805E6600; // type:function size:0x8 +fn_805E6608 = .text:0x805E6608; // type:function size:0x21C +fn_805E6824 = .text:0x805E6824; // type:function size:0xE0 +fn_805E6904 = .text:0x805E6904; // type:function size:0x94 +fn_805E6998 = .text:0x805E6998; // type:function size:0x8 +fn_805E69A0 = .text:0x805E69A0; // type:function size:0x98 +fn_805E6A38 = .text:0x805E6A38; // type:function size:0x1F4 +fn_805E6C2C = .text:0x805E6C2C; // type:function size:0x224 +fn_805E6E50 = .text:0x805E6E50; // type:function size:0x8 +fn_805E6E58 = .text:0x805E6E58; // type:function size:0x144 +fn_805E6F9C = .text:0x805E6F9C; // type:function size:0x4 +fn_805E6FA0 = .text:0x805E6FA0; // type:function size:0x14 +fn_805E6FB4 = .text:0x805E6FB4; // type:function size:0x14 +fn_805E6FC8 = .text:0x805E6FC8; // type:function size:0x14 +fn_805E6FDC = .text:0x805E6FDC; // type:function size:0x14 +fn_805E6FF0 = .text:0x805E6FF0; // type:function size:0x14 +fn_805E7004 = .text:0x805E7004; // type:function size:0x14 +fn_805E7018 = .text:0x805E7018; // type:function size:0x14 +fn_805E702C = .text:0x805E702C; // type:function size:0x14 +fn_805E7040 = .text:0x805E7040; // type:function size:0x14 +fn_805E7054 = .text:0x805E7054; // type:function size:0x14 +fn_805E7068 = .text:0x805E7068; // type:function size:0x14 +fn_805E707C = .text:0x805E707C; // type:function size:0x8 +fn_805E7084 = .text:0x805E7084; // type:function size:0x8 +fn_805E708C = .text:0x805E708C; // type:function size:0x8 +fn_805E7094 = .text:0x805E7094; // type:function size:0x8 +fn_805E709C = .text:0x805E709C; // type:function size:0x8 +fn_805E70A4 = .text:0x805E70A4; // type:function size:0x8 +fn_805E70AC = .text:0x805E70AC; // type:function size:0x8 +fn_805E70B4 = .text:0x805E70B4; // type:function size:0x8 +fn_805E70BC = .text:0x805E70BC; // type:function size:0x8 +fn_805E70C4 = .text:0x805E70C4; // type:function size:0x8 +fn_805E70CC = .text:0x805E70CC; // type:function size:0x8 +fn_805E70D4 = .text:0x805E70D4; // type:function size:0xB4 +fn_805E7188 = .text:0x805E7188; // type:function size:0x90 +fn_805E7218 = .text:0x805E7218; // type:function size:0xCC +fn_805E72E4 = .text:0x805E72E4; // type:function size:0x30 +fn_805E7314 = .text:0x805E7314; // type:function size:0xAC +fn_805E73C0 = .text:0x805E73C0; // type:function size:0x4C +fn_805E740C = .text:0x805E740C; // type:function size:0x110 +fn_805E751C = .text:0x805E751C; // type:function size:0x58 +fn_805E7574 = .text:0x805E7574; // type:function size:0x2C +fn_805E75A0 = .text:0x805E75A0; // type:function size:0x8 +fn_805E75A8 = .text:0x805E75A8; // type:function size:0x4 +fn_805E75AC = .text:0x805E75AC; // type:function size:0x40 +fn_805E75EC = .text:0x805E75EC; // type:function size:0x80 +fn_805E766C = .text:0x805E766C; // type:function size:0x68 +fn_805E76D4 = .text:0x805E76D4; // type:function size:0x8 +fn_805E76DC = .text:0x805E76DC; // type:function size:0x38 +fn_805E7714 = .text:0x805E7714; // type:function size:0x218 +fn_805E792C = .text:0x805E792C; // type:function size:0xB4 +fn_805E79E0 = .text:0x805E79E0; // type:function size:0x38 +fn_805E7A18 = .text:0x805E7A18; // type:function size:0x8C +fn_805E7AA4 = .text:0x805E7AA4; // type:function size:0xC +fn_805E7AB0 = .text:0x805E7AB0; // type:function size:0xC +fn_805E7ABC = .text:0x805E7ABC; // type:function size:0x68 +fn_805E7B24 = .text:0x805E7B24; // type:function size:0xA0 +fn_805E7BC4 = .text:0x805E7BC4; // type:function size:0x4C +fn_805E7C10 = .text:0x805E7C10; // type:function size:0x84 +fn_805E7C94 = .text:0x805E7C94; // type:function size:0x2F8 +fn_805E7F8C = .text:0x805E7F8C; // type:function size:0x78 +fn_805E8004 = .text:0x805E8004; // type:function size:0xA0 +fn_805E80A4 = .text:0x805E80A4; // type:function size:0x4 +fn_805E80A8 = .text:0x805E80A8; // type:function size:0x50 +fn_805E80F8 = .text:0x805E80F8; // type:function size:0x34 +fn_805E812C = .text:0x805E812C; // type:function size:0x60 +fn_805E818C = .text:0x805E818C; // type:function size:0x2C +fn_805E81B8 = .text:0x805E81B8; // type:function size:0x39C +fn_805E8554 = .text:0x805E8554; // type:function size:0x1C +fn_805E8570 = .text:0x805E8570; // type:function size:0x3C +fn_805E85AC = .text:0x805E85AC; // type:function size:0x40 +fn_805E85EC = .text:0x805E85EC; // type:function size:0x8C +fn_805E8678 = .text:0x805E8678; // type:function size:0x8 +fn_805E8680 = .text:0x805E8680; // type:function size:0x2C +fn_805E86AC = .text:0x805E86AC; // type:function size:0x58 +fn_805E8704 = .text:0x805E8704; // type:function size:0x28 +fn_805E872C = .text:0x805E872C; // type:function size:0x68 +fn_805E8794 = .text:0x805E8794; // type:function size:0x1C +fn_805E87B0 = .text:0x805E87B0; // type:function size:0xC4 +fn_805E8874 = .text:0x805E8874; // type:function size:0x4 +fn_805E8878 = .text:0x805E8878; // type:function size:0x90 +fn_805E8908 = .text:0x805E8908; // type:function size:0x4 +fn_805E890C = .text:0x805E890C; // type:function size:0x90 +fn_805E899C = .text:0x805E899C; // type:function size:0x14C +fn_805E8AE8 = .text:0x805E8AE8; // type:function size:0x70 +fn_805E8B58 = .text:0x805E8B58; // type:function size:0x48 +fn_805E8BA0 = .text:0x805E8BA0; // type:function size:0x58 +fn_805E8BF8 = .text:0x805E8BF8; // type:function size:0x30 +fn_805E8C28 = .text:0x805E8C28; // type:function size:0x58 +fn_805E8C80 = .text:0x805E8C80; // type:function size:0x4 +fn_805E8C84 = .text:0x805E8C84; // type:function size:0x8 +fn_805E8C8C = .text:0x805E8C8C; // type:function size:0x790 +fn_805E941C = .text:0x805E941C; // type:function size:0x80 +fn_805E949C = .text:0x805E949C; // type:function size:0x108 +fn_805E95A4 = .text:0x805E95A4; // type:function size:0x58 +fn_805E95FC = .text:0x805E95FC; // type:function size:0x1C +fn_805E9618 = .text:0x805E9618; // type:function size:0x28 +fn_805E9640 = .text:0x805E9640; // type:function size:0x8 +fn_805E9648 = .text:0x805E9648; // type:function size:0x4 +fn_805E964C = .text:0x805E964C; // type:function size:0x40 +fn_805E968C = .text:0x805E968C; // type:function size:0x80 +fn_805E970C = .text:0x805E970C; // type:function size:0x40 +fn_805E974C = .text:0x805E974C; // type:function size:0x104 +fn_805E9850 = .text:0x805E9850; // type:function size:0x10 +fn_805E9860 = .text:0x805E9860; // type:function size:0x28 +fn_805E9888 = .text:0x805E9888; // type:function size:0x170 +fn_805E99F8 = .text:0x805E99F8; // type:function size:0x84 +fn_805E9A7C = .text:0x805E9A7C; // type:function size:0x58 +fn_805E9AD4 = .text:0x805E9AD4; // type:function size:0x60 +fn_805E9B34 = .text:0x805E9B34; // type:function size:0x58 +fn_805E9B8C = .text:0x805E9B8C; // type:function size:0x58 +fn_805E9BE4 = .text:0x805E9BE4; // type:function size:0x50 +fn_805E9C34 = .text:0x805E9C34; // type:function size:0x44 +fn_805E9C78 = .text:0x805E9C78; // type:function size:0x3C +fn_805E9CB4 = .text:0x805E9CB4; // type:function size:0x70 +fn_805E9D24 = .text:0x805E9D24; // type:function size:0x14C +fn_805E9E70 = .text:0x805E9E70; // type:function size:0x8 +fn_805E9E78 = .text:0x805E9E78; // type:function size:0x12C +fn_805E9FA4 = .text:0x805E9FA4; // type:function size:0xDC +fn_805EA080 = .text:0x805EA080; // type:function size:0x58 +fn_805EA0D8 = .text:0x805EA0D8; // type:function size:0x60 +fn_805EA138 = .text:0x805EA138; // type:function size:0x58 +fn_805EA190 = .text:0x805EA190; // type:function size:0x58 +fn_805EA1E8 = .text:0x805EA1E8; // type:function size:0x80 +fn_805EA268 = .text:0x805EA268; // type:function size:0x44 +fn_805EA2AC = .text:0x805EA2AC; // type:function size:0x3C +fn_805EA2E8 = .text:0x805EA2E8; // type:function size:0x70 +fn_805EA358 = .text:0x805EA358; // type:function size:0x68 +fn_805EA3C0 = .text:0x805EA3C0; // type:function size:0x94 +__dt__7RndFontFv = .text:0x805EA454; // type:function size:0x110 +fn_805EA564 = .text:0x805EA564; // type:function size:0x8 +fn_805EA56C = .text:0x805EA56C; // type:function size:0x44 +Handle__7RndFontFP9DataArrayb = .text:0x805EA5B0; // type:function size:0x154 +fn_805EA704 = .text:0x805EA704; // type:function size:0x420 +fn_805EAB24 = .text:0x805EAB24; // type:function size:0xB0 +fn_805EABD4 = .text:0x805EABD4; // type:function size:0x68 +fn_805EAC3C = .text:0x805EAC3C; // type:function size:0x2C +fn_805EAC68 = .text:0x805EAC68; // type:function size:0x3B8 +fn_805EB020 = .text:0x805EB020; // type:function size:0xB0 +fn_805EB0D0 = .text:0x805EB0D0; // type:function size:0x6C +fn_805EB13C = .text:0x805EB13C; // type:function size:0x2C +fn_805EB168 = .text:0x805EB168; // type:function size:0x3B8 +fn_805EB520 = .text:0x805EB520; // type:function size:0x6C +fn_805EB58C = .text:0x805EB58C; // type:function size:0x2C +fn_805EB5B8 = .text:0x805EB5B8; // type:function size:0x4 +fn_805EB5BC = .text:0x805EB5BC; // type:function size:0x4C +fn_805EB608 = .text:0x805EB608; // type:function size:0x128 +fn_805EB730 = .text:0x805EB730; // type:function size:0x194 +fn_805EB8C4 = .text:0x805EB8C4; // type:function size:0x5C +fn_805EB920 = .text:0x805EB920; // type:function size:0x54 +fn_805EB974 = .text:0x805EB974; // type:function size:0x28 +fn_805EB99C = .text:0x805EB99C; // type:function size:0x68 +fn_805EBA04 = .text:0x805EBA04; // type:function size:0x5C +fn_805EBA60 = .text:0x805EBA60; // type:function size:0x114 +fn_805EBB74 = .text:0x805EBB74; // type:function size:0x60 +fn_805EBBD4 = .text:0x805EBBD4; // type:function size:0x5C +fn_805EBC30 = .text:0x805EBC30; // type:function size:0x54 +fn_805EBC84 = .text:0x805EBC84; // type:function size:0x15C +fn_805EBDE0 = .text:0x805EBDE0; // type:function size:0x44 +fn_805EBE24 = .text:0x805EBE24; // type:function size:0xB4 +fn_805EBED8 = .text:0x805EBED8; // type:function size:0x38 +fn_805EBF10 = .text:0x805EBF10; // type:function size:0x5C +fn_805EBF6C = .text:0x805EBF6C; // type:function size:0x3C +fn_805EBFA8 = .text:0x805EBFA8; // type:function size:0x108 +fn_805EC0B0 = .text:0x805EC0B0; // type:function size:0x15C +fn_805EC20C = .text:0x805EC20C; // type:function size:0x44 +fn_805EC250 = .text:0x805EC250; // type:function size:0x8 +fn_805EC258 = .text:0x805EC258; // type:function size:0x108 +fn_805EC360 = .text:0x805EC360; // type:function size:0x5C +fn_805EC3BC = .text:0x805EC3BC; // type:function size:0x2C +__ct__12RndGeneratorFv = .text:0x805EC3E8; // type:function size:0x1B8 +fn_805EC5A0 = .text:0x805EC5A0; // type:function size:0x80 +fn_805EC620 = .text:0x805EC620; // type:function size:0x84 +fn_805EC6A4 = .text:0x805EC6A4; // type:function size:0x58 +fn_805EC6FC = .text:0x805EC6FC; // type:function size:0x58 +fn_805EC754 = .text:0x805EC754; // type:function size:0x60 +fn_805EC7B4 = .text:0x805EC7B4; // type:function size:0x58 +fn_805EC80C = .text:0x805EC80C; // type:function size:0x68 +fn_805EC874 = .text:0x805EC874; // type:function size:0x6C +fn_805EC8E0 = .text:0x805EC8E0; // type:function size:0x30 +fn_805EC910 = .text:0x805EC910; // type:function size:0x30 +fn_805EC940 = .text:0x805EC940; // type:function size:0x60 +__dt__12RndGeneratorFv = .text:0x805EC9A0; // type:function size:0x128 +Copy__12RndGeneratorFR9BinStream = .text:0x805ECAC8; // type:function size:0x124 +fn_805ECBEC = .text:0x805ECBEC; // type:function size:0x8 +fn_805ECBF4 = .text:0x805ECBF4; // type:function size:0x8 +Print__12RndGeneratorFv = .text:0x805ECBFC; // type:function size:0x1DC +Save__12RndGeneratorFR9BinStream = .text:0x805ECDD8; // type:function size:0x4 +Load__12RndGeneratorFR9BinStream = .text:0x805ECDDC; // type:function size:0x310 +fn_805ED0EC = .text:0x805ED0EC; // type:function size:0x40 +fn_805ED12C = .text:0x805ED12C; // type:function size:0x104 +fn_805ED230 = .text:0x805ED230; // type:function size:0x40 +fn_805ED270 = .text:0x805ED270; // type:function size:0x104 +fn_805ED374 = .text:0x805ED374; // type:function size:0x7C +fn_805ED3F0 = .text:0x805ED3F0; // type:function size:0x4 +fn_805ED3F4 = .text:0x805ED3F4; // type:function size:0xE0 +fn_805ED4D4 = .text:0x805ED4D4; // type:function size:0x178 +fn_805ED64C = .text:0x805ED64C; // type:function size:0x4 +fn_805ED650 = .text:0x805ED650; // type:function size:0x54 +fn_805ED6A4 = .text:0x805ED6A4; // type:function size:0x64 +fn_805ED708 = .text:0x805ED708; // type:function size:0x50 +fn_805ED758 = .text:0x805ED758; // type:function size:0x10 +fn_805ED768 = .text:0x805ED768; // type:function size:0x58 +fn_805ED7C0 = .text:0x805ED7C0; // type:function size:0x8 +StartFrame__12RndGeneratorFv = .text:0x805ED7C8; // type:function size:0x5C +EndFrame__12RndGeneratorFv = .text:0x805ED824; // type:function size:0x5C +SetFrame__12RndGeneratorFd = .text:0x805ED880; // type:function size:0x26C +fn_805EDAEC = .text:0x805EDAEC; // type:function size:0x8 +fn_805EDAF4 = .text:0x805EDAF4; // type:function size:0x50 +fn_805EDB44 = .text:0x805EDB44; // type:function size:0x6C +fn_805EDBB0 = .text:0x805EDBB0; // type:function size:0x2C +fn_805EDBDC = .text:0x805EDBDC; // type:function size:0x4 +fn_805EDBE0 = .text:0x805EDBE0; // type:function size:0x8 +fn_805EDBE8 = .text:0x805EDBE8; // type:function size:0x58 +fn_805EDC40 = .text:0x805EDC40; // type:function size:0x60 +fn_805EDCA0 = .text:0x805EDCA0; // type:function size:0x5C +fn_805EDCFC = .text:0x805EDCFC; // type:function size:0x4C +fn_805EDD48 = .text:0x805EDD48; // type:function size:0x340 +fn_805EE088 = .text:0x805EE088; // type:function size:0x4C +fn_805EE0D4 = .text:0x805EE0D4; // type:function size:0x70 +fn_805EE144 = .text:0x805EE144; // type:function size:0x30 +fn_805EE174 = .text:0x805EE174; // type:function size:0x2C +fn_805EE1A0 = .text:0x805EE1A0; // type:function size:0xAC +fn_805EE24C = .text:0x805EE24C; // type:function size:0x80 +fn_805EE2CC = .text:0x805EE2CC; // type:function size:0x194 +Handle__12RndGeneratorFP9DataArrayb = .text:0x805EE460; // type:function size:0x394 +fn_805EE7F4 = .text:0x805EE7F4; // type:function size:0x64 +fn_805EE858 = .text:0x805EE858; // type:function size:0x34 +fn_805EE88C = .text:0x805EE88C; // type:function size:0x3C +fn_805EE8C8 = .text:0x805EE8C8; // type:function size:0x74 +fn_805EE93C = .text:0x805EE93C; // type:function size:0xC +fn_805EE948 = .text:0x805EE948; // type:function size:0x74 +fn_805EE9BC = .text:0x805EE9BC; // type:function size:0xC +fn_805EE9C8 = .text:0x805EE9C8; // type:function size:0x90 +fn_805EEA58 = .text:0x805EEA58; // type:function size:0x10 +fn_805EEA68 = .text:0x805EEA68; // type:function size:0x50 +SyncProperty__12RndGeneratorFiR9DataArrayii = .text:0x805EEAB8; // type:function size:0xDC +fn_805EEB94 = .text:0x805EEB94; // type:function size:0x6C +fn_805EEC00 = .text:0x805EEC00; // type:function size:0x70 +fn_805EEC70 = .text:0x805EEC70; // type:function size:0x68 +Highlight__12RndGeneratorFv = .text:0x805EECD8; // type:function size:0x8 +SetType__12RndGeneratorFP6Symbol = .text:0x805EECE0; // type:function size:0x134 +StaticClassName__12RndGeneratorFv = .text:0x805EEE14; // type:function size:0x4C +ClassName__12RndGeneratorFv = .text:0x805EEE60; // type:function size:0x4 +fn_805EEE64 = .text:0x805EEE64; // type:function size:0x8 +fn_805EEE6C = .text:0x805EEE6C; // type:function size:0x8 +fn_805EEE74 = .text:0x805EEE74; // type:function size:0x8 +fn_805EEE7C = .text:0x805EEE7C; // type:function size:0x8 +Copy__12RndGeneratorFPQ23Hmx6Objecti = .text:0x805EEE84; // type:function size:0x8 +fn_805EEE8C = .text:0x805EEE8C; // type:function size:0x8 +fn_805EEE94 = .text:0x805EEE94; // type:function size:0x8 +fn_805EEE9C = .text:0x805EEE9C; // type:function size:0x8 +fn_805EEEA4 = .text:0x805EEEA4; // type:function size:0x8 +fn_805EEEAC = .text:0x805EEEAC; // type:function size:0x8 +Replace__16RndTransformableFv = .text:0x805EEEB4; // type:function size:0x14 +fn_805EEEC8 = .text:0x805EEEC8; // type:function size:0x14 +fn_805EEEDC = .text:0x805EEEDC; // type:function size:0x14 +fn_805EEEF0 = .text:0x805EEEF0; // type:function size:0x14 +fn_805EEF04 = .text:0x805EEF04; // type:function size:0x14 +fn_805EEF18 = .text:0x805EEF18; // type:function size:0x14 +fn_805EEF2C = .text:0x805EEF2C; // type:function size:0x14 +fn_805EEF40 = .text:0x805EEF40; // type:function size:0x14 +fn_805EEF54 = .text:0x805EEF54; // type:function size:0x14 +fn_805EEF68 = .text:0x805EEF68; // type:function size:0x14 +fn_805EEF7C = .text:0x805EEF7C; // type:function size:0x14 +fn_805EEF90 = .text:0x805EEF90; // type:function size:0x14 +fn_805EEFA4 = .text:0x805EEFA4; // type:function size:0x8 +fn_805EEFAC = .text:0x805EEFAC; // type:function size:0x8 +fn_805EEFB4 = .text:0x805EEFB4; // type:function size:0x8 +fn_805EEFBC = .text:0x805EEFBC; // type:function size:0x8 +fn_805EEFC4 = .text:0x805EEFC4; // type:function size:0x8 +fn_805EEFCC = .text:0x805EEFCC; // type:function size:0x8 +fn_805EEFD4 = .text:0x805EEFD4; // type:function size:0x8 +fn_805EEFDC = .text:0x805EEFDC; // type:function size:0x8 +fn_805EEFE4 = .text:0x805EEFE4; // type:function size:0x8 +fn_805EEFEC = .text:0x805EEFEC; // type:function size:0x8 +fn_805EEFF4 = .text:0x805EEFF4; // type:function size:0x8 +fn_805EEFFC = .text:0x805EEFFC; // type:function size:0x8 +fn_805EF004 = .text:0x805EF004; // type:function size:0x8 +fn_805EF00C = .text:0x805EF00C; // type:function size:0x38 +fn_805EF044 = .text:0x805EF044; // type:function size:0x90 +fn_805EF0D4 = .text:0x805EF0D4; // type:function size:0x58 +fn_805EF12C = .text:0x805EF12C; // type:function size:0x7C +fn_805EF1A8 = .text:0x805EF1A8; // type:function size:0x30 +fn_805EF1D8 = .text:0x805EF1D8; // type:function size:0x3C +fn_805EF214 = .text:0x805EF214; // type:function size:0x54 +fn_805EF268 = .text:0x805EF268; // type:function size:0x2C +fn_805EF294 = .text:0x805EF294; // type:function size:0x64 +fn_805EF2F8 = .text:0x805EF2F8; // type:function size:0x68 +fn_805EF360 = .text:0x805EF360; // type:function size:0x8C +fn_805EF3EC = .text:0x805EF3EC; // type:function size:0x10 +fn_805EF3FC = .text:0x805EF3FC; // type:function size:0x7C +fn_805EF478 = .text:0x805EF478; // type:function size:0x74 +fn_805EF4EC = .text:0x805EF4EC; // type:function size:0x74 +fn_805EF560 = .text:0x805EF560; // type:function size:0x74 +fn_805EF5D4 = .text:0x805EF5D4; // type:function size:0x68 +fn_805EF63C = .text:0x805EF63C; // type:function size:0x58 +fn_805EF694 = .text:0x805EF694; // type:function size:0x10 +fn_805EF6A4 = .text:0x805EF6A4; // type:function size:0x48 +fn_805EF6EC = .text:0x805EF6EC; // type:function size:0x58 +fn_805EF744 = .text:0x805EF744; // type:function size:0x10 +fn_805EF754 = .text:0x805EF754; // type:function size:0x84 +fn_805EF7D8 = .text:0x805EF7D8; // type:function size:0x58 +fn_805EF830 = .text:0x805EF830; // type:function size:0x58 +fn_805EF888 = .text:0x805EF888; // type:function size:0x60 +fn_805EF8E8 = .text:0x805EF8E8; // type:function size:0x58 +fn_805EF940 = .text:0x805EF940; // type:function size:0x30 +fn_805EF970 = .text:0x805EF970; // type:function size:0x30 +fn_805EF9A0 = .text:0x805EF9A0; // type:function size:0x60 +fn_805EFA00 = .text:0x805EFA00; // type:function size:0x68 +fn_805EFA68 = .text:0x805EFA68; // type:function size:0x198 +fn_805EFC00 = .text:0x805EFC00; // type:function size:0x4 +fn_805EFC04 = .text:0x805EFC04; // type:function size:0x11C +fn_805EFD20 = .text:0x805EFD20; // type:function size:0x10C +fn_805EFE2C = .text:0x805EFE2C; // type:function size:0x140 +fn_805EFF6C = .text:0x805EFF6C; // type:function size:0x94 +fn_805F0000 = .text:0x805F0000; // type:function size:0x6C +fn_805F006C = .text:0x805F006C; // type:function size:0x38 +fn_805F00A4 = .text:0x805F00A4; // type:function size:0x128 +fn_805F01CC = .text:0x805F01CC; // type:function size:0x4C +fn_805F0218 = .text:0x805F0218; // type:function size:0x98 +fn_805F02B0 = .text:0x805F02B0; // type:function size:0x158 +fn_805F0408 = .text:0x805F0408; // type:function size:0x68 +fn_805F0470 = .text:0x805F0470; // type:function size:0x24 +fn_805F0494 = .text:0x805F0494; // type:function size:0x60 +fn_805F04F4 = .text:0x805F04F4; // type:function size:0x160 +fn_805F0654 = .text:0x805F0654; // type:function size:0x9C +fn_805F06F0 = .text:0x805F06F0; // type:function size:0x68 +fn_805F0758 = .text:0x805F0758; // type:function size:0x68 +fn_805F07C0 = .text:0x805F07C0; // type:function size:0xA8 +fn_805F0868 = .text:0x805F0868; // type:function size:0x88 +fn_805F08F0 = .text:0x805F08F0; // type:function size:0x6C +fn_805F095C = .text:0x805F095C; // type:function size:0x18 +fn_805F0974 = .text:0x805F0974; // type:function size:0x1FC +fn_805F0B70 = .text:0x805F0B70; // type:function size:0x90 +fn_805F0C00 = .text:0x805F0C00; // type:function size:0x88 +fn_805F0C88 = .text:0x805F0C88; // type:function size:0xB8 +fn_805F0D40 = .text:0x805F0D40; // type:function size:0xBC +fn_805F0DFC = .text:0x805F0DFC; // type:function size:0x80 +fn_805F0E7C = .text:0x805F0E7C; // type:function size:0x110 +fn_805F0F8C = .text:0x805F0F8C; // type:function size:0x110 +fn_805F109C = .text:0x805F109C; // type:function size:0x354 +fn_805F13F0 = .text:0x805F13F0; // type:function size:0x118 +fn_805F1508 = .text:0x805F1508; // type:function size:0x314 +fn_805F181C = .text:0x805F181C; // type:function size:0x8 +fn_805F1824 = .text:0x805F1824; // type:function size:0x134 +fn_805F1958 = .text:0x805F1958; // type:function size:0x4 +fn_805F195C = .text:0x805F195C; // type:function size:0x8 +fn_805F1964 = .text:0x805F1964; // type:function size:0x8 +fn_805F196C = .text:0x805F196C; // type:function size:0x8 +fn_805F1974 = .text:0x805F1974; // type:function size:0x8 +fn_805F197C = .text:0x805F197C; // type:function size:0x8 +fn_805F1984 = .text:0x805F1984; // type:function size:0x8 +fn_805F198C = .text:0x805F198C; // type:function size:0x8 +fn_805F1994 = .text:0x805F1994; // type:function size:0x8 +fn_805F199C = .text:0x805F199C; // type:function size:0x8 +fn_805F19A4 = .text:0x805F19A4; // type:function size:0x8 +fn_805F19AC = .text:0x805F19AC; // type:function size:0x8 +fn_805F19B4 = .text:0x805F19B4; // type:function size:0x8 +fn_805F19BC = .text:0x805F19BC; // type:function size:0x8 +fn_805F19C4 = .text:0x805F19C4; // type:function size:0x8 +fn_805F19CC = .text:0x805F19CC; // type:function size:0x8 +fn_805F19D4 = .text:0x805F19D4; // type:function size:0x8 +fn_805F19DC = .text:0x805F19DC; // type:function size:0x8 +fn_805F19E4 = .text:0x805F19E4; // type:function size:0x8 +fn_805F19EC = .text:0x805F19EC; // type:function size:0x14 +fn_805F1A00 = .text:0x805F1A00; // type:function size:0x14 +fn_805F1A14 = .text:0x805F1A14; // type:function size:0x14 +fn_805F1A28 = .text:0x805F1A28; // type:function size:0x14 +fn_805F1A3C = .text:0x805F1A3C; // type:function size:0x14 +fn_805F1A50 = .text:0x805F1A50; // type:function size:0x14 +fn_805F1A64 = .text:0x805F1A64; // type:function size:0x14 +fn_805F1A78 = .text:0x805F1A78; // type:function size:0x14 +fn_805F1A8C = .text:0x805F1A8C; // type:function size:0x14 +fn_805F1AA0 = .text:0x805F1AA0; // type:function size:0x14 +fn_805F1AB4 = .text:0x805F1AB4; // type:function size:0x14 +fn_805F1AC8 = .text:0x805F1AC8; // type:function size:0x14 +fn_805F1ADC = .text:0x805F1ADC; // type:function size:0x8 +fn_805F1AE4 = .text:0x805F1AE4; // type:function size:0x8 +fn_805F1AEC = .text:0x805F1AEC; // type:function size:0x8 +fn_805F1AF4 = .text:0x805F1AF4; // type:function size:0x8 +fn_805F1AFC = .text:0x805F1AFC; // type:function size:0x8 +fn_805F1B04 = .text:0x805F1B04; // type:function size:0x8 +fn_805F1B0C = .text:0x805F1B0C; // type:function size:0x8 +fn_805F1B14 = .text:0x805F1B14; // type:function size:0x8 +fn_805F1B1C = .text:0x805F1B1C; // type:function size:0x8 +fn_805F1B24 = .text:0x805F1B24; // type:function size:0x8 +__ct__11HiResScreenFv = .text:0x805F1B2C; // type:function size:0x84 +fn_805F1BB0 = .text:0x805F1BB0; // type:function size:0x5C +fn_805F1C0C = .text:0x805F1C0C; // type:function size:0x4 +fn_805F1C10 = .text:0x805F1C10; // type:function size:0x50 +fn_805F1C60 = .text:0x805F1C60; // type:function size:0x44 +fn_805F1CA4 = .text:0x805F1CA4; // type:function size:0x14 +fn_805F1CB8 = .text:0x805F1CB8; // type:function size:0x28 +fn_805F1CE0 = .text:0x805F1CE0; // type:function size:0x28 +fn_805F1D08 = .text:0x805F1D08; // type:function size:0x3BC +fn_805F20C4 = .text:0x805F20C4; // type:function size:0x24 +fn_805F20E8 = .text:0x805F20E8; // type:function size:0x48 +fn_805F2130 = .text:0x805F2130; // type:function size:0x2E0 +fn_805F2410 = .text:0x805F2410; // type:function size:0xAC +fn_805F24BC = .text:0x805F24BC; // type:function size:0x80 +fn_805F253C = .text:0x805F253C; // type:function size:0x100 +fn_805F263C = .text:0x805F263C; // type:function size:0xC0 +fn_805F26FC = .text:0x805F26FC; // type:function size:0x108 +fn_805F2804 = .text:0x805F2804; // type:function size:0x18 +fn_805F281C = .text:0x805F281C; // type:function size:0x48 +fn_805F2864 = .text:0x805F2864; // type:function size:0x2C8 +fn_805F2B2C = .text:0x805F2B2C; // type:function size:0x3C +fn_805F2B68 = .text:0x805F2B68; // type:function size:0x4 +fn_805F2B6C = .text:0x805F2B6C; // type:function size:0x90 +fn_805F2BFC = .text:0x805F2BFC; // type:function size:0x4 +fn_805F2C00 = .text:0x805F2C00; // type:function size:0x40 +fn_805F2C40 = .text:0x805F2C40; // type:function size:0x8C +fn_805F2CCC = .text:0x805F2CCC; // type:function size:0x8 +fn_805F2CD4 = .text:0x805F2CD4; // type:function size:0x2C +fn_805F2D00 = .text:0x805F2D00; // type:function size:0x58 +fn_805F2D58 = .text:0x805F2D58; // type:function size:0x28 +fn_805F2D80 = .text:0x805F2D80; // type:function size:0x68 +fn_805F2DE8 = .text:0x805F2DE8; // type:function size:0xA4 +fn_805F2E8C = .text:0x805F2E8C; // type:function size:0x4C +fn_805F2ED8 = .text:0x805F2ED8; // type:function size:0x5C +fn_805F2F34 = .text:0x805F2F34; // type:function size:0xF4 +fn_805F3028 = .text:0x805F3028; // type:function size:0x148 +fn_805F3170 = .text:0x805F3170; // type:function size:0x4 +fn_805F3174 = .text:0x805F3174; // type:function size:0xC4 +fn_805F3238 = .text:0x805F3238; // type:function size:0x2AC +fn_805F34E4 = .text:0x805F34E4; // type:function size:0x5C +fn_805F3540 = .text:0x805F3540; // type:function size:0x140 +fn_805F3680 = .text:0x805F3680; // type:function size:0x80 +fn_805F3700 = .text:0x805F3700; // type:function size:0x44 +fn_805F3744 = .text:0x805F3744; // type:function size:0xDC +fn_805F3820 = .text:0x805F3820; // type:function size:0x30 +fn_805F3850 = .text:0x805F3850; // type:function size:0x74 +fn_805F38C4 = .text:0x805F38C4; // type:function size:0xD0 +fn_805F3994 = .text:0x805F3994; // type:function size:0xB4 +fn_805F3A48 = .text:0x805F3A48; // type:function size:0x164 +fn_805F3BAC = .text:0x805F3BAC; // type:function size:0x58 +fn_805F3C04 = .text:0x805F3C04; // type:function size:0x80 +fn_805F3C84 = .text:0x805F3C84; // type:function size:0x80 +fn_805F3D04 = .text:0x805F3D04; // type:function size:0x58 +fn_805F3D5C = .text:0x805F3D5C; // type:function size:0x54 +fn_805F3DB0 = .text:0x805F3DB0; // type:function size:0x5C +fn_805F3E0C = .text:0x805F3E0C; // type:function size:0x6C +fn_805F3E78 = .text:0x805F3E78; // type:function size:0x28 +fn_805F3EA0 = .text:0x805F3EA0; // type:function size:0x8 +fn_805F3EA8 = .text:0x805F3EA8; // type:function size:0x3C +fn_805F3EE4 = .text:0x805F3EE4; // type:function size:0x30 +fn_805F3F14 = .text:0x805F3F14; // type:function size:0x30 +fn_805F3F44 = .text:0x805F3F44; // type:function size:0x40 +fn_805F3F84 = .text:0x805F3F84; // type:function size:0x11C +fn_805F40A0 = .text:0x805F40A0; // type:function size:0x6C +fn_805F410C = .text:0x805F410C; // type:function size:0x34 +fn_805F4140 = .text:0x805F4140; // type:function size:0x420 +fn_805F4560 = .text:0x805F4560; // type:function size:0x8 +fn_805F4568 = .text:0x805F4568; // type:function size:0xE8 +fn_805F4650 = .text:0x805F4650; // type:function size:0x68 +fn_805F46B8 = .text:0x805F46B8; // type:function size:0x2C +fn_805F46E4 = .text:0x805F46E4; // type:function size:0x160 +fn_805F4844 = .text:0x805F4844; // type:function size:0x5C +fn_805F48A0 = .text:0x805F48A0; // type:function size:0x10 +fn_805F48B0 = .text:0x805F48B0; // type:function size:0x78 +fn_805F4928 = .text:0x805F4928; // type:function size:0x28 +fn_805F4950 = .text:0x805F4950; // type:function size:0x5C +fn_805F49AC = .text:0x805F49AC; // type:function size:0x60 +fn_805F4A0C = .text:0x805F4A0C; // type:function size:0x58 +fn_805F4A64 = .text:0x805F4A64; // type:function size:0x144 +fn_805F4BA8 = .text:0x805F4BA8; // type:function size:0x4C +fn_805F4BF4 = .text:0x805F4BF4; // type:function size:0x4 +fn_805F4BF8 = .text:0x805F4BF8; // type:function size:0x18C +fn_805F4D84 = .text:0x805F4D84; // type:function size:0x5C +fn_805F4DE0 = .text:0x805F4DE0; // type:function size:0x54 +fn_805F4E34 = .text:0x805F4E34; // type:function size:0x28 +fn_805F4E5C = .text:0x805F4E5C; // type:function size:0x68 +fn_805F4EC4 = .text:0x805F4EC4; // type:function size:0x114 +fn_805F4FD8 = .text:0x805F4FD8; // type:function size:0x5C +fn_805F5034 = .text:0x805F5034; // type:function size:0x5C +fn_805F5090 = .text:0x805F5090; // type:function size:0x54 +fn_805F50E4 = .text:0x805F50E4; // type:function size:0x14 +fn_805F50F8 = .text:0x805F50F8; // type:function size:0x14 +fn_805F510C = .text:0x805F510C; // type:function size:0x14 +fn_805F5120 = .text:0x805F5120; // type:function size:0x14 +fn_805F5134 = .text:0x805F5134; // type:function size:0x14 +fn_805F5148 = .text:0x805F5148; // type:function size:0x14 +fn_805F515C = .text:0x805F515C; // type:function size:0x14 +fn_805F5170 = .text:0x805F5170; // type:function size:0x14 +fn_805F5184 = .text:0x805F5184; // type:function size:0x14 +fn_805F5198 = .text:0x805F5198; // type:function size:0x14 +fn_805F51AC = .text:0x805F51AC; // type:function size:0x14 +fn_805F51C0 = .text:0x805F51C0; // type:function size:0x14 +fn_805F51D4 = .text:0x805F51D4; // type:function size:0x8 +fn_805F51DC = .text:0x805F51DC; // type:function size:0x8 +fn_805F51E4 = .text:0x805F51E4; // type:function size:0x8 +fn_805F51EC = .text:0x805F51EC; // type:function size:0x8 +fn_805F51F4 = .text:0x805F51F4; // type:function size:0x8 +fn_805F51FC = .text:0x805F51FC; // type:function size:0x8 +fn_805F5204 = .text:0x805F5204; // type:function size:0x8 +fn_805F520C = .text:0x805F520C; // type:function size:0x8 +fn_805F5214 = .text:0x805F5214; // type:function size:0x8 +fn_805F521C = .text:0x805F521C; // type:function size:0x8 +fn_805F5224 = .text:0x805F5224; // type:function size:0x198 +fn_805F53BC = .text:0x805F53BC; // type:function size:0x84 +fn_805F5440 = .text:0x805F5440; // type:function size:0x6C +fn_805F54AC = .text:0x805F54AC; // type:function size:0x4 +fn_805F54B0 = .text:0x805F54B0; // type:function size:0x360 +fn_805F5810 = .text:0x805F5810; // type:function size:0x40 +fn_805F5850 = .text:0x805F5850; // type:function size:0x104 +fn_805F5954 = .text:0x805F5954; // type:function size:0x144 +fn_805F5A98 = .text:0x805F5A98; // type:function size:0x8 +fn_805F5AA0 = .text:0x805F5AA0; // type:function size:0xA4 +fn_805F5B44 = .text:0x805F5B44; // type:function size:0x7C +fn_805F5BC0 = .text:0x805F5BC0; // type:function size:0x70 +fn_805F5C30 = .text:0x805F5C30; // type:function size:0x4C +fn_805F5C7C = .text:0x805F5C7C; // type:function size:0x8 +fn_805F5C84 = .text:0x805F5C84; // type:function size:0x8 +fn_805F5C8C = .text:0x805F5C8C; // type:function size:0x8 +fn_805F5C94 = .text:0x805F5C94; // type:function size:0x20 +fn_805F5CB4 = .text:0x805F5CB4; // type:function size:0x1C +fn_805F5CD0 = .text:0x805F5CD0; // type:function size:0x3C +fn_805F5D0C = .text:0x805F5D0C; // type:function size:0x168 +fn_805F5E74 = .text:0x805F5E74; // type:function size:0x63C +fn_805F64B0 = .text:0x805F64B0; // type:function size:0xC0 +fn_805F6570 = .text:0x805F6570; // type:function size:0x8 +fn_805F6578 = .text:0x805F6578; // type:function size:0x8 +fn_805F6580 = .text:0x805F6580; // type:function size:0x8 +fn_805F6588 = .text:0x805F6588; // type:function size:0xC4 +fn_805F664C = .text:0x805F664C; // type:function size:0x144 +fn_805F6790 = .text:0x805F6790; // type:function size:0x4C +fn_805F67DC = .text:0x805F67DC; // type:function size:0x4 +fn_805F67E0 = .text:0x805F67E0; // type:function size:0x14 +fn_805F67F4 = .text:0x805F67F4; // type:function size:0x14 +fn_805F6808 = .text:0x805F6808; // type:function size:0x14 +fn_805F681C = .text:0x805F681C; // type:function size:0x14 +fn_805F6830 = .text:0x805F6830; // type:function size:0x14 +fn_805F6844 = .text:0x805F6844; // type:function size:0x14 +fn_805F6858 = .text:0x805F6858; // type:function size:0x14 +fn_805F686C = .text:0x805F686C; // type:function size:0x14 +fn_805F6880 = .text:0x805F6880; // type:function size:0x14 +fn_805F6894 = .text:0x805F6894; // type:function size:0x14 +fn_805F68A8 = .text:0x805F68A8; // type:function size:0x14 +fn_805F68BC = .text:0x805F68BC; // type:function size:0xB8 +fn_805F6974 = .text:0x805F6974; // type:function size:0x80 +fn_805F69F4 = .text:0x805F69F4; // type:function size:0x84 +fn_805F6A78 = .text:0x805F6A78; // type:function size:0x68 +fn_805F6AE0 = .text:0x805F6AE0; // type:function size:0x6C +fn_805F6B4C = .text:0x805F6B4C; // type:function size:0x8 +fn_805F6B54 = .text:0x805F6B54; // type:function size:0xA4 +fn_805F6BF8 = .text:0x805F6BF8; // type:function size:0x8 +fn_805F6C00 = .text:0x805F6C00; // type:function size:0x4 +fn_805F6C04 = .text:0x805F6C04; // type:function size:0xFC +fn_805F6D00 = .text:0x805F6D00; // type:function size:0x40 +fn_805F6D40 = .text:0x805F6D40; // type:function size:0x104 +fn_805F6E44 = .text:0x805F6E44; // type:function size:0x40 +fn_805F6E84 = .text:0x805F6E84; // type:function size:0x104 +fn_805F6F88 = .text:0x805F6F88; // type:function size:0xDC +fn_805F7064 = .text:0x805F7064; // type:function size:0x8 +fn_805F706C = .text:0x805F706C; // type:function size:0xD0 +fn_805F713C = .text:0x805F713C; // type:function size:0x24 +fn_805F7160 = .text:0x805F7160; // type:function size:0x28 +fn_805F7188 = .text:0x805F7188; // type:function size:0xDC +fn_805F7264 = .text:0x805F7264; // type:function size:0x74 +fn_805F72D8 = .text:0x805F72D8; // type:function size:0x17C +fn_805F7454 = .text:0x805F7454; // type:function size:0xAC +fn_805F7500 = .text:0x805F7500; // type:function size:0x34 +fn_805F7534 = .text:0x805F7534; // type:function size:0x3C +fn_805F7570 = .text:0x805F7570; // type:function size:0x8C +fn_805F75FC = .text:0x805F75FC; // type:function size:0xA4 +fn_805F76A0 = .text:0x805F76A0; // type:function size:0x70 +fn_805F7710 = .text:0x805F7710; // type:function size:0x34 +fn_805F7744 = .text:0x805F7744; // type:function size:0x134 +fn_805F7878 = .text:0x805F7878; // type:function size:0x4C +fn_805F78C4 = .text:0x805F78C4; // type:function size:0x4 +fn_805F78C8 = .text:0x805F78C8; // type:function size:0x14 +fn_805F78DC = .text:0x805F78DC; // type:function size:0x14 +fn_805F78F0 = .text:0x805F78F0; // type:function size:0x14 +fn_805F7904 = .text:0x805F7904; // type:function size:0x14 +fn_805F7918 = .text:0x805F7918; // type:function size:0x14 +fn_805F792C = .text:0x805F792C; // type:function size:0x14 +fn_805F7940 = .text:0x805F7940; // type:function size:0x14 +fn_805F7954 = .text:0x805F7954; // type:function size:0x14 +fn_805F7968 = .text:0x805F7968; // type:function size:0x14 +fn_805F797C = .text:0x805F797C; // type:function size:0x14 +fn_805F7990 = .text:0x805F7990; // type:function size:0x48 +fn_805F79D8 = .text:0x805F79D8; // type:function size:0xC4 +fn_805F7A9C = .text:0x805F7A9C; // type:function size:0x60 +fn_805F7AFC = .text:0x805F7AFC; // type:function size:0x10 +fn_805F7B0C = .text:0x805F7B0C; // type:function size:0x94 +fn_805F7BA0 = .text:0x805F7BA0; // type:function size:0x164 +fn_805F7D04 = .text:0x805F7D04; // type:function size:0x4 +fn_805F7D08 = .text:0x805F7D08; // type:function size:0x4C +fn_805F7D54 = .text:0x805F7D54; // type:function size:0x9A4 +fn_805F86F8 = .text:0x805F86F8; // type:function size:0x10 +fn_805F8708 = .text:0x805F8708; // type:function size:0x28C +fn_805F8994 = .text:0x805F8994; // type:function size:0x60 +fn_805F89F4 = .text:0x805F89F4; // type:function size:0xA0 +fn_805F8A94 = .text:0x805F8A94; // type:function size:0x8 +fn_805F8A9C = .text:0x805F8A9C; // type:function size:0x8 +Handle__6RndMatFP9DataArrayb = .text:0x805F8AA4; // type:function size:0x184 +fn_805F8C28 = .text:0x805F8C28; // type:function size:0x1C0 +fn_805F8DE8 = .text:0x805F8DE8; // type:function size:0x3C +fn_805F8E24 = .text:0x805F8E24; // type:function size:0x1240 +fn_805FA064 = .text:0x805FA064; // type:function size:0xC +fn_805FA070 = .text:0x805FA070; // type:function size:0xC +fn_805FA07C = .text:0x805FA07C; // type:function size:0x10 +fn_805FA08C = .text:0x805FA08C; // type:function size:0xC +fn_805FA098 = .text:0x805FA098; // type:function size:0x10 +fn_805FA0A8 = .text:0x805FA0A8; // type:function size:0x4 +fn_805FA0AC = .text:0x805FA0AC; // type:function size:0x128 +fn_805FA1D4 = .text:0x805FA1D4; // type:function size:0x48 +fn_805FA21C = .text:0x805FA21C; // type:function size:0x48 +fn_805FA264 = .text:0x805FA264; // type:function size:0x40 +fn_805FA2A4 = .text:0x805FA2A4; // type:function size:0x40 +fn_805FA2E4 = .text:0x805FA2E4; // type:function size:0x30 +fn_805FA314 = .text:0x805FA314; // type:function size:0x30 +fn_805FA344 = .text:0x805FA344; // type:function size:0x40 +fn_805FA384 = .text:0x805FA384; // type:function size:0x7C +fn_805FA400 = .text:0x805FA400; // type:function size:0x104 +fn_805FA504 = .text:0x805FA504; // type:function size:0x40 +fn_805FA544 = .text:0x805FA544; // type:function size:0x3C +fn_805FA580 = .text:0x805FA580; // type:function size:0x30 +fn_805FA5B0 = .text:0x805FA5B0; // type:function size:0x128 +fn_805FA6D8 = .text:0x805FA6D8; // type:function size:0x24 +fn_805FA6FC = .text:0x805FA6FC; // type:function size:0xA4 +fn_805FA7A0 = .text:0x805FA7A0; // type:function size:0x44 +fn_805FA7E4 = .text:0x805FA7E4; // type:function size:0x4 +fn_805FA7E8 = .text:0x805FA7E8; // type:function size:0x90 +fn_805FA878 = .text:0x805FA878; // type:function size:0x4 +fn_805FA87C = .text:0x805FA87C; // type:function size:0x40 +fn_805FA8BC = .text:0x805FA8BC; // type:function size:0x8C +fn_805FA948 = .text:0x805FA948; // type:function size:0x8 +fn_805FA950 = .text:0x805FA950; // type:function size:0x2C +fn_805FA97C = .text:0x805FA97C; // type:function size:0x58 +fn_805FA9D4 = .text:0x805FA9D4; // type:function size:0x28 +fn_805FA9FC = .text:0x805FA9FC; // type:function size:0x68 +fn_805FAA64 = .text:0x805FAA64; // type:function size:0x58 +fn_805FAABC = .text:0x805FAABC; // type:function size:0xF0 +fn_805FABAC = .text:0x805FABAC; // type:function size:0x68 +fn_805FAC14 = .text:0x805FAC14; // type:function size:0x8 +fn_805FAC1C = .text:0x805FAC1C; // type:function size:0xA4 +fn_805FACC0 = .text:0x805FACC0; // type:function size:0x8 +fn_805FACC8 = .text:0x805FACC8; // type:function size:0x4 +fn_805FACCC = .text:0x805FACCC; // type:function size:0x74 +fn_805FAD40 = .text:0x805FAD40; // type:function size:0x8C +fn_805FADCC = .text:0x805FADCC; // type:function size:0x44 +fn_805FAE10 = .text:0x805FAE10; // type:function size:0x164 +fn_805FAF74 = .text:0x805FAF74; // type:function size:0x64 +fn_805FAFD8 = .text:0x805FAFD8; // type:function size:0x210 +fn_805FB1E8 = .text:0x805FB1E8; // type:function size:0x40 +fn_805FB228 = .text:0x805FB228; // type:function size:0x104 +fn_805FB32C = .text:0x805FB32C; // type:function size:0x16C +fn_805FB498 = .text:0x805FB498; // type:function size:0x14C +fn_805FB5E4 = .text:0x805FB5E4; // type:function size:0xB4 +fn_805FB698 = .text:0x805FB698; // type:function size:0x68 +fn_805FB700 = .text:0x805FB700; // type:function size:0xB4 +fn_805FB7B4 = .text:0x805FB7B4; // type:function size:0x78 +fn_805FB82C = .text:0x805FB82C; // type:function size:0xB8 +fn_805FB8E4 = .text:0x805FB8E4; // type:function size:0x28 +fn_805FB90C = .text:0x805FB90C; // type:function size:0x28 +fn_805FB934 = .text:0x805FB934; // type:function size:0x28 +fn_805FB95C = .text:0x805FB95C; // type:function size:0x4C +fn_805FB9A8 = .text:0x805FB9A8; // type:function size:0x28 +fn_805FB9D0 = .text:0x805FB9D0; // type:function size:0x28 +fn_805FB9F8 = .text:0x805FB9F8; // type:function size:0x4C +fn_805FBA44 = .text:0x805FBA44; // type:function size:0x28 +fn_805FBA6C = .text:0x805FBA6C; // type:function size:0x340 +fn_805FBDAC = .text:0x805FBDAC; // type:function size:0x68 +fn_805FBE14 = .text:0x805FBE14; // type:function size:0x13C +fn_805FBF50 = .text:0x805FBF50; // type:function size:0x110 +fn_805FC060 = .text:0x805FC060; // type:function size:0x12C +fn_805FC18C = .text:0x805FC18C; // type:function size:0xF8 +fn_805FC284 = .text:0x805FC284; // type:function size:0x40 +fn_805FC2C4 = .text:0x805FC2C4; // type:function size:0x128 +fn_805FC3EC = .text:0x805FC3EC; // type:function size:0x30 +fn_805FC41C = .text:0x805FC41C; // type:function size:0x11C +fn_805FC538 = .text:0x805FC538; // type:function size:0x8C +fn_805FC5C4 = .text:0x805FC5C4; // type:function size:0x68 +fn_805FC62C = .text:0x805FC62C; // type:function size:0x2C +fn_805FC658 = .text:0x805FC658; // type:function size:0x58 +fn_805FC6B0 = .text:0x805FC6B0; // type:function size:0x58 +fn_805FC708 = .text:0x805FC708; // type:function size:0x8 +fn_805FC710 = .text:0x805FC710; // type:function size:0x134 +fn_805FC844 = .text:0x805FC844; // type:function size:0x4 +fn_805FC848 = .text:0x805FC848; // type:function size:0x19C +fn_805FC9E4 = .text:0x805FC9E4; // type:function size:0x5C +fn_805FCA40 = .text:0x805FCA40; // type:function size:0x10 +fn_805FCA50 = .text:0x805FCA50; // type:function size:0x54 +fn_805FCAA4 = .text:0x805FCAA4; // type:function size:0x28 +fn_805FCACC = .text:0x805FCACC; // type:function size:0x68 +fn_805FCB34 = .text:0x805FCB34; // type:function size:0x5C +fn_805FCB90 = .text:0x805FCB90; // type:function size:0x44 +fn_805FCBD4 = .text:0x805FCBD4; // type:function size:0x114 +fn_805FCCE8 = .text:0x805FCCE8; // type:function size:0x60 +fn_805FCD48 = .text:0x805FCD48; // type:function size:0x5C +fn_805FCDA4 = .text:0x805FCDA4; // type:function size:0x54 +fn_805FCDF8 = .text:0x805FCDF8; // type:function size:0x14 +fn_805FCE0C = .text:0x805FCE0C; // type:function size:0x14 +fn_805FCE20 = .text:0x805FCE20; // type:function size:0x14 +fn_805FCE34 = .text:0x805FCE34; // type:function size:0x14 +fn_805FCE48 = .text:0x805FCE48; // type:function size:0x14 +fn_805FCE5C = .text:0x805FCE5C; // type:function size:0x14 +fn_805FCE70 = .text:0x805FCE70; // type:function size:0x14 +fn_805FCE84 = .text:0x805FCE84; // type:function size:0x14 +fn_805FCE98 = .text:0x805FCE98; // type:function size:0x14 +fn_805FCEAC = .text:0x805FCEAC; // type:function size:0x14 +fn_805FCEC0 = .text:0x805FCEC0; // type:function size:0x8 +fn_805FCEC8 = .text:0x805FCEC8; // type:function size:0x5C +fn_805FCF24 = .text:0x805FCF24; // type:function size:0x4 +fn_805FCF28 = .text:0x805FCF28; // type:function size:0x90 +fn_805FCFB8 = .text:0x805FCFB8; // type:function size:0x4 +fn_805FCFBC = .text:0x805FCFBC; // type:function size:0x40 +fn_805FCFFC = .text:0x805FCFFC; // type:function size:0x8C +fn_805FD088 = .text:0x805FD088; // type:function size:0x8 +fn_805FD090 = .text:0x805FD090; // type:function size:0x2C +fn_805FD0BC = .text:0x805FD0BC; // type:function size:0x58 +fn_805FD114 = .text:0x805FD114; // type:function size:0x8 +fn_805FD11C = .text:0x805FD11C; // type:function size:0x28 +fn_805FD144 = .text:0x805FD144; // type:function size:0x68 +fn_805FD1AC = .text:0x805FD1AC; // type:function size:0x48 +fn_805FD1F4 = .text:0x805FD1F4; // type:function size:0x3C +fn_805FD230 = .text:0x805FD230; // type:function size:0x2D0 +fn_805FD500 = .text:0x805FD500; // type:function size:0x28 +fn_805FD528 = .text:0x805FD528; // type:function size:0xA0 +fn_805FD5C8 = .text:0x805FD5C8; // type:function size:0x114 +fn_805FD6DC = .text:0x805FD6DC; // type:function size:0x9C +fn_805FD778 = .text:0x805FD778; // type:function size:0x140 +fn_805FD8B8 = .text:0x805FD8B8; // type:function size:0x14C +fn_805FDA04 = .text:0x805FDA04; // type:function size:0x364 +fn_805FDD68 = .text:0x805FDD68; // type:function size:0x68 +fn_805FDDD0 = .text:0x805FDDD0; // type:function size:0x10 +SetMat__7RndMeshFP6RndMat = .text:0x805FDDE0; // type:function size:0x8 +fn_805FDDE8 = .text:0x805FDDE8; // type:function size:0x8 +fn_805FDDF0 = .text:0x805FDDF0; // type:function size:0x64 +fn_805FDE54 = .text:0x805FDE54; // type:function size:0x90 +fn_805FDEE4 = .text:0x805FDEE4; // type:function size:0x1BC +fn_805FE0A0 = .text:0x805FE0A0; // type:function size:0x58 +fn_805FE0F8 = .text:0x805FE0F8; // type:function size:0x80 +fn_805FE178 = .text:0x805FE178; // type:function size:0x80 +fn_805FE1F8 = .text:0x805FE1F8; // type:function size:0x58 +fn_805FE250 = .text:0x805FE250; // type:function size:0x54 +fn_805FE2A4 = .text:0x805FE2A4; // type:function size:0x5C +fn_805FE300 = .text:0x805FE300; // type:function size:0x6C +fn_805FE36C = .text:0x805FE36C; // type:function size:0x28 +fn_805FE394 = .text:0x805FE394; // type:function size:0x8 +fn_805FE39C = .text:0x805FE39C; // type:function size:0x8 +fn_805FE3A4 = .text:0x805FE3A4; // type:function size:0x3C +fn_805FE3E0 = .text:0x805FE3E0; // type:function size:0x58 +fn_805FE438 = .text:0x805FE438; // type:function size:0x58 +fn_805FE490 = .text:0x805FE490; // type:function size:0x80 +fn_805FE510 = .text:0x805FE510; // type:function size:0x80 +fn_805FE590 = .text:0x805FE590; // type:function size:0x58 +fn_805FE5E8 = .text:0x805FE5E8; // type:function size:0x54 +fn_805FE63C = .text:0x805FE63C; // type:function size:0x5C +fn_805FE698 = .text:0x805FE698; // type:function size:0x6C +fn_805FE704 = .text:0x805FE704; // type:function size:0x28 +fn_805FE72C = .text:0x805FE72C; // type:function size:0x8 +fn_805FE734 = .text:0x805FE734; // type:function size:0x3C +fn_805FE770 = .text:0x805FE770; // type:function size:0x84 +fn_805FE7F4 = .text:0x805FE7F4; // type:function size:0x30 +fn_805FE824 = .text:0x805FE824; // type:function size:0x30 +fn_805FE854 = .text:0x805FE854; // type:function size:0x40 +fn_805FE894 = .text:0x805FE894; // type:function size:0x50 +fn_805FE8E4 = .text:0x805FE8E4; // type:function size:0x30 +fn_805FE914 = .text:0x805FE914; // type:function size:0x30 +fn_805FE944 = .text:0x805FE944; // type:function size:0x40 +fn_805FE984 = .text:0x805FE984; // type:function size:0x6C +fn_805FE9F0 = .text:0x805FE9F0; // type:function size:0x198 +fn_805FEB88 = .text:0x805FEB88; // type:function size:0x120 +fn_805FECA8 = .text:0x805FECA8; // type:function size:0x4C +fn_805FECF4 = .text:0x805FECF4; // type:function size:0xD8 +fn_805FEDCC = .text:0x805FEDCC; // type:function size:0x10C +fn_805FEED8 = .text:0x805FEED8; // type:function size:0xAC +fn_805FEF84 = .text:0x805FEF84; // type:function size:0x270 +fn_805FF1F4 = .text:0x805FF1F4; // type:function size:0x20 +fn_805FF214 = .text:0x805FF214; // type:function size:0x78 +fn_805FF28C = .text:0x805FF28C; // type:function size:0x7C +fn_805FF308 = .text:0x805FF308; // type:function size:0xE4 +fn_805FF3EC = .text:0x805FF3EC; // type:function size:0xC0 +fn_805FF4AC = .text:0x805FF4AC; // type:function size:0x24 +fn_805FF4D0 = .text:0x805FF4D0; // type:function size:0x4 +fn_805FF4D4 = .text:0x805FF4D4; // type:function size:0x5C +fn_805FF530 = .text:0x805FF530; // type:function size:0x500 +fn_805FFA30 = .text:0x805FFA30; // type:function size:0x40 +fn_805FFA70 = .text:0x805FFA70; // type:function size:0x104 +fn_805FFB74 = .text:0x805FFB74; // type:function size:0x10 +fn_805FFB84 = .text:0x805FFB84; // type:function size:0x78C +fn_80600310 = .text:0x80600310; // type:function size:0x80 +fn_80600390 = .text:0x80600390; // type:function size:0x78 +fn_80600408 = .text:0x80600408; // type:function size:0x74 +fn_8060047C = .text:0x8060047C; // type:function size:0x44 +fn_806004C0 = .text:0x806004C0; // type:function size:0x9C +fn_8060055C = .text:0x8060055C; // type:function size:0x4 +fn_80600560 = .text:0x80600560; // type:function size:0x90 +fn_806005F0 = .text:0x806005F0; // type:function size:0x4 +fn_806005F4 = .text:0x806005F4; // type:function size:0x40 +fn_80600634 = .text:0x80600634; // type:function size:0xEC +fn_80600720 = .text:0x80600720; // type:function size:0x2C +fn_8060074C = .text:0x8060074C; // type:function size:0x8 +fn_80600754 = .text:0x80600754; // type:function size:0x8 +fn_8060075C = .text:0x8060075C; // type:function size:0x2C +fn_80600788 = .text:0x80600788; // type:function size:0x58 +fn_806007E0 = .text:0x806007E0; // type:function size:0x8 +fn_806007E8 = .text:0x806007E8; // type:function size:0x54 +fn_8060083C = .text:0x8060083C; // type:function size:0x48 +fn_80600884 = .text:0x80600884; // type:function size:0x4C +fn_806008D0 = .text:0x806008D0; // type:function size:0x4C +fn_8060091C = .text:0x8060091C; // type:function size:0x8C +fn_806009A8 = .text:0x806009A8; // type:function size:0x2C +fn_806009D4 = .text:0x806009D4; // type:function size:0x38 +fn_80600A0C = .text:0x80600A0C; // type:function size:0x38 +fn_80600A44 = .text:0x80600A44; // type:function size:0x38 +fn_80600A7C = .text:0x80600A7C; // type:function size:0x38 +fn_80600AB4 = .text:0x80600AB4; // type:function size:0x58 +fn_80600B0C = .text:0x80600B0C; // type:function size:0x80 +fn_80600B8C = .text:0x80600B8C; // type:function size:0x80 +fn_80600C0C = .text:0x80600C0C; // type:function size:0x58 +fn_80600C64 = .text:0x80600C64; // type:function size:0x54 +fn_80600CB8 = .text:0x80600CB8; // type:function size:0x5C +fn_80600D14 = .text:0x80600D14; // type:function size:0x6C +fn_80600D80 = .text:0x80600D80; // type:function size:0x28 +fn_80600DA8 = .text:0x80600DA8; // type:function size:0x8 +fn_80600DB0 = .text:0x80600DB0; // type:function size:0x3C +fn_80600DEC = .text:0x80600DEC; // type:function size:0x30 +fn_80600E1C = .text:0x80600E1C; // type:function size:0x30 +fn_80600E4C = .text:0x80600E4C; // type:function size:0x40 +fn_80600E8C = .text:0x80600E8C; // type:function size:0x4 +fn_80600E90 = .text:0x80600E90; // type:function size:0x90 +fn_80600F20 = .text:0x80600F20; // type:function size:0x4 +fn_80600F24 = .text:0x80600F24; // type:function size:0x40 +fn_80600F64 = .text:0x80600F64; // type:function size:0x8C +fn_80600FF0 = .text:0x80600FF0; // type:function size:0x8 +fn_80600FF8 = .text:0x80600FF8; // type:function size:0x2C +fn_80601024 = .text:0x80601024; // type:function size:0x58 +fn_8060107C = .text:0x8060107C; // type:function size:0x28 +fn_806010A4 = .text:0x806010A4; // type:function size:0x68 +fn_8060110C = .text:0x8060110C; // type:function size:0x4 +fn_80601110 = .text:0x80601110; // type:function size:0x3C +fn_8060114C = .text:0x8060114C; // type:function size:0xCC +fn_80601218 = .text:0x80601218; // type:function size:0x50 +fn_80601268 = .text:0x80601268; // type:function size:0x15C +fn_806013C4 = .text:0x806013C4; // type:function size:0x1C +fn_806013E0 = .text:0x806013E0; // type:function size:0x5C +fn_8060143C = .text:0x8060143C; // type:function size:0x30 +fn_8060146C = .text:0x8060146C; // type:function size:0x168 +fn_806015D4 = .text:0x806015D4; // type:function size:0x8 +fn_806015DC = .text:0x806015DC; // type:function size:0x184 +fn_80601760 = .text:0x80601760; // type:function size:0x4 +fn_80601764 = .text:0x80601764; // type:function size:0x50 +fn_806017B4 = .text:0x806017B4; // type:function size:0x58 +fn_8060180C = .text:0x8060180C; // type:function size:0x98 +fn_806018A4 = .text:0x806018A4; // type:function size:0xF8 +fn_8060199C = .text:0x8060199C; // type:function size:0xA8 +fn_80601A44 = .text:0x80601A44; // type:function size:0x64 +fn_80601AA8 = .text:0x80601AA8; // type:function size:0x94 +fn_80601B3C = .text:0x80601B3C; // type:function size:0x6C +fn_80601BA8 = .text:0x80601BA8; // type:function size:0x20 +fn_80601BC8 = .text:0x80601BC8; // type:function size:0x3B4 +fn_80601F7C = .text:0x80601F7C; // type:function size:0x4 +fn_80601F80 = .text:0x80601F80; // type:function size:0x50 +fn_80601FD0 = .text:0x80601FD0; // type:function size:0x58 +fn_80602028 = .text:0x80602028; // type:function size:0x2C +fn_80602054 = .text:0x80602054; // type:function size:0x84 +fn_806020D8 = .text:0x806020D8; // type:function size:0x2C +fn_80602104 = .text:0x80602104; // type:function size:0x4 +fn_80602108 = .text:0x80602108; // type:function size:0x88 +fn_80602190 = .text:0x80602190; // type:function size:0xB4 +fn_80602244 = .text:0x80602244; // type:function size:0xD4 +fn_80602318 = .text:0x80602318; // type:function size:0x24 +fn_8060233C = .text:0x8060233C; // type:function size:0x8 +fn_80602344 = .text:0x80602344; // type:function size:0x70 +fn_806023B4 = .text:0x806023B4; // type:function size:0x48 +fn_806023FC = .text:0x806023FC; // type:function size:0x44 +fn_80602440 = .text:0x80602440; // type:function size:0x44 +fn_80602484 = .text:0x80602484; // type:function size:0x68 +SkinVertex__7RndMeshFRCQ27RndMesh4VertP7Vector3 = .text:0x806024EC; // type:function size:0x1E8 +fn_806026D4 = .text:0x806026D4; // type:function size:0x54 +fn_80602728 = .text:0x80602728; // type:function size:0x64 +fn_8060278C = .text:0x8060278C; // type:function size:0xC +fn_80602798 = .text:0x80602798; // type:function size:0xC +fn_806027A4 = .text:0x806027A4; // type:function size:0x3C +fn_806027E0 = .text:0x806027E0; // type:function size:0x50 +fn_80602830 = .text:0x80602830; // type:function size:0x60 +fn_80602890 = .text:0x80602890; // type:function size:0x94 +fn_80602924 = .text:0x80602924; // type:function size:0xB0 +fn_806029D4 = .text:0x806029D4; // type:function size:0x4 +fn_806029D8 = .text:0x806029D8; // type:function size:0xFC +fn_80602AD4 = .text:0x80602AD4; // type:function size:0x6E4 +fn_806031B8 = .text:0x806031B8; // type:function size:0xD4 +fn_8060328C = .text:0x8060328C; // type:function size:0x28 +fn_806032B4 = .text:0x806032B4; // type:function size:0x5E4 +fn_80603898 = .text:0x80603898; // type:function size:0x4 +fn_8060389C = .text:0x8060389C; // type:function size:0x2C +fn_806038C8 = .text:0x806038C8; // type:function size:0x108 +fn_806039D0 = .text:0x806039D0; // type:function size:0x4 +fn_806039D4 = .text:0x806039D4; // type:function size:0x2C +fn_80603A00 = .text:0x80603A00; // type:function size:0x1D0 +fn_80603BD0 = .text:0x80603BD0; // type:function size:0x148 +fn_80603D18 = .text:0x80603D18; // type:function size:0xAC +fn_80603DC4 = .text:0x80603DC4; // type:function size:0x58 +fn_80603E1C = .text:0x80603E1C; // type:function size:0x9C +fn_80603EB8 = .text:0x80603EB8; // type:function size:0x30 +fn_80603EE8 = .text:0x80603EE8; // type:function size:0x78 +fn_80603F60 = .text:0x80603F60; // type:function size:0x70 +fn_80603FD0 = .text:0x80603FD0; // type:function size:0x7C +fn_8060404C = .text:0x8060404C; // type:function size:0x40 +fn_8060408C = .text:0x8060408C; // type:function size:0xF8 +fn_80604184 = .text:0x80604184; // type:function size:0xB0 +fn_80604234 = .text:0x80604234; // type:function size:0xF8 +fn_8060432C = .text:0x8060432C; // type:function size:0xB0 +fn_806043DC = .text:0x806043DC; // type:function size:0xCC +fn_806044A8 = .text:0x806044A8; // type:function size:0xA0 +fn_80604548 = .text:0x80604548; // type:function size:0xF8 +fn_80604640 = .text:0x80604640; // type:function size:0x4 +fn_80604644 = .text:0x80604644; // type:function size:0x4 +fn_80604648 = .text:0x80604648; // type:function size:0xB0 +fn_806046F8 = .text:0x806046F8; // type:function size:0x78 +fn_80604770 = .text:0x80604770; // type:function size:0x200 +fn_80604970 = .text:0x80604970; // type:function size:0x94 +fn_80604A04 = .text:0x80604A04; // type:function size:0x2C +fn_80604A30 = .text:0x80604A30; // type:function size:0x84 +fn_80604AB4 = .text:0x80604AB4; // type:function size:0x2C +fn_80604AE0 = .text:0x80604AE0; // type:function size:0xE0 +fn_80604BC0 = .text:0x80604BC0; // type:function size:0x6F0 +fn_806052B0 = .text:0x806052B0; // type:function size:0xC0 +fn_80605370 = .text:0x80605370; // type:function size:0x170 +fn_806054E0 = .text:0x806054E0; // type:function size:0x68 +fn_80605548 = .text:0x80605548; // type:function size:0x2C +fn_80605574 = .text:0x80605574; // type:function size:0x58 +fn_806055CC = .text:0x806055CC; // type:function size:0x160 +fn_8060572C = .text:0x8060572C; // type:function size:0x5C +fn_80605788 = .text:0x80605788; // type:function size:0x10 +fn_80605798 = .text:0x80605798; // type:function size:0x48 +fn_806057E0 = .text:0x806057E0; // type:function size:0x28 +fn_80605808 = .text:0x80605808; // type:function size:0x5C +fn_80605864 = .text:0x80605864; // type:function size:0x60 +fn_806058C4 = .text:0x806058C4; // type:function size:0x68 +fn_8060592C = .text:0x8060592C; // type:function size:0x2C +fn_80605958 = .text:0x80605958; // type:function size:0x68 +fn_806059C0 = .text:0x806059C0; // type:function size:0x2C +fn_806059EC = .text:0x806059EC; // type:function size:0xB4 +fn_80605AA0 = .text:0x80605AA0; // type:function size:0x144 +fn_80605BE4 = .text:0x80605BE4; // type:function size:0x4 +fn_80605BE8 = .text:0x80605BE8; // type:function size:0x198 +fn_80605D80 = .text:0x80605D80; // type:function size:0x5C +fn_80605DDC = .text:0x80605DDC; // type:function size:0x54 +fn_80605E30 = .text:0x80605E30; // type:function size:0x28 +fn_80605E58 = .text:0x80605E58; // type:function size:0x68 +fn_80605EC0 = .text:0x80605EC0; // type:function size:0x114 +fn_80605FD4 = .text:0x80605FD4; // type:function size:0x5C +fn_80606030 = .text:0x80606030; // type:function size:0x5C +fn_8060608C = .text:0x8060608C; // type:function size:0x54 +fn_806060E0 = .text:0x806060E0; // type:function size:0x198 +fn_80606278 = .text:0x80606278; // type:function size:0x5C +fn_806062D4 = .text:0x806062D4; // type:function size:0x10 +fn_806062E4 = .text:0x806062E4; // type:function size:0x54 +fn_80606338 = .text:0x80606338; // type:function size:0x28 +fn_80606360 = .text:0x80606360; // type:function size:0x68 +fn_806063C8 = .text:0x806063C8; // type:function size:0x5C +fn_80606424 = .text:0x80606424; // type:function size:0x114 +fn_80606538 = .text:0x80606538; // type:function size:0x5C +fn_80606594 = .text:0x80606594; // type:function size:0x5C +fn_806065F0 = .text:0x806065F0; // type:function size:0x54 +fn_80606644 = .text:0x80606644; // type:function size:0xEC +fn_80606730 = .text:0x80606730; // type:function size:0x5C +fn_8060678C = .text:0x8060678C; // type:function size:0x10 +fn_8060679C = .text:0x8060679C; // type:function size:0x124 +fn_806068C0 = .text:0x806068C0; // type:function size:0x60 +fn_80606920 = .text:0x80606920; // type:function size:0x5C +fn_8060697C = .text:0x8060697C; // type:function size:0x54 +fn_806069D0 = .text:0x806069D0; // type:function size:0x5C +fn_80606A2C = .text:0x80606A2C; // type:function size:0x48 +fn_80606A74 = .text:0x80606A74; // type:function size:0x5C +fn_80606AD0 = .text:0x80606AD0; // type:function size:0x58 +fn_80606B28 = .text:0x80606B28; // type:function size:0x14 +fn_80606B3C = .text:0x80606B3C; // type:function size:0x14 +fn_80606B50 = .text:0x80606B50; // type:function size:0x14 +fn_80606B64 = .text:0x80606B64; // type:function size:0x14 +fn_80606B78 = .text:0x80606B78; // type:function size:0x14 +fn_80606B8C = .text:0x80606B8C; // type:function size:0x14 +fn_80606BA0 = .text:0x80606BA0; // type:function size:0x14 +fn_80606BB4 = .text:0x80606BB4; // type:function size:0x14 +fn_80606BC8 = .text:0x80606BC8; // type:function size:0x14 +fn_80606BDC = .text:0x80606BDC; // type:function size:0x14 +fn_80606BF0 = .text:0x80606BF0; // type:function size:0x14 +fn_80606C04 = .text:0x80606C04; // type:function size:0x14 +fn_80606C18 = .text:0x80606C18; // type:function size:0x14 +fn_80606C2C = .text:0x80606C2C; // type:function size:0x14 +fn_80606C40 = .text:0x80606C40; // type:function size:0x8 +fn_80606C48 = .text:0x80606C48; // type:function size:0x8 +fn_80606C50 = .text:0x80606C50; // type:function size:0x8 +fn_80606C58 = .text:0x80606C58; // type:function size:0x8 +fn_80606C60 = .text:0x80606C60; // type:function size:0x8 +fn_80606C68 = .text:0x80606C68; // type:function size:0x8 +fn_80606C70 = .text:0x80606C70; // type:function size:0x8 +fn_80606C78 = .text:0x80606C78; // type:function size:0x8 +fn_80606C80 = .text:0x80606C80; // type:function size:0x8 +fn_80606C88 = .text:0x80606C88; // type:function size:0x8 +fn_80606C90 = .text:0x80606C90; // type:function size:0x8 +fn_80606C98 = .text:0x80606C98; // type:function size:0xD0 +fn_80606D68 = .text:0x80606D68; // type:function size:0x80 +fn_80606DE8 = .text:0x80606DE8; // type:function size:0x58 +fn_80606E40 = .text:0x80606E40; // type:function size:0x58 +fn_80606E98 = .text:0x80606E98; // type:function size:0x80 +fn_80606F18 = .text:0x80606F18; // type:function size:0x80 +fn_80606F98 = .text:0x80606F98; // type:function size:0x58 +fn_80606FF0 = .text:0x80606FF0; // type:function size:0x54 +fn_80607044 = .text:0x80607044; // type:function size:0x5C +fn_806070A0 = .text:0x806070A0; // type:function size:0x6C +fn_8060710C = .text:0x8060710C; // type:function size:0x28 +fn_80607134 = .text:0x80607134; // type:function size:0x8 +fn_8060713C = .text:0x8060713C; // type:function size:0x58 +fn_80607194 = .text:0x80607194; // type:function size:0x58 +fn_806071EC = .text:0x806071EC; // type:function size:0x80 +fn_8060726C = .text:0x8060726C; // type:function size:0x80 +fn_806072EC = .text:0x806072EC; // type:function size:0x58 +fn_80607344 = .text:0x80607344; // type:function size:0x54 +fn_80607398 = .text:0x80607398; // type:function size:0x5C +fn_806073F4 = .text:0x806073F4; // type:function size:0x6C +fn_80607460 = .text:0x80607460; // type:function size:0x28 +fn_80607488 = .text:0x80607488; // type:function size:0x8 +fn_80607490 = .text:0x80607490; // type:function size:0x3C +fn_806074CC = .text:0x806074CC; // type:function size:0x8 +fn_806074D4 = .text:0x806074D4; // type:function size:0x3C +fn_80607510 = .text:0x80607510; // type:function size:0x58 +fn_80607568 = .text:0x80607568; // type:function size:0x58 +fn_806075C0 = .text:0x806075C0; // type:function size:0x80 +fn_80607640 = .text:0x80607640; // type:function size:0x80 +fn_806076C0 = .text:0x806076C0; // type:function size:0x58 +fn_80607718 = .text:0x80607718; // type:function size:0x54 +fn_8060776C = .text:0x8060776C; // type:function size:0x5C +fn_806077C8 = .text:0x806077C8; // type:function size:0x6C +fn_80607834 = .text:0x80607834; // type:function size:0x28 +fn_8060785C = .text:0x8060785C; // type:function size:0x8 +fn_80607864 = .text:0x80607864; // type:function size:0x8 +fn_8060786C = .text:0x8060786C; // type:function size:0x3C +fn_806078A8 = .text:0x806078A8; // type:function size:0x58 +fn_80607900 = .text:0x80607900; // type:function size:0x58 +fn_80607958 = .text:0x80607958; // type:function size:0x80 +fn_806079D8 = .text:0x806079D8; // type:function size:0x80 +fn_80607A58 = .text:0x80607A58; // type:function size:0x58 +fn_80607AB0 = .text:0x80607AB0; // type:function size:0x54 +fn_80607B04 = .text:0x80607B04; // type:function size:0x5C +fn_80607B60 = .text:0x80607B60; // type:function size:0x6C +fn_80607BCC = .text:0x80607BCC; // type:function size:0x28 +fn_80607BF4 = .text:0x80607BF4; // type:function size:0x8 +fn_80607BFC = .text:0x80607BFC; // type:function size:0x58 +fn_80607C54 = .text:0x80607C54; // type:function size:0x8 +fn_80607C5C = .text:0x80607C5C; // type:function size:0x3C +fn_80607C98 = .text:0x80607C98; // type:function size:0x68 +fn_80607D00 = .text:0x80607D00; // type:function size:0x40 +fn_80607D40 = .text:0x80607D40; // type:function size:0x30 +fn_80607D70 = .text:0x80607D70; // type:function size:0x30 +fn_80607DA0 = .text:0x80607DA0; // type:function size:0x40 +fn_80607DE0 = .text:0x80607DE0; // type:function size:0x40 +fn_80607E20 = .text:0x80607E20; // type:function size:0x30 +fn_80607E50 = .text:0x80607E50; // type:function size:0x30 +fn_80607E80 = .text:0x80607E80; // type:function size:0x40 +fn_80607EC0 = .text:0x80607EC0; // type:function size:0x40 +fn_80607F00 = .text:0x80607F00; // type:function size:0x30 +fn_80607F30 = .text:0x80607F30; // type:function size:0x30 +fn_80607F60 = .text:0x80607F60; // type:function size:0x40 +fn_80607FA0 = .text:0x80607FA0; // type:function size:0x100 +fn_806080A0 = .text:0x806080A0; // type:function size:0x28 +fn_806080C8 = .text:0x806080C8; // type:function size:0x28 +fn_806080F0 = .text:0x806080F0; // type:function size:0x28 +fn_80608118 = .text:0x80608118; // type:function size:0x2C +fn_80608144 = .text:0x80608144; // type:function size:0x10 +fn_80608154 = .text:0x80608154; // type:function size:0x40 +fn_80608194 = .text:0x80608194; // type:function size:0x8C +fn_80608220 = .text:0x80608220; // type:function size:0x8 +fn_80608228 = .text:0x80608228; // type:function size:0x2C +fn_80608254 = .text:0x80608254; // type:function size:0x58 +fn_806082AC = .text:0x806082AC; // type:function size:0x28 +fn_806082D4 = .text:0x806082D4; // type:function size:0x68 +fn_8060833C = .text:0x8060833C; // type:function size:0x44 +fn_80608380 = .text:0x80608380; // type:function size:0x30 +fn_806083B0 = .text:0x806083B0; // type:function size:0x40 +fn_806083F0 = .text:0x806083F0; // type:function size:0x8C +fn_8060847C = .text:0x8060847C; // type:function size:0x8 +fn_80608484 = .text:0x80608484; // type:function size:0x2C +fn_806084B0 = .text:0x806084B0; // type:function size:0x58 +fn_80608508 = .text:0x80608508; // type:function size:0x28 +fn_80608530 = .text:0x80608530; // type:function size:0x68 +fn_80608598 = .text:0x80608598; // type:function size:0x44 +fn_806085DC = .text:0x806085DC; // type:function size:0x40 +fn_8060861C = .text:0x8060861C; // type:function size:0x8C +fn_806086A8 = .text:0x806086A8; // type:function size:0x8 +fn_806086B0 = .text:0x806086B0; // type:function size:0x2C +fn_806086DC = .text:0x806086DC; // type:function size:0x58 +fn_80608734 = .text:0x80608734; // type:function size:0x28 +fn_8060875C = .text:0x8060875C; // type:function size:0x68 +fn_806087C4 = .text:0x806087C4; // type:function size:0x44 +fn_80608808 = .text:0x80608808; // type:function size:0xA4 +fn_806088AC = .text:0x806088AC; // type:function size:0x8 +fn_806088B4 = .text:0x806088B4; // type:function size:0x4 +fn_806088B8 = .text:0x806088B8; // type:function size:0xEC +fn_806089A4 = .text:0x806089A4; // type:function size:0x8C +fn_80608A30 = .text:0x80608A30; // type:function size:0x44 +fn_80608A74 = .text:0x80608A74; // type:function size:0x78 +fn_80608AEC = .text:0x80608AEC; // type:function size:0x4 +fn_80608AF0 = .text:0x80608AF0; // type:function size:0x90 +fn_80608B80 = .text:0x80608B80; // type:function size:0x4 +fn_80608B84 = .text:0x80608B84; // type:function size:0x68 +fn_80608BEC = .text:0x80608BEC; // type:function size:0x8C +fn_80608C78 = .text:0x80608C78; // type:function size:0x44 +fn_80608CBC = .text:0x80608CBC; // type:function size:0x78 +fn_80608D34 = .text:0x80608D34; // type:function size:0x4 +fn_80608D38 = .text:0x80608D38; // type:function size:0x90 +fn_80608DC8 = .text:0x80608DC8; // type:function size:0x4 +fn_80608DCC = .text:0x80608DCC; // type:function size:0x68 +fn_80608E34 = .text:0x80608E34; // type:function size:0x8C +fn_80608EC0 = .text:0x80608EC0; // type:function size:0x44 +fn_80608F04 = .text:0x80608F04; // type:function size:0x80 +fn_80608F84 = .text:0x80608F84; // type:function size:0x4 +fn_80608F88 = .text:0x80608F88; // type:function size:0x90 +fn_80609018 = .text:0x80609018; // type:function size:0x4 +fn_8060901C = .text:0x8060901C; // type:function size:0x40 +fn_8060905C = .text:0x8060905C; // type:function size:0x8C +fn_806090E8 = .text:0x806090E8; // type:function size:0x8 +fn_806090F0 = .text:0x806090F0; // type:function size:0x2C +fn_8060911C = .text:0x8060911C; // type:function size:0x58 +fn_80609174 = .text:0x80609174; // type:function size:0x28 +fn_8060919C = .text:0x8060919C; // type:function size:0x68 +fn_80609204 = .text:0x80609204; // type:function size:0x4 +fn_80609208 = .text:0x80609208; // type:function size:0x90 +fn_80609298 = .text:0x80609298; // type:function size:0x4 +fn_8060929C = .text:0x8060929C; // type:function size:0x68 +fn_80609304 = .text:0x80609304; // type:function size:0x30 +fn_80609334 = .text:0x80609334; // type:function size:0x98 +fn_806093CC = .text:0x806093CC; // type:function size:0x5C +fn_80609428 = .text:0x80609428; // type:function size:0x70 +fn_80609498 = .text:0x80609498; // type:function size:0x30 +fn_806094C8 = .text:0x806094C8; // type:function size:0x30 +fn_806094F8 = .text:0x806094F8; // type:function size:0x40 +fn_80609538 = .text:0x80609538; // type:function size:0x40 +fn_80609578 = .text:0x80609578; // type:function size:0x104 +fn_8060967C = .text:0x8060967C; // type:function size:0x12C +fn_806097A8 = .text:0x806097A8; // type:function size:0x30 +fn_806097D8 = .text:0x806097D8; // type:function size:0x30 +fn_80609808 = .text:0x80609808; // type:function size:0x30 +fn_80609838 = .text:0x80609838; // type:function size:0x30 +fn_80609868 = .text:0x80609868; // type:function size:0x30 +fn_80609898 = .text:0x80609898; // type:function size:0x30 +fn_806098C8 = .text:0x806098C8; // type:function size:0x124 +fn_806099EC = .text:0x806099EC; // type:function size:0xB4 +fn_80609AA0 = .text:0x80609AA0; // type:function size:0x68 +fn_80609B08 = .text:0x80609B08; // type:function size:0xB4 +fn_80609BBC = .text:0x80609BBC; // type:function size:0xB4 +fn_80609C70 = .text:0x80609C70; // type:function size:0x68 +fn_80609CD8 = .text:0x80609CD8; // type:function size:0xB4 +fn_80609D8C = .text:0x80609D8C; // type:function size:0x68 +fn_80609DF4 = .text:0x80609DF4; // type:function size:0xC4 +fn_80609EB8 = .text:0x80609EB8; // type:function size:0x8C +fn_80609F44 = .text:0x80609F44; // type:function size:0x4C +fn_80609F90 = .text:0x80609F90; // type:function size:0x24 +fn_80609FB4 = .text:0x80609FB4; // type:function size:0x4C +fn_8060A000 = .text:0x8060A000; // type:function size:0x24 +fn_8060A024 = .text:0x8060A024; // type:function size:0x4C +fn_8060A070 = .text:0x8060A070; // type:function size:0x24 +fn_8060A094 = .text:0x8060A094; // type:function size:0x244 +fn_8060A2D8 = .text:0x8060A2D8; // type:function size:0x21C +fn_8060A4F4 = .text:0x8060A4F4; // type:function size:0x290 +fn_8060A784 = .text:0x8060A784; // type:function size:0xC +fn_8060A790 = .text:0x8060A790; // type:function size:0x290 +fn_8060AA20 = .text:0x8060AA20; // type:function size:0xC +fn_8060AA2C = .text:0x8060AA2C; // type:function size:0x298 +fn_8060ACC4 = .text:0x8060ACC4; // type:function size:0xC +fn_8060ACD0 = .text:0x8060ACD0; // type:function size:0x13C +fn_8060AE0C = .text:0x8060AE0C; // type:function size:0x110 +fn_8060AF1C = .text:0x8060AF1C; // type:function size:0x13C +fn_8060B058 = .text:0x8060B058; // type:function size:0x110 +fn_8060B168 = .text:0x8060B168; // type:function size:0x13C +fn_8060B2A4 = .text:0x8060B2A4; // type:function size:0x110 +fn_8060B3B4 = .text:0x8060B3B4; // type:function size:0x28 +fn_8060B3DC = .text:0x8060B3DC; // type:function size:0x8 +fn_8060B3E4 = .text:0x8060B3E4; // type:function size:0x118 +fn_8060B4FC = .text:0x8060B4FC; // type:function size:0x120 +fn_8060B61C = .text:0x8060B61C; // type:function size:0x1CC +fn_8060B7E8 = .text:0x8060B7E8; // type:function size:0xC0 +fn_8060B8A8 = .text:0x8060B8A8; // type:function size:0xC8 +fn_8060B970 = .text:0x8060B970; // type:function size:0x68 +fn_8060B9D8 = .text:0x8060B9D8; // type:function size:0x160 +fn_8060BB38 = .text:0x8060BB38; // type:function size:0x28 +fn_8060BB60 = .text:0x8060BB60; // type:function size:0x5C +fn_8060BBBC = .text:0x8060BBBC; // type:function size:0x60 +fn_8060BC1C = .text:0x8060BC1C; // type:function size:0x114 +fn_8060BD30 = .text:0x8060BD30; // type:function size:0x60 +fn_8060BD90 = .text:0x8060BD90; // type:function size:0x5C +fn_8060BDEC = .text:0x8060BDEC; // type:function size:0x54 +fn_8060BE40 = .text:0x8060BE40; // type:function size:0x5C +fn_8060BE9C = .text:0x8060BE9C; // type:function size:0x68 +fn_8060BF04 = .text:0x8060BF04; // type:function size:0x2C +fn_8060BF30 = .text:0x8060BF30; // type:function size:0x160 +fn_8060C090 = .text:0x8060C090; // type:function size:0x5C +fn_8060C0EC = .text:0x8060C0EC; // type:function size:0x10 +fn_8060C0FC = .text:0x8060C0FC; // type:function size:0x44 +fn_8060C140 = .text:0x8060C140; // type:function size:0x28 +fn_8060C168 = .text:0x8060C168; // type:function size:0x5C +fn_8060C1C4 = .text:0x8060C1C4; // type:function size:0x60 +fn_8060C224 = .text:0x8060C224; // type:function size:0x68 +fn_8060C28C = .text:0x8060C28C; // type:function size:0x2C +fn_8060C2B8 = .text:0x8060C2B8; // type:function size:0x160 +fn_8060C418 = .text:0x8060C418; // type:function size:0x5C +fn_8060C474 = .text:0x8060C474; // type:function size:0x10 +fn_8060C484 = .text:0x8060C484; // type:function size:0x44 +fn_8060C4C8 = .text:0x8060C4C8; // type:function size:0x28 +fn_8060C4F0 = .text:0x8060C4F0; // type:function size:0x5C +fn_8060C54C = .text:0x8060C54C; // type:function size:0x60 +fn_8060C5AC = .text:0x8060C5AC; // type:function size:0x68 +fn_8060C614 = .text:0x8060C614; // type:function size:0x2C +fn_8060C640 = .text:0x8060C640; // type:function size:0x160 +fn_8060C7A0 = .text:0x8060C7A0; // type:function size:0x5C +fn_8060C7FC = .text:0x8060C7FC; // type:function size:0x10 +fn_8060C80C = .text:0x8060C80C; // type:function size:0x44 +fn_8060C850 = .text:0x8060C850; // type:function size:0x28 +fn_8060C878 = .text:0x8060C878; // type:function size:0x5C +fn_8060C8D4 = .text:0x8060C8D4; // type:function size:0x60 +fn_8060C934 = .text:0x8060C934; // type:function size:0x34 +fn_8060C968 = .text:0x8060C968; // type:function size:0x134 +fn_8060CA9C = .text:0x8060CA9C; // type:function size:0x4C +fn_8060CAE8 = .text:0x8060CAE8; // type:function size:0x4 +fn_8060CAEC = .text:0x8060CAEC; // type:function size:0x190 +fn_8060CC7C = .text:0x8060CC7C; // type:function size:0x54 +fn_8060CCD0 = .text:0x8060CCD0; // type:function size:0x28 +fn_8060CCF8 = .text:0x8060CCF8; // type:function size:0x68 +fn_8060CD60 = .text:0x8060CD60; // type:function size:0x198 +fn_8060CEF8 = .text:0x8060CEF8; // type:function size:0x5C +fn_8060CF54 = .text:0x8060CF54; // type:function size:0x54 +fn_8060CFA8 = .text:0x8060CFA8; // type:function size:0x28 +fn_8060CFD0 = .text:0x8060CFD0; // type:function size:0x68 +fn_8060D038 = .text:0x8060D038; // type:function size:0x114 +fn_8060D14C = .text:0x8060D14C; // type:function size:0x5C +fn_8060D1A8 = .text:0x8060D1A8; // type:function size:0x5C +fn_8060D204 = .text:0x8060D204; // type:function size:0x54 +fn_8060D258 = .text:0x8060D258; // type:function size:0x198 +fn_8060D3F0 = .text:0x8060D3F0; // type:function size:0x5C +fn_8060D44C = .text:0x8060D44C; // type:function size:0x54 +fn_8060D4A0 = .text:0x8060D4A0; // type:function size:0x28 +fn_8060D4C8 = .text:0x8060D4C8; // type:function size:0x68 +fn_8060D530 = .text:0x8060D530; // type:function size:0x114 +fn_8060D644 = .text:0x8060D644; // type:function size:0x5C +fn_8060D6A0 = .text:0x8060D6A0; // type:function size:0x5C +fn_8060D6FC = .text:0x8060D6FC; // type:function size:0x54 +fn_8060D750 = .text:0x8060D750; // type:function size:0x198 +fn_8060D8E8 = .text:0x8060D8E8; // type:function size:0x5C +fn_8060D944 = .text:0x8060D944; // type:function size:0x54 +fn_8060D998 = .text:0x8060D998; // type:function size:0x28 +fn_8060D9C0 = .text:0x8060D9C0; // type:function size:0x68 +fn_8060DA28 = .text:0x8060DA28; // type:function size:0x114 +fn_8060DB3C = .text:0x8060DB3C; // type:function size:0x5C +fn_8060DB98 = .text:0x8060DB98; // type:function size:0x5C +fn_8060DBF4 = .text:0x8060DBF4; // type:function size:0x54 +fn_8060DC48 = .text:0x8060DC48; // type:function size:0x14 +fn_8060DC5C = .text:0x8060DC5C; // type:function size:0x14 +fn_8060DC70 = .text:0x8060DC70; // type:function size:0x14 +fn_8060DC84 = .text:0x8060DC84; // type:function size:0x14 +fn_8060DC98 = .text:0x8060DC98; // type:function size:0x14 +fn_8060DCAC = .text:0x8060DCAC; // type:function size:0x14 +fn_8060DCC0 = .text:0x8060DCC0; // type:function size:0x14 +fn_8060DCD4 = .text:0x8060DCD4; // type:function size:0x14 +fn_8060DCE8 = .text:0x8060DCE8; // type:function size:0x14 +fn_8060DCFC = .text:0x8060DCFC; // type:function size:0x14 +fn_8060DD10 = .text:0x8060DD10; // type:function size:0x14 +fn_8060DD24 = .text:0x8060DD24; // type:function size:0x58 +fn_8060DD7C = .text:0x8060DD7C; // type:function size:0x8 +fn_8060DD84 = .text:0x8060DD84; // type:function size:0x5C +fn_8060DDE0 = .text:0x8060DDE0; // type:function size:0x30 +fn_8060DE10 = .text:0x8060DE10; // type:function size:0x8 +fn_8060DE18 = .text:0x8060DE18; // type:function size:0xC +fn_8060DE24 = .text:0x8060DE24; // type:function size:0x64 +fn_8060DE88 = .text:0x8060DE88; // type:function size:0xF0 +fn_8060DF78 = .text:0x8060DF78; // type:function size:0x1D4 +fn_8060E14C = .text:0x8060E14C; // type:function size:0x64 +fn_8060E1B0 = .text:0x8060E1B0; // type:function size:0x50 +fn_8060E200 = .text:0x8060E200; // type:function size:0x4C +fn_8060E24C = .text:0x8060E24C; // type:function size:0x5C +fn_8060E2A8 = .text:0x8060E2A8; // type:function size:0x88 +fn_8060E330 = .text:0x8060E330; // type:function size:0x78 +fn_8060E3A8 = .text:0x8060E3A8; // type:function size:0x58 +fn_8060E400 = .text:0x8060E400; // type:function size:0x58 +fn_8060E458 = .text:0x8060E458; // type:function size:0x80 +fn_8060E4D8 = .text:0x8060E4D8; // type:function size:0x80 +fn_8060E558 = .text:0x8060E558; // type:function size:0x58 +fn_8060E5B0 = .text:0x8060E5B0; // type:function size:0x54 +fn_8060E604 = .text:0x8060E604; // type:function size:0x5C +fn_8060E660 = .text:0x8060E660; // type:function size:0x6C +fn_8060E6CC = .text:0x8060E6CC; // type:function size:0x28 +fn_8060E6F4 = .text:0x8060E6F4; // type:function size:0x8 +fn_8060E6FC = .text:0x8060E6FC; // type:function size:0x8 +fn_8060E704 = .text:0x8060E704; // type:function size:0x3C +fn_8060E740 = .text:0x8060E740; // type:function size:0x50 +fn_8060E790 = .text:0x8060E790; // type:function size:0x30 +fn_8060E7C0 = .text:0x8060E7C0; // type:function size:0x30 +fn_8060E7F0 = .text:0x8060E7F0; // type:function size:0x40 +fn_8060E830 = .text:0x8060E830; // type:function size:0x80 +fn_8060E8B0 = .text:0x8060E8B0; // type:function size:0x38 +fn_8060E8E8 = .text:0x8060E8E8; // type:function size:0x8 +fn_8060E8F0 = .text:0x8060E8F0; // type:function size:0x5C +fn_8060E94C = .text:0x8060E94C; // type:function size:0x4 +fn_8060E950 = .text:0x8060E950; // type:function size:0x90 +fn_8060E9E0 = .text:0x8060E9E0; // type:function size:0x4 +fn_8060E9E4 = .text:0x8060E9E4; // type:function size:0x40 +fn_8060EA24 = .text:0x8060EA24; // type:function size:0x8C +fn_8060EAB0 = .text:0x8060EAB0; // type:function size:0x8 +fn_8060EAB8 = .text:0x8060EAB8; // type:function size:0x2C +fn_8060EAE4 = .text:0x8060EAE4; // type:function size:0x58 +fn_8060EB3C = .text:0x8060EB3C; // type:function size:0x28 +fn_8060EB64 = .text:0x8060EB64; // type:function size:0x68 +fn_8060EBCC = .text:0x8060EBCC; // type:function size:0x54 +fn_8060EC20 = .text:0x8060EC20; // type:function size:0x54 +fn_8060EC74 = .text:0x8060EC74; // type:function size:0x1C +fn_8060EC90 = .text:0x8060EC90; // type:function size:0xCC +fn_8060ED5C = .text:0x8060ED5C; // type:function size:0x58 +fn_8060EDB4 = .text:0x8060EDB4; // type:function size:0x48 +fn_8060EDFC = .text:0x8060EDFC; // type:function size:0x4 +fn_8060EE00 = .text:0x8060EE00; // type:function size:0x454 +fn_8060F254 = .text:0x8060F254; // type:function size:0x44 +fn_8060F298 = .text:0x8060F298; // type:function size:0x50 +fn_8060F2E8 = .text:0x8060F2E8; // type:function size:0x9C +fn_8060F384 = .text:0x8060F384; // type:function size:0x5C +fn_8060F3E0 = .text:0x8060F3E0; // type:function size:0x30 +fn_8060F410 = .text:0x8060F410; // type:function size:0x50 +fn_8060F460 = .text:0x8060F460; // type:function size:0x4 +fn_8060F464 = .text:0x8060F464; // type:function size:0x268 +fn_8060F6CC = .text:0x8060F6CC; // type:function size:0x258 +Handle__13RndMeshDeformFP9DataArrayb = .text:0x8060F924; // type:function size:0xC4 +fn_8060F9E8 = .text:0x8060F9E8; // type:function size:0x174 +fn_8060FB5C = .text:0x8060FB5C; // type:function size:0x68 +fn_8060FBC4 = .text:0x8060FBC4; // type:function size:0x2C +fn_8060FBF0 = .text:0x8060FBF0; // type:function size:0x160 +fn_8060FD50 = .text:0x8060FD50; // type:function size:0x5C +fn_8060FDAC = .text:0x8060FDAC; // type:function size:0x10 +fn_8060FDBC = .text:0x8060FDBC; // type:function size:0x64 +fn_8060FE20 = .text:0x8060FE20; // type:function size:0x28 +fn_8060FE48 = .text:0x8060FE48; // type:function size:0x5C +fn_8060FEA4 = .text:0x8060FEA4; // type:function size:0x60 +fn_8060FF04 = .text:0x8060FF04; // type:function size:0x4 +fn_8060FF08 = .text:0x8060FF08; // type:function size:0x128 +fn_80610030 = .text:0x80610030; // type:function size:0x198 +fn_806101C8 = .text:0x806101C8; // type:function size:0x5C +fn_80610224 = .text:0x80610224; // type:function size:0x54 +fn_80610278 = .text:0x80610278; // type:function size:0x28 +fn_806102A0 = .text:0x806102A0; // type:function size:0x68 +fn_80610308 = .text:0x80610308; // type:function size:0x114 +fn_8061041C = .text:0x8061041C; // type:function size:0x5C +fn_80610478 = .text:0x80610478; // type:function size:0x5C +fn_806104D4 = .text:0x806104D4; // type:function size:0x54 +fn_80610528 = .text:0x80610528; // type:function size:0xC4 +fn_806105EC = .text:0x806105EC; // type:function size:0x58 +fn_80610644 = .text:0x80610644; // type:function size:0x58 +fn_8061069C = .text:0x8061069C; // type:function size:0x80 +fn_8061071C = .text:0x8061071C; // type:function size:0x80 +fn_8061079C = .text:0x8061079C; // type:function size:0x58 +fn_806107F4 = .text:0x806107F4; // type:function size:0x54 +fn_80610848 = .text:0x80610848; // type:function size:0x5C +fn_806108A4 = .text:0x806108A4; // type:function size:0x6C +fn_80610910 = .text:0x80610910; // type:function size:0x28 +fn_80610938 = .text:0x80610938; // type:function size:0x8 +fn_80610940 = .text:0x80610940; // type:function size:0x68 +fn_806109A8 = .text:0x806109A8; // type:function size:0x8 +fn_806109B0 = .text:0x806109B0; // type:function size:0x3C +fn_806109EC = .text:0x806109EC; // type:function size:0x50 +fn_80610A3C = .text:0x80610A3C; // type:function size:0x30 +fn_80610A6C = .text:0x80610A6C; // type:function size:0x30 +fn_80610A9C = .text:0x80610A9C; // type:function size:0x40 +fn_80610ADC = .text:0x80610ADC; // type:function size:0xE0 +fn_80610BBC = .text:0x80610BBC; // type:function size:0x30C +fn_80610EC8 = .text:0x80610EC8; // type:function size:0x4 +fn_80610ECC = .text:0x80610ECC; // type:function size:0x10 +fn_80610EDC = .text:0x80610EDC; // type:function size:0x4 +fn_80610EE0 = .text:0x80610EE0; // type:function size:0x88 +fn_80610F68 = .text:0x80610F68; // type:function size:0xAC +fn_80611014 = .text:0x80611014; // type:function size:0x5C +fn_80611070 = .text:0x80611070; // type:function size:0x30 +fn_806110A0 = .text:0x806110A0; // type:function size:0x5C +fn_806110FC = .text:0x806110FC; // type:function size:0x4 +fn_80611100 = .text:0x80611100; // type:function size:0x90 +fn_80611190 = .text:0x80611190; // type:function size:0x4 +fn_80611194 = .text:0x80611194; // type:function size:0x40 +fn_806111D4 = .text:0x806111D4; // type:function size:0x8C +fn_80611260 = .text:0x80611260; // type:function size:0x8 +fn_80611268 = .text:0x80611268; // type:function size:0x2C +fn_80611294 = .text:0x80611294; // type:function size:0x58 +fn_806112EC = .text:0x806112EC; // type:function size:0x28 +fn_80611314 = .text:0x80611314; // type:function size:0x68 +fn_8061137C = .text:0x8061137C; // type:function size:0x48 +fn_806113C4 = .text:0x806113C4; // type:function size:0x3C +fn_80611400 = .text:0x80611400; // type:function size:0x80 +fn_80611480 = .text:0x80611480; // type:function size:0xF0 +fn_80611570 = .text:0x80611570; // type:function size:0xB4 +fn_80611624 = .text:0x80611624; // type:function size:0x4 +fn_80611628 = .text:0x80611628; // type:function size:0xD0 +fn_806116F8 = .text:0x806116F8; // type:function size:0x80 +fn_80611778 = .text:0x80611778; // type:function size:0x44 +fn_806117BC = .text:0x806117BC; // type:function size:0x4 +fn_806117C0 = .text:0x806117C0; // type:function size:0x90 +fn_80611850 = .text:0x80611850; // type:function size:0x4 +fn_80611854 = .text:0x80611854; // type:function size:0x40 +fn_80611894 = .text:0x80611894; // type:function size:0x8C +fn_80611920 = .text:0x80611920; // type:function size:0x8 +fn_80611928 = .text:0x80611928; // type:function size:0x2C +fn_80611954 = .text:0x80611954; // type:function size:0x58 +fn_806119AC = .text:0x806119AC; // type:function size:0x28 +fn_806119D4 = .text:0x806119D4; // type:function size:0x68 +fn_80611A3C = .text:0x80611A3C; // type:function size:0x34 +fn_80611A70 = .text:0x80611A70; // type:function size:0x58 +fn_80611AC8 = .text:0x80611AC8; // type:function size:0x58 +fn_80611B20 = .text:0x80611B20; // type:function size:0x80 +fn_80611BA0 = .text:0x80611BA0; // type:function size:0x80 +fn_80611C20 = .text:0x80611C20; // type:function size:0x58 +fn_80611C78 = .text:0x80611C78; // type:function size:0x54 +fn_80611CCC = .text:0x80611CCC; // type:function size:0x5C +fn_80611D28 = .text:0x80611D28; // type:function size:0x6C +fn_80611D94 = .text:0x80611D94; // type:function size:0x28 +fn_80611DBC = .text:0x80611DBC; // type:function size:0x8 +fn_80611DC4 = .text:0x80611DC4; // type:function size:0x3C +fn_80611E00 = .text:0x80611E00; // type:function size:0x40 +fn_80611E40 = .text:0x80611E40; // type:function size:0x30 +fn_80611E70 = .text:0x80611E70; // type:function size:0x30 +fn_80611EA0 = .text:0x80611EA0; // type:function size:0x40 +fn_80611EE0 = .text:0x80611EE0; // type:function size:0xC8 +fn_80611FA8 = .text:0x80611FA8; // type:function size:0x74 +fn_8061201C = .text:0x8061201C; // type:function size:0x33C +fn_80612358 = .text:0x80612358; // type:function size:0x8 +fn_80612360 = .text:0x80612360; // type:function size:0x54 +fn_806123B4 = .text:0x806123B4; // type:function size:0x8 +fn_806123BC = .text:0x806123BC; // type:function size:0x58 +fn_80612414 = .text:0x80612414; // type:function size:0x8 +fn_8061241C = .text:0x8061241C; // type:function size:0xE8 +fn_80612504 = .text:0x80612504; // type:function size:0x8 +fn_8061250C = .text:0x8061250C; // type:function size:0x6C +fn_80612578 = .text:0x80612578; // type:function size:0x74 +fn_806125EC = .text:0x806125EC; // type:function size:0x1DC +fn_806127C8 = .text:0x806127C8; // type:function size:0x8 +fn_806127D0 = .text:0x806127D0; // type:function size:0x98 +fn_80612868 = .text:0x80612868; // type:function size:0x68 +fn_806128D0 = .text:0x806128D0; // type:function size:0x2C +fn_806128FC = .text:0x806128FC; // type:function size:0x160 +fn_80612A5C = .text:0x80612A5C; // type:function size:0x5C +fn_80612AB8 = .text:0x80612AB8; // type:function size:0x10 +fn_80612AC8 = .text:0x80612AC8; // type:function size:0x48 +fn_80612B10 = .text:0x80612B10; // type:function size:0x30 +fn_80612B40 = .text:0x80612B40; // type:function size:0x30 +fn_80612B70 = .text:0x80612B70; // type:function size:0x98 +fn_80612C08 = .text:0x80612C08; // type:function size:0x70 +fn_80612C78 = .text:0x80612C78; // type:function size:0x28 +fn_80612CA0 = .text:0x80612CA0; // type:function size:0x5C +fn_80612CFC = .text:0x80612CFC; // type:function size:0x60 +fn_80612D5C = .text:0x80612D5C; // type:function size:0x68 +fn_80612DC4 = .text:0x80612DC4; // type:function size:0x2C +fn_80612DF0 = .text:0x80612DF0; // type:function size:0x134 +fn_80612F24 = .text:0x80612F24; // type:function size:0x4C +fn_80612F70 = .text:0x80612F70; // type:function size:0x4 +fn_80612F74 = .text:0x80612F74; // type:function size:0x198 +fn_8061310C = .text:0x8061310C; // type:function size:0x5C +fn_80613168 = .text:0x80613168; // type:function size:0x54 +fn_806131BC = .text:0x806131BC; // type:function size:0x28 +fn_806131E4 = .text:0x806131E4; // type:function size:0x68 +fn_8061324C = .text:0x8061324C; // type:function size:0x114 +fn_80613360 = .text:0x80613360; // type:function size:0x5C +fn_806133BC = .text:0x806133BC; // type:function size:0x5C +fn_80613418 = .text:0x80613418; // type:function size:0x54 +fn_8061346C = .text:0x8061346C; // type:function size:0x190 +fn_806135FC = .text:0x806135FC; // type:function size:0x5C +fn_80613658 = .text:0x80613658; // type:function size:0x10 +fn_80613668 = .text:0x80613668; // type:function size:0x54 +fn_806136BC = .text:0x806136BC; // type:function size:0x28 +fn_806136E4 = .text:0x806136E4; // type:function size:0x68 +fn_8061374C = .text:0x8061374C; // type:function size:0x5C +fn_806137A8 = .text:0x806137A8; // type:function size:0x114 +fn_806138BC = .text:0x806138BC; // type:function size:0x60 +fn_8061391C = .text:0x8061391C; // type:function size:0x5C +fn_80613978 = .text:0x80613978; // type:function size:0x54 +fn_806139CC = .text:0x806139CC; // type:function size:0x14 +fn_806139E0 = .text:0x806139E0; // type:function size:0x14 +fn_806139F4 = .text:0x806139F4; // type:function size:0x14 +fn_80613A08 = .text:0x80613A08; // type:function size:0x14 +fn_80613A1C = .text:0x80613A1C; // type:function size:0x14 +fn_80613A30 = .text:0x80613A30; // type:function size:0x14 +fn_80613A44 = .text:0x80613A44; // type:function size:0x14 +fn_80613A58 = .text:0x80613A58; // type:function size:0x14 +fn_80613A6C = .text:0x80613A6C; // type:function size:0x14 +fn_80613A80 = .text:0x80613A80; // type:function size:0xD0 +fn_80613B50 = .text:0x80613B50; // type:function size:0x8C +fn_80613BDC = .text:0x80613BDC; // type:function size:0x4 +fn_80613BE0 = .text:0x80613BE0; // type:function size:0x80 +fn_80613C60 = .text:0x80613C60; // type:function size:0x4 +fn_80613C64 = .text:0x80613C64; // type:function size:0xAC +fn_80613D10 = .text:0x80613D10; // type:function size:0x174 +fn_80613E84 = .text:0x80613E84; // type:function size:0x184 +fn_80614008 = .text:0x80614008; // type:function size:0xC0 +fn_806140C8 = .text:0x806140C8; // type:function size:0xAC +fn_80614174 = .text:0x80614174; // type:function size:0x144 +fn_806142B8 = .text:0x806142B8; // type:function size:0x4C +fn_80614304 = .text:0x80614304; // type:function size:0x4 +fn_80614308 = .text:0x80614308; // type:function size:0x14 +fn_8061431C = .text:0x8061431C; // type:function size:0x14 +fn_80614330 = .text:0x80614330; // type:function size:0x14 +fn_80614344 = .text:0x80614344; // type:function size:0x14 +fn_80614358 = .text:0x80614358; // type:function size:0x14 +fn_8061436C = .text:0x8061436C; // type:function size:0x14 +fn_80614380 = .text:0x80614380; // type:function size:0x14 +fn_80614394 = .text:0x80614394; // type:function size:0x14 +fn_806143A8 = .text:0x806143A8; // type:function size:0x14 +fn_806143BC = .text:0x806143BC; // type:function size:0xAC +fn_80614468 = .text:0x80614468; // type:function size:0x4 +fn_8061446C = .text:0x8061446C; // type:function size:0x5C +fn_806144C8 = .text:0x806144C8; // type:function size:0xE4 +fn_806145AC = .text:0x806145AC; // type:function size:0x74 +fn_80614620 = .text:0x80614620; // type:function size:0x40 +fn_80614660 = .text:0x80614660; // type:function size:0xAC +fn_8061470C = .text:0x8061470C; // type:function size:0x88 +fn_80614794 = .text:0x80614794; // type:function size:0x8 +fn_8061479C = .text:0x8061479C; // type:function size:0x11C +fn_806148B8 = .text:0x806148B8; // type:function size:0x280 +fn_80614B38 = .text:0x80614B38; // type:function size:0x98 +fn_80614BD0 = .text:0x80614BD0; // type:function size:0x134 +fn_80614D04 = .text:0x80614D04; // type:function size:0x4C +fn_80614D50 = .text:0x80614D50; // type:function size:0x4 +fn_80614D54 = .text:0x80614D54; // type:function size:0x14 +fn_80614D68 = .text:0x80614D68; // type:function size:0x14 +fn_80614D7C = .text:0x80614D7C; // type:function size:0x14 +fn_80614D90 = .text:0x80614D90; // type:function size:0x14 +fn_80614DA4 = .text:0x80614DA4; // type:function size:0x14 +fn_80614DB8 = .text:0x80614DB8; // type:function size:0x14 +fn_80614DCC = .text:0x80614DCC; // type:function size:0x14 +fn_80614DE0 = .text:0x80614DE0; // type:function size:0x14 +fn_80614DF4 = .text:0x80614DF4; // type:function size:0x14 +fn_80614E08 = .text:0x80614E08; // type:function size:0x14 +fn_80614E1C = .text:0x80614E1C; // type:function size:0x14 +fn_80614E30 = .text:0x80614E30; // type:function size:0x94 +fn_80614EC4 = .text:0x80614EC4; // type:function size:0x8 +fn_80614ECC = .text:0x80614ECC; // type:function size:0xB8 +fn_80614F84 = .text:0x80614F84; // type:function size:0xC +fn_80614F90 = .text:0x80614F90; // type:function size:0xB4 +fn_80615044 = .text:0x80615044; // type:function size:0x94 +fn_806150D8 = .text:0x806150D8; // type:function size:0xE4 +fn_806151BC = .text:0x806151BC; // type:function size:0x38 +fn_806151F4 = .text:0x806151F4; // type:function size:0x9C +fn_80615290 = .text:0x80615290; // type:function size:0x8 +fn_80615298 = .text:0x80615298; // type:function size:0x4 +fn_8061529C = .text:0x8061529C; // type:function size:0x15C +fn_806153F8 = .text:0x806153F8; // type:function size:0xC +fn_80615404 = .text:0x80615404; // type:function size:0x4 +fn_80615408 = .text:0x80615408; // type:function size:0x4C +fn_80615454 = .text:0x80615454; // type:function size:0xC8 +fn_8061551C = .text:0x8061551C; // type:function size:0xB4 +fn_806155D0 = .text:0x806155D0; // type:function size:0x58 +fn_80615628 = .text:0x80615628; // type:function size:0x58 +fn_80615680 = .text:0x80615680; // type:function size:0x160 +fn_806157E0 = .text:0x806157E0; // type:function size:0x160 +fn_80615940 = .text:0x80615940; // type:function size:0xF4 +fn_80615A34 = .text:0x80615A34; // type:function size:0x44 +fn_80615A78 = .text:0x80615A78; // type:function size:0x7C4 +fn_8061623C = .text:0x8061623C; // type:function size:0xE4 +fn_80616320 = .text:0x80616320; // type:function size:0x50 +fn_80616370 = .text:0x80616370; // type:function size:0x5C +fn_806163CC = .text:0x806163CC; // type:function size:0xC8 +fn_80616494 = .text:0x80616494; // type:function size:0x4 +fn_80616498 = .text:0x80616498; // type:function size:0x100 +fn_80616598 = .text:0x80616598; // type:function size:0xD4 +fn_8061666C = .text:0x8061666C; // type:function size:0xF0 +fn_8061675C = .text:0x8061675C; // type:function size:0xDC +fn_80616838 = .text:0x80616838; // type:function size:0x78 +fn_806168B0 = .text:0x806168B0; // type:function size:0x34 +fn_806168E4 = .text:0x806168E4; // type:function size:0x3C +fn_80616920 = .text:0x80616920; // type:function size:0x98 +fn_806169B8 = .text:0x806169B8; // type:function size:0x54 +fn_80616A0C = .text:0x80616A0C; // type:function size:0x58 +fn_80616A64 = .text:0x80616A64; // type:function size:0x60 +fn_80616AC4 = .text:0x80616AC4; // type:function size:0x3C +fn_80616B00 = .text:0x80616B00; // type:function size:0x4 +fn_80616B04 = .text:0x80616B04; // type:function size:0x4C +fn_80616B50 = .text:0x80616B50; // type:function size:0x9C +fn_80616BEC = .text:0x80616BEC; // type:function size:0x9C +fn_80616C88 = .text:0x80616C88; // type:function size:0x9C +fn_80616D24 = .text:0x80616D24; // type:function size:0x3C +fn_80616D60 = .text:0x80616D60; // type:function size:0x3C +fn_80616D9C = .text:0x80616D9C; // type:function size:0x78 +fn_80616E14 = .text:0x80616E14; // type:function size:0x8C +fn_80616EA0 = .text:0x80616EA0; // type:function size:0x40 +fn_80616EE0 = .text:0x80616EE0; // type:function size:0x144 +fn_80617024 = .text:0x80617024; // type:function size:0x4 +fn_80617028 = .text:0x80617028; // type:function size:0x60 +fn_80617088 = .text:0x80617088; // type:function size:0x58 +fn_806170E0 = .text:0x806170E0; // type:function size:0x58 +fn_80617138 = .text:0x80617138; // type:function size:0x60 +fn_80617198 = .text:0x80617198; // type:function size:0x58 +fn_806171F0 = .text:0x806171F0; // type:function size:0x30 +fn_80617220 = .text:0x80617220; // type:function size:0x30 +fn_80617250 = .text:0x80617250; // type:function size:0x60 +fn_806172B0 = .text:0x806172B0; // type:function size:0x68 +fn_80617318 = .text:0x80617318; // type:function size:0x2C +fn_80617344 = .text:0x80617344; // type:function size:0x14 +fn_80617358 = .text:0x80617358; // type:function size:0x14 +fn_8061736C = .text:0x8061736C; // type:function size:0x14 +fn_80617380 = .text:0x80617380; // type:function size:0x14 +fn_80617394 = .text:0x80617394; // type:function size:0x14 +fn_806173A8 = .text:0x806173A8; // type:function size:0x14 +fn_806173BC = .text:0x806173BC; // type:function size:0x14 +fn_806173D0 = .text:0x806173D0; // type:function size:0x14 +fn_806173E4 = .text:0x806173E4; // type:function size:0x14 +fn_806173F8 = .text:0x806173F8; // type:function size:0x14 +fn_8061740C = .text:0x8061740C; // type:function size:0xF0 +fn_806174FC = .text:0x806174FC; // type:function size:0x78 +fn_80617574 = .text:0x80617574; // type:function size:0x94 +fn_80617608 = .text:0x80617608; // type:function size:0x60 +fn_80617668 = .text:0x80617668; // type:function size:0x4 +fn_8061766C = .text:0x8061766C; // type:function size:0x4 +fn_80617670 = .text:0x80617670; // type:function size:0x4 +fn_80617674 = .text:0x80617674; // type:function size:0x84 +fn_806176F8 = .text:0x806176F8; // type:function size:0x6C +fn_80617764 = .text:0x80617764; // type:function size:0x144 +fn_806178A8 = .text:0x806178A8; // type:function size:0x4 +fn_806178AC = .text:0x806178AC; // type:function size:0x14 +fn_806178C0 = .text:0x806178C0; // type:function size:0x14 +fn_806178D4 = .text:0x806178D4; // type:function size:0x14 +fn_806178E8 = .text:0x806178E8; // type:function size:0x14 +fn_806178FC = .text:0x806178FC; // type:function size:0x14 +fn_80617910 = .text:0x80617910; // type:function size:0x14 +fn_80617924 = .text:0x80617924; // type:function size:0x14 +fn_80617938 = .text:0x80617938; // type:function size:0x14 +fn_8061794C = .text:0x8061794C; // type:function size:0x14 +fn_80617960 = .text:0x80617960; // type:function size:0x14 +fn_80617974 = .text:0x80617974; // type:function size:0x8 +fn_8061797C = .text:0x8061797C; // type:function size:0x8 +fn_80617984 = .text:0x80617984; // type:function size:0x8 +fn_8061798C = .text:0x8061798C; // type:function size:0x8 +fn_80617994 = .text:0x80617994; // type:function size:0x8 +fn_8061799C = .text:0x8061799C; // type:function size:0x8 +fn_806179A4 = .text:0x806179A4; // type:function size:0x8 +fn_806179AC = .text:0x806179AC; // type:function size:0x8 +fn_806179B4 = .text:0x806179B4; // type:function size:0x8 +fn_806179BC = .text:0x806179BC; // type:function size:0x8 +fn_806179C4 = .text:0x806179C4; // type:function size:0xC4 +fn_80617A88 = .text:0x80617A88; // type:function size:0xC8 +fn_80617B50 = .text:0x80617B50; // type:function size:0x3C +fn_80617B8C = .text:0x80617B8C; // type:function size:0x5C +fn_80617BE8 = .text:0x80617BE8; // type:function size:0x68 +fn_80617C50 = .text:0x80617C50; // type:function size:0x3C +fn_80617C8C = .text:0x80617C8C; // type:function size:0x124 +fn_80617DB0 = .text:0x80617DB0; // type:function size:0x14 +Find__10RndOverlayF6Symbolb = .text:0x80617DC4; // type:function size:0xB0 +fn_80617E74 = .text:0x80617E74; // type:function size:0x198 +fn_8061800C = .text:0x8061800C; // type:function size:0x80 +fn_8061808C = .text:0x8061808C; // type:function size:0x70 +fn_806180FC = .text:0x806180FC; // type:function size:0xB8 +fn_806181B4 = .text:0x806181B4; // type:function size:0x3C +Clear__10RndOverlayFv = .text:0x806181F0; // type:function size:0xAC +fn_8061829C = .text:0x8061829C; // type:function size:0x2EC +fn_80618588 = .text:0x80618588; // type:function size:0xA0 +fn_80618628 = .text:0x80618628; // type:function size:0xF8 +fn_80618720 = .text:0x80618720; // type:function size:0x60 +fn_80618780 = .text:0x80618780; // type:function size:0x74 +fn_806187F4 = .text:0x806187F4; // type:function size:0x68 +fn_8061885C = .text:0x8061885C; // type:function size:0x7C +fn_806188D8 = .text:0x806188D8; // type:function size:0x11C +fn_806189F4 = .text:0x806189F4; // type:function size:0x38 +fn_80618A2C = .text:0x80618A2C; // type:function size:0x44 +fn_80618A70 = .text:0x80618A70; // type:function size:0x3C +fn_80618AAC = .text:0x80618AAC; // type:function size:0x130 +fn_80618BDC = .text:0x80618BDC; // type:function size:0x100 +fn_80618CDC = .text:0x80618CDC; // type:function size:0x3EC +fn_806190C8 = .text:0x806190C8; // type:function size:0xEC +fn_806191B4 = .text:0x806191B4; // type:function size:0x4 +fn_806191B8 = .text:0x806191B8; // type:function size:0x93C +fn_80619AF4 = .text:0x80619AF4; // type:function size:0xB0 +fn_80619BA4 = .text:0x80619BA4; // type:function size:0x34 +fn_80619BD8 = .text:0x80619BD8; // type:function size:0x4 +fn_80619BDC = .text:0x80619BDC; // type:function size:0x40 +fn_80619C1C = .text:0x80619C1C; // type:function size:0x104 +fn_80619D20 = .text:0x80619D20; // type:function size:0x68 +fn_80619D88 = .text:0x80619D88; // type:function size:0xA4 +fn_80619E2C = .text:0x80619E2C; // type:function size:0x54 +fn_80619E80 = .text:0x80619E80; // type:function size:0x940 +fn_8061A7C0 = .text:0x8061A7C0; // type:function size:0x3C +fn_8061A7FC = .text:0x8061A7FC; // type:function size:0x8 +fn_8061A804 = .text:0x8061A804; // type:function size:0x10 +fn_8061A814 = .text:0x8061A814; // type:function size:0x8 +fn_8061A81C = .text:0x8061A81C; // type:function size:0xB0 +fn_8061A8CC = .text:0x8061A8CC; // type:function size:0x4C +fn_8061A918 = .text:0x8061A918; // type:function size:0xB0 +fn_8061A9C8 = .text:0x8061A9C8; // type:function size:0x78 +fn_8061AA40 = .text:0x8061AA40; // type:function size:0x80 +fn_8061AAC0 = .text:0x8061AAC0; // type:function size:0xEC +fn_8061ABAC = .text:0x8061ABAC; // type:function size:0x5C +fn_8061AC08 = .text:0x8061AC08; // type:function size:0x1C +fn_8061AC24 = .text:0x8061AC24; // type:function size:0x64 +fn_8061AC88 = .text:0x8061AC88; // type:function size:0x24 +fn_8061ACAC = .text:0x8061ACAC; // type:function size:0x28 +fn_8061ACD4 = .text:0x8061ACD4; // type:function size:0x1B8 +fn_8061AE8C = .text:0x8061AE8C; // type:function size:0x10 +fn_8061AE9C = .text:0x8061AE9C; // type:function size:0x94 +fn_8061AF30 = .text:0x8061AF30; // type:function size:0x15C +fn_8061B08C = .text:0x8061B08C; // type:function size:0x13C +fn_8061B1C8 = .text:0x8061B1C8; // type:function size:0x18 +fn_8061B1E0 = .text:0x8061B1E0; // type:function size:0x390 +fn_8061B570 = .text:0x8061B570; // type:function size:0x50 +fn_8061B5C0 = .text:0x8061B5C0; // type:function size:0x20 +fn_8061B5E0 = .text:0x8061B5E0; // type:function size:0x150 +fn_8061B730 = .text:0x8061B730; // type:function size:0xC0 +fn_8061B7F0 = .text:0x8061B7F0; // type:function size:0x50 +fn_8061B840 = .text:0x8061B840; // type:function size:0x48 +fn_8061B888 = .text:0x8061B888; // type:function size:0x78 +fn_8061B900 = .text:0x8061B900; // type:function size:0x150 +fn_8061BA50 = .text:0x8061BA50; // type:function size:0x4 +fn_8061BA54 = .text:0x8061BA54; // type:function size:0x88 +fn_8061BADC = .text:0x8061BADC; // type:function size:0x2C +fn_8061BB08 = .text:0x8061BB08; // type:function size:0x2C +fn_8061BB34 = .text:0x8061BB34; // type:function size:0x84 +fn_8061BBB8 = .text:0x8061BBB8; // type:function size:0x2C +fn_8061BBE4 = .text:0x8061BBE4; // type:function size:0x28 +fn_8061BC0C = .text:0x8061BC0C; // type:function size:0x68 +fn_8061BC74 = .text:0x8061BC74; // type:function size:0x4A4 +fn_8061C118 = .text:0x8061C118; // type:function size:0xCC +fn_8061C1E4 = .text:0x8061C1E4; // type:function size:0x3C +fn_8061C220 = .text:0x8061C220; // type:function size:0x2C +fn_8061C24C = .text:0x8061C24C; // type:function size:0x184 +fn_8061C3D0 = .text:0x8061C3D0; // type:function size:0x58 +fn_8061C428 = .text:0x8061C428; // type:function size:0x80 +fn_8061C4A8 = .text:0x8061C4A8; // type:function size:0x80 +fn_8061C528 = .text:0x8061C528; // type:function size:0x58 +fn_8061C580 = .text:0x8061C580; // type:function size:0x54 +fn_8061C5D4 = .text:0x8061C5D4; // type:function size:0x5C +fn_8061C630 = .text:0x8061C630; // type:function size:0x6C +fn_8061C69C = .text:0x8061C69C; // type:function size:0x28 +fn_8061C6C4 = .text:0x8061C6C4; // type:function size:0x8 +fn_8061C6CC = .text:0x8061C6CC; // type:function size:0x3C +fn_8061C708 = .text:0x8061C708; // type:function size:0x454 +fn_8061CB5C = .text:0x8061CB5C; // type:function size:0x30 +fn_8061CB8C = .text:0x8061CB8C; // type:function size:0x30 +fn_8061CBBC = .text:0x8061CBBC; // type:function size:0x40 +fn_8061CBFC = .text:0x8061CBFC; // type:function size:0x90 +fn_8061CC8C = .text:0x8061CC8C; // type:function size:0x8 +fn_8061CC94 = .text:0x8061CC94; // type:function size:0xEC +fn_8061CD80 = .text:0x8061CD80; // type:function size:0x2C +fn_8061CDAC = .text:0x8061CDAC; // type:function size:0x2C +fn_8061CDD8 = .text:0x8061CDD8; // type:function size:0x90 +fn_8061CE68 = .text:0x8061CE68; // type:function size:0xAF4 +fn_8061D95C = .text:0x8061D95C; // type:function size:0x124 +fn_8061DA80 = .text:0x8061DA80; // type:function size:0x48 +fn_8061DAC8 = .text:0x8061DAC8; // type:function size:0xA4 +fn_8061DB6C = .text:0x8061DB6C; // type:function size:0x124 +fn_8061DC90 = .text:0x8061DC90; // type:function size:0x48 +fn_8061DCD8 = .text:0x8061DCD8; // type:function size:0xA4 +fn_8061DD7C = .text:0x8061DD7C; // type:function size:0x74 +fn_8061DDF0 = .text:0x8061DDF0; // type:function size:0xC +fn_8061DDFC = .text:0x8061DDFC; // type:function size:0x94 +fn_8061DE90 = .text:0x8061DE90; // type:function size:0x30 +fn_8061DEC0 = .text:0x8061DEC0; // type:function size:0x8C +fn_8061DF4C = .text:0x8061DF4C; // type:function size:0x8 +fn_8061DF54 = .text:0x8061DF54; // type:function size:0x8 +fn_8061DF5C = .text:0x8061DF5C; // type:function size:0x74 +fn_8061DFD0 = .text:0x8061DFD0; // type:function size:0x8 +fn_8061DFD8 = .text:0x8061DFD8; // type:function size:0x74 +fn_8061E04C = .text:0x8061E04C; // type:function size:0x8 +fn_8061E054 = .text:0x8061E054; // type:function size:0x4C +fn_8061E0A0 = .text:0x8061E0A0; // type:function size:0x94 +fn_8061E134 = .text:0x8061E134; // type:function size:0x74 +fn_8061E1A8 = .text:0x8061E1A8; // type:function size:0xC +fn_8061E1B4 = .text:0x8061E1B4; // type:function size:0x74 +fn_8061E228 = .text:0x8061E228; // type:function size:0xC +fn_8061E234 = .text:0x8061E234; // type:function size:0xA4 +fn_8061E2D8 = .text:0x8061E2D8; // type:function size:0x8 +fn_8061E2E0 = .text:0x8061E2E0; // type:function size:0x8 +fn_8061E2E8 = .text:0x8061E2E8; // type:function size:0x10 +fn_8061E2F8 = .text:0x8061E2F8; // type:function size:0x9C +fn_8061E394 = .text:0x8061E394; // type:function size:0x8 +fn_8061E39C = .text:0x8061E39C; // type:function size:0x8 +fn_8061E3A4 = .text:0x8061E3A4; // type:function size:0x54 +fn_8061E3F8 = .text:0x8061E3F8; // type:function size:0x8 +fn_8061E400 = .text:0x8061E400; // type:function size:0xAC +fn_8061E4AC = .text:0x8061E4AC; // type:function size:0x8 +fn_8061E4B4 = .text:0x8061E4B4; // type:function size:0x10 +fn_8061E4C4 = .text:0x8061E4C4; // type:function size:0x10 +fn_8061E4D4 = .text:0x8061E4D4; // type:function size:0x10 +fn_8061E4E4 = .text:0x8061E4E4; // type:function size:0x74 +fn_8061E558 = .text:0x8061E558; // type:function size:0xC +fn_8061E564 = .text:0x8061E564; // type:function size:0x58 +fn_8061E5BC = .text:0x8061E5BC; // type:function size:0xE0 +fn_8061E69C = .text:0x8061E69C; // type:function size:0x48 +fn_8061E6E4 = .text:0x8061E6E4; // type:function size:0x10 +fn_8061E6F4 = .text:0x8061E6F4; // type:function size:0x50 +fn_8061E744 = .text:0x8061E744; // type:function size:0x118 +fn_8061E85C = .text:0x8061E85C; // type:function size:0x1304 +fn_8061FB60 = .text:0x8061FB60; // type:function size:0x114 +fn_8061FC74 = .text:0x8061FC74; // type:function size:0x60 +fn_8061FCD4 = .text:0x8061FCD4; // type:function size:0x5C +fn_8061FD30 = .text:0x8061FD30; // type:function size:0x54 +fn_8061FD84 = .text:0x8061FD84; // type:function size:0x5C +fn_8061FDE0 = .text:0x8061FDE0; // type:function size:0x5C +fn_8061FE3C = .text:0x8061FE3C; // type:function size:0xE4 +fn_8061FF20 = .text:0x8061FF20; // type:function size:0x54 +fn_8061FF74 = .text:0x8061FF74; // type:function size:0x6C +fn_8061FFE0 = .text:0x8061FFE0; // type:function size:0x8C +fn_8062006C = .text:0x8062006C; // type:function size:0x6C +fn_806200D8 = .text:0x806200D8; // type:function size:0x8 +fn_806200E0 = .text:0x806200E0; // type:function size:0x8 +fn_806200E8 = .text:0x806200E8; // type:function size:0x134 +fn_8062021C = .text:0x8062021C; // type:function size:0x4C +fn_80620268 = .text:0x80620268; // type:function size:0x4 +fn_8062026C = .text:0x8062026C; // type:function size:0xC +fn_80620278 = .text:0x80620278; // type:function size:0xD4 +fn_8062034C = .text:0x8062034C; // type:function size:0x8 +fn_80620354 = .text:0x80620354; // type:function size:0x8 +fn_8062035C = .text:0x8062035C; // type:function size:0x8 +fn_80620364 = .text:0x80620364; // type:function size:0x8 +fn_8062036C = .text:0x8062036C; // type:function size:0x8 +fn_80620374 = .text:0x80620374; // type:function size:0x8 +fn_8062037C = .text:0x8062037C; // type:function size:0x8 +fn_80620384 = .text:0x80620384; // type:function size:0x8 +fn_8062038C = .text:0x8062038C; // type:function size:0x8 +fn_80620394 = .text:0x80620394; // type:function size:0x8 +fn_8062039C = .text:0x8062039C; // type:function size:0x8 +fn_806203A4 = .text:0x806203A4; // type:function size:0x8 +fn_806203AC = .text:0x806203AC; // type:function size:0x8 +fn_806203B4 = .text:0x806203B4; // type:function size:0x8 +fn_806203BC = .text:0x806203BC; // type:function size:0x8 +fn_806203C4 = .text:0x806203C4; // type:function size:0x8 +fn_806203CC = .text:0x806203CC; // type:function size:0x14 +fn_806203E0 = .text:0x806203E0; // type:function size:0x14 +fn_806203F4 = .text:0x806203F4; // type:function size:0x14 +fn_80620408 = .text:0x80620408; // type:function size:0x14 +fn_8062041C = .text:0x8062041C; // type:function size:0x14 +fn_80620430 = .text:0x80620430; // type:function size:0x14 +fn_80620444 = .text:0x80620444; // type:function size:0x14 +fn_80620458 = .text:0x80620458; // type:function size:0x14 +fn_8062046C = .text:0x8062046C; // type:function size:0x14 +fn_80620480 = .text:0x80620480; // type:function size:0x14 +fn_80620494 = .text:0x80620494; // type:function size:0x14 +fn_806204A8 = .text:0x806204A8; // type:function size:0x14 +fn_806204BC = .text:0x806204BC; // type:function size:0x8 +fn_806204C4 = .text:0x806204C4; // type:function size:0x8 +fn_806204CC = .text:0x806204CC; // type:function size:0x8 +fn_806204D4 = .text:0x806204D4; // type:function size:0x8 +fn_806204DC = .text:0x806204DC; // type:function size:0x8 +fn_806204E4 = .text:0x806204E4; // type:function size:0x8 +fn_806204EC = .text:0x806204EC; // type:function size:0x8 +fn_806204F4 = .text:0x806204F4; // type:function size:0x8 +fn_806204FC = .text:0x806204FC; // type:function size:0x8 +fn_80620504 = .text:0x80620504; // type:function size:0x8 +fn_8062050C = .text:0x8062050C; // type:function size:0x8 +fn_80620514 = .text:0x80620514; // type:function size:0x8 +fn_8062051C = .text:0x8062051C; // type:function size:0x8 +fn_80620524 = .text:0x80620524; // type:function size:0xE0 +fn_80620604 = .text:0x80620604; // type:function size:0x80 +fn_80620684 = .text:0x80620684; // type:function size:0x68 +fn_806206EC = .text:0x806206EC; // type:function size:0x8 +fn_806206F4 = .text:0x806206F4; // type:function size:0xA4 +fn_80620798 = .text:0x80620798; // type:function size:0x8 +fn_806207A0 = .text:0x806207A0; // type:function size:0x4 +fn_806207A4 = .text:0x806207A4; // type:function size:0x19C +fn_80620940 = .text:0x80620940; // type:function size:0x40 +fn_80620980 = .text:0x80620980; // type:function size:0x104 +fn_80620A84 = .text:0x80620A84; // type:function size:0x4 +fn_80620A88 = .text:0x80620A88; // type:function size:0x88 +fn_80620B10 = .text:0x80620B10; // type:function size:0x4 +fn_80620B14 = .text:0x80620B14; // type:function size:0x4 +fn_80620B18 = .text:0x80620B18; // type:function size:0x3C +fn_80620B54 = .text:0x80620B54; // type:function size:0x154 +fn_80620CA8 = .text:0x80620CA8; // type:function size:0x158 +fn_80620E00 = .text:0x80620E00; // type:function size:0xB8 +fn_80620EB8 = .text:0x80620EB8; // type:function size:0x28 +fn_80620EE0 = .text:0x80620EE0; // type:function size:0x28 +fn_80620F08 = .text:0x80620F08; // type:function size:0x28 +fn_80620F30 = .text:0x80620F30; // type:function size:0x4C +fn_80620F7C = .text:0x80620F7C; // type:function size:0x28 +fn_80620FA4 = .text:0x80620FA4; // type:function size:0x28 +fn_80620FCC = .text:0x80620FCC; // type:function size:0x28 +fn_80620FF4 = .text:0x80620FF4; // type:function size:0x43C +fn_80621430 = .text:0x80621430; // type:function size:0x124 +fn_80621554 = .text:0x80621554; // type:function size:0x15C +fn_806216B0 = .text:0x806216B0; // type:function size:0x34 +fn_806216E4 = .text:0x806216E4; // type:function size:0x3C +fn_80621720 = .text:0x80621720; // type:function size:0x8C +fn_806217AC = .text:0x806217AC; // type:function size:0xE0 +fn_8062188C = .text:0x8062188C; // type:function size:0xCC +fn_80621958 = .text:0x80621958; // type:function size:0x60 +fn_806219B8 = .text:0x806219B8; // type:function size:0x30 +fn_806219E8 = .text:0x806219E8; // type:function size:0x134 +fn_80621B1C = .text:0x80621B1C; // type:function size:0x4C +fn_80621B68 = .text:0x80621B68; // type:function size:0x4 +fn_80621B6C = .text:0x80621B6C; // type:function size:0x10 +fn_80621B7C = .text:0x80621B7C; // type:function size:0x14 +fn_80621B90 = .text:0x80621B90; // type:function size:0x14 +fn_80621BA4 = .text:0x80621BA4; // type:function size:0x14 +fn_80621BB8 = .text:0x80621BB8; // type:function size:0x14 +fn_80621BCC = .text:0x80621BCC; // type:function size:0x14 +fn_80621BE0 = .text:0x80621BE0; // type:function size:0x14 +fn_80621BF4 = .text:0x80621BF4; // type:function size:0x14 +fn_80621C08 = .text:0x80621C08; // type:function size:0x14 +fn_80621C1C = .text:0x80621C1C; // type:function size:0x14 +fn_80621C30 = .text:0x80621C30; // type:function size:0x14 +fn_80621C44 = .text:0x80621C44; // type:function size:0x104 +fn_80621D48 = .text:0x80621D48; // type:function size:0x15C +fn_80621EA4 = .text:0x80621EA4; // type:function size:0xF0 +fn_80621F94 = .text:0x80621F94; // type:function size:0x30 +fn_80621FC4 = .text:0x80621FC4; // type:function size:0x1C +fn_80621FE0 = .text:0x80621FE0; // type:function size:0x4C +fn_8062202C = .text:0x8062202C; // type:function size:0x25C +fn_80622288 = .text:0x80622288; // type:function size:0x8 +fn_80622290 = .text:0x80622290; // type:function size:0x4 +fn_80622294 = .text:0x80622294; // type:function size:0x354 +fn_806225E8 = .text:0x806225E8; // type:function size:0xAC +fn_80622694 = .text:0x80622694; // type:function size:0xD8 +fn_8062276C = .text:0x8062276C; // type:function size:0x100 +fn_8062286C = .text:0x8062286C; // type:function size:0xA98 +fn_80623304 = .text:0x80623304; // type:function size:0xCC +fn_806233D0 = .text:0x806233D0; // type:function size:0x18 +fn_806233E8 = .text:0x806233E8; // type:function size:0xA4 +fn_8062348C = .text:0x8062348C; // type:function size:0x134 +fn_806235C0 = .text:0x806235C0; // type:function size:0x4C +fn_8062360C = .text:0x8062360C; // type:function size:0x4 +fn_80623610 = .text:0x80623610; // type:function size:0x14 +fn_80623624 = .text:0x80623624; // type:function size:0x14 +fn_80623638 = .text:0x80623638; // type:function size:0x14 +fn_8062364C = .text:0x8062364C; // type:function size:0x14 +fn_80623660 = .text:0x80623660; // type:function size:0x14 +fn_80623674 = .text:0x80623674; // type:function size:0x14 +fn_80623688 = .text:0x80623688; // type:function size:0x14 +fn_8062369C = .text:0x8062369C; // type:function size:0x14 +Handle__11RndPollableFP9DataArrayb = .text:0x806236B0; // type:function size:0x15C +fn_8062380C = .text:0x8062380C; // type:function size:0x50 +fn_8062385C = .text:0x8062385C; // type:function size:0x50 +fn_806238AC = .text:0x806238AC; // type:function size:0x14 +fn_806238C0 = .text:0x806238C0; // type:function size:0xF8 +fn_806239B8 = .text:0x806239B8; // type:function size:0x4 +fn_806239BC = .text:0x806239BC; // type:function size:0x4 +fn_806239C0 = .text:0x806239C0; // type:function size:0x4 +fn_806239C4 = .text:0x806239C4; // type:function size:0xA4 +fn_80623A68 = .text:0x80623A68; // type:function size:0x8C +fn_80623AF4 = .text:0x80623AF4; // type:function size:0x84 +fn_80623B78 = .text:0x80623B78; // type:function size:0x16C +fn_80623CE4 = .text:0x80623CE4; // type:function size:0x84 +fn_80623D68 = .text:0x80623D68; // type:function size:0x4 +fn_80623D6C = .text:0x80623D6C; // type:function size:0x90 +fn_80623DFC = .text:0x80623DFC; // type:function size:0xA0 +fn_80623E9C = .text:0x80623E9C; // type:function size:0x170 +fn_8062400C = .text:0x8062400C; // type:function size:0xEC +fn_806240F8 = .text:0x806240F8; // type:function size:0xB8 +fn_806241B0 = .text:0x806241B0; // type:function size:0x144 +fn_806242F4 = .text:0x806242F4; // type:function size:0x4C +fn_80624340 = .text:0x80624340; // type:function size:0x4 +fn_80624344 = .text:0x80624344; // type:function size:0x14 +fn_80624358 = .text:0x80624358; // type:function size:0x14 +fn_8062436C = .text:0x8062436C; // type:function size:0x14 +fn_80624380 = .text:0x80624380; // type:function size:0x14 +fn_80624394 = .text:0x80624394; // type:function size:0x14 +fn_806243A8 = .text:0x806243A8; // type:function size:0x14 +fn_806243BC = .text:0x806243BC; // type:function size:0x14 +fn_806243D0 = .text:0x806243D0; // type:function size:0x14 +fn_806243E4 = .text:0x806243E4; // type:function size:0x14 +fn_806243F8 = .text:0x806243F8; // type:function size:0x14 +fn_8062440C = .text:0x8062440C; // type:function size:0x14 +fn_80624420 = .text:0x80624420; // type:function size:0x14 +fn_80624434 = .text:0x80624434; // type:function size:0x14 +fn_80624448 = .text:0x80624448; // type:function size:0x14 +fn_8062445C = .text:0x8062445C; // type:function size:0x14 +fn_80624470 = .text:0x80624470; // type:function size:0x14 +fn_80624484 = .text:0x80624484; // type:function size:0x14 +fn_80624498 = .text:0x80624498; // type:function size:0x14 +fn_806244AC = .text:0x806244AC; // type:function size:0x14 +fn_806244C0 = .text:0x806244C0; // type:function size:0x14 +fn_806244D4 = .text:0x806244D4; // type:function size:0x14 +fn_806244E8 = .text:0x806244E8; // type:function size:0x14 +fn_806244FC = .text:0x806244FC; // type:function size:0x14 +fn_80624510 = .text:0x80624510; // type:function size:0x14 +fn_80624524 = .text:0x80624524; // type:function size:0x14 +fn_80624538 = .text:0x80624538; // type:function size:0x14 +fn_8062454C = .text:0x8062454C; // type:function size:0x14 +fn_80624560 = .text:0x80624560; // type:function size:0x14 +__ct__11RndPostProcFv = .text:0x80624574; // type:function size:0x290 +__dt__11RndPostProcFv = .text:0x80624804; // type:function size:0xE8 +fn_806248EC = .text:0x806248EC; // type:function size:0x70 +fn_8062495C = .text:0x8062495C; // type:function size:0x50 +fn_806249AC = .text:0x806249AC; // type:function size:0x4C +fn_806249F8 = .text:0x806249F8; // type:function size:0x7C +fn_80624A74 = .text:0x80624A74; // type:function size:0x7C +fn_80624AF0 = .text:0x80624AF0; // type:function size:0xC +fn_80624AFC = .text:0x80624AFC; // type:function size:0x4 +fn_80624B00 = .text:0x80624B00; // type:function size:0x4 +fn_80624B04 = .text:0x80624B04; // type:function size:0x74 +fn_80624B78 = .text:0x80624B78; // type:function size:0x3C +fn_80624BB4 = .text:0x80624BB4; // type:function size:0xD8 +fn_80624C8C = .text:0x80624C8C; // type:function size:0x48 +fn_80624CD4 = .text:0x80624CD4; // type:function size:0x30 +fn_80624D04 = .text:0x80624D04; // type:function size:0x58 +fn_80624D5C = .text:0x80624D5C; // type:function size:0x74C +fn_806254A8 = .text:0x806254A8; // type:function size:0x8 +fn_806254B0 = .text:0x806254B0; // type:function size:0x8 +fn_806254B8 = .text:0x806254B8; // type:function size:0x8 +fn_806254C0 = .text:0x806254C0; // type:function size:0x8 +fn_806254C8 = .text:0x806254C8; // type:function size:0x8 +fn_806254D0 = .text:0x806254D0; // type:function size:0x8 +fn_806254D8 = .text:0x806254D8; // type:function size:0x8 +fn_806254E0 = .text:0x806254E0; // type:function size:0x8 +fn_806254E8 = .text:0x806254E8; // type:function size:0x8 +fn_806254F0 = .text:0x806254F0; // type:function size:0x8 +fn_806254F8 = .text:0x806254F8; // type:function size:0x20 +fn_80625518 = .text:0x80625518; // type:function size:0x8 +fn_80625520 = .text:0x80625520; // type:function size:0x8 +fn_80625528 = .text:0x80625528; // type:function size:0x8 +fn_80625530 = .text:0x80625530; // type:function size:0x8 +fn_80625538 = .text:0x80625538; // type:function size:0x8 +fn_80625540 = .text:0x80625540; // type:function size:0x8 +fn_80625548 = .text:0x80625548; // type:function size:0x8 +fn_80625550 = .text:0x80625550; // type:function size:0x8 +fn_80625558 = .text:0x80625558; // type:function size:0x8 +fn_80625560 = .text:0x80625560; // type:function size:0x8 +fn_80625568 = .text:0x80625568; // type:function size:0x8 +fn_80625570 = .text:0x80625570; // type:function size:0x8 +fn_80625578 = .text:0x80625578; // type:function size:0x8 +fn_80625580 = .text:0x80625580; // type:function size:0x8 +fn_80625588 = .text:0x80625588; // type:function size:0x8 +fn_80625590 = .text:0x80625590; // type:function size:0x8 +fn_80625598 = .text:0x80625598; // type:function size:0x8 +fn_806255A0 = .text:0x806255A0; // type:function size:0x8 +fn_806255A8 = .text:0x806255A8; // type:function size:0x8 +fn_806255B0 = .text:0x806255B0; // type:function size:0x8 +fn_806255B8 = .text:0x806255B8; // type:function size:0x8 +fn_806255C0 = .text:0x806255C0; // type:function size:0x8 +fn_806255C8 = .text:0x806255C8; // type:function size:0x8 +fn_806255D0 = .text:0x806255D0; // type:function size:0x20 +fn_806255F0 = .text:0x806255F0; // type:function size:0x6C +fn_8062565C = .text:0x8062565C; // type:function size:0x54 +fn_806256B0 = .text:0x806256B0; // type:function size:0x60 +fn_80625710 = .text:0x80625710; // type:function size:0x20 +fn_80625730 = .text:0x80625730; // type:function size:0xDC +fn_8062580C = .text:0x8062580C; // type:function size:0x3C +fn_80625848 = .text:0x80625848; // type:function size:0x4 +fn_8062584C = .text:0x8062584C; // type:function size:0x230 +fn_80625A7C = .text:0x80625A7C; // type:function size:0xB4 +fn_80625B30 = .text:0x80625B30; // type:function size:0x5C0 +Handle__11RndPostProcFP9DataArrayb = .text:0x806260F0; // type:function size:0x284 +fn_80626374 = .text:0x80626374; // type:function size:0xDB8 +fn_8062712C = .text:0x8062712C; // type:function size:0x24 +fn_80627150 = .text:0x80627150; // type:function size:0x8 +fn_80627158 = .text:0x80627158; // type:function size:0xC +fn_80627164 = .text:0x80627164; // type:function size:0x20 +fn_80627184 = .text:0x80627184; // type:function size:0xCC +fn_80627250 = .text:0x80627250; // type:function size:0x30 +fn_80627280 = .text:0x80627280; // type:function size:0x4 +fn_80627284 = .text:0x80627284; // type:function size:0x128 +fn_806273AC = .text:0x806273AC; // type:function size:0xC +fn_806273B8 = .text:0x806273B8; // type:function size:0x8 +fn_806273C0 = .text:0x806273C0; // type:function size:0x8 +fn_806273C8 = .text:0x806273C8; // type:function size:0x8 +fn_806273D0 = .text:0x806273D0; // type:function size:0x8 +fn_806273D8 = .text:0x806273D8; // type:function size:0x8 +fn_806273E0 = .text:0x806273E0; // type:function size:0x10 +fn_806273F0 = .text:0x806273F0; // type:function size:0x78 +fn_80627468 = .text:0x80627468; // type:function size:0xA0 +fn_80627508 = .text:0x80627508; // type:function size:0xB4 +fn_806275BC = .text:0x806275BC; // type:function size:0x90 +fn_8062764C = .text:0x8062764C; // type:function size:0x90 +fn_806276DC = .text:0x806276DC; // type:function size:0x90 +fn_8062776C = .text:0x8062776C; // type:function size:0xBC +fn_80627828 = .text:0x80627828; // type:function size:0xCC +fn_806278F4 = .text:0x806278F4; // type:function size:0x170 +fn_80627A64 = .text:0x80627A64; // type:function size:0x100 +fn_80627B64 = .text:0x80627B64; // type:function size:0xD4 +fn_80627C38 = .text:0x80627C38; // type:function size:0x44 +fn_80627C7C = .text:0x80627C7C; // type:function size:0xD4 +fn_80627D50 = .text:0x80627D50; // type:function size:0xD4 +fn_80627E24 = .text:0x80627E24; // type:function size:0xD4 +fn_80627EF8 = .text:0x80627EF8; // type:function size:0x14 +fn_80627F0C = .text:0x80627F0C; // type:function size:0xE0 +fn_80627FEC = .text:0x80627FEC; // type:function size:0xD4 +fn_806280C0 = .text:0x806280C0; // type:function size:0xD4 +fn_80628194 = .text:0x80628194; // type:function size:0x48 +fn_806281DC = .text:0x806281DC; // type:function size:0x4 +fn_806281E0 = .text:0x806281E0; // type:function size:0x194 +fn_80628374 = .text:0x80628374; // type:function size:0x40 +fn_806283B4 = .text:0x806283B4; // type:function size:0xE8 +fn_8062849C = .text:0x8062849C; // type:function size:0x6C +fn_80628508 = .text:0x80628508; // type:function size:0x2B0 +fn_806287B8 = .text:0x806287B8; // type:function size:0x290 +fn_80628A48 = .text:0x80628A48; // type:function size:0xDC +fn_80628B24 = .text:0x80628B24; // type:function size:0x38 +fn_80628B5C = .text:0x80628B5C; // type:function size:0x24C +fn_80628DA8 = .text:0x80628DA8; // type:function size:0x44 +fn_80628DEC = .text:0x80628DEC; // type:function size:0x14 +fn_80628E00 = .text:0x80628E00; // type:function size:0x294 +fn_80629094 = .text:0x80629094; // type:function size:0x168 +fn_806291FC = .text:0x806291FC; // type:function size:0xD4 +fn_806292D0 = .text:0x806292D0; // type:function size:0x58 +fn_80629328 = .text:0x80629328; // type:function size:0x68 +fn_80629390 = .text:0x80629390; // type:function size:0x2C0 +fn_80629650 = .text:0x80629650; // type:function size:0x58 +fn_806296A8 = .text:0x806296A8; // type:function size:0x6C +fn_80629714 = .text:0x80629714; // type:function size:0x13C +fn_80629850 = .text:0x80629850; // type:function size:0x110 +fn_80629960 = .text:0x80629960; // type:function size:0x24 +fn_80629984 = .text:0x80629984; // type:function size:0x1D8 +fn_80629B5C = .text:0x80629B5C; // type:function size:0x160 +fn_80629CBC = .text:0x80629CBC; // type:function size:0x178 +fn_80629E34 = .text:0x80629E34; // type:function size:0x9C +fn_80629ED0 = .text:0x80629ED0; // type:function size:0x180 +fn_8062A050 = .text:0x8062A050; // type:function size:0x1D8 +fn_8062A228 = .text:0x8062A228; // type:function size:0x58 +fn_8062A280 = .text:0x8062A280; // type:function size:0x68 +fn_8062A2E8 = .text:0x8062A2E8; // type:function size:0x20 +fn_8062A308 = .text:0x8062A308; // type:function size:0x45C +fn_8062A764 = .text:0x8062A764; // type:function size:0x168 +fn_8062A8CC = .text:0x8062A8CC; // type:function size:0xB0 +fn_8062A97C = .text:0x8062A97C; // type:function size:0xB8 +fn_8062AA34 = .text:0x8062AA34; // type:function size:0xAC +fn_8062AAE0 = .text:0x8062AAE0; // type:function size:0xAC +fn_8062AB8C = .text:0x8062AB8C; // type:function size:0xF8 +fn_8062AC84 = .text:0x8062AC84; // type:function size:0x10 +fn_8062AC94 = .text:0x8062AC94; // type:function size:0x128 +fn_8062ADBC = .text:0x8062ADBC; // type:function size:0xD0 +fn_8062AE8C = .text:0x8062AE8C; // type:function size:0xF8 +fn_8062AF84 = .text:0x8062AF84; // type:function size:0x40 +fn_8062AFC4 = .text:0x8062AFC4; // type:function size:0x128 +fn_8062B0EC = .text:0x8062B0EC; // type:function size:0xCC +fn_8062B1B8 = .text:0x8062B1B8; // type:function size:0xB4 +fn_8062B26C = .text:0x8062B26C; // type:function size:0x5C +fn_8062B2C8 = .text:0x8062B2C8; // type:function size:0x70 +fn_8062B338 = .text:0x8062B338; // type:function size:0x8C +fn_8062B3C4 = .text:0x8062B3C4; // type:function size:0x64 +fn_8062B428 = .text:0x8062B428; // type:function size:0xD0 +fn_8062B4F8 = .text:0x8062B4F8; // type:function size:0x128 +fn_8062B620 = .text:0x8062B620; // type:function size:0xA8 +fn_8062B6C8 = .text:0x8062B6C8; // type:function size:0x98 +fn_8062B760 = .text:0x8062B760; // type:function size:0x4 +fn_8062B764 = .text:0x8062B764; // type:function size:0x2C +fn_8062B790 = .text:0x8062B790; // type:function size:0x24 +fn_8062B7B4 = .text:0x8062B7B4; // type:function size:0xAC +fn_8062B860 = .text:0x8062B860; // type:function size:0xF0 +fn_8062B950 = .text:0x8062B950; // type:function size:0x158 +fn_8062BAA8 = .text:0x8062BAA8; // type:function size:0x24 +fn_8062BACC = .text:0x8062BACC; // type:function size:0x58 +fn_8062BB24 = .text:0x8062BB24; // type:function size:0x64 +fn_8062BB88 = .text:0x8062BB88; // type:function size:0x98 +fn_8062BC20 = .text:0x8062BC20; // type:function size:0x4 +fn_8062BC24 = .text:0x8062BC24; // type:function size:0x2C +fn_8062BC50 = .text:0x8062BC50; // type:function size:0x24 +fn_8062BC74 = .text:0x8062BC74; // type:function size:0xAC +fn_8062BD20 = .text:0x8062BD20; // type:function size:0xF0 +fn_8062BE10 = .text:0x8062BE10; // type:function size:0x158 +fn_8062BF68 = .text:0x8062BF68; // type:function size:0x24 +fn_8062BF8C = .text:0x8062BF8C; // type:function size:0x58 +fn_8062BFE4 = .text:0x8062BFE4; // type:function size:0x64 +fn_8062C048 = .text:0x8062C048; // type:function size:0x4 +fn_8062C04C = .text:0x8062C04C; // type:function size:0x3C +fn_8062C088 = .text:0x8062C088; // type:function size:0x98 +fn_8062C120 = .text:0x8062C120; // type:function size:0x4 +fn_8062C124 = .text:0x8062C124; // type:function size:0x2C +fn_8062C150 = .text:0x8062C150; // type:function size:0x24 +fn_8062C174 = .text:0x8062C174; // type:function size:0xAC +fn_8062C220 = .text:0x8062C220; // type:function size:0xF0 +fn_8062C310 = .text:0x8062C310; // type:function size:0x158 +fn_8062C468 = .text:0x8062C468; // type:function size:0x24 +fn_8062C48C = .text:0x8062C48C; // type:function size:0x58 +fn_8062C4E4 = .text:0x8062C4E4; // type:function size:0x64 +fn_8062C548 = .text:0x8062C548; // type:function size:0x28 +fn_8062C570 = .text:0x8062C570; // type:function size:0x68 +fn_8062C5D8 = .text:0x8062C5D8; // type:function size:0x4 +fn_8062C5DC = .text:0x8062C5DC; // type:function size:0x3C +fn_8062C618 = .text:0x8062C618; // type:function size:0x40 +fn_8062C658 = .text:0x8062C658; // type:function size:0x8C +fn_8062C6E4 = .text:0x8062C6E4; // type:function size:0x8 +fn_8062C6EC = .text:0x8062C6EC; // type:function size:0x2C +fn_8062C718 = .text:0x8062C718; // type:function size:0x58 +fn_8062C770 = .text:0x8062C770; // type:function size:0x28 +fn_8062C798 = .text:0x8062C798; // type:function size:0x98 +fn_8062C830 = .text:0x8062C830; // type:function size:0x4 +fn_8062C834 = .text:0x8062C834; // type:function size:0x2C +fn_8062C860 = .text:0x8062C860; // type:function size:0x24 +fn_8062C884 = .text:0x8062C884; // type:function size:0xAC +fn_8062C930 = .text:0x8062C930; // type:function size:0xF0 +fn_8062CA20 = .text:0x8062CA20; // type:function size:0x60 +fn_8062CA80 = .text:0x8062CA80; // type:function size:0x5C +fn_8062CADC = .text:0x8062CADC; // type:function size:0x54 +fn_8062CB30 = .text:0x8062CB30; // type:function size:0x5C +fn_8062CB8C = .text:0x8062CB8C; // type:function size:0x6C +fn_8062CBF8 = .text:0x8062CBF8; // type:function size:0x28 +fn_8062CC20 = .text:0x8062CC20; // type:function size:0x8 +fn_8062CC28 = .text:0x8062CC28; // type:function size:0x3C +fn_8062CC64 = .text:0x8062CC64; // type:function size:0x5C +fn_8062CCC0 = .text:0x8062CCC0; // type:function size:0x10 +fn_8062CCD0 = .text:0x8062CCD0; // type:function size:0x158 +fn_8062CE28 = .text:0x8062CE28; // type:function size:0x24 +fn_8062CE4C = .text:0x8062CE4C; // type:function size:0x58 +fn_8062CEA4 = .text:0x8062CEA4; // type:function size:0x64 +fn_8062CF08 = .text:0x8062CF08; // type:function size:0x28 +fn_8062CF30 = .text:0x8062CF30; // type:function size:0x68 +fn_8062CF98 = .text:0x8062CF98; // type:function size:0x28 +fn_8062CFC0 = .text:0x8062CFC0; // type:function size:0x68 +fn_8062D028 = .text:0x8062D028; // type:function size:0x4 +fn_8062D02C = .text:0x8062D02C; // type:function size:0x3C +fn_8062D068 = .text:0x8062D068; // type:function size:0x40 +fn_8062D0A8 = .text:0x8062D0A8; // type:function size:0x8C +fn_8062D134 = .text:0x8062D134; // type:function size:0x8 +fn_8062D13C = .text:0x8062D13C; // type:function size:0x2C +fn_8062D168 = .text:0x8062D168; // type:function size:0x58 +fn_8062D1C0 = .text:0x8062D1C0; // type:function size:0x28 +fn_8062D1E8 = .text:0x8062D1E8; // type:function size:0x98 +fn_8062D280 = .text:0x8062D280; // type:function size:0x4 +fn_8062D284 = .text:0x8062D284; // type:function size:0x2C +fn_8062D2B0 = .text:0x8062D2B0; // type:function size:0x24 +fn_8062D2D4 = .text:0x8062D2D4; // type:function size:0xAC +fn_8062D380 = .text:0x8062D380; // type:function size:0xF0 +fn_8062D470 = .text:0x8062D470; // type:function size:0x5C +fn_8062D4CC = .text:0x8062D4CC; // type:function size:0x5C +fn_8062D528 = .text:0x8062D528; // type:function size:0x54 +fn_8062D57C = .text:0x8062D57C; // type:function size:0x5C +fn_8062D5D8 = .text:0x8062D5D8; // type:function size:0x6C +fn_8062D644 = .text:0x8062D644; // type:function size:0x28 +fn_8062D66C = .text:0x8062D66C; // type:function size:0x8 +fn_8062D674 = .text:0x8062D674; // type:function size:0x3C +fn_8062D6B0 = .text:0x8062D6B0; // type:function size:0x5C +fn_8062D70C = .text:0x8062D70C; // type:function size:0x10 +fn_8062D71C = .text:0x8062D71C; // type:function size:0x158 +fn_8062D874 = .text:0x8062D874; // type:function size:0x24 +fn_8062D898 = .text:0x8062D898; // type:function size:0x58 +fn_8062D8F0 = .text:0x8062D8F0; // type:function size:0x64 +fn_8062D954 = .text:0x8062D954; // type:function size:0x28 +fn_8062D97C = .text:0x8062D97C; // type:function size:0x68 +fn_8062D9E4 = .text:0x8062D9E4; // type:function size:0x28 +fn_8062DA0C = .text:0x8062DA0C; // type:function size:0x68 +fn_8062DA74 = .text:0x8062DA74; // type:function size:0x4 +fn_8062DA78 = .text:0x8062DA78; // type:function size:0x3C +fn_8062DAB4 = .text:0x8062DAB4; // type:function size:0x40 +fn_8062DAF4 = .text:0x8062DAF4; // type:function size:0x8C +fn_8062DB80 = .text:0x8062DB80; // type:function size:0x8 +fn_8062DB88 = .text:0x8062DB88; // type:function size:0x2C +fn_8062DBB4 = .text:0x8062DBB4; // type:function size:0x58 +fn_8062DC0C = .text:0x8062DC0C; // type:function size:0x28 +fn_8062DC34 = .text:0x8062DC34; // type:function size:0x98 +fn_8062DCCC = .text:0x8062DCCC; // type:function size:0x4 +fn_8062DCD0 = .text:0x8062DCD0; // type:function size:0x2C +fn_8062DCFC = .text:0x8062DCFC; // type:function size:0x24 +fn_8062DD20 = .text:0x8062DD20; // type:function size:0xAC +fn_8062DDCC = .text:0x8062DDCC; // type:function size:0xF0 +fn_8062DEBC = .text:0x8062DEBC; // type:function size:0x158 +fn_8062E014 = .text:0x8062E014; // type:function size:0x24 +fn_8062E038 = .text:0x8062E038; // type:function size:0x58 +fn_8062E090 = .text:0x8062E090; // type:function size:0x64 +fn_8062E0F4 = .text:0x8062E0F4; // type:function size:0x98 +fn_8062E18C = .text:0x8062E18C; // type:function size:0x4 +fn_8062E190 = .text:0x8062E190; // type:function size:0x2C +fn_8062E1BC = .text:0x8062E1BC; // type:function size:0x24 +fn_8062E1E0 = .text:0x8062E1E0; // type:function size:0xAC +fn_8062E28C = .text:0x8062E28C; // type:function size:0xF0 +fn_8062E37C = .text:0x8062E37C; // type:function size:0x158 +fn_8062E4D4 = .text:0x8062E4D4; // type:function size:0x24 +fn_8062E4F8 = .text:0x8062E4F8; // type:function size:0x58 +fn_8062E550 = .text:0x8062E550; // type:function size:0x64 +fn_8062E5B4 = .text:0x8062E5B4; // type:function size:0x28 +fn_8062E5DC = .text:0x8062E5DC; // type:function size:0x10 +fn_8062E5EC = .text:0x8062E5EC; // type:function size:0x58 +fn_8062E644 = .text:0x8062E644; // type:function size:0x58 +fn_8062E69C = .text:0x8062E69C; // type:function size:0x68 +fn_8062E704 = .text:0x8062E704; // type:function size:0x8 +fn_8062E70C = .text:0x8062E70C; // type:function size:0x48 +fn_8062E754 = .text:0x8062E754; // type:function size:0x8 +fn_8062E75C = .text:0x8062E75C; // type:function size:0x68 +fn_8062E7C4 = .text:0x8062E7C4; // type:function size:0x9C +fn_8062E860 = .text:0x8062E860; // type:function size:0x38 +fn_8062E898 = .text:0x8062E898; // type:function size:0x10 +fn_8062E8A8 = .text:0x8062E8A8; // type:function size:0x2C +fn_8062E8D4 = .text:0x8062E8D4; // type:function size:0x84 +fn_8062E958 = .text:0x8062E958; // type:function size:0x2C +fn_8062E984 = .text:0x8062E984; // type:function size:0x8 +fn_8062E98C = .text:0x8062E98C; // type:function size:0x44 +fn_8062E9D0 = .text:0x8062E9D0; // type:function size:0x44 +fn_8062EA14 = .text:0x8062EA14; // type:function size:0x68 +fn_8062EA7C = .text:0x8062EA7C; // type:function size:0x8 +fn_8062EA84 = .text:0x8062EA84; // type:function size:0x48 +fn_8062EACC = .text:0x8062EACC; // type:function size:0x8 +fn_8062EAD4 = .text:0x8062EAD4; // type:function size:0x68 +fn_8062EB3C = .text:0x8062EB3C; // type:function size:0x9C +fn_8062EBD8 = .text:0x8062EBD8; // type:function size:0x38 +fn_8062EC10 = .text:0x8062EC10; // type:function size:0x10 +fn_8062EC20 = .text:0x8062EC20; // type:function size:0x2C +fn_8062EC4C = .text:0x8062EC4C; // type:function size:0x84 +fn_8062ECD0 = .text:0x8062ECD0; // type:function size:0x2C +fn_8062ECFC = .text:0x8062ECFC; // type:function size:0x8 +fn_8062ED04 = .text:0x8062ED04; // type:function size:0x44 +fn_8062ED48 = .text:0x8062ED48; // type:function size:0x74 +fn_8062EDBC = .text:0x8062EDBC; // type:function size:0x44 +fn_8062EE00 = .text:0x8062EE00; // type:function size:0x44 +fn_8062EE44 = .text:0x8062EE44; // type:function size:0x68 +fn_8062EEAC = .text:0x8062EEAC; // type:function size:0x58 +fn_8062EF04 = .text:0x8062EF04; // type:function size:0x58 +fn_8062EF5C = .text:0x8062EF5C; // type:function size:0x58 +fn_8062EFB4 = .text:0x8062EFB4; // type:function size:0x80 +fn_8062F034 = .text:0x8062F034; // type:function size:0x80 +fn_8062F0B4 = .text:0x8062F0B4; // type:function size:0x58 +fn_8062F10C = .text:0x8062F10C; // type:function size:0x54 +fn_8062F160 = .text:0x8062F160; // type:function size:0x8 +fn_8062F168 = .text:0x8062F168; // type:function size:0x48 +fn_8062F1B0 = .text:0x8062F1B0; // type:function size:0x8 +fn_8062F1B8 = .text:0x8062F1B8; // type:function size:0x4C +fn_8062F204 = .text:0x8062F204; // type:function size:0x68 +fn_8062F26C = .text:0x8062F26C; // type:function size:0xA0 +fn_8062F30C = .text:0x8062F30C; // type:function size:0x38 +fn_8062F344 = .text:0x8062F344; // type:function size:0x10 +fn_8062F354 = .text:0x8062F354; // type:function size:0x2C +fn_8062F380 = .text:0x8062F380; // type:function size:0x84 +fn_8062F404 = .text:0x8062F404; // type:function size:0x2C +fn_8062F430 = .text:0x8062F430; // type:function size:0x8 +fn_8062F438 = .text:0x8062F438; // type:function size:0x44 +fn_8062F47C = .text:0x8062F47C; // type:function size:0x74 +fn_8062F4F0 = .text:0x8062F4F0; // type:function size:0x44 +fn_8062F534 = .text:0x8062F534; // type:function size:0x5C +fn_8062F590 = .text:0x8062F590; // type:function size:0x8C +fn_8062F61C = .text:0x8062F61C; // type:function size:0x44 +fn_8062F660 = .text:0x8062F660; // type:function size:0x4 +fn_8062F664 = .text:0x8062F664; // type:function size:0x90 +fn_8062F6F4 = .text:0x8062F6F4; // type:function size:0x4 +fn_8062F6F8 = .text:0x8062F6F8; // type:function size:0x58 +fn_8062F750 = .text:0x8062F750; // type:function size:0x48 +fn_8062F798 = .text:0x8062F798; // type:function size:0x68 +fn_8062F800 = .text:0x8062F800; // type:function size:0x58 +fn_8062F858 = .text:0x8062F858; // type:function size:0x58 +fn_8062F8B0 = .text:0x8062F8B0; // type:function size:0x80 +fn_8062F930 = .text:0x8062F930; // type:function size:0x80 +fn_8062F9B0 = .text:0x8062F9B0; // type:function size:0x58 +fn_8062FA08 = .text:0x8062FA08; // type:function size:0x54 +fn_8062FA5C = .text:0x8062FA5C; // type:function size:0x8 +fn_8062FA64 = .text:0x8062FA64; // type:function size:0x48 +fn_8062FAAC = .text:0x8062FAAC; // type:function size:0x8 +fn_8062FAB4 = .text:0x8062FAB4; // type:function size:0x4C +fn_8062FB00 = .text:0x8062FB00; // type:function size:0x68 +fn_8062FB68 = .text:0x8062FB68; // type:function size:0x9C +fn_8062FC04 = .text:0x8062FC04; // type:function size:0x38 +fn_8062FC3C = .text:0x8062FC3C; // type:function size:0x10 +fn_8062FC4C = .text:0x8062FC4C; // type:function size:0x2C +fn_8062FC78 = .text:0x8062FC78; // type:function size:0x84 +fn_8062FCFC = .text:0x8062FCFC; // type:function size:0x2C +fn_8062FD28 = .text:0x8062FD28; // type:function size:0x8 +fn_8062FD30 = .text:0x8062FD30; // type:function size:0x44 +fn_8062FD74 = .text:0x8062FD74; // type:function size:0x74 +fn_8062FDE8 = .text:0x8062FDE8; // type:function size:0x48 +fn_8062FE30 = .text:0x8062FE30; // type:function size:0x44 +fn_8062FE74 = .text:0x8062FE74; // type:function size:0x80 +fn_8062FEF4 = .text:0x8062FEF4; // type:function size:0x44 +fn_8062FF38 = .text:0x8062FF38; // type:function size:0x4 +fn_8062FF3C = .text:0x8062FF3C; // type:function size:0x90 +fn_8062FFCC = .text:0x8062FFCC; // type:function size:0x4 +fn_8062FFD0 = .text:0x8062FFD0; // type:function size:0x18 +fn_8062FFE8 = .text:0x8062FFE8; // type:function size:0x68 +fn_80630050 = .text:0x80630050; // type:function size:0x58 +fn_806300A8 = .text:0x806300A8; // type:function size:0x58 +fn_80630100 = .text:0x80630100; // type:function size:0x80 +fn_80630180 = .text:0x80630180; // type:function size:0x80 +fn_80630200 = .text:0x80630200; // type:function size:0x58 +fn_80630258 = .text:0x80630258; // type:function size:0x54 +fn_806302AC = .text:0x806302AC; // type:function size:0x8 +fn_806302B4 = .text:0x806302B4; // type:function size:0x48 +fn_806302FC = .text:0x806302FC; // type:function size:0x8 +fn_80630304 = .text:0x80630304; // type:function size:0x4C +fn_80630350 = .text:0x80630350; // type:function size:0x68 +fn_806303B8 = .text:0x806303B8; // type:function size:0x9C +fn_80630454 = .text:0x80630454; // type:function size:0x38 +fn_8063048C = .text:0x8063048C; // type:function size:0x10 +fn_8063049C = .text:0x8063049C; // type:function size:0x2C +fn_806304C8 = .text:0x806304C8; // type:function size:0x84 +fn_8063054C = .text:0x8063054C; // type:function size:0x2C +fn_80630578 = .text:0x80630578; // type:function size:0x8 +fn_80630580 = .text:0x80630580; // type:function size:0x44 +fn_806305C4 = .text:0x806305C4; // type:function size:0x74 +fn_80630638 = .text:0x80630638; // type:function size:0x44 +fn_8063067C = .text:0x8063067C; // type:function size:0x44 +fn_806306C0 = .text:0x806306C0; // type:function size:0x80 +fn_80630740 = .text:0x80630740; // type:function size:0x44 +fn_80630784 = .text:0x80630784; // type:function size:0x4 +fn_80630788 = .text:0x80630788; // type:function size:0x90 +fn_80630818 = .text:0x80630818; // type:function size:0x4 +fn_8063081C = .text:0x8063081C; // type:function size:0x40 +fn_8063085C = .text:0x8063085C; // type:function size:0x68 +fn_806308C4 = .text:0x806308C4; // type:function size:0x8 +fn_806308CC = .text:0x806308CC; // type:function size:0x48 +fn_80630914 = .text:0x80630914; // type:function size:0x8 +fn_8063091C = .text:0x8063091C; // type:function size:0x68 +fn_80630984 = .text:0x80630984; // type:function size:0x9C +fn_80630A20 = .text:0x80630A20; // type:function size:0x38 +fn_80630A58 = .text:0x80630A58; // type:function size:0x10 +fn_80630A68 = .text:0x80630A68; // type:function size:0x2C +fn_80630A94 = .text:0x80630A94; // type:function size:0x84 +fn_80630B18 = .text:0x80630B18; // type:function size:0x2C +fn_80630B44 = .text:0x80630B44; // type:function size:0x8 +fn_80630B4C = .text:0x80630B4C; // type:function size:0x44 +fn_80630B90 = .text:0x80630B90; // type:function size:0x74 +fn_80630C04 = .text:0x80630C04; // type:function size:0x44 +fn_80630C48 = .text:0x80630C48; // type:function size:0x44 +fn_80630C8C = .text:0x80630C8C; // type:function size:0x68 +fn_80630CF4 = .text:0x80630CF4; // type:function size:0x8 +fn_80630CFC = .text:0x80630CFC; // type:function size:0x48 +fn_80630D44 = .text:0x80630D44; // type:function size:0x8 +fn_80630D4C = .text:0x80630D4C; // type:function size:0x4C +fn_80630D98 = .text:0x80630D98; // type:function size:0x9C +fn_80630E34 = .text:0x80630E34; // type:function size:0x44 +fn_80630E78 = .text:0x80630E78; // type:function size:0x74 +fn_80630EEC = .text:0x80630EEC; // type:function size:0x44 +fn_80630F30 = .text:0x80630F30; // type:function size:0x44 +fn_80630F74 = .text:0x80630F74; // type:function size:0x80 +fn_80630FF4 = .text:0x80630FF4; // type:function size:0x44 +fn_80631038 = .text:0x80631038; // type:function size:0x4 +fn_8063103C = .text:0x8063103C; // type:function size:0x90 +fn_806310CC = .text:0x806310CC; // type:function size:0x4 +fn_806310D0 = .text:0x806310D0; // type:function size:0x4C +fn_8063111C = .text:0x8063111C; // type:function size:0x68 +fn_80631184 = .text:0x80631184; // type:function size:0x2C +fn_806311B0 = .text:0x806311B0; // type:function size:0x68 +fn_80631218 = .text:0x80631218; // type:function size:0x2C +fn_80631244 = .text:0x80631244; // type:function size:0x190 +fn_806313D4 = .text:0x806313D4; // type:function size:0x5C +fn_80631430 = .text:0x80631430; // type:function size:0x54 +fn_80631484 = .text:0x80631484; // type:function size:0x114 +fn_80631598 = .text:0x80631598; // type:function size:0x18C +fn_80631724 = .text:0x80631724; // type:function size:0x5C +fn_80631780 = .text:0x80631780; // type:function size:0x54 +fn_806317D4 = .text:0x806317D4; // type:function size:0x114 +fn_806318E8 = .text:0x806318E8; // type:function size:0xE8 +fn_806319D0 = .text:0x806319D0; // type:function size:0xA8 +fn_80631A78 = .text:0x80631A78; // type:function size:0xA8 +fn_80631B20 = .text:0x80631B20; // type:function size:0xC8 +fn_80631BE8 = .text:0x80631BE8; // type:function size:0x4 +fn_80631BEC = .text:0x80631BEC; // type:function size:0x14C +fn_80631D38 = .text:0x80631D38; // type:function size:0x348 +fn_80632080 = .text:0x80632080; // type:function size:0x30 +fn_806320B0 = .text:0x806320B0; // type:function size:0x30 +fn_806320E0 = .text:0x806320E0; // type:function size:0x30 +fn_80632110 = .text:0x80632110; // type:function size:0x30 +fn_80632140 = .text:0x80632140; // type:function size:0xB0 +fn_806321F0 = .text:0x806321F0; // type:function size:0x40 +fn_80632230 = .text:0x80632230; // type:function size:0x30 +fn_80632260 = .text:0x80632260; // type:function size:0x30 +fn_80632290 = .text:0x80632290; // type:function size:0x40 +fn_806322D0 = .text:0x806322D0; // type:function size:0x40 +fn_80632310 = .text:0x80632310; // type:function size:0x30 +fn_80632340 = .text:0x80632340; // type:function size:0x30 +fn_80632370 = .text:0x80632370; // type:function size:0x40 +fn_806323B0 = .text:0x806323B0; // type:function size:0x40 +fn_806323F0 = .text:0x806323F0; // type:function size:0x40 +fn_80632430 = .text:0x80632430; // type:function size:0x30 +fn_80632460 = .text:0x80632460; // type:function size:0x30 +fn_80632490 = .text:0x80632490; // type:function size:0x40 +fn_806324D0 = .text:0x806324D0; // type:function size:0xF4 +fn_806325C4 = .text:0x806325C4; // type:function size:0x94 +fn_80632658 = .text:0x80632658; // type:function size:0x94 +fn_806326EC = .text:0x806326EC; // type:function size:0xA4 +fn_80632790 = .text:0x80632790; // type:function size:0x174 +fn_80632904 = .text:0x80632904; // type:function size:0x78 +fn_8063297C = .text:0x8063297C; // type:function size:0x5C +fn_806329D8 = .text:0x806329D8; // type:function size:0x14 +fn_806329EC = .text:0x806329EC; // type:function size:0xA8 +fn_80632A94 = .text:0x80632A94; // type:function size:0x23C +fn_80632CD0 = .text:0x80632CD0; // type:function size:0x6C +fn_80632D3C = .text:0x80632D3C; // type:function size:0x54 +fn_80632D90 = .text:0x80632D90; // type:function size:0x64 +fn_80632DF4 = .text:0x80632DF4; // type:function size:0x58 +fn_80632E4C = .text:0x80632E4C; // type:function size:0x68 +fn_80632EB4 = .text:0x80632EB4; // type:function size:0x54 +fn_80632F08 = .text:0x80632F08; // type:function size:0x50 +fn_80632F58 = .text:0x80632F58; // type:function size:0xC0 +fn_80633018 = .text:0x80633018; // type:function size:0x8 +fn_80633020 = .text:0x80633020; // type:function size:0x5C +fn_8063307C = .text:0x8063307C; // type:function size:0x5C +fn_806330D8 = .text:0x806330D8; // type:function size:0xB0 +fn_80633188 = .text:0x80633188; // type:function size:0x84 +fn_8063320C = .text:0x8063320C; // type:function size:0x60 +fn_8063326C = .text:0x8063326C; // type:function size:0x6C +fn_806332D8 = .text:0x806332D8; // type:function size:0x354 +fn_8063362C = .text:0x8063362C; // type:function size:0x5C +fn_80633688 = .text:0x80633688; // type:function size:0x5C +fn_806336E4 = .text:0x806336E4; // type:function size:0x5C +fn_80633740 = .text:0x80633740; // type:function size:0x70 +fn_806337B0 = .text:0x806337B0; // type:function size:0x60 +fn_80633810 = .text:0x80633810; // type:function size:0x90 +fn_806338A0 = .text:0x806338A0; // type:function size:0x1F0 +fn_80633A90 = .text:0x80633A90; // type:function size:0x78C +fn_8063421C = .text:0x8063421C; // type:function size:0x164 +fn_80634380 = .text:0x80634380; // type:function size:0x318 +fn_80634698 = .text:0x80634698; // type:function size:0x88 +fn_80634720 = .text:0x80634720; // type:function size:0x104 +fn_80634824 = .text:0x80634824; // type:function size:0x30 +fn_80634854 = .text:0x80634854; // type:function size:0xCC +fn_80634920 = .text:0x80634920; // type:function size:0x34 +fn_80634954 = .text:0x80634954; // type:function size:0xA4 +fn_806349F8 = .text:0x806349F8; // type:function size:0xF4 +fn_80634AEC = .text:0x80634AEC; // type:function size:0xA8 +fn_80634B94 = .text:0x80634B94; // type:function size:0x6C +fn_80634C00 = .text:0x80634C00; // type:function size:0x30 +fn_80634C30 = .text:0x80634C30; // type:function size:0x74 +fn_80634CA4 = .text:0x80634CA4; // type:function size:0x88 +fn_80634D2C = .text:0x80634D2C; // type:function size:0x58 +fn_80634D84 = .text:0x80634D84; // type:function size:0xA4 +fn_80634E28 = .text:0x80634E28; // type:function size:0x6C +fn_80634E94 = .text:0x80634E94; // type:function size:0xC +fn_80634EA0 = .text:0x80634EA0; // type:function size:0x64 +fn_80634F04 = .text:0x80634F04; // type:function size:0xE0 +fn_80634FE4 = .text:0x80634FE4; // type:function size:0x94 +fn_80635078 = .text:0x80635078; // type:function size:0x88 +fn_80635100 = .text:0x80635100; // type:function size:0xA4 +fn_806351A4 = .text:0x806351A4; // type:function size:0x8C +fn_80635230 = .text:0x80635230; // type:function size:0x58 +fn_80635288 = .text:0x80635288; // type:function size:0x64 +fn_806352EC = .text:0x806352EC; // type:function size:0x28 +fn_80635314 = .text:0x80635314; // type:function size:0x68 +fn_8063537C = .text:0x8063537C; // type:function size:0x30 +fn_806353AC = .text:0x806353AC; // type:function size:0x78 +fn_80635424 = .text:0x80635424; // type:function size:0x58 +fn_8063547C = .text:0x8063547C; // type:function size:0x80 +fn_806354FC = .text:0x806354FC; // type:function size:0x80 +fn_8063557C = .text:0x8063557C; // type:function size:0x58 +fn_806355D4 = .text:0x806355D4; // type:function size:0x54 +fn_80635628 = .text:0x80635628; // type:function size:0x5C +fn_80635684 = .text:0x80635684; // type:function size:0x6C +fn_806356F0 = .text:0x806356F0; // type:function size:0x28 +fn_80635718 = .text:0x80635718; // type:function size:0x8 +fn_80635720 = .text:0x80635720; // type:function size:0x3C +fn_8063575C = .text:0x8063575C; // type:function size:0x4 +fn_80635760 = .text:0x80635760; // type:function size:0x88 +fn_806357E8 = .text:0x806357E8; // type:function size:0x2C +fn_80635814 = .text:0x80635814; // type:function size:0x30 +fn_80635844 = .text:0x80635844; // type:function size:0x30 +fn_80635874 = .text:0x80635874; // type:function size:0x40 +fn_806358B4 = .text:0x806358B4; // type:function size:0x58 +fn_8063590C = .text:0x8063590C; // type:function size:0x50 +fn_8063595C = .text:0x8063595C; // type:function size:0xD0 +fn_80635A2C = .text:0x80635A2C; // type:function size:0xC0 +fn_80635AEC = .text:0x80635AEC; // type:function size:0xBC +fn_80635BA8 = .text:0x80635BA8; // type:function size:0xD0 +fn_80635C78 = .text:0x80635C78; // type:function size:0x3D0 +fn_80636048 = .text:0x80636048; // type:function size:0x3C4 +fn_8063640C = .text:0x8063640C; // type:function size:0x96C +fn_80636D78 = .text:0x80636D78; // type:function size:0xC0 +fn_80636E38 = .text:0x80636E38; // type:function size:0x160 +fn_80636F98 = .text:0x80636F98; // type:function size:0x5C +fn_80636FF4 = .text:0x80636FF4; // type:function size:0x60 +fn_80637054 = .text:0x80637054; // type:function size:0x160 +fn_806371B4 = .text:0x806371B4; // type:function size:0x5C +fn_80637210 = .text:0x80637210; // type:function size:0x60 +fn_80637270 = .text:0x80637270; // type:function size:0x114 +fn_80637384 = .text:0x80637384; // type:function size:0x60 +fn_806373E4 = .text:0x806373E4; // type:function size:0x5C +fn_80637440 = .text:0x80637440; // type:function size:0x54 +fn_80637494 = .text:0x80637494; // type:function size:0x5C +fn_806374F0 = .text:0x806374F0; // type:function size:0x5C +fn_8063754C = .text:0x8063754C; // type:function size:0x48 +fn_80637594 = .text:0x80637594; // type:function size:0x14 +fn_806375A8 = .text:0x806375A8; // type:function size:0x14 +fn_806375BC = .text:0x806375BC; // type:function size:0x14 +fn_806375D0 = .text:0x806375D0; // type:function size:0x14 +fn_806375E4 = .text:0x806375E4; // type:function size:0x14 +fn_806375F8 = .text:0x806375F8; // type:function size:0x14 +fn_8063760C = .text:0x8063760C; // type:function size:0x14 +fn_80637620 = .text:0x80637620; // type:function size:0x14 +fn_80637634 = .text:0x80637634; // type:function size:0x14 +fn_80637648 = .text:0x80637648; // type:function size:0x14 +Handle__16ModalKeyListenerFP9DataArrayb = .text:0x8063765C; // type:function size:0xF4 +fn_80637750 = .text:0x80637750; // type:function size:0xCC +fn_8063781C = .text:0x8063781C; // type:function size:0x10 +fn_8063782C = .text:0x8063782C; // type:function size:0x10 +fn_8063783C = .text:0x8063783C; // type:function size:0x8 +fn_80637844 = .text:0x80637844; // type:function size:0x8 +fn_8063784C = .text:0x8063784C; // type:function size:0xFC +fn_80637948 = .text:0x80637948; // type:function size:0x24C +fn_80637B94 = .text:0x80637B94; // type:function size:0x3C +__ct__3RndFv = .text:0x80637BD0; // type:function size:0x1DC +fn_80637DAC = .text:0x80637DAC; // type:function size:0x58 +fn_80637E04 = .text:0x80637E04; // type:function size:0x58 +fn_80637E5C = .text:0x80637E5C; // type:function size:0x60 +fn_80637EBC = .text:0x80637EBC; // type:function size:0x58 +fn_80637F14 = .text:0x80637F14; // type:function size:0x30 +fn_80637F44 = .text:0x80637F44; // type:function size:0x30 +fn_80637F74 = .text:0x80637F74; // type:function size:0x60 +fn_80637FD4 = .text:0x80637FD4; // type:function size:0x18 +fn_80637FEC = .text:0x80637FEC; // type:function size:0x38 +fn_80638024 = .text:0x80638024; // type:function size:0xCC +fn_806380F0 = .text:0x806380F0; // type:function size:0x4C +fn_8063813C = .text:0x8063813C; // type:function size:0xEC +fn_80638228 = .text:0x80638228; // type:function size:0x178 +PreInit__3RndFv = .text:0x806383A0; // type:function size:0x3A4 +fn_80638744 = .text:0x80638744; // type:function size:0x34 +fn_80638778 = .text:0x80638778; // type:function size:0x48 +fn_806387C0 = .text:0x806387C0; // type:function size:0x34 +fn_806387F4 = .text:0x806387F4; // type:function size:0x44 +fn_80638838 = .text:0x80638838; // type:function size:0x34 +fn_8063886C = .text:0x8063886C; // type:function size:0x34 +fn_806388A0 = .text:0x806388A0; // type:function size:0x34 +fn_806388D4 = .text:0x806388D4; // type:function size:0x48 +fn_8063891C = .text:0x8063891C; // type:function size:0x4C +fn_80638968 = .text:0x80638968; // type:function size:0x34 +fn_8063899C = .text:0x8063899C; // type:function size:0x48 +fn_806389E4 = .text:0x806389E4; // type:function size:0x4C +fn_80638A30 = .text:0x80638A30; // type:function size:0x34 +fn_80638A64 = .text:0x80638A64; // type:function size:0x48 +fn_80638AAC = .text:0x80638AAC; // type:function size:0x4C +fn_80638AF8 = .text:0x80638AF8; // type:function size:0x34 +fn_80638B2C = .text:0x80638B2C; // type:function size:0x34 +fn_80638B60 = .text:0x80638B60; // type:function size:0x4C +fn_80638BAC = .text:0x80638BAC; // type:function size:0x34 +fn_80638BE0 = .text:0x80638BE0; // type:function size:0x48 +fn_80638C28 = .text:0x80638C28; // type:function size:0x34 +fn_80638C5C = .text:0x80638C5C; // type:function size:0x44 +fn_80638CA0 = .text:0x80638CA0; // type:function size:0x34 +fn_80638CD4 = .text:0x80638CD4; // type:function size:0x44 +fn_80638D18 = .text:0x80638D18; // type:function size:0x34 +fn_80638D4C = .text:0x80638D4C; // type:function size:0x48 +fn_80638D94 = .text:0x80638D94; // type:function size:0x34 +fn_80638DC8 = .text:0x80638DC8; // type:function size:0x44 +fn_80638E0C = .text:0x80638E0C; // type:function size:0x34 +fn_80638E40 = .text:0x80638E40; // type:function size:0x44 +fn_80638E84 = .text:0x80638E84; // type:function size:0x34 +fn_80638EB8 = .text:0x80638EB8; // type:function size:0x44 +fn_80638EFC = .text:0x80638EFC; // type:function size:0x34 +fn_80638F30 = .text:0x80638F30; // type:function size:0x48 +fn_80638F78 = .text:0x80638F78; // type:function size:0x34 +fn_80638FAC = .text:0x80638FAC; // type:function size:0x48 +fn_80638FF4 = .text:0x80638FF4; // type:function size:0x34 +fn_80639028 = .text:0x80639028; // type:function size:0x44 +fn_8063906C = .text:0x8063906C; // type:function size:0x34 +fn_806390A0 = .text:0x806390A0; // type:function size:0x44 +fn_806390E4 = .text:0x806390E4; // type:function size:0x34 +fn_80639118 = .text:0x80639118; // type:function size:0x44 +fn_8063915C = .text:0x8063915C; // type:function size:0x34 +fn_80639190 = .text:0x80639190; // type:function size:0x48 +fn_806391D8 = .text:0x806391D8; // type:function size:0x34 +fn_8063920C = .text:0x8063920C; // type:function size:0x44 +fn_80639250 = .text:0x80639250; // type:function size:0x34 +fn_80639284 = .text:0x80639284; // type:function size:0x48 +fn_806392CC = .text:0x806392CC; // type:function size:0x34 +fn_80639300 = .text:0x80639300; // type:function size:0x44 +fn_80639344 = .text:0x80639344; // type:function size:0x34 +fn_80639378 = .text:0x80639378; // type:function size:0x44 +fn_806393BC = .text:0x806393BC; // type:function size:0x34 +fn_806393F0 = .text:0x806393F0; // type:function size:0x44 +fn_80639434 = .text:0x80639434; // type:function size:0x34 +fn_80639468 = .text:0x80639468; // type:function size:0x44 +fn_806394AC = .text:0x806394AC; // type:function size:0x4C +fn_806394F8 = .text:0x806394F8; // type:function size:0x34 +fn_8063952C = .text:0x8063952C; // type:function size:0x48 +fn_80639574 = .text:0x80639574; // type:function size:0x34 +fn_806395A8 = .text:0x806395A8; // type:function size:0x44 +fn_806395EC = .text:0x806395EC; // type:function size:0x34 +fn_80639620 = .text:0x80639620; // type:function size:0x34 +fn_80639654 = .text:0x80639654; // type:function size:0x4C +fn_806396A0 = .text:0x806396A0; // type:function size:0x34 +fn_806396D4 = .text:0x806396D4; // type:function size:0x48 +fn_8063971C = .text:0x8063971C; // type:function size:0x4C +fn_80639768 = .text:0x80639768; // type:function size:0x34 +NewObject__10RndCubeTexFv = .text:0x8063979C; // type:function size:0x34 +StaticClassName__10RndCubeTexFv = .text:0x806397D0; // type:function size:0x4C +fn_8063981C = .text:0x8063981C; // type:function size:0x34 +fn_80639850 = .text:0x80639850; // type:function size:0x34 +fn_80639884 = .text:0x80639884; // type:function size:0x4C +fn_806398D0 = .text:0x806398D0; // type:function size:0x34 +fn_80639904 = .text:0x80639904; // type:function size:0x34 +fn_80639938 = .text:0x80639938; // type:function size:0x34 +fn_8063996C = .text:0x8063996C; // type:function size:0x34 +fn_806399A0 = .text:0x806399A0; // type:function size:0x34 +fn_806399D4 = .text:0x806399D4; // type:function size:0x34 +fn_80639A08 = .text:0x80639A08; // type:function size:0x34 +fn_80639A3C = .text:0x80639A3C; // type:function size:0x34 +fn_80639A70 = .text:0x80639A70; // type:function size:0x34 +fn_80639AA4 = .text:0x80639AA4; // type:function size:0x34 +fn_80639AD8 = .text:0x80639AD8; // type:function size:0x34 +fn_80639B0C = .text:0x80639B0C; // type:function size:0x48 +fn_80639B54 = .text:0x80639B54; // type:function size:0x34 +fn_80639B88 = .text:0x80639B88; // type:function size:0x48 +fn_80639BD0 = .text:0x80639BD0; // type:function size:0x34 +fn_80639C04 = .text:0x80639C04; // type:function size:0x48 +fn_80639C4C = .text:0x80639C4C; // type:function size:0x34 +fn_80639C80 = .text:0x80639C80; // type:function size:0x44 +fn_80639CC4 = .text:0x80639CC4; // type:function size:0x34 +fn_80639CF8 = .text:0x80639CF8; // type:function size:0x34 +fn_80639D2C = .text:0x80639D2C; // type:function size:0x4C +fn_80639D78 = .text:0x80639D78; // type:function size:0x34 +NewObject__7DOFProcFv = .text:0x80639DAC; // type:function size:0x30 +fn_80639DDC = .text:0x80639DDC; // type:function size:0x90 +fn_80639E6C = .text:0x80639E6C; // type:function size:0x90 +fn_80639EFC = .text:0x80639EFC; // type:function size:0x1AC +fn_8063A0A8 = .text:0x8063A0A8; // type:function size:0x34 +fn_8063A0DC = .text:0x8063A0DC; // type:function size:0x4 +fn_8063A0E0 = .text:0x8063A0E0; // type:function size:0x4 +fn_8063A0E4 = .text:0x8063A0E4; // type:function size:0x54 +fn_8063A138 = .text:0x8063A138; // type:function size:0x64 +fn_8063A19C = .text:0x8063A19C; // type:function size:0x50 +fn_8063A1EC = .text:0x8063A1EC; // type:function size:0x10 +fn_8063A1FC = .text:0x8063A1FC; // type:function size:0xB8 +fn_8063A2B4 = .text:0x8063A2B4; // type:function size:0x4 +fn_8063A2B8 = .text:0x8063A2B8; // type:function size:0x50 +fn_8063A308 = .text:0x8063A308; // type:function size:0x6C +fn_8063A374 = .text:0x8063A374; // type:function size:0x2C +fn_8063A3A0 = .text:0x8063A3A0; // type:function size:0xC +fn_8063A3AC = .text:0x8063A3AC; // type:function size:0x5A0 +fn_8063A94C = .text:0x8063A94C; // type:function size:0x90 +fn_8063A9DC = .text:0x8063A9DC; // type:function size:0x78 +fn_8063AA54 = .text:0x8063AA54; // type:function size:0x30 +fn_8063AA84 = .text:0x8063AA84; // type:function size:0x44 +fn_8063AAC8 = .text:0x8063AAC8; // type:function size:0x2C +fn_8063AAF4 = .text:0x8063AAF4; // type:function size:0x2C +fn_8063AB20 = .text:0x8063AB20; // type:function size:0x1D0 +fn_8063ACF0 = .text:0x8063ACF0; // type:function size:0x148 +fn_8063AE38 = .text:0x8063AE38; // type:function size:0x4 +fn_8063AE3C = .text:0x8063AE3C; // type:function size:0x68 +fn_8063AEA4 = .text:0x8063AEA4; // type:function size:0x2C +fn_8063AED0 = .text:0x8063AED0; // type:function size:0x14 +fn_8063AEE4 = .text:0x8063AEE4; // type:function size:0x8 +fn_8063AEEC = .text:0x8063AEEC; // type:function size:0xB8 +fn_8063AFA4 = .text:0x8063AFA4; // type:function size:0x4 +fn_8063AFA8 = .text:0x8063AFA8; // type:function size:0x78 +fn_8063B020 = .text:0x8063B020; // type:function size:0xAC +fn_8063B0CC = .text:0x8063B0CC; // type:function size:0x3C +fn_8063B108 = .text:0x8063B108; // type:function size:0x3C +fn_8063B144 = .text:0x8063B144; // type:function size:0x84 +fn_8063B1C8 = .text:0x8063B1C8; // type:function size:0xC4 +fn_8063B28C = .text:0x8063B28C; // type:function size:0xB4 +fn_8063B340 = .text:0x8063B340; // type:function size:0x2D4 +fn_8063B614 = .text:0x8063B614; // type:function size:0x3C +fn_8063B650 = .text:0x8063B650; // type:function size:0x5C +fn_8063B6AC = .text:0x8063B6AC; // type:function size:0x3C +fn_8063B6E8 = .text:0x8063B6E8; // type:function size:0x7C +fn_8063B764 = .text:0x8063B764; // type:function size:0x30 +fn_8063B794 = .text:0x8063B794; // type:function size:0x40 +fn_8063B7D4 = .text:0x8063B7D4; // type:function size:0x5C +fn_8063B830 = .text:0x8063B830; // type:function size:0x8 +fn_8063B838 = .text:0x8063B838; // type:function size:0x68 +fn_8063B8A0 = .text:0x8063B8A0; // type:function size:0x220 +fn_8063BAC0 = .text:0x8063BAC0; // type:function size:0x8 +fn_8063BAC8 = .text:0x8063BAC8; // type:function size:0x5C +fn_8063BB24 = .text:0x8063BB24; // type:function size:0x2D8 +fn_8063BDFC = .text:0x8063BDFC; // type:function size:0x68 +fn_8063BE64 = .text:0x8063BE64; // type:function size:0x48 +fn_8063BEAC = .text:0x8063BEAC; // type:function size:0x60 +fn_8063BF0C = .text:0x8063BF0C; // type:function size:0x2F8 +fn_8063C204 = .text:0x8063C204; // type:function size:0x8 +fn_8063C20C = .text:0x8063C20C; // type:function size:0xA4 +Handle__3RndFP9DataArrayb = .text:0x8063C2B0; // type:function size:0x1068 +fn_8063D318 = .text:0x8063D318; // type:function size:0x8 +fn_8063D320 = .text:0x8063D320; // type:function size:0x8 +fn_8063D328 = .text:0x8063D328; // type:function size:0x8 +fn_8063D330 = .text:0x8063D330; // type:function size:0x8 +fn_8063D338 = .text:0x8063D338; // type:function size:0xC +fn_8063D344 = .text:0x8063D344; // type:function size:0xC +fn_8063D350 = .text:0x8063D350; // type:function size:0x58 +fn_8063D3A8 = .text:0x8063D3A8; // type:function size:0xA4 +fn_8063D44C = .text:0x8063D44C; // type:function size:0xA4 +fn_8063D4F0 = .text:0x8063D4F0; // type:function size:0xD0 +fn_8063D5C0 = .text:0x8063D5C0; // type:function size:0x98 +fn_8063D658 = .text:0x8063D658; // type:function size:0x38 +fn_8063D690 = .text:0x8063D690; // type:function size:0x8 +fn_8063D698 = .text:0x8063D698; // type:function size:0x8 +fn_8063D6A0 = .text:0x8063D6A0; // type:function size:0x24 +fn_8063D6C4 = .text:0x8063D6C4; // type:function size:0x24 +fn_8063D6E8 = .text:0x8063D6E8; // type:function size:0x6C +fn_8063D754 = .text:0x8063D754; // type:function size:0xA0 +fn_8063D7F4 = .text:0x8063D7F4; // type:function size:0x40 +fn_8063D834 = .text:0x8063D834; // type:function size:0x74 +fn_8063D8A8 = .text:0x8063D8A8; // type:function size:0x4C +fn_8063D8F4 = .text:0x8063D8F4; // type:function size:0x8 +fn_8063D8FC = .text:0x8063D8FC; // type:function size:0x8 +fn_8063D904 = .text:0x8063D904; // type:function size:0x8 +fn_8063D90C = .text:0x8063D90C; // type:function size:0x70 +fn_8063D97C = .text:0x8063D97C; // type:function size:0xA8 +fn_8063DA24 = .text:0x8063DA24; // type:function size:0x128 +fn_8063DB4C = .text:0x8063DB4C; // type:function size:0x88 +fn_8063DBD4 = .text:0x8063DBD4; // type:function size:0x58 +__dt__3RndFv = .text:0x8063DC2C; // type:function size:0xA4 +fn_8063DCD0 = .text:0x8063DCD0; // type:function size:0x68 +fn_8063DD38 = .text:0x8063DD38; // type:function size:0x8 +fn_8063DD40 = .text:0x8063DD40; // type:function size:0x8 +fn_8063DD48 = .text:0x8063DD48; // type:function size:0x11C +fn_8063DE64 = .text:0x8063DE64; // type:function size:0xB4 +fn_8063DF18 = .text:0x8063DF18; // type:function size:0x4 +fn_8063DF1C = .text:0x8063DF1C; // type:function size:0xB0 +fn_8063DFCC = .text:0x8063DFCC; // type:function size:0x26C +fn_8063E238 = .text:0x8063E238; // type:function size:0x1C +fn_8063E254 = .text:0x8063E254; // type:function size:0x124 +fn_8063E378 = .text:0x8063E378; // type:function size:0x1F8 +fn_8063E570 = .text:0x8063E570; // type:function size:0xAC +fn_8063E61C = .text:0x8063E61C; // type:function size:0x144 +fn_8063E760 = .text:0x8063E760; // type:function size:0x4 +fn_8063E764 = .text:0x8063E764; // type:function size:0x14 +fn_8063E778 = .text:0x8063E778; // type:function size:0x14 +fn_8063E78C = .text:0x8063E78C; // type:function size:0x14 +fn_8063E7A0 = .text:0x8063E7A0; // type:function size:0x14 +fn_8063E7B4 = .text:0x8063E7B4; // type:function size:0x14 +fn_8063E7C8 = .text:0x8063E7C8; // type:function size:0x14 +fn_8063E7DC = .text:0x8063E7DC; // type:function size:0x14 +fn_8063E7F0 = .text:0x8063E7F0; // type:function size:0x14 +fn_8063E804 = .text:0x8063E804; // type:function size:0x14 +fn_8063E818 = .text:0x8063E818; // type:function size:0x14 +fn_8063E82C = .text:0x8063E82C; // type:function size:0x64 +fn_8063E890 = .text:0x8063E890; // type:function size:0xA0 +fn_8063E930 = .text:0x8063E930; // type:function size:0x1BC +fn_8063EAEC = .text:0x8063EAEC; // type:function size:0x4 +fn_8063EAF0 = .text:0x8063EAF0; // type:function size:0x70 +fn_8063EB60 = .text:0x8063EB60; // type:function size:0x70 +Handle__6RndSetFP9DataArrayb = .text:0x8063EBD0; // type:function size:0x19C +fn_8063ED6C = .text:0x8063ED6C; // type:function size:0x198 +fn_8063EF04 = .text:0x8063EF04; // type:function size:0x10C +fn_8063F010 = .text:0x8063F010; // type:function size:0x74 +fn_8063F084 = .text:0x8063F084; // type:function size:0x4 +fn_8063F088 = .text:0x8063F088; // type:function size:0x128 +InitShaderOptions__Fv = .text:0x8063F1B0; // type:function size:0x294 +fn_8063F444 = .text:0x8063F444; // type:function size:0x20 +fn_8063F464 = .text:0x8063F464; // type:function size:0x8 +fn_8063F46C = .text:0x8063F46C; // type:function size:0x24 +fn_8063F490 = .text:0x8063F490; // type:function size:0x5C +fn_8063F4EC = .text:0x8063F4EC; // type:function size:0x128 +fn_8063F614 = .text:0x8063F614; // type:function size:0x18 +fn_8063F62C = .text:0x8063F62C; // type:function size:0x40 +fn_8063F66C = .text:0x8063F66C; // type:function size:0x58 +__ct__6RndTexFv = .text:0x8063F6C4; // type:function size:0x88 +__dt__6RndTexFv = .text:0x8063F74C; // type:function size:0xAC +fn_8063F7F8 = .text:0x8063F7F8; // type:function size:0x38 +fn_8063F830 = .text:0x8063F830; // type:function size:0x1C0 +fn_8063F9F0 = .text:0x8063F9F0; // type:function size:0x13C +fn_8063FB2C = .text:0x8063FB2C; // type:function size:0x1A0 +fn_8063FCCC = .text:0x8063FCCC; // type:function size:0x5C +fn_8063FD28 = .text:0x8063FD28; // type:function size:0xD8 +CheckSize__6RndTexFiiiiQ26RndTex4Typeb = .text:0x8063FE00; // type:function size:0x12C +fn_8063FF2C = .text:0x8063FF2C; // type:function size:0x5C +LockBitmap__6RndTexFPv = .text:0x8063FF88; // type:function size:0xDC +Save__6RndTexFP9BinStream = .text:0x80640064; // type:function size:0x4 +Load__6RndTexFP9BinStream = .text:0x80640068; // type:function size:0x5C +PreLoad__6RndTexFP9BinStream = .text:0x806400C4; // type:function size:0x1DC +PostLoad__6RndTexFP9BinStream = .text:0x806402A0; // type:function size:0x484 +Copy__6RndTexFPQ23Hmx6Object8CopyType = .text:0x80640724; // type:function size:0x128 +fn_8064084C = .text:0x8064084C; // type:function size:0x188 +fn_806409D4 = .text:0x806409D4; // type:function size:0x4 +Print__6RndTexFv = .text:0x806409D8; // type:function size:0xE4 +fn_80640ABC = .text:0x80640ABC; // type:function size:0x3C +Handle__6RndTexFP9DataArrayb = .text:0x80640AF8; // type:function size:0x28C +OnSetBitmap__6RndTexFP9DataArray = .text:0x80640D84; // type:function size:0xF8 +OnSetRendered__6RndTexFP9DataArray = .text:0x80640E7C; // type:function size:0x9C +SyncProperty__6RndTexFR8DataNodeP9DataArrayi6PropOp = .text:0x80640F18; // type:function size:0x264 +ClassName__6RndTexCFv = .text:0x8064117C; // type:function size:0x4 +SetType__6RndTexFP6Symbol = .text:0x80641180; // type:function size:0x128 +fn_806412A8 = .text:0x806412A8; // type:function size:0x90 +fn_80641338 = .text:0x80641338; // type:function size:0x8C +fn_806413C4 = .text:0x806413C4; // type:function size:0x9C +fn_80641460 = .text:0x80641460; // type:function size:0x50 +fn_806414B0 = .text:0x806414B0; // type:function size:0x40 +fn_806414F0 = .text:0x806414F0; // type:function size:0x40 +fn_80641530 = .text:0x80641530; // type:function size:0x50 +fn_80641580 = .text:0x80641580; // type:function size:0xAC +fn_8064162C = .text:0x8064162C; // type:function size:0x4 +fn_80641630 = .text:0x80641630; // type:function size:0xAC +Handle__21RndTexBlendControllerFP9DataArrayb = .text:0x806416DC; // type:function size:0x184 +fn_80641860 = .text:0x80641860; // type:function size:0x22C +fn_80641A8C = .text:0x80641A8C; // type:function size:0x4 +fn_80641A90 = .text:0x80641A90; // type:function size:0x128 +fn_80641BB8 = .text:0x80641BB8; // type:function size:0x190 +fn_80641D48 = .text:0x80641D48; // type:function size:0x6C +fn_80641DB4 = .text:0x80641DB4; // type:function size:0x40 +fn_80641DF4 = .text:0x80641DF4; // type:function size:0x44 +fn_80641E38 = .text:0x80641E38; // type:function size:0x54 +fn_80641E8C = .text:0x80641E8C; // type:function size:0x68 +fn_80641EF4 = .text:0x80641EF4; // type:function size:0xD8 +fn_80641FCC = .text:0x80641FCC; // type:function size:0xB8 +fn_80642084 = .text:0x80642084; // type:function size:0x4C +fn_806420D0 = .text:0x806420D0; // type:function size:0x78 +fn_80642148 = .text:0x80642148; // type:function size:0x2C +fn_80642174 = .text:0x80642174; // type:function size:0x4 +fn_80642178 = .text:0x80642178; // type:function size:0xEC +fn_80642264 = .text:0x80642264; // type:function size:0x3C +fn_806422A0 = .text:0x806422A0; // type:function size:0x11C +fn_806423BC = .text:0x806423BC; // type:function size:0x74 +fn_80642430 = .text:0x80642430; // type:function size:0x70 +fn_806424A0 = .text:0x806424A0; // type:function size:0x4 +fn_806424A4 = .text:0x806424A4; // type:function size:0x40 +fn_806424E4 = .text:0x806424E4; // type:function size:0x184 +fn_80642668 = .text:0x80642668; // type:function size:0x1F8 +fn_80642860 = .text:0x80642860; // type:function size:0x1E8 +fn_80642A48 = .text:0x80642A48; // type:function size:0xB0 +fn_80642AF8 = .text:0x80642AF8; // type:function size:0x44 +fn_80642B3C = .text:0x80642B3C; // type:function size:0x30 +fn_80642B6C = .text:0x80642B6C; // type:function size:0xE8 +fn_80642C54 = .text:0x80642C54; // type:function size:0x100 +fn_80642D54 = .text:0x80642D54; // type:function size:0x144 +fn_80642E98 = .text:0x80642E98; // type:function size:0x4 +fn_80642E9C = .text:0x80642E9C; // type:function size:0x14 +fn_80642EB0 = .text:0x80642EB0; // type:function size:0x14 +fn_80642EC4 = .text:0x80642EC4; // type:function size:0x14 +fn_80642ED8 = .text:0x80642ED8; // type:function size:0x14 +fn_80642EEC = .text:0x80642EEC; // type:function size:0x14 +fn_80642F00 = .text:0x80642F00; // type:function size:0x14 +fn_80642F14 = .text:0x80642F14; // type:function size:0x14 +fn_80642F28 = .text:0x80642F28; // type:function size:0x14 +fn_80642F3C = .text:0x80642F3C; // type:function size:0x14 +fn_80642F50 = .text:0x80642F50; // type:function size:0x14 +fn_80642F64 = .text:0x80642F64; // type:function size:0x194 +fn_806430F8 = .text:0x806430F8; // type:function size:0xE4 +fn_806431DC = .text:0x806431DC; // type:function size:0x40 +fn_8064321C = .text:0x8064321C; // type:function size:0x64 +fn_80643280 = .text:0x80643280; // type:function size:0x88 +fn_80643308 = .text:0x80643308; // type:function size:0x4 +fn_8064330C = .text:0x8064330C; // type:function size:0x4 +fn_80643310 = .text:0x80643310; // type:function size:0x8 +fn_80643318 = .text:0x80643318; // type:function size:0x14 +fn_8064332C = .text:0x8064332C; // type:function size:0x94 +fn_806433C0 = .text:0x806433C0; // type:function size:0xB60 +fn_80643F20 = .text:0x80643F20; // type:function size:0x44 +fn_80643F64 = .text:0x80643F64; // type:function size:0x44 +fn_80643FA8 = .text:0x80643FA8; // type:function size:0x6C +fn_80644014 = .text:0x80644014; // type:function size:0x40 +fn_80644054 = .text:0x80644054; // type:function size:0x48 +fn_8064409C = .text:0x8064409C; // type:function size:0x120 +fn_806441BC = .text:0x806441BC; // type:function size:0x4 +fn_806441C0 = .text:0x806441C0; // type:function size:0x248 +fn_80644408 = .text:0x80644408; // type:function size:0xB8 +fn_806444C0 = .text:0x806444C0; // type:function size:0x40 +fn_80644500 = .text:0x80644500; // type:function size:0x21C +fn_8064471C = .text:0x8064471C; // type:function size:0x5B0 +fn_80644CCC = .text:0x80644CCC; // type:function size:0x144 +fn_80644E10 = .text:0x80644E10; // type:function size:0x4 +fn_80644E14 = .text:0x80644E14; // type:function size:0x14 +fn_80644E28 = .text:0x80644E28; // type:function size:0x14 +fn_80644E3C = .text:0x80644E3C; // type:function size:0x8 +fn_80644E44 = .text:0x80644E44; // type:function size:0x8 +fn_80644E4C = .text:0x80644E4C; // type:function size:0x8 +fn_80644E54 = .text:0x80644E54; // type:function size:0x8 +fn_80644E5C = .text:0x80644E5C; // type:function size:0x8 +fn_80644E64 = .text:0x80644E64; // type:function size:0x8 +fn_80644E6C = .text:0x80644E6C; // type:function size:0x8 +fn_80644E74 = .text:0x80644E74; // type:function size:0x8 +fn_80644E7C = .text:0x80644E7C; // type:function size:0x14 +fn_80644E90 = .text:0x80644E90; // type:function size:0x14 +fn_80644EA4 = .text:0x80644EA4; // type:function size:0x14 +fn_80644EB8 = .text:0x80644EB8; // type:function size:0x14 +fn_80644ECC = .text:0x80644ECC; // type:function size:0x14 +fn_80644EE0 = .text:0x80644EE0; // type:function size:0x14 +fn_80644EF4 = .text:0x80644EF4; // type:function size:0x14 +fn_80644F08 = .text:0x80644F08; // type:function size:0x14 +fn_80644F1C = .text:0x80644F1C; // type:function size:0x8 +fn_80644F24 = .text:0x80644F24; // type:function size:0x8 +fn_80644F2C = .text:0x80644F2C; // type:function size:0x8 +fn_80644F34 = .text:0x80644F34; // type:function size:0x8 +fn_80644F3C = .text:0x80644F3C; // type:function size:0xD0 +Init__7RndTextFv = .text:0x8064500C; // type:function size:0x34 +NewObject__7RndTextFv = .text:0x80645040; // type:function size:0x48 +fn_80645088 = .text:0x80645088; // type:function size:0x78 +fn_80645100 = .text:0x80645100; // type:function size:0x8 +fn_80645108 = .text:0x80645108; // type:function size:0xC4 +fn_806451CC = .text:0x806451CC; // type:function size:0x8 +fn_806451D4 = .text:0x806451D4; // type:function size:0x4 +fn_806451D8 = .text:0x806451D8; // type:function size:0x8 +fn_806451E0 = .text:0x806451E0; // type:function size:0xE8 +fn_806452C8 = .text:0x806452C8; // type:function size:0xDC +fn_806453A4 = .text:0x806453A4; // type:function size:0x8 +fn_806453AC = .text:0x806453AC; // type:function size:0xE0 +fn_8064548C = .text:0x8064548C; // type:function size:0x4 +fn_80645490 = .text:0x80645490; // type:function size:0x4 +fn_80645494 = .text:0x80645494; // type:function size:0x540 +fn_806459D4 = .text:0x806459D4; // type:function size:0x18 +fn_806459EC = .text:0x806459EC; // type:function size:0x3C +fn_80645A28 = .text:0x80645A28; // type:function size:0x188 +fn_80645BB0 = .text:0x80645BB0; // type:function size:0x8 +fn_80645BB8 = .text:0x80645BB8; // type:function size:0x3C +fn_80645BF4 = .text:0x80645BF4; // type:function size:0x6C +fn_80645C60 = .text:0x80645C60; // type:function size:0x4 +fn_80645C64 = .text:0x80645C64; // type:function size:0x50 +fn_80645CB4 = .text:0x80645CB4; // type:function size:0x34 +fn_80645CE8 = .text:0x80645CE8; // type:function size:0x4 +fn_80645CEC = .text:0x80645CEC; // type:function size:0x8 +fn_80645CF4 = .text:0x80645CF4; // type:function size:0x1F0 +fn_80645EE4 = .text:0x80645EE4; // type:function size:0x24 +fn_80645F08 = .text:0x80645F08; // type:function size:0x4 +fn_80645F0C = .text:0x80645F0C; // type:function size:0x40 +fn_80645F4C = .text:0x80645F4C; // type:function size:0xAC +fn_80645FF8 = .text:0x80645FF8; // type:function size:0x1C +fn_80646014 = .text:0x80646014; // type:function size:0x5C +fn_80646070 = .text:0x80646070; // type:function size:0x1C +fn_8064608C = .text:0x8064608C; // type:function size:0x1C +fn_806460A8 = .text:0x806460A8; // type:function size:0x120 +fn_806461C8 = .text:0x806461C8; // type:function size:0x24 +fn_806461EC = .text:0x806461EC; // type:function size:0x1C4 +fn_806463B0 = .text:0x806463B0; // type:function size:0x104 +fn_806464B4 = .text:0x806464B4; // type:function size:0x44 +fn_806464F8 = .text:0x806464F8; // type:function size:0x124 +fn_8064661C = .text:0x8064661C; // type:function size:0x1C8 +__ct__7RndTextFv = .text:0x806467E4; // type:function size:0x1D0 +fn_806469B4 = .text:0x806469B4; // type:function size:0x58 +fn_80646A0C = .text:0x80646A0C; // type:function size:0x60 +fn_80646A6C = .text:0x80646A6C; // type:function size:0x58 +fn_80646AC4 = .text:0x80646AC4; // type:function size:0x58 +fn_80646B1C = .text:0x80646B1C; // type:function size:0x44 +fn_80646B60 = .text:0x80646B60; // type:function size:0x3C +fn_80646B9C = .text:0x80646B9C; // type:function size:0x70 +fn_80646C0C = .text:0x80646C0C; // type:function size:0x64 +fn_80646C70 = .text:0x80646C70; // type:function size:0x1EC +fn_80646E5C = .text:0x80646E5C; // type:function size:0x1A4 +fn_80647000 = .text:0x80647000; // type:function size:0x104 +fn_80647104 = .text:0x80647104; // type:function size:0x58 +fn_8064715C = .text:0x8064715C; // type:function size:0x40 +fn_8064719C = .text:0x8064719C; // type:function size:0x4 +fn_806471A0 = .text:0x806471A0; // type:function size:0x40 +fn_806471E0 = .text:0x806471E0; // type:function size:0x80 +fn_80647260 = .text:0x80647260; // type:function size:0x4 +fn_80647264 = .text:0x80647264; // type:function size:0x40 +fn_806472A4 = .text:0x806472A4; // type:function size:0x1C +fn_806472C0 = .text:0x806472C0; // type:function size:0x1C +fn_806472DC = .text:0x806472DC; // type:function size:0x388 +fn_80647664 = .text:0x80647664; // type:function size:0x38 +fn_8064769C = .text:0x8064769C; // type:function size:0x54 +fn_806476F0 = .text:0x806476F0; // type:function size:0x178 +fn_80647868 = .text:0x80647868; // type:function size:0xA90 +fn_806482F8 = .text:0x806482F8; // type:function size:0x4 +fn_806482FC = .text:0x806482FC; // type:function size:0x88 +fn_80648384 = .text:0x80648384; // type:function size:0x2C +fn_806483B0 = .text:0x806483B0; // type:function size:0x10 +fn_806483C0 = .text:0x806483C0; // type:function size:0x7C +fn_8064843C = .text:0x8064843C; // type:function size:0x34 +fn_80648470 = .text:0x80648470; // type:function size:0x74 +fn_806484E4 = .text:0x806484E4; // type:function size:0x10 +fn_806484F4 = .text:0x806484F4; // type:function size:0x4 +fn_806484F8 = .text:0x806484F8; // type:function size:0x90 +fn_80648588 = .text:0x80648588; // type:function size:0x4 +fn_8064858C = .text:0x8064858C; // type:function size:0x40 +fn_806485CC = .text:0x806485CC; // type:function size:0x8C +fn_80648658 = .text:0x80648658; // type:function size:0x8 +fn_80648660 = .text:0x80648660; // type:function size:0x2C +fn_8064868C = .text:0x8064868C; // type:function size:0x58 +fn_806486E4 = .text:0x806486E4; // type:function size:0x28 +fn_8064870C = .text:0x8064870C; // type:function size:0x68 +fn_80648774 = .text:0x80648774; // type:function size:0x7C +fn_806487F0 = .text:0x806487F0; // type:function size:0x6C +fn_8064885C = .text:0x8064885C; // type:function size:0x4 +fn_80648860 = .text:0x80648860; // type:function size:0x3C +fn_8064889C = .text:0x8064889C; // type:function size:0x318 +fn_80648BB4 = .text:0x80648BB4; // type:function size:0x1A4 +fn_80648D58 = .text:0x80648D58; // type:function size:0xB0 +fn_80648E08 = .text:0x80648E08; // type:function size:0x1CC +fn_80648FD4 = .text:0x80648FD4; // type:function size:0x290 +fn_80649264 = .text:0x80649264; // type:function size:0x24C +fn_806494B0 = .text:0x806494B0; // type:function size:0x134 +fn_806495E4 = .text:0x806495E4; // type:function size:0x544 +fn_80649B28 = .text:0x80649B28; // type:function size:0x25C +fn_80649D84 = .text:0x80649D84; // type:function size:0x2B8 +fn_8064A03C = .text:0x8064A03C; // type:function size:0x18 +fn_8064A054 = .text:0x8064A054; // type:function size:0x1B8 +fn_8064A20C = .text:0x8064A20C; // type:function size:0x9C +fn_8064A2A8 = .text:0x8064A2A8; // type:function size:0x8C +fn_8064A334 = .text:0x8064A334; // type:function size:0x10 +fn_8064A344 = .text:0x8064A344; // type:function size:0x58 +fn_8064A39C = .text:0x8064A39C; // type:function size:0x4 +fn_8064A3A0 = .text:0x8064A3A0; // type:function size:0xC +fn_8064A3AC = .text:0x8064A3AC; // type:function size:0x84 +fn_8064A430 = .text:0x8064A430; // type:function size:0x24 +fn_8064A454 = .text:0x8064A454; // type:function size:0x78 +fn_8064A4CC = .text:0x8064A4CC; // type:function size:0x98 +fn_8064A564 = .text:0x8064A564; // type:function size:0x110 +fn_8064A674 = .text:0x8064A674; // type:function size:0x14 +fn_8064A688 = .text:0x8064A688; // type:function size:0x13C +fn_8064A7C4 = .text:0x8064A7C4; // type:function size:0x168 +fn_8064A92C = .text:0x8064A92C; // type:function size:0x140 +fn_8064AA6C = .text:0x8064AA6C; // type:function size:0x134 +fn_8064ABA0 = .text:0x8064ABA0; // type:function size:0xC4 +fn_8064AC64 = .text:0x8064AC64; // type:function size:0x134 +fn_8064AD98 = .text:0x8064AD98; // type:function size:0x4 +fn_8064AD9C = .text:0x8064AD9C; // type:function size:0x40 +fn_8064ADDC = .text:0x8064ADDC; // type:function size:0xAC +fn_8064AE88 = .text:0x8064AE88; // type:function size:0x80 +fn_8064AF08 = .text:0x8064AF08; // type:function size:0xD4 +fn_8064AFDC = .text:0x8064AFDC; // type:function size:0x84 +fn_8064B060 = .text:0x8064B060; // type:function size:0x98 +fn_8064B0F8 = .text:0x8064B0F8; // type:function size:0x38 +fn_8064B130 = .text:0x8064B130; // type:function size:0xC8 +fn_8064B1F8 = .text:0x8064B1F8; // type:function size:0x498 +fn_8064B690 = .text:0x8064B690; // type:function size:0x58 +fn_8064B6E8 = .text:0x8064B6E8; // type:function size:0x58 +fn_8064B740 = .text:0x8064B740; // type:function size:0x34 +fn_8064B774 = .text:0x8064B774; // type:function size:0x3C +fn_8064B7B0 = .text:0x8064B7B0; // type:function size:0x58 +fn_8064B808 = .text:0x8064B808; // type:function size:0x58 +fn_8064B860 = .text:0x8064B860; // type:function size:0x54 +fn_8064B8B4 = .text:0x8064B8B4; // type:function size:0x54 +fn_8064B908 = .text:0x8064B908; // type:function size:0xB0 +fn_8064B9B8 = .text:0x8064B9B8; // type:function size:0x654 +fn_8064C00C = .text:0x8064C00C; // type:function size:0x68 +fn_8064C074 = .text:0x8064C074; // type:function size:0xCC +fn_8064C140 = .text:0x8064C140; // type:function size:0x5C +fn_8064C19C = .text:0x8064C19C; // type:function size:0xC +fn_8064C1A8 = .text:0x8064C1A8; // type:function size:0x5C +fn_8064C204 = .text:0x8064C204; // type:function size:0x60 +fn_8064C264 = .text:0x8064C264; // type:function size:0x5C +fn_8064C2C0 = .text:0x8064C2C0; // type:function size:0xC +fn_8064C2CC = .text:0x8064C2CC; // type:function size:0x114 +fn_8064C3E0 = .text:0x8064C3E0; // type:function size:0x5C +fn_8064C43C = .text:0x8064C43C; // type:function size:0x54 +fn_8064C490 = .text:0x8064C490; // type:function size:0x5C +fn_8064C4EC = .text:0x8064C4EC; // type:function size:0x3B8 +fn_8064C8A4 = .text:0x8064C8A4; // type:function size:0x15C +fn_8064CA00 = .text:0x8064CA00; // type:function size:0x44 +fn_8064CA44 = .text:0x8064CA44; // type:function size:0x6C +fn_8064CAB0 = .text:0x8064CAB0; // type:function size:0x2C +fn_8064CADC = .text:0x8064CADC; // type:function size:0x15C +fn_8064CC38 = .text:0x8064CC38; // type:function size:0x44 +fn_8064CC7C = .text:0x8064CC7C; // type:function size:0x144 +fn_8064CDC0 = .text:0x8064CDC0; // type:function size:0x10 +fn_8064CDD0 = .text:0x8064CDD0; // type:function size:0x18C +fn_8064CF5C = .text:0x8064CF5C; // type:function size:0x54 +fn_8064CFB0 = .text:0x8064CFB0; // type:function size:0x28 +fn_8064CFD8 = .text:0x8064CFD8; // type:function size:0x68 +fn_8064D040 = .text:0x8064D040; // type:function size:0x38 +fn_8064D078 = .text:0x8064D078; // type:function size:0x108 +fn_8064D180 = .text:0x8064D180; // type:function size:0x5C +fn_8064D1DC = .text:0x8064D1DC; // type:function size:0x10 +fn_8064D1EC = .text:0x8064D1EC; // type:function size:0x108 +fn_8064D2F4 = .text:0x8064D2F4; // type:function size:0x5C +fn_8064D350 = .text:0x8064D350; // type:function size:0x48 +fn_8064D398 = .text:0x8064D398; // type:function size:0x58 +fn_8064D3F0 = .text:0x8064D3F0; // type:function size:0x60 +fn_8064D450 = .text:0x8064D450; // type:function size:0x58 +fn_8064D4A8 = .text:0x8064D4A8; // type:function size:0x58 +fn_8064D500 = .text:0x8064D500; // type:function size:0x50 +fn_8064D550 = .text:0x8064D550; // type:function size:0x44 +fn_8064D594 = .text:0x8064D594; // type:function size:0x3C +fn_8064D5D0 = .text:0x8064D5D0; // type:function size:0x70 +fn_8064D640 = .text:0x8064D640; // type:function size:0x6C +fn_8064D6AC = .text:0x8064D6AC; // type:function size:0x14 +fn_8064D6C0 = .text:0x8064D6C0; // type:function size:0x14 +fn_8064D6D4 = .text:0x8064D6D4; // type:function size:0x14 +fn_8064D6E8 = .text:0x8064D6E8; // type:function size:0x14 +fn_8064D6FC = .text:0x8064D6FC; // type:function size:0x14 +fn_8064D710 = .text:0x8064D710; // type:function size:0x14 +fn_8064D724 = .text:0x8064D724; // type:function size:0x14 +fn_8064D738 = .text:0x8064D738; // type:function size:0x14 +fn_8064D74C = .text:0x8064D74C; // type:function size:0x14 +fn_8064D760 = .text:0x8064D760; // type:function size:0x14 +fn_8064D774 = .text:0x8064D774; // type:function size:0x14 +fn_8064D788 = .text:0x8064D788; // type:function size:0x14 +fn_8064D79C = .text:0x8064D79C; // type:function size:0x14 +fn_8064D7B0 = .text:0x8064D7B0; // type:function size:0x8 +fn_8064D7B8 = .text:0x8064D7B8; // type:function size:0x8 +fn_8064D7C0 = .text:0x8064D7C0; // type:function size:0x8 +fn_8064D7C8 = .text:0x8064D7C8; // type:function size:0x8 +fn_8064D7D0 = .text:0x8064D7D0; // type:function size:0x8 +fn_8064D7D8 = .text:0x8064D7D8; // type:function size:0x8 +fn_8064D7E0 = .text:0x8064D7E0; // type:function size:0x8 +fn_8064D7E8 = .text:0x8064D7E8; // type:function size:0x8 +fn_8064D7F0 = .text:0x8064D7F0; // type:function size:0x8 +fn_8064D7F8 = .text:0x8064D7F8; // type:function size:0x8 +fn_8064D800 = .text:0x8064D800; // type:function size:0x8 +fn_8064D808 = .text:0x8064D808; // type:function size:0x68 +__ct__16RndTransformableFv = .text:0x8064D870; // type:function size:0x150 +fn_8064D9C0 = .text:0x8064D9C0; // type:function size:0x14 +fn_8064D9D4 = .text:0x8064D9D4; // type:function size:0x40 +__dt__16RndTransformableFv = .text:0x8064DA14; // type:function size:0x170 +fn_8064DB84 = .text:0x8064DB84; // type:function size:0xA4 +fn_8064DC28 = .text:0x8064DC28; // type:function size:0xA4 +fn_8064DCCC = .text:0x8064DCCC; // type:function size:0x24 +fn_8064DCF0 = .text:0x8064DCF0; // type:function size:0x58 +fn_8064DD48 = .text:0x8064DD48; // type:function size:0xD8 +fn_8064DE20 = .text:0x8064DE20; // type:function size:0x8 +fn_8064DE28 = .text:0x8064DE28; // type:function size:0x188 +Replace__16RndTransformableFPcPQ23Hmx6Object = .text:0x8064DFB0; // type:function size:0x94 +fn_8064E044 = .text:0x8064E044; // type:function size:0x74 +fn_8064E0B8 = .text:0x8064E0B8; // type:function size:0x14 +fn_8064E0CC = .text:0x8064E0CC; // type:function size:0x14 +fn_8064E0E0 = .text:0x8064E0E0; // type:function size:0x84 +fn_8064E164 = .text:0x8064E164; // type:function size:0x78 +fn_8064E1DC = .text:0x8064E1DC; // type:function size:0x100 +fn_8064E2DC = .text:0x8064E2DC; // type:function size:0x2C8 +fn_8064E5A4 = .text:0x8064E5A4; // type:function size:0x44 +fn_8064E5E8 = .text:0x8064E5E8; // type:function size:0x64 +fn_8064E64C = .text:0x8064E64C; // type:function size:0x64 +fn_8064E6B0 = .text:0x8064E6B0; // type:function size:0x1FC +fn_8064E8AC = .text:0x8064E8AC; // type:function size:0x78 +fn_8064E924 = .text:0x8064E924; // type:function size:0xCC +fn_8064E9F0 = .text:0x8064E9F0; // type:function size:0xC +fn_8064E9FC = .text:0x8064E9FC; // type:function size:0xA0 +fn_8064EA9C = .text:0x8064EA9C; // type:function size:0xC +fn_8064EAA8 = .text:0x8064EAA8; // type:function size:0x84 +fn_8064EB2C = .text:0x8064EB2C; // type:function size:0xD0 +fn_8064EBFC = .text:0x8064EBFC; // type:function size:0x64 +fn_8064EC60 = .text:0x8064EC60; // type:function size:0x20 +fn_8064EC80 = .text:0x8064EC80; // type:function size:0x1C +fn_8064EC9C = .text:0x8064EC9C; // type:function size:0xAC +fn_8064ED48 = .text:0x8064ED48; // type:function size:0x6C +fn_8064EDB4 = .text:0x8064EDB4; // type:function size:0xC +fn_8064EDC0 = .text:0x8064EDC0; // type:function size:0x7C +fn_8064EE3C = .text:0x8064EE3C; // type:function size:0x68 +fn_8064EEA4 = .text:0x8064EEA4; // type:function size:0x80 +fn_8064EF24 = .text:0x8064EF24; // type:function size:0x58 +fn_8064EF7C = .text:0x8064EF7C; // type:function size:0x58 +fn_8064EFD4 = .text:0x8064EFD4; // type:function size:0xC +fn_8064EFE0 = .text:0x8064EFE0; // type:function size:0x58 +Copy__16RndTransformableFPQ23Hmx6Objecti = .text:0x8064F038; // type:function size:0x120 +Print__16RndTransformableFv = .text:0x8064F158; // type:function size:0xF0 +Highlight__16RndTransformableFv = .text:0x8064F248; // type:function size:0x68 +Save__16RndTransformableFR9BinStream = .text:0x8064F2B0; // type:function size:0x4 +Load__16RndTransformableFR9BinStream = .text:0x8064F2B4; // type:function size:0x5D0 +Handle__16RndTransformableFP9DataArrayb = .text:0x8064F884; // type:function size:0x9A4 +OnCopyLocalTo__16RndTransformableFP9DataArray = .text:0x80650228; // type:function size:0x8C +OnGetWorldForward__16RndTransformableFP9DataArray = .text:0x806502B4; // type:function size:0xE0 +OnGetWorldPos__16RndTransformableFP9DataArray = .text:0x80650394; // type:function size:0xE0 +OnGetLocalPos__16RndTransformableFP9DataArray = .text:0x80650474; // type:function size:0xE0 +OnGetLocalPosIndex__16RndTransformableFP9DataArray = .text:0x80650554; // type:function size:0x74 +OnGetLocalRot__16RndTransformableFP9DataArray = .text:0x806505C8; // type:function size:0x10C +OnGetLocalRotIndex__16RndTransformableFP9DataArray = .text:0x806506D4; // type:function size:0xA0 +OnGetWorldRot__16RndTransformableFP9DataArray = .text:0x80650774; // type:function size:0xF0 +OnSetLocalPos__16RndTransformableFP9DataArray = .text:0x80650864; // type:function size:0x9C +OnSetLocalPosIndex__16RndTransformableFP9DataArray = .text:0x80650900; // type:function size:0xA8 +SetLocalRot__16RndTransformableFP7Vector3 = .text:0x806509A8; // type:function size:0x68 +OnSetLocalRot__16RndTransformableFP9DataArray = .text:0x80650A10; // type:function size:0xB4 +OnSetLocalRotMatIndex__16RndTransformableFP9DataArray = .text:0x80650AC4; // type:function size:0xEC +OnSetLocalRotMat__16RndTransformableFP9DataArray = .text:0x80650BB0; // type:function size:0x114 +OnSetLocalScale__16RndTransformableFP9DataArray = .text:0x80650CC4; // type:function size:0x9C +OnSetLocalScaleIndex__16RndTransformableFP9DataArray = .text:0x80650D60; // type:function size:0xA8 +OnGetLocalScale__16RndTransformableFP9DataArray = .text:0x80650E08; // type:function size:0xE0 +OnGetLocalScaleIndex = .text:0x80650EE8; // type:function size:0x84 +OnSetConstraint__16RndTransformableFP9DataArray = .text:0x80650F6C; // type:function size:0x88 +fn_80650FF4 = .text:0x80650FF4; // type:function size:0xE0 +SyncProperty__16RndTransformableFP8DataNodeP9DataArrayi6PropOp = .text:0x806510D4; // type:function size:0x2C0 +fn_80651394 = .text:0x80651394; // type:function size:0xC +fn_806513A0 = .text:0x806513A0; // type:function size:0x14 +fn_806513B4 = .text:0x806513B4; // type:function size:0x14 +fn_806513C8 = .text:0x806513C8; // type:function size:0x14 +fn_806513DC = .text:0x806513DC; // type:function size:0xD8 +fn_806514B4 = .text:0x806514B4; // type:function size:0x58 +fn_8065150C = .text:0x8065150C; // type:function size:0x58 +fn_80651564 = .text:0x80651564; // type:function size:0xE4 +fn_80651648 = .text:0x80651648; // type:function size:0xC +fn_80651654 = .text:0x80651654; // type:function size:0x4 +fn_80651658 = .text:0x80651658; // type:function size:0x4 +fn_8065165C = .text:0x8065165C; // type:function size:0xA0 +fn_806516FC = .text:0x806516FC; // type:function size:0xA0 +fn_8065179C = .text:0x8065179C; // type:function size:0x124 +fn_806518C0 = .text:0x806518C0; // type:function size:0x13C +fn_806519FC = .text:0x806519FC; // type:function size:0xAC +fn_80651AA8 = .text:0x80651AA8; // type:function size:0x144 +fn_80651BEC = .text:0x80651BEC; // type:function size:0x4 +fn_80651BF0 = .text:0x80651BF0; // type:function size:0x14 +fn_80651C04 = .text:0x80651C04; // type:function size:0x14 +fn_80651C18 = .text:0x80651C18; // type:function size:0x14 +fn_80651C2C = .text:0x80651C2C; // type:function size:0x14 +fn_80651C40 = .text:0x80651C40; // type:function size:0x14 +fn_80651C54 = .text:0x80651C54; // type:function size:0x14 +fn_80651C68 = .text:0x80651C68; // type:function size:0x14 +fn_80651C7C = .text:0x80651C7C; // type:function size:0x14 +fn_80651C90 = .text:0x80651C90; // type:function size:0x14 +fn_80651CA4 = .text:0x80651CA4; // type:function size:0x14 +fn_80651CB8 = .text:0x80651CB8; // type:function size:0x14 +fn_80651CCC = .text:0x80651CCC; // type:function size:0x14 +fn_80651CE0 = .text:0x80651CE0; // type:function size:0x14 +fn_80651CF4 = .text:0x80651CF4; // type:function size:0x14 +fn_80651D08 = .text:0x80651D08; // type:function size:0xE8 +fn_80651DF0 = .text:0x80651DF0; // type:function size:0x80 +fn_80651E70 = .text:0x80651E70; // type:function size:0x68 +fn_80651ED8 = .text:0x80651ED8; // type:function size:0x8 +fn_80651EE0 = .text:0x80651EE0; // type:function size:0x8 +fn_80651EE8 = .text:0x80651EE8; // type:function size:0xA4 +fn_80651F8C = .text:0x80651F8C; // type:function size:0x8 +fn_80651F94 = .text:0x80651F94; // type:function size:0x4 +fn_80651F98 = .text:0x80651F98; // type:function size:0x3CC +fn_80652364 = .text:0x80652364; // type:function size:0x40 +fn_806523A4 = .text:0x806523A4; // type:function size:0x104 +fn_806524A8 = .text:0x806524A8; // type:function size:0x28 +fn_806524D0 = .text:0x806524D0; // type:function size:0x28 +fn_806524F8 = .text:0x806524F8; // type:function size:0x16C +fn_80652664 = .text:0x80652664; // type:function size:0x1B0 +fn_80652814 = .text:0x80652814; // type:function size:0xB4 +fn_806528C8 = .text:0x806528C8; // type:function size:0x68 +fn_80652930 = .text:0x80652930; // type:function size:0x6C +fn_8065299C = .text:0x8065299C; // type:function size:0x28 +fn_806529C4 = .text:0x806529C4; // type:function size:0x6C +fn_80652A30 = .text:0x80652A30; // type:function size:0x424 +fn_80652E54 = .text:0x80652E54; // type:function size:0x24 +fn_80652E78 = .text:0x80652E78; // type:function size:0x94 +fn_80652F0C = .text:0x80652F0C; // type:function size:0xE0 +fn_80652FEC = .text:0x80652FEC; // type:function size:0x6BC +fn_806536A8 = .text:0x806536A8; // type:function size:0x5C +fn_80653704 = .text:0x80653704; // type:function size:0x34 +fn_80653738 = .text:0x80653738; // type:function size:0x5C +fn_80653794 = .text:0x80653794; // type:function size:0x34 +fn_806537C8 = .text:0x806537C8; // type:function size:0x5C +fn_80653824 = .text:0x80653824; // type:function size:0x34 +fn_80653858 = .text:0x80653858; // type:function size:0x4C +fn_806538A4 = .text:0x806538A4; // type:function size:0x40 +fn_806538E4 = .text:0x806538E4; // type:function size:0x4 +fn_806538E8 = .text:0x806538E8; // type:function size:0x40 +fn_80653928 = .text:0x80653928; // type:function size:0x4 +fn_8065392C = .text:0x8065392C; // type:function size:0x40 +fn_8065396C = .text:0x8065396C; // type:function size:0xBC +fn_80653A28 = .text:0x80653A28; // type:function size:0xBC +fn_80653AE4 = .text:0x80653AE4; // type:function size:0xE8 +fn_80653BCC = .text:0x80653BCC; // type:function size:0x90 +fn_80653C5C = .text:0x80653C5C; // type:function size:0x88 +fn_80653CE4 = .text:0x80653CE4; // type:function size:0x74 +fn_80653D58 = .text:0x80653D58; // type:function size:0x88 +fn_80653DE0 = .text:0x80653DE0; // type:function size:0x74 +fn_80653E54 = .text:0x80653E54; // type:function size:0x110 +fn_80653F64 = .text:0x80653F64; // type:function size:0x58 +fn_80653FBC = .text:0x80653FBC; // type:function size:0x118 +fn_806540D4 = .text:0x806540D4; // type:function size:0xBC +fn_80654190 = .text:0x80654190; // type:function size:0x34 +fn_806541C4 = .text:0x806541C4; // type:function size:0x134 +fn_806542F8 = .text:0x806542F8; // type:function size:0x4 +fn_806542FC = .text:0x806542FC; // type:function size:0x14 +fn_80654310 = .text:0x80654310; // type:function size:0x14 +fn_80654324 = .text:0x80654324; // type:function size:0x14 +fn_80654338 = .text:0x80654338; // type:function size:0x14 +fn_8065434C = .text:0x8065434C; // type:function size:0x14 +fn_80654360 = .text:0x80654360; // type:function size:0x14 +fn_80654374 = .text:0x80654374; // type:function size:0x14 +fn_80654388 = .text:0x80654388; // type:function size:0x14 +fn_8065439C = .text:0x8065439C; // type:function size:0x14 +fn_806543B0 = .text:0x806543B0; // type:function size:0x14 +fn_806543C4 = .text:0x806543C4; // type:function size:0xE8 +OnGroupOwner__FP9DataArray = .text:0x806544AC; // type:function size:0x50 +fn_806544FC = .text:0x806544FC; // type:function size:0xE0 +fn_806545DC = .text:0x806545DC; // type:function size:0x11C +fn_806546F8 = .text:0x806546F8; // type:function size:0x74 +fn_8065476C = .text:0x8065476C; // type:function size:0x3C +fn_806547A8 = .text:0x806547A8; // type:function size:0x8C +fn_80654834 = .text:0x80654834; // type:function size:0x30 +fn_80654864 = .text:0x80654864; // type:function size:0x30 +fn_80654894 = .text:0x80654894; // type:function size:0x118 +fn_806549AC = .text:0x806549AC; // type:function size:0xD0 +fn_80654A7C = .text:0x80654A7C; // type:function size:0x9C +fn_80654B18 = .text:0x80654B18; // type:function size:0x3C +fn_80654B54 = .text:0x80654B54; // type:function size:0xD0 +fn_80654C24 = .text:0x80654C24; // type:function size:0x100 +fn_80654D24 = .text:0x80654D24; // type:function size:0x98 +fn_80654DBC = .text:0x80654DBC; // type:function size:0x15C +fn_80654F18 = .text:0x80654F18; // type:function size:0x120 +fn_80655038 = .text:0x80655038; // type:function size:0x7C +fn_806550B4 = .text:0x806550B4; // type:function size:0x198 +fn_8065524C = .text:0x8065524C; // type:function size:0x324 +fn_80655570 = .text:0x80655570; // type:function size:0x120 +fn_80655690 = .text:0x80655690; // type:function size:0x45C +fn_80655AEC = .text:0x80655AEC; // type:function size:0x2BC +fn_80655DA8 = .text:0x80655DA8; // type:function size:0x260 +fn_80656008 = .text:0x80656008; // type:function size:0x180 +fn_80656188 = .text:0x80656188; // type:function size:0x64 +fn_806561EC = .text:0x806561EC; // type:function size:0x660 +fn_8065684C = .text:0x8065684C; // type:function size:0x4 +fn_80656850 = .text:0x80656850; // type:function size:0x2C +fn_8065687C = .text:0x8065687C; // type:function size:0x24 +fn_806568A0 = .text:0x806568A0; // type:function size:0xAC +fn_8065694C = .text:0x8065694C; // type:function size:0xF0 +fn_80656A3C = .text:0x80656A3C; // type:function size:0x158 +fn_80656B94 = .text:0x80656B94; // type:function size:0x24 +fn_80656BB8 = .text:0x80656BB8; // type:function size:0x58 +fn_80656C10 = .text:0x80656C10; // type:function size:0x64 +fn_80656C74 = .text:0x80656C74; // type:function size:0x4 +fn_80656C78 = .text:0x80656C78; // type:function size:0x2C +fn_80656CA4 = .text:0x80656CA4; // type:function size:0x24 +fn_80656CC8 = .text:0x80656CC8; // type:function size:0xAC +fn_80656D74 = .text:0x80656D74; // type:function size:0xF0 +fn_80656E64 = .text:0x80656E64; // type:function size:0x158 +fn_80656FBC = .text:0x80656FBC; // type:function size:0x24 +fn_80656FE0 = .text:0x80656FE0; // type:function size:0x58 +fn_80657038 = .text:0x80657038; // type:function size:0x64 +fn_8065709C = .text:0x8065709C; // type:function size:0x24 +fn_806570C0 = .text:0x806570C0; // type:function size:0x28 +fn_806570E8 = .text:0x806570E8; // type:function size:0xD8 +fn_806571C0 = .text:0x806571C0; // type:function size:0x488 +fn_80657648 = .text:0x80657648; // type:function size:0x28 +fn_80657670 = .text:0x80657670; // type:function size:0x4 +fn_80657674 = .text:0x80657674; // type:function size:0x3C +fn_806576B0 = .text:0x806576B0; // type:function size:0x70 +fn_80657720 = .text:0x80657720; // type:function size:0x28 +fn_80657748 = .text:0x80657748; // type:function size:0x68 +fn_806577B0 = .text:0x806577B0; // type:function size:0x4 +fn_806577B4 = .text:0x806577B4; // type:function size:0x88 +fn_8065783C = .text:0x8065783C; // type:function size:0xD8 +fn_80657914 = .text:0x80657914; // type:function size:0x4 +fn_80657918 = .text:0x80657918; // type:function size:0x3C +fn_80657954 = .text:0x80657954; // type:function size:0x4 +fn_80657958 = .text:0x80657958; // type:function size:0x88 +fn_806579E0 = .text:0x806579E0; // type:function size:0x148 +fn_80657B28 = .text:0x80657B28; // type:function size:0x974 +fn_8065849C = .text:0x8065849C; // type:function size:0x6C +fn_80658508 = .text:0x80658508; // type:function size:0x6C +fn_80658574 = .text:0x80658574; // type:function size:0x6C +fn_806585E0 = .text:0x806585E0; // type:function size:0x6C +fn_8065864C = .text:0x8065864C; // type:function size:0x6C +fn_806586B8 = .text:0x806586B8; // type:function size:0x6C +fn_80658724 = .text:0x80658724; // type:function size:0x6C +fn_80658790 = .text:0x80658790; // type:function size:0x6C +fn_806587FC = .text:0x806587FC; // type:function size:0x8 +fn_80658804 = .text:0x80658804; // type:function size:0x8 +fn_8065880C = .text:0x8065880C; // type:function size:0xC +fn_80658818 = .text:0x80658818; // type:function size:0x8 +fn_80658820 = .text:0x80658820; // type:function size:0xC +fn_8065882C = .text:0x8065882C; // type:function size:0xC +fn_80658838 = .text:0x80658838; // type:function size:0x8 +fn_80658840 = .text:0x80658840; // type:function size:0x8 +fn_80658848 = .text:0x80658848; // type:function size:0x8 +fn_80658850 = .text:0x80658850; // type:function size:0x8 +fn_80658858 = .text:0x80658858; // type:function size:0x14 +fn_8065886C = .text:0x8065886C; // type:function size:0x8 +fn_80658874 = .text:0x80658874; // type:function size:0x8 +fn_8065887C = .text:0x8065887C; // type:function size:0x58 +fn_806588D4 = .text:0x806588D4; // type:function size:0x58 +fn_8065892C = .text:0x8065892C; // type:function size:0x58 +fn_80658984 = .text:0x80658984; // type:function size:0x58 +fn_806589DC = .text:0x806589DC; // type:function size:0x60 +fn_80658A3C = .text:0x80658A3C; // type:function size:0x30 +fn_80658A6C = .text:0x80658A6C; // type:function size:0x30 +fn_80658A9C = .text:0x80658A9C; // type:function size:0x60 +fn_80658AFC = .text:0x80658AFC; // type:function size:0x4 +fn_80658B00 = .text:0x80658B00; // type:function size:0x4 +fn_80658B04 = .text:0x80658B04; // type:function size:0x12C +fn_80658C30 = .text:0x80658C30; // type:function size:0x120 +fn_80658D50 = .text:0x80658D50; // type:function size:0x9C +fn_80658DEC = .text:0x80658DEC; // type:function size:0x9C +fn_80658E88 = .text:0x80658E88; // type:function size:0x6C +ResourceFactory__FRC8FilePath9LoaderPos = .text:0x80658EF4; // type:function size:0x84 +fn_80658F78 = .text:0x80658F78; // type:function size:0xCC +fn_80659044 = .text:0x80659044; // type:function size:0x14C +fn_80659190 = .text:0x80659190; // type:function size:0x7C +OnFindEnviron__FP9DataArray = .text:0x8065920C; // type:function size:0x44 +RndUtlPreInit__Fv = .text:0x80659250; // type:function size:0x130 +fn_80659380 = .text:0x80659380; // type:function size:0x4 +fn_80659384 = .text:0x80659384; // type:function size:0x54 +fn_806593D8 = .text:0x806593D8; // type:function size:0x50 +fn_80659428 = .text:0x80659428; // type:function size:0xD0 +fn_806594F8 = .text:0x806594F8; // type:function size:0x78 +fn_80659570 = .text:0x80659570; // type:function size:0x50 +fn_806595C0 = .text:0x806595C0; // type:function size:0xD0 +fn_80659690 = .text:0x80659690; // type:function size:0x78 +fn_80659708 = .text:0x80659708; // type:function size:0x50 +fn_80659758 = .text:0x80659758; // type:function size:0xD0 +fn_80659828 = .text:0x80659828; // type:function size:0x78 +fn_806598A0 = .text:0x806598A0; // type:function size:0x54 +fn_806598F4 = .text:0x806598F4; // type:function size:0xB0 +fn_806599A4 = .text:0x806599A4; // type:function size:0x29C +fn_80659C40 = .text:0x80659C40; // type:function size:0x60 +fn_80659CA0 = .text:0x80659CA0; // type:function size:0x3C +fn_80659CDC = .text:0x80659CDC; // type:function size:0x5C +fn_80659D38 = .text:0x80659D38; // type:function size:0x3C +fn_80659D74 = .text:0x80659D74; // type:function size:0xF8 +fn_80659E6C = .text:0x80659E6C; // type:function size:0x284 +fn_8065A0F0 = .text:0x8065A0F0; // type:function size:0x4 +fn_8065A0F4 = .text:0x8065A0F4; // type:function size:0x60 +fn_8065A154 = .text:0x8065A154; // type:function size:0x2C +fn_8065A180 = .text:0x8065A180; // type:function size:0x1C8 +fn_8065A348 = .text:0x8065A348; // type:function size:0x8 +fn_8065A350 = .text:0x8065A350; // type:function size:0x1A4 +fn_8065A4F4 = .text:0x8065A4F4; // type:function size:0x168 +fn_8065A65C = .text:0x8065A65C; // type:function size:0x8 +fn_8065A664 = .text:0x8065A664; // type:function size:0x8 +fn_8065A66C = .text:0x8065A66C; // type:function size:0x18 +fn_8065A684 = .text:0x8065A684; // type:function size:0x1C +fn_8065A6A0 = .text:0x8065A6A0; // type:function size:0x1C +fn_8065A6BC = .text:0x8065A6BC; // type:function size:0x70 +fn_8065A72C = .text:0x8065A72C; // type:function size:0xB8 +fn_8065A7E4 = .text:0x8065A7E4; // type:function size:0x2A8 +fn_8065AA8C = .text:0x8065AA8C; // type:function size:0x30 +fn_8065AABC = .text:0x8065AABC; // type:function size:0x68 +fn_8065AB24 = .text:0x8065AB24; // type:function size:0x2C +fn_8065AB50 = .text:0x8065AB50; // type:function size:0x8 +fn_8065AB58 = .text:0x8065AB58; // type:function size:0xA0 +fn_8065ABF8 = .text:0x8065ABF8; // type:function size:0x108 +fn_8065AD00 = .text:0x8065AD00; // type:function size:0xD0 +fn_8065ADD0 = .text:0x8065ADD0; // type:function size:0x34 +fn_8065AE04 = .text:0x8065AE04; // type:function size:0x34 +fn_8065AE38 = .text:0x8065AE38; // type:function size:0x4C +fn_8065AE84 = .text:0x8065AE84; // type:function size:0x84 +fn_8065AF08 = .text:0x8065AF08; // type:function size:0x98 +fn_8065AFA0 = .text:0x8065AFA0; // type:function size:0x80 +fn_8065B020 = .text:0x8065B020; // type:function size:0x68 +fn_8065B088 = .text:0x8065B088; // type:function size:0x68 +fn_8065B0F0 = .text:0x8065B0F0; // type:function size:0x1C +fn_8065B10C = .text:0x8065B10C; // type:function size:0x5C +fn_8065B168 = .text:0x8065B168; // type:function size:0x70 +fn_8065B1D8 = .text:0x8065B1D8; // type:function size:0xE4 +fn_8065B2BC = .text:0x8065B2BC; // type:function size:0xB0 +fn_8065B36C = .text:0x8065B36C; // type:function size:0x4 +fn_8065B370 = .text:0x8065B370; // type:function size:0xC8 +fn_8065B438 = .text:0x8065B438; // type:function size:0x40 +fn_8065B478 = .text:0x8065B478; // type:function size:0x104 +fn_8065B57C = .text:0x8065B57C; // type:function size:0xC8 +fn_8065B644 = .text:0x8065B644; // type:function size:0x8 +fn_8065B64C = .text:0x8065B64C; // type:function size:0x78 +Handle__7RndWindFP9DataArrayb = .text:0x8065B6C4; // type:function size:0x124 +fn_8065B7E8 = .text:0x8065B7E8; // type:function size:0x210 +fn_8065B9F8 = .text:0x8065B9F8; // type:function size:0x3C +fn_8065BA34 = .text:0x8065BA34; // type:function size:0x4 +fn_8065BA38 = .text:0x8065BA38; // type:function size:0x128 +fn_8065BB60 = .text:0x8065BB60; // type:function size:0x24 +fn_8065BB84 = .text:0x8065BB84; // type:function size:0xB0 +fn_8065BC34 = .text:0x8065BC34; // type:function size:0x4 +fn_8065BC38 = .text:0x8065BC38; // type:function size:0xB8 +fn_8065BCF0 = .text:0x8065BCF0; // type:function size:0x54 +fn_8065BD44 = .text:0x8065BD44; // type:function size:0x124 +fn_8065BE68 = .text:0x8065BE68; // type:function size:0x8C +fn_8065BEF4 = .text:0x8065BEF4; // type:function size:0x9C +fn_8065BF90 = .text:0x8065BF90; // type:function size:0x144 +fn_8065C0D4 = .text:0x8065C0D4; // type:function size:0x4 +fn_8065C0D8 = .text:0x8065C0D8; // type:function size:0x14 +fn_8065C0EC = .text:0x8065C0EC; // type:function size:0x14 +fn_8065C100 = .text:0x8065C100; // type:function size:0x14 +fn_8065C114 = .text:0x8065C114; // type:function size:0x14 +fn_8065C128 = .text:0x8065C128; // type:function size:0x14 +fn_8065C13C = .text:0x8065C13C; // type:function size:0x14 +fn_8065C150 = .text:0x8065C150; // type:function size:0x14 +fn_8065C164 = .text:0x8065C164; // type:function size:0x14 +fn_8065C178 = .text:0x8065C178; // type:function size:0x14 +fn_8065C18C = .text:0x8065C18C; // type:function size:0x70 +fn_8065C1FC = .text:0x8065C1FC; // type:function size:0x70 +__ct__10RndCubeTexFv = .text:0x8065C26C; // type:function size:0xA8 +fn_8065C314 = .text:0x8065C314; // type:function size:0x30 +fn_8065C344 = .text:0x8065C344; // type:function size:0x1C +fn_8065C360 = .text:0x8065C360; // type:function size:0x104 +fn_8065C464 = .text:0x8065C464; // type:function size:0xA4 +fn_8065C508 = .text:0x8065C508; // type:function size:0x2C +fn_8065C534 = .text:0x8065C534; // type:function size:0x110 +fn_8065C644 = .text:0x8065C644; // type:function size:0x4 +fn_8065C648 = .text:0x8065C648; // type:function size:0x88 +fn_8065C6D0 = .text:0x8065C6D0; // type:function size:0x2C +fn_8065C6FC = .text:0x8065C6FC; // type:function size:0xA4 +fn_8065C7A0 = .text:0x8065C7A0; // type:function size:0x58 +fn_8065C7F8 = .text:0x8065C7F8; // type:function size:0x80 +fn_8065C878 = .text:0x8065C878; // type:function size:0x80 +fn_8065C8F8 = .text:0x8065C8F8; // type:function size:0x58 +fn_8065C950 = .text:0x8065C950; // type:function size:0x54 +fn_8065C9A4 = .text:0x8065C9A4; // type:function size:0x5C +fn_8065CA00 = .text:0x8065CA00; // type:function size:0x6C +fn_8065CA6C = .text:0x8065CA6C; // type:function size:0x28 +fn_8065CA94 = .text:0x8065CA94; // type:function size:0x8 +fn_8065CA9C = .text:0x8065CA9C; // type:function size:0x3C +fn_8065CAD8 = .text:0x8065CAD8; // type:function size:0x30 +fn_8065CB08 = .text:0x8065CB08; // type:function size:0x30 +fn_8065CB38 = .text:0x8065CB38; // type:function size:0x40 +fn_8065CB78 = .text:0x8065CB78; // type:function size:0x4 +fn_8065CB7C = .text:0x8065CB7C; // type:function size:0x5C +fn_8065CBD8 = .text:0x8065CBD8; // type:function size:0x180 +fn_8065CD58 = .text:0x8065CD58; // type:function size:0xFC +fn_8065CE54 = .text:0x8065CE54; // type:function size:0x100 +Handle__10RndCubeTexFP9DataArrayb = .text:0x8065CF54; // type:function size:0xC4 +fn_8065D018 = .text:0x8065D018; // type:function size:0x438 +__dt__10RndCubeTexFv = .text:0x8065D450; // type:function size:0x8C +fn_8065D4DC = .text:0x8065D4DC; // type:function size:0x114 +fn_8065D5F0 = .text:0x8065D5F0; // type:function size:0x60 +fn_8065D650 = .text:0x8065D650; // type:function size:0x5C +fn_8065D6AC = .text:0x8065D6AC; // type:function size:0x54 +fn_8065D700 = .text:0x8065D700; // type:function size:0x5C +fn_8065D75C = .text:0x8065D75C; // type:function size:0x5C +fn_8065D7B8 = .text:0x8065D7B8; // type:function size:0x4 +fn_8065D7BC = .text:0x8065D7BC; // type:function size:0x128 +fn_8065D8E4 = .text:0x8065D8E4; // type:function size:0x3C +fn_8065D920 = .text:0x8065D920; // type:function size:0x68 +fn_8065D988 = .text:0x8065D988; // type:function size:0x4 +fn_8065D98C = .text:0x8065D98C; // type:function size:0x144 +Handle__6RndFurFP9DataArrayb = .text:0x8065DAD0; // type:function size:0xC4 +fn_8065DB94 = .text:0x8065DB94; // type:function size:0x6C +fn_8065DC00 = .text:0x8065DC00; // type:function size:0x58 +fn_8065DC58 = .text:0x8065DC58; // type:function size:0x4 +fn_8065DC5C = .text:0x8065DC5C; // type:function size:0x128 +fn_8065DD84 = .text:0x8065DD84; // type:function size:0x3C +fn_8065DDC0 = .text:0x8065DDC0; // type:function size:0x4 +fn_8065DDC4 = .text:0x8065DDC4; // type:function size:0x128 +fn_8065DEEC = .text:0x8065DEEC; // type:function size:0x4 +Handle__19RndAmbientOcclusionFP9DataArrayb = .text:0x8065DEF0; // type:function size:0xC4 +fn_8065DFB4 = .text:0x8065DFB4; // type:function size:0x6C +fn_8065E020 = .text:0x8065E020; // type:function size:0x58 +fn_8065E078 = .text:0x8065E078; // type:function size:0x4 +fn_8065E07C = .text:0x8065E07C; // type:function size:0x128 +__ct__10WiiDOFProcFv = .text:0x8065E1A4; // type:function size:0x78 +__dt__10WiiDOFProcFv = .text:0x8065E21C; // type:function size:0x94 +fn_8065E2B0 = .text:0x8065E2B0; // type:function size:0x4 +fn_8065E2B4 = .text:0x8065E2B4; // type:function size:0x10 +fn_8065E2C4 = .text:0x8065E2C4; // type:function size:0xC +fn_8065E2D0 = .text:0x8065E2D0; // type:function size:0x4 +fn_8065E2D4 = .text:0x8065E2D4; // type:function size:0x4 +fn_8065E2D8 = .text:0x8065E2D8; // type:function size:0x4 +fn_8065E2DC = .text:0x8065E2DC; // type:function size:0x4 +fn_8065E2E0 = .text:0x8065E2E0; // type:function size:0x4C +fn_8065E32C = .text:0x8065E32C; // type:function size:0x128 +fn_8065E454 = .text:0x8065E454; // type:function size:0x8 +fn_8065E45C = .text:0x8065E45C; // type:function size:0xC +fn_8065E468 = .text:0x8065E468; // type:function size:0x8 +fn_8065E470 = .text:0x8065E470; // type:function size:0x8 +fn_8065E478 = .text:0x8065E478; // type:function size:0x8 +fn_8065E480 = .text:0x8065E480; // type:function size:0x8 +fn_8065E488 = .text:0x8065E488; // type:function size:0x8 +fn_8065E490 = .text:0x8065E490; // type:function size:0x698 +fn_8065EB28 = .text:0x8065EB28; // type:function size:0x3FC +fn_8065EF24 = .text:0x8065EF24; // type:function size:0x1C4 +fn_8065F0E8 = .text:0x8065F0E8; // type:function size:0xF4 +fn_8065F1DC = .text:0x8065F1DC; // type:function size:0xAAC +fn_8065FC88 = .text:0x8065FC88; // type:function size:0xAC +fn_8065FD34 = .text:0x8065FD34; // type:function size:0xD8 +fn_8065FE0C = .text:0x8065FE0C; // type:function size:0x344 +fn_80660150 = .text:0x80660150; // type:function size:0x30 +fn_80660180 = .text:0x80660180; // type:function size:0x58 +fn_806601D8 = .text:0x806601D8; // type:function size:0xC +fn_806601E4 = .text:0x806601E4; // type:function size:0x48 +fn_8066022C = .text:0x8066022C; // type:function size:0x58 +fn_80660284 = .text:0x80660284; // type:function size:0x34 +fn_806602B8 = .text:0x806602B8; // type:function size:0x34 +fn_806602EC = .text:0x806602EC; // type:function size:0x60 +fn_8066034C = .text:0x8066034C; // type:function size:0xA8 +fn_806603F4 = .text:0x806603F4; // type:function size:0x8 +fn_806603FC = .text:0x806603FC; // type:function size:0x4 +fn_80660400 = .text:0x80660400; // type:function size:0xAC +fn_806604AC = .text:0x806604AC; // type:function size:0x18C +fn_80660638 = .text:0x80660638; // type:function size:0x9C +fn_806606D4 = .text:0x806606D4; // type:function size:0x68 +fn_8066073C = .text:0x8066073C; // type:function size:0x4 +fn_80660740 = .text:0x80660740; // type:function size:0x518 +fn_80660C58 = .text:0x80660C58; // type:function size:0x58 +fn_80660CB0 = .text:0x80660CB0; // type:function size:0x20 +fn_80660CD0 = .text:0x80660CD0; // type:function size:0x48 +fn_80660D18 = .text:0x80660D18; // type:function size:0x4 +fn_80660D1C = .text:0x80660D1C; // type:function size:0x4 +__ct__6MicWiiFv = .text:0x80660D20; // type:function size:0x138 +__ct__3MicFv = .text:0x80660E58; // type:function size:0x24 +__dt__6MicWiiFv = .text:0x80660E7C; // type:function size:0x88 +fn_80660F04 = .text:0x80660F04; // type:function size:0x14 +fn_80660F18 = .text:0x80660F18; // type:function size:0x4 +fn_80660F1C = .text:0x80660F1C; // type:function size:0x3FC +fn_80661318 = .text:0x80661318; // type:function size:0x64 +fn_8066137C = .text:0x8066137C; // type:function size:0x4C +fn_806613C8 = .text:0x806613C8; // type:function size:0xC +fn_806613D4 = .text:0x806613D4; // type:function size:0xD4 +fn_806614A8 = .text:0x806614A8; // type:function size:0x18C +fn_80661634 = .text:0x80661634; // type:function size:0x1A4 +fn_806617D8 = .text:0x806617D8; // type:function size:0x3C +fn_80661814 = .text:0x80661814; // type:function size:0x4C +fn_80661860 = .text:0x80661860; // type:function size:0x8 +fn_80661868 = .text:0x80661868; // type:function size:0x44 +fn_806618AC = .text:0x806618AC; // type:function size:0x74 +fn_80661920 = .text:0x80661920; // type:function size:0x8 +fn_80661928 = .text:0x80661928; // type:function size:0x4C +fn_80661974 = .text:0x80661974; // type:function size:0x8 +fn_8066197C = .text:0x8066197C; // type:function size:0x8 +fn_80661984 = .text:0x80661984; // type:function size:0x8 +fn_8066198C = .text:0x8066198C; // type:function size:0x8 +fn_80661994 = .text:0x80661994; // type:function size:0x5C +fn_806619F0 = .text:0x806619F0; // type:function size:0x5C +fn_80661A4C = .text:0x80661A4C; // type:function size:0x98 +fn_80661AE4 = .text:0x80661AE4; // type:function size:0x114 +fn_80661BF8 = .text:0x80661BF8; // type:function size:0x2C +fn_80661C24 = .text:0x80661C24; // type:function size:0x68 +fn_80661C8C = .text:0x80661C8C; // type:function size:0x8 +fn_80661C94 = .text:0x80661C94; // type:function size:0x3C +fn_80661CD0 = .text:0x80661CD0; // type:function size:0x8 +fn_80661CD8 = .text:0x80661CD8; // type:function size:0x8 +fn_80661CE0 = .text:0x80661CE0; // type:function size:0x8 +fn_80661CE8 = .text:0x80661CE8; // type:function size:0x8 +fn_80661CF0 = .text:0x80661CF0; // type:function size:0x78 +fn_80661D68 = .text:0x80661D68; // type:function size:0x7C +fn_80661DE4 = .text:0x80661DE4; // type:function size:0x50 +fn_80661E34 = .text:0x80661E34; // type:function size:0x54 +fn_80661E88 = .text:0x80661E88; // type:function size:0x128 +fn_80661FB0 = .text:0x80661FB0; // type:function size:0x14 +fn_80661FC4 = .text:0x80661FC4; // type:function size:0x34 +__ct__8SynthWiiFv = .text:0x80661FF8; // type:function size:0x16C +fn_80662164 = .text:0x80662164; // type:function size:0x98 +fn_806621FC = .text:0x806621FC; // type:function size:0x58 +fn_80662254 = .text:0x80662254; // type:function size:0x80 +fn_806622D4 = .text:0x806622D4; // type:function size:0x80 +fn_80662354 = .text:0x80662354; // type:function size:0x58 +fn_806623AC = .text:0x806623AC; // type:function size:0x54 +fn_80662400 = .text:0x80662400; // type:function size:0x5C +fn_8066245C = .text:0x8066245C; // type:function size:0x6C +fn_806624C8 = .text:0x806624C8; // type:function size:0x28 +fn_806624F0 = .text:0x806624F0; // type:function size:0x8 +fn_806624F8 = .text:0x806624F8; // type:function size:0x5C +fn_80662554 = .text:0x80662554; // type:function size:0x8 +fn_8066255C = .text:0x8066255C; // type:function size:0x3C +fn_80662598 = .text:0x80662598; // type:function size:0x10 +fn_806625A8 = .text:0x806625A8; // type:function size:0x4 +fn_806625AC = .text:0x806625AC; // type:function size:0x1A8 +fn_80662754 = .text:0x80662754; // type:function size:0x90 +fn_806627E4 = .text:0x806627E4; // type:function size:0x5C +fn_80662840 = .text:0x80662840; // type:function size:0x114 +fn_80662954 = .text:0x80662954; // type:function size:0x8 +fn_8066295C = .text:0x8066295C; // type:function size:0x74 +fn_806629D0 = .text:0x806629D0; // type:function size:0x88 +fn_80662A58 = .text:0x80662A58; // type:function size:0x88 +fn_80662AE0 = .text:0x80662AE0; // type:function size:0x70 +fn_80662B50 = .text:0x80662B50; // type:function size:0x74 +fn_80662BC4 = .text:0x80662BC4; // type:function size:0x8 +fn_80662BCC = .text:0x80662BCC; // type:function size:0x60 +fn_80662C2C = .text:0x80662C2C; // type:function size:0xC +fn_80662C38 = .text:0x80662C38; // type:function size:0x6C +fn_80662CA4 = .text:0x80662CA4; // type:function size:0x64 +fn_80662D08 = .text:0x80662D08; // type:function size:0x8 +fn_80662D10 = .text:0x80662D10; // type:function size:0x6C +fn_80662D7C = .text:0x80662D7C; // type:function size:0x90 +fn_80662E0C = .text:0x80662E0C; // type:function size:0x84 +fn_80662E90 = .text:0x80662E90; // type:function size:0x3C +fn_80662ECC = .text:0x80662ECC; // type:function size:0x15C +fn_80663028 = .text:0x80663028; // type:function size:0x44 +fn_8066306C = .text:0x8066306C; // type:function size:0x11C +fn_80663188 = .text:0x80663188; // type:function size:0xB8 +fn_80663240 = .text:0x80663240; // type:function size:0x60 +NewStreamDecoder__8SynthWiiFP4FileP14StandardStream6Symbol = .text:0x806632A0; // type:function size:0x11C +fn_806633BC = .text:0x806633BC; // type:function size:0x118 +fn_806634D4 = .text:0x806634D4; // type:function size:0xCC +fn_806635A0 = .text:0x806635A0; // type:function size:0x30 +fn_806635D0 = .text:0x806635D0; // type:function size:0x8 +fn_806635D8 = .text:0x806635D8; // type:function size:0x9C +fn_80663674 = .text:0x80663674; // type:function size:0x90 +fn_80663704 = .text:0x80663704; // type:function size:0x14 +fn_80663718 = .text:0x80663718; // type:function size:0x14 +fn_8066372C = .text:0x8066372C; // type:function size:0x14 +fn_80663740 = .text:0x80663740; // type:function size:0x14 +fn_80663754 = .text:0x80663754; // type:function size:0x4 +fn_80663758 = .text:0x80663758; // type:function size:0x168 +fn_806638C0 = .text:0x806638C0; // type:function size:0x58 +fn_80663918 = .text:0x80663918; // type:function size:0x68 +fn_80663980 = .text:0x80663980; // type:function size:0x40 +fn_806639C0 = .text:0x806639C0; // type:function size:0x78 +fn_80663A38 = .text:0x80663A38; // type:function size:0x30 +fn_80663A68 = .text:0x80663A68; // type:function size:0x40 +fn_80663AA8 = .text:0x80663AA8; // type:function size:0x10 +fn_80663AB8 = .text:0x80663AB8; // type:function size:0x24 +fn_80663ADC = .text:0x80663ADC; // type:function size:0x10 +fn_80663AEC = .text:0x80663AEC; // type:function size:0x8 +fn_80663AF4 = .text:0x80663AF4; // type:function size:0x8 +fn_80663AFC = .text:0x80663AFC; // type:function size:0x8 +fn_80663B04 = .text:0x80663B04; // type:function size:0x8 +fn_80663B0C = .text:0x80663B0C; // type:function size:0x8 +fn_80663B14 = .text:0x80663B14; // type:function size:0x8 +fn_80663B1C = .text:0x80663B1C; // type:function size:0x8 +fn_80663B24 = .text:0x80663B24; // type:function size:0x8 +fn_80663B2C = .text:0x80663B2C; // type:function size:0xC4 +fn_80663BF0 = .text:0x80663BF0; // type:function size:0x94 +fn_80663C84 = .text:0x80663C84; // type:function size:0x10 +fn_80663C94 = .text:0x80663C94; // type:function size:0x140 +fn_80663DD4 = .text:0x80663DD4; // type:function size:0x54 +fn_80663E28 = .text:0x80663E28; // type:function size:0x48 +fn_80663E70 = .text:0x80663E70; // type:function size:0x1C +fn_80663E8C = .text:0x80663E8C; // type:function size:0x1C +fn_80663EA8 = .text:0x80663EA8; // type:function size:0x1C +fn_80663EC4 = .text:0x80663EC4; // type:function size:0x14 +fn_80663ED8 = .text:0x80663ED8; // type:function size:0x4 +fn_80663EDC = .text:0x80663EDC; // type:function size:0xC +fn_80663EE8 = .text:0x80663EE8; // type:function size:0x8 +fn_80663EF0 = .text:0x80663EF0; // type:function size:0x14 +fn_80663F04 = .text:0x80663F04; // type:function size:0x34 +fn_80663F38 = .text:0x80663F38; // type:function size:0x34 +fn_80663F6C = .text:0x80663F6C; // type:function size:0x38 +fn_80663FA4 = .text:0x80663FA4; // type:function size:0x3C +fn_80663FE0 = .text:0x80663FE0; // type:function size:0x4C +fn_8066402C = .text:0x8066402C; // type:function size:0x8 +fn_80664034 = .text:0x80664034; // type:function size:0x8 +fn_8066403C = .text:0x8066403C; // type:function size:0x5C +fn_80664098 = .text:0x80664098; // type:function size:0xB0 +fn_80664148 = .text:0x80664148; // type:function size:0x58 +fn_806641A0 = .text:0x806641A0; // type:function size:0x10 +fn_806641B0 = .text:0x806641B0; // type:function size:0x4 +fn_806641B4 = .text:0x806641B4; // type:function size:0x128 +fn_806642DC = .text:0x806642DC; // type:function size:0x34 +fn_80664310 = .text:0x80664310; // type:function size:0x6C +fn_8066437C = .text:0x8066437C; // type:function size:0x15C +fn_806644D8 = .text:0x806644D8; // type:function size:0xF8 +fn_806645D0 = .text:0x806645D0; // type:function size:0x10 +fn_806645E0 = .text:0x806645E0; // type:function size:0x8 +fn_806645E8 = .text:0x806645E8; // type:function size:0x34 +fn_8066461C = .text:0x8066461C; // type:function size:0x1C +fn_80664638 = .text:0x80664638; // type:function size:0x34 +fn_8066466C = .text:0x8066466C; // type:function size:0x34 +fn_806646A0 = .text:0x806646A0; // type:function size:0x22C +fn_806648CC = .text:0x806648CC; // type:function size:0x60 +fn_8066492C = .text:0x8066492C; // type:function size:0x94 +fn_806649C0 = .text:0x806649C0; // type:function size:0x64 +fn_80664A24 = .text:0x80664A24; // type:function size:0x38 +fn_80664A5C = .text:0x80664A5C; // type:function size:0x14 +fn_80664A70 = .text:0x80664A70; // type:function size:0x3C +fn_80664AAC = .text:0x80664AAC; // type:function size:0x70 +fn_80664B1C = .text:0x80664B1C; // type:function size:0x8 +fn_80664B24 = .text:0x80664B24; // type:function size:0xA0 +fn_80664BC4 = .text:0x80664BC4; // type:function size:0x10 +fn_80664BD4 = .text:0x80664BD4; // type:function size:0x40 +fn_80664C14 = .text:0x80664C14; // type:function size:0xE8 +fn_80664CFC = .text:0x80664CFC; // type:function size:0x78 +fn_80664D74 = .text:0x80664D74; // type:function size:0xB8 +fn_80664E2C = .text:0x80664E2C; // type:function size:0xA8 +fn_80664ED4 = .text:0x80664ED4; // type:function size:0x14 +fn_80664EE8 = .text:0x80664EE8; // type:function size:0x164 +fn_8066504C = .text:0x8066504C; // type:function size:0x74 +fn_806650C0 = .text:0x806650C0; // type:function size:0xCC +fn_8066518C = .text:0x8066518C; // type:function size:0xAC +fn_80665238 = .text:0x80665238; // type:function size:0x128 +fn_80665360 = .text:0x80665360; // type:function size:0x60 +fn_806653C0 = .text:0x806653C0; // type:function size:0x60 +fn_80665420 = .text:0x80665420; // type:function size:0xAC +fn_806654CC = .text:0x806654CC; // type:function size:0x14 +fn_806654E0 = .text:0x806654E0; // type:function size:0x15C +fn_8066563C = .text:0x8066563C; // type:function size:0xCC +fn_80665708 = .text:0x80665708; // type:function size:0x64 +fn_8066576C = .text:0x8066576C; // type:function size:0xC +fn_80665778 = .text:0x80665778; // type:function size:0x40 +fn_806657B8 = .text:0x806657B8; // type:function size:0xBC +fn_80665874 = .text:0x80665874; // type:function size:0x13C +fn_806659B0 = .text:0x806659B0; // type:function size:0x224 +fn_80665BD4 = .text:0x80665BD4; // type:function size:0x30 +fn_80665C04 = .text:0x80665C04; // type:function size:0x1C +fn_80665C20 = .text:0x80665C20; // type:function size:0x1C +fn_80665C3C = .text:0x80665C3C; // type:function size:0x10 +fn_80665C4C = .text:0x80665C4C; // type:function size:0x58 +fn_80665CA4 = .text:0x80665CA4; // type:function size:0x54 +fn_80665CF8 = .text:0x80665CF8; // type:function size:0x50 +fn_80665D48 = .text:0x80665D48; // type:function size:0x50 +fn_80665D98 = .text:0x80665D98; // type:function size:0x1C +fn_80665DB4 = .text:0x80665DB4; // type:function size:0x1D4 +fn_80665F88 = .text:0x80665F88; // type:function size:0x3C +fn_80665FC4 = .text:0x80665FC4; // type:function size:0x44 +fn_80666008 = .text:0x80666008; // type:function size:0x18 +fn_80666020 = .text:0x80666020; // type:function size:0xBC +fn_806660DC = .text:0x806660DC; // type:function size:0xC +fn_806660E8 = .text:0x806660E8; // type:function size:0xC +fn_806660F4 = .text:0x806660F4; // type:function size:0x6C +fn_80666160 = .text:0x80666160; // type:function size:0x70 +fn_806661D0 = .text:0x806661D0; // type:function size:0x8 +fn_806661D8 = .text:0x806661D8; // type:function size:0x8 +fn_806661E0 = .text:0x806661E0; // type:function size:0x1F0 +fn_806663D0 = .text:0x806663D0; // type:function size:0x8 +__ct__Q210soundtouch16FIFOSampleBufferFUi = .text:0x806663D8; // type:function size:0x70 +__ct__Q210soundtouch14FIFOSamplePipeFv = .text:0x80666448; // type:function size:0x10 +__dt__Q210soundtouch16FIFOSampleBufferFv = .text:0x80666458; // type:function size:0x6C +fn_806664C4 = .text:0x806664C4; // type:function size:0x1C +fn_806664E0 = .text:0x806664E0; // type:function size:0x68 +fn_80666548 = .text:0x80666548; // type:function size:0x60 +fn_806665A8 = .text:0x806665A8; // type:function size:0x4C +fn_806665F4 = .text:0x806665F4; // type:function size:0x4C +fn_80666640 = .text:0x80666640; // type:function size:0x1C +fn_8066665C = .text:0x8066665C; // type:function size:0x110 +fn_8066676C = .text:0x8066676C; // type:function size:0x14 +fn_80666780 = .text:0x80666780; // type:function size:0x8 +fn_80666788 = .text:0x80666788; // type:function size:0x8C +fn_80666814 = .text:0x80666814; // type:function size:0x38 +fn_8066684C = .text:0x8066684C; // type:function size:0x10 +fn_8066685C = .text:0x8066685C; // type:function size:0x10 +fn_8066686C = .text:0x8066686C; // type:function size:0x24 +fn_80666890 = .text:0x80666890; // type:function size:0x64 +fn_806668F4 = .text:0x806668F4; // type:function size:0x168 +fn_80666A5C = .text:0x80666A5C; // type:function size:0xF8 +fn_80666B54 = .text:0x80666B54; // type:function size:0x90 +fn_80666BE4 = .text:0x80666BE4; // type:function size:0x40 +fn_80666C24 = .text:0x80666C24; // type:function size:0x3C +fn_80666C60 = .text:0x80666C60; // type:function size:0x4 +__ct__Q210soundtouch14RateTransposerFv = .text:0x80666C64; // type:function size:0x94 +fn_80666CF8 = .text:0x80666CF8; // type:function size:0x4C +__dt__Q210soundtouch14RateTransposerFv = .text:0x80666D44; // type:function size:0x98 +fn_80666DDC = .text:0x80666DDC; // type:function size:0x8 +fn_80666DE4 = .text:0x80666DE4; // type:function size:0x8 +fn_80666DEC = .text:0x80666DEC; // type:function size:0x38 +fn_80666E24 = .text:0x80666E24; // type:function size:0x94 +fn_80666EB8 = .text:0x80666EB8; // type:function size:0x4 +fn_80666EBC = .text:0x80666EBC; // type:function size:0x130 +fn_80666FEC = .text:0x80666FEC; // type:function size:0x144 +fn_80667130 = .text:0x80667130; // type:function size:0xE0 +fn_80667210 = .text:0x80667210; // type:function size:0x2C +fn_8066723C = .text:0x8066723C; // type:function size:0x6C +fn_806672A8 = .text:0x806672A8; // type:function size:0x50 +fn_806672F8 = .text:0x806672F8; // type:function size:0x50 +fn_80667348 = .text:0x80667348; // type:function size:0x14 +__ct__Q210soundtouch19RateTransposerFloatFv = .text:0x8066735C; // type:function size:0x6C +fn_806673C8 = .text:0x806673C8; // type:function size:0x58 +fn_80667420 = .text:0x80667420; // type:function size:0x1C +fn_8066743C = .text:0x8066743C; // type:function size:0x168 +fn_806675A4 = .text:0x806675A4; // type:function size:0x230 +fn_806677D4 = .text:0x806677D4; // type:function size:0x14 +fn_806677E8 = .text:0x806677E8; // type:function size:0x14 +fn_806677FC = .text:0x806677FC; // type:function size:0x14 +__ct__Q210soundtouch10SoundTouchFv = .text:0x80667810; // type:function size:0xBC +__dt__Q210soundtouch13FIFOProcessorFv = .text:0x806678CC; // type:function size:0x44 +__dt__Q210soundtouch10SoundTouchFv = .text:0x80667910; // type:function size:0xAC +fn_806679BC = .text:0x806679BC; // type:function size:0x4C +fn_80667A08 = .text:0x80667A08; // type:function size:0x8 +calcEffectiveRateAndTempo__Q210soundtouch10SoundTouchFv = .text:0x80667A10; // type:function size:0x104 +fn_80667B14 = .text:0x80667B14; // type:function size:0x1C +fn_80667B30 = .text:0x80667B30; // type:function size:0xD4 +fn_80667C04 = .text:0x80667C04; // type:function size:0xB8 +fn_80667CBC = .text:0x80667CBC; // type:function size:0x130 +fn_80667DEC = .text:0x80667DEC; // type:function size:0x50 +fn_80667E3C = .text:0x80667E3C; // type:function size:0x2C +__ct__Q210soundtouch9TDStretchFv = .text:0x80667E68; // type:function size:0xA4 +__dt__Q210soundtouch9TDStretchFv = .text:0x80667F0C; // type:function size:0x90 +fn_80667F9C = .text:0x80667F9C; // type:function size:0x64 +fn_80668000 = .text:0x80668000; // type:function size:0x6C +fn_8066806C = .text:0x8066806C; // type:function size:0x44 +fn_806680B0 = .text:0x806680B0; // type:function size:0x48 +fn_806680F8 = .text:0x806680F8; // type:function size:0x50 +fn_80668148 = .text:0x80668148; // type:function size:0x44 +fn_8066818C = .text:0x8066818C; // type:function size:0x58 +fn_806681E4 = .text:0x806681E4; // type:function size:0x8 +fn_806681EC = .text:0x806681EC; // type:function size:0x64 +fn_80668250 = .text:0x80668250; // type:function size:0xA4 +fn_806682F4 = .text:0x806682F4; // type:function size:0xDC +fn_806683D0 = .text:0x806683D0; // type:function size:0xA4 +fn_80668474 = .text:0x80668474; // type:function size:0xDC +fn_80668550 = .text:0x80668550; // type:function size:0x4 +fn_80668554 = .text:0x80668554; // type:function size:0x84 +fn_806685D8 = .text:0x806685D8; // type:function size:0x4C +fn_80668624 = .text:0x80668624; // type:function size:0xD4 +fn_806686F8 = .text:0x806686F8; // type:function size:0x3C +fn_80668734 = .text:0x80668734; // type:function size:0x264 +fn_80668998 = .text:0x80668998; // type:function size:0x44 +fn_806689DC = .text:0x806689DC; // type:function size:0x8C +fn_80668A68 = .text:0x80668A68; // type:function size:0x6C +fn_80668AD4 = .text:0x80668AD4; // type:function size:0x48 +fn_80668B1C = .text:0x80668B1C; // type:function size:0x90 +fn_80668BAC = .text:0x80668BAC; // type:function size:0xC4 +fn_80668C70 = .text:0x80668C70; // type:function size:0x44 +fn_80668CB4 = .text:0x80668CB4; // type:function size:0x64 +__ct__7Ps2ADSRFv = .text:0x80668D18; // type:function size:0x18 +SetAttackMode__7Ps2ADSRFQ27Ps2ADSR10AttackMode = .text:0x80668D30; // type:function size:0x14 +SetAttackRate__7Ps2ADSRFUi = .text:0x80668D44; // type:function size:0x18 +SetDecayRate__7Ps2ADSRFUi = .text:0x80668D5C; // type:function size:0x18 +SetSustainMode__7Ps2ADSRFQ27Ps2ADSR11SustainMode = .text:0x80668D74; // type:function size:0x14 +SetSustainRate__7Ps2ADSRFUi = .text:0x80668D88; // type:function size:0x18 +SetSustainLevel__7Ps2ADSRFUi = .text:0x80668DA0; // type:function size:0x14 +SetReleaseMode__7Ps2ADSRFQ27Ps2ADSR11ReleaseMode = .text:0x80668DB4; // type:function size:0x18 +SetReleaseRate__7Ps2ADSRFUi = .text:0x80668DCC; // type:function size:0x14 +GetAttackMode__7Ps2ADSRCFv = .text:0x80668DE0; // type:function size:0xC +GetSustainMode__7Ps2ADSRCFv = .text:0x80668DEC; // type:function size:0xC +GetReleaseMode__7Ps2ADSRCFv = .text:0x80668DF8; // type:function size:0xC +Set__7Ps2ADSRFRC4ADSR = .text:0x80668E04; // type:function size:0xFC +FindNearestInTable__FPCfif = .text:0x80668F00; // type:function size:0xC0 +NearestAttackRate__7Ps2ADSRCFf = .text:0x80668FC0; // type:function size:0x58 +NearestDecayRate__7Ps2ADSRCFf = .text:0x80669018; // type:function size:0x10 +NearestSustainRate__7Ps2ADSRCFf = .text:0x80669028; // type:function size:0xA4 +NearestReleaseRate__7Ps2ADSRCFf = .text:0x806690CC; // type:function size:0x58 +NearestSustainLevel__7Ps2ADSRCFf = .text:0x80669124; // type:function size:0x10 +__ct__4ADSRFv = .text:0x80669134; // type:function size:0x88 +GetAttackRate__4ADSRCFv = .text:0x806691BC; // type:function size:0x8 +GetDecayRate__4ADSRCFv = .text:0x806691C4; // type:function size:0x8 +GetSustainRate__4ADSRCFv = .text:0x806691CC; // type:function size:0x8 +GetSustainLevel__4ADSRCFv = .text:0x806691D4; // type:function size:0x8 +GetReleaseRate__4ADSRCFv = .text:0x806691DC; // type:function size:0x8 +GetAttackMode__4ADSRCFv = .text:0x806691E4; // type:function size:0x8 +GetSustainMode__4ADSRCFv = .text:0x806691EC; // type:function size:0x8 +GetReleaseMode__4ADSRCFv = .text:0x806691F4; // type:function size:0x8 +Load__4ADSRFR9BinStream = .text:0x806691FC; // type:function size:0xC4 +SyncPacked__4ADSRFv = .text:0x806692C0; // type:function size:0x48 +__rs__FR9BinStreamR4ADSR = .text:0x80669308; // type:function size:0x38 +fn_80669340 = .text:0x80669340; // type:function size:0xC +__ct__8BinkClipFv = .text:0x8066934C; // type:function size:0xE0 +fn_8066942C = .text:0x8066942C; // type:function size:0x58 +fn_80669484 = .text:0x80669484; // type:function size:0x80 +fn_80669504 = .text:0x80669504; // type:function size:0x80 +fn_80669584 = .text:0x80669584; // type:function size:0x58 +fn_806695DC = .text:0x806695DC; // type:function size:0x54 +fn_80669630 = .text:0x80669630; // type:function size:0x5C +fn_8066968C = .text:0x8066968C; // type:function size:0x6C +fn_806696F8 = .text:0x806696F8; // type:function size:0x28 +fn_80669720 = .text:0x80669720; // type:function size:0x8 +fn_80669728 = .text:0x80669728; // type:function size:0x3C +fn_80669764 = .text:0x80669764; // type:function size:0x30 +fn_80669794 = .text:0x80669794; // type:function size:0x30 +fn_806697C4 = .text:0x806697C4; // type:function size:0x40 +__dt__8BinkClipFv = .text:0x80669804; // type:function size:0x104 +fn_80669908 = .text:0x80669908; // type:function size:0xC8 +fn_806699D0 = .text:0x806699D0; // type:function size:0x4 +fn_806699D4 = .text:0x806699D4; // type:function size:0x88 +fn_80669A5C = .text:0x80669A5C; // type:function size:0x5C +fn_80669AB8 = .text:0x80669AB8; // type:function size:0xAC +fn_80669B64 = .text:0x80669B64; // type:function size:0x4 +fn_80669B68 = .text:0x80669B68; // type:function size:0x1DC +fn_80669D44 = .text:0x80669D44; // type:function size:0x38 +fn_80669D7C = .text:0x80669D7C; // type:function size:0x40 +fn_80669DBC = .text:0x80669DBC; // type:function size:0x54 +fn_80669E10 = .text:0x80669E10; // type:function size:0x3C +fn_80669E4C = .text:0x80669E4C; // type:function size:0x8 +fn_80669E54 = .text:0x80669E54; // type:function size:0x80 +fn_80669ED4 = .text:0x80669ED4; // type:function size:0xA4 +fn_80669F78 = .text:0x80669F78; // type:function size:0x94 +fn_8066A00C = .text:0x8066A00C; // type:function size:0xB4 +fn_8066A0C0 = .text:0x8066A0C0; // type:function size:0x4 +fn_8066A0C4 = .text:0x8066A0C4; // type:function size:0x88 +fn_8066A14C = .text:0x8066A14C; // type:function size:0x2C +fn_8066A178 = .text:0x8066A178; // type:function size:0x10 +fn_8066A188 = .text:0x8066A188; // type:function size:0x14 +fn_8066A19C = .text:0x8066A19C; // type:function size:0x8 +fn_8066A1A4 = .text:0x8066A1A4; // type:function size:0x114 +fn_8066A2B8 = .text:0x8066A2B8; // type:function size:0x5C +fn_8066A314 = .text:0x8066A314; // type:function size:0xC8 +fn_8066A3DC = .text:0x8066A3DC; // type:function size:0x28 +fn_8066A404 = .text:0x8066A404; // type:function size:0x70 +fn_8066A474 = .text:0x8066A474; // type:function size:0x74 +fn_8066A4E8 = .text:0x8066A4E8; // type:function size:0x5C +fn_8066A544 = .text:0x8066A544; // type:function size:0x48 +SyncProperty__8BinkClipFR8DataNodeP9DataArrayi6PropOp = .text:0x8066A58C; // type:function size:0x270 +Handle__8BinkClipFP9DataArrayb = .text:0x8066A7FC; // type:function size:0x180 +fn_8066A97C = .text:0x8066A97C; // type:function size:0x114 +fn_8066AA90 = .text:0x8066AA90; // type:function size:0x60 +fn_8066AAF0 = .text:0x8066AAF0; // type:function size:0x5C +fn_8066AB4C = .text:0x8066AB4C; // type:function size:0x54 +fn_8066ABA0 = .text:0x8066ABA0; // type:function size:0x5C +fn_8066ABFC = .text:0x8066ABFC; // type:function size:0x5C +ClassName__8BinkClipCFv = .text:0x8066AC58; // type:function size:0x4 +SetType__8BinkClipF6Symbol = .text:0x8066AC5C; // type:function size:0x128 +fn_8066AD84 = .text:0x8066AD84; // type:function size:0x8 +fn_8066AD8C = .text:0x8066AD8C; // type:function size:0x8 +fn_8066AD94 = .text:0x8066AD94; // type:function size:0x8 +fn_8066AD9C = .text:0x8066AD9C; // type:function size:0x6C +fn_8066AE08 = .text:0x8066AE08; // type:function size:0x58 +fn_8066AE60 = .text:0x8066AE60; // type:function size:0x40 +__ct__10BinkReaderFP4FileP14StandardStream = .text:0x8066AEA0; // type:function size:0xD4 +__ct__12StreamReaderFv = .text:0x8066AF74; // type:function size:0x10 +__dt__10BinkReaderFv = .text:0x8066AF84; // type:function size:0xE0 +fn_8066B064 = .text:0x8066B064; // type:function size:0xA0 +fn_8066B104 = .text:0x8066B104; // type:function size:0x40 +fn_8066B144 = .text:0x8066B144; // type:function size:0x2B4 +fn_8066B3F8 = .text:0x8066B3F8; // type:function size:0x8 +Poll__10BinkReaderFf = .text:0x8066B400; // type:function size:0x80 +Seek__10BinkReaderFi = .text:0x8066B480; // type:function size:0x1EC +Init__10BinkReaderFv = .text:0x8066B66C; // type:function size:0x24 +Done__10BinkReaderFv = .text:0x8066B690; // type:function size:0x14 +Fail__10BinkReaderFv = .text:0x8066B6A4; // type:function size:0x14 +GetEncMethod__25@unnamed@bytegrinder_cpp@Fi = .text:0x8066B6B8; // type:function size:0x50 +hashTo5Bits__FP9DataArray = .text:0x8066B708; // type:function size:0xD0 +hashTo6Bits__FP9DataArray = .text:0x8066B7D8; // type:function size:0xD0 +getRandomSequence32A__FP9DataArray = .text:0x8066B8A8; // type:function size:0x104 +getRandomSequence32B__FP9DataArray = .text:0x8066B9AC; // type:function size:0x104 +op0__FP9DataArray = .text:0x8066BAB0; // type:function size:0x68 +op1__FP9DataArray = .text:0x8066BB18; // type:function size:0x6C +op2__FP9DataArray = .text:0x8066BB84; // type:function size:0x70 +op3__FP9DataArray = .text:0x8066BBF4; // type:function size:0x74 +op4__FP9DataArray = .text:0x8066BC68; // type:function size:0x7C +op5__FP9DataArray = .text:0x8066BCE4; // type:function size:0x78 +op6__FP9DataArray = .text:0x8066BD5C; // type:function size:0x6C +op7__FP9DataArray = .text:0x8066BDC8; // type:function size:0x70 +op8__FP9DataArray = .text:0x8066BE38; // type:function size:0x70 +op9__FP9DataArray = .text:0x8066BEA8; // type:function size:0x70 +op10__FP9DataArray = .text:0x8066BF18; // type:function size:0x78 +op11__FP9DataArray = .text:0x8066BF90; // type:function size:0x74 +op12__FP9DataArray = .text:0x8066C004; // type:function size:0x74 +op13__FP9DataArray = .text:0x8066C078; // type:function size:0x78 +op14__FP9DataArray = .text:0x8066C0F0; // type:function size:0x70 +op15__FP9DataArray = .text:0x8066C160; // type:function size:0x70 +op16__FP9DataArray = .text:0x8066C1D0; // type:function size:0x70 +op17__FP9DataArray = .text:0x8066C240; // type:function size:0x70 +op18__FP9DataArray = .text:0x8066C2B0; // type:function size:0x70 +op19__FP9DataArray = .text:0x8066C320; // type:function size:0x70 +op20__FP9DataArray = .text:0x8066C390; // type:function size:0x70 +op21__FP9DataArray = .text:0x8066C400; // type:function size:0x70 +op22__FP9DataArray = .text:0x8066C470; // type:function size:0x70 +op23__FP9DataArray = .text:0x8066C4E0; // type:function size:0x70 +op24__FP9DataArray = .text:0x8066C550; // type:function size:0x70 +op25__FP9DataArray = .text:0x8066C5C0; // type:function size:0x70 +op26__FP9DataArray = .text:0x8066C630; // type:function size:0x70 +op27__FP9DataArray = .text:0x8066C6A0; // type:function size:0x70 +op28__FP9DataArray = .text:0x8066C710; // type:function size:0x74 +op29__FP9DataArray = .text:0x8066C784; // type:function size:0x74 +op30__FP9DataArray = .text:0x8066C7F8; // type:function size:0x74 +op31__FP9DataArray = .text:0x8066C86C; // type:function size:0x74 +op32__FP9DataArray = .text:0x8066C8E0; // type:function size:0x74 +op33__FP9DataArray = .text:0x8066C954; // type:function size:0x74 +op34__FP9DataArray = .text:0x8066C9C8; // type:function size:0x74 +op35__FP9DataArray = .text:0x8066CA3C; // type:function size:0x74 +op36__FP9DataArray = .text:0x8066CAB0; // type:function size:0x74 +op37__FP9DataArray = .text:0x8066CB24; // type:function size:0x74 +op38__FP9DataArray = .text:0x8066CB98; // type:function size:0x74 +op39__FP9DataArray = .text:0x8066CC0C; // type:function size:0x74 +op40__FP9DataArray = .text:0x8066CC80; // type:function size:0x74 +op41__FP9DataArray = .text:0x8066CCF4; // type:function size:0x74 +op42__FP9DataArray = .text:0x8066CD68; // type:function size:0x74 +op43__FP9DataArray = .text:0x8066CDDC; // type:function size:0x74 +op44__FP9DataArray = .text:0x8066CE50; // type:function size:0x74 +op45__FP9DataArray = .text:0x8066CEC4; // type:function size:0x74 +op46__FP9DataArray = .text:0x8066CF38; // type:function size:0x74 +op47__FP9DataArray = .text:0x8066CFAC; // type:function size:0x74 +op48__FP9DataArray = .text:0x8066D020; // type:function size:0x7C +op49__FP9DataArray = .text:0x8066D09C; // type:function size:0x7C +op50__FP9DataArray = .text:0x8066D118; // type:function size:0x7C +op51__FP9DataArray = .text:0x8066D194; // type:function size:0x7C +op52__FP9DataArray = .text:0x8066D210; // type:function size:0x7C +op53__FP9DataArray = .text:0x8066D28C; // type:function size:0x7C +op54__FP9DataArray = .text:0x8066D308; // type:function size:0x7C +op55__FP9DataArray = .text:0x8066D384; // type:function size:0x7C +op56__FP9DataArray = .text:0x8066D400; // type:function size:0x7C +op57__FP9DataArray = .text:0x8066D47C; // type:function size:0x7C +op58__FP9DataArray = .text:0x8066D4F8; // type:function size:0x7C +op59__FP9DataArray = .text:0x8066D574; // type:function size:0x7C +op60__FP9DataArray = .text:0x8066D5F0; // type:function size:0x7C +op61__FP9DataArray = .text:0x8066D66C; // type:function size:0x7C +op62__FP9DataArray = .text:0x8066D6E8; // type:function size:0x7C +op63__FP9DataArray = .text:0x8066D764; // type:function size:0x7C +pickOneOf32A__11ByteGrinderFbl = .text:0x8066D7E0; // type:function size:0x90 +pickOneOf32B__11ByteGrinderFbl = .text:0x8066D870; // type:function size:0x94 +getRandomLong__FP9DataArray = .text:0x8066D904; // type:function size:0x7C +magicNumberGenerator__FP9DataArray = .text:0x8066D980; // type:function size:0xB0 +Init__11ByteGrinderFv = .text:0x8066DA30; // type:function size:0x628 +GrindArray__11ByteGrinderFllPUcil = .text:0x8066E058; // type:function size:0x320 +HvDecrypt__11ByteGrinderFPUcPUci = .text:0x8066E378; // type:function size:0x84 +fn_8066E3FC = .text:0x8066E3FC; // type:function size:0xFC +fn_8066E4F8 = .text:0x8066E4F8; // type:function size:0x8 +fn_8066E500 = .text:0x8066E500; // type:function size:0x4 +fn_8066E504 = .text:0x8066E504; // type:function size:0xFC +fn_8066E600 = .text:0x8066E600; // type:function size:0x40 +fn_8066E640 = .text:0x8066E640; // type:function size:0x104 +fn_8066E744 = .text:0x8066E744; // type:function size:0x4 +fn_8066E748 = .text:0x8066E748; // type:function size:0x8 +fn_8066E750 = .text:0x8066E750; // type:function size:0x8 +fn_8066E758 = .text:0x8066E758; // type:function size:0x1D8 +fn_8066E930 = .text:0x8066E930; // type:function size:0x18 +__dt__12SynthEmitterFv = .text:0x8066E948; // type:function size:0x134 +fn_8066EA7C = .text:0x8066EA7C; // type:function size:0x80 +fn_8066EAFC = .text:0x8066EAFC; // type:function size:0x80 +__ct__12SynthEmitterFv = .text:0x8066EB7C; // type:function size:0x178 +fn_8066ECF4 = .text:0x8066ECF4; // type:function size:0x68 +fn_8066ED5C = .text:0x8066ED5C; // type:function size:0x68 +fn_8066EDC4 = .text:0x8066EDC4; // type:function size:0x170 +fn_8066EF34 = .text:0x8066EF34; // type:function size:0x328 +fn_8066F25C = .text:0x8066F25C; // type:function size:0xC0 +fn_8066F31C = .text:0x8066F31C; // type:function size:0x60 +fn_8066F37C = .text:0x8066F37C; // type:function size:0x60 +fn_8066F3DC = .text:0x8066F3DC; // type:function size:0x144 +fn_8066F520 = .text:0x8066F520; // type:function size:0x4C +fn_8066F56C = .text:0x8066F56C; // type:function size:0x4 +fn_8066F570 = .text:0x8066F570; // type:function size:0x14 +fn_8066F584 = .text:0x8066F584; // type:function size:0x14 +fn_8066F598 = .text:0x8066F598; // type:function size:0x8 +fn_8066F5A0 = .text:0x8066F5A0; // type:function size:0x8 +fn_8066F5A8 = .text:0x8066F5A8; // type:function size:0x8 +fn_8066F5B0 = .text:0x8066F5B0; // type:function size:0x8 +fn_8066F5B8 = .text:0x8066F5B8; // type:function size:0x8 +fn_8066F5C0 = .text:0x8066F5C0; // type:function size:0x8 +fn_8066F5C8 = .text:0x8066F5C8; // type:function size:0x8 +fn_8066F5D0 = .text:0x8066F5D0; // type:function size:0x8 +fn_8066F5D8 = .text:0x8066F5D8; // type:function size:0x8 +fn_8066F5E0 = .text:0x8066F5E0; // type:function size:0x8 +fn_8066F5E8 = .text:0x8066F5E8; // type:function size:0x8 +fn_8066F5F0 = .text:0x8066F5F0; // type:function size:0x8 +fn_8066F5F8 = .text:0x8066F5F8; // type:function size:0x14 +fn_8066F60C = .text:0x8066F60C; // type:function size:0x14 +fn_8066F620 = .text:0x8066F620; // type:function size:0x14 +fn_8066F634 = .text:0x8066F634; // type:function size:0x14 +fn_8066F648 = .text:0x8066F648; // type:function size:0x14 +fn_8066F65C = .text:0x8066F65C; // type:function size:0x14 +fn_8066F670 = .text:0x8066F670; // type:function size:0x14 +fn_8066F684 = .text:0x8066F684; // type:function size:0x14 +fn_8066F698 = .text:0x8066F698; // type:function size:0x8 +fn_8066F6A0 = .text:0x8066F6A0; // type:function size:0x8 +fn_8066F6A8 = .text:0x8066F6A8; // type:function size:0x8 +fn_8066F6B0 = .text:0x8066F6B0; // type:function size:0x8 +fn_8066F6B8 = .text:0x8066F6B8; // type:function size:0x8 +__ct__5FaderFv = .text:0x8066F6C0; // type:function size:0x6C +fn_8066F72C = .text:0x8066F72C; // type:function size:0x58 +fn_8066F784 = .text:0x8066F784; // type:function size:0x60 +fn_8066F7E4 = .text:0x8066F7E4; // type:function size:0x58 +fn_8066F83C = .text:0x8066F83C; // type:function size:0x58 +fn_8066F894 = .text:0x8066F894; // type:function size:0x50 +fn_8066F8E4 = .text:0x8066F8E4; // type:function size:0x44 +fn_8066F928 = .text:0x8066F928; // type:function size:0x3C +fn_8066F964 = .text:0x8066F964; // type:function size:0x70 +__dt__5FaderFv = .text:0x8066F9D4; // type:function size:0x78 +SetVal__5FaderFf = .text:0x8066FA4C; // type:function size:0x44 +fn_8066FA90 = .text:0x8066FA90; // type:function size:0x8 +DoFade__5FaderFff = .text:0x8066FA98; // type:function size:0x160 +fn_8066FBF8 = .text:0x8066FBF8; // type:function size:0x10 +fn_8066FC08 = .text:0x8066FC08; // type:function size:0x1C +fn_8066FC24 = .text:0x8066FC24; // type:function size:0x34 +fn_8066FC58 = .text:0x8066FC58; // type:function size:0x4 +fn_8066FC5C = .text:0x8066FC5C; // type:function size:0x2C +fn_8066FC88 = .text:0x8066FC88; // type:function size:0x88 +fn_8066FD10 = .text:0x8066FD10; // type:function size:0x6C +fn_8066FD7C = .text:0x8066FD7C; // type:function size:0x4 +fn_8066FD80 = .text:0x8066FD80; // type:function size:0x40 +fn_8066FDC0 = .text:0x8066FDC0; // type:function size:0xAC +CancelFade__5FaderFv = .text:0x8066FE6C; // type:function size:0x4C +UpdateValue__5FaderFf = .text:0x8066FEB8; // type:function size:0x98 +fn_8066FF50 = .text:0x8066FF50; // type:function size:0x8C +fn_8066FFDC = .text:0x8066FFDC; // type:function size:0x3C +fn_80670018 = .text:0x80670018; // type:function size:0x4 +fn_8067001C = .text:0x8067001C; // type:function size:0x4 +fn_80670020 = .text:0x80670020; // type:function size:0x8 +Save__5FaderFR9BinStream = .text:0x80670028; // type:function size:0x4 +Load__5FaderFR9BinStream = .text:0x8067002C; // type:function size:0x64 +Copy__5FaderFPCQ23Hmx6ObjectQ33Hmx6Object8CopyType = .text:0x80670090; // type:function size:0x6C +SyncProperty__5FaderFR8DataNodeP9DataArrayi6PropOp = .text:0x806700FC; // type:function size:0xD4 +Handle__5FaderFP9DataArrayb = .text:0x806701D0; // type:function size:0x158 +fn_80670328 = .text:0x80670328; // type:function size:0x3C +__dt__29ObjPtrList<5Fader,9ObjectDir>Fv = .text:0x80670364; // type:function size:0x6C +fn_806703D0 = .text:0x806703D0; // type:function size:0x40 +fn_80670410 = .text:0x80670410; // type:function size:0x44 +fn_80670454 = .text:0x80670454; // type:function size:0x54 +__ct__29ObjPtrList<5Fader,9ObjectDir>FPQ23Hmx6Object11ObjListMode = .text:0x806704A8; // type:function size:0x68 +fn_80670510 = .text:0x80670510; // type:function size:0xCC +fn_806705DC = .text:0x806705DC; // type:function size:0x40 +fn_8067061C = .text:0x8067061C; // type:function size:0xF4 +fn_80670710 = .text:0x80670710; // type:function size:0x4C +fn_8067075C = .text:0x8067075C; // type:function size:0x78 +fn_806707D4 = .text:0x806707D4; // type:function size:0x2C +fn_80670800 = .text:0x80670800; // type:function size:0x30 +Add__10FaderGroupFP5Fader = .text:0x80670830; // type:function size:0xA4 +fn_806708D4 = .text:0x806708D4; // type:function size:0xB0 +fn_80670984 = .text:0x80670984; // type:function size:0x94 +fn_80670A18 = .text:0x80670A18; // type:function size:0x8 +fn_80670A20 = .text:0x80670A20; // type:function size:0xC +fn_80670A2C = .text:0x80670A2C; // type:function size:0xC +fn_80670A38 = .text:0x80670A38; // type:function size:0xC4 +fn_80670AFC = .text:0x80670AFC; // type:function size:0x168 +fn_80670C64 = .text:0x80670C64; // type:function size:0x44 +fn_80670CA8 = .text:0x80670CA8; // type:function size:0x164 +fn_80670E0C = .text:0x80670E0C; // type:function size:0x3C +fn_80670E48 = .text:0x80670E48; // type:function size:0x11C +fn_80670F64 = .text:0x80670F64; // type:function size:0x21C +fn_80671180 = .text:0x80671180; // type:function size:0x1E8 +fn_80671368 = .text:0x80671368; // type:function size:0xB0 +__ct__29ObjPtrList<5Fader,9ObjectDir>FRC29ObjPtrList<5Fader,9ObjectDir> = .text:0x80671418; // type:function size:0x94 +__ct__9FaderTaskFv = .text:0x806714AC; // type:function size:0x40 +fn_806714EC = .text:0x806714EC; // type:function size:0x78 +fn_80671564 = .text:0x80671564; // type:function size:0xD4 +fn_80671638 = .text:0x80671638; // type:function size:0x3C +fn_80671674 = .text:0x80671674; // type:function size:0x5C +fn_806716D0 = .text:0x806716D0; // type:function size:0x3C +fn_8067170C = .text:0x8067170C; // type:function size:0x8C +fn_80671798 = .text:0x80671798; // type:function size:0x4 +fn_8067179C = .text:0x8067179C; // type:function size:0x100 +fn_8067189C = .text:0x8067189C; // type:function size:0x6C +fn_80671908 = .text:0x80671908; // type:function size:0x15C +fn_80671A64 = .text:0x80671A64; // type:function size:0x44 +ClassName__5FaderCFv = .text:0x80671AA8; // type:function size:0x4 +SetType__5FaderF6Symbol = .text:0x80671AAC; // type:function size:0x128 +fn_80671BD4 = .text:0x80671BD4; // type:function size:0x108 +fn_80671CDC = .text:0x80671CDC; // type:function size:0x5C +fn_80671D38 = .text:0x80671D38; // type:function size:0x94 +__ct__6FxSendFv = .text:0x80671DCC; // type:function size:0x88 +__dt__31ObjOwnerPtr<6FxSend,9ObjectDir>Fv = .text:0x80671E54; // type:function size:0x80 +__ct__31ObjOwnerPtr<6FxSend,9ObjectDir>FPQ23Hmx6ObjectP6FxSend = .text:0x80671ED4; // type:function size:0x68 +__dt__6FxSendFv = .text:0x80671F3C; // type:function size:0x68 +Replace__6FxSendFPQ23Hmx6ObjectPQ23Hmx6Object = .text:0x80671FA4; // type:function size:0x7C +__as__31ObjOwnerPtr<6FxSend,9ObjectDir>FRC31ObjOwnerPtr<6FxSend,9ObjectDir> = .text:0x80672020; // type:function size:0x8 +fn_80672028 = .text:0x80672028; // type:function size:0x7C +fn_806720A4 = .text:0x806720A4; // type:function size:0x78 +fn_8067211C = .text:0x8067211C; // type:function size:0x24 +fn_80672140 = .text:0x80672140; // type:function size:0x7C +fn_806721BC = .text:0x806721BC; // type:function size:0x124 +fn_806722E0 = .text:0x806722E0; // type:function size:0x8 +fn_806722E8 = .text:0x806722E8; // type:function size:0x13C +Save__6FxSendFR9BinStream = .text:0x80672424; // type:function size:0x4 +Load__6FxSendFR9BinStream = .text:0x80672428; // type:function size:0x1D4 +fn_806725FC = .text:0x806725FC; // type:function size:0x40 +fn_8067263C = .text:0x8067263C; // type:function size:0x104 +Copy__6FxSendFPCQ23Hmx6ObjectQ33Hmx6Object8CopyType = .text:0x80672740; // type:function size:0xB0 +fn_806727F0 = .text:0x806727F0; // type:function size:0x8C +fn_8067287C = .text:0x8067287C; // type:function size:0x20 +Handle__6FxSendFP9DataArrayb = .text:0x8067289C; // type:function size:0xF4 +SyncProperty__6FxSendFR8DataNodeP9DataArrayi6PropOp = .text:0x80672990; // type:function size:0x440 +fn_80672DD0 = .text:0x80672DD0; // type:function size:0x3C +ClassName__6FxSendCFv = .text:0x80672E0C; // type:function size:0x4 +SetType__6FxSendF6Symbol = .text:0x80672E10; // type:function size:0x128 +__ct__12FxSendChorusFv = .text:0x80672F38; // type:function size:0xAC +Save__12FxSendChorusFR9BinStream = .text:0x80672FE4; // type:function size:0x4 +Load__12FxSendChorusFR9BinStream = .text:0x80672FE8; // type:function size:0x114 +Copy__12FxSendChorusFPCQ23Hmx6ObjectQ33Hmx6Object8CopyType = .text:0x806730FC; // type:function size:0xA8 +Handle__12FxSendChorusFP9DataArrayb = .text:0x806731A4; // type:function size:0xC4 +SyncProperty__12FxSendChorusFR8DataNodeP9DataArrayi6PropOp = .text:0x80673268; // type:function size:0x3AC +__dt__12FxSendChorusFv = .text:0x80673614; // type:function size:0x58 +ClassName__12FxSendChorusCFv = .text:0x8067366C; // type:function size:0x4 +StaticClassName__12FxSendChorusFv = .text:0x80673670; // type:function size:0x4C +SetType__12FxSendChorusF6Symbol = .text:0x806736BC; // type:function size:0x128 +__ct__13FxSendFlangerFv = .text:0x806737E4; // type:function size:0xA4 +Save__13FxSendFlangerFR9BinStream = .text:0x80673888; // type:function size:0x4 +Load__13FxSendFlangerFR9BinStream = .text:0x8067388C; // type:function size:0x148 +Copy__13FxSendFlangerFPCQ23Hmx6ObjectQ33Hmx6Object8CopyType = .text:0x806739D4; // type:function size:0xA8 +Handle__13FxSendFlangerFP9DataArrayb = .text:0x80673A7C; // type:function size:0xC4 +SyncProperty__13FxSendFlangerFR8DataNodeP9DataArrayi6PropOp = .text:0x80673B40; // type:function size:0x3AC +__dt__13FxSendFlangerFv = .text:0x80673EEC; // type:function size:0x58 +ClassName__13FxSendFlangerCFv = .text:0x80673F44; // type:function size:0x4 +StaticClassName__13FxSendFlangerFv = .text:0x80673F48; // type:function size:0x4C +SetType__13FxSendFlangerF6Symbol = .text:0x80673F94; // type:function size:0x128 +__ct__12FxSendReverbFv = .text:0x806740BC; // type:function size:0xA8 +__dt__12FxSendReverbFv = .text:0x80674164; // type:function size:0x58 +Save__12FxSendReverbFR9BinStream = .text:0x806741BC; // type:function size:0x4 +Load__12FxSendReverbFR9BinStream = .text:0x806741C0; // type:function size:0xCC +Copy__12FxSendReverbFPCQ23Hmx6ObjectQ33Hmx6Object8CopyType = .text:0x8067428C; // type:function size:0xA8 +Handle__12FxSendReverbFP9DataArrayb = .text:0x80674334; // type:function size:0xC4 +SyncProperty__12FxSendReverbFR8DataNodeP9DataArrayi6PropOp = .text:0x806743F8; // type:function size:0x3AC +ClassName__12FxSendReverbCFv = .text:0x806747A4; // type:function size:0x4 +StaticClassName__12FxSendReverbFv = .text:0x806747A8; // type:function size:0x4C +SetType__12FxSendReverbF6Symbol = .text:0x806747F4; // type:function size:0x128 +__ct__11FxSendDelayFv = .text:0x8067491C; // type:function size:0x8C +__dt__11FxSendDelayFv = .text:0x806749A8; // type:function size:0x58 +Save__11FxSendDelayFR9BinStream = .text:0x80674A00; // type:function size:0x4 +Load__11FxSendDelayFR9BinStream = .text:0x80674A04; // type:function size:0xD8 +Copy__11FxSendDelayFPCQ23Hmx6ObjectQ33Hmx6Object8CopyType = .text:0x80674ADC; // type:function size:0x98 +Handle__11FxSendDelayFP9DataArrayb = .text:0x80674B74; // type:function size:0xC4 +SyncProperty__11FxSendDelayFR8DataNodeP9DataArrayi6PropOp = .text:0x80674C38; // type:function size:0x2E4 +ClassName__11FxSendDelayCFv = .text:0x80674F1C; // type:function size:0x4 +StaticClassName__11FxSendDelayFv = .text:0x80674F20; // type:function size:0x4C +SetType__11FxSendDelayF6Symbol = .text:0x80674F6C; // type:function size:0x128 +__ct__16FxSendDistortionFv = .text:0x80675094; // type:function size:0x48 +__dt__16FxSendDistortionFv = .text:0x806750DC; // type:function size:0x58 +Save__16FxSendDistortionFR9BinStream = .text:0x80675134; // type:function size:0x4 +Load__16FxSendDistortionFR9BinStream = .text:0x80675138; // type:function size:0x84 +Copy__16FxSendDistortionFPCQ23Hmx6ObjectQ33Hmx6Object8CopyType = .text:0x806751BC; // type:function size:0x68 +Handle__16FxSendDistortionFP9DataArrayb = .text:0x80675224; // type:function size:0xC4 +SyncProperty__16FxSendDistortionFR8DataNodeP9DataArrayi6PropOp = .text:0x806752E8; // type:function size:0xF0 +ClassName__16FxSendDistortionCFv = .text:0x806753D8; // type:function size:0x4 +StaticClassName__16FxSendDistortionFv = .text:0x806753DC; // type:function size:0x4C +SetType__16FxSendDistortionF6Symbol = .text:0x80675428; // type:function size:0x128 +__ct__14FxSendCompressFv = .text:0x80675550; // type:function size:0x8C +__dt__14FxSendCompressFv = .text:0x806755DC; // type:function size:0x58 +Save__14FxSendCompressFR9BinStream = .text:0x80675634; // type:function size:0x4 +Load__14FxSendCompressFR9BinStream = .text:0x80675638; // type:function size:0x124 +Copy__14FxSendCompressFPCQ23Hmx6ObjectQ33Hmx6Object8CopyType = .text:0x8067575C; // type:function size:0xA8 +Handle__14FxSendCompressFP9DataArrayb = .text:0x80675804; // type:function size:0xC4 +SyncProperty__14FxSendCompressFR8DataNodeP9DataArrayi6PropOp = .text:0x806758C8; // type:function size:0x410 +ClassName__14FxSendCompressCFv = .text:0x80675CD8; // type:function size:0x4 +StaticClassName__14FxSendCompressFv = .text:0x80675CDC; // type:function size:0x4C +SetType__14FxSendCompressF6Symbol = .text:0x80675D28; // type:function size:0x128 +__ct__8FxSendEQFv = .text:0x80675E50; // type:function size:0xA0 +__dt__8FxSendEQFv = .text:0x80675EF0; // type:function size:0x58 +Save__8FxSendEQFR9BinStream = .text:0x80675F48; // type:function size:0x4 +Load__8FxSendEQFR9BinStream = .text:0x80675F4C; // type:function size:0x108 +Copy__8FxSendEQFPCQ23Hmx6ObjectQ33Hmx6Object8CopyType = .text:0x80676054; // type:function size:0xB8 +Handle__8FxSendEQFP9DataArrayb = .text:0x8067610C; // type:function size:0xC4 +SyncProperty__8FxSendEQFR8DataNodeP9DataArrayi6PropOp = .text:0x806761D0; // type:function size:0x4D8 +ClassName__8FxSendEQCFv = .text:0x806766A8; // type:function size:0x4 +StaticClassName__8FxSendEQFv = .text:0x806766AC; // type:function size:0x4C +SetType__8FxSendEQF6Symbol = .text:0x806766F8; // type:function size:0x128 +__ct__17FxSendMeterEffectFv = .text:0x80676820; // type:function size:0x5C +fn_8067687C = .text:0x8067687C; // type:function size:0x30 +fn_806768AC = .text:0x806768AC; // type:function size:0x30 +fn_806768DC = .text:0x806768DC; // type:function size:0x40 +Save__17FxSendMeterEffectFR9BinStream = .text:0x8067691C; // type:function size:0x4 +Load__17FxSendMeterEffectFR9BinStream = .text:0x80676920; // type:function size:0x78 +Copy__17FxSendMeterEffectFPCQ23Hmx6ObjectQ33Hmx6Object8CopyType = .text:0x80676998; // type:function size:0x4C +fn_806769E4 = .text:0x806769E4; // type:function size:0x78 +Handle__17FxSendMeterEffectFP9DataArrayb = .text:0x80676A5C; // type:function size:0x124 +SyncProperty__17FxSendMeterEffectFR8DataNodeP9DataArrayi6PropOp = .text:0x80676B80; // type:function size:0xF0 +__dt__17FxSendMeterEffectFv = .text:0x80676C70; // type:function size:0x68 +ClassName__17FxSendMeterEffectCFv = .text:0x80676CD8; // type:function size:0x4 +StaticClassName__17FxSendMeterEffectFv = .text:0x80676CDC; // type:function size:0x4C +SetType__17FxSendMeterEffectF6Symbol = .text:0x80676D28; // type:function size:0x128 +__ct__16FxSendPitchShiftFv = .text:0x80676E50; // type:function size:0x48 +Handle__16FxSendPitchShiftFP9DataArrayb = .text:0x80676E98; // type:function size:0xC4 +SyncProperty__16FxSendPitchShiftFR8DataNodeP9DataArrayi6PropOp = .text:0x80676F5C; // type:function size:0xF0 +Save__16FxSendPitchShiftFR9BinStream = .text:0x8067704C; // type:function size:0x4 +Load__16FxSendPitchShiftFR9BinStream = .text:0x80677050; // type:function size:0x78 +Copy__16FxSendPitchShiftFPCQ23Hmx6ObjectQ33Hmx6Object8CopyType = .text:0x806770C8; // type:function size:0x68 +__dt__16FxSendPitchShiftFv = .text:0x80677130; // type:function size:0x58 +ClassName__16FxSendPitchShiftCFv = .text:0x80677188; // type:function size:0x4 +StaticClassName__16FxSendPitchShiftFv = .text:0x8067718C; // type:function size:0x4C +SetType__16FxSendPitchShiftF6Symbol = .text:0x806771D8; // type:function size:0x128 +__ct__13FxSendSynapseFv = .text:0x80677300; // type:function size:0x8C +fn_8067738C = .text:0x8067738C; // type:function size:0x14 +fn_806773A0 = .text:0x806773A0; // type:function size:0x14 +fn_806773B4 = .text:0x806773B4; // type:function size:0x14 +fn_806773C8 = .text:0x806773C8; // type:function size:0x14 +fn_806773DC = .text:0x806773DC; // type:function size:0x14 +Handle__13FxSendSynapseFP9DataArrayb = .text:0x806773F0; // type:function size:0xC4 +SyncProperty__13FxSendSynapseFR8DataNodeP9DataArrayi6PropOp = .text:0x806774B4; // type:function size:0x410 +Save__13FxSendSynapseFR9BinStream = .text:0x806778C4; // type:function size:0x4 +Load__13FxSendSynapseFR9BinStream = .text:0x806778C8; // type:function size:0x108 +Copy__13FxSendSynapseFPCQ23Hmx6ObjectQ33Hmx6Object8CopyType = .text:0x806779D0; // type:function size:0xA8 +__dt__13FxSendSynapseFv = .text:0x80677A78; // type:function size:0x58 +ClassName__13FxSendSynapseCFv = .text:0x80677AD0; // type:function size:0x4 +StaticClassName__13FxSendSynapseFv = .text:0x80677AD4; // type:function size:0x4C +SetType__13FxSendSynapseF6Symbol = .text:0x80677B20; // type:function size:0x128 +__ct__9FxSendWahFv = .text:0x80677C48; // type:function size:0xBC +Save__9FxSendWahFR9BinStream = .text:0x80677D04; // type:function size:0x4 +Load__9FxSendWahFR9BinStream = .text:0x80677D08; // type:function size:0xF4 +Copy__9FxSendWahFPCQ23Hmx6ObjectQ33Hmx6Object8CopyType = .text:0x80677DFC; // type:function size:0xC0 +Handle__9FxSendWahFP9DataArrayb = .text:0x80677EBC; // type:function size:0xC4 +SyncProperty__9FxSendWahFR8DataNodeP9DataArrayi6PropOp = .text:0x80677F80; // type:function size:0x5A0 +__dt__9FxSendWahFv = .text:0x80678520; // type:function size:0x58 +ClassName__9FxSendWahCFv = .text:0x80678578; // type:function size:0x4 +StaticClassName__9FxSendWahFv = .text:0x8067857C; // type:function size:0x4C +SetType__9FxSendWahF6Symbol = .text:0x806785C8; // type:function size:0x128 +__ct__9MetaMusicFPCc = .text:0x806786F0; // type:function size:0xFC +__dt__9MetaMusicFv = .text:0x806787EC; // type:function size:0x1A4 +Load__9MetaMusicFPCcb = .text:0x80678990; // type:function size:0x1F4 +__ct__15MetaMusicLoaderFP4FileRiPUci = .text:0x80678B84; // type:function size:0xA4 +fn_80678C28 = .text:0x80678C28; // type:function size:0x60 +fn_80678C88 = .text:0x80678C88; // type:function size:0x64 +fn_80678CEC = .text:0x80678CEC; // type:function size:0x34 +fn_80678D20 = .text:0x80678D20; // type:function size:0x284 +Start__9MetaMusicFv = .text:0x80678FA4; // type:function size:0x2C8 +fn_8067926C = .text:0x8067926C; // type:function size:0xA0 +fn_8067930C = .text:0x8067930C; // type:function size:0x48 +fn_80679354 = .text:0x80679354; // type:function size:0x3C +fn_80679390 = .text:0x80679390; // type:function size:0x5CC +fn_8067995C = .text:0x8067995C; // type:function size:0x10 +fn_8067996C = .text:0x8067996C; // type:function size:0x8 +Stop__9MetaMusicFv = .text:0x80679974; // type:function size:0xAC +Mute__9MetaMusicFv = .text:0x80679A20; // type:function size:0x18 +Unmute__9MetaMusicFv = .text:0x80679A38; // type:function size:0x18 +fn_80679A50 = .text:0x80679A50; // type:function size:0x14 +fn_80679A64 = .text:0x80679A64; // type:function size:0xAC +fn_80679B10 = .text:0x80679B10; // type:function size:0xCC +fn_80679BDC = .text:0x80679BDC; // type:function size:0x70 +fn_80679C4C = .text:0x80679C4C; // type:function size:0x6C +Handle__9MetaMusicFP9DataArrayb = .text:0x80679CB8; // type:function size:0x184 +fn_80679E3C = .text:0x80679E3C; // type:function size:0x34 +fn_80679E70 = .text:0x80679E70; // type:function size:0x84 +fn_80679EF4 = .text:0x80679EF4; // type:function size:0xC +fn_80679F00 = .text:0x80679F00; // type:function size:0xC +fn_80679F0C = .text:0x80679F0C; // type:function size:0x118 +fn_8067A024 = .text:0x8067A024; // type:function size:0x8 +fn_8067A02C = .text:0x8067A02C; // type:function size:0xF0 +fn_8067A11C = .text:0x8067A11C; // type:function size:0x58 +fn_8067A174 = .text:0x8067A174; // type:function size:0x80 +fn_8067A1F4 = .text:0x8067A1F4; // type:function size:0x80 +fn_8067A274 = .text:0x8067A274; // type:function size:0x58 +fn_8067A2CC = .text:0x8067A2CC; // type:function size:0x54 +fn_8067A320 = .text:0x8067A320; // type:function size:0x5C +fn_8067A37C = .text:0x8067A37C; // type:function size:0x6C +fn_8067A3E8 = .text:0x8067A3E8; // type:function size:0x28 +fn_8067A410 = .text:0x8067A410; // type:function size:0x8 +fn_8067A418 = .text:0x8067A418; // type:function size:0x3C +fn_8067A454 = .text:0x8067A454; // type:function size:0x58 +fn_8067A4AC = .text:0x8067A4AC; // type:function size:0x80 +fn_8067A52C = .text:0x8067A52C; // type:function size:0x80 +fn_8067A5AC = .text:0x8067A5AC; // type:function size:0x58 +fn_8067A604 = .text:0x8067A604; // type:function size:0x54 +fn_8067A658 = .text:0x8067A658; // type:function size:0x5C +fn_8067A6B4 = .text:0x8067A6B4; // type:function size:0x6C +fn_8067A720 = .text:0x8067A720; // type:function size:0x28 +fn_8067A748 = .text:0x8067A748; // type:function size:0x8 +fn_8067A750 = .text:0x8067A750; // type:function size:0x3C +fn_8067A78C = .text:0x8067A78C; // type:function size:0x4 +fn_8067A790 = .text:0x8067A790; // type:function size:0x88 +fn_8067A818 = .text:0x8067A818; // type:function size:0x2C +fn_8067A844 = .text:0x8067A844; // type:function size:0x4 +fn_8067A848 = .text:0x8067A848; // type:function size:0x88 +fn_8067A8D0 = .text:0x8067A8D0; // type:function size:0x2C +fn_8067A8FC = .text:0x8067A8FC; // type:function size:0x10 +fn_8067A90C = .text:0x8067A90C; // type:function size:0x4C +fn_8067A958 = .text:0x8067A958; // type:function size:0x30 +fn_8067A988 = .text:0x8067A988; // type:function size:0x30 +fn_8067A9B8 = .text:0x8067A9B8; // type:function size:0x30 +fn_8067A9E8 = .text:0x8067A9E8; // type:function size:0x40 +fn_8067AA28 = .text:0x8067AA28; // type:function size:0x30 +fn_8067AA58 = .text:0x8067AA58; // type:function size:0x30 +fn_8067AA88 = .text:0x8067AA88; // type:function size:0x40 +fn_8067AAC8 = .text:0x8067AAC8; // type:function size:0x68 +fn_8067AB30 = .text:0x8067AB30; // type:function size:0x8 +fn_8067AB38 = .text:0x8067AB38; // type:function size:0x48 +fn_8067AB80 = .text:0x8067AB80; // type:function size:0x98 +fn_8067AC18 = .text:0x8067AC18; // type:function size:0x70 +fn_8067AC88 = .text:0x8067AC88; // type:function size:0x3C +fn_8067ACC4 = .text:0x8067ACC4; // type:function size:0x68 +fn_8067AD2C = .text:0x8067AD2C; // type:function size:0x68 +fn_8067AD94 = .text:0x8067AD94; // type:function size:0x88 +fn_8067AE1C = .text:0x8067AE1C; // type:function size:0x4 +fn_8067AE20 = .text:0x8067AE20; // type:function size:0x3C +fn_8067AE5C = .text:0x8067AE5C; // type:function size:0x40 +fn_8067AE9C = .text:0x8067AE9C; // type:function size:0x8C +fn_8067AF28 = .text:0x8067AF28; // type:function size:0x8 +fn_8067AF30 = .text:0x8067AF30; // type:function size:0x2C +fn_8067AF5C = .text:0x8067AF5C; // type:function size:0x58 +fn_8067AFB4 = .text:0x8067AFB4; // type:function size:0x28 +fn_8067AFDC = .text:0x8067AFDC; // type:function size:0x68 +fn_8067B044 = .text:0x8067B044; // type:function size:0x64 +fn_8067B0A8 = .text:0x8067B0A8; // type:function size:0x64 +fn_8067B10C = .text:0x8067B10C; // type:function size:0x54 +fn_8067B160 = .text:0x8067B160; // type:function size:0x68 +fn_8067B1C8 = .text:0x8067B1C8; // type:function size:0x78 +fn_8067B240 = .text:0x8067B240; // type:function size:0x148 +fn_8067B388 = .text:0x8067B388; // type:function size:0x13C +fn_8067B4C4 = .text:0x8067B4C4; // type:function size:0x114 +fn_8067B5D8 = .text:0x8067B5D8; // type:function size:0x60 +fn_8067B638 = .text:0x8067B638; // type:function size:0x5C +fn_8067B694 = .text:0x8067B694; // type:function size:0x54 +fn_8067B6E8 = .text:0x8067B6E8; // type:function size:0x5C +fn_8067B744 = .text:0x8067B744; // type:function size:0x5C +fn_8067B7A0 = .text:0x8067B7A0; // type:function size:0x114 +fn_8067B8B4 = .text:0x8067B8B4; // type:function size:0x60 +fn_8067B914 = .text:0x8067B914; // type:function size:0x5C +fn_8067B970 = .text:0x8067B970; // type:function size:0x54 +fn_8067B9C4 = .text:0x8067B9C4; // type:function size:0x5C +fn_8067BA20 = .text:0x8067BA20; // type:function size:0x5C +fn_8067BA7C = .text:0x8067BA7C; // type:function size:0x14 +fn_8067BA90 = .text:0x8067BA90; // type:function size:0x40 +fn_8067BAD0 = .text:0x8067BAD0; // type:function size:0x80 +fn_8067BB50 = .text:0x8067BB50; // type:function size:0x68 +fn_8067BBB8 = .text:0x8067BBB8; // type:function size:0x6C +fn_8067BC24 = .text:0x8067BC24; // type:function size:0x4 +fn_8067BC28 = .text:0x8067BC28; // type:function size:0x8 +fn_8067BC30 = .text:0x8067BC30; // type:function size:0x50 +fn_8067BC80 = .text:0x8067BC80; // type:function size:0x44 +fn_8067BCC4 = .text:0x8067BCC4; // type:function size:0x60 +fn_8067BD24 = .text:0x8067BD24; // type:function size:0x1A0 +fn_8067BEC4 = .text:0x8067BEC4; // type:function size:0x8 +fn_8067BECC = .text:0x8067BECC; // type:function size:0x58 +fn_8067BF24 = .text:0x8067BF24; // type:function size:0xFC +fn_8067C020 = .text:0x8067C020; // type:function size:0x68 +fn_8067C088 = .text:0x8067C088; // type:function size:0xA8 +fn_8067C130 = .text:0x8067C130; // type:function size:0x94 +fn_8067C1C4 = .text:0x8067C1C4; // type:function size:0x10 +fn_8067C1D4 = .text:0x8067C1D4; // type:function size:0x50 +fn_8067C224 = .text:0x8067C224; // type:function size:0x10 +fn_8067C234 = .text:0x8067C234; // type:function size:0x14 +fn_8067C248 = .text:0x8067C248; // type:function size:0x14 +fn_8067C25C = .text:0x8067C25C; // type:function size:0x8 +fn_8067C264 = .text:0x8067C264; // type:function size:0x8 +fn_8067C26C = .text:0x8067C26C; // type:function size:0x8 +fn_8067C274 = .text:0x8067C274; // type:function size:0x8 +fn_8067C27C = .text:0x8067C27C; // type:function size:0x34 +fn_8067C2B0 = .text:0x8067C2B0; // type:function size:0x14 +fn_8067C2C4 = .text:0x8067C2C4; // type:function size:0x44 +fn_8067C308 = .text:0x8067C308; // type:function size:0x8 +__ct__14MidiInstrumentFv = .text:0x8067C310; // type:function size:0xCC +fn_8067C3DC = .text:0x8067C3DC; // type:function size:0x6C +fn_8067C448 = .text:0x8067C448; // type:function size:0x40 +fn_8067C488 = .text:0x8067C488; // type:function size:0x44 +fn_8067C4CC = .text:0x8067C4CC; // type:function size:0x54 +fn_8067C520 = .text:0x8067C520; // type:function size:0x80 +fn_8067C5A0 = .text:0x8067C5A0; // type:function size:0x58 +fn_8067C5F8 = .text:0x8067C5F8; // type:function size:0x58 +fn_8067C650 = .text:0x8067C650; // type:function size:0x80 +fn_8067C6D0 = .text:0x8067C6D0; // type:function size:0x80 +fn_8067C750 = .text:0x8067C750; // type:function size:0x58 +fn_8067C7A8 = .text:0x8067C7A8; // type:function size:0x10 +fn_8067C7B8 = .text:0x8067C7B8; // type:function size:0x54 +fn_8067C80C = .text:0x8067C80C; // type:function size:0x5C +fn_8067C868 = .text:0x8067C868; // type:function size:0x6C +fn_8067C8D4 = .text:0x8067C8D4; // type:function size:0x28 +fn_8067C8FC = .text:0x8067C8FC; // type:function size:0x10 +fn_8067C90C = .text:0x8067C90C; // type:function size:0x8 +fn_8067C914 = .text:0x8067C914; // type:function size:0x58 +fn_8067C96C = .text:0x8067C96C; // type:function size:0x80 +fn_8067C9EC = .text:0x8067C9EC; // type:function size:0xC +fn_8067C9F8 = .text:0x8067C9F8; // type:function size:0x8 +fn_8067CA00 = .text:0x8067CA00; // type:function size:0x3C +fn_8067CA3C = .text:0x8067CA3C; // type:function size:0x14 +fn_8067CA50 = .text:0x8067CA50; // type:function size:0x68 +fn_8067CAB8 = .text:0x8067CAB8; // type:function size:0x68 +fn_8067CB20 = .text:0x8067CB20; // type:function size:0x50 +fn_8067CB70 = .text:0x8067CB70; // type:function size:0x30 +fn_8067CBA0 = .text:0x8067CBA0; // type:function size:0x30 +fn_8067CBD0 = .text:0x8067CBD0; // type:function size:0x40 +fn_8067CC10 = .text:0x8067CC10; // type:function size:0x160 +fn_8067CD70 = .text:0x8067CD70; // type:function size:0x2C +fn_8067CD9C = .text:0x8067CD9C; // type:function size:0x44 +fn_8067CDE0 = .text:0x8067CDE0; // type:function size:0x30 +Handle__14MidiInstrumentFP9DataArrayb = .text:0x8067CE10; // type:function size:0xF4 +fn_8067CF04 = .text:0x8067CF04; // type:function size:0x3C +fn_8067CF40 = .text:0x8067CF40; // type:function size:0x5C +fn_8067CF9C = .text:0x8067CF9C; // type:function size:0x4 +fn_8067CFA0 = .text:0x8067CFA0; // type:function size:0x90 +fn_8067D030 = .text:0x8067D030; // type:function size:0x4 +fn_8067D034 = .text:0x8067D034; // type:function size:0x40 +fn_8067D074 = .text:0x8067D074; // type:function size:0x8C +fn_8067D100 = .text:0x8067D100; // type:function size:0x8 +fn_8067D108 = .text:0x8067D108; // type:function size:0x2C +fn_8067D134 = .text:0x8067D134; // type:function size:0x58 +fn_8067D18C = .text:0x8067D18C; // type:function size:0x28 +fn_8067D1B4 = .text:0x8067D1B4; // type:function size:0x68 +fn_8067D21C = .text:0x8067D21C; // type:function size:0xA0 +fn_8067D2BC = .text:0x8067D2BC; // type:function size:0x8 +fn_8067D2C4 = .text:0x8067D2C4; // type:function size:0x280 +fn_8067D544 = .text:0x8067D544; // type:function size:0xC0 +SyncProperty__14MidiInstrumentFR8DataNodeP9DataArrayi6PropOp = .text:0x8067D604; // type:function size:0x290 +fn_8067D894 = .text:0x8067D894; // type:function size:0x170 +fn_8067DA04 = .text:0x8067DA04; // type:function size:0x2C +fn_8067DA30 = .text:0x8067DA30; // type:function size:0x84 +fn_8067DAB4 = .text:0x8067DAB4; // type:function size:0x2C +Save__14MidiInstrumentFR9BinStream = .text:0x8067DAE0; // type:function size:0x4 +Load__14MidiInstrumentFR9BinStream = .text:0x8067DAE4; // type:function size:0xB4 +fn_8067DB98 = .text:0x8067DB98; // type:function size:0x74 +fn_8067DC0C = .text:0x8067DC0C; // type:function size:0x40 +fn_8067DC4C = .text:0x8067DC4C; // type:function size:0x104 +Copy__14MidiInstrumentFPCQ23Hmx6ObjectQ33Hmx6Object8CopyType = .text:0x8067DD50; // type:function size:0xA0 +fn_8067DDF0 = .text:0x8067DDF0; // type:function size:0x8 +fn_8067DDF8 = .text:0x8067DDF8; // type:function size:0x5C +fn_8067DE54 = .text:0x8067DE54; // type:function size:0x30 +fn_8067DE84 = .text:0x8067DE84; // type:function size:0x110 +fn_8067DF94 = .text:0x8067DF94; // type:function size:0xA8 +fn_8067E03C = .text:0x8067E03C; // type:function size:0x8 +fn_8067E044 = .text:0x8067E044; // type:function size:0x80 +fn_8067E0C4 = .text:0x8067E0C4; // type:function size:0x80 +fn_8067E144 = .text:0x8067E144; // type:function size:0xC0 +fn_8067E204 = .text:0x8067E204; // type:function size:0x4C +fn_8067E250 = .text:0x8067E250; // type:function size:0x78 +fn_8067E2C8 = .text:0x8067E2C8; // type:function size:0x10 +fn_8067E2D8 = .text:0x8067E2D8; // type:function size:0x8 +fn_8067E2E0 = .text:0x8067E2E0; // type:function size:0x78 +fn_8067E358 = .text:0x8067E358; // type:function size:0x40 +fn_8067E398 = .text:0x8067E398; // type:function size:0x98 +fn_8067E430 = .text:0x8067E430; // type:function size:0x9C +fn_8067E4CC = .text:0x8067E4CC; // type:function size:0x88 +fn_8067E554 = .text:0x8067E554; // type:function size:0x8 +__dt__14MidiInstrumentFv = .text:0x8067E55C; // type:function size:0x8C +fn_8067E5E8 = .text:0x8067E5E8; // type:function size:0x68 +fn_8067E650 = .text:0x8067E650; // type:function size:0x2C +fn_8067E67C = .text:0x8067E67C; // type:function size:0x58 +fn_8067E6D4 = .text:0x8067E6D4; // type:function size:0x160 +fn_8067E834 = .text:0x8067E834; // type:function size:0x5C +fn_8067E890 = .text:0x8067E890; // type:function size:0x10 +fn_8067E8A0 = .text:0x8067E8A0; // type:function size:0x88 +fn_8067E928 = .text:0x8067E928; // type:function size:0x8C +fn_8067E9B4 = .text:0x8067E9B4; // type:function size:0x68 +fn_8067EA1C = .text:0x8067EA1C; // type:function size:0x28 +fn_8067EA44 = .text:0x8067EA44; // type:function size:0x5C +fn_8067EAA0 = .text:0x8067EAA0; // type:function size:0x60 +fn_8067EB00 = .text:0x8067EB00; // type:function size:0xC +fn_8067EB0C = .text:0x8067EB0C; // type:function size:0x60 +fn_8067EB6C = .text:0x8067EB6C; // type:function size:0x60 +fn_8067EBCC = .text:0x8067EBCC; // type:function size:0x100 +ClassName__14MidiInstrumentCFv = .text:0x8067ECCC; // type:function size:0x4 +StaticClassName__14MidiInstrumentFv = .text:0x8067ECD0; // type:function size:0x4C +SetType__14MidiInstrumentF6Symbol = .text:0x8067ED1C; // type:function size:0x128 +fn_8067EE44 = .text:0x8067EE44; // type:function size:0x198 +fn_8067EFDC = .text:0x8067EFDC; // type:function size:0x5C +fn_8067F038 = .text:0x8067F038; // type:function size:0x54 +fn_8067F08C = .text:0x8067F08C; // type:function size:0x28 +fn_8067F0B4 = .text:0x8067F0B4; // type:function size:0x68 +fn_8067F11C = .text:0x8067F11C; // type:function size:0x38 +fn_8067F154 = .text:0x8067F154; // type:function size:0x114 +fn_8067F268 = .text:0x8067F268; // type:function size:0x5C +fn_8067F2C4 = .text:0x8067F2C4; // type:function size:0x5C +fn_8067F320 = .text:0x8067F320; // type:function size:0x54 +fn_8067F374 = .text:0x8067F374; // type:function size:0x80 +fn_8067F3F4 = .text:0x8067F3F4; // type:function size:0x44 +fn_8067F438 = .text:0x8067F438; // type:function size:0xF0 +fn_8067F528 = .text:0x8067F528; // type:function size:0xC +fn_8067F534 = .text:0x8067F534; // type:function size:0x58 +fn_8067F58C = .text:0x8067F58C; // type:function size:0x14 +fn_8067F5A0 = .text:0x8067F5A0; // type:function size:0x6C +fn_8067F60C = .text:0x8067F60C; // type:function size:0x58 +fn_8067F664 = .text:0x8067F664; // type:function size:0x58 +fn_8067F6BC = .text:0x8067F6BC; // type:function size:0x60 +fn_8067F71C = .text:0x8067F71C; // type:function size:0x58 +fn_8067F774 = .text:0x8067F774; // type:function size:0x30 +fn_8067F7A4 = .text:0x8067F7A4; // type:function size:0x30 +fn_8067F7D4 = .text:0x8067F7D4; // type:function size:0x60 +fn_8067F834 = .text:0x8067F834; // type:function size:0x68 +fn_8067F89C = .text:0x8067F89C; // type:function size:0x4 +fn_8067F8A0 = .text:0x8067F8A0; // type:function size:0x64 +fn_8067F904 = .text:0x8067F904; // type:function size:0x50 +fn_8067F954 = .text:0x8067F954; // type:function size:0x10 +fn_8067F964 = .text:0x8067F964; // type:function size:0x60 +fn_8067F9C4 = .text:0x8067F9C4; // type:function size:0x6C +fn_8067FA30 = .text:0x8067FA30; // type:function size:0x2C +fn_8067FA5C = .text:0x8067FA5C; // type:function size:0x8 +fn_8067FA64 = .text:0x8067FA64; // type:function size:0x8 +fn_8067FA6C = .text:0x8067FA6C; // type:function size:0x68 +fn_8067FAD4 = .text:0x8067FAD4; // type:function size:0x64 +fn_8067FB38 = .text:0x8067FB38; // type:function size:0x58 +fn_8067FB90 = .text:0x8067FB90; // type:function size:0x80 +fn_8067FC10 = .text:0x8067FC10; // type:function size:0x80 +fn_8067FC90 = .text:0x8067FC90; // type:function size:0x58 +fn_8067FCE8 = .text:0x8067FCE8; // type:function size:0x54 +fn_8067FD3C = .text:0x8067FD3C; // type:function size:0x5C +fn_8067FD98 = .text:0x8067FD98; // type:function size:0x6C +fn_8067FE04 = .text:0x8067FE04; // type:function size:0x28 +fn_8067FE2C = .text:0x8067FE2C; // type:function size:0x8 +fn_8067FE34 = .text:0x8067FE34; // type:function size:0x8 +fn_8067FE3C = .text:0x8067FE3C; // type:function size:0x3C +fn_8067FE78 = .text:0x8067FE78; // type:function size:0x5C +fn_8067FED4 = .text:0x8067FED4; // type:function size:0x4 +fn_8067FED8 = .text:0x8067FED8; // type:function size:0x90 +fn_8067FF68 = .text:0x8067FF68; // type:function size:0x4 +fn_8067FF6C = .text:0x8067FF6C; // type:function size:0x40 +fn_8067FFAC = .text:0x8067FFAC; // type:function size:0x8C +fn_80680038 = .text:0x80680038; // type:function size:0x8 +fn_80680040 = .text:0x80680040; // type:function size:0x2C +fn_8068006C = .text:0x8068006C; // type:function size:0x58 +fn_806800C4 = .text:0x806800C4; // type:function size:0x28 +fn_806800EC = .text:0x806800EC; // type:function size:0x68 +fn_80680154 = .text:0x80680154; // type:function size:0x60 +fn_806801B4 = .text:0x806801B4; // type:function size:0x30 +fn_806801E4 = .text:0x806801E4; // type:function size:0x30 +fn_80680214 = .text:0x80680214; // type:function size:0x30 +fn_80680244 = .text:0x80680244; // type:function size:0x40 +fn_80680284 = .text:0x80680284; // type:function size:0x68 +fn_806802EC = .text:0x806802EC; // type:function size:0x2C +fn_80680318 = .text:0x80680318; // type:function size:0x194 +fn_806804AC = .text:0x806804AC; // type:function size:0x60 +fn_8068050C = .text:0x8068050C; // type:function size:0xA0 +fn_806805AC = .text:0x806805AC; // type:function size:0x6C +fn_80680618 = .text:0x80680618; // type:function size:0x74 +fn_8068068C = .text:0x8068068C; // type:function size:0x60 +fn_806806EC = .text:0x806806EC; // type:function size:0x90 +fn_8068077C = .text:0x8068077C; // type:function size:0x8C +fn_80680808 = .text:0x80680808; // type:function size:0x60 +fn_80680868 = .text:0x80680868; // type:function size:0x40 +fn_806808A8 = .text:0x806808A8; // type:function size:0x34 +fn_806808DC = .text:0x806808DC; // type:function size:0x2C +fn_80680908 = .text:0x80680908; // type:function size:0x30 +fn_80680938 = .text:0x80680938; // type:function size:0x198 +fn_80680AD0 = .text:0x80680AD0; // type:function size:0x5C +fn_80680B2C = .text:0x80680B2C; // type:function size:0x10 +fn_80680B3C = .text:0x80680B3C; // type:function size:0x54 +fn_80680B90 = .text:0x80680B90; // type:function size:0x28 +fn_80680BB8 = .text:0x80680BB8; // type:function size:0x68 +fn_80680C20 = .text:0x80680C20; // type:function size:0x5C +fn_80680C7C = .text:0x80680C7C; // type:function size:0x60 +fn_80680CDC = .text:0x80680CDC; // type:function size:0x30 +fn_80680D0C = .text:0x80680D0C; // type:function size:0x90 +fn_80680D9C = .text:0x80680D9C; // type:function size:0x114 +fn_80680EB0 = .text:0x80680EB0; // type:function size:0x5C +fn_80680F0C = .text:0x80680F0C; // type:function size:0x5C +fn_80680F68 = .text:0x80680F68; // type:function size:0x54 +fn_80680FBC = .text:0x80680FBC; // type:function size:0xC +__ct__8MoggClipFv = .text:0x80680FC8; // type:function size:0xE8 +fn_806810B0 = .text:0x806810B0; // type:function size:0x58 +fn_80681108 = .text:0x80681108; // type:function size:0x80 +fn_80681188 = .text:0x80681188; // type:function size:0x80 +fn_80681208 = .text:0x80681208; // type:function size:0x58 +fn_80681260 = .text:0x80681260; // type:function size:0x54 +fn_806812B4 = .text:0x806812B4; // type:function size:0x5C +fn_80681310 = .text:0x80681310; // type:function size:0x6C +fn_8068137C = .text:0x8068137C; // type:function size:0x28 +fn_806813A4 = .text:0x806813A4; // type:function size:0x8 +fn_806813AC = .text:0x806813AC; // type:function size:0x3C +fn_806813E8 = .text:0x806813E8; // type:function size:0x30 +fn_80681418 = .text:0x80681418; // type:function size:0x30 +fn_80681448 = .text:0x80681448; // type:function size:0x40 +__dt__8MoggClipFv = .text:0x80681488; // type:function size:0x104 +fn_8068158C = .text:0x8068158C; // type:function size:0x5C +fn_806815E8 = .text:0x806815E8; // type:function size:0x168 +Save__8MoggClipFR9BinStream = .text:0x80681750; // type:function size:0x4 +Copy__8MoggClipFPCQ23Hmx6ObjectQ33Hmx6Object8CopyType = .text:0x80681754; // type:function size:0x90 +Load__8MoggClipFR9BinStream = .text:0x806817E4; // type:function size:0x70 +PreLoad__8MoggClipFR9BinStream = .text:0x80681854; // type:function size:0xB4 +PostLoad__8MoggClipFR9BinStream = .text:0x80681908; // type:function size:0x4 +Play__8MoggClipFv = .text:0x8068190C; // type:function size:0xF0 +fn_806819FC = .text:0x806819FC; // type:function size:0x38 +Stop__8MoggClipFv = .text:0x80681A34; // type:function size:0x40 +fn_80681A74 = .text:0x80681A74; // type:function size:0x8 +fn_80681A7C = .text:0x80681A7C; // type:function size:0x3C +fn_80681AB8 = .text:0x80681AB8; // type:function size:0x28 +fn_80681AE0 = .text:0x80681AE0; // type:function size:0x28 +fn_80681B08 = .text:0x80681B08; // type:function size:0x78 +fn_80681B80 = .text:0x80681B80; // type:function size:0x8 +fn_80681B88 = .text:0x80681B88; // type:function size:0x8 +SetPan__8MoggClipFif = .text:0x80681B90; // type:function size:0xB4 +fn_80681C44 = .text:0x80681C44; // type:function size:0x4 +fn_80681C48 = .text:0x80681C48; // type:function size:0x88 +fn_80681CD0 = .text:0x80681CD0; // type:function size:0x2C +fn_80681CFC = .text:0x80681CFC; // type:function size:0x10 +fn_80681D0C = .text:0x80681D0C; // type:function size:0x118 +EnsureLoaded__8MoggClipFv = .text:0x80681E24; // type:function size:0xC8 +fn_80681EEC = .text:0x80681EEC; // type:function size:0x70 +fn_80681F5C = .text:0x80681F5C; // type:function size:0x74 +KillStream__8MoggClipFv = .text:0x80681FD0; // type:function size:0x5C +UnloadData__8MoggClipFv = .text:0x8068202C; // type:function size:0x48 +fn_80682074 = .text:0x80682074; // type:function size:0x98 +SyncProperty__8MoggClipFR8DataNodeP9DataArrayi6PropOp = .text:0x8068210C; // type:function size:0x2D0 +Handle__8MoggClipFP9DataArrayb = .text:0x806823DC; // type:function size:0x180 +fn_8068255C = .text:0x8068255C; // type:function size:0x114 +fn_80682670 = .text:0x80682670; // type:function size:0x60 +fn_806826D0 = .text:0x806826D0; // type:function size:0x5C +fn_8068272C = .text:0x8068272C; // type:function size:0x54 +fn_80682780 = .text:0x80682780; // type:function size:0x5C +fn_806827DC = .text:0x806827DC; // type:function size:0x5C +ClassName__8MoggClipCFv = .text:0x80682838; // type:function size:0x4 +StaticClassName__8MoggClipFv = .text:0x8068283C; // type:function size:0x4C +SetType__8MoggClipF6Symbol = .text:0x80682888; // type:function size:0x128 +fn_806829B0 = .text:0x806829B0; // type:function size:0x8 +fn_806829B8 = .text:0x806829B8; // type:function size:0x8 +fn_806829C0 = .text:0x806829C0; // type:function size:0x8 +fn_806829C8 = .text:0x806829C8; // type:function size:0x74 +fn_80682A3C = .text:0x80682A3C; // type:function size:0x80 +fn_80682ABC = .text:0x80682ABC; // type:function size:0x68 +fn_80682B24 = .text:0x80682B24; // type:function size:0x38 +fn_80682B5C = .text:0x80682B5C; // type:function size:0x80 +fn_80682BDC = .text:0x80682BDC; // type:function size:0x40 +fn_80682C1C = .text:0x80682C1C; // type:function size:0x104 +fn_80682D20 = .text:0x80682D20; // type:function size:0x68 +fn_80682D88 = .text:0x80682D88; // type:function size:0x60 +__ct__6OggMapFv = .text:0x80682DE8; // type:function size:0x7C +__dt__6OggMapFv = .text:0x80682E64; // type:function size:0x70 +Read__6OggMapFR9BinStream = .text:0x80682ED4; // type:function size:0x58 +GetSeekPos__6OggMapFiRiRi = .text:0x80682F2C; // type:function size:0x9C +__ct__13SynthPollableFv = .text:0x80682FC8; // type:function size:0x5C +fn_80683024 = .text:0x80683024; // type:function size:0x3C +fn_80683060 = .text:0x80683060; // type:function size:0x60 +fn_806830C0 = .text:0x806830C0; // type:function size:0x8C +fn_8068314C = .text:0x8068314C; // type:function size:0x3C +fn_80683188 = .text:0x80683188; // type:function size:0xA8 +fn_80683230 = .text:0x80683230; // type:function size:0x5C +fn_8068328C = .text:0x8068328C; // type:function size:0x90 +fn_8068331C = .text:0x8068331C; // type:function size:0x34 +fn_80683350 = .text:0x80683350; // type:function size:0x60 +fn_806833B0 = .text:0x806833B0; // type:function size:0x14 +fn_806833C4 = .text:0x806833C4; // type:function size:0x54 +fn_80683418 = .text:0x80683418; // type:function size:0x58 +fn_80683470 = .text:0x80683470; // type:function size:0x80 +fn_806834F0 = .text:0x806834F0; // type:function size:0x80 +fn_80683570 = .text:0x80683570; // type:function size:0x58 +fn_806835C8 = .text:0x806835C8; // type:function size:0x54 +fn_8068361C = .text:0x8068361C; // type:function size:0x5C +fn_80683678 = .text:0x80683678; // type:function size:0x6C +fn_806836E4 = .text:0x806836E4; // type:function size:0x28 +fn_8068370C = .text:0x8068370C; // type:function size:0x8 +fn_80683714 = .text:0x80683714; // type:function size:0x8 +fn_8068371C = .text:0x8068371C; // type:function size:0x3C +fn_80683758 = .text:0x80683758; // type:function size:0x30 +fn_80683788 = .text:0x80683788; // type:function size:0x30 +fn_806837B8 = .text:0x806837B8; // type:function size:0x40 +fn_806837F8 = .text:0x806837F8; // type:function size:0x70 +fn_80683868 = .text:0x80683868; // type:function size:0x208 +fn_80683A70 = .text:0x80683A70; // type:function size:0x8C +fn_80683AFC = .text:0x80683AFC; // type:function size:0x4 +fn_80683B00 = .text:0x80683B00; // type:function size:0x90 +fn_80683B90 = .text:0x80683B90; // type:function size:0x4 +fn_80683B94 = .text:0x80683B94; // type:function size:0x40 +fn_80683BD4 = .text:0x80683BD4; // type:function size:0x8C +fn_80683C60 = .text:0x80683C60; // type:function size:0x8 +fn_80683C68 = .text:0x80683C68; // type:function size:0x2C +fn_80683C94 = .text:0x80683C94; // type:function size:0x58 +fn_80683CEC = .text:0x80683CEC; // type:function size:0x28 +fn_80683D14 = .text:0x80683D14; // type:function size:0x68 +fn_80683D7C = .text:0x80683D7C; // type:function size:0x44 +fn_80683DC0 = .text:0x80683DC0; // type:function size:0x3C +fn_80683DFC = .text:0x80683DFC; // type:function size:0x2C +fn_80683E28 = .text:0x80683E28; // type:function size:0x10 +fn_80683E38 = .text:0x80683E38; // type:function size:0x5C +fn_80683E94 = .text:0x80683E94; // type:function size:0x4 +fn_80683E98 = .text:0x80683E98; // type:function size:0x3C +fn_80683ED4 = .text:0x80683ED4; // type:function size:0x104 +fn_80683FD8 = .text:0x80683FD8; // type:function size:0x8 +fn_80683FE0 = .text:0x80683FE0; // type:function size:0x8 +fn_80683FE8 = .text:0x80683FE8; // type:function size:0x38 +fn_80684020 = .text:0x80684020; // type:function size:0x4C +fn_8068406C = .text:0x8068406C; // type:function size:0x68 +fn_806840D4 = .text:0x806840D4; // type:function size:0x114 +fn_806841E8 = .text:0x806841E8; // type:function size:0x60 +fn_80684248 = .text:0x80684248; // type:function size:0x5C +fn_806842A4 = .text:0x806842A4; // type:function size:0x54 +fn_806842F8 = .text:0x806842F8; // type:function size:0x5C +fn_80684354 = .text:0x80684354; // type:function size:0x5C +fn_806843B0 = .text:0x806843B0; // type:function size:0x19C +fn_8068454C = .text:0x8068454C; // type:function size:0x54 +fn_806845A0 = .text:0x806845A0; // type:function size:0x28 +fn_806845C8 = .text:0x806845C8; // type:function size:0x68 +fn_80684630 = .text:0x80684630; // type:function size:0x74 +fn_806846A4 = .text:0x806846A4; // type:function size:0x68 +fn_8068470C = .text:0x8068470C; // type:function size:0x40 +fn_8068474C = .text:0x8068474C; // type:function size:0x54 +fn_806847A0 = .text:0x806847A0; // type:function size:0x38 +fn_806847D8 = .text:0x806847D8; // type:function size:0x38 +fn_80684810 = .text:0x80684810; // type:function size:0x1C +fn_8068482C = .text:0x8068482C; // type:function size:0x54 +fn_80684880 = .text:0x80684880; // type:function size:0x18 +fn_80684898 = .text:0x80684898; // type:function size:0x18 +fn_806848B0 = .text:0x806848B0; // type:function size:0x20 +fn_806848D0 = .text:0x806848D0; // type:function size:0x20 +fn_806848F0 = .text:0x806848F0; // type:function size:0x20 +fn_80684910 = .text:0x80684910; // type:function size:0x20 +fn_80684930 = .text:0x80684930; // type:function size:0x74 +fn_806849A4 = .text:0x806849A4; // type:function size:0x68 +fn_80684A0C = .text:0x80684A0C; // type:function size:0x38 +fn_80684A44 = .text:0x80684A44; // type:function size:0xC4 +fn_80684B08 = .text:0x80684B08; // type:function size:0x40 +fn_80684B48 = .text:0x80684B48; // type:function size:0x104 +fn_80684C4C = .text:0x80684C4C; // type:function size:0x40 +fn_80684C8C = .text:0x80684C8C; // type:function size:0x48 +__ct__8SequenceFv = .text:0x80684CD4; // type:function size:0x90 +__dt__31ObjPtrList<7SeqInst,9ObjectDir>Fv = .text:0x80684D64; // type:function size:0x6C +fn_80684DD0 = .text:0x80684DD0; // type:function size:0x40 +fn_80684E10 = .text:0x80684E10; // type:function size:0x44 +fn_80684E54 = .text:0x80684E54; // type:function size:0x54 +fn_80684EA8 = .text:0x80684EA8; // type:function size:0x68 +fn_80684F10 = .text:0x80684F10; // type:function size:0x64 +fn_80684F74 = .text:0x80684F74; // type:function size:0x4C +fn_80684FC0 = .text:0x80684FC0; // type:function size:0x78 +fn_80685038 = .text:0x80685038; // type:function size:0x2C +Play__8SequenceFfff = .text:0x80685064; // type:function size:0x94 +Stop__8SequenceFb = .text:0x806850F8; // type:function size:0xA8 +fn_806851A0 = .text:0x806851A0; // type:function size:0x84 +fn_80685224 = .text:0x80685224; // type:function size:0x3C +fn_80685260 = .text:0x80685260; // type:function size:0x30 +__dt__8SequenceFv = .text:0x80685290; // type:function size:0xCC +fn_8068535C = .text:0x8068535C; // type:function size:0x168 +fn_806854C4 = .text:0x806854C4; // type:function size:0x44 +fn_80685508 = .text:0x80685508; // type:function size:0x8 +fn_80685510 = .text:0x80685510; // type:function size:0x8 +fn_80685518 = .text:0x80685518; // type:function size:0x8 +fn_80685520 = .text:0x80685520; // type:function size:0x8 +fn_80685528 = .text:0x80685528; // type:function size:0x8 +fn_80685530 = .text:0x80685530; // type:function size:0x8 +Save__8SequenceFR9BinStream = .text:0x80685538; // type:function size:0x4 +Load__8SequenceFR9BinStream = .text:0x8068553C; // type:function size:0xC0 +Copy__8SequenceFPCQ23Hmx6ObjectQ33Hmx6Object8CopyType = .text:0x806855FC; // type:function size:0xA4 +OnPlay__8SequenceFP9DataArray = .text:0x806856A0; // type:function size:0xCC +fn_8068576C = .text:0x8068576C; // type:function size:0x10C +Handle__8SequenceFP9DataArrayb = .text:0x80685878; // type:function size:0x1C4 +fn_80685A3C = .text:0x80685A3C; // type:function size:0x34 +fn_80685A70 = .text:0x80685A70; // type:function size:0x3C +SyncProperty__8SequenceFR8DataNodeP9DataArrayi6PropOp = .text:0x80685AAC; // type:function size:0x25C +fn_80685D08 = .text:0x80685D08; // type:function size:0x54 +fn_80685D5C = .text:0x80685D5C; // type:function size:0x48 +fn_80685DA4 = .text:0x80685DA4; // type:function size:0x4 +fn_80685DA8 = .text:0x80685DA8; // type:function size:0x7C +fn_80685E24 = .text:0x80685E24; // type:function size:0x7C +fn_80685EA0 = .text:0x80685EA0; // type:function size:0xF4 +fn_80685F94 = .text:0x80685F94; // type:function size:0x78 +fn_8068600C = .text:0x8068600C; // type:function size:0x68 +fn_80686074 = .text:0x80686074; // type:function size:0x48 +fn_806860BC = .text:0x806860BC; // type:function size:0x8 +fn_806860C4 = .text:0x806860C4; // type:function size:0x50 +fn_80686114 = .text:0x80686114; // type:function size:0x124 +fn_80686238 = .text:0x80686238; // type:function size:0xA8 +fn_806862E0 = .text:0x806862E0; // type:function size:0x4 +fn_806862E4 = .text:0x806862E4; // type:function size:0x44 +fn_80686328 = .text:0x80686328; // type:function size:0xB4 +fn_806863DC = .text:0x806863DC; // type:function size:0x78 +fn_80686454 = .text:0x80686454; // type:function size:0x7C +fn_806864D0 = .text:0x806864D0; // type:function size:0x4 +fn_806864D4 = .text:0x806864D4; // type:function size:0x7C +fn_80686550 = .text:0x80686550; // type:function size:0x128 +fn_80686678 = .text:0x80686678; // type:function size:0x158 +fn_806867D0 = .text:0x806867D0; // type:function size:0x64 +fn_80686834 = .text:0x80686834; // type:function size:0x48 +fn_8068687C = .text:0x8068687C; // type:function size:0x84 +fn_80686900 = .text:0x80686900; // type:function size:0x4 +fn_80686904 = .text:0x80686904; // type:function size:0x7C +fn_80686980 = .text:0x80686980; // type:function size:0x128 +fn_80686AA8 = .text:0x80686AA8; // type:function size:0x48 +fn_80686AF0 = .text:0x80686AF0; // type:function size:0x4 +fn_80686AF4 = .text:0x80686AF4; // type:function size:0x58 +fn_80686B4C = .text:0x80686B4C; // type:function size:0x48 +fn_80686B94 = .text:0x80686B94; // type:function size:0x4 +fn_80686B98 = .text:0x80686B98; // type:function size:0x58 +fn_80686BF0 = .text:0x80686BF0; // type:function size:0x54 +fn_80686C44 = .text:0x80686C44; // type:function size:0x7C +fn_80686CC0 = .text:0x80686CC0; // type:function size:0x4 +fn_80686CC4 = .text:0x80686CC4; // type:function size:0xE0 +fn_80686DA4 = .text:0x80686DA4; // type:function size:0x74 +fn_80686E18 = .text:0x80686E18; // type:function size:0x60 +fn_80686E78 = .text:0x80686E78; // type:function size:0x4 +fn_80686E7C = .text:0x80686E7C; // type:function size:0x90 +fn_80686F0C = .text:0x80686F0C; // type:function size:0x4 +fn_80686F10 = .text:0x80686F10; // type:function size:0x40 +fn_80686F50 = .text:0x80686F50; // type:function size:0x8C +fn_80686FDC = .text:0x80686FDC; // type:function size:0x8 +fn_80686FE4 = .text:0x80686FE4; // type:function size:0x2C +fn_80687010 = .text:0x80687010; // type:function size:0x58 +fn_80687068 = .text:0x80687068; // type:function size:0x28 +fn_80687090 = .text:0x80687090; // type:function size:0x68 +fn_806870F8 = .text:0x806870F8; // type:function size:0x58 +fn_80687150 = .text:0x80687150; // type:function size:0x58 +fn_806871A8 = .text:0x806871A8; // type:function size:0x80 +fn_80687228 = .text:0x80687228; // type:function size:0x80 +fn_806872A8 = .text:0x806872A8; // type:function size:0x58 +fn_80687300 = .text:0x80687300; // type:function size:0x54 +fn_80687354 = .text:0x80687354; // type:function size:0x5C +fn_806873B0 = .text:0x806873B0; // type:function size:0x6C +fn_8068741C = .text:0x8068741C; // type:function size:0x28 +fn_80687444 = .text:0x80687444; // type:function size:0x8 +fn_8068744C = .text:0x8068744C; // type:function size:0x3C +fn_80687488 = .text:0x80687488; // type:function size:0x50 +fn_806874D8 = .text:0x806874D8; // type:function size:0x30 +fn_80687508 = .text:0x80687508; // type:function size:0x30 +fn_80687538 = .text:0x80687538; // type:function size:0x40 +fn_80687578 = .text:0x80687578; // type:function size:0xC0 +fn_80687638 = .text:0x80687638; // type:function size:0xD0 +fn_80687708 = .text:0x80687708; // type:function size:0x58 +fn_80687760 = .text:0x80687760; // type:function size:0x18 +fn_80687778 = .text:0x80687778; // type:function size:0x14 +fn_8068778C = .text:0x8068778C; // type:function size:0x94 +fn_80687820 = .text:0x80687820; // type:function size:0x4C +fn_8068786C = .text:0x8068786C; // type:function size:0x10 +fn_8068787C = .text:0x8068787C; // type:function size:0x54 +fn_806878D0 = .text:0x806878D0; // type:function size:0xD8 +fn_806879A8 = .text:0x806879A8; // type:function size:0x58 +fn_80687A00 = .text:0x80687A00; // type:function size:0x58 +fn_80687A58 = .text:0x80687A58; // type:function size:0x80 +fn_80687AD8 = .text:0x80687AD8; // type:function size:0x80 +fn_80687B58 = .text:0x80687B58; // type:function size:0x58 +fn_80687BB0 = .text:0x80687BB0; // type:function size:0x54 +fn_80687C04 = .text:0x80687C04; // type:function size:0x5C +fn_80687C60 = .text:0x80687C60; // type:function size:0x6C +fn_80687CCC = .text:0x80687CCC; // type:function size:0x28 +fn_80687CF4 = .text:0x80687CF4; // type:function size:0x80 +fn_80687D74 = .text:0x80687D74; // type:function size:0x8 +fn_80687D7C = .text:0x80687D7C; // type:function size:0x3C +fn_80687DB8 = .text:0x80687DB8; // type:function size:0x24 +fn_80687DDC = .text:0x80687DDC; // type:function size:0x3C +fn_80687E18 = .text:0x80687E18; // type:function size:0x60 +fn_80687E78 = .text:0x80687E78; // type:function size:0x4 +fn_80687E7C = .text:0x80687E7C; // type:function size:0x90 +fn_80687F0C = .text:0x80687F0C; // type:function size:0x4 +fn_80687F10 = .text:0x80687F10; // type:function size:0x40 +fn_80687F50 = .text:0x80687F50; // type:function size:0x8C +fn_80687FDC = .text:0x80687FDC; // type:function size:0x8 +fn_80687FE4 = .text:0x80687FE4; // type:function size:0x2C +fn_80688010 = .text:0x80688010; // type:function size:0x58 +fn_80688068 = .text:0x80688068; // type:function size:0x28 +fn_80688090 = .text:0x80688090; // type:function size:0x68 +fn_806880F8 = .text:0x806880F8; // type:function size:0x8 +fn_80688100 = .text:0x80688100; // type:function size:0x68 +fn_80688168 = .text:0x80688168; // type:function size:0x50 +fn_806881B8 = .text:0x806881B8; // type:function size:0x30 +fn_806881E8 = .text:0x806881E8; // type:function size:0x30 +fn_80688218 = .text:0x80688218; // type:function size:0x40 +fn_80688258 = .text:0x80688258; // type:function size:0xB4 +fn_8068830C = .text:0x8068830C; // type:function size:0x4 +fn_80688310 = .text:0x80688310; // type:function size:0x98 +fn_806883A8 = .text:0x806883A8; // type:function size:0x90 +fn_80688438 = .text:0x80688438; // type:function size:0x90 +fn_806884C8 = .text:0x806884C8; // type:function size:0x4C +fn_80688514 = .text:0x80688514; // type:function size:0x4C +fn_80688560 = .text:0x80688560; // type:function size:0xC0 +fn_80688620 = .text:0x80688620; // type:function size:0x40 +fn_80688660 = .text:0x80688660; // type:function size:0xAC +fn_8068870C = .text:0x8068870C; // type:function size:0x4C +fn_80688758 = .text:0x80688758; // type:function size:0x58 +fn_806887B0 = .text:0x806887B0; // type:function size:0x10 +fn_806887C0 = .text:0x806887C0; // type:function size:0xC4 +fn_80688884 = .text:0x80688884; // type:function size:0x74 +fn_806888F8 = .text:0x806888F8; // type:function size:0x40 +fn_80688938 = .text:0x80688938; // type:function size:0x7C +fn_806889B4 = .text:0x806889B4; // type:function size:0x250 +fn_80688C04 = .text:0x80688C04; // type:function size:0x58 +fn_80688C5C = .text:0x80688C5C; // type:function size:0x10 +fn_80688C6C = .text:0x80688C6C; // type:function size:0x68 +fn_80688CD4 = .text:0x80688CD4; // type:function size:0x74 +fn_80688D48 = .text:0x80688D48; // type:function size:0x40 +fn_80688D88 = .text:0x80688D88; // type:function size:0x7C +fn_80688E04 = .text:0x80688E04; // type:function size:0xE8 +fn_80688EEC = .text:0x80688EEC; // type:function size:0x8 +fn_80688EF4 = .text:0x80688EF4; // type:function size:0x68 +fn_80688F5C = .text:0x80688F5C; // type:function size:0x60 +fn_80688FBC = .text:0x80688FBC; // type:function size:0x8C +fn_80689048 = .text:0x80689048; // type:function size:0x7C +fn_806890C4 = .text:0x806890C4; // type:function size:0x8 +fn_806890CC = .text:0x806890CC; // type:function size:0x1A0 +fn_8068926C = .text:0x8068926C; // type:function size:0x2C +fn_80689298 = .text:0x80689298; // type:function size:0x84 +fn_8068931C = .text:0x8068931C; // type:function size:0x2C +fn_80689348 = .text:0x80689348; // type:function size:0x34 +fn_8068937C = .text:0x8068937C; // type:function size:0x34 +fn_806893B0 = .text:0x806893B0; // type:function size:0x30 +fn_806893E0 = .text:0x806893E0; // type:function size:0x4C +fn_8068942C = .text:0x8068942C; // type:function size:0x34 +fn_80689460 = .text:0x80689460; // type:function size:0x30 +fn_80689490 = .text:0x80689490; // type:function size:0x44 +fn_806894D4 = .text:0x806894D4; // type:function size:0x4C +fn_80689520 = .text:0x80689520; // type:function size:0x34 +fn_80689554 = .text:0x80689554; // type:function size:0x30 +fn_80689584 = .text:0x80689584; // type:function size:0x44 +fn_806895C8 = .text:0x806895C8; // type:function size:0x4C +fn_80689614 = .text:0x80689614; // type:function size:0x34 +fn_80689648 = .text:0x80689648; // type:function size:0x30 +fn_80689678 = .text:0x80689678; // type:function size:0x4C +fn_806896C4 = .text:0x806896C4; // type:function size:0x34 +fn_806896F8 = .text:0x806896F8; // type:function size:0x30 +fn_80689728 = .text:0x80689728; // type:function size:0x4C +fn_80689774 = .text:0x80689774; // type:function size:0x34 +fn_806897A8 = .text:0x806897A8; // type:function size:0x30 +fn_806897D8 = .text:0x806897D8; // type:function size:0x4C +fn_80689824 = .text:0x80689824; // type:function size:0x44 +fn_80689868 = .text:0x80689868; // type:function size:0x58 +fn_806898C0 = .text:0x806898C0; // type:function size:0x4 +fn_806898C4 = .text:0x806898C4; // type:function size:0x130 +fn_806899F4 = .text:0x806899F4; // type:function size:0x58 +fn_80689A4C = .text:0x80689A4C; // type:function size:0x58 +fn_80689AA4 = .text:0x80689AA4; // type:function size:0x10 +fn_80689AB4 = .text:0x80689AB4; // type:function size:0x58 +fn_80689B0C = .text:0x80689B0C; // type:function size:0x68 +fn_80689B74 = .text:0x80689B74; // type:function size:0x58 +fn_80689BCC = .text:0x80689BCC; // type:function size:0x68 +fn_80689C34 = .text:0x80689C34; // type:function size:0x2C +fn_80689C60 = .text:0x80689C60; // type:function size:0x68 +fn_80689CC8 = .text:0x80689CC8; // type:function size:0x2C +fn_80689CF4 = .text:0x80689CF4; // type:function size:0x60 +fn_80689D54 = .text:0x80689D54; // type:function size:0x100 +fn_80689E54 = .text:0x80689E54; // type:function size:0x4 +fn_80689E58 = .text:0x80689E58; // type:function size:0x128 +fn_80689F80 = .text:0x80689F80; // type:function size:0x4 +fn_80689F84 = .text:0x80689F84; // type:function size:0x128 +fn_8068A0AC = .text:0x8068A0AC; // type:function size:0x4 +fn_8068A0B0 = .text:0x8068A0B0; // type:function size:0x128 +fn_8068A1D8 = .text:0x8068A1D8; // type:function size:0x4 +fn_8068A1DC = .text:0x8068A1DC; // type:function size:0x128 +fn_8068A304 = .text:0x8068A304; // type:function size:0x4 +fn_8068A308 = .text:0x8068A308; // type:function size:0x128 +fn_8068A430 = .text:0x8068A430; // type:function size:0x4 +fn_8068A434 = .text:0x8068A434; // type:function size:0x128 +fn_8068A55C = .text:0x8068A55C; // type:function size:0x30 +fn_8068A58C = .text:0x8068A58C; // type:function size:0x198 +fn_8068A724 = .text:0x8068A724; // type:function size:0x5C +fn_8068A780 = .text:0x8068A780; // type:function size:0x10 +fn_8068A790 = .text:0x8068A790; // type:function size:0x54 +fn_8068A7E4 = .text:0x8068A7E4; // type:function size:0x28 +fn_8068A80C = .text:0x8068A80C; // type:function size:0x68 +fn_8068A874 = .text:0x8068A874; // type:function size:0x5C +fn_8068A8D0 = .text:0x8068A8D0; // type:function size:0x68 +fn_8068A938 = .text:0x8068A938; // type:function size:0x114 +fn_8068AA4C = .text:0x8068AA4C; // type:function size:0x5C +fn_8068AAA8 = .text:0x8068AAA8; // type:function size:0x5C +fn_8068AB04 = .text:0x8068AB04; // type:function size:0x54 +fn_8068AB58 = .text:0x8068AB58; // type:function size:0x198 +fn_8068ACF0 = .text:0x8068ACF0; // type:function size:0x5C +fn_8068AD4C = .text:0x8068AD4C; // type:function size:0x10 +fn_8068AD5C = .text:0x8068AD5C; // type:function size:0x54 +fn_8068ADB0 = .text:0x8068ADB0; // type:function size:0x28 +fn_8068ADD8 = .text:0x8068ADD8; // type:function size:0x68 +fn_8068AE40 = .text:0x8068AE40; // type:function size:0x5C +fn_8068AE9C = .text:0x8068AE9C; // type:function size:0x68 +fn_8068AF04 = .text:0x8068AF04; // type:function size:0x114 +fn_8068B018 = .text:0x8068B018; // type:function size:0x5C +fn_8068B074 = .text:0x8068B074; // type:function size:0x5C +fn_8068B0D0 = .text:0x8068B0D0; // type:function size:0x54 +fn_8068B124 = .text:0x8068B124; // type:function size:0x8 +fn_8068B12C = .text:0x8068B12C; // type:function size:0x8 +fn_8068B134 = .text:0x8068B134; // type:function size:0x8 +fn_8068B13C = .text:0x8068B13C; // type:function size:0x8 +fn_8068B144 = .text:0x8068B144; // type:function size:0x8 +fn_8068B14C = .text:0x8068B14C; // type:function size:0x8 +fn_8068B154 = .text:0x8068B154; // type:function size:0x8 +fn_8068B15C = .text:0x8068B15C; // type:function size:0x8 +fn_8068B164 = .text:0x8068B164; // type:function size:0x8 +fn_8068B16C = .text:0x8068B16C; // type:function size:0x8 +fn_8068B174 = .text:0x8068B174; // type:function size:0x1AC +fn_8068B320 = .text:0x8068B320; // type:function size:0x6C +fn_8068B38C = .text:0x8068B38C; // type:function size:0x40 +fn_8068B3CC = .text:0x8068B3CC; // type:function size:0x44 +fn_8068B410 = .text:0x8068B410; // type:function size:0x54 +fn_8068B464 = .text:0x8068B464; // type:function size:0x4C +fn_8068B4B0 = .text:0x8068B4B0; // type:function size:0x78 +fn_8068B528 = .text:0x8068B528; // type:function size:0x2C +fn_8068B554 = .text:0x8068B554; // type:function size:0x8 +fn_8068B55C = .text:0x8068B55C; // type:function size:0x8 +fn_8068B564 = .text:0x8068B564; // type:function size:0x68 +fn_8068B5CC = .text:0x8068B5CC; // type:function size:0x88 +fn_8068B654 = .text:0x8068B654; // type:function size:0x5C +fn_8068B6B0 = .text:0x8068B6B0; // type:function size:0x5C +fn_8068B70C = .text:0x8068B70C; // type:function size:0xF8 +fn_8068B804 = .text:0x8068B804; // type:function size:0x8 +fn_8068B80C = .text:0x8068B80C; // type:function size:0x30 +fn_8068B83C = .text:0x8068B83C; // type:function size:0xB8 +fn_8068B8F4 = .text:0x8068B8F4; // type:function size:0xE8 +fn_8068B9DC = .text:0x8068B9DC; // type:function size:0x10 +fn_8068B9EC = .text:0x8068B9EC; // type:function size:0xD0 +fn_8068BABC = .text:0x8068BABC; // type:function size:0x64 +fn_8068BB20 = .text:0x8068BB20; // type:function size:0x6C +fn_8068BB8C = .text:0x8068BB8C; // type:function size:0x64 +fn_8068BBF0 = .text:0x8068BBF0; // type:function size:0x6C +fn_8068BC5C = .text:0x8068BC5C; // type:function size:0x34 +fn_8068BC90 = .text:0x8068BC90; // type:function size:0xF0 +fn_8068BD80 = .text:0x8068BD80; // type:function size:0x6C +fn_8068BDEC = .text:0x8068BDEC; // type:function size:0xC4 +fn_8068BEB0 = .text:0x8068BEB0; // type:function size:0x6C +fn_8068BF1C = .text:0x8068BF1C; // type:function size:0x40 +fn_8068BF5C = .text:0x8068BF5C; // type:function size:0x44 +fn_8068BFA0 = .text:0x8068BFA0; // type:function size:0x54 +fn_8068BFF4 = .text:0x8068BFF4; // type:function size:0x58 +fn_8068C04C = .text:0x8068C04C; // type:function size:0x58 +fn_8068C0A4 = .text:0x8068C0A4; // type:function size:0x80 +fn_8068C124 = .text:0x8068C124; // type:function size:0x80 +fn_8068C1A4 = .text:0x8068C1A4; // type:function size:0x58 +fn_8068C1FC = .text:0x8068C1FC; // type:function size:0x54 +fn_8068C250 = .text:0x8068C250; // type:function size:0x5C +fn_8068C2AC = .text:0x8068C2AC; // type:function size:0x6C +fn_8068C318 = .text:0x8068C318; // type:function size:0x28 +fn_8068C340 = .text:0x8068C340; // type:function size:0x8 +fn_8068C348 = .text:0x8068C348; // type:function size:0x3C +fn_8068C384 = .text:0x8068C384; // type:function size:0x58 +fn_8068C3DC = .text:0x8068C3DC; // type:function size:0x58 +fn_8068C434 = .text:0x8068C434; // type:function size:0x80 +fn_8068C4B4 = .text:0x8068C4B4; // type:function size:0x80 +fn_8068C534 = .text:0x8068C534; // type:function size:0x58 +fn_8068C58C = .text:0x8068C58C; // type:function size:0x54 +fn_8068C5E0 = .text:0x8068C5E0; // type:function size:0x5C +fn_8068C63C = .text:0x8068C63C; // type:function size:0x6C +fn_8068C6A8 = .text:0x8068C6A8; // type:function size:0x28 +fn_8068C6D0 = .text:0x8068C6D0; // type:function size:0x8 +fn_8068C6D8 = .text:0x8068C6D8; // type:function size:0x8 +fn_8068C6E0 = .text:0x8068C6E0; // type:function size:0x3C +fn_8068C71C = .text:0x8068C71C; // type:function size:0x68 +fn_8068C784 = .text:0x8068C784; // type:function size:0x50 +fn_8068C7D4 = .text:0x8068C7D4; // type:function size:0x30 +fn_8068C804 = .text:0x8068C804; // type:function size:0x30 +fn_8068C834 = .text:0x8068C834; // type:function size:0x40 +fn_8068C874 = .text:0x8068C874; // type:function size:0x50 +fn_8068C8C4 = .text:0x8068C8C4; // type:function size:0x30 +fn_8068C8F4 = .text:0x8068C8F4; // type:function size:0x30 +fn_8068C924 = .text:0x8068C924; // type:function size:0x40 +fn_8068C964 = .text:0x8068C964; // type:function size:0x4 +fn_8068C968 = .text:0x8068C968; // type:function size:0x90 +fn_8068C9F8 = .text:0x8068C9F8; // type:function size:0x2C +fn_8068CA24 = .text:0x8068CA24; // type:function size:0x30 +fn_8068CA54 = .text:0x8068CA54; // type:function size:0x68 +fn_8068CABC = .text:0x8068CABC; // type:function size:0x4C +fn_8068CB08 = .text:0x8068CB08; // type:function size:0x78 +fn_8068CB80 = .text:0x8068CB80; // type:function size:0xF4 +fn_8068CC74 = .text:0x8068CC74; // type:function size:0x3C +fn_8068CCB0 = .text:0x8068CCB0; // type:function size:0x5C +fn_8068CD0C = .text:0x8068CD0C; // type:function size:0x4 +fn_8068CD10 = .text:0x8068CD10; // type:function size:0x90 +fn_8068CDA0 = .text:0x8068CDA0; // type:function size:0x4 +fn_8068CDA4 = .text:0x8068CDA4; // type:function size:0x40 +fn_8068CDE4 = .text:0x8068CDE4; // type:function size:0x8C +fn_8068CE70 = .text:0x8068CE70; // type:function size:0x8 +fn_8068CE78 = .text:0x8068CE78; // type:function size:0x2C +fn_8068CEA4 = .text:0x8068CEA4; // type:function size:0x58 +fn_8068CEFC = .text:0x8068CEFC; // type:function size:0x28 +fn_8068CF24 = .text:0x8068CF24; // type:function size:0x68 +fn_8068CF8C = .text:0x8068CF8C; // type:function size:0x80 +fn_8068D00C = .text:0x8068D00C; // type:function size:0x218 +fn_8068D224 = .text:0x8068D224; // type:function size:0x1B0 +fn_8068D3D4 = .text:0x8068D3D4; // type:function size:0x17C +fn_8068D550 = .text:0x8068D550; // type:function size:0xC0 +fn_8068D610 = .text:0x8068D610; // type:function size:0x2A4 +fn_8068D8B4 = .text:0x8068D8B4; // type:function size:0x170 +fn_8068DA24 = .text:0x8068DA24; // type:function size:0x2C +fn_8068DA50 = .text:0x8068DA50; // type:function size:0x84 +fn_8068DAD4 = .text:0x8068DAD4; // type:function size:0x2C +fn_8068DB00 = .text:0x8068DB00; // type:function size:0x170 +fn_8068DC70 = .text:0x8068DC70; // type:function size:0x2C +fn_8068DC9C = .text:0x8068DC9C; // type:function size:0x84 +fn_8068DD20 = .text:0x8068DD20; // type:function size:0x2C +fn_8068DD4C = .text:0x8068DD4C; // type:function size:0x28 +fn_8068DD74 = .text:0x8068DD74; // type:function size:0x68 +fn_8068DDDC = .text:0x8068DDDC; // type:function size:0x68 +fn_8068DE44 = .text:0x8068DE44; // type:function size:0x8 +fn_8068DE4C = .text:0x8068DE4C; // type:function size:0x4 +fn_8068DE50 = .text:0x8068DE50; // type:function size:0x11C +fn_8068DF6C = .text:0x8068DF6C; // type:function size:0x74 +fn_8068DFE0 = .text:0x8068DFE0; // type:function size:0x74 +fn_8068E054 = .text:0x8068E054; // type:function size:0x5C +fn_8068E0B0 = .text:0x8068E0B0; // type:function size:0x4 +fn_8068E0B4 = .text:0x8068E0B4; // type:function size:0x90 +fn_8068E144 = .text:0x8068E144; // type:function size:0x4 +fn_8068E148 = .text:0x8068E148; // type:function size:0x40 +fn_8068E188 = .text:0x8068E188; // type:function size:0x8C +fn_8068E214 = .text:0x8068E214; // type:function size:0x8 +fn_8068E21C = .text:0x8068E21C; // type:function size:0x2C +fn_8068E248 = .text:0x8068E248; // type:function size:0x58 +fn_8068E2A0 = .text:0x8068E2A0; // type:function size:0xA4 +fn_8068E344 = .text:0x8068E344; // type:function size:0x5C +fn_8068E3A0 = .text:0x8068E3A0; // type:function size:0x30 +fn_8068E3D0 = .text:0x8068E3D0; // type:function size:0x5C +fn_8068E42C = .text:0x8068E42C; // type:function size:0x30 +fn_8068E45C = .text:0x8068E45C; // type:function size:0x98 +fn_8068E4F4 = .text:0x8068E4F4; // type:function size:0x80 +fn_8068E574 = .text:0x8068E574; // type:function size:0x80 +fn_8068E5F4 = .text:0x8068E5F4; // type:function size:0x8C +fn_8068E680 = .text:0x8068E680; // type:function size:0x68 +fn_8068E6E8 = .text:0x8068E6E8; // type:function size:0x2C +fn_8068E714 = .text:0x8068E714; // type:function size:0x58 +fn_8068E76C = .text:0x8068E76C; // type:function size:0x160 +fn_8068E8CC = .text:0x8068E8CC; // type:function size:0x5C +fn_8068E928 = .text:0x8068E928; // type:function size:0x10 +fn_8068E938 = .text:0x8068E938; // type:function size:0x68 +fn_8068E9A0 = .text:0x8068E9A0; // type:function size:0x28 +fn_8068E9C8 = .text:0x8068E9C8; // type:function size:0x5C +fn_8068EA24 = .text:0x8068EA24; // type:function size:0x60 +fn_8068EA84 = .text:0x8068EA84; // type:function size:0x68 +fn_8068EAEC = .text:0x8068EAEC; // type:function size:0x2C +fn_8068EB18 = .text:0x8068EB18; // type:function size:0x58 +fn_8068EB70 = .text:0x8068EB70; // type:function size:0x160 +fn_8068ECD0 = .text:0x8068ECD0; // type:function size:0x5C +fn_8068ED2C = .text:0x8068ED2C; // type:function size:0x10 +fn_8068ED3C = .text:0x8068ED3C; // type:function size:0x74 +fn_8068EDB0 = .text:0x8068EDB0; // type:function size:0x68 +fn_8068EE18 = .text:0x8068EE18; // type:function size:0x28 +fn_8068EE40 = .text:0x8068EE40; // type:function size:0x5C +fn_8068EE9C = .text:0x8068EE9C; // type:function size:0x60 +fn_8068EEFC = .text:0x8068EEFC; // type:function size:0x100 +fn_8068EFFC = .text:0x8068EFFC; // type:function size:0x100 +fn_8068F0FC = .text:0x8068F0FC; // type:function size:0x4 +fn_8068F100 = .text:0x8068F100; // type:function size:0x128 +fn_8068F228 = .text:0x8068F228; // type:function size:0x198 +fn_8068F3C0 = .text:0x8068F3C0; // type:function size:0x5C +fn_8068F41C = .text:0x8068F41C; // type:function size:0x54 +fn_8068F470 = .text:0x8068F470; // type:function size:0x28 +fn_8068F498 = .text:0x8068F498; // type:function size:0x68 +fn_8068F500 = .text:0x8068F500; // type:function size:0x114 +fn_8068F614 = .text:0x8068F614; // type:function size:0x5C +fn_8068F670 = .text:0x8068F670; // type:function size:0x5C +fn_8068F6CC = .text:0x8068F6CC; // type:function size:0x54 +fn_8068F720 = .text:0x8068F720; // type:function size:0x198 +fn_8068F8B8 = .text:0x8068F8B8; // type:function size:0x5C +fn_8068F914 = .text:0x8068F914; // type:function size:0x54 +fn_8068F968 = .text:0x8068F968; // type:function size:0x28 +fn_8068F990 = .text:0x8068F990; // type:function size:0x68 +fn_8068F9F8 = .text:0x8068F9F8; // type:function size:0x114 +fn_8068FB0C = .text:0x8068FB0C; // type:function size:0x5C +fn_8068FB68 = .text:0x8068FB68; // type:function size:0x5C +fn_8068FBC4 = .text:0x8068FBC4; // type:function size:0x54 +fn_8068FC18 = .text:0x8068FC18; // type:function size:0x8 +fn_8068FC20 = .text:0x8068FC20; // type:function size:0x8 +fn_8068FC28 = .text:0x8068FC28; // type:function size:0x58 +fn_8068FC80 = .text:0x8068FC80; // type:function size:0x38 +fn_8068FCB8 = .text:0x8068FCB8; // type:function size:0xA0 +fn_8068FD58 = .text:0x8068FD58; // type:function size:0x6C +fn_8068FDC4 = .text:0x8068FDC4; // type:function size:0xC4 +fn_8068FE88 = .text:0x8068FE88; // type:function size:0x50 +fn_8068FED8 = .text:0x8068FED8; // type:function size:0x74 +fn_8068FF4C = .text:0x8068FF4C; // type:function size:0x64 +fn_8068FFB0 = .text:0x8068FFB0; // type:function size:0x6C +fn_8069001C = .text:0x8069001C; // type:function size:0x74 +fn_80690090 = .text:0x80690090; // type:function size:0x74 +fn_80690104 = .text:0x80690104; // type:function size:0x20 +fn_80690124 = .text:0x80690124; // type:function size:0xC4 +fn_806901E8 = .text:0x806901E8; // type:function size:0x190 +fn_80690378 = .text:0x80690378; // type:function size:0x58 +fn_806903D0 = .text:0x806903D0; // type:function size:0x80 +fn_80690450 = .text:0x80690450; // type:function size:0x80 +fn_806904D0 = .text:0x806904D0; // type:function size:0x58 +fn_80690528 = .text:0x80690528; // type:function size:0x54 +fn_8069057C = .text:0x8069057C; // type:function size:0x5C +fn_806905D8 = .text:0x806905D8; // type:function size:0x6C +fn_80690644 = .text:0x80690644; // type:function size:0x28 +fn_8069066C = .text:0x8069066C; // type:function size:0x8 +fn_80690674 = .text:0x80690674; // type:function size:0x8 +fn_8069067C = .text:0x8069067C; // type:function size:0x3C +fn_806906B8 = .text:0x806906B8; // type:function size:0x30 +fn_806906E8 = .text:0x806906E8; // type:function size:0x30 +fn_80690718 = .text:0x80690718; // type:function size:0x40 +fn_80690758 = .text:0x80690758; // type:function size:0x23C +fn_80690994 = .text:0x80690994; // type:function size:0x5C +fn_806909F0 = .text:0x806909F0; // type:function size:0x5C +fn_80690A4C = .text:0x80690A4C; // type:function size:0x5C +fn_80690AA8 = .text:0x80690AA8; // type:function size:0x180 +fn_80690C28 = .text:0x80690C28; // type:function size:0x5C +fn_80690C84 = .text:0x80690C84; // type:function size:0x5C +fn_80690CE0 = .text:0x80690CE0; // type:function size:0xC +fn_80690CEC = .text:0x80690CEC; // type:function size:0x68 +fn_80690D54 = .text:0x80690D54; // type:function size:0xB4 +fn_80690E08 = .text:0x80690E08; // type:function size:0x4 +fn_80690E0C = .text:0x80690E0C; // type:function size:0x204 +fn_80691010 = .text:0x80691010; // type:function size:0x28 +fn_80691038 = .text:0x80691038; // type:function size:0x64 +fn_8069109C = .text:0x8069109C; // type:function size:0x3C +InitInfo__14StandardStreamFiib = .text:0x806910D8; // type:function size:0x3A8 +fn_80691480 = .text:0x80691480; // type:function size:0x10C +fn_8069158C = .text:0x8069158C; // type:function size:0x29C +fn_80691828 = .text:0x80691828; // type:function size:0x54 +fn_8069187C = .text:0x8069187C; // type:function size:0x2C +fn_806918A8 = .text:0x806918A8; // type:function size:0x14 +fn_806918BC = .text:0x806918BC; // type:function size:0x14 +fn_806918D0 = .text:0x806918D0; // type:function size:0x14 +fn_806918E4 = .text:0x806918E4; // type:function size:0x8 +fn_806918EC = .text:0x806918EC; // type:function size:0x8 +fn_806918F4 = .text:0x806918F4; // type:function size:0xC0 +fn_806919B4 = .text:0x806919B4; // type:function size:0xB4 +fn_80691A68 = .text:0x80691A68; // type:function size:0x118 +fn_80691B80 = .text:0x80691B80; // type:function size:0x16C +fn_80691CEC = .text:0x80691CEC; // type:function size:0x4C +fn_80691D38 = .text:0x80691D38; // type:function size:0xC +fn_80691D44 = .text:0x80691D44; // type:function size:0x3C +fn_80691D80 = .text:0x80691D80; // type:function size:0x40 +fn_80691DC0 = .text:0x80691DC0; // type:function size:0x8C +fn_80691E4C = .text:0x80691E4C; // type:function size:0x8 +fn_80691E54 = .text:0x80691E54; // type:function size:0x2C +fn_80691E80 = .text:0x80691E80; // type:function size:0x58 +fn_80691ED8 = .text:0x80691ED8; // type:function size:0x28 +fn_80691F00 = .text:0x80691F00; // type:function size:0x68 +fn_80691F68 = .text:0x80691F68; // type:function size:0x4C +fn_80691FB4 = .text:0x80691FB4; // type:function size:0xC +fn_80691FC0 = .text:0x80691FC0; // type:function size:0x88 +fn_80692048 = .text:0x80692048; // type:function size:0x2C +fn_80692074 = .text:0x80692074; // type:function size:0x10 +fn_80692084 = .text:0x80692084; // type:function size:0x8 +fn_8069208C = .text:0x8069208C; // type:function size:0x7C +fn_80692108 = .text:0x80692108; // type:function size:0xDC +fn_806921E4 = .text:0x806921E4; // type:function size:0x64 +fn_80692248 = .text:0x80692248; // type:function size:0x10 +fn_80692258 = .text:0x80692258; // type:function size:0x68 +fn_806922C0 = .text:0x806922C0; // type:function size:0xB8 +fn_80692378 = .text:0x80692378; // type:function size:0x244 +fn_806925BC = .text:0x806925BC; // type:function size:0x74 +fn_80692630 = .text:0x80692630; // type:function size:0x20 +fn_80692650 = .text:0x80692650; // type:function size:0x138 +fn_80692788 = .text:0x80692788; // type:function size:0x20 +fn_806927A8 = .text:0x806927A8; // type:function size:0x160 +fn_80692908 = .text:0x80692908; // type:function size:0xCC +fn_806929D4 = .text:0x806929D4; // type:function size:0x84 +fn_80692A58 = .text:0x80692A58; // type:function size:0x50 +fn_80692AA8 = .text:0x80692AA8; // type:function size:0x8 +fn_80692AB0 = .text:0x80692AB0; // type:function size:0x64 +fn_80692B14 = .text:0x80692B14; // type:function size:0x8 +fn_80692B1C = .text:0x80692B1C; // type:function size:0x84 +fn_80692BA0 = .text:0x80692BA0; // type:function size:0x98 +fn_80692C38 = .text:0x80692C38; // type:function size:0x74 +fn_80692CAC = .text:0x80692CAC; // type:function size:0x98 +fn_80692D44 = .text:0x80692D44; // type:function size:0x5C +fn_80692DA0 = .text:0x80692DA0; // type:function size:0x58 +fn_80692DF8 = .text:0x80692DF8; // type:function size:0x8 +fn_80692E00 = .text:0x80692E00; // type:function size:0x4C +fn_80692E4C = .text:0x80692E4C; // type:function size:0x54 +fn_80692EA0 = .text:0x80692EA0; // type:function size:0x16C +fn_8069300C = .text:0x8069300C; // type:function size:0x8C +fn_80693098 = .text:0x80693098; // type:function size:0x58 +fn_806930F0 = .text:0x806930F0; // type:function size:0x48 +fn_80693138 = .text:0x80693138; // type:function size:0x4C +fn_80693184 = .text:0x80693184; // type:function size:0xD4 +fn_80693258 = .text:0x80693258; // type:function size:0x6C +fn_806932C4 = .text:0x806932C4; // type:function size:0x74 +fn_80693338 = .text:0x80693338; // type:function size:0x64 +fn_8069339C = .text:0x8069339C; // type:function size:0x8C +fn_80693428 = .text:0x80693428; // type:function size:0x64 +fn_8069348C = .text:0x8069348C; // type:function size:0x98 +fn_80693524 = .text:0x80693524; // type:function size:0x84 +fn_806935A8 = .text:0x806935A8; // type:function size:0x64 +fn_8069360C = .text:0x8069360C; // type:function size:0x5C +fn_80693668 = .text:0x80693668; // type:function size:0x58 +fn_806936C0 = .text:0x806936C0; // type:function size:0x90 +fn_80693750 = .text:0x80693750; // type:function size:0x114 +fn_80693864 = .text:0x80693864; // type:function size:0x5C +fn_806938C0 = .text:0x806938C0; // type:function size:0x5C +fn_8069391C = .text:0x8069391C; // type:function size:0x54 +fn_80693970 = .text:0x80693970; // type:function size:0x5C +fn_806939CC = .text:0x806939CC; // type:function size:0x5C +fn_80693A28 = .text:0x80693A28; // type:function size:0x8 +fn_80693A30 = .text:0x80693A30; // type:function size:0x8 +fn_80693A38 = .text:0x80693A38; // type:function size:0x8 +fn_80693A40 = .text:0x80693A40; // type:function size:0xA4 +fn_80693AE4 = .text:0x80693AE4; // type:function size:0x68 +fn_80693B4C = .text:0x80693B4C; // type:function size:0x4C +fn_80693B98 = .text:0x80693B98; // type:function size:0xD8 +fn_80693C70 = .text:0x80693C70; // type:function size:0x88 +fn_80693CF8 = .text:0x80693CF8; // type:function size:0x5C +fn_80693D54 = .text:0x80693D54; // type:function size:0x5C +fn_80693DB0 = .text:0x80693DB0; // type:function size:0xC +fn_80693DBC = .text:0x80693DBC; // type:function size:0x8 +fn_80693DC4 = .text:0x80693DC4; // type:function size:0x8 +fn_80693DCC = .text:0x80693DCC; // type:function size:0x8 +fn_80693DD4 = .text:0x80693DD4; // type:function size:0x2C +fn_80693E00 = .text:0x80693E00; // type:function size:0x48 +fn_80693E48 = .text:0x80693E48; // type:function size:0x8 +fn_80693E50 = .text:0x80693E50; // type:function size:0xC +fn_80693E5C = .text:0x80693E5C; // type:function size:0xC +fn_80693E68 = .text:0x80693E68; // type:function size:0x8 +fn_80693E70 = .text:0x80693E70; // type:function size:0x8 +fn_80693E78 = .text:0x80693E78; // type:function size:0x8 +fn_80693E80 = .text:0x80693E80; // type:function size:0x28 +fn_80693EA8 = .text:0x80693EA8; // type:function size:0x10 +fn_80693EB8 = .text:0x80693EB8; // type:function size:0x7C +fn_80693F34 = .text:0x80693F34; // type:function size:0x40 +fn_80693F74 = .text:0x80693F74; // type:function size:0xC +fn_80693F80 = .text:0x80693F80; // type:function size:0xE4 +fn_80694064 = .text:0x80694064; // type:function size:0xD0 +fn_80694134 = .text:0x80694134; // type:function size:0x14 +fn_80694148 = .text:0x80694148; // type:function size:0x80 +fn_806941C8 = .text:0x806941C8; // type:function size:0x58 +fn_80694220 = .text:0x80694220; // type:function size:0x46C +fn_8069468C = .text:0x8069468C; // type:function size:0x60 +fn_806946EC = .text:0x806946EC; // type:function size:0x10C +returnMasterKey__FP9DataArray = .text:0x806947F8; // type:function size:0xD0 +__ct__5SynthFv = .text:0x806948C8; // type:function size:0x244 +fn_80694B0C = .text:0x80694B0C; // type:function size:0x4 +fn_80694B10 = .text:0x80694B10; // type:function size:0x88 +fn_80694B98 = .text:0x80694B98; // type:function size:0x2C +fn_80694BC4 = .text:0x80694BC4; // type:function size:0x10 +fn_80694BD4 = .text:0x80694BD4; // type:function size:0x50 +fn_80694C24 = .text:0x80694C24; // type:function size:0x7C +__ct__11ByteGrinderFv = .text:0x80694CA0; // type:function size:0x10 +fn_80694CB0 = .text:0x80694CB0; // type:function size:0x84 +fn_80694D34 = .text:0x80694D34; // type:function size:0x1A4 +fn_80694ED8 = .text:0x80694ED8; // type:function size:0x34 +fn_80694F0C = .text:0x80694F0C; // type:function size:0x34 +fn_80694F40 = .text:0x80694F40; // type:function size:0x34 +NewObject__8MoggClipFv = .text:0x80694F74; // type:function size:0x34 +fn_80694FA8 = .text:0x80694FA8; // type:function size:0x34 +fn_80694FDC = .text:0x80694FDC; // type:function size:0x34 +fn_80695010 = .text:0x80695010; // type:function size:0x34 +fn_80695044 = .text:0x80695044; // type:function size:0x34 +fn_80695078 = .text:0x80695078; // type:function size:0x34 +fn_806950AC = .text:0x806950AC; // type:function size:0x34 +fn_806950E0 = .text:0x806950E0; // type:function size:0x34 +fn_80695114 = .text:0x80695114; // type:function size:0x34 +fn_80695148 = .text:0x80695148; // type:function size:0x34 +fn_8069517C = .text:0x8069517C; // type:function size:0x34 +fn_806951B0 = .text:0x806951B0; // type:function size:0x34 +fn_806951E4 = .text:0x806951E4; // type:function size:0x34 +fn_80695218 = .text:0x80695218; // type:function size:0x34 +fn_8069524C = .text:0x8069524C; // type:function size:0x34 +fn_80695280 = .text:0x80695280; // type:function size:0x34 +fn_806952B4 = .text:0x806952B4; // type:function size:0x34 +fn_806952E8 = .text:0x806952E8; // type:function size:0x34 +fn_8069531C = .text:0x8069531C; // type:function size:0x34 +fn_80695350 = .text:0x80695350; // type:function size:0x34 +fn_80695384 = .text:0x80695384; // type:function size:0x34 +fn_806953B8 = .text:0x806953B8; // type:function size:0x34 +fn_806953EC = .text:0x806953EC; // type:function size:0x34 +fn_80695420 = .text:0x80695420; // type:function size:0x34 +fn_80695454 = .text:0x80695454; // type:function size:0x48 +fn_8069549C = .text:0x8069549C; // type:function size:0x34 +fn_806954D0 = .text:0x806954D0; // type:function size:0x34 +fn_80695504 = .text:0x80695504; // type:function size:0x34 +fn_80695538 = .text:0x80695538; // type:function size:0x34 +fn_8069556C = .text:0x8069556C; // type:function size:0x34 +fn_806955A0 = .text:0x806955A0; // type:function size:0x34 +InitSecurity__5SynthFv = .text:0x806955D4; // type:function size:0xA8 +fn_8069567C = .text:0x8069567C; // type:function size:0xE4 +fn_80695760 = .text:0x80695760; // type:function size:0x58 +fn_806957B8 = .text:0x806957B8; // type:function size:0x5C +fn_80695814 = .text:0x80695814; // type:function size:0x5C +fn_80695870 = .text:0x80695870; // type:function size:0x8 +GetMasterVolume__5SynthFv = .text:0x80695878; // type:function size:0x8 +fn_80695880 = .text:0x80695880; // type:function size:0xF0 +fn_80695970 = .text:0x80695970; // type:function size:0x1D8 +fn_80695B48 = .text:0x80695B48; // type:function size:0x4C +fn_80695B94 = .text:0x80695B94; // type:function size:0x8 +StopPlaybackAllMics__5SynthFv = .text:0x80695B9C; // type:function size:0x28 +fn_80695BC4 = .text:0x80695BC4; // type:function size:0xF4 +fn_80695CB8 = .text:0x80695CB8; // type:function size:0x28 +fn_80695CE0 = .text:0x80695CE0; // type:function size:0x118 +fn_80695DF8 = .text:0x80695DF8; // type:function size:0xD8 +fn_80695ED0 = .text:0x80695ED0; // type:function size:0x90 +ToggleHud__5SynthFv = .text:0x80695F60; // type:function size:0x60 +fn_80695FC0 = .text:0x80695FC0; // type:function size:0x364 +fn_80696324 = .text:0x80696324; // type:function size:0x1E0 +fn_80696504 = .text:0x80696504; // type:function size:0x378 +fn_8069687C = .text:0x8069687C; // type:function size:0x30 +fn_806968AC = .text:0x806968AC; // type:function size:0x30 +OnStartMic__5SynthFPC9DataArray = .text:0x806968DC; // type:function size:0x74 +OnStopMic__5SynthFPC9DataArray = .text:0x80696950; // type:function size:0x74 +OnNumConnectedMics__5SynthFPC9DataArray = .text:0x806969C4; // type:function size:0x48 +OnSetMicVolume__5SynthFPC9DataArray = .text:0x80696A0C; // type:function size:0x60 +OnSetFX__5SynthFPC9DataArray = .text:0x80696A6C; // type:function size:0x58 +OnSetFXVol__5SynthFPC9DataArray = .text:0x80696AC4; // type:function size:0x84 +StopAllSfx__5SynthFb = .text:0x80696B48; // type:function size:0xB0 +PauseAllSfx__5SynthFb = .text:0x80696BF8; // type:function size:0xB0 +OnPassthrough__5SynthFP9DataArray = .text:0x80696CA8; // type:function size:0xC8 +Find__5SynthFPCcb_PQ23Hmx6Object = .text:0x80696D70; // type:function size:0x8C +fn_80696DFC = .text:0x80696DFC; // type:function size:0x98 +fn_80696E94 = .text:0x80696E94; // type:function size:0x8C +fn_80696F20 = .text:0x80696F20; // type:function size:0x5C +Handle__5SynthFP9DataArrayb = .text:0x80696F7C; // type:function size:0x698 +fn_80697614 = .text:0x80697614; // type:function size:0x40 +fn_80697654 = .text:0x80697654; // type:function size:0x40 +fn_80697694 = .text:0x80697694; // type:function size:0x78 +GetSampleMem__5SynthFP9ObjectDir8Platform = .text:0x8069770C; // type:function size:0x74 +fn_80697780 = .text:0x80697780; // type:function size:0x50 +fn_806977D0 = .text:0x806977D0; // type:function size:0xD0 +fn_806978A0 = .text:0x806978A0; // type:function size:0x78 +fn_80697918 = .text:0x80697918; // type:function size:0xD8 +GetSPUOverhead__5SynthFv = .text:0x806979F0; // type:function size:0x94 +fn_80697A84 = .text:0x80697A84; // type:function size:0x54 +fn_80697AD8 = .text:0x80697AD8; // type:function size:0x48 +fn_80697B20 = .text:0x80697B20; // type:function size:0x24 +fn_80697B44 = .text:0x80697B44; // type:function size:0x114 +fn_80697C58 = .text:0x80697C58; // type:function size:0x5C +fn_80697CB4 = .text:0x80697CB4; // type:function size:0x5C +fn_80697D10 = .text:0x80697D10; // type:function size:0x54 +fn_80697D64 = .text:0x80697D64; // type:function size:0x5C +fn_80697DC0 = .text:0x80697DC0; // type:function size:0x6C +fn_80697E2C = .text:0x80697E2C; // type:function size:0x28 +fn_80697E54 = .text:0x80697E54; // type:function size:0x8 +fn_80697E5C = .text:0x80697E5C; // type:function size:0x8 +fn_80697E64 = .text:0x80697E64; // type:function size:0x3C +fn_80697EA0 = .text:0x80697EA0; // type:function size:0x5C +fn_80697EFC = .text:0x80697EFC; // type:function size:0x5C +fn_80697F58 = .text:0x80697F58; // type:function size:0x70 +fn_80697FC8 = .text:0x80697FC8; // type:function size:0x58 +fn_80698020 = .text:0x80698020; // type:function size:0x80 +fn_806980A0 = .text:0x806980A0; // type:function size:0x80 +fn_80698120 = .text:0x80698120; // type:function size:0x58 +fn_80698178 = .text:0x80698178; // type:function size:0x54 +fn_806981CC = .text:0x806981CC; // type:function size:0x30 +fn_806981FC = .text:0x806981FC; // type:function size:0x30 +fn_8069822C = .text:0x8069822C; // type:function size:0x40 +fn_8069826C = .text:0x8069826C; // type:function size:0x8 +fn_80698274 = .text:0x80698274; // type:function size:0x8 +fn_8069827C = .text:0x8069827C; // type:function size:0x4 +fn_80698280 = .text:0x80698280; // type:function size:0x34 +fn_806982B4 = .text:0x806982B4; // type:function size:0x34 +fn_806982E8 = .text:0x806982E8; // type:function size:0x34 +__ct__11SynthSampleFv = .text:0x8069831C; // type:function size:0x6C +__dt__11SynthSampleFv = .text:0x80698388; // type:function size:0xAC +fn_80698434 = .text:0x80698434; // type:function size:0x8 +fn_8069843C = .text:0x8069843C; // type:function size:0x8 +fn_80698444 = .text:0x80698444; // type:function size:0x8 +fn_8069844C = .text:0x8069844C; // type:function size:0x8 +fn_80698454 = .text:0x80698454; // type:function size:0x190 +fn_806985E4 = .text:0x806985E4; // type:function size:0x4 +fn_806985E8 = .text:0x806985E8; // type:function size:0x5C +fn_80698644 = .text:0x80698644; // type:function size:0x194 +fn_806987D8 = .text:0x806987D8; // type:function size:0xA4 +fn_8069887C = .text:0x8069887C; // type:function size:0xAC +fn_80698928 = .text:0x80698928; // type:function size:0xE0 +Handle__11SynthSampleFP9DataArrayb = .text:0x80698A08; // type:function size:0x1F4 +fn_80698BFC = .text:0x80698BFC; // type:function size:0x2B0 +fn_80698EAC = .text:0x80698EAC; // type:function size:0x164 +fn_80699010 = .text:0x80699010; // type:function size:0x2C +fn_8069903C = .text:0x8069903C; // type:function size:0x84 +fn_806990C0 = .text:0x806990C0; // type:function size:0x2C +fn_806990EC = .text:0x806990EC; // type:function size:0xC +fn_806990F8 = .text:0x806990F8; // type:function size:0x58 +fn_80699150 = .text:0x80699150; // type:function size:0x4 +fn_80699154 = .text:0x80699154; // type:function size:0x128 +fn_8069927C = .text:0x8069927C; // type:function size:0x1C +fn_80699298 = .text:0x80699298; // type:function size:0xEC +fn_80699384 = .text:0x80699384; // type:function size:0x6C +fn_806993F0 = .text:0x806993F0; // type:function size:0x50 +fn_80699440 = .text:0x80699440; // type:function size:0x648 +fn_80699A88 = .text:0x80699A88; // type:function size:0x18 +fn_80699AA0 = .text:0x80699AA0; // type:function size:0x104 +fn_80699BA4 = .text:0x80699BA4; // type:function size:0xC +fn_80699BB0 = .text:0x80699BB0; // type:function size:0x18 +fn_80699BC8 = .text:0x80699BC8; // type:function size:0x38 +fn_80699C00 = .text:0x80699C00; // type:function size:0xB8 +fn_80699CB8 = .text:0x80699CB8; // type:function size:0x294 +fn_80699F4C = .text:0x80699F4C; // type:function size:0xAC +fn_80699FF8 = .text:0x80699FF8; // type:function size:0xA0 +fn_8069A098 = .text:0x8069A098; // type:function size:0x10 +fn_8069A0A8 = .text:0x8069A0A8; // type:function size:0xF4 +fn_8069A19C = .text:0x8069A19C; // type:function size:0xE0 +fn_8069A27C = .text:0x8069A27C; // type:function size:0x48 +fn_8069A2C4 = .text:0x8069A2C4; // type:function size:0x8 +fn_8069A2CC = .text:0x8069A2CC; // type:function size:0xB8 +fn_8069A384 = .text:0x8069A384; // type:function size:0x58 +fn_8069A3DC = .text:0x8069A3DC; // type:function size:0x80 +fn_8069A45C = .text:0x8069A45C; // type:function size:0x80 +fn_8069A4DC = .text:0x8069A4DC; // type:function size:0x58 +fn_8069A534 = .text:0x8069A534; // type:function size:0x54 +fn_8069A588 = .text:0x8069A588; // type:function size:0x3C +fn_8069A5C4 = .text:0x8069A5C4; // type:function size:0x8 +fn_8069A5CC = .text:0x8069A5CC; // type:function size:0x3C +fn_8069A608 = .text:0x8069A608; // type:function size:0x30 +fn_8069A638 = .text:0x8069A638; // type:function size:0x30 +fn_8069A668 = .text:0x8069A668; // type:function size:0x40 +fn_8069A6A8 = .text:0x8069A6A8; // type:function size:0x50 +fn_8069A6F8 = .text:0x8069A6F8; // type:function size:0x4 +fn_8069A6FC = .text:0x8069A6FC; // type:function size:0xE4 +fn_8069A7E0 = .text:0x8069A7E0; // type:function size:0x4 +setupCypher__12VorbisReaderFb = .text:0x8069A7E4; // type:function size:0x1D8 +__ct__12VorbisReaderFP4FilebP14StandardStream = .text:0x8069A9BC; // type:function size:0x158 +fn_8069AB14 = .text:0x8069AB14; // type:function size:0x58 +fn_8069AB6C = .text:0x8069AB6C; // type:function size:0x80 +fn_8069ABEC = .text:0x8069ABEC; // type:function size:0x80 +fn_8069AC6C = .text:0x8069AC6C; // type:function size:0x58 +fn_8069ACC4 = .text:0x8069ACC4; // type:function size:0x54 +fn_8069AD18 = .text:0x8069AD18; // type:function size:0x5C +fn_8069AD74 = .text:0x8069AD74; // type:function size:0x6C +fn_8069ADE0 = .text:0x8069ADE0; // type:function size:0x28 +fn_8069AE08 = .text:0x8069AE08; // type:function size:0x8 +fn_8069AE10 = .text:0x8069AE10; // type:function size:0x58 +fn_8069AE68 = .text:0x8069AE68; // type:function size:0x80 +fn_8069AEE8 = .text:0x8069AEE8; // type:function size:0x80 +fn_8069AF68 = .text:0x8069AF68; // type:function size:0x58 +fn_8069AFC0 = .text:0x8069AFC0; // type:function size:0x54 +fn_8069B014 = .text:0x8069B014; // type:function size:0x3C +fn_8069B050 = .text:0x8069B050; // type:function size:0x8 +fn_8069B058 = .text:0x8069B058; // type:function size:0x3C +fn_8069B094 = .text:0x8069B094; // type:function size:0x8 +fn_8069B09C = .text:0x8069B09C; // type:function size:0x3C +fn_8069B0D8 = .text:0x8069B0D8; // type:function size:0x30 +fn_8069B108 = .text:0x8069B108; // type:function size:0x30 +fn_8069B138 = .text:0x8069B138; // type:function size:0x40 +__dt__12VorbisReaderFv = .text:0x8069B178; // type:function size:0x14C +Poll__12VorbisReaderFf = .text:0x8069B2C4; // type:function size:0x168 +fn_8069B42C = .text:0x8069B42C; // type:function size:0x68 +DoFileRead__12VorbisReaderFv = .text:0x8069B494; // type:function size:0x18C +Decrypt__12VorbisReaderFPUci = .text:0x8069B620; // type:function size:0x134 +CheckHmxHeader__12VorbisReaderFv = .text:0x8069B754; // type:function size:0x250 +TryReadHeader__12VorbisReaderFv = .text:0x8069B9A4; // type:function size:0xF0 +InitDecoder__12VorbisReaderFv = .text:0x8069BA94; // type:function size:0x54 +TryConsumeData__12VorbisReaderFv = .text:0x8069BAE8; // type:function size:0x8C +TryDecode__12VorbisReaderFv = .text:0x8069BB74; // type:function size:0x12C +TryReadPacket__12VorbisReaderFR10ogg_packet = .text:0x8069BCA0; // type:function size:0x80 +DoSeek__12VorbisReaderFv = .text:0x8069BD20; // type:function size:0x98 +DoRawSeek__12VorbisReaderFi = .text:0x8069BDB8; // type:function size:0x104 +QueuedInputBytes__12VorbisReaderFv = .text:0x8069BEBC; // type:function size:0x14 +QueuedOutputSamples__12VorbisReaderFv = .text:0x8069BED0; // type:function size:0x1C +Init__12VorbisReaderFv = .text:0x8069BEEC; // type:function size:0x1C +fn_8069BF08 = .text:0x8069BF08; // type:function size:0x58 +fn_8069BF60 = .text:0x8069BF60; // type:function size:0x4 +fn_8069BF64 = .text:0x8069BF64; // type:function size:0x8 +__ct__9WavReaderFP4FilebP14StandardStream = .text:0x8069BF6C; // type:function size:0x128 +__dt__9WavReaderFv = .text:0x8069C094; // type:function size:0xD0 +fn_8069C164 = .text:0x8069C164; // type:function size:0x228 +fn_8069C38C = .text:0x8069C38C; // type:function size:0x1C +fn_8069C3A8 = .text:0x8069C3A8; // type:function size:0x48 +fn_8069C3F0 = .text:0x8069C3F0; // type:function size:0x8 +fn_8069C3F8 = .text:0x8069C3F8; // type:function size:0x4 +rijndael_setup = .text:0x8069C3FC; // type:function size:0x4C4 +rijndael_ecb_encrypt = .text:0x8069C8C0; // type:function size:0xF7C +rijndael_ecb_decrypt = .text:0x8069D83C; // type:function size:0xF90 +rijndael_test = .text:0x8069E7CC; // type:function size:0x234 +rijndael_keysize = .text:0x8069EA00; // type:function size:0x54 +register_cipher = .text:0x8069EA54; // type:function size:0xCC +cipher_is_valid = .text:0x8069EB20; // type:function size:0x44 +ctr_start = .text:0x8069EB64; // type:function size:0x104 +ctr_reinit = .text:0x8069EC68; // type:function size:0x90 +ctr_encrypt_fast = .text:0x8069ECF8; // type:function size:0xF4 +ctr_encrypt = .text:0x8069EDEC; // type:function size:0x150 +ctr_decrypt = .text:0x8069EF3C; // type:function size:0x4 +speex_bits_init = .text:0x8069EF40; // type:function size:0x58 +speex_bits_destroy = .text:0x8069EF98; // type:function size:0x18 +speex_bits_reset = .text:0x8069EFB0; // type:function size:0x20 +speex_bits_read_from = .text:0x8069EFD0; // type:function size:0x10C +speex_bits_write = .text:0x8069F0DC; // type:function size:0x94 +speex_bits_pack = .text:0x8069F170; // type:function size:0x168 +speex_bits_unpack_unsigned = .text:0x8069F2D8; // type:function size:0xA0 +speex_bits_advance = .text:0x8069F378; // type:function size:0x50 +speex_bits_remaining = .text:0x8069F3C8; // type:function size:0x30 +speex_bits_insert_terminator = .text:0x8069F3F8; // type:function size:0x60 +compute_weighted_codebook = .text:0x8069F458; // type:function size:0x140 +split_cb_search_shape_sign_N1 = .text:0x8069F598; // type:function size:0x414 +target_update = .text:0x8069F9AC; // type:function size:0x2C +split_cb_search_shape_sign = .text:0x8069F9D8; // type:function size:0x9A8 +split_cb_shape_sign_unquant = .text:0x806A0380; // type:function size:0x178 +noise_codebook_quant = .text:0x806A04F8; // type:function size:0xA4 +noise_codebook_unquant = .text:0x806A059C; // type:function size:0x68 +speex_rand = .text:0x806A0604; // type:function size:0x5C +bw_lpc = .text:0x806A0660; // type:function size:0x30 +sanitize_values32 = .text:0x806A0690; // type:function size:0x68 +highpass = .text:0x806A06F8; // type:function size:0xF4 +signal_mul = .text:0x806A07EC; // type:function size:0x28 +signal_div = .text:0x806A0814; // type:function size:0x34 +compute_rms = .text:0x806A0848; // type:function size:0x7C +compute_rms16 = .text:0x806A08C4; // type:function size:0x4 +filter_mem16 = .text:0x806A08C8; // type:function size:0x94 +iir_mem16 = .text:0x806A095C; // type:function size:0x74 +fir_mem16 = .text:0x806A09D0; // type:function size:0x70 +syn_percep_zero16 = .text:0x806A0A40; // type:function size:0xDC +residue_percep_zero16 = .text:0x806A0B1C; // type:function size:0xD4 +compute_impulse_response = .text:0x806A0BF0; // type:function size:0x170 +interp_pitch = .text:0x806A0D60; // type:function size:0x210 +multicomb = .text:0x806A0F70; // type:function size:0x384 +_spx_lpc = .text:0x806A12F4; // type:function size:0x120 +_spx_autocorr = .text:0x806A1414; // type:function size:0x74 +cheb_poly_eva = .text:0x806A1488; // type:function size:0x70 +lpc_to_lsp = .text:0x806A14F8; // type:function size:0x3B0 +lsp_to_lpc = .text:0x806A18A8; // type:function size:0x1D4 +spx_cos = .text:0x806A1A7C; // type:function size:0x88 +lsp_enforce_margin = .text:0x806A1B04; // type:function size:0xA4 +lsp_interpolate = .text:0x806A1BA8; // type:function size:0x80 +inner_prod = .text:0x806A1C28; // type:function size:0x5C +pitch_xcorr = .text:0x806A1C84; // type:function size:0x7C +open_loop_nbest_pitch = .text:0x806A1D00; // type:function size:0x354 +pitch_gain_search_3tap_vq = .text:0x806A2054; // type:function size:0x194 +compute_pitch_error = .text:0x806A21E8; // type:function size:0x9C +pitch_gain_search_3tap = .text:0x806A2284; // type:function size:0x610 +pitch_search_3tap = .text:0x806A2894; // type:function size:0x35C +pitch_unquant_3tap = .text:0x806A2BF0; // type:function size:0x314 +forced_pitch_quant = .text:0x806A2F04; // type:function size:0x14C +forced_pitch_unquant = .text:0x806A3050; // type:function size:0x6C +nb_encoder_init = .text:0x806A30BC; // type:function size:0x31C +nb_encoder_destroy = .text:0x806A33D8; // type:function size:0xA8 +nb_encode = .text:0x806A3480; // type:function size:0x1880 +nb_decoder_init = .text:0x806A4D00; // type:function size:0x200 +nb_decoder_destroy = .text:0x806A4F00; // type:function size:0x60 +nb_decode_lost = .text:0x806A4F60; // type:function size:0x2C0 +speex_rand = .text:0x806A5220; // type:function size:0x5C +nb_decode = .text:0x806A527C; // type:function size:0x1180 +nb_encoder_ctl = .text:0x806A63FC; // type:function size:0x570 +nb_decoder_ctl = .text:0x806A696C; // type:function size:0x354 +compute_quant_weights = .text:0x806A6CC0; // type:function size:0xA8 +lsp_quant = .text:0x806A6D68; // type:function size:0xF4 +lsp_weight_quant = .text:0x806A6E5C; // type:function size:0x104 +lsp_quant_nb = .text:0x806A6F60; // type:function size:0x2A4 +lsp_unquant_nb = .text:0x806A7204; // type:function size:0x2B0 +lsp_quant_lbr = .text:0x806A74B4; // type:function size:0x1FC +lsp_unquant_lbr = .text:0x806A76B0; // type:function size:0x1D4 +speex_encoder_init = .text:0x806A7884; // type:function size:0xC +speex_decoder_init = .text:0x806A7890; // type:function size:0xC +speex_encoder_destroy = .text:0x806A789C; // type:function size:0x10 +speex_decoder_destroy = .text:0x806A78AC; // type:function size:0x10 +speex_encode = .text:0x806A78BC; // type:function size:0x10 +speex_decode = .text:0x806A78CC; // type:function size:0x10 +speex_encoder_ctl = .text:0x806A78DC; // type:function size:0x10 +speex_decoder_ctl = .text:0x806A78EC; // type:function size:0x10 +nb_mode_query = .text:0x806A78FC; // type:function size:0xB0 +speex_inband_handler = .text:0x806A79AC; // type:function size:0xD4 +speex_default_user_handler = .text:0x806A7A80; // type:function size:0x48 +vbr_init = .text:0x806A7AC8; // type:function size:0xD0 +vbr_analysis = .text:0x806A7B98; // type:function size:0x74C +vbr_destroy = .text:0x806A82E4; // type:function size:0x4 +scal_quant = .text:0x806A82E8; // type:function size:0x30 +vq_nbest = .text:0x806A8318; // type:function size:0x104 +vq_nbest_sign = .text:0x806A841C; // type:function size:0x134 +fn_806A8550 = .text:0x806A8550; // type:function size:0xB8 +fn_806A8608 = .text:0x806A8608; // type:function size:0x360 +fn_806A8968 = .text:0x806A8968; // type:function size:0x8 +fn_806A8970 = .text:0x806A8970; // type:function size:0x1C +fn_806A898C = .text:0x806A898C; // type:function size:0x58 +fn_806A89E4 = .text:0x806A89E4; // type:function size:0x9C +fn_806A8A80 = .text:0x806A8A80; // type:function size:0x144 +fn_806A8BC4 = .text:0x806A8BC4; // type:function size:0x4C +fn_806A8C10 = .text:0x806A8C10; // type:function size:0x4 +fn_806A8C14 = .text:0x806A8C14; // type:function size:0xE8 +fn_806A8CFC = .text:0x806A8CFC; // type:function size:0x14 +fn_806A8D10 = .text:0x806A8D10; // type:function size:0x14 +fn_806A8D24 = .text:0x806A8D24; // type:function size:0x14 +fn_806A8D38 = .text:0x806A8D38; // type:function size:0x14 +fn_806A8D4C = .text:0x806A8D4C; // type:function size:0x14 +fn_806A8D60 = .text:0x806A8D60; // type:function size:0x14 +fn_806A8D74 = .text:0x806A8D74; // type:function size:0x14 +fn_806A8D88 = .text:0x806A8D88; // type:function size:0x14 +fn_806A8D9C = .text:0x806A8D9C; // type:function size:0x14 +fn_806A8DB0 = .text:0x806A8DB0; // type:function size:0x14 +fn_806A8DC4 = .text:0x806A8DC4; // type:function size:0x14 +fn_806A8DD8 = .text:0x806A8DD8; // type:function size:0x14 +fn_806A8DEC = .text:0x806A8DEC; // type:function size:0xC +fn_806A8DF8 = .text:0x806A8DF8; // type:function size:0xE4 +fn_806A8EDC = .text:0x806A8EDC; // type:function size:0x58 +fn_806A8F34 = .text:0x806A8F34; // type:function size:0x80 +fn_806A8FB4 = .text:0x806A8FB4; // type:function size:0x14 +fn_806A8FC8 = .text:0x806A8FC8; // type:function size:0xE0 +fn_806A90A8 = .text:0x806A90A8; // type:function size:0x138 +fn_806A91E0 = .text:0x806A91E0; // type:function size:0xEC +fn_806A92CC = .text:0x806A92CC; // type:function size:0x30 +fn_806A92FC = .text:0x806A92FC; // type:function size:0x40 +fn_806A933C = .text:0x806A933C; // type:function size:0x44 +fn_806A9380 = .text:0x806A9380; // type:function size:0x54 +fn_806A93D4 = .text:0x806A93D4; // type:function size:0x4 +fn_806A93D8 = .text:0x806A93D8; // type:function size:0x4C +fn_806A9424 = .text:0x806A9424; // type:function size:0x128 +fn_806A954C = .text:0x806A954C; // type:function size:0x58 +fn_806A95A4 = .text:0x806A95A4; // type:function size:0x6C +fn_806A9610 = .text:0x806A9610; // type:function size:0x68 +fn_806A9678 = .text:0x806A9678; // type:function size:0x10C +fn_806A9784 = .text:0x806A9784; // type:function size:0x134 +fn_806A98B8 = .text:0x806A98B8; // type:function size:0x124 +fn_806A99DC = .text:0x806A99DC; // type:function size:0x7C +fn_806A9A58 = .text:0x806A9A58; // type:function size:0x98 +fn_806A9AF0 = .text:0x806A9AF0; // type:function size:0x30 +fn_806A9B20 = .text:0x806A9B20; // type:function size:0x4 +fn_806A9B24 = .text:0x806A9B24; // type:function size:0x4 +fn_806A9B28 = .text:0x806A9B28; // type:function size:0x14 +fn_806A9B3C = .text:0x806A9B3C; // type:function size:0xC +fn_806A9B48 = .text:0x806A9B48; // type:function size:0xC +fn_806A9B54 = .text:0x806A9B54; // type:function size:0x98 +fn_806A9BEC = .text:0x806A9BEC; // type:function size:0x34 +fn_806A9C20 = .text:0x806A9C20; // type:function size:0x34 +fn_806A9C54 = .text:0x806A9C54; // type:function size:0x48 +fn_806A9C9C = .text:0x806A9C9C; // type:function size:0x4C +fn_806A9CE8 = .text:0x806A9CE8; // type:function size:0x4 +fn_806A9CEC = .text:0x806A9CEC; // type:function size:0x208 +fn_806A9EF4 = .text:0x806A9EF4; // type:function size:0x598 +fn_806AA48C = .text:0x806AA48C; // type:function size:0xC +fn_806AA498 = .text:0x806AA498; // type:function size:0x8 +fn_806AA4A0 = .text:0x806AA4A0; // type:function size:0x8 +fn_806AA4A8 = .text:0x806AA4A8; // type:function size:0x28 +fn_806AA4D0 = .text:0x806AA4D0; // type:function size:0x90 +fn_806AA560 = .text:0x806AA560; // type:function size:0x80 +fn_806AA5E0 = .text:0x806AA5E0; // type:function size:0xD4 +fn_806AA6B4 = .text:0x806AA6B4; // type:function size:0x160 +fn_806AA814 = .text:0x806AA814; // type:function size:0x43C +fn_806AAC50 = .text:0x806AAC50; // type:function size:0xC +fn_806AAC5C = .text:0x806AAC5C; // type:function size:0x54 +fn_806AACB0 = .text:0x806AACB0; // type:function size:0x974 +fn_806AB624 = .text:0x806AB624; // type:function size:0x8 +fn_806AB62C = .text:0x806AB62C; // type:function size:0xC +fn_806AB638 = .text:0x806AB638; // type:function size:0x304 +fn_806AB93C = .text:0x806AB93C; // type:function size:0x8 +fn_806AB944 = .text:0x806AB944; // type:function size:0x8 +fn_806AB94C = .text:0x806AB94C; // type:function size:0x68 +fn_806AB9B4 = .text:0x806AB9B4; // type:function size:0xC +fn_806AB9C0 = .text:0x806AB9C0; // type:function size:0x294 +fn_806ABC54 = .text:0x806ABC54; // type:function size:0x8 +fn_806ABC5C = .text:0x806ABC5C; // type:function size:0xC +fn_806ABC68 = .text:0x806ABC68; // type:function size:0x8C +fn_806ABCF4 = .text:0x806ABCF4; // type:function size:0x48 +fn_806ABD3C = .text:0x806ABD3C; // type:function size:0x4 +fn_806ABD40 = .text:0x806ABD40; // type:function size:0x128 +fn_806ABE68 = .text:0x806ABE68; // type:function size:0x74 +fn_806ABEDC = .text:0x806ABEDC; // type:function size:0x5C +fn_806ABF38 = .text:0x806ABF38; // type:function size:0x14 +fn_806ABF4C = .text:0x806ABF4C; // type:function size:0x54 +fn_806ABFA0 = .text:0x806ABFA0; // type:function size:0x88 +fn_806AC028 = .text:0x806AC028; // type:function size:0x40 +fn_806AC068 = .text:0x806AC068; // type:function size:0xC8 +fn_806AC130 = .text:0x806AC130; // type:function size:0x4C +fn_806AC17C = .text:0x806AC17C; // type:function size:0x58 +fn_806AC1D4 = .text:0x806AC1D4; // type:function size:0x30 +fn_806AC204 = .text:0x806AC204; // type:function size:0xE0 +fn_806AC2E4 = .text:0x806AC2E4; // type:function size:0x88 +fn_806AC36C = .text:0x806AC36C; // type:function size:0x1C +fn_806AC388 = .text:0x806AC388; // type:function size:0x30 +fn_806AC3B8 = .text:0x806AC3B8; // type:function size:0x40 +fn_806AC3F8 = .text:0x806AC3F8; // type:function size:0x114 +fn_806AC50C = .text:0x806AC50C; // type:function size:0x1BC +fn_806AC6C8 = .text:0x806AC6C8; // type:function size:0x50 +fn_806AC718 = .text:0x806AC718; // type:function size:0x1EC +fn_806AC904 = .text:0x806AC904; // type:function size:0x34 +fn_806AC938 = .text:0x806AC938; // type:function size:0x48 +fn_806AC980 = .text:0x806AC980; // type:function size:0x4C +fn_806AC9CC = .text:0x806AC9CC; // type:function size:0x80 +fn_806ACA4C = .text:0x806ACA4C; // type:function size:0x134 +fn_806ACB80 = .text:0x806ACB80; // type:function size:0x14C +fn_806ACCCC = .text:0x806ACCCC; // type:function size:0xE0 +fn_806ACDAC = .text:0x806ACDAC; // type:function size:0x578 +fn_806AD324 = .text:0x806AD324; // type:function size:0x164 +fn_806AD488 = .text:0x806AD488; // type:function size:0x2B0 +fn_806AD738 = .text:0x806AD738; // type:function size:0x9A0 +fn_806AE0D8 = .text:0x806AE0D8; // type:function size:0x10 +fn_806AE0E8 = .text:0x806AE0E8; // type:function size:0x24 +fn_806AE10C = .text:0x806AE10C; // type:function size:0x1C +fn_806AE128 = .text:0x806AE128; // type:function size:0x6C +fn_806AE194 = .text:0x806AE194; // type:function size:0xCC +fn_806AE260 = .text:0x806AE260; // type:function size:0x10C +fn_806AE36C = .text:0x806AE36C; // type:function size:0x134 +fn_806AE4A0 = .text:0x806AE4A0; // type:function size:0x20 +fn_806AE4C0 = .text:0x806AE4C0; // type:function size:0x48 +fn_806AE508 = .text:0x806AE508; // type:function size:0x370 +fn_806AE878 = .text:0x806AE878; // type:function size:0x10 +fn_806AE888 = .text:0x806AE888; // type:function size:0x324 +fn_806AEBAC = .text:0x806AEBAC; // type:function size:0x2C0 +fn_806AEE6C = .text:0x806AEE6C; // type:function size:0x258 +fn_806AF0C4 = .text:0x806AF0C4; // type:function size:0x2D8 +fn_806AF39C = .text:0x806AF39C; // type:function size:0xA8 +fn_806AF444 = .text:0x806AF444; // type:function size:0x320 +fn_806AF764 = .text:0x806AF764; // type:function size:0x2B4 +fn_806AFA18 = .text:0x806AFA18; // type:function size:0x254 +fn_806AFC6C = .text:0x806AFC6C; // type:function size:0x2D4 +fn_806AFF40 = .text:0x806AFF40; // type:function size:0x21C +fn_806B015C = .text:0x806B015C; // type:function size:0xD2C +fn_806B0E88 = .text:0x806B0E88; // type:function size:0x8 +fn_806B0E90 = .text:0x806B0E90; // type:function size:0x18 +fn_806B0EA8 = .text:0x806B0EA8; // type:function size:0x18 +fn_806B0EC0 = .text:0x806B0EC0; // type:function size:0xC +fn_806B0ECC = .text:0x806B0ECC; // type:function size:0x260 +fn_806B112C = .text:0x806B112C; // type:function size:0xC +fn_806B1138 = .text:0x806B1138; // type:function size:0xC +fn_806B1144 = .text:0x806B1144; // type:function size:0x14 +fn_806B1158 = .text:0x806B1158; // type:function size:0xC +fn_806B1164 = .text:0x806B1164; // type:function size:0x68 +fn_806B11CC = .text:0x806B11CC; // type:function size:0x144 +fn_806B1310 = .text:0x806B1310; // type:function size:0x4 +fn_806B1314 = .text:0x806B1314; // type:function size:0x14 +fn_806B1328 = .text:0x806B1328; // type:function size:0x14 +fn_806B133C = .text:0x806B133C; // type:function size:0x14 +fn_806B1350 = .text:0x806B1350; // type:function size:0x14 +fn_806B1364 = .text:0x806B1364; // type:function size:0x14 +fn_806B1378 = .text:0x806B1378; // type:function size:0x14 +fn_806B138C = .text:0x806B138C; // type:function size:0x14 +fn_806B13A0 = .text:0x806B13A0; // type:function size:0x14 +fn_806B13B4 = .text:0x806B13B4; // type:function size:0x14 +fn_806B13C8 = .text:0x806B13C8; // type:function size:0x14 +fn_806B13DC = .text:0x806B13DC; // type:function size:0x14 +fn_806B13F0 = .text:0x806B13F0; // type:function size:0x14 +fn_806B1404 = .text:0x806B1404; // type:function size:0x14 +fn_806B1418 = .text:0x806B1418; // type:function size:0x14 +fn_806B142C = .text:0x806B142C; // type:function size:0x8 +fn_806B1434 = .text:0x806B1434; // type:function size:0x8 +fn_806B143C = .text:0x806B143C; // type:function size:0x8 +fn_806B1444 = .text:0x806B1444; // type:function size:0x8 +fn_806B144C = .text:0x806B144C; // type:function size:0x8C +fn_806B14D8 = .text:0x806B14D8; // type:function size:0x54 +fn_806B152C = .text:0x806B152C; // type:function size:0x38 +fn_806B1564 = .text:0x806B1564; // type:function size:0xE0 +fn_806B1644 = .text:0x806B1644; // type:function size:0x290 +fn_806B18D4 = .text:0x806B18D4; // type:function size:0xD8 +fn_806B19AC = .text:0x806B19AC; // type:function size:0xFC +fn_806B1AA8 = .text:0x806B1AA8; // type:function size:0x64 +fn_806B1B0C = .text:0x806B1B0C; // type:function size:0x70 +fn_806B1B7C = .text:0x806B1B7C; // type:function size:0x48 +fn_806B1BC4 = .text:0x806B1BC4; // type:function size:0x78 +fn_806B1C3C = .text:0x806B1C3C; // type:function size:0xA0 +fn_806B1CDC = .text:0x806B1CDC; // type:function size:0x44 +fn_806B1D20 = .text:0x806B1D20; // type:function size:0x134 +fn_806B1E54 = .text:0x806B1E54; // type:function size:0x4C +fn_806B1EA0 = .text:0x806B1EA0; // type:function size:0x4 +fn_806B1EA4 = .text:0x806B1EA4; // type:function size:0x14 +fn_806B1EB8 = .text:0x806B1EB8; // type:function size:0x14 +fn_806B1ECC = .text:0x806B1ECC; // type:function size:0x14 +fn_806B1EE0 = .text:0x806B1EE0; // type:function size:0x14 +fn_806B1EF4 = .text:0x806B1EF4; // type:function size:0x14 +fn_806B1F08 = .text:0x806B1F08; // type:function size:0x14 +fn_806B1F1C = .text:0x806B1F1C; // type:function size:0x14 +fn_806B1F30 = .text:0x806B1F30; // type:function size:0x14 +fn_806B1F44 = .text:0x806B1F44; // type:function size:0x14 +fn_806B1F58 = .text:0x806B1F58; // type:function size:0x14 +fn_806B1F6C = .text:0x806B1F6C; // type:function size:0x14 +fn_806B1F80 = .text:0x806B1F80; // type:function size:0x8 +fn_806B1F88 = .text:0x806B1F88; // type:function size:0x824 +fn_806B27AC = .text:0x806B27AC; // type:function size:0x8 +fn_806B27B4 = .text:0x806B27B4; // type:function size:0x9C +fn_806B2850 = .text:0x806B2850; // type:function size:0x144 +fn_806B2994 = .text:0x806B2994; // type:function size:0x4C +fn_806B29E0 = .text:0x806B29E0; // type:function size:0x4 +fn_806B29E4 = .text:0x806B29E4; // type:function size:0x14 +fn_806B29F8 = .text:0x806B29F8; // type:function size:0x14 +fn_806B2A0C = .text:0x806B2A0C; // type:function size:0x14 +fn_806B2A20 = .text:0x806B2A20; // type:function size:0x14 +fn_806B2A34 = .text:0x806B2A34; // type:function size:0x14 +fn_806B2A48 = .text:0x806B2A48; // type:function size:0x14 +fn_806B2A5C = .text:0x806B2A5C; // type:function size:0x14 +fn_806B2A70 = .text:0x806B2A70; // type:function size:0x14 +fn_806B2A84 = .text:0x806B2A84; // type:function size:0x14 +fn_806B2A98 = .text:0x806B2A98; // type:function size:0x14 +fn_806B2AAC = .text:0x806B2AAC; // type:function size:0x14 +fn_806B2AC0 = .text:0x806B2AC0; // type:function size:0xF0 +fn_806B2BB0 = .text:0x806B2BB0; // type:function size:0xA8 +fn_806B2C58 = .text:0x806B2C58; // type:function size:0x2C +fn_806B2C84 = .text:0x806B2C84; // type:function size:0x34 +fn_806B2CB8 = .text:0x806B2CB8; // type:function size:0x44 +fn_806B2CFC = .text:0x806B2CFC; // type:function size:0x4C +fn_806B2D48 = .text:0x806B2D48; // type:function size:0xB5C +fn_806B38A4 = .text:0x806B38A4; // type:function size:0x50 +fn_806B38F4 = .text:0x806B38F4; // type:function size:0x50 +fn_806B3944 = .text:0x806B3944; // type:function size:0x10 +fn_806B3954 = .text:0x806B3954; // type:function size:0xC +fn_806B3960 = .text:0x806B3960; // type:function size:0x14 +fn_806B3974 = .text:0x806B3974; // type:function size:0x50 +fn_806B39C4 = .text:0x806B39C4; // type:function size:0x58 +fn_806B3A1C = .text:0x806B3A1C; // type:function size:0xC +fn_806B3A28 = .text:0x806B3A28; // type:function size:0xC +fn_806B3A34 = .text:0x806B3A34; // type:function size:0x44 +fn_806B3A78 = .text:0x806B3A78; // type:function size:0xC +fn_806B3A84 = .text:0x806B3A84; // type:function size:0x8 +fn_806B3A8C = .text:0x806B3A8C; // type:function size:0xC +fn_806B3A98 = .text:0x806B3A98; // type:function size:0xC +fn_806B3AA4 = .text:0x806B3AA4; // type:function size:0x8 +fn_806B3AAC = .text:0x806B3AAC; // type:function size:0x74 +fn_806B3B20 = .text:0x806B3B20; // type:function size:0x50 +fn_806B3B70 = .text:0x806B3B70; // type:function size:0x134 +fn_806B3CA4 = .text:0x806B3CA4; // type:function size:0x4 +fn_806B3CA8 = .text:0x806B3CA8; // type:function size:0x8 +fn_806B3CB0 = .text:0x806B3CB0; // type:function size:0x8 +fn_806B3CB8 = .text:0x806B3CB8; // type:function size:0x8 +fn_806B3CC0 = .text:0x806B3CC0; // type:function size:0x8 +fn_806B3CC8 = .text:0x806B3CC8; // type:function size:0x8 +fn_806B3CD0 = .text:0x806B3CD0; // type:function size:0x8 +fn_806B3CD8 = .text:0x806B3CD8; // type:function size:0x14 +fn_806B3CEC = .text:0x806B3CEC; // type:function size:0x14 +fn_806B3D00 = .text:0x806B3D00; // type:function size:0x14 +fn_806B3D14 = .text:0x806B3D14; // type:function size:0x14 +fn_806B3D28 = .text:0x806B3D28; // type:function size:0x8 +fn_806B3D30 = .text:0x806B3D30; // type:function size:0x8 +fn_806B3D38 = .text:0x806B3D38; // type:function size:0x8 +fn_806B3D40 = .text:0x806B3D40; // type:function size:0x8 +fn_806B3D48 = .text:0x806B3D48; // type:function size:0xC +fn_806B3D54 = .text:0x806B3D54; // type:function size:0x138 +OnOverride__22@unnamed@PostProc_cpp@FP9DataArray = .text:0x806B3E8C; // type:function size:0xE0 +OnBloom__22@unnamed@PostProc_cpp@FP9DataArray = .text:0x806B3F6C; // type:function size:0x1CC +fn_806B4138 = .text:0x806B4138; // type:function size:0x8 +OnNoise__22@unnamed@PostProc_cpp@FP9DataArray = .text:0x806B4140; // type:function size:0x21C +fn_806B435C = .text:0x806B435C; // type:function size:0x8 +fn_806B4364 = .text:0x806B4364; // type:function size:0x8 +OnColorCorrect__22@unnamed@PostProc_cpp@FP9DataArray = .text:0x806B436C; // type:function size:0x23C +fn_806B45A8 = .text:0x806B45A8; // type:function size:0x8 +fn_806B45B0 = .text:0x806B45B0; // type:function size:0x8 +fn_806B45B8 = .text:0x806B45B8; // type:function size:0x8 +fn_806B45C0 = .text:0x806B45C0; // type:function size:0x8 +OnChromatic__22@unnamed@PostProc_cpp@FP9DataArray = .text:0x806B45C8; // type:function size:0x100 +fn_806B46C8 = .text:0x806B46C8; // type:function size:0x8 +OnGradient__22@unnamed@PostProc_cpp@FP9DataArray = .text:0x806B46D0; // type:function size:0x1A4 +OnMotionBlur__22@unnamed@PostProc_cpp@FP9DataArray = .text:0x806B4874; // type:function size:0x88 +OnToggleMotionBlur__22@unnamed@PostProc_cpp@FP9DataArray = .text:0x806B48FC; // type:function size:0x18 +OnLightTrails__22@unnamed@PostProc_cpp@FP9DataArray = .text:0x806B4914; // type:function size:0x138 +fn_806B4A4C = .text:0x806B4A4C; // type:function size:0x8 +fn_806B4A54 = .text:0x806B4A54; // type:function size:0x8 +OnKaleidoscope__22@unnamed@PostProc_cpp@FP9DataArray = .text:0x806B4A5C; // type:function size:0x1B0 +fn_806B4C0C = .text:0x806B4C0C; // type:function size:0x20 +fn_806B4C2C = .text:0x806B4C2C; // type:function size:0x8 +fn_806B4C34 = .text:0x806B4C34; // type:function size:0x8 +OnRefraction__22@unnamed@PostProc_cpp@FP9DataArray = .text:0x806B4C3C; // type:function size:0x1B8 +fn_806B4DF4 = .text:0x806B4DF4; // type:function size:0x8 +fn_806B4DFC = .text:0x806B4DFC; // type:function size:0x8 +fn_806B4E04 = .text:0x806B4E04; // type:function size:0x98 +Init__11WiiPostProcFv = .text:0x806B4E9C; // type:function size:0x174 +fn_806B5010 = .text:0x806B5010; // type:function size:0x34 +fn_806B5044 = .text:0x806B5044; // type:function size:0x34 +fn_806B5078 = .text:0x806B5078; // type:function size:0x4C +fn_806B50C4 = .text:0x806B50C4; // type:function size:0x4 +fn_806B50C8 = .text:0x806B50C8; // type:function size:0x6C +fn_806B5134 = .text:0x806B5134; // type:function size:0x9C +fn_806B51D0 = .text:0x806B51D0; // type:function size:0x44 +fn_806B5214 = .text:0x806B5214; // type:function size:0x44 +fn_806B5258 = .text:0x806B5258; // type:function size:0x5C +fn_806B52B4 = .text:0x806B52B4; // type:function size:0xE8 +fn_806B539C = .text:0x806B539C; // type:function size:0x45C +fn_806B57F8 = .text:0x806B57F8; // type:function size:0xC +fn_806B5804 = .text:0x806B5804; // type:function size:0x4 +fn_806B5808 = .text:0x806B5808; // type:function size:0x4 +fn_806B580C = .text:0x806B580C; // type:function size:0x2F4 +fn_806B5B00 = .text:0x806B5B00; // type:function size:0x1C +fn_806B5B1C = .text:0x806B5B1C; // type:function size:0x4 +fn_806B5B20 = .text:0x806B5B20; // type:function size:0x2F0 +fn_806B5E10 = .text:0x806B5E10; // type:function size:0x260 +fn_806B6070 = .text:0x806B6070; // type:function size:0x4 +fn_806B6074 = .text:0x806B6074; // type:function size:0x860 +fn_806B68D4 = .text:0x806B68D4; // type:function size:0x8 +fn_806B68DC = .text:0x806B68DC; // type:function size:0xAC +fn_806B6988 = .text:0x806B6988; // type:function size:0xA18 +fn_806B73A0 = .text:0x806B73A0; // type:function size:0x10 +fn_806B73B0 = .text:0x806B73B0; // type:function size:0x14 +fn_806B73C4 = .text:0x806B73C4; // type:function size:0x10 +fn_806B73D4 = .text:0x806B73D4; // type:function size:0x4 +fn_806B73D8 = .text:0x806B73D8; // type:function size:0x1D8 +fn_806B75B0 = .text:0x806B75B0; // type:function size:0x4 +fn_806B75B4 = .text:0x806B75B4; // type:function size:0x128 +fn_806B76DC = .text:0x806B76DC; // type:function size:0xC +fn_806B76E8 = .text:0x806B76E8; // type:function size:0x8 +fn_806B76F0 = .text:0x806B76F0; // type:function size:0x8 +fn_806B76F8 = .text:0x806B76F8; // type:function size:0x8 +fn_806B7700 = .text:0x806B7700; // type:function size:0x8 +fn_806B7708 = .text:0x806B7708; // type:function size:0x8 +fn_806B7710 = .text:0x806B7710; // type:function size:0x8 +fn_806B7718 = .text:0x806B7718; // type:function size:0x18 +fn_806B7730 = .text:0x806B7730; // type:function size:0x50 +fn_806B7780 = .text:0x806B7780; // type:function size:0xE8 +fn_806B7868 = .text:0x806B7868; // type:function size:0x64 +fn_806B78CC = .text:0x806B78CC; // type:function size:0xC +fn_806B78D8 = .text:0x806B78D8; // type:function size:0x1C +fn_806B78F4 = .text:0x806B78F4; // type:function size:0x2C +fn_806B7920 = .text:0x806B7920; // type:function size:0x84 +fn_806B79A4 = .text:0x806B79A4; // type:function size:0xAC +fn_806B7A50 = .text:0x806B7A50; // type:function size:0x94 +fn_806B7AE4 = .text:0x806B7AE4; // type:function size:0x68 +fn_806B7B4C = .text:0x806B7B4C; // type:function size:0x24 +fn_806B7B70 = .text:0x806B7B70; // type:function size:0x11C +fn_806B7C8C = .text:0x806B7C8C; // type:function size:0x2C +fn_806B7CB8 = .text:0x806B7CB8; // type:function size:0x84 +fn_806B7D3C = .text:0x806B7D3C; // type:function size:0x28 +fn_806B7D64 = .text:0x806B7D64; // type:function size:0x68 +fn_806B7DCC = .text:0x806B7DCC; // type:function size:0x28 +fn_806B7DF4 = .text:0x806B7DF4; // type:function size:0x39C +fn_806B8190 = .text:0x806B8190; // type:function size:0x4 +fn_806B8194 = .text:0x806B8194; // type:function size:0x3C +fn_806B81D0 = .text:0x806B81D0; // type:function size:0x40 +fn_806B8210 = .text:0x806B8210; // type:function size:0x8C +fn_806B829C = .text:0x806B829C; // type:function size:0x8 +fn_806B82A4 = .text:0x806B82A4; // type:function size:0x2C +fn_806B82D0 = .text:0x806B82D0; // type:function size:0x58 +fn_806B8328 = .text:0x806B8328; // type:function size:0x80 +fn_806B83A8 = .text:0x806B83A8; // type:function size:0x3C +fn_806B83E4 = .text:0x806B83E4; // type:function size:0x54 +fn_806B8438 = .text:0x806B8438; // type:function size:0x110 +fn_806B8548 = .text:0x806B8548; // type:function size:0x58 +fn_806B85A0 = .text:0x806B85A0; // type:function size:0x80 +fn_806B8620 = .text:0x806B8620; // type:function size:0x80 +fn_806B86A0 = .text:0x806B86A0; // type:function size:0x58 +fn_806B86F8 = .text:0x806B86F8; // type:function size:0x54 +fn_806B874C = .text:0x806B874C; // type:function size:0x5C +fn_806B87A8 = .text:0x806B87A8; // type:function size:0x6C +fn_806B8814 = .text:0x806B8814; // type:function size:0x28 +fn_806B883C = .text:0x806B883C; // type:function size:0x8 +fn_806B8844 = .text:0x806B8844; // type:function size:0x3C +fn_806B8880 = .text:0x806B8880; // type:function size:0x4 +fn_806B8884 = .text:0x806B8884; // type:function size:0x30 +fn_806B88B4 = .text:0x806B88B4; // type:function size:0x30 +fn_806B88E4 = .text:0x806B88E4; // type:function size:0x40 +fn_806B8924 = .text:0x806B8924; // type:function size:0x68 +fn_806B898C = .text:0x806B898C; // type:function size:0x20 +fn_806B89AC = .text:0x806B89AC; // type:function size:0x8 +fn_806B89B4 = .text:0x806B89B4; // type:function size:0x170 +fn_806B8B24 = .text:0x806B8B24; // type:function size:0x5E0 +fn_806B9104 = .text:0x806B9104; // type:function size:0x98 +fn_806B919C = .text:0x806B919C; // type:function size:0x17C +fn_806B9318 = .text:0x806B9318; // type:function size:0x34 +fn_806B934C = .text:0x806B934C; // type:function size:0x30 +fn_806B937C = .text:0x806B937C; // type:function size:0x34 +fn_806B93B0 = .text:0x806B93B0; // type:function size:0x48 +fn_806B93F8 = .text:0x806B93F8; // type:function size:0x4C +fn_806B9444 = .text:0x806B9444; // type:function size:0x34 +fn_806B9478 = .text:0x806B9478; // type:function size:0x44 +fn_806B94BC = .text:0x806B94BC; // type:function size:0x34 +fn_806B94F0 = .text:0x806B94F0; // type:function size:0x48 +fn_806B9538 = .text:0x806B9538; // type:function size:0xB8 +fn_806B95F0 = .text:0x806B95F0; // type:function size:0x34 +fn_806B9624 = .text:0x806B9624; // type:function size:0x48 +fn_806B966C = .text:0x806B966C; // type:function size:0xB0 +fn_806B971C = .text:0x806B971C; // type:function size:0x4C +fn_806B9768 = .text:0x806B9768; // type:function size:0x34 +fn_806B979C = .text:0x806B979C; // type:function size:0x34 +fn_806B97D0 = .text:0x806B97D0; // type:function size:0x34 +fn_806B9804 = .text:0x806B9804; // type:function size:0x48 +fn_806B984C = .text:0x806B984C; // type:function size:0x2C +fn_806B9878 = .text:0x806B9878; // type:function size:0x34 +fn_806B98AC = .text:0x806B98AC; // type:function size:0x38 +fn_806B98E4 = .text:0x806B98E4; // type:function size:0x4C +fn_806B9930 = .text:0x806B9930; // type:function size:0x204 +fn_806B9B34 = .text:0x806B9B34; // type:function size:0xFC +fn_806B9C30 = .text:0x806B9C30; // type:function size:0x4 +fn_806B9C34 = .text:0x806B9C34; // type:function size:0x58 +fn_806B9C8C = .text:0x806B9C8C; // type:function size:0x8 +fn_806B9C94 = .text:0x806B9C94; // type:function size:0x34 +fn_806B9CC8 = .text:0x806B9CC8; // type:function size:0x220 +fn_806B9EE8 = .text:0x806B9EE8; // type:function size:0xE8 +fn_806B9FD0 = .text:0x806B9FD0; // type:function size:0x4 +fn_806B9FD4 = .text:0x806B9FD4; // type:function size:0x2C +fn_806BA000 = .text:0x806BA000; // type:function size:0xC4 +fn_806BA0C4 = .text:0x806BA0C4; // type:function size:0x3C +fn_806BA100 = .text:0x806BA100; // type:function size:0x3C +fn_806BA13C = .text:0x806BA13C; // type:function size:0x38 +fn_806BA174 = .text:0x806BA174; // type:function size:0x78 +fn_806BA1EC = .text:0x806BA1EC; // type:function size:0x218 +fn_806BA404 = .text:0x806BA404; // type:function size:0x10 +fn_806BA414 = .text:0x806BA414; // type:function size:0x12C +fn_806BA540 = .text:0x806BA540; // type:function size:0x1C0 +fn_806BA700 = .text:0x806BA700; // type:function size:0x4 +fn_806BA704 = .text:0x806BA704; // type:function size:0x88 +fn_806BA78C = .text:0x806BA78C; // type:function size:0x2C +fn_806BA7B8 = .text:0x806BA7B8; // type:function size:0x4 +fn_806BA7BC = .text:0x806BA7BC; // type:function size:0x24C +fn_806BAA08 = .text:0x806BAA08; // type:function size:0x10 +fn_806BAA18 = .text:0x806BAA18; // type:function size:0xC +fn_806BAA24 = .text:0x806BAA24; // type:function size:0x14 +fn_806BAA38 = .text:0x806BAA38; // type:function size:0xD4 +fn_806BAB0C = .text:0x806BAB0C; // type:function size:0x38 +fn_806BAB44 = .text:0x806BAB44; // type:function size:0x394 +fn_806BAED8 = .text:0x806BAED8; // type:function size:0x10 +fn_806BAEE8 = .text:0x806BAEE8; // type:function size:0x14 +fn_806BAEFC = .text:0x806BAEFC; // type:function size:0xC +fn_806BAF08 = .text:0x806BAF08; // type:function size:0xB8 +fn_806BAFC0 = .text:0x806BAFC0; // type:function size:0x54 +fn_806BB014 = .text:0x806BB014; // type:function size:0x40 +fn_806BB054 = .text:0x806BB054; // type:function size:0xC4 +fn_806BB118 = .text:0x806BB118; // type:function size:0x1C4 +fn_806BB2DC = .text:0x806BB2DC; // type:function size:0x14 +fn_806BB2F0 = .text:0x806BB2F0; // type:function size:0x14 +fn_806BB304 = .text:0x806BB304; // type:function size:0x14 +fn_806BB318 = .text:0x806BB318; // type:function size:0x6B0 +fn_806BB9C8 = .text:0x806BB9C8; // type:function size:0x58 +fn_806BBA20 = .text:0x806BBA20; // type:function size:0x64 +fn_806BBA84 = .text:0x806BBA84; // type:function size:0x54 +fn_806BBAD8 = .text:0x806BBAD8; // type:function size:0x2A8 +fn_806BBD80 = .text:0x806BBD80; // type:function size:0xFC +fn_806BBE7C = .text:0x806BBE7C; // type:function size:0xB0 +fn_806BBF2C = .text:0x806BBF2C; // type:function size:0xD4 +fn_806BC000 = .text:0x806BC000; // type:function size:0x44 +fn_806BC044 = .text:0x806BC044; // type:function size:0x29C +fn_806BC2E0 = .text:0x806BC2E0; // type:function size:0x18 +fn_806BC2F8 = .text:0x806BC2F8; // type:function size:0x58 +fn_806BC350 = .text:0x806BC350; // type:function size:0x8 +fn_806BC358 = .text:0x806BC358; // type:function size:0xA4 +fn_806BC3FC = .text:0x806BC3FC; // type:function size:0x8 +fn_806BC404 = .text:0x806BC404; // type:function size:0x8 +fn_806BC40C = .text:0x806BC40C; // type:function size:0xE4 +fn_806BC4F0 = .text:0x806BC4F0; // type:function size:0x10 +fn_806BC500 = .text:0x806BC500; // type:function size:0xB0 +fn_806BC5B0 = .text:0x806BC5B0; // type:function size:0x30 +fn_806BC5E0 = .text:0x806BC5E0; // type:function size:0x2E0 +fn_806BC8C0 = .text:0x806BC8C0; // type:function size:0x38 +fn_806BC8F8 = .text:0x806BC8F8; // type:function size:0x1C +fn_806BC914 = .text:0x806BC914; // type:function size:0x10 +fn_806BC924 = .text:0x806BC924; // type:function size:0x38 +fn_806BC95C = .text:0x806BC95C; // type:function size:0x4 +fn_806BC960 = .text:0x806BC960; // type:function size:0xF0 +fn_806BCA50 = .text:0x806BCA50; // type:function size:0xC +fn_806BCA5C = .text:0x806BCA5C; // type:function size:0x2BC +fn_806BCD18 = .text:0x806BCD18; // type:function size:0x294 +fn_806BCFAC = .text:0x806BCFAC; // type:function size:0x18 +fn_806BCFC4 = .text:0x806BCFC4; // type:function size:0x90 +fn_806BD054 = .text:0x806BD054; // type:function size:0x298 +fn_806BD2EC = .text:0x806BD2EC; // type:function size:0xD4 +fn_806BD3C0 = .text:0x806BD3C0; // type:function size:0x5C +fn_806BD41C = .text:0x806BD41C; // type:function size:0xC +fn_806BD428 = .text:0x806BD428; // type:function size:0x74 +fn_806BD49C = .text:0x806BD49C; // type:function size:0x4 +fn_806BD4A0 = .text:0x806BD4A0; // type:function size:0x60 +fn_806BD500 = .text:0x806BD500; // type:function size:0x2C +fn_806BD52C = .text:0x806BD52C; // type:function size:0xC +fn_806BD538 = .text:0x806BD538; // type:function size:0x50 +fn_806BD588 = .text:0x806BD588; // type:function size:0x9C +fn_806BD624 = .text:0x806BD624; // type:function size:0xCC +fn_806BD6F0 = .text:0x806BD6F0; // type:function size:0x60 +fn_806BD750 = .text:0x806BD750; // type:function size:0x5C +fn_806BD7AC = .text:0x806BD7AC; // type:function size:0x60 +fn_806BD80C = .text:0x806BD80C; // type:function size:0x5C +fn_806BD868 = .text:0x806BD868; // type:function size:0x114 +fn_806BD97C = .text:0x806BD97C; // type:function size:0x5C +fn_806BD9D8 = .text:0x806BD9D8; // type:function size:0x54 +fn_806BDA2C = .text:0x806BDA2C; // type:function size:0x5C +fn_806BDA88 = .text:0x806BDA88; // type:function size:0x34 +fn_806BDABC = .text:0x806BDABC; // type:function size:0x34 +fn_806BDAF0 = .text:0x806BDAF0; // type:function size:0x34 +fn_806BDB24 = .text:0x806BDB24; // type:function size:0xC +fn_806BDB30 = .text:0x806BDB30; // type:function size:0x34 +fn_806BDB64 = .text:0x806BDB64; // type:function size:0x34 +fn_806BDB98 = .text:0x806BDB98; // type:function size:0x144 +fn_806BDCDC = .text:0x806BDCDC; // type:function size:0x4 +fn_806BDCE0 = .text:0x806BDCE0; // type:function size:0x10 +fn_806BDCF0 = .text:0x806BDCF0; // type:function size:0x94 +fn_806BDD84 = .text:0x806BDD84; // type:function size:0x1C +fn_806BDDA0 = .text:0x806BDDA0; // type:function size:0x40 +fn_806BDDE0 = .text:0x806BDDE0; // type:function size:0x30 +fn_806BDE10 = .text:0x806BDE10; // type:function size:0x8 +fn_806BDE18 = .text:0x806BDE18; // type:function size:0x8 +fn_806BDE20 = .text:0x806BDE20; // type:function size:0x8 +fn_806BDE28 = .text:0x806BDE28; // type:function size:0x8 +fn_806BDE30 = .text:0x806BDE30; // type:function size:0x8 +fn_806BDE38 = .text:0x806BDE38; // type:function size:0x8 +fn_806BDE40 = .text:0x806BDE40; // type:function size:0x8 +fn_806BDE48 = .text:0x806BDE48; // type:function size:0x8 +fn_806BDE50 = .text:0x806BDE50; // type:function size:0x8 +fn_806BDE58 = .text:0x806BDE58; // type:function size:0x8 +fn_806BDE60 = .text:0x806BDE60; // type:function size:0x8 +fn_806BDE68 = .text:0x806BDE68; // type:function size:0x8 +fn_806BDE70 = .text:0x806BDE70; // type:function size:0x14 +fn_806BDE84 = .text:0x806BDE84; // type:function size:0x14 +fn_806BDE98 = .text:0x806BDE98; // type:function size:0x14 +fn_806BDEAC = .text:0x806BDEAC; // type:function size:0x14 +fn_806BDEC0 = .text:0x806BDEC0; // type:function size:0x14 +fn_806BDED4 = .text:0x806BDED4; // type:function size:0x14 +fn_806BDEE8 = .text:0x806BDEE8; // type:function size:0x14 +fn_806BDEFC = .text:0x806BDEFC; // type:function size:0x14 +fn_806BDF10 = .text:0x806BDF10; // type:function size:0x14 +fn_806BDF24 = .text:0x806BDF24; // type:function size:0x14 +fn_806BDF38 = .text:0x806BDF38; // type:function size:0x14 +fn_806BDF4C = .text:0x806BDF4C; // type:function size:0x14 +__ct__16WiiSplitPostProcFv = .text:0x806BDF60; // type:function size:0xA4 +__dt__16WiiSplitPostProcFv = .text:0x806BE004; // type:function size:0xA0 +fn_806BE0A4 = .text:0x806BE0A4; // type:function size:0x88 +fn_806BE12C = .text:0x806BE12C; // type:function size:0x84 +fn_806BE1B0 = .text:0x806BE1B0; // type:function size:0x4 +fn_806BE1B4 = .text:0x806BE1B4; // type:function size:0x148 +fn_806BE2FC = .text:0x806BE2FC; // type:function size:0x264 +fn_806BE560 = .text:0x806BE560; // type:function size:0xC +fn_806BE56C = .text:0x806BE56C; // type:function size:0x2C8 +fn_806BE834 = .text:0x806BE834; // type:function size:0x3C +fn_806BE870 = .text:0x806BE870; // type:function size:0x164 +fn_806BE9D4 = .text:0x806BE9D4; // type:function size:0xC +__ct__6WiiTexFv = .text:0x806BE9E0; // type:function size:0x60 +__dt__6WiiTexFv = .text:0x806BEA40; // type:function size:0x6C +fn_806BEAAC = .text:0x806BEAAC; // type:function size:0x10 +fn_806BEABC = .text:0x806BEABC; // type:function size:0x4 +fn_806BEAC0 = .text:0x806BEAC0; // type:function size:0x4C +fn_806BEB0C = .text:0x806BEB0C; // type:function size:0x7F0 +fn_806BF2FC = .text:0x806BF2FC; // type:function size:0x20 +fn_806BF31C = .text:0x806BF31C; // type:function size:0x20 +fn_806BF33C = .text:0x806BF33C; // type:function size:0x4 +fn_806BF340 = .text:0x806BF340; // type:function size:0x20 +fn_806BF360 = .text:0x806BF360; // type:function size:0x20 +fn_806BF380 = .text:0x806BF380; // type:function size:0x20 +fn_806BF3A0 = .text:0x806BF3A0; // type:function size:0x20 +fn_806BF3C0 = .text:0x806BF3C0; // type:function size:0x1C +fn_806BF3DC = .text:0x806BF3DC; // type:function size:0x14C +fn_806BF528 = .text:0x806BF528; // type:function size:0xC +fn_806BF534 = .text:0x806BF534; // type:function size:0xC +fn_806BF540 = .text:0x806BF540; // type:function size:0xC +fn_806BF54C = .text:0x806BF54C; // type:function size:0x3C +fn_806BF588 = .text:0x806BF588; // type:function size:0x6C +fn_806BF5F4 = .text:0x806BF5F4; // type:function size:0x4 +fn_806BF5F8 = .text:0x806BF5F8; // type:function size:0x40 +fn_806BF638 = .text:0x806BF638; // type:function size:0xAC +fn_806BF6E4 = .text:0x806BF6E4; // type:function size:0xC +fn_806BF6F0 = .text:0x806BF6F0; // type:function size:0xD4 +fn_806BF7C4 = .text:0x806BF7C4; // type:function size:0x74 +fn_806BF838 = .text:0x806BF838; // type:function size:0x40 +fn_806BF878 = .text:0x806BF878; // type:function size:0xC +fn_806BF884 = .text:0x806BF884; // type:function size:0x8C +fn_806BF910 = .text:0x806BF910; // type:function size:0x10 +fn_806BF920 = .text:0x806BF920; // type:function size:0xA4 +fn_806BF9C4 = .text:0x806BF9C4; // type:function size:0xD4 +fn_806BFA98 = .text:0x806BFA98; // type:function size:0x4C +fn_806BFAE4 = .text:0x806BFAE4; // type:function size:0x60 +fn_806BFB44 = .text:0x806BFB44; // type:function size:0xC +fn_806BFB50 = .text:0x806BFB50; // type:function size:0x110 +fn_806BFC60 = .text:0x806BFC60; // type:function size:0x84 +fn_806BFCE4 = .text:0x806BFCE4; // type:function size:0x4 +fn_806BFCE8 = .text:0x806BFCE8; // type:function size:0x24 +fn_806BFD0C = .text:0x806BFD0C; // type:function size:0x2B8 +fn_806BFFC4 = .text:0x806BFFC4; // type:function size:0x1B0 +fn_806C0174 = .text:0x806C0174; // type:function size:0xC +fn_806C0180 = .text:0x806C0180; // type:function size:0x40 +fn_806C01C0 = .text:0x806C01C0; // type:function size:0x20 +fn_806C01E0 = .text:0x806C01E0; // type:function size:0xA4 +fn_806C0284 = .text:0x806C0284; // type:function size:0x8 +fn_806C028C = .text:0x806C028C; // type:function size:0xD0 +fn_806C035C = .text:0x806C035C; // type:function size:0xF8 +fn_806C0454 = .text:0x806C0454; // type:function size:0x108 +fn_806C055C = .text:0x806C055C; // type:function size:0x5C +fn_806C05B8 = .text:0x806C05B8; // type:function size:0x15C +fn_806C0714 = .text:0x806C0714; // type:function size:0x44 +fn_806C0758 = .text:0x806C0758; // type:function size:0x4 +fn_806C075C = .text:0x806C075C; // type:function size:0x128 +fn_806C0884 = .text:0x806C0884; // type:function size:0x44 +fn_806C08C8 = .text:0x806C08C8; // type:function size:0x108 +fn_806C09D0 = .text:0x806C09D0; // type:function size:0x5C +fn_806C0A2C = .text:0x806C0A2C; // type:function size:0x48 +fn_806C0A74 = .text:0x806C0A74; // type:function size:0x58 +fn_806C0ACC = .text:0x806C0ACC; // type:function size:0x60 +fn_806C0B2C = .text:0x806C0B2C; // type:function size:0x58 +fn_806C0B84 = .text:0x806C0B84; // type:function size:0x58 +fn_806C0BDC = .text:0x806C0BDC; // type:function size:0x50 +fn_806C0C2C = .text:0x806C0C2C; // type:function size:0x44 +fn_806C0C70 = .text:0x806C0C70; // type:function size:0x3C +fn_806C0CAC = .text:0x806C0CAC; // type:function size:0x70 +fn_806C0D1C = .text:0x806C0D1C; // type:function size:0x6C +fn_806C0D88 = .text:0x806C0D88; // type:function size:0xC4 +fn_806C0E4C = .text:0x806C0E4C; // type:function size:0x98 +fn_806C0EE4 = .text:0x806C0EE4; // type:function size:0x50 +fn_806C0F34 = .text:0x806C0F34; // type:function size:0x58 +fn_806C0F8C = .text:0x806C0F8C; // type:function size:0x144 +fn_806C10D0 = .text:0x806C10D0; // type:function size:0x4 +fn_806C10D4 = .text:0x806C10D4; // type:function size:0x14 +fn_806C10E8 = .text:0x806C10E8; // type:function size:0x8 +fn_806C10F0 = .text:0x806C10F0; // type:function size:0x8 +fn_806C10F8 = .text:0x806C10F8; // type:function size:0x8 +fn_806C1100 = .text:0x806C1100; // type:function size:0x14 +fn_806C1114 = .text:0x806C1114; // type:function size:0x14 +fn_806C1128 = .text:0x806C1128; // type:function size:0x14 +fn_806C113C = .text:0x806C113C; // type:function size:0x8 +fn_806C1144 = .text:0x806C1144; // type:function size:0x8 +fn_806C114C = .text:0x806C114C; // type:function size:0x8 +fn_806C1154 = .text:0x806C1154; // type:function size:0x8 +fn_806C115C = .text:0x806C115C; // type:function size:0x4 +fn_806C1160 = .text:0x806C1160; // type:function size:0x4 +fn_806C1164 = .text:0x806C1164; // type:function size:0xC +fn_806C1170 = .text:0x806C1170; // type:function size:0xDC +fn_806C124C = .text:0x806C124C; // type:function size:0x14 +fn_806C1260 = .text:0x806C1260; // type:function size:0x90 +fn_806C12F0 = .text:0x806C12F0; // type:function size:0x48 +fn_806C1338 = .text:0x806C1338; // type:function size:0xB0 +fn_806C13E8 = .text:0x806C13E8; // type:function size:0x4 +fn_806C13EC = .text:0x806C13EC; // type:function size:0x74 +fn_806C1460 = .text:0x806C1460; // type:function size:0x84 +fn_806C14E4 = .text:0x806C14E4; // type:function size:0x20 +fn_806C1504 = .text:0x806C1504; // type:function size:0x64 +fn_806C1568 = .text:0x806C1568; // type:function size:0x8C +fn_806C15F4 = .text:0x806C15F4; // type:function size:0x1B8 +fn_806C17AC = .text:0x806C17AC; // type:function size:0x290 +fn_806C1A3C = .text:0x806C1A3C; // type:function size:0xEC +fn_806C1B28 = .text:0x806C1B28; // type:function size:0x80 +fn_806C1BA8 = .text:0x806C1BA8; // type:function size:0x5C +fn_806C1C04 = .text:0x806C1C04; // type:function size:0x5C +fn_806C1C60 = .text:0x806C1C60; // type:function size:0x40 +fn_806C1CA0 = .text:0x806C1CA0; // type:function size:0x1B4 +fn_806C1E54 = .text:0x806C1E54; // type:function size:0x3C +fn_806C1E90 = .text:0x806C1E90; // type:function size:0x38 +fn_806C1EC8 = .text:0x806C1EC8; // type:function size:0x100 +fn_806C1FC8 = .text:0x806C1FC8; // type:function size:0x168 +fn_806C2130 = .text:0x806C2130; // type:function size:0x14C +fn_806C227C = .text:0x806C227C; // type:function size:0x64 +fn_806C22E0 = .text:0x806C22E0; // type:function size:0x2C +fn_806C230C = .text:0x806C230C; // type:function size:0x140 +fn_806C244C = .text:0x806C244C; // type:function size:0x8C +fn_806C24D8 = .text:0x806C24D8; // type:function size:0x28 +fn_806C2500 = .text:0x806C2500; // type:function size:0x60 +fn_806C2560 = .text:0x806C2560; // type:function size:0x8C +fn_806C25EC = .text:0x806C25EC; // type:function size:0x4 +vorbis_bitrate_clear = .text:0x806C25F0; // type:function size:0x10C +vorbis_bitrate_managed = .text:0x806C26FC; // type:function size:0x18 +oggpack_writeinit = .text:0x806C2714; // type:function size:0x54 +oggpack_write = .text:0x806C2768; // type:function size:0x158 +oggpack_writealign = .text:0x806C28C0; // type:function size:0x1C +oggpack_writeclear = .text:0x806C28DC; // type:function size:0x40 +oggpack_readinit = .text:0x806C291C; // type:function size:0x50 +oggpack_look = .text:0x806C296C; // type:function size:0xC4 +oggpack_adv = .text:0x806C2A30; // type:function size:0x34 +oggpack_read = .text:0x806C2A64; // type:function size:0xEC +oggpack_bytes = .text:0x806C2B50; // type:function size:0x1C +ilog2_block = .text:0x806C2B6C; // type:function size:0x2C +vorbis_block_init = .text:0x806C2B98; // type:function size:0x94 +_vorbis_block_alloc = .text:0x806C2C2C; // type:function size:0xB0 +_vorbis_block_ripcord = .text:0x806C2CDC; // type:function size:0xAC +vorbis_block_clear = .text:0x806C2D88; // type:function size:0x84 +_vds_shared_init = .text:0x806C2E0C; // type:function size:0x3AC +vorbis_dsp_clear = .text:0x806C31B8; // type:function size:0x294 +vorbis_synthesis_restart = .text:0x806C344C; // type:function size:0x88 +vorbis_synthesis_init = .text:0x806C34D4; // type:function size:0x4C +vorbis_synthesis_blockin = .text:0x806C3520; // type:function size:0x6BC +vorbis_synthesis_pcmout = .text:0x806C3BDC; // type:function size:0x80 +vorbis_synthesis_read = .text:0x806C3C5C; // type:function size:0x38 +vorbis_staticbook_unpack = .text:0x806C3C94; // type:function size:0x324 +vorbis_book_encode = .text:0x806C3FB8; // type:function size:0x5C +bitreverse_codebook = .text:0x806C4014; // type:function size:0x84 +decode_packed_entry_number = .text:0x806C4098; // type:function size:0x15C +vorbis_book_decode = .text:0x806C41F4; // type:function size:0x40 +vorbis_book_decodevs_add = .text:0x806C4234; // type:function size:0x12C +vorbis_book_decodev_add = .text:0x806C4360; // type:function size:0x230 +vorbis_book_decodev_set = .text:0x806C4590; // type:function size:0xB4 +vorbis_book_decodevv_add = .text:0x806C4644; // type:function size:0xE0 +_ve_envelope_clear = .text:0x806C4724; // type:function size:0x84 +floor0_free_info = .text:0x806C47A8; // type:function size:0x44 +floor0_free_look = .text:0x806C47EC; // type:function size:0x80 +floor0_unpack = .text:0x806C486C; // type:function size:0x148 +floor0_map_lazy_init = .text:0x806C49B4; // type:function size:0x374 +floor0_look = .text:0x806C4D28; // type:function size:0x68 +floor0_inverse1 = .text:0x806C4D90; // type:function size:0x1E4 +floor0_inverse2 = .text:0x806C4F74; // type:function size:0xD8 +floor1_free_info = .text:0x806C504C; // type:function size:0x44 +floor1_free_look = .text:0x806C5090; // type:function size:0x44 +ilog_floor1 = .text:0x806C50D4; // type:function size:0x20 +ilog2_floor1 = .text:0x806C50F4; // type:function size:0x2C +floor1_pack = .text:0x806C5120; // type:function size:0x1E4 +floor1_unpack = .text:0x806C5304; // type:function size:0x254 +icomp = .text:0x806C5558; // type:function size:0x18 +floor1_look = .text:0x806C5570; // type:function size:0x250 +render_point = .text:0x806C57C0; // type:function size:0x38 +vorbis_dBquant = .text:0x806C57F8; // type:function size:0x48 +render_line = .text:0x806C5840; // type:function size:0xBC +render_line0 = .text:0x806C58FC; // type:function size:0x8C +accumulate_fit = .text:0x806C5988; // type:function size:0x1F0 +fit_line = .text:0x806C5B78; // type:function size:0x258 +inspect_error = .text:0x806C5DD0; // type:function size:0x2A4 +post_Y = .text:0x806C6074; // type:function size:0x34 +floor1_fit = .text:0x806C60A8; // type:function size:0x488 +floor1_interpolate_fit = .text:0x806C6530; // type:function size:0xD0 +floor1_encode = .text:0x806C6600; // type:function size:0x50C +floor1_inverse1 = .text:0x806C6B0C; // type:function size:0x298 +floor1_inverse2 = .text:0x806C6DA4; // type:function size:0x130 +ogg_page_granulepos = .text:0x806C6ED4; // type:function size:0xB8 +ogg_page_serialno = .text:0x806C6F8C; // type:function size:0x24 +ogg_page_pageno = .text:0x806C6FB0; // type:function size:0x24 +ogg_stream_init = .text:0x806C6FD4; // type:function size:0x90 +ogg_stream_clear = .text:0x806C7064; // type:function size:0x74 +_os_body_expand = .text:0x806C70D8; // type:function size:0x54 +_os_lacing_expand = .text:0x806C712C; // type:function size:0x6C +ogg_page_checksum_set = .text:0x806C7198; // type:function size:0xE4 +ogg_sync_init = .text:0x806C727C; // type:function size:0x34 +ogg_sync_clear = .text:0x806C72B0; // type:function size:0x5C +ogg_sync_buffer = .text:0x806C730C; // type:function size:0xB8 +ogg_sync_wrote = .text:0x806C73C4; // type:function size:0x28 +ogg_sync_pageseek = .text:0x806C73EC; // type:function size:0x1FC +ogg_sync_pageout = .text:0x806C75E8; // type:function size:0x74 +ogg_stream_pagein = .text:0x806C765C; // type:function size:0x334 +ogg_sync_reset = .text:0x806C7990; // type:function size:0x20 +ogg_stream_reset = .text:0x806C79B0; // type:function size:0x44 +_packetout = .text:0x806C79F4; // type:function size:0x148 +ogg_stream_packetout = .text:0x806C7B3C; // type:function size:0x8 +_v_readstring = .text:0x806C7B44; // type:function size:0x5C +vorbis_comment_init = .text:0x806C7BA0; // type:function size:0xC +vorbis_comment_clear = .text:0x806C7BAC; // type:function size:0xAC +vorbis_info_init = .text:0x806C7C58; // type:function size:0x44 +vorbis_info_clear = .text:0x806C7C9C; // type:function size:0x1EC +_vorbis_unpack_info = .text:0x806C7E88; // type:function size:0x13C +_vorbis_unpack_comment = .text:0x806C7FC4; // type:function size:0x138 +_vorbis_unpack_books = .text:0x806C80FC; // type:function size:0x34C +vorbis_synthesis_headerin = .text:0x806C8448; // type:function size:0x15C +vorbis_coslook = .text:0x806C85A4; // type:function size:0x80 +vorbis_invsqlook = .text:0x806C8624; // type:function size:0x88 +vorbis_fromdBlook = .text:0x806C86AC; // type:function size:0x88 +vorbis_lsp_to_curve = .text:0x806C8734; // type:function size:0x238 +mapping0_free_info = .text:0x806C896C; // type:function size:0x44 +ilog_mapping0 = .text:0x806C89B0; // type:function size:0x2C +mapping0_pack = .text:0x806C89DC; // type:function size:0x1B8 +mapping0_unpack = .text:0x806C8B94; // type:function size:0x228 +todB = .text:0x806C8DBC; // type:function size:0x4C +mapping0_forward = .text:0x806C8E08; // type:function size:0xA18 +mapping0_inverse = .text:0x806C9820; // type:function size:0x454 +mapping0_inverse_poll = .text:0x806C9C74; // type:function size:0x420 +mdct_init = .text:0x806CA094; // type:function size:0x3B0 +mdct_butterfly_8 = .text:0x806CA444; // type:function size:0x84 +mdct_butterfly_16 = .text:0x806CA4C8; // type:function size:0x17C +mdct_butterfly_32 = .text:0x806CA644; // type:function size:0x32C +mdct_butterfly_first = .text:0x806CA970; // type:function size:0x194 +mdct_butterfly_generic = .text:0x806CAB04; // type:function size:0x198 +mdct_butterflies = .text:0x806CAC9C; // type:function size:0xDC +mdct_clear = .text:0x806CAD78; // type:function size:0x70 +mdct_bitreverse = .text:0x806CADE8; // type:function size:0x134 +mdct_backward = .text:0x806CAF1C; // type:function size:0x340 +mdct_forward = .text:0x806CB25C; // type:function size:0x274 +unitnorm = .text:0x806CB4D0; // type:function size:0x24 +_vp_global_free = .text:0x806CB4F4; // type:function size:0x44 +_vi_psy_free = .text:0x806CB538; // type:function size:0x44 +min_curve = .text:0x806CB57C; // type:function size:0x2C +max_curve = .text:0x806CB5A8; // type:function size:0x2C +attenuate_curve = .text:0x806CB5D4; // type:function size:0x24 +setup_tone_curves = .text:0x806CB5F8; // type:function size:0xAC8 +_vp_psy_init = .text:0x806CC0C0; // type:function size:0x818 +_vp_psy_clear = .text:0x806CC8D8; // type:function size:0x110 +seed_curve = .text:0x806CC9E8; // type:function size:0x130 +seed_loop = .text:0x806CCB18; // type:function size:0x12C +seed_chase = .text:0x806CCC44; // type:function size:0x1B8 +max_seeds = .text:0x806CCDFC; // type:function size:0x178 +bark_noise_hybridmp = .text:0x806CCF74; // type:function size:0x4CC +_vp_remove_floor = .text:0x806CD440; // type:function size:0x7C +_vp_noisemask = .text:0x806CD4BC; // type:function size:0x15C +_vp_tonemask = .text:0x806CD618; // type:function size:0x100 +_vp_offset_and_mix = .text:0x806CD718; // type:function size:0x74 +couple_lossless = .text:0x806CD78C; // type:function size:0xF4 +precomputed_couple_point = .text:0x806CD880; // type:function size:0x8C +dipole_hypot = .text:0x806CD90C; // type:function size:0xD4 +round_hypot = .text:0x806CD9E0; // type:function size:0xD4 +_vp_quantize_couple_memo = .text:0x806CDAB4; // type:function size:0x118 +apsort = .text:0x806CDBCC; // type:function size:0x3C +_vp_quantize_couple_sort = .text:0x806CDC08; // type:function size:0x15C +_vp_noise_normalize_sort = .text:0x806CDD64; // type:function size:0x10C +_vp_noise_normalize = .text:0x806CDE70; // type:function size:0x1F0 +_vp_couple = .text:0x806CE060; // type:function size:0x360 +res0_free_info = .text:0x806CE3C0; // type:function size:0x44 +res0_free_look = .text:0x806CE404; // type:function size:0xC0 +ilog_res0 = .text:0x806CE4C4; // type:function size:0x20 +icount_res0 = .text:0x806CE4E4; // type:function size:0x24 +res0_pack = .text:0x806CE508; // type:function size:0x148 +res0_unpack = .text:0x806CE650; // type:function size:0x1A4 +res0_look = .text:0x806CE7F4; // type:function size:0x220 +local_book_besterror = .text:0x806CEA14; // type:function size:0x1D0 +_encodepart = .text:0x806CEBE4; // type:function size:0x84 +_01class = .text:0x806CEC68; // type:function size:0x258 +_2class = .text:0x806CEEC0; // type:function size:0x188 +_01forward = .text:0x806CF048; // type:function size:0x25C +_01inverse = .text:0x806CF2A4; // type:function size:0x21C +res0_inverse = .text:0x806CF4C0; // type:function size:0x5C +res1_forward = .text:0x806CF51C; // type:function size:0x150 +res1_class = .text:0x806CF66C; // type:function size:0x54 +res1_inverse = .text:0x806CF6C0; // type:function size:0x5C +res2_class = .text:0x806CF71C; // type:function size:0x44 +res2_forward = .text:0x806CF760; // type:function size:0x164 +res2_inverse = .text:0x806CF8C4; // type:function size:0x1AC +_ilog = .text:0x806CFA70; // type:function size:0x20 +_float32_unpack = .text:0x806CFA90; // type:function size:0x5C +_make_words = .text:0x806CFAEC; // type:function size:0x1F8 +_book_maptype1_quantvals = .text:0x806CFCE4; // type:function size:0xE0 +_book_unquantize = .text:0x806CFDC4; // type:function size:0x2B8 +vorbis_staticbook_clear = .text:0x806D007C; // type:function size:0xEC +vorbis_staticbook_destroy = .text:0x806D0168; // type:function size:0x40 +vorbis_book_clear = .text:0x806D01A8; // type:function size:0x8C +vorbis_book_init_encode = .text:0x806D0234; // type:function size:0x80 +bitreverse = .text:0x806D02B4; // type:function size:0x84 +sort32a = .text:0x806D0338; // type:function size:0x30 +vorbis_book_init_decode = .text:0x806D0368; // type:function size:0x45C +drfti1 = .text:0x806D07C4; // type:function size:0x250 +dradf2 = .text:0x806D0A14; // type:function size:0x1D8 +dradf4 = .text:0x806D0BEC; // type:function size:0x33C +dradfg = .text:0x806D0F28; // type:function size:0x930 +drftf1 = .text:0x806D1858; // type:function size:0x208 +drft_forward = .text:0x806D1A60; // type:function size:0x28 +drft_init = .text:0x806D1A88; // type:function size:0x78 +drft_clear = .text:0x806D1B00; // type:function size:0x60 +OggMalloc = .text:0x806D1B60; // type:function size:0x8 +OggCalloc = .text:0x806D1B68; // type:function size:0x50 +OggRealloc = .text:0x806D1BB8; // type:function size:0x8 +OggFree = .text:0x806D1BC0; // type:function size:0x4 +_vorbis_window_get = .text:0x806D1BC4; // type:function size:0x14 +_vorbis_apply_window = .text:0x806D1BD8; // type:function size:0x170 +vorbis_synthesis_poll = .text:0x806D1D48; // type:function size:0x1E8 +fn_806D1F30 = .text:0x806D1F30; // type:function size:0xF0 +fn_806D2020 = .text:0x806D2020; // type:function size:0x1C +fn_806D2040 = .text:0x806D2040; // type:function size:0x84 +RADTimerRead = .text:0x806D20D0; // type:function size:0xAC +BinkGetError = .text:0x806D2180; // type:function size:0xC +BinkSetSoundSystem = .text:0x806D2190; // type:function size:0x90 +fn_806D2220 = .text:0x806D2220; // type:function size:0xE4 +fn_806D2310 = .text:0x806D2310; // type:function size:0x450 +fn_806D2760 = .text:0x806D2760; // type:function size:0x14C +BinkSetIO = .text:0x806D28B0; // type:function size:0x8 +BinkSetSoundTrack = .text:0x806D28C0; // type:function size:0xD4 +fn_806D29A0 = .text:0x806D29A0; // type:function size:0x128 +fn_806D2AD0 = .text:0x806D2AD0; // type:function size:0x2C +fn_806D2B00 = .text:0x806D2B00; // type:function size:0x54 +fn_806D2B60 = .text:0x806D2B60; // type:function size:0xF8 +fn_806D2C60 = .text:0x806D2C60; // type:function size:0x1C +BinkOpen = .text:0x806D2C80; // type:function size:0x133C +fn_806D3FC0 = .text:0x806D3FC0; // type:function size:0x150 +fn_806D4110 = .text:0x806D4110; // type:function size:0x164 +fn_806D4280 = .text:0x806D4280; // type:function size:0x228 +fn_806D44B0 = .text:0x806D44B0; // type:function size:0x170 +fn_806D4620 = .text:0x806D4620; // type:function size:0x1F0 +fn_806D4810 = .text:0x806D4810; // type:function size:0x8 +fn_806D4820 = .text:0x806D4820; // type:function size:0x64 +fn_806D4890 = .text:0x806D4890; // type:function size:0x1E8 +fn_806D4A80 = .text:0x806D4A80; // type:function size:0x170 +BinkGoto = .text:0x806D4BF0; // type:function size:0x250 +fn_806D4E40 = .text:0x806D4E40; // type:function size:0x190 +fn_806D4FD0 = .text:0x806D4FD0; // type:function size:0x1AC +fn_806D5180 = .text:0x806D5180; // type:function size:0x148 +fn_806D52D0 = .text:0x806D52D0; // type:function size:0x200 +fn_806D54D0 = .text:0x806D54D0; // type:function size:0x164 +fn_806D5640 = .text:0x806D5640; // type:function size:0x50 +fn_806D5690 = .text:0x806D5690; // type:function size:0x188 +BinkSetVideoOnOff = .text:0x806D5820; // type:function size:0x14 +fn_806D5840 = .text:0x806D5840; // type:function size:0x154 +BinkSetMemory = .text:0x806D59A0; // type:function size:0x4 +fn_806D59B0 = .text:0x806D59B0; // type:function size:0x13C +fn_806D5AF0 = .text:0x806D5AF0; // type:function size:0x160 +fn_806D5C50 = .text:0x806D5C50; // type:function size:0x2FC +fn_806D5F50 = .text:0x806D5F50; // type:function size:0x1A0 +fn_806D60F0 = .text:0x806D60F0; // type:function size:0x8 +fn_806D6100 = .text:0x806D6100; // type:function size:0x8 +fn_806D6110 = .text:0x806D6110; // type:function size:0x10C +fn_806D6220 = .text:0x806D6220; // type:function size:0x168 +fn_806D6390 = .text:0x806D6390; // type:function size:0x1B0 +fn_806D6540 = .text:0x806D6540; // type:function size:0xD0 +fn_806D6610 = .text:0x806D6610; // type:function size:0x184 +fn_806D67A0 = .text:0x806D67A0; // type:function size:0xD4 +Open = .text:0x806D6880; // type:function size:0x47C +BinkOpenAX = .text:0x806D6D00; // type:function size:0x64 +fn_806D6D70 = .text:0x806D6D70; // type:function size:0xE4 +fn_806D6E60 = .text:0x806D6E60; // type:function size:0x190 +fn_806D6FF0 = .text:0x806D6FF0; // type:function size:0x200 +fn_806D71F0 = .text:0x806D71F0; // type:function size:0x11C +fn_806D7310 = .text:0x806D7310; // type:function size:0x94 +fn_806D73B0 = .text:0x806D73B0; // type:function size:0xE0 +fn_806D7490 = .text:0x806D7490; // type:function size:0x460 +fn_806D78F0 = .text:0x806D78F0; // type:function size:0x1C +fn_806D7910 = .text:0x806D7910; // type:function size:0x84 +fn_806D79A0 = .text:0x806D79A0; // type:function size:0x70 +fn_806D7A10 = .text:0x806D7A10; // type:function size:0x154 +fn_806D7B70 = .text:0x806D7B70; // type:function size:0x70 +fn_806D7BE0 = .text:0x806D7BE0; // type:function size:0xBC +fn_806D7CA0 = .text:0x806D7CA0; // type:function size:0x33C +fn_806D7FE0 = .text:0x806D7FE0; // type:function size:0x388 +fn_806D8370 = .text:0x806D8370; // type:function size:0x40C +fn_806D8780 = .text:0x806D8780; // type:function size:0x4 +fn_806D8790 = .text:0x806D8790; // type:function size:0x280 +fn_806D8A10 = .text:0x806D8A10; // type:function size:0xC +simpmergesort = .text:0x806D8A20; // type:function size:0xA8 +ReadHuffTable = .text:0x806D8AD0; // type:function size:0x8EC +CheckReadRLEHuff4Bundle = .text:0x806D93C0; // type:function size:0x344 +fn_806D9710 = .text:0x806D9710; // type:function size:0x2A4 +fn_806D99C0 = .text:0x806D99C0; // type:function size:0x28C +CheckReadHuff4Bundle = .text:0x806D9C50; // type:function size:0x208 +CheckReadHuff4PairBundle = .text:0x806D9E60; // type:function size:0x1E8 +CheckReadHuff4SBundle = .text:0x806DA050; // type:function size:0x278 +CheckReadDelta16Bundle = .text:0x806DA2D0; // type:function size:0x330 +fn_806DA600 = .text:0x806DA600; // type:function size:0x80 +ExpandPlane = .text:0x806DA680; // type:function size:0x2120 +fn_806DC7A0 = .text:0x806DC7A0; // type:function size:0x360 +fn_806DCB00 = .text:0x806DCB00; // type:function size:0x78 +fn_806DCB80 = .text:0x806DCB80; // type:function size:0xD0 +fn_806DCC50 = .text:0x806DCC50; // type:function size:0x58 +fn_806DCCB0 = .text:0x806DCCB0; // type:function size:0xD4 +fn_806DCD90 = .text:0x806DCD90; // type:function size:0x84 +fn_806DCE20 = .text:0x806DCE20; // type:function size:0x330 +fn_806DD150 = .text:0x806DD150; // type:function size:0xC0 +fn_806DD210 = .text:0x806DD210; // type:function size:0x94 +fn_806DD2B0 = .text:0x806DD2B0; // type:function size:0xE4 +fn_806DD3A0 = .text:0x806DD3A0; // type:function size:0x78 +fn_806DD420 = .text:0x806DD420; // type:function size:0x30 +fn_806DD450 = .text:0x806DD450; // type:function size:0xA8 +fn_806DD500 = .text:0x806DD500; // type:function size:0x18 +fn_806DD520 = .text:0x806DD520; // type:function size:0xB0 +RADSetMemory = .text:0x806DD5D0; // type:function size:0xC +radmalloc = .text:0x806DD5E0; // type:function size:0xC0 +radfree = .text:0x806DD6A0; // type:function size:0x38 +fn_806DD6E0 = .text:0x806DD6E0; // type:function size:0x43C +fn_806DDB20 = .text:0x806DDB20; // type:function size:0x338 +fn_806DDE60 = .text:0x806DDE60; // type:function size:0x170 +fn_806DDFD0 = .text:0x806DDFD0; // type:function size:0x498 +fn_806DE470 = .text:0x806DE470; // type:function size:0x16C +fn_806DE5E0 = .text:0x806DE5E0; // type:function size:0x44 +fn_806DE630 = .text:0x806DE630; // type:function size:0x89C +fn_806DEED0 = .text:0x806DEED0; // type:function size:0xC10 +fn_806DFAE0 = .text:0x806DFAE0; // type:function size:0xCC +fn_806DFBB0 = .text:0x806DFBB0; // type:function size:0x398 +fn_806DFF50 = .text:0x806DFF50; // type:function size:0x3C4 +fn_806E0320 = .text:0x806E0320; // type:function size:0x3DC +fn_806E0700 = .text:0x806E0700; // type:function size:0x518 +fn_806E0C20 = .text:0x806E0C20; // type:function size:0xD4 +fn_806E0D00 = .text:0x806E0D00; // type:function size:0x574 +fn_806E1280 = .text:0x806E1280; // type:function size:0x6CC +fn_806E1950 = .text:0x806E1950; // type:function size:0x210 +fn_806E1B60 = .text:0x806E1B60; // type:function size:0x298 +fn_806E1E00 = .text:0x806E1E00; // type:function size:0x84 +fn_806E1E90 = .text:0x806E1E90; // type:function size:0x34 +fn_806E1ED0 = .text:0x806E1ED0; // type:function size:0x20C +fn_806E20E0 = .text:0x806E20E0; // type:function size:0x180 +fn_806E2260 = .text:0x806E2260; // type:function size:0x2FC +fn_806E2560 = .text:0x806E2560; // type:function size:0x340 +FastIDCT8x8 = .text:0x806E28A0; // type:function size:0x14 +FastIDCT8x8d = .text:0x806E28C0; // type:function size:0x14 +FastmIDCT8x8WithMotion = .text:0x806E28E0; // type:function size:0x350 +ReadBPLossless = .text:0x806E2C30; // type:function size:0x9EC +fn_806E3620 = .text:0x806E3620; // type:function size:0x4E0 +ReadBPLossyWithMotion = .text:0x806E3B00; // type:function size:0x4A8 +fn_806E3FA8 = .text:0x806E3FA8; // type:function size:0x4C +fn_806E3FF4 = .text:0x806E3FF4; // type:function size:0x8 +fn_806E3FFC = .text:0x806E3FFC; // type:function size:0x60 +fn_806E405C = .text:0x806E405C; // type:function size:0x90 +fn_806E40EC = .text:0x806E40EC; // type:function size:0x94 +fn_806E4180 = .text:0x806E4180; // type:function size:0x54 +fn_806E41D4 = .text:0x806E41D4; // type:function size:0x78 +fn_806E424C = .text:0x806E424C; // type:function size:0x204 +fn_806E4450 = .text:0x806E4450; // type:function size:0x150 +fn_806E45A0 = .text:0x806E45A0; // type:function size:0xA8 +fn_806E4648 = .text:0x806E4648; // type:function size:0x240 +fn_806E4888 = .text:0x806E4888; // type:function size:0xDC +fn_806E4964 = .text:0x806E4964; // type:function size:0x124 +fn_806E4A88 = .text:0x806E4A88; // type:function size:0x208 +fn_806E4C90 = .text:0x806E4C90; // type:function size:0x1EC +fn_806E4E7C = .text:0x806E4E7C; // type:function size:0x260 +malloc = .text:0x806E50DC; // type:function size:0xA0 +free = .text:0x806E517C; // type:function size:0x130 +realloc = .text:0x806E52AC; // type:function size:0x318 +calloc = .text:0x806E55C4; // type:function size:0xC0 +__close_all = .text:0x806E5684; // type:function size:0xA4 scope:global +fn_806E5728 = .text:0x806E5728; // type:function size:0x6C +fn_806E5794 = .text:0x806E5794; // type:function size:0xDC +fn_806E5870 = .text:0x806E5870; // type:function size:0x288 +fn_806E5AF8 = .text:0x806E5AF8; // type:function size:0xEC +fn_806E5BE4 = .text:0x806E5BE4; // type:function size:0x31C +fn_806E5F00 = .text:0x806E5F00; // type:function size:0xE4 +fn_806E5FE4 = .text:0x806E5FE4; // type:function size:0x100 +fn_806E60E4 = .text:0x806E60E4; // type:function size:0x4DC +fn_806E65C0 = .text:0x806E65C0; // type:function size:0x164 +fn_806E6724 = .text:0x806E6724; // type:function size:0x1A4 +fn_806E68C8 = .text:0x806E68C8; // type:function size:0x74C +fn_806E7014 = .text:0x806E7014; // type:function size:0x10 +__prep_buffer = .text:0x806E7024; // type:function size:0x28 scope:global +__flush_buffer = .text:0x806E704C; // type:function size:0xB8 scope:global +fn_806E7104 = .text:0x806E7104; // type:function size:0x1B8 +fn_806E72BC = .text:0x806E72BC; // type:function size:0x12C +fn_806E73E8 = .text:0x806E73E8; // type:function size:0x40 +__fwrite = .text:0x806E7428; // type:function size:0x308 scope:global +fn_806E7730 = .text:0x806E7730; // type:function size:0xBC +fn_806E77EC = .text:0x806E77EC; // type:function size:0x134 +fn_806E7920 = .text:0x806E7920; // type:function size:0xB8 +fn_806E79D8 = .text:0x806E79D8; // type:function size:0x54 +fn_806E7A2C = .text:0x806E7A2C; // type:function size:0xA8 +fn_806E7AD4 = .text:0x806E7AD4; // type:function size:0x4 +_fseek = .text:0x806E7AD8; // type:function size:0x1C4 scope:global +mbtowc = .text:0x806E7C9C; // type:function size:0x18 +fn_806E7CB4 = .text:0x806E7CB4; // type:function size:0x4C +fn_806E7D00 = .text:0x806E7D00; // type:function size:0x1C +mbstowcs = .text:0x806E7D1C; // type:function size:0xC0 +wcstombs = .text:0x806E7DDC; // type:function size:0xB8 scope:global +memmove = .text:0x806E7E94; // type:function size:0xCC scope:global +memchr = .text:0x806E7F60; // type:function size:0x2C scope:global +__memrchr = .text:0x806E7F8C; // type:function size:0x2C scope:global +memcmp = .text:0x806E7FB8; // type:function size:0x4C +__copy_longs_aligned = .text:0x806E8004; // type:function size:0xBC +__copy_longs_rev_aligned = .text:0x806E80C0; // type:function size:0xA8 +__copy_longs_unaligned = .text:0x806E8168; // type:function size:0xC0 +__copy_longs_rev_unaligned = .text:0x806E8228; // type:function size:0xAC +fn_806E82D4 = .text:0x806E82D4; // type:function size:0x18 +fn_806E82EC = .text:0x806E82EC; // type:function size:0x7C +__stdio_atexit = .text:0x806E8368; // type:function size:0x10 scope:global +parse_format = .text:0x806E8378; // type:function size:0x5BC scope:local +long2str = .text:0x806E8934; // type:function size:0x240 scope:local +longlong2str = .text:0x806E8B74; // type:function size:0x2B0 scope:local +double2hex = .text:0x806E8E24; // type:function size:0x3C8 scope:local +fn_806E91EC = .text:0x806E91EC; // type:function size:0x128 +float2str = .text:0x806E9314; // type:function size:0x79C scope:local +__pformatter = .text:0x806E9AB0; // type:function size:0x8AC scope:local +__FileWrite = .text:0x806EA35C; // type:function size:0x58 scope:global +__StringWrite = .text:0x806EA3B4; // type:function size:0x6C scope:global +printf = .text:0x806EA420; // type:function size:0xCC +fprintf = .text:0x806EA4EC; // type:function size:0xC8 +vprintf = .text:0x806EA5B4; // type:function size:0x7C scope:global +vsnprintf = .text:0x806EA630; // type:function size:0x88 scope:global +vsprintf = .text:0x806EA6B8; // type:function size:0x84 +snprintf = .text:0x806EA73C; // type:function size:0xF4 +sprintf = .text:0x806EA830; // type:function size:0xD4 scope:global +qsort = .text:0x806EA904; // type:function size:0x170 +rand = .text:0x806EAA74; // type:function size:0x20 +srand = .text:0x806EAA94; // type:function size:0x8 +parse_format = .text:0x806EAA9C; // type:function size:0x694 +__sformatter = .text:0x806EB130; // type:function size:0xC98 +fn_806EBDC8 = .text:0x806EBDC8; // type:function size:0x88 +sscanf = .text:0x806EBE50; // type:function size:0x130 +fn_806EBF80 = .text:0x806EBF80; // type:function size:0xA8 +strcpy = .text:0x806EC028; // type:function size:0xC0 scope:global +strncpy = .text:0x806EC0E8; // type:function size:0x44 +strcat = .text:0x806EC12C; // type:function size:0x2C +strncat = .text:0x806EC158; // type:function size:0x4C +strcmp = .text:0x806EC1A4; // type:function size:0x11C +strncmp = .text:0x806EC2C0; // type:function size:0x40 +strchr = .text:0x806EC300; // type:function size:0x30 scope:global +strrchr = .text:0x806EC330; // type:function size:0x48 +strtok = .text:0x806EC378; // type:function size:0x124 +strstr = .text:0x806EC49C; // type:function size:0x6C +fn_806EC508 = .text:0x806EC508; // type:function size:0xC +fn_806EC514 = .text:0x806EC514; // type:function size:0x458 +__strtold = .text:0x806EC96C; // type:function size:0x1324 +fn_806EDC90 = .text:0x806EDC90; // type:function size:0x5C +__strtoul = .text:0x806EDCEC; // type:function size:0x414 +__strtoull = .text:0x806EE100; // type:function size:0x4A8 +strtoul = .text:0x806EE5A8; // type:function size:0xA8 +strtoull = .text:0x806EE650; // type:function size:0xB0 +fn_806EE700 = .text:0x806EE700; // type:function size:0xEC +fn_806EE7EC = .text:0x806EE7EC; // type:function size:0x118 +atoi = .text:0x806EE904; // type:function size:0xC4 +fn_806EE9C8 = .text:0x806EE9C8; // type:function size:0x4 +fn_806EE9CC = .text:0x806EE9CC; // type:function size:0x8 +wmemset = .text:0x806EE9D4; // type:function size:0x60 +wmemchr = .text:0x806EEA34; // type:function size:0x28 +parse_format = .text:0x806EEA5C; // type:function size:0x590 scope:local +long2str = .text:0x806EEFEC; // type:function size:0x244 +fn_806EF230 = .text:0x806EF230; // type:function size:0x2BC scope:local +double2hex = .text:0x806EF4EC; // type:function size:0x454 +round_decimal = .text:0x806EF940; // type:function size:0x128 +float2str = .text:0x806EFA68; // type:function size:0x790 +__wpformatter = .text:0x806F01F8; // type:function size:0x98C +fn_806F0B84 = .text:0x806F0B84; // type:function size:0x6C +swprintf = .text:0x806F0BF0; // type:function size:0xF8 +vswprintf = .text:0x806F0CE8; // type:function size:0x8C +wcslen = .text:0x806F0D74; // type:function size:0x1C +wcscpy = .text:0x806F0D90; // type:function size:0x1C +wcsncpy = .text:0x806F0DAC; // type:function size:0x44 +wcsncat = .text:0x806F0DF0; // type:function size:0x4C +fn_806F0E3C = .text:0x806F0E3C; // type:function size:0x34 +wcschr = .text:0x806F0E70; // type:function size:0x2C +fn_806F0E9C = .text:0x806F0E9C; // type:function size:0x4 +fwide = .text:0x806F0EA0; // type:function size:0x78 scope:global +fn_806F0F18 = .text:0x806F0F18; // type:function size:0x28 +fn_806F0F40 = .text:0x806F0F40; // type:function size:0xD0 +fn_806F1010 = .text:0x806F1010; // type:function size:0x8 +fn_806F1018 = .text:0x806F1018; // type:function size:0x34 +__msl_runtime_constraint_violation_s = .text:0x806F104C; // type:function size:0x18 scope:global +scalbn = .text:0x806F1064; // type:function size:0x40 +fn_806F10A4 = .text:0x806F10A4; // type:function size:0x2CC +fn_806F1370 = .text:0x806F1370; // type:function size:0x298 +fn_806F1608 = .text:0x806F1608; // type:function size:0x258 +fn_806F1860 = .text:0x806F1860; // type:function size:0x230 +fn_806F1A90 = .text:0x806F1A90; // type:function size:0x380 +fn_806F1E10 = .text:0x806F1E10; // type:function size:0x2B4 +fn_806F20C4 = .text:0x806F20C4; // type:function size:0x114 +fn_806F21D8 = .text:0x806F21D8; // type:function size:0x814 +fn_806F29EC = .text:0x806F29EC; // type:function size:0x384 +fn_806F2D70 = .text:0x806F2D70; // type:function size:0x110 +__kernel_rem_pio2 = .text:0x806F2E80; // type:function size:0x16B8 +fn_806F4538 = .text:0x806F4538; // type:function size:0xC0 +fn_806F45F8 = .text:0x806F45F8; // type:function size:0x250 +atan = .text:0x806F4848; // type:function size:0x230 +ceil = .text:0x806F4A78; // type:function size:0x14C +fn_806F4BC4 = .text:0x806F4BC4; // type:function size:0x2C +cos = .text:0x806F4BF0; // type:function size:0xC8 +floor = .text:0x806F4CB8; // type:function size:0x150 +frexp = .text:0x806F4E08; // type:function size:0x88 +ldexp = .text:0x806F4E90; // type:function size:0x16C +modf = .text:0x806F4FFC; // type:function size:0xFC +rint = .text:0x806F50F8; // type:function size:0x168 +sin = .text:0x806F5260; // type:function size:0xCC +tan = .text:0x806F532C; // type:function size:0x78 +acos = .text:0x806F53A4; // type:function size:0x4 +asin = .text:0x806F53A8; // type:function size:0x4 +atan2 = .text:0x806F53AC; // type:function size:0x4 +exp = .text:0x806F53B0; // type:function size:0x4 +fmod = .text:0x806F53B4; // type:function size:0x4 +log = .text:0x806F53B8; // type:function size:0x4 +log10 = .text:0x806F53BC; // type:function size:0x4 +pow = .text:0x806F53C0; // type:function size:0x4 +nan = .text:0x806F53C4; // type:function size:0x4 +strdup = .text:0x806F53C8; // type:function size:0x4 +stricmp = .text:0x806F53CC; // type:function size:0xA0 +strnicmp = .text:0x806F546C; // type:function size:0x4 +strncasecmp = .text:0x806F5470; // type:function size:0x4 +fn_806F5474 = .text:0x806F5474; // type:function size:0xA0 +wcsnicmp = .text:0x806F5514; // type:function size:0x98 +strlen = .text:0x806F55AC; // type:function size:0x1C scope:weak +__va_arg = .text:0x806F55C8; // type:function size:0xC8 scope:global +__register_global_object = .text:0x806F5690; // type:function size:0x18 scope:global +__destroy_global_chain = .text:0x806F56A8; // type:function size:0x48 scope:global +fn_806F56F0 = .text:0x806F56F0; // type:function size:0xC +fn_806F56FC = .text:0x806F56FC; // type:function size:0x4 +fn_806F5700 = .text:0x806F5700; // type:function size:0x4 +fn_806F5704 = .text:0x806F5704; // type:function size:0xC +fn_806F5710 = .text:0x806F5710; // type:function size:0xC +fn_806F571C = .text:0x806F571C; // type:function size:0x234 +__construct_new_array = .text:0x806F5950; // type:function size:0x104 +fn_806F5A54 = .text:0x806F5A54; // type:function size:0xBC +__construct_array = .text:0x806F5B10; // type:function size:0xF8 +__destroy_arr = .text:0x806F5C08; // type:function size:0x78 +fn_806F5C80 = .text:0x806F5C80; // type:function size:0x80 +__destroy_new_array3 = .text:0x806F5D00; // type:function size:0xBC +fn_806F5DBC = .text:0x806F5DBC; // type:function size:0x30 +fn_806F5DEC = .text:0x806F5DEC; // type:function size:0x3C +__ptmf_scall = .text:0x806F5E28; // type:function size:0x28 +fn_806F5E50 = .text:0x806F5E50; // type:function size:0x28 +__dynamic_cast = .text:0x806F5E78; // type:function size:0x25C +fn_806F60D4 = .text:0x806F60D4; // type:function size:0xC +__cvt_fp2unsigned = .text:0x806F60E0; // type:function size:0x5C +__save_fpr = .text:0x806F613C; // type:function size:0x4C +_savefpr_14 = .text:0x806F613C; // type:label scope:global +_savefpr_15 = .text:0x806F6140; // type:label scope:global +_savefpr_16 = .text:0x806F6144; // type:label scope:global +_savefpr_17 = .text:0x806F6148; // type:label scope:global +_savefpr_18 = .text:0x806F614C; // type:label scope:global +_savefpr_19 = .text:0x806F6150; // type:label scope:global +_savefpr_20 = .text:0x806F6154; // type:label scope:global +_savefpr_21 = .text:0x806F6158; // type:label scope:global +_savefpr_22 = .text:0x806F615C; // type:label scope:global +_savefpr_23 = .text:0x806F6160; // type:label scope:global +_savefpr_24 = .text:0x806F6164; // type:label scope:global +_savefpr_25 = .text:0x806F6168; // type:label scope:global +_savefpr_26 = .text:0x806F616C; // type:label scope:global +_savefpr_27 = .text:0x806F6170; // type:label scope:global +_savefpr_28 = .text:0x806F6174; // type:label scope:global +_savefpr_29 = .text:0x806F6178; // type:label scope:global +_savefpr_30 = .text:0x806F617C; // type:label scope:global +_savefpr_31 = .text:0x806F6180; // type:label scope:global +__restore_fpr = .text:0x806F6188; // type:function size:0x4C +_restfpr_14 = .text:0x806F6188; // type:label scope:global +_restfpr_15 = .text:0x806F618C; // type:label scope:global +_restfpr_16 = .text:0x806F6190; // type:label scope:global +_restfpr_17 = .text:0x806F6194; // type:label scope:global +_restfpr_18 = .text:0x806F6198; // type:label scope:global +_restfpr_19 = .text:0x806F619C; // type:label scope:global +_restfpr_20 = .text:0x806F61A0; // type:label scope:global +_restfpr_21 = .text:0x806F61A4; // type:label scope:global +_restfpr_22 = .text:0x806F61A8; // type:label scope:global +_restfpr_23 = .text:0x806F61AC; // type:label scope:global +_restfpr_24 = .text:0x806F61B0; // type:label scope:global +_restfpr_25 = .text:0x806F61B4; // type:label scope:global +_restfpr_26 = .text:0x806F61B8; // type:label scope:global +_restfpr_27 = .text:0x806F61BC; // type:label scope:global +_restfpr_28 = .text:0x806F61C0; // type:label scope:global +_restfpr_29 = .text:0x806F61C4; // type:label scope:global +_restfpr_30 = .text:0x806F61C8; // type:label scope:global +_restfpr_31 = .text:0x806F61CC; // type:label scope:global +__save_gpr = .text:0x806F61D4; // type:function size:0x4C +_savegpr_14 = .text:0x806F61D4; // type:label scope:global +_savegpr_15 = .text:0x806F61D8; // type:label scope:global +_savegpr_16 = .text:0x806F61DC; // type:label scope:global +_savegpr_17 = .text:0x806F61E0; // type:label scope:global +_savegpr_18 = .text:0x806F61E4; // type:label scope:global +_savegpr_19 = .text:0x806F61E8; // type:label scope:global +_savegpr_20 = .text:0x806F61EC; // type:label scope:global +_savegpr_21 = .text:0x806F61F0; // type:label scope:global +_savegpr_22 = .text:0x806F61F4; // type:label scope:global +_savegpr_23 = .text:0x806F61F8; // type:label scope:global +_savegpr_24 = .text:0x806F61FC; // type:label scope:global +_savegpr_25 = .text:0x806F6200; // type:label scope:global +_savegpr_26 = .text:0x806F6204; // type:label scope:global +_savegpr_27 = .text:0x806F6208; // type:label scope:global +_savegpr_28 = .text:0x806F620C; // type:label scope:global +_savegpr_29 = .text:0x806F6210; // type:label scope:global +_savegpr_30 = .text:0x806F6214; // type:label scope:global +_savegpr_31 = .text:0x806F6218; // type:label scope:global +__restore_gpr = .text:0x806F6220; // type:function size:0x4C +_restgpr_14 = .text:0x806F6220; // type:label scope:global +_restgpr_15 = .text:0x806F6224; // type:label scope:global +_restgpr_16 = .text:0x806F6228; // type:label scope:global +_restgpr_17 = .text:0x806F622C; // type:label scope:global +_restgpr_18 = .text:0x806F6230; // type:label scope:global +_restgpr_19 = .text:0x806F6234; // type:label scope:global +_restgpr_20 = .text:0x806F6238; // type:label scope:global +_restgpr_21 = .text:0x806F623C; // type:label scope:global +_restgpr_22 = .text:0x806F6240; // type:label scope:global +_restgpr_23 = .text:0x806F6244; // type:label scope:global +_restgpr_24 = .text:0x806F6248; // type:label scope:global +_restgpr_25 = .text:0x806F624C; // type:label scope:global +_restgpr_26 = .text:0x806F6250; // type:label scope:global +_restgpr_27 = .text:0x806F6254; // type:label scope:global +_restgpr_28 = .text:0x806F6258; // type:label scope:global +_restgpr_29 = .text:0x806F625C; // type:label scope:global +_restgpr_30 = .text:0x806F6260; // type:label scope:global +_restgpr_31 = .text:0x806F6264; // type:label scope:global +__div2u = .text:0x806F626C; // type:function size:0xEC scope:global +__div2i = .text:0x806F6358; // type:function size:0x138 +__mod2u = .text:0x806F6490; // type:function size:0xE4 scope:global +fn_806F6574 = .text:0x806F6574; // type:function size:0x10C +fn_806F6680 = .text:0x806F6680; // type:function size:0x24 +fn_806F66A4 = .text:0x806F66A4; // type:function size:0x24 +__shr2i = .text:0x806F66C8; // type:function size:0x28 +fn_806F66F0 = .text:0x806F66F0; // type:function size:0xB0 +__cvt_sll_flt = .text:0x806F67A0; // type:function size:0xB4 +fn_806F6854 = .text:0x806F6854; // type:function size:0xA0 +__cvt_dbl_usll = .text:0x806F68F4; // type:function size:0xCC +__cvt_dbl_ull = .text:0x806F69C0; // type:function size:0xA8 +__init_cpp_exceptions = .text:0x806F6A68; // type:function size:0x3C scope:global +__fini_cpp_exceptions = .text:0x806F6AA4; // type:function size:0x34 scope:global +fn_806F6AD8 = .text:0x806F6AD8; // type:function size:0x110 +__register_fragment = .text:0x806F6BE8; // type:function size:0x4C scope:global +__unregister_fragment = .text:0x806F6C34; // type:function size:0x28 scope:global +fn_806F6C5C = .text:0x806F6C5C; // type:function size:0x98 +fn_806F6CF4 = .text:0x806F6CF4; // type:function size:0x1B0 +fn_806F6EA4 = .text:0x806F6EA4; // type:function size:0x1B0 +fn_806F7054 = .text:0x806F7054; // type:function size:0x554 +fn_806F75A8 = .text:0x806F75A8; // type:function size:0x50C +fn_806F7AB4 = .text:0x806F7AB4; // type:function size:0x1B8 +fn_806F7C6C = .text:0x806F7C6C; // type:function size:0x104 +fn_806F7D70 = .text:0x806F7D70; // type:function size:0x408 +fn_806F8178 = .text:0x806F8178; // type:function size:0x144 +fn_806F82BC = .text:0x806F82BC; // type:function size:0x2C +fn_806F82E8 = .text:0x806F82E8; // type:function size:0xC +fn_806F82F4 = .text:0x806F82F4; // type:function size:0x8 +fn_806F82FC = .text:0x806F82FC; // type:function size:0x8 +fn_806F8304 = .text:0x806F8304; // type:function size:0x8 +fn_806F830C = .text:0x806F830C; // type:function size:0x8 +gdev_cc_initialize = .text:0x806F8314; // type:function size:0x3C scope:global +gdev_cc_shutdown = .text:0x806F8350; // type:function size:0x8 scope:global +gdev_cc_open = .text:0x806F8358; // type:function size:0x24 scope:global +gdev_cc_close = .text:0x806F837C; // type:function size:0x8 scope:global +gdev_cc_read = .text:0x806F8384; // type:function size:0xB4 scope:global +gdev_cc_write = .text:0x806F8438; // type:function size:0x74 scope:global +gdev_cc_pre_continue = .text:0x806F84AC; // type:function size:0x24 scope:global +gdev_cc_post_stop = .text:0x806F84D0; // type:function size:0x24 scope:global +gdev_cc_peek = .text:0x806F84F4; // type:function size:0x74 scope:global +gdev_cc_initinterrupts = .text:0x806F8568; // type:function size:0x24 scope:global +fn_806F858C = .text:0x806F858C; // type:function size:0x4 +fn_806F8590 = .text:0x806F8590; // type:function size:0x30 +fn_806F85C0 = .text:0x806F85C0; // type:function size:0x8 +fn_806F85C8 = .text:0x806F85C8; // type:function size:0x8 +fn_806F85D0 = .text:0x806F85D0; // type:function size:0x24 +fn_806F85F4 = .text:0x806F85F4; // type:function size:0x108 +fn_806F86FC = .text:0x806F86FC; // type:function size:0x108 +fn_806F8804 = .text:0x806F8804; // type:function size:0x38 +TRK_main = .text:0x806F883C; // type:function size:0x3C scope:global +TRKNubMainLoop = .text:0x806F8878; // type:function size:0xEC scope:global +fn_806F8964 = .text:0x806F8964; // type:function size:0x13C +fn_806F8AA0 = .text:0x806F8AA0; // type:function size:0x128 +TRKDispatchMessage = .text:0x806F8BC8; // type:function size:0x120 scope:global +InitMetroTRK = .text:0x806F8CE8; // type:function size:0x94 scope:global +InitMetroTRK_BBA = .text:0x806F8D80; // type:function size:0x94 scope:global +EnableMetroTRKInterrupts = .text:0x806F8E14; // type:function size:0x4 scope:global +fn_806F8E18 = .text:0x806F8E18; // type:function size:0x68 +fn_806F8E80 = .text:0x806F8E80; // type:function size:0x134 +TRKInitializeTarget = .text:0x806F8FB4; // type:function size:0x48 scope:global +fn_806F8FFC = .text:0x806F8FFC; // type:function size:0x10 +TRKLoadContext = .text:0x806F900C; // type:function size:0x88 scope:global +TRKEXICallBack = .text:0x806F9094; // type:function size:0x38 scope:global +InitMetroTRKCommTable = .text:0x806F90CC; // type:function size:0x138 scope:global +TRKUARTInterruptHandler = .text:0x806F9204; // type:function size:0x4 scope:global +TRKInitializeIntDrivenUART = .text:0x806F9208; // type:function size:0x54 scope:global +fn_806F925C = .text:0x806F925C; // type:function size:0x2C +fn_806F9288 = .text:0x806F9288; // type:function size:0x14 +fn_806F929C = .text:0x806F929C; // type:function size:0x3C +fn_806F92D8 = .text:0x806F92D8; // type:function size:0x3C +ReserveEXI2Port = .text:0x806F9314; // type:function size:0x14 scope:global +UnreserveEXI2Port = .text:0x806F9328; // type:function size:0x14 scope:global +TRK_board_display = .text:0x806F933C; // type:function size:0x18 scope:global +InitializeProgramEndTrap = .text:0x806F9354; // type:function size:0x54 scope:global +fn_806F93A8 = .text:0x806F93A8; // type:function size:0x90 +TRKInitializeEventQueue = .text:0x806F9438; // type:function size:0x24 scope:global +TRKGetNextEvent = .text:0x806F945C; // type:function size:0x8C scope:global +fn_806F94E8 = .text:0x806F94E8; // type:function size:0xCC +fn_806F95B4 = .text:0x806F95B4; // type:function size:0x18 +TRKDestructEvent = .text:0x806F95CC; // type:function size:0x8 scope:global +TRKInitializeNub = .text:0x806F95D4; // type:function size:0xAC scope:global +TRKTerminateNub = .text:0x806F9680; // type:function size:0x24 scope:global +TRKNubWelcome = .text:0x806F96A4; // type:function size:0xC scope:global +TRKInitializeEndian = .text:0x806F96B0; // type:function size:0x74 scope:global +fn_806F9724 = .text:0x806F9724; // type:function size:0xCC +TRKGetInput = .text:0x806F97F0; // type:function size:0x2C scope:global +fn_806F981C = .text:0x806F981C; // type:function size:0x40 +TRKInitializeSerialHandler = .text:0x806F985C; // type:function size:0x8 scope:global +fn_806F9864 = .text:0x806F9864; // type:function size:0x8 +fn_806F986C = .text:0x806F986C; // type:function size:0x1C +fn_806F9888 = .text:0x806F9888; // type:function size:0x1F4 +fn_806F9A7C = .text:0x806F9A7C; // type:function size:0x128 +fn_806F9BA4 = .text:0x806F9BA4; // type:function size:0x118 +fn_806F9CBC = .text:0x806F9CBC; // type:function size:0xE4 +fn_806F9DA0 = .text:0x806F9DA0; // type:function size:0x10C +TRKTargetContinue = .text:0x806F9EAC; // type:function size:0x34 scope:global +TRKSaveExtended1Block = .text:0x806F9EE0; // type:function size:0x1C4 scope:global +TRKRestoreExtended1Block = .text:0x806FA0A4; // type:function size:0x164 scope:global +fn_806FA208 = .text:0x806FA208; // type:function size:0x64 +TRKInitializeMessageBuffers = .text:0x806FA26C; // type:function size:0x20 scope:global +fn_806FA28C = .text:0x806FA28C; // type:function size:0x9C +TRKGetBuffer = .text:0x806FA328; // type:function size:0x24 scope:global +fn_806FA34C = .text:0x806FA34C; // type:function size:0x28 +fn_806FA374 = .text:0x806FA374; // type:function size:0x28 +fn_806FA39C = .text:0x806FA39C; // type:function size:0x30 +fn_806FA3CC = .text:0x806FA3CC; // type:function size:0xA4 +fn_806FA470 = .text:0x806FA470; // type:function size:0x90 +fn_806FA500 = .text:0x806FA500; // type:function size:0xD0 +fn_806FA5D0 = .text:0x806FA5D0; // type:function size:0xF4 +fn_806FA6C4 = .text:0x806FA6C4; // type:function size:0x64 +fn_806FA728 = .text:0x806FA728; // type:function size:0xF0 +fn_806FA818 = .text:0x806FA818; // type:function size:0xE0 +fn_806FA8F8 = .text:0x806FA8F8; // type:function size:0x98 +fn_806FA990 = .text:0x806FA990; // type:function size:0xE8 +fn_806FAA78 = .text:0x806FAA78; // type:function size:0x8 +fn_806FAA80 = .text:0x806FAA80; // type:function size:0x70 +fn_806FAAF0 = .text:0x806FAAF0; // type:function size:0x88 +fn_806FAB78 = .text:0x806FAB78; // type:function size:0x6C +fn_806FABE4 = .text:0x806FABE4; // type:function size:0x6C +fn_806FAC50 = .text:0x806FAC50; // type:function size:0x234 +fn_806FAE84 = .text:0x806FAE84; // type:function size:0x210 +fn_806FB094 = .text:0x806FB094; // type:function size:0x1FC +fn_806FB290 = .text:0x806FB290; // type:function size:0x2A0 +fn_806FB530 = .text:0x806FB530; // type:function size:0xC4 +fn_806FB5F4 = .text:0x806FB5F4; // type:function size:0x284 +fn_806FB878 = .text:0x806FB878; // type:function size:0xB8 +fn_806FB930 = .text:0x806FB930; // type:function size:0xCC +fn_806FB9FC = .text:0x806FB9FC; // type:function size:0x68 +fn_806FBA64 = .text:0x806FBA64; // type:function size:0x68 +fn_806FBACC = .text:0x806FBACC; // type:function size:0x8 +fn_806FBAD4 = .text:0x806FBAD4; // type:function size:0x8 +fn_806FBADC = .text:0x806FBADC; // type:function size:0xAC +fn_806FBB88 = .text:0x806FBB88; // type:function size:0x8 +fn_806FBB90 = .text:0x806FBB90; // type:function size:0x8 +fn_806FBB98 = .text:0x806FBB98; // type:function size:0xF8 +fn_806FBC90 = .text:0x806FBC90; // type:function size:0xCC +fn_806FBD5C = .text:0x806FBD5C; // type:function size:0x150 +fn_806FBEAC = .text:0x806FBEAC; // type:function size:0xF8 +fn_806FBFA4 = .text:0x806FBFA4; // type:function size:0x13C +fn_806FC0E0 = .text:0x806FC0E0; // type:function size:0x164 +fn_806FC244 = .text:0x806FC244; // type:function size:0x170 +TRKInterruptHandler = .text:0x806FC3B4; // type:function size:0x194 scope:global +TRKExceptionHandler = .text:0x806FC548; // type:function size:0x9C scope:global +TRKPostInterruptEvent = .text:0x806FC5E4; // type:function size:0xB8 scope:global +TRKSwapAndGo = .text:0x806FC69C; // type:function size:0xC4 scope:global +TRKInterruptHandlerEnableInterrupts = .text:0x806FC760; // type:function size:0x54 scope:global +TRKTargetInterrupt = .text:0x806FC7B4; // type:function size:0x5C scope:global +fn_806FC810 = .text:0x806FC810; // type:function size:0x200 +fn_806FCA10 = .text:0x806FCA10; // type:function size:0x9C +fn_806FCAAC = .text:0x806FCAAC; // type:function size:0x124 +fn_806FCBD0 = .text:0x806FCBD0; // type:function size:0x88 +fn_806FCC58 = .text:0x806FCC58; // type:function size:0x74 +fn_806FCCCC = .text:0x806FCCCC; // type:function size:0x10 +TRKTargetSupportRequest = .text:0x806FCCDC; // type:function size:0x1F4 scope:global +TRKTargetStopped = .text:0x806FCED0; // type:function size:0x10 scope:global +TRKTargetSetStopped = .text:0x806FCEE0; // type:function size:0x10 scope:global +fn_806FCEF0 = .text:0x806FCEF0; // type:function size:0x18 +fn_806FCF08 = .text:0x806FCF08; // type:function size:0xDC +fn_806FCFE4 = .text:0x806FCFE4; // type:function size:0xA8 +fn_806FD08C = .text:0x806FD08C; // type:function size:0x24 +fn_806FD0B0 = .text:0x806FD0B0; // type:function size:0x24 +fn_806FD0D4 = .text:0x806FD0D4; // type:function size:0x1C8 +fn_806FD29C = .text:0x806FD29C; // type:function size:0x68 +TRKTargetSetInputPendingPtr = .text:0x806FD304; // type:function size:0x10 scope:global +fn_806FD314 = .text:0x806FD314; // type:function size:0x8 +fn_806FD31C = .text:0x806FD31C; // type:function size:0x90 +fn_806FD3AC = .text:0x806FD3AC; // type:function size:0x8 +fn_806FD3B4 = .text:0x806FD3B4; // type:function size:0x8 +fn_806FD3BC = .text:0x806FD3BC; // type:function size:0x24 +fn_806FD3E0 = .text:0x806FD3E0; // type:function size:0x24 +fn_806FD404 = .text:0x806FD404; // type:function size:0x5C +fn_806FD460 = .text:0x806FD460; // type:function size:0x54 +fn_806FD4B4 = .text:0x806FD4B4; // type:function size:0xA4 +fn_806FD558 = .text:0x806FD558; // type:function size:0x80 +fn_806FD5D8 = .text:0x806FD5D8; // type:function size:0x110 +fn_806FD6E8 = .text:0x806FD6E8; // type:function size:0x4 +fn_806FD6EC = .text:0x806FD6EC; // type:function size:0x4 +fn_806FD6F0 = .text:0x806FD6F0; // type:function size:0x2E8 +fn_806FD9D8 = .text:0x806FD9D8; // type:function size:0xBC +fn_806FDA94 = .text:0x806FDA94; // type:function size:0x124 +fn_806FDBB8 = .text:0x806FDBB8; // type:function size:0x104 +fn_806FDCBC = .text:0x806FDCBC; // type:function size:0xE0 +fn_806FDD9C = .text:0x806FDD9C; // type:function size:0xE0 +ESP_InitLib = .text:0x806FDE80; // type:function size:0x54 scope:global +ESP_CloseLib = .text:0x806FDEE0; // type:function size:0x48 scope:global +fn_806FDF30 = .text:0x806FDF30; // type:function size:0xD8 +ESP_ImportTitleInit = .text:0x806FE010; // type:function size:0x16C +ESP_ImportContentBegin = .text:0x806FE180; // type:function size:0x84 +ESP_ImportContentData = .text:0x806FE210; // type:function size:0xA8 +ESP_ImportContentEnd = .text:0x806FE2C0; // type:function size:0x74 +ESP_ImportTitleDone = .text:0x806FE340; // type:function size:0x54 +ESP_ImportTitleCancel = .text:0x806FE3A0; // type:function size:0x54 +fn_806FE400 = .text:0x806FE400; // type:function size:0x94 +fn_806FE4A0 = .text:0x806FE4A0; // type:function size:0x98 +fn_806FE540 = .text:0x806FE540; // type:function size:0xA0 +fn_806FE5E0 = .text:0x806FE5E0; // type:function size:0x8C +fn_806FE670 = .text:0x806FE670; // type:function size:0x74 +fn_806FE6F0 = .text:0x806FE6F0; // type:function size:0xF0 +fn_806FE7E0 = .text:0x806FE7E0; // type:function size:0xF0 +ESP_ListTitleContentsOnCard = .text:0x806FE8D0; // type:function size:0x114 +ESP_ListTmdContentsOnCard = .text:0x806FE9F0; // type:function size:0x120 +ESP_GetTicketViews = .text:0x806FEB10; // type:function size:0x114 +ESP_DiGetTicketView = .text:0x806FEC30; // type:function size:0xA4 scope:global +ESP_DiGetTmd = .text:0x806FECE0; // type:function size:0xEC scope:global +ESP_GetTmd = .text:0x806FEDD0; // type:function size:0x110 +ESP_GetTmdView = .text:0x806FEEE0; // type:function size:0x110 +ESP_GetDataDir = .text:0x806FEFF0; // type:function size:0x98 scope:global +ESP_GetTitleId = .text:0x806FF090; // type:function size:0x98 scope:global +ESP_GetDeviceId = .text:0x806FF130; // type:function size:0x90 +fn_806FF1C0 = .text:0x806FF1C0; // type:function size:0xD0 +fn_806FF290 = .text:0x806FF290; // type:function size:0x80 +fn_806FF310 = .text:0x806FF310; // type:function size:0xB4 +ESP_DeleteTitleContent = .text:0x806FF3D0; // type:function size:0x70 +ESP_DeleteContent = .text:0x806FF440; // type:function size:0x84 +ESP_ExportTitleInit = .text:0x806FF4D0; // type:function size:0xDC +ESP_ExportContentBegin = .text:0x806FF5B0; // type:function size:0x84 +ESP_ExportContentData = .text:0x806FF640; // type:function size:0xA8 +ESP_ExportContentEnd = .text:0x806FF6F0; // type:function size:0x74 +ESP_ExportTitleDone = .text:0x806FF770; // type:function size:0x54 +fn_806FF7D0 = .text:0x806FF7D0; // type:function size:0x44 +fn_806FF820 = .text:0x806FF820; // type:function size:0x7C +fn_806FF8A0 = .text:0x806FF8A0; // type:function size:0x14 +fn_806FF8C0 = .text:0x806FF8C0; // type:function size:0x14 +fn_806FF8E0 = .text:0x806FF8E0; // type:function size:0x10 +fn_806FF8F0 = .text:0x806FF8F0; // type:function size:0x18 +fn_806FF910 = .text:0x806FF910; // type:function size:0x10 +AICheckInit = .text:0x806FF920; // type:function size:0x8 +AIInit = .text:0x806FF930; // type:function size:0x180 +fn_806FFAB0 = .text:0x806FFAB0; // type:function size:0xC +fn_806FFAC0 = .text:0x806FFAC0; // type:function size:0xA8 +fn_806FFB70 = .text:0x806FFB70; // type:function size:0x64 +fn_806FFBE0 = .text:0x806FFBE0; // type:function size:0x1CC +ARCInitHandle = .text:0x806FFDB0; // type:function size:0xA0 +ARCOpen = .text:0x806FFE50; // type:function size:0x2AC +ARCFastOpen = .text:0x80700100; // type:function size:0x50 +ARCConvertPathToEntrynum = .text:0x80700150; // type:function size:0x27C +fn_807003D0 = .text:0x807003D0; // type:function size:0x1D0 +fn_807005A0 = .text:0x807005A0; // type:function size:0x230 +ARCGetStartAddrInMem = .text:0x807007D0; // type:function size:0x14 +ARCGetLength = .text:0x807007F0; // type:function size:0x8 +ARCClose = .text:0x80700800; // type:function size:0x8 +ARCChangeDir = .text:0x80700810; // type:function size:0x58 +ARCOpenDir = .text:0x80700870; // type:function size:0x7C +ARCReadDir = .text:0x807008F0; // type:function size:0xBC +ARCCloseDir = .text:0x807009B0; // type:function size:0x8 +AXInit = .text:0x807009C0; // type:function size:0x54 +fn_80700A20 = .text:0x80700A20; // type:function size:0x74 +fn_80700AA0 = .text:0x80700AA0; // type:function size:0x48 +AXIsInit = .text:0x80700AF0; // type:function size:0x8 +fn_80700B00 = .text:0x80700B00; // type:function size:0x14 +fn_80700B20 = .text:0x80700B20; // type:function size:0xAC +fn_80700BD0 = .text:0x80700BD0; // type:function size:0xB0 +fn_80700C80 = .text:0x80700C80; // type:function size:0xB0 +fn_80700D30 = .text:0x80700D30; // type:function size:0x1C +fn_80700D50 = .text:0x80700D50; // type:function size:0x10 +fn_80700D60 = .text:0x80700D60; // type:function size:0x84 +AXFreeVoice = .text:0x80700DF0; // type:function size:0x7C +AXAcquireVoice = .text:0x80700E70; // type:function size:0x184 +fn_80701000 = .text:0x80701000; // type:function size:0x114 +fn_80701120 = .text:0x80701120; // type:function size:0x14 +fn_80701140 = .text:0x80701140; // type:function size:0x34 +fn_80701180 = .text:0x80701180; // type:function size:0x1C +fn_807011A0 = .text:0x807011A0; // type:function size:0x20 +fn_807011C0 = .text:0x807011C0; // type:function size:0x20 +fn_807011E0 = .text:0x807011E0; // type:function size:0x20 +fn_80701200 = .text:0x80701200; // type:function size:0x20 +fn_80701220 = .text:0x80701220; // type:function size:0x34 +fn_80701260 = .text:0x80701260; // type:function size:0x1C +fn_80701280 = .text:0x80701280; // type:function size:0x20 +fn_807012A0 = .text:0x807012A0; // type:function size:0x20 +fn_807012C0 = .text:0x807012C0; // type:function size:0x20 +fn_807012E0 = .text:0x807012E0; // type:function size:0x20 +fn_80701300 = .text:0x80701300; // type:function size:0x34 +fn_80701340 = .text:0x80701340; // type:function size:0x1C +fn_80701360 = .text:0x80701360; // type:function size:0x3AC +AXRegisterAuxACallback = .text:0x80701710; // type:function size:0x64 +fn_80701780 = .text:0x80701780; // type:function size:0x64 +fn_807017F0 = .text:0x807017F0; // type:function size:0x64 +AXGetAuxACallback = .text:0x80701860; // type:function size:0x14 +fn_80701880 = .text:0x80701880; // type:function size:0x8 +fn_80701890 = .text:0x80701890; // type:function size:0x30 +fn_807018C0 = .text:0x807018C0; // type:function size:0x9BC +fn_80702280 = .text:0x80702280; // type:function size:0x50 +fn_807022D0 = .text:0x807022D0; // type:function size:0x4 +AXSetCompressor = .text:0x807022E0; // type:function size:0x8 +fn_807022F0 = .text:0x807022F0; // type:function size:0x8 +AXGetAuxAReturnVolume = .text:0x80702300; // type:function size:0x8 +AXGetAuxBReturnVolume = .text:0x80702310; // type:function size:0x8 +AXGetAuxCReturnVolume = .text:0x80702320; // type:function size:0x8 +fn_80702330 = .text:0x80702330; // type:function size:0x18 +AXSetAuxAReturnVolume = .text:0x80702350; // type:function size:0x8 +AXSetAuxBReturnVolume = .text:0x80702360; // type:function size:0x8 +AXSetAuxCReturnVolume = .text:0x80702370; // type:function size:0x8 +fn_80702380 = .text:0x80702380; // type:function size:0x260 +fn_807025E0 = .text:0x807025E0; // type:function size:0xB0 +fn_80702690 = .text:0x80702690; // type:function size:0xC +fn_807026A0 = .text:0x807026A0; // type:function size:0x54 +fn_80702700 = .text:0x80702700; // type:function size:0x10 +fn_80702710 = .text:0x80702710; // type:function size:0x4 +fn_80702720 = .text:0x80702720; // type:function size:0xEC +fn_80702810 = .text:0x80702810; // type:function size:0x1F8 +fn_80702A10 = .text:0x80702A10; // type:function size:0x68 +AXRegisterCallback = .text:0x80702A80; // type:function size:0x44 +fn_80702AD0 = .text:0x80702AD0; // type:function size:0xC +fn_80702AE0 = .text:0x80702AE0; // type:function size:0x6C +fn_80702B50 = .text:0x80702B50; // type:function size:0x6C +fn_80702BC0 = .text:0x80702BC0; // type:function size:0x178 +fn_80702D40 = .text:0x80702D40; // type:function size:0x58 +fn_80702DA0 = .text:0x80702DA0; // type:function size:0x4 +fn_80702DB0 = .text:0x80702DB0; // type:function size:0x15C +fn_80702F10 = .text:0x80702F10; // type:function size:0x8 +fn_80702F20 = .text:0x80702F20; // type:function size:0x550 +fn_80703470 = .text:0x80703470; // type:function size:0x310 +fn_80703780 = .text:0x80703780; // type:function size:0x8 +fn_80703790 = .text:0x80703790; // type:function size:0x40 +fn_807037D0 = .text:0x807037D0; // type:function size:0x30 +fn_80703800 = .text:0x80703800; // type:function size:0x44 +fn_80703850 = .text:0x80703850; // type:function size:0x28C +fn_80703AE0 = .text:0x80703AE0; // type:function size:0x18 +fn_80703B00 = .text:0x80703B00; // type:function size:0xC0 +fn_80703BC0 = .text:0x80703BC0; // type:function size:0x70 +fn_80703C30 = .text:0x80703C30; // type:function size:0x4C +fn_80703C80 = .text:0x80703C80; // type:function size:0xE8 +fn_80703D70 = .text:0x80703D70; // type:function size:0x98 +fn_80703E10 = .text:0x80703E10; // type:function size:0x84 +fn_80703EA0 = .text:0x80703EA0; // type:function size:0x78 +fn_80703F20 = .text:0x80703F20; // type:function size:0x60 +fn_80703F80 = .text:0x80703F80; // type:function size:0x8 +fn_80703F90 = .text:0x80703F90; // type:function size:0x40 +AXFXReverbHiInit = .text:0x80703FD0; // type:function size:0x64 +AXFXReverbHiShutdown = .text:0x80704040; // type:function size:0x24 +fn_80704070 = .text:0x80704070; // type:function size:0x64 +AXFXReverbHiCallback = .text:0x807040E0; // type:function size:0x4 +fn_807040F0 = .text:0x807040F0; // type:function size:0x19C +fn_80704290 = .text:0x80704290; // type:function size:0xD0 +fn_80704360 = .text:0x80704360; // type:function size:0x54 +fn_807043C0 = .text:0x807043C0; // type:function size:0x524 +fn_807048F0 = .text:0x807048F0; // type:function size:0x174 +fn_80704A70 = .text:0x80704A70; // type:function size:0x124 +fn_80704BA0 = .text:0x80704BA0; // type:function size:0x114 +fn_80704CC0 = .text:0x80704CC0; // type:function size:0x324 +fn_80704FF0 = .text:0x80704FF0; // type:function size:0x204 +fn_80705200 = .text:0x80705200; // type:function size:0x124 +fn_80705330 = .text:0x80705330; // type:function size:0x90 +fn_807053C0 = .text:0x807053C0; // type:function size:0x170 +fn_80705530 = .text:0x80705530; // type:function size:0x144 +fn_80705680 = .text:0x80705680; // type:function size:0x9C +fn_80705720 = .text:0x80705720; // type:function size:0x24 +fn_80705750 = .text:0x80705750; // type:function size:0x9C +fn_807057F0 = .text:0x807057F0; // type:function size:0x4 +fn_80705800 = .text:0x80705800; // type:function size:0x258 +fn_80705A60 = .text:0x80705A60; // type:function size:0x128 +fn_80705B90 = .text:0x80705B90; // type:function size:0x90 +fn_80705C20 = .text:0x80705C20; // type:function size:0x360 +fn_80705F80 = .text:0x80705F80; // type:function size:0x1F8 +fn_80706180 = .text:0x80706180; // type:function size:0x104 +fn_80706290 = .text:0x80706290; // type:function size:0xC +fn_807062A0 = .text:0x807062A0; // type:function size:0x14 +fn_807062C0 = .text:0x807062C0; // type:function size:0xC +fn_807062D0 = .text:0x807062D0; // type:function size:0xC +AXFXSetHooks = .text:0x807062E0; // type:function size:0xC +AXFXGetHooks = .text:0x807062F0; // type:function size:0x14 +PPCMfmsr = .text:0x80706310; // type:function size:0x8 scope:global +PPCMtmsr = .text:0x80706320; // type:function size:0x8 scope:global +PPCMfhid0 = .text:0x80706330; // type:function size:0x8 scope:global +fn_80706340 = .text:0x80706340; // type:function size:0x8 +PPCMfl2cr = .text:0x80706350; // type:function size:0x8 scope:global +PPCMtl2cr = .text:0x80706360; // type:function size:0x8 scope:global +PPCMtdec = .text:0x80706370; // type:function size:0x8 scope:weak +fn_80706380 = .text:0x80706380; // type:function size:0x8 +PPCHalt = .text:0x80706390; // type:function size:0x14 scope:weak +PPCMtmmcr0 = .text:0x807063B0; // type:function size:0x8 scope:global +PPCMtmmcr1 = .text:0x807063C0; // type:function size:0x8 scope:global +PPCMtpmc1 = .text:0x807063D0; // type:function size:0x8 scope:global +PPCMtpmc2 = .text:0x807063E0; // type:function size:0x8 scope:global +PPCMtpmc3 = .text:0x807063F0; // type:function size:0x8 scope:global +PPCMtpmc4 = .text:0x80706400; // type:function size:0x8 scope:global +PPCMffpscr = .text:0x80706410; // type:function size:0x20 scope:global +PPCMtfpscr = .text:0x80706430; // type:function size:0x28 scope:global +PPCMfhid2 = .text:0x80706460; // type:function size:0x8 scope:global +PPCMthid2 = .text:0x80706470; // type:function size:0x8 scope:global +fn_80706480 = .text:0x80706480; // type:function size:0xC +PPCMtwpar = .text:0x80706490; // type:function size:0x8 scope:global +PPCDisableSpeculation = .text:0x807064A0; // type:function size:0x28 scope:global +PPCSetFpNonIEEEMode = .text:0x807064D0; // type:function size:0x8 scope:global +PPCMthid4 = .text:0x807064E0; // type:function size:0x50 scope:global +fn_80706530 = .text:0x80706530; // type:function size:0x220 +fn_80706750 = .text:0x80706750; // type:function size:0x2AC +fn_80706A00 = .text:0x80706A00; // type:function size:0x14 +fn_80706A20 = .text:0x80706A20; // type:function size:0x1A0 +GKI_getpoolbuf = .text:0x80706BC0; // type:function size:0xE8 +GKI_freebuf = .text:0x80706CB0; // type:function size:0x170 +fn_80706E20 = .text:0x80706E20; // type:function size:0x44 +fn_80706E70 = .text:0x80706E70; // type:function size:0x1BC +fn_80707030 = .text:0x80707030; // type:function size:0xB0 +GKI_enqueue = .text:0x807070E0; // type:function size:0x13C +GKI_enqueue_head = .text:0x80707220; // type:function size:0x140 +GKI_dequeue = .text:0x80707360; // type:function size:0xA0 +GKI_remove_from_queue = .text:0x80707400; // type:function size:0xC4 +GKI_getfirst = .text:0x807074D0; // type:function size:0x8 +GKI_getnext = .text:0x807074E0; // type:function size:0x1C +fn_80707500 = .text:0x80707500; // type:function size:0x10 +fn_80707510 = .text:0x80707510; // type:function size:0x348 +fn_80707860 = .text:0x80707860; // type:function size:0x168 +fn_807079D0 = .text:0x807079D0; // type:function size:0xBC +fn_80707A90 = .text:0x80707A90; // type:function size:0x14 +fn_80707AB0 = .text:0x80707AB0; // type:function size:0x14C +fn_80707C00 = .text:0x80707C00; // type:function size:0x84 +fn_80707C90 = .text:0x80707C90; // type:function size:0x14 +fn_80707CB0 = .text:0x80707CB0; // type:function size:0x90 +fn_80707D40 = .text:0x80707D40; // type:function size:0xEC +fn_80707E30 = .text:0x80707E30; // type:function size:0x124 +fn_80707F60 = .text:0x80707F60; // type:function size:0x90 +fn_80707FF0 = .text:0x80707FF0; // type:function size:0xA8 +fn_807080A0 = .text:0x807080A0; // type:function size:0x4 +fn_807080B0 = .text:0x807080B0; // type:function size:0x4 +fn_807080C0 = .text:0x807080C0; // type:function size:0x4 +fn_807080D0 = .text:0x807080D0; // type:function size:0x4 +fn_807080E0 = .text:0x807080E0; // type:function size:0xA4 +fn_80708190 = .text:0x80708190; // type:function size:0x8 +fn_807081A0 = .text:0x807081A0; // type:function size:0x24 +fn_807081D0 = .text:0x807081D0; // type:function size:0x44 +fn_80708220 = .text:0x80708220; // type:function size:0x4 +fn_80708230 = .text:0x80708230; // type:function size:0x2C +fn_80708260 = .text:0x80708260; // type:function size:0x4 +fn_80708270 = .text:0x80708270; // type:function size:0x14 +fn_80708290 = .text:0x80708290; // type:function size:0x398 +fn_80708630 = .text:0x80708630; // type:function size:0x1AC +fn_807087E0 = .text:0x807087E0; // type:function size:0x2C +fn_80708810 = .text:0x80708810; // type:function size:0x68 +fn_80708880 = .text:0x80708880; // type:function size:0x34 +fn_807088C0 = .text:0x807088C0; // type:function size:0x30 +fn_807088F0 = .text:0x807088F0; // type:function size:0x3C +fn_80708930 = .text:0x80708930; // type:function size:0x94 +fn_807089D0 = .text:0x807089D0; // type:function size:0x1A8 +fn_80708B80 = .text:0x80708B80; // type:function size:0x19C +fn_80708D20 = .text:0x80708D20; // type:function size:0xEC +fn_80708E10 = .text:0x80708E10; // type:function size:0xE0 +fn_80708EF0 = .text:0x80708EF0; // type:function size:0x208 +fn_80709100 = .text:0x80709100; // type:function size:0x18C +fn_80709290 = .text:0x80709290; // type:function size:0x8 +fn_807092A0 = .text:0x807092A0; // type:function size:0x20C +fn_807094B0 = .text:0x807094B0; // type:function size:0xAC +fn_80709560 = .text:0x80709560; // type:function size:0x44 +bte_hcisu_send = .text:0x807095B0; // type:function size:0x20 +fn_807095D0 = .text:0x807095D0; // type:function size:0x64 +fn_80709640 = .text:0x80709640; // type:function size:0x24 +fn_80709670 = .text:0x80709670; // type:function size:0x10 +fn_80709680 = .text:0x80709680; // type:function size:0x2C +fn_807096B0 = .text:0x807096B0; // type:function size:0xB4 +LogMsg_0 = .text:0x80709770; // type:function size:0x18 +LogMsg_1 = .text:0x80709790; // type:function size:0x18 +LogMsg_2 = .text:0x807097B0; // type:function size:0x18 +LogMsg_3 = .text:0x807097D0; // type:function size:0x18 +fn_807097F0 = .text:0x807097F0; // type:function size:0x18 +LogMsg_5 = .text:0x80709810; // type:function size:0x18 +LogMsg_6 = .text:0x80709830; // type:function size:0x18 +fn_80709850 = .text:0x80709850; // type:function size:0x18 +fn_80709870 = .text:0x80709870; // type:function size:0xDC +fn_80709950 = .text:0x80709950; // type:function size:0x34 +fn_80709990 = .text:0x80709990; // type:function size:0x30 +fn_807099C0 = .text:0x807099C0; // type:function size:0x40 +fn_80709A00 = .text:0x80709A00; // type:function size:0x37C +btu_start_timer = .text:0x80709D80; // type:function size:0x70 +btu_stop_timer = .text:0x80709DF0; // type:function size:0x14 +fn_80709E04 = .text:0x80709E04; // type:function size:0x34 +fn_80709E38 = .text:0x80709E38; // type:function size:0xA0 +fn_80709ED8 = .text:0x80709ED8; // type:function size:0x10 +fn_80709EE8 = .text:0x80709EE8; // type:function size:0x10 +fn_80709EF8 = .text:0x80709EF8; // type:function size:0x10 +fn_80709F08 = .text:0x80709F08; // type:function size:0xC4 +fn_80709FCC = .text:0x80709FCC; // type:function size:0xC4 +fn_8070A090 = .text:0x8070A090; // type:function size:0x34 +fn_8070A0C4 = .text:0x8070A0C4; // type:function size:0x34 +fn_8070A0F8 = .text:0x8070A0F8; // type:function size:0x34 +fn_8070A12C = .text:0x8070A12C; // type:function size:0x64 +fn_8070A190 = .text:0x8070A190; // type:function size:0xEC +fn_8070A27C = .text:0x8070A27C; // type:function size:0x20 +fn_8070A29C = .text:0x8070A29C; // type:function size:0x14 +fn_8070A2B0 = .text:0x8070A2B0; // type:function size:0x1C +fn_8070A2CC = .text:0x8070A2CC; // type:function size:0x20 +fn_8070A2EC = .text:0x8070A2EC; // type:function size:0x14 +fn_8070A300 = .text:0x8070A300; // type:function size:0x68 +fn_8070A368 = .text:0x8070A368; // type:function size:0x8 +fn_8070A370 = .text:0x8070A370; // type:function size:0x4C +fn_8070A3BC = .text:0x8070A3BC; // type:function size:0xB4 +fn_8070A470 = .text:0x8070A470; // type:function size:0xA0 +fn_8070A510 = .text:0x8070A510; // type:function size:0x40 +fn_8070A550 = .text:0x8070A550; // type:function size:0x44 +fn_8070A594 = .text:0x8070A594; // type:function size:0x110 +fn_8070A6A4 = .text:0x8070A6A4; // type:function size:0xB0 +fn_8070A754 = .text:0x8070A754; // type:function size:0xBC +fn_8070A810 = .text:0x8070A810; // type:function size:0x8 +fn_8070A818 = .text:0x8070A818; // type:function size:0x48 +fn_8070A860 = .text:0x8070A860; // type:function size:0x70 +fn_8070A8D0 = .text:0x8070A8D0; // type:function size:0x9C +fn_8070A96C = .text:0x8070A96C; // type:function size:0xD4 +fn_8070AA40 = .text:0x8070AA40; // type:function size:0x60 +fn_8070AAA0 = .text:0x8070AAA0; // type:function size:0x84 +fn_8070AB24 = .text:0x8070AB24; // type:function size:0x114 +fn_8070AC38 = .text:0x8070AC38; // type:function size:0x224 +fn_8070AE5C = .text:0x8070AE5C; // type:function size:0x16C +fn_8070AFC8 = .text:0x8070AFC8; // type:function size:0x64 +fn_8070B02C = .text:0x8070B02C; // type:function size:0x268 +fn_8070B294 = .text:0x8070B294; // type:function size:0x18 +fn_8070B2AC = .text:0x8070B2AC; // type:function size:0x50 +fn_8070B2FC = .text:0x8070B2FC; // type:function size:0x88 +fn_8070B384 = .text:0x8070B384; // type:function size:0x4C +fn_8070B3D0 = .text:0x8070B3D0; // type:function size:0x44 +fn_8070B414 = .text:0x8070B414; // type:function size:0x48 +fn_8070B45C = .text:0x8070B45C; // type:function size:0x48 +fn_8070B4A4 = .text:0x8070B4A4; // type:function size:0x44 +fn_8070B4E8 = .text:0x8070B4E8; // type:function size:0x44 +fn_8070B52C = .text:0x8070B52C; // type:function size:0x5C +fn_8070B588 = .text:0x8070B588; // type:function size:0x18 +fn_8070B5A0 = .text:0x8070B5A0; // type:function size:0x1A0 +fn_8070B740 = .text:0x8070B740; // type:function size:0xE0 +fn_8070B820 = .text:0x8070B820; // type:function size:0x48 +fn_8070B868 = .text:0x8070B868; // type:function size:0x90 +fn_8070B8F8 = .text:0x8070B8F8; // type:function size:0x4C +fn_8070B944 = .text:0x8070B944; // type:function size:0x40 +fn_8070B984 = .text:0x8070B984; // type:function size:0x8C +fn_8070BA10 = .text:0x8070BA10; // type:function size:0x88 +fn_8070BA98 = .text:0x8070BA98; // type:function size:0x4 +fn_8070BA9C = .text:0x8070BA9C; // type:function size:0xC8 +fn_8070BB64 = .text:0x8070BB64; // type:function size:0xC0 +fn_8070BC24 = .text:0x8070BC24; // type:function size:0x130 +fn_8070BD54 = .text:0x8070BD54; // type:function size:0x8 +fn_8070BD5C = .text:0x8070BD5C; // type:function size:0x9C +fn_8070BDF8 = .text:0x8070BDF8; // type:function size:0x84 +fn_8070BE7C = .text:0x8070BE7C; // type:function size:0x28 +fn_8070BEA4 = .text:0x8070BEA4; // type:function size:0x3C +fn_8070BEE0 = .text:0x8070BEE0; // type:function size:0xF4 +fn_8070BFD4 = .text:0x8070BFD4; // type:function size:0x70 +fn_8070C044 = .text:0x8070C044; // type:function size:0x280 +fn_8070C2C4 = .text:0x8070C2C4; // type:function size:0x1C +fn_8070C2E0 = .text:0x8070C2E0; // type:function size:0x6C +fn_8070C34C = .text:0x8070C34C; // type:function size:0x6C +fn_8070C3B8 = .text:0x8070C3B8; // type:function size:0xE4 +fn_8070C49C = .text:0x8070C49C; // type:function size:0x238 +fn_8070C6D4 = .text:0x8070C6D4; // type:function size:0x108 +fn_8070C7DC = .text:0x8070C7DC; // type:function size:0x84 +fn_8070C860 = .text:0x8070C860; // type:function size:0x1C +fn_8070C87C = .text:0x8070C87C; // type:function size:0x4 +fn_8070C880 = .text:0x8070C880; // type:function size:0x50 +fn_8070C8D0 = .text:0x8070C8D0; // type:function size:0x88 +fn_8070C958 = .text:0x8070C958; // type:function size:0x38 +fn_8070C990 = .text:0x8070C990; // type:function size:0x38 +fn_8070C9C8 = .text:0x8070C9C8; // type:function size:0x64 +fn_8070CA2C = .text:0x8070CA2C; // type:function size:0x58 +fn_8070CA84 = .text:0x8070CA84; // type:function size:0x84 +fn_8070CB08 = .text:0x8070CB08; // type:function size:0x38 +fn_8070CB40 = .text:0x8070CB40; // type:function size:0x8C +fn_8070CBCC = .text:0x8070CBCC; // type:function size:0xF0 +fn_8070CCBC = .text:0x8070CCBC; // type:function size:0x48 +fn_8070CD04 = .text:0x8070CD04; // type:function size:0x38 +fn_8070CD3C = .text:0x8070CD3C; // type:function size:0x98 +fn_8070CDD4 = .text:0x8070CDD4; // type:function size:0xC8 +fn_8070CE9C = .text:0x8070CE9C; // type:function size:0x68 +fn_8070CF04 = .text:0x8070CF04; // type:function size:0x18 +fn_8070CF1C = .text:0x8070CF1C; // type:function size:0x380 +fn_8070D29C = .text:0x8070D29C; // type:function size:0x380 +fn_8070D61C = .text:0x8070D61C; // type:function size:0x78 +fn_8070D694 = .text:0x8070D694; // type:function size:0xF8 +fn_8070D78C = .text:0x8070D78C; // type:function size:0x120 +fn_8070D8AC = .text:0x8070D8AC; // type:function size:0xC +fn_8070D8B8 = .text:0x8070D8B8; // type:function size:0x174 +fn_8070DA2C = .text:0x8070DA2C; // type:function size:0x104 +fn_8070DB30 = .text:0x8070DB30; // type:function size:0xA4 +fn_8070DBD4 = .text:0x8070DBD4; // type:function size:0x134 +fn_8070DD08 = .text:0x8070DD08; // type:function size:0x194 +fn_8070DE9C = .text:0x8070DE9C; // type:function size:0x168 +fn_8070E004 = .text:0x8070E004; // type:function size:0x68 +fn_8070E06C = .text:0x8070E06C; // type:function size:0x128 +fn_8070E194 = .text:0x8070E194; // type:function size:0xB8 +fn_8070E24C = .text:0x8070E24C; // type:function size:0x58 +fn_8070E2A4 = .text:0x8070E2A4; // type:function size:0x268 +fn_8070E50C = .text:0x8070E50C; // type:function size:0x1F8 +fn_8070E704 = .text:0x8070E704; // type:function size:0x200 +fn_8070E904 = .text:0x8070E904; // type:function size:0x1C +fn_8070E920 = .text:0x8070E920; // type:function size:0x164 +fn_8070EA84 = .text:0x8070EA84; // type:function size:0x11C +fn_8070EBA0 = .text:0x8070EBA0; // type:function size:0x1C8 +fn_8070ED68 = .text:0x8070ED68; // type:function size:0x298 +fn_8070F000 = .text:0x8070F000; // type:function size:0x88 +fn_8070F088 = .text:0x8070F088; // type:function size:0x38 +fn_8070F0C0 = .text:0x8070F0C0; // type:function size:0x64 +fn_8070F124 = .text:0x8070F124; // type:function size:0xB4 +fn_8070F1D8 = .text:0x8070F1D8; // type:function size:0x90 +fn_8070F268 = .text:0x8070F268; // type:function size:0xA8 +fn_8070F310 = .text:0x8070F310; // type:function size:0x6C +fn_8070F37C = .text:0x8070F37C; // type:function size:0x54 +fn_8070F3D0 = .text:0x8070F3D0; // type:function size:0x354 +fn_8070F724 = .text:0x8070F724; // type:function size:0x14C +fn_8070F870 = .text:0x8070F870; // type:function size:0xB4 +fn_8070F924 = .text:0x8070F924; // type:function size:0x13C +fn_8070FA60 = .text:0x8070FA60; // type:function size:0x80 +fn_8070FAE0 = .text:0x8070FAE0; // type:function size:0xBC +fn_8070FB9C = .text:0x8070FB9C; // type:function size:0x54 +fn_8070FBF0 = .text:0x8070FBF0; // type:function size:0xE0 +fn_8070FCD0 = .text:0x8070FCD0; // type:function size:0x1C +fn_8070FCEC = .text:0x8070FCEC; // type:function size:0x84 +btm_acl_created = .text:0x8070FD70; // type:function size:0x314 +btm_acl_removed = .text:0x80710084; // type:function size:0xC4 +fn_80710148 = .text:0x80710148; // type:function size:0x64 +fn_807101AC = .text:0x807101AC; // type:function size:0x21C +btm_acl_encrypt_change = .text:0x807103C8; // type:function size:0x170 +fn_80710538 = .text:0x80710538; // type:function size:0x1F0 +fn_80710728 = .text:0x80710728; // type:function size:0x10 +fn_80710738 = .text:0x80710738; // type:function size:0x104 +btm_read_remote_version_complete = .text:0x8071083C; // type:function size:0x8C +btm_read_remote_features_complete = .text:0x807108C8; // type:function size:0x22C +fn_80710AF4 = .text:0x80710AF4; // type:function size:0x10 +fn_80710B04 = .text:0x80710B04; // type:function size:0xD8 +fn_80710BDC = .text:0x80710BDC; // type:function size:0x5C +fn_80710C38 = .text:0x80710C38; // type:function size:0x10 +fn_80710C48 = .text:0x80710C48; // type:function size:0x9C +btm_process_clk_off_comp_evt = .text:0x80710CE4; // type:function size:0x9C +btm_acl_role_changed = .text:0x80710D80; // type:function size:0x1F4 +fn_80710F74 = .text:0x80710F74; // type:function size:0x5C +fn_80710FD0 = .text:0x80710FD0; // type:function size:0x1A0 +fn_80711170 = .text:0x80711170; // type:function size:0x44 +fn_807111B4 = .text:0x807111B4; // type:function size:0xD8 +fn_8071128C = .text:0x8071128C; // type:function size:0x13C +fn_807113C8 = .text:0x807113C8; // type:function size:0x13C +fn_80711504 = .text:0x80711504; // type:function size:0x11C +fn_80711620 = .text:0x80711620; // type:function size:0x118 +fn_80711738 = .text:0x80711738; // type:function size:0xBC +fn_807117F4 = .text:0x807117F4; // type:function size:0x220 +fn_80711A14 = .text:0x80711A14; // type:function size:0x188 +fn_80711B9C = .text:0x80711B9C; // type:function size:0xAC +fn_80711C48 = .text:0x80711C48; // type:function size:0xA0 +fn_80711CE8 = .text:0x80711CE8; // type:function size:0x120 +fn_80711E08 = .text:0x80711E08; // type:function size:0xB8 +btm_find_dev = .text:0x80711EC0; // type:function size:0x88 +fn_80711F48 = .text:0x80711F48; // type:function size:0x198 +fn_807120E0 = .text:0x807120E0; // type:function size:0xA0 +fn_80712180 = .text:0x80712180; // type:function size:0xB0 +BTM_DeviceReset = .text:0x80712230; // type:function size:0x9C +fn_807122CC = .text:0x807122CC; // type:function size:0xA8 +BTM_IsDeviceUp = .text:0x80712374; // type:function size:0x1C +fn_80712390 = .text:0x80712390; // type:function size:0xF0 +fn_80712480 = .text:0x80712480; // type:function size:0x298 +fn_80712718 = .text:0x80712718; // type:function size:0x1C4 +fn_807128DC = .text:0x807128DC; // type:function size:0xC8 +fn_807129A4 = .text:0x807129A4; // type:function size:0xBC +fn_80712A60 = .text:0x80712A60; // type:function size:0x4FC +fn_80712F5C = .text:0x80712F5C; // type:function size:0xB8 +fn_80713014 = .text:0x80713014; // type:function size:0x8C +fn_807130A0 = .text:0x807130A0; // type:function size:0x40 +fn_807130E0 = .text:0x807130E0; // type:function size:0x48 +fn_80713128 = .text:0x80713128; // type:function size:0x4C +fn_80713174 = .text:0x80713174; // type:function size:0x80 +fn_807131F4 = .text:0x807131F4; // type:function size:0x10 +fn_80713204 = .text:0x80713204; // type:function size:0x10 +fn_80713214 = .text:0x80713214; // type:function size:0x18 +fn_8071322C = .text:0x8071322C; // type:function size:0xFC +fn_80713328 = .text:0x80713328; // type:function size:0x6C +fn_80713394 = .text:0x80713394; // type:function size:0x38 +btm_vendor_specific_evt = .text:0x807133CC; // type:function size:0x98 +fn_80713464 = .text:0x80713464; // type:function size:0xA0 +fn_80713504 = .text:0x80713504; // type:function size:0xD8 +fn_807135DC = .text:0x807135DC; // type:function size:0xD0 +fn_807136AC = .text:0x807136AC; // type:function size:0xD0 +fn_8071377C = .text:0x8071377C; // type:function size:0x7C +fn_807137F8 = .text:0x807137F8; // type:function size:0x5C +fn_80713854 = .text:0x80713854; // type:function size:0x68 +btm_return_link_keys_evt = .text:0x807138BC; // type:function size:0x18C +fn_80713A48 = .text:0x80713A48; // type:function size:0x20 +fn_80713A68 = .text:0x80713A68; // type:function size:0x78 +fn_80713AE0 = .text:0x80713AE0; // type:function size:0xB8 +fn_80713B98 = .text:0x80713B98; // type:function size:0x4 +fn_80713B9C = .text:0x80713B9C; // type:function size:0x284 +fn_80713E20 = .text:0x80713E20; // type:function size:0xB0 +fn_80713ED0 = .text:0x80713ED0; // type:function size:0xB0 +fn_80713F80 = .text:0x80713F80; // type:function size:0x98 +fn_80714018 = .text:0x80714018; // type:function size:0x188 +fn_807141A0 = .text:0x807141A0; // type:function size:0x10 +fn_807141B0 = .text:0x807141B0; // type:function size:0x108 +fn_807142B8 = .text:0x807142B8; // type:function size:0x1B4 +fn_8071446C = .text:0x8071446C; // type:function size:0xE8 +fn_80714554 = .text:0x80714554; // type:function size:0x78 +fn_807145CC = .text:0x807145CC; // type:function size:0xC0 +fn_8071468C = .text:0x8071468C; // type:function size:0xB8 +fn_80714744 = .text:0x80714744; // type:function size:0x13C +fn_80714880 = .text:0x80714880; // type:function size:0xD0 +fn_80714950 = .text:0x80714950; // type:function size:0x198 +fn_80714AE8 = .text:0x80714AE8; // type:function size:0x4 +fn_80714AEC = .text:0x80714AEC; // type:function size:0xDC +fn_80714BC8 = .text:0x80714BC8; // type:function size:0x104 +fn_80714CCC = .text:0x80714CCC; // type:function size:0xE4 +fn_80714DB0 = .text:0x80714DB0; // type:function size:0x220 +btm_process_inq_results = .text:0x80714FD0; // type:function size:0x278 +btm_process_inq_complete = .text:0x80715248; // type:function size:0x104 +btm_initiate_rem_name = .text:0x8071534C; // type:function size:0x150 +btm_process_remote_name = .text:0x8071549C; // type:function size:0x158 +fn_807155F4 = .text:0x807155F4; // type:function size:0x40 +fn_80715634 = .text:0x80715634; // type:function size:0x5C +fn_80715690 = .text:0x80715690; // type:function size:0xBC +BTM_SetPowerMode = .text:0x8071574C; // type:function size:0x1D0 +fn_8071591C = .text:0x8071591C; // type:function size:0xB8 +fn_807159D4 = .text:0x807159D4; // type:function size:0x78 +fn_80715A4C = .text:0x80715A4C; // type:function size:0x50 +fn_80715A9C = .text:0x80715A9C; // type:function size:0x21C +fn_80715CB8 = .text:0x80715CB8; // type:function size:0x160 +fn_80715E18 = .text:0x80715E18; // type:function size:0x234 +fn_8071604C = .text:0x8071604C; // type:function size:0xB0 +btm_pm_proc_mode_change = .text:0x807160FC; // type:function size:0x228 +fn_80716324 = .text:0x80716324; // type:function size:0x44 +fn_80716368 = .text:0x80716368; // type:function size:0x1DC +btm_sco_chk_pend_unpark = .text:0x80716544; // type:function size:0x18C +fn_807166D0 = .text:0x807166D0; // type:function size:0x1E0 +fn_807168B0 = .text:0x807168B0; // type:function size:0x1A0 +fn_80716A50 = .text:0x80716A50; // type:function size:0xB8 +btm_remove_sco_links = .text:0x80716B08; // type:function size:0x84 +btm_sco_removed = .text:0x80716B8C; // type:function size:0x114 +fn_80716CA0 = .text:0x80716CA0; // type:function size:0xB4 +fn_80716D54 = .text:0x80716D54; // type:function size:0x4 +fn_80716D58 = .text:0x80716D58; // type:function size:0x1A8 +btm_esco_proc_conn_chg = .text:0x80716F00; // type:function size:0x104 +fn_80717004 = .text:0x80717004; // type:function size:0x70 +fn_80717074 = .text:0x80717074; // type:function size:0x60 +fn_807170D4 = .text:0x807170D4; // type:function size:0x88 +fn_8071715C = .text:0x8071715C; // type:function size:0x78 +fn_807171D4 = .text:0x807171D4; // type:function size:0x50 +fn_80717224 = .text:0x80717224; // type:function size:0x54 +fn_80717278 = .text:0x80717278; // type:function size:0xB0 +BTM_SetSecurityLevel = .text:0x80717328; // type:function size:0x228 +fn_80717550 = .text:0x80717550; // type:function size:0xC4 +fn_80717614 = .text:0x80717614; // type:function size:0x1DC +fn_807177F0 = .text:0x807177F0; // type:function size:0x3CC +btm_sec_l2cap_access_req = .text:0x80717BBC; // type:function size:0x464 +btm_sec_mx_access_request = .text:0x80718020; // type:function size:0x29C +fn_807182BC = .text:0x807182BC; // type:function size:0x12C +fn_807183E8 = .text:0x807183E8; // type:function size:0x1C +fn_80718404 = .text:0x80718404; // type:function size:0x40 +btm_sec_abort_access_req = .text:0x80718444; // type:function size:0xB4 +btm_sec_rmt_name_request_complete = .text:0x807184F8; // type:function size:0x2E8 +btm_sec_auth_complete = .text:0x807187E0; // type:function size:0x344 +btm_sec_mkey_comp_event = .text:0x80718B24; // type:function size:0xFC +btm_sec_encrypt_change = .text:0x80718C20; // type:function size:0x13C +btm_sec_is_bonding = .text:0x80718D5C; // type:function size:0x40 +fn_80718D9C = .text:0x80718D9C; // type:function size:0x480 +btm_sec_disconnect = .text:0x8071921C; // type:function size:0xBC +btm_sec_disconnected = .text:0x807192D8; // type:function size:0x13C +fn_80719414 = .text:0x80719414; // type:function size:0x1AC +btm_sec_link_key_request = .text:0x807195C0; // type:function size:0x130 +fn_807196F0 = .text:0x807196F0; // type:function size:0x74 +btm_sec_pin_code_request = .text:0x80719764; // type:function size:0x35C +btm_sec_update_clock_offset = .text:0x80719AC0; // type:function size:0x50 +btm_sec_execute_procedure = .text:0x80719B10; // type:function size:0x3E0 +btm_sec_start_authorization = .text:0x80719EF0; // type:function size:0x11C +fn_8071A00C = .text:0x8071A00C; // type:function size:0xE0 +fn_8071A0EC = .text:0x8071A0EC; // type:function size:0x34 +btu_hcif_process_event = .text:0x8071A120; // type:function size:0x5B8 +btu_hcif_send_cmd = .text:0x8071A6D8; // type:function size:0x18C +btu_hcif_connection_comp_evt = .text:0x8071A864; // type:function size:0xDC +btu_hcif_connection_request_evt = .text:0x8071A940; // type:function size:0x8C +btu_hcif_qos_setup_comp_evt = .text:0x8071A9CC; // type:function size:0x100 +btu_hcif_esco_connection_comp_evt = .text:0x8071AACC; // type:function size:0xE0 +fn_8071ABAC = .text:0x8071ABAC; // type:function size:0x158 +btu_hcif_command_complete_evt = .text:0x8071AD04; // type:function size:0x118 +fn_8071AE1C = .text:0x8071AE1C; // type:function size:0x200 +btu_hcif_command_status_evt = .text:0x8071B01C; // type:function size:0x128 +fn_8071B144 = .text:0x8071B144; // type:function size:0x158 +btu_hcif_link_key_notification_evt = .text:0x8071B29C; // type:function size:0xE0 +fn_8071B37C = .text:0x8071B37C; // type:function size:0x2C +fn_8071B3A8 = .text:0x8071B3A8; // type:function size:0x4C +fn_8071B3F4 = .text:0x8071B3F4; // type:function size:0xE0 +fn_8071B4D4 = .text:0x8071B4D4; // type:function size:0x60 +fn_8071B534 = .text:0x8071B534; // type:function size:0x70 +gap_connect_ind = .text:0x8071B5A4; // type:function size:0x18C +fn_8071B730 = .text:0x8071B730; // type:function size:0x1DC +fn_8071B90C = .text:0x8071B90C; // type:function size:0x13C +fn_8071BA48 = .text:0x8071BA48; // type:function size:0x1EC +fn_8071BC34 = .text:0x8071BC34; // type:function size:0x1F8 +fn_8071BE2C = .text:0x8071BE2C; // type:function size:0x110 +fn_8071BF3C = .text:0x8071BF3C; // type:function size:0x134 +fn_8071C070 = .text:0x8071C070; // type:function size:0x1D8 +fn_8071C248 = .text:0x8071C248; // type:function size:0xC +fn_8071C254 = .text:0x8071C254; // type:function size:0xC +gap_find_addr_name_cb = .text:0x8071C260; // type:function size:0x218 +gap_find_addr_inq_cb = .text:0x8071C478; // type:function size:0x1B4 +gap_convert_btm_status = .text:0x8071C62C; // type:function size:0x60 +btsnd_hcic_inquiry = .text:0x8071C68C; // type:function size:0xA8 +btsnd_hcic_inq_cancel = .text:0x8071C734; // type:function size:0x60 +btsnd_hcic_per_inq_mode = .text:0x8071C794; // type:function size:0xC0 +btsnd_hcic_create_conn = .text:0x8071C854; // type:function size:0xE0 +btsnd_hcic_disconnect = .text:0x8071C934; // type:function size:0x88 +btsnd_hcic_add_SCO_conn = .text:0x8071C9BC; // type:function size:0x8C +btsnd_hcic_accept_conn = .text:0x8071CA48; // type:function size:0x60 +btsnd_hcic_reject_conn = .text:0x8071CAA8; // type:function size:0x5C +btsnd_hcic_link_key_req_reply = .text:0x8071CB04; // type:function size:0x1A0 +btsnd_hcic_link_key_neg_reply = .text:0x8071CCA4; // type:function size:0xA0 +btsnd_hcic_pin_code_req_reply = .text:0x8071CD44; // type:function size:0x1E4 +btsnd_hcic_pin_code_neg_reply = .text:0x8071CF28; // type:function size:0xA0 +btsnd_hcic_change_conn_type = .text:0x8071CFC8; // type:function size:0x90 +btsnd_hcic_auth_request = .text:0x8071D058; // type:function size:0x7C +btsnd_hcic_set_conn_encrypt = .text:0x8071D0D4; // type:function size:0x8C +btsnd_hcic_rmt_name_req = .text:0x8071D160; // type:function size:0xD8 +btsnd_hcic_rmt_name_req_cancel = .text:0x8071D238; // type:function size:0xA0 +btsnd_hcic_rmt_features_req = .text:0x8071D2D8; // type:function size:0x7C +btsnd_hcic_rmt_ver_req = .text:0x8071D354; // type:function size:0x7C +btsnd_hcic_read_rmt_clk_offset = .text:0x8071D3D0; // type:function size:0x7C +btsnd_hcic_setup_esco_conn = .text:0x8071D44C; // type:function size:0xFC +btsnd_hcic_accept_esco_conn = .text:0x8071D548; // type:function size:0xE8 +btsnd_hcic_reject_esco_conn = .text:0x8071D630; // type:function size:0x60 +btsnd_hcic_hold_mode = .text:0x8071D690; // type:function size:0xB4 +btsnd_hcic_sniff_mode = .text:0x8071D744; // type:function size:0xCC +btsnd_hcic_exit_sniff_mode = .text:0x8071D810; // type:function size:0x84 +btsnd_hcic_park_mode = .text:0x8071D894; // type:function size:0xB4 +btsnd_hcic_exit_park_mode = .text:0x8071D948; // type:function size:0x84 +btsnd_hcic_switch_role = .text:0x8071D9CC; // type:function size:0xB0 +btsnd_hcic_write_policy_set = .text:0x8071DA7C; // type:function size:0x94 +btsnd_hcic_reset = .text:0x8071DB10; // type:function size:0x5C +btsnd_hcic_set_event_filter = .text:0x8071DB6C; // type:function size:0x1BC +btsnd_hcic_write_pin_type = .text:0x8071DD28; // type:function size:0x74 +btsnd_hcic_read_stored_key = .text:0x8071DD9C; // type:function size:0x60 +btsnd_hcic_write_stored_key = .text:0x8071DDFC; // type:function size:0x1C0 +btsnd_hcic_delete_stored_key = .text:0x8071DFBC; // type:function size:0xB0 +btsnd_hcic_change_name = .text:0x8071E06C; // type:function size:0x140 +btsnd_hcic_write_page_tout = .text:0x8071E1AC; // type:function size:0x38 +btsnd_hcic_write_scan_enable = .text:0x8071E1E4; // type:function size:0x30 +btsnd_hcic_write_pagescan_cfg = .text:0x8071E214; // type:function size:0x44 +btsnd_hcic_write_inqscan_cfg = .text:0x8071E258; // type:function size:0x44 +btsnd_hcic_write_auth_enable = .text:0x8071E29C; // type:function size:0x74 +btsnd_hcic_write_encr_mode = .text:0x8071E310; // type:function size:0x74 +btsnd_hcic_write_dev_class = .text:0x8071E384; // type:function size:0x44 +btsnd_hcic_write_auto_flush_tout = .text:0x8071E3C8; // type:function size:0x44 +btsnd_hcic_set_host_buf_size = .text:0x8071E40C; // type:function size:0xBC +btsnd_hcic_write_link_super_tout = .text:0x8071E4C8; // type:function size:0x94 +btsnd_hcic_write_cur_iac_lap = .text:0x8071E55C; // type:function size:0x70 +btsnd_hcic_read_local_ver = .text:0x8071E5CC; // type:function size:0x60 +btsnd_hcic_read_local_features = .text:0x8071E62C; // type:function size:0x5C +btsnd_hcic_read_buffer_size = .text:0x8071E688; // type:function size:0x28 +btsnd_hcic_read_bd_addr = .text:0x8071E6B0; // type:function size:0x60 +btsnd_hcic_get_link_quality = .text:0x8071E710; // type:function size:0x7C +btsnd_hcic_read_rssi = .text:0x8071E78C; // type:function size:0x78 +btsnd_hcic_set_afh_channels = .text:0x8071E804; // type:function size:0x420 +btsnd_hcic_write_inqscan_type = .text:0x8071EC24; // type:function size:0x30 +btsnd_hcic_write_inquiry_mode = .text:0x8071EC54; // type:function size:0x30 +btsnd_hcic_write_pagescan_type = .text:0x8071EC84; // type:function size:0x30 +btsnd_hcic_vendor_spec_cmd = .text:0x8071ECB4; // type:function size:0xF4 +HID_DevInit = .text:0x8071EDA8; // type:function size:0x68 +hidd_conn_initiate = .text:0x8071EE10; // type:function size:0xC0 +hidd_proc_repage_timeout = .text:0x8071EED0; // type:function size:0xC8 +hidd_pm_set_now = .text:0x8071EF98; // type:function size:0x1D8 +hidd_pm_proc_mode_change = .text:0x8071F170; // type:function size:0x158 +hidd_pm_inact_timeout = .text:0x8071F2C8; // type:function size:0x4C +HID_HostGetSDPRecord = .text:0x8071F314; // type:function size:0xC8 +hidh_search_callback = .text:0x8071F3DC; // type:function size:0x450 +HID_HostInit = .text:0x8071F82C; // type:function size:0x44 +HID_HostRegister = .text:0x8071F870; // type:function size:0x7C +HID_HostDeregister = .text:0x8071F8EC; // type:function size:0xE4 +HID_HostAddDev = .text:0x8071F9D0; // type:function size:0x190 +fn_8071FB60 = .text:0x8071FB60; // type:function size:0xC8 +fn_8071FC28 = .text:0x8071FC28; // type:function size:0x64 +HID_HostWriteDev = .text:0x8071FC8C; // type:function size:0x140 +fn_8071FDCC = .text:0x8071FDCC; // type:function size:0xA0 +HID_HostSetSecurityLevel = .text:0x8071FE6C; // type:function size:0x228 +hidh_conn_reg = .text:0x80720094; // type:function size:0x158 +hidh_conn_disconnect = .text:0x807201EC; // type:function size:0xA4 +hidh_sec_check_complete_term = .text:0x80720290; // type:function size:0x130 +hidh_l2cif_connect_ind = .text:0x807203C0; // type:function size:0x258 +hidh_proc_repage_timeout = .text:0x80720618; // type:function size:0x14C +hidh_sec_check_complete_orig = .text:0x80720764; // type:function size:0x214 +hidh_l2cif_connect_cfm = .text:0x80720978; // type:function size:0x348 +hidh_l2cif_config_ind = .text:0x80720CC0; // type:function size:0x2A8 +fn_80720F68 = .text:0x80720F68; // type:function size:0x30C +fn_80721274 = .text:0x80721274; // type:function size:0x2C4 +hidh_l2cif_disconnect_cfm = .text:0x80721538; // type:function size:0x248 +hidh_l2cif_cong_ind = .text:0x80721780; // type:function size:0x1F8 +hidh_l2cif_data_ind = .text:0x80721978; // type:function size:0x398 +hidh_conn_snd_data = .text:0x80721D10; // type:function size:0x29C +hidh_conn_initiate = .text:0x80721FAC; // type:function size:0xFC +hidh_conn_dereg = .text:0x807220A8; // type:function size:0x2C +L2CA_Register = .text:0x807220D4; // type:function size:0x19C +L2CA_Deregister = .text:0x80722270; // type:function size:0x90 +L2CA_ConnectReq = .text:0x80722300; // type:function size:0x234 +L2CA_ConnectRsp = .text:0x80722534; // type:function size:0x190 +L2CA_ConfigReq = .text:0x807226C4; // type:function size:0xB8 +L2CA_ConfigRsp = .text:0x8072277C; // type:function size:0xD0 +L2CA_DisconnectReq = .text:0x8072284C; // type:function size:0xA4 +L2CA_DisconnectRsp = .text:0x807228F0; // type:function size:0xA4 +L2CA_DataWrite = .text:0x80722994; // type:function size:0x124 +L2CA_SetIdleTimeout = .text:0x80722AB8; // type:function size:0xC8 +L2CA_SetIdleTimeoutByBdAddr = .text:0x80722B80; // type:function size:0x100 +L2CA_SetTraceLevel = .text:0x80722C80; // type:function size:0x1C +fn_80722C9C = .text:0x80722C9C; // type:function size:0x4 +l2c_csm_execute = .text:0x80722CA0; // type:function size:0x4C +l2c_csm_closed = .text:0x80722CEC; // type:function size:0x294 +l2c_csm_orig_w4_sec_comp = .text:0x80722F80; // type:function size:0x170 +l2c_csm_term_w4_sec_comp = .text:0x807230F0; // type:function size:0x168 +l2c_csm_w4_l2cap_connect_rsp = .text:0x80723258; // type:function size:0x244 +fn_8072349C = .text:0x8072349C; // type:function size:0x1D8 +l2c_csm_config = .text:0x80723674; // type:function size:0x3C8 +l2c_csm_open = .text:0x80723A3C; // type:function size:0x25C +l2c_csm_w4_l2cap_disconnect_rsp = .text:0x80723C98; // type:function size:0x1E4 +fn_80723E7C = .text:0x80723E7C; // type:function size:0x15C +forward_peer_data = .text:0x80723FD8; // type:function size:0x1A4 +l2c_link_hci_conn_req = .text:0x8072417C; // type:function size:0x154 +l2c_link_hci_conn_comp = .text:0x807242D0; // type:function size:0x238 +l2c_link_sec_comp = .text:0x80724508; // type:function size:0xB4 +l2c_link_hci_disc_comp = .text:0x807245BC; // type:function size:0xBC +l2c_link_hci_qos_violation = .text:0x80724678; // type:function size:0x70 +l2c_link_timeout = .text:0x807246E8; // type:function size:0x174 +l2c_link_send_to_lower = .text:0x8072485C; // type:function size:0x108 +l2c_link_check_send_pkts = .text:0x80724964; // type:function size:0x2CC +l2c_link_adjust_allocation = .text:0x80724C30; // type:function size:0x198 +l2c_link_process_num_completed_pkts = .text:0x80724DC8; // type:function size:0xE4 +l2c_link_processs_num_bufs = .text:0x80724EAC; // type:function size:0x14 +l2cap_link_chk_pkt_start = .text:0x80724EC0; // type:function size:0x1D0 +l2cap_link_chk_pkt_end = .text:0x80725090; // type:function size:0x6C +l2c_link_role_changed = .text:0x807250FC; // type:function size:0x80 +l2c_link_role_change_failed = .text:0x8072517C; // type:function size:0x6C +l2c_link_segments_xmitted = .text:0x807251E8; // type:function size:0xDC +l2c_pin_code_request = .text:0x807252C4; // type:function size:0x44 +l2c_init = .text:0x80725308; // type:function size:0x114 +l2c_rcv_acl_data = .text:0x8072541C; // type:function size:0x330 +process_l2cap_cmd = .text:0x8072574C; // type:function size:0xA70 +l2c_process_timeout = .text:0x807261BC; // type:function size:0x50 +l2c_process_held_packets = .text:0x8072620C; // type:function size:0x12C +l2cu_allocate_lcb = .text:0x80726338; // type:function size:0xD4 +l2cu_release_lcb = .text:0x8072640C; // type:function size:0x100 +l2cu_find_lcb_by_bd_addr = .text:0x8072650C; // type:function size:0x88 +l2cu_find_lcb_by_handle = .text:0x80726594; // type:function size:0x90 +l2cu_get_conn_role = .text:0x80726624; // type:function size:0x10 +l2cu_build_header = .text:0x80726634; // type:function size:0xC4 +l2cu_send_peer_cmd_reject = .text:0x807266F8; // type:function size:0xFC +l2cu_send_peer_connect_req = .text:0x807267F4; // type:function size:0xC4 +l2cu_send_peer_connect_rsp = .text:0x807268B8; // type:function size:0xD8 +l2cu_reject_connection = .text:0x80726990; // type:function size:0xC0 +l2cu_send_peer_config_req = .text:0x80726A50; // type:function size:0x2F8 +l2cu_send_peer_config_rsp = .text:0x80726D48; // type:function size:0x2F8 +l2cu_send_peer_config_rej = .text:0x80727040; // type:function size:0x1B4 +l2cu_send_peer_disc_req = .text:0x807271F4; // type:function size:0xD4 +l2cu_send_peer_disc_rsp = .text:0x807272C8; // type:function size:0xC0 +l2cu_send_peer_echo_req = .text:0x80727388; // type:function size:0x170 +l2cu_send_peer_echo_rsp = .text:0x807274F8; // type:function size:0x19C +l2cu_send_peer_info_rsp = .text:0x80727694; // type:function size:0xA4 +l2cu_allocate_ccb = .text:0x80727738; // type:function size:0x10C +l2cu_release_ccb = .text:0x80727844; // type:function size:0x1A4 +l2cu_find_ccb_by_cid = .text:0x807279E8; // type:function size:0x5C +l2cu_allocate_rcb = .text:0x80727A44; // type:function size:0x4C +l2cu_release_rcb = .text:0x80727A90; // type:function size:0x10 +l2cu_find_rcb_by_psm = .text:0x80727AA0; // type:function size:0xB8 +l2cu_process_peer_cfg_req = .text:0x80727B58; // type:function size:0x148 +l2cu_process_peer_cfg_rsp = .text:0x80727CA0; // type:function size:0x40 +l2cu_process_our_cfg_req = .text:0x80727CE0; // type:function size:0x110 +l2cu_process_our_cfg_rsp = .text:0x80727DF0; // type:function size:0x40 +l2cu_device_reset = .text:0x80727E30; // type:function size:0x6C +l2cu_create_conn = .text:0x80727E9C; // type:function size:0x118 +l2cu_create_conn_after_switch = .text:0x80727FB4; // type:function size:0xD0 +l2cu_find_lcb_by_state = .text:0x80728084; // type:function size:0x90 +l2cu_lcb_disconnecting = .text:0x80728114; // type:function size:0xE8 +RFCOMM_Init = .text:0x807281FC; // type:function size:0x50 +PORT_StartCnf = .text:0x8072824C; // type:function size:0x160 +fn_807283AC = .text:0x807283AC; // type:function size:0x9C +fn_80728448 = .text:0x80728448; // type:function size:0x1B0 +fn_807285F8 = .text:0x807285F8; // type:function size:0x104 +fn_807286FC = .text:0x807286FC; // type:function size:0x140 +fn_8072883C = .text:0x8072883C; // type:function size:0x144 +fn_80728980 = .text:0x80728980; // type:function size:0x150 +fn_80728AD0 = .text:0x80728AD0; // type:function size:0x118 +fn_80728BE8 = .text:0x80728BE8; // type:function size:0x178 +fn_80728D60 = .text:0x80728D60; // type:function size:0xC4 +fn_80728E24 = .text:0x80728E24; // type:function size:0xC8 +fn_80728EEC = .text:0x80728EEC; // type:function size:0x68 +fn_80728F54 = .text:0x80728F54; // type:function size:0xA0 +fn_80728FF4 = .text:0x80728FF4; // type:function size:0x98 +fn_8072908C = .text:0x8072908C; // type:function size:0x200 +fn_8072928C = .text:0x8072928C; // type:function size:0x130 +fn_807293BC = .text:0x807293BC; // type:function size:0xF8 +fn_807294B4 = .text:0x807294B4; // type:function size:0x194 +fn_80729648 = .text:0x80729648; // type:function size:0x17C +fn_807297C4 = .text:0x807297C4; // type:function size:0xDC +fn_807298A0 = .text:0x807298A0; // type:function size:0x54 +fn_807298F4 = .text:0x807298F4; // type:function size:0x88 +fn_8072997C = .text:0x8072997C; // type:function size:0x70 +fn_807299EC = .text:0x807299EC; // type:function size:0x68 +fn_80729A54 = .text:0x80729A54; // type:function size:0x1CC +rfcomm_l2cap_if_init = .text:0x80729C20; // type:function size:0x7C +fn_80729C9C = .text:0x80729C9C; // type:function size:0x8C +fn_80729D28 = .text:0x80729D28; // type:function size:0x104 +fn_80729E2C = .text:0x80729E2C; // type:function size:0x108 +fn_80729F34 = .text:0x80729F34; // type:function size:0x108 +fn_8072A03C = .text:0x8072A03C; // type:function size:0x4 +fn_8072A040 = .text:0x8072A040; // type:function size:0x124 +fn_8072A164 = .text:0x8072A164; // type:function size:0x2A0 +fn_8072A404 = .text:0x8072A404; // type:function size:0x134 +fn_8072A538 = .text:0x8072A538; // type:function size:0x1C +fn_8072A554 = .text:0x8072A554; // type:function size:0x44 +fn_8072A598 = .text:0x8072A598; // type:function size:0x214 +fn_8072A7AC = .text:0x8072A7AC; // type:function size:0x1BC +fn_8072A968 = .text:0x8072A968; // type:function size:0x128 +fn_8072AA90 = .text:0x8072AA90; // type:function size:0x174 +fn_8072AC04 = .text:0x8072AC04; // type:function size:0x120 +fn_8072AD24 = .text:0x8072AD24; // type:function size:0x118 +fn_8072AE3C = .text:0x8072AE3C; // type:function size:0x178 +fn_8072AFB4 = .text:0x8072AFB4; // type:function size:0xF4 +fn_8072B0A8 = .text:0x8072B0A8; // type:function size:0xF0 +fn_8072B198 = .text:0x8072B198; // type:function size:0x90 +fn_8072B228 = .text:0x8072B228; // type:function size:0x174 +fn_8072B39C = .text:0x8072B39C; // type:function size:0x19C +fn_8072B538 = .text:0x8072B538; // type:function size:0x1BC +fn_8072B6F4 = .text:0x8072B6F4; // type:function size:0x150 +fn_8072B844 = .text:0x8072B844; // type:function size:0x1EC +fn_8072BA30 = .text:0x8072BA30; // type:function size:0x11C +fn_8072BB4C = .text:0x8072BB4C; // type:function size:0xE8 +fn_8072BC34 = .text:0x8072BC34; // type:function size:0x30C +fn_8072BF40 = .text:0x8072BF40; // type:function size:0x16C +fn_8072C0AC = .text:0x8072C0AC; // type:function size:0x8C +fn_8072C138 = .text:0x8072C138; // type:function size:0x4 +fn_8072C13C = .text:0x8072C13C; // type:function size:0x8 +fn_8072C144 = .text:0x8072C144; // type:function size:0x64 +fn_8072C1A8 = .text:0x8072C1A8; // type:function size:0x64 +fn_8072C20C = .text:0x8072C20C; // type:function size:0x88 +fn_8072C294 = .text:0x8072C294; // type:function size:0xA4 +fn_8072C338 = .text:0x8072C338; // type:function size:0x2C +fn_8072C364 = .text:0x8072C364; // type:function size:0x68 +fn_8072C3CC = .text:0x8072C3CC; // type:function size:0x70 +fn_8072C43C = .text:0x8072C43C; // type:function size:0xE0 +fn_8072C51C = .text:0x8072C51C; // type:function size:0x28 +fn_8072C544 = .text:0x8072C544; // type:function size:0xBC +fn_8072C600 = .text:0x8072C600; // type:function size:0x20 +fn_8072C620 = .text:0x8072C620; // type:function size:0xA4 +fn_8072C6C4 = .text:0x8072C6C4; // type:function size:0xA4 +fn_8072C768 = .text:0x8072C768; // type:function size:0x98 +fn_8072C800 = .text:0x8072C800; // type:function size:0x2C +fn_8072C82C = .text:0x8072C82C; // type:function size:0x38 +fn_8072C864 = .text:0x8072C864; // type:function size:0xB0 +fn_8072C914 = .text:0x8072C914; // type:function size:0xB0 +fn_8072C9C4 = .text:0x8072C9C4; // type:function size:0xC4 +fn_8072CA88 = .text:0x8072CA88; // type:function size:0xB0 +fn_8072CB38 = .text:0x8072CB38; // type:function size:0x198 +fn_8072CCD0 = .text:0x8072CCD0; // type:function size:0xE8 +fn_8072CDB8 = .text:0x8072CDB8; // type:function size:0x84 +fn_8072CE3C = .text:0x8072CE3C; // type:function size:0x84 +fn_8072CEC0 = .text:0x8072CEC0; // type:function size:0x120 +fn_8072CFE0 = .text:0x8072CFE0; // type:function size:0xB0 +fn_8072D090 = .text:0x8072D090; // type:function size:0x11C +fn_8072D1AC = .text:0x8072D1AC; // type:function size:0xA8 +fn_8072D254 = .text:0x8072D254; // type:function size:0xC0 +fn_8072D314 = .text:0x8072D314; // type:function size:0x574 +fn_8072D888 = .text:0x8072D888; // type:function size:0x624 +fn_8072DEAC = .text:0x8072DEAC; // type:function size:0x38 +fn_8072DEE4 = .text:0x8072DEE4; // type:function size:0x4C +fn_8072DF30 = .text:0x8072DF30; // type:function size:0x158 +fn_8072E088 = .text:0x8072E088; // type:function size:0x88 +fn_8072E110 = .text:0x8072E110; // type:function size:0x74 +fn_8072E184 = .text:0x8072E184; // type:function size:0x58 +fn_8072E1DC = .text:0x8072E1DC; // type:function size:0x80 +fn_8072E25C = .text:0x8072E25C; // type:function size:0x58 +fn_8072E2B4 = .text:0x8072E2B4; // type:function size:0xC4 +fn_8072E378 = .text:0x8072E378; // type:function size:0x3C +fn_8072E3B4 = .text:0x8072E3B4; // type:function size:0x54 +fn_8072E408 = .text:0x8072E408; // type:function size:0x158 +fn_8072E560 = .text:0x8072E560; // type:function size:0x8C +fn_8072E5EC = .text:0x8072E5EC; // type:function size:0x3C +fn_8072E628 = .text:0x8072E628; // type:function size:0x64 +SDP_InitDiscoveryDb = .text:0x8072E68C; // type:function size:0x378 +SDP_ServiceSearchRequest = .text:0x8072EA04; // type:function size:0x5C +fn_8072EA60 = .text:0x8072EA60; // type:function size:0x64 +fn_8072EAC4 = .text:0x8072EAC4; // type:function size:0x28 +fn_8072EAEC = .text:0x8072EAEC; // type:function size:0xCC +fn_8072EBB8 = .text:0x8072EBB8; // type:function size:0x108 +fn_8072ECC0 = .text:0x8072ECC0; // type:function size:0x360 +fn_8072F020 = .text:0x8072F020; // type:function size:0x4B0 +fn_8072F4D0 = .text:0x8072F4D0; // type:function size:0x24 +fn_8072F4F4 = .text:0x8072F4F4; // type:function size:0x13C +fn_8072F630 = .text:0x8072F630; // type:function size:0xD8 +fn_8072F708 = .text:0x8072F708; // type:function size:0x5C +fn_8072F764 = .text:0x8072F764; // type:function size:0x40 +fn_8072F7A4 = .text:0x8072F7A4; // type:function size:0xE0 +fn_8072F884 = .text:0x8072F884; // type:function size:0x114 +fn_8072F998 = .text:0x8072F998; // type:function size:0x398 +fn_8072FD30 = .text:0x8072FD30; // type:function size:0xD8 +fn_8072FE08 = .text:0x8072FE08; // type:function size:0x17C +fn_8072FF84 = .text:0x8072FF84; // type:function size:0x23C +fn_807301C0 = .text:0x807301C0; // type:function size:0xEC +fn_807302AC = .text:0x807302AC; // type:function size:0x130 +fn_807303DC = .text:0x807303DC; // type:function size:0x34 +fn_80730410 = .text:0x80730410; // type:function size:0x140 +fn_80730550 = .text:0x80730550; // type:function size:0x148 +fn_80730698 = .text:0x80730698; // type:function size:0x2A8 +fn_80730940 = .text:0x80730940; // type:function size:0x2D4 +fn_80730C14 = .text:0x80730C14; // type:function size:0x1EC +fn_80730E00 = .text:0x80730E00; // type:function size:0xA0 +fn_80730EA0 = .text:0x80730EA0; // type:function size:0x598 +fn_80731438 = .text:0x80731438; // type:function size:0x1A0 +fn_807315D8 = .text:0x807315D8; // type:function size:0xC4 +fn_8073169C = .text:0x8073169C; // type:function size:0x190 +fn_8073182C = .text:0x8073182C; // type:function size:0x13C +fn_80731968 = .text:0x80731968; // type:function size:0x17C +fn_80731AE4 = .text:0x80731AE4; // type:function size:0xF8 +fn_80731BDC = .text:0x80731BDC; // type:function size:0xD4 +fn_80731CB0 = .text:0x80731CB0; // type:function size:0x114 +fn_80731DC4 = .text:0x80731DC4; // type:function size:0x9C +fn_80731E60 = .text:0x80731E60; // type:function size:0xBC +fn_80731F1C = .text:0x80731F1C; // type:function size:0x88 +fn_80731FA4 = .text:0x80731FA4; // type:function size:0x154 +fn_807320F8 = .text:0x807320F8; // type:function size:0x410 +fn_80732508 = .text:0x80732508; // type:function size:0x390 +fn_80732898 = .text:0x80732898; // type:function size:0x41C +fn_80732CB4 = .text:0x80732CB4; // type:function size:0x90 +fn_80732D44 = .text:0x80732D44; // type:function size:0x74 +fn_80732DB8 = .text:0x80732DB8; // type:function size:0x38 +fn_80732DF0 = .text:0x80732DF0; // type:function size:0x1D0 +fn_80732FC0 = .text:0x80732FC0; // type:function size:0x154 +fn_80733114 = .text:0x80733114; // type:function size:0x13C +fn_80733250 = .text:0x80733250; // type:function size:0x350 +fn_807335A0 = .text:0x807335A0; // type:function size:0x250 +fn_807337F0 = .text:0x807337F0; // type:function size:0xD0 +fn_807338C0 = .text:0x807338C0; // type:function size:0xE0 +fn_807339A0 = .text:0x807339A0; // type:function size:0x274 +fn_80733C14 = .text:0x80733C14; // type:function size:0x90 +fn_80733CA4 = .text:0x80733CA4; // type:function size:0x50 +fn_80733D00 = .text:0x80733D00; // type:function size:0x44 +fn_80733D50 = .text:0x80733D50; // type:function size:0x4 +fn_80733D60 = .text:0x80733D60; // type:function size:0x230 +fn_80733F90 = .text:0x80733F90; // type:function size:0x294 +fn_80734230 = .text:0x80734230; // type:function size:0x68 +fn_807342A0 = .text:0x807342A0; // type:function size:0x68 +fn_80734310 = .text:0x80734310; // type:function size:0x184 +fn_807344A0 = .text:0x807344A0; // type:function size:0x180 +fn_80734620 = .text:0x80734620; // type:function size:0x68 +fn_80734690 = .text:0x80734690; // type:function size:0x33C +fn_807349D0 = .text:0x807349D0; // type:function size:0x114 +fn_80734AF0 = .text:0x80734AF0; // type:function size:0x28 +fn_80734B20 = .text:0x80734B20; // type:function size:0x30 +fn_80734B50 = .text:0x80734B50; // type:function size:0x5C +fn_80734BB0 = .text:0x80734BB0; // type:function size:0x90 +fn_80734C40 = .text:0x80734C40; // type:function size:0x48 +fn_80734C90 = .text:0x80734C90; // type:function size:0x2C +fn_80734CC0 = .text:0x80734CC0; // type:function size:0xA0 +fn_80734D60 = .text:0x80734D60; // type:function size:0xA0 +fn_80734E00 = .text:0x80734E00; // type:function size:0x10 +fn_80734E10 = .text:0x80734E10; // type:function size:0x10 +fn_80734E20 = .text:0x80734E20; // type:function size:0x14 +fn_80734E40 = .text:0x80734E40; // type:function size:0x14 +fn_80734E60 = .text:0x80734E60; // type:function size:0xC0 +fn_80734F20 = .text:0x80734F20; // type:function size:0x8 +fn_80734F30 = .text:0x80734F30; // type:function size:0x70 +fn_80734FA0 = .text:0x80734FA0; // type:function size:0x40 +fn_80734FE0 = .text:0x80734FE0; // type:function size:0xBC +fn_807350A0 = .text:0x807350A0; // type:function size:0x50 +fn_807350F0 = .text:0x807350F0; // type:function size:0x42C +fn_80735520 = .text:0x80735520; // type:function size:0x1A4 +fn_807356D0 = .text:0x807356D0; // type:function size:0x18C +fn_80735860 = .text:0x80735860; // type:function size:0xA0 +fn_80735900 = .text:0x80735900; // type:function size:0x88 +__DVDFSInit = .text:0x80735990; // type:function size:0x30 scope:global +fn_807359C0 = .text:0x807359C0; // type:function size:0x308 +fn_80735CD0 = .text:0x80735CD0; // type:function size:0x68 +fn_80735D40 = .text:0x80735D40; // type:function size:0x120 +fn_80735E60 = .text:0x80735E60; // type:function size:0x24 +fn_80735E90 = .text:0x80735E90; // type:function size:0x114 +fn_80735FB0 = .text:0x80735FB0; // type:function size:0xD0 +fn_80736080 = .text:0x80736080; // type:function size:0x18 +fn_807360A0 = .text:0x807360A0; // type:function size:0x128 +fn_807361D0 = .text:0x807361D0; // type:function size:0x8 +fn_807361E0 = .text:0x807361E0; // type:function size:0x54 +fn_80736240 = .text:0x80736240; // type:function size:0x8C +fn_807362D0 = .text:0x807362D0; // type:function size:0x8 +fn_807362E0 = .text:0x807362E0; // type:function size:0xC +fn_807362F0 = .text:0x807362F0; // type:function size:0xB4 +fn_807363B0 = .text:0x807363B0; // type:function size:0x4 +DVDInit = .text:0x807363C0; // type:function size:0x154 scope:global +fn_80736520 = .text:0x80736520; // type:function size:0x178 +fn_807366A0 = .text:0x807366A0; // type:function size:0x184 +fn_80736830 = .text:0x80736830; // type:function size:0x4 +fn_80736840 = .text:0x80736840; // type:function size:0x110 +fn_80736950 = .text:0x80736950; // type:function size:0x14 +fn_80736970 = .text:0x80736970; // type:function size:0x3C +fn_807369B0 = .text:0x807369B0; // type:function size:0xF4 +fn_80736AB0 = .text:0x80736AB0; // type:function size:0xC4 +fn_80736B80 = .text:0x80736B80; // type:function size:0x504 +fn_80737090 = .text:0x80737090; // type:function size:0x1E0 +fn_80737270 = .text:0x80737270; // type:function size:0xD4 +fn_80737350 = .text:0x80737350; // type:function size:0x240 +fn_80737590 = .text:0x80737590; // type:function size:0x338 +fn_807378D0 = .text:0x807378D0; // type:function size:0x1A0 +fn_80737A70 = .text:0x80737A70; // type:function size:0x47C +fn_80737EF0 = .text:0x80737EF0; // type:function size:0x188 +fn_80738080 = .text:0x80738080; // type:function size:0x164 +fn_807381F0 = .text:0x807381F0; // type:function size:0x1C8 +fn_807383C0 = .text:0x807383C0; // type:function size:0x194 +fn_80738560 = .text:0x80738560; // type:function size:0xC4 +fn_80738630 = .text:0x80738630; // type:function size:0x250 +fn_80738880 = .text:0x80738880; // type:function size:0xE4 +fn_80738970 = .text:0x80738970; // type:function size:0xC8 +fn_80738A40 = .text:0x80738A40; // type:function size:0x240 +fn_80738C80 = .text:0x80738C80; // type:function size:0x178 +fn_80738E00 = .text:0x80738E00; // type:function size:0xD8 +fn_80738EE0 = .text:0x80738EE0; // type:function size:0x188 +fn_80739070 = .text:0x80739070; // type:function size:0x24 +fn_807390A0 = .text:0x807390A0; // type:function size:0x31C +fn_807393C0 = .text:0x807393C0; // type:function size:0x5B0 +fn_80739970 = .text:0x80739970; // type:function size:0x9E0 +fn_8073A350 = .text:0x8073A350; // type:function size:0xE4 +DVDInquiryAsync = .text:0x8073A440; // type:function size:0xD8 scope:global +fn_8073A520 = .text:0x8073A520; // type:function size:0xC8 +fn_8073A5F0 = .text:0x8073A5F0; // type:function size:0x9C +fn_8073A690 = .text:0x8073A690; // type:function size:0x10 +fn_8073A6A0 = .text:0x8073A6A0; // type:function size:0x50 +fn_8073A6F0 = .text:0x8073A6F0; // type:function size:0x364 +fn_8073AA60 = .text:0x8073AA60; // type:function size:0xC0 +fn_8073AB20 = .text:0x8073AB20; // type:function size:0x8 +fn_8073AB30 = .text:0x8073AB30; // type:function size:0x8 +fn_8073AB40 = .text:0x8073AB40; // type:function size:0x8 +__DVDGetCoverStatus = .text:0x8073AB50; // type:function size:0xCC scope:global +fn_8073AC20 = .text:0x8073AC20; // type:function size:0x120 +fn_8073AD40 = .text:0x8073AD40; // type:function size:0x11C +fn_8073AE60 = .text:0x8073AE60; // type:function size:0xC +__DVDPrepareReset = .text:0x8073AE70; // type:function size:0x138 scope:global +fn_8073AFB0 = .text:0x8073AFB0; // type:function size:0x20 +fn_8073AFD0 = .text:0x8073AFD0; // type:function size:0x8 +fn_8073AFE0 = .text:0x8073AFE0; // type:function size:0x4 +__DVDClearWaitingQueue = .text:0x8073AFF0; // type:function size:0x38 scope:global +fn_8073B030 = .text:0x8073B030; // type:function size:0x68 +fn_8073B0A0 = .text:0x8073B0A0; // type:function size:0xA0 +fn_8073B140 = .text:0x8073B140; // type:function size:0x58 +fn_8073B1A0 = .text:0x8073B1A0; // type:function size:0x64 +fn_8073B210 = .text:0x8073B210; // type:function size:0x60 +fn_8073B270 = .text:0x8073B270; // type:function size:0x2C +fn_8073B2A0 = .text:0x8073B2A0; // type:function size:0x5C +fn_8073B300 = .text:0x8073B300; // type:function size:0xFC +fn_8073B400 = .text:0x8073B400; // type:function size:0x154 +fn_8073B560 = .text:0x8073B560; // type:function size:0xBC +fn_8073B620 = .text:0x8073B620; // type:function size:0xE8 +fn_8073B710 = .text:0x8073B710; // type:function size:0xA0 +fn_8073B7B0 = .text:0x8073B7B0; // type:function size:0x100 +fn_8073B8B0 = .text:0x8073B8B0; // type:function size:0x11C +fn_8073B9D0 = .text:0x8073B9D0; // type:function size:0xA0 +fn_8073BA70 = .text:0x8073BA70; // type:function size:0x94 +fn_8073BB10 = .text:0x8073BB10; // type:function size:0x90 +fn_8073BBA0 = .text:0x8073BBA0; // type:function size:0x78 +fn_8073BC20 = .text:0x8073BC20; // type:function size:0x68 +fn_8073BC90 = .text:0x8073BC90; // type:function size:0xF0 +__DVDShowFatalMessage = .text:0x8073BD80; // type:function size:0xCC scope:global +DVDSetAutoFatalMessaging = .text:0x8073BE50; // type:function size:0x5C scope:global +fn_8073BEB0 = .text:0x8073BEB0; // type:function size:0x14 +fn_8073BED0 = .text:0x8073BED0; // type:function size:0x18 +lowCallback = .text:0x8073BEF0; // type:function size:0x10 scope:local +__DVDCheckDevice = .text:0x8073BF00; // type:function size:0x27C scope:global +fn_8073C180 = .text:0x8073C180; // type:function size:0xB8 +fn_8073C240 = .text:0x8073C240; // type:function size:0xBC +fn_8073C300 = .text:0x8073C300; // type:function size:0x50 +DVDLowInit = .text:0x8073C350; // type:function size:0x264 scope:global +fn_8073C5C0 = .text:0x8073C5C0; // type:function size:0x18C +fn_8073C750 = .text:0x8073C750; // type:function size:0x26C +fn_8073C9C0 = .text:0x8073C9C0; // type:function size:0x264 +fn_8073CC30 = .text:0x8073CC30; // type:function size:0x210 +fn_8073CE40 = .text:0x8073CE40; // type:function size:0x298 +fn_8073D0E0 = .text:0x8073D0E0; // type:function size:0x168 +DVDLowUnencryptedRead = .text:0x8073D250; // type:function size:0x198 scope:global +fn_8073D3F0 = .text:0x8073D3F0; // type:function size:0x198 +fn_8073D590 = .text:0x8073D590; // type:function size:0x16C +DVDLowRequestError = .text:0x8073D700; // type:function size:0x168 scope:global +fn_8073D870 = .text:0x8073D870; // type:function size:0xC +fn_8073D880 = .text:0x8073D880; // type:function size:0x17C +fn_8073DA00 = .text:0x8073DA00; // type:function size:0x198 +DVDLowReportKey = .text:0x8073DBA0; // type:function size:0x198 scope:global +fn_8073DD40 = .text:0x8073DD40; // type:function size:0x184 +fn_8073DED0 = .text:0x8073DED0; // type:function size:0x1B0 +fn_8073E080 = .text:0x8073E080; // type:function size:0x180 +fn_8073E200 = .text:0x8073E200; // type:function size:0x10 +fn_8073E210 = .text:0x8073E210; // type:function size:0xC +fn_8073E220 = .text:0x8073E220; // type:function size:0xC +fn_8073E230 = .text:0x8073E230; // type:function size:0x16C +fn_8073E3A0 = .text:0x8073E3A0; // type:function size:0x16C +fn_8073E510 = .text:0x8073E510; // type:function size:0x16C +DVDLowGetImmBufferReg = .text:0x8073E680; // type:function size:0xC scope:global +DVDLowUnmaskStatusInterrupts = .text:0x8073E690; // type:function size:0x8 scope:global +DVDLowMaskCoverInterrupt = .text:0x8073E6A0; // type:function size:0x8 scope:global +fn_8073E6B0 = .text:0x8073E6B0; // type:function size:0x168 +fn_8073E820 = .text:0x8073E820; // type:function size:0x8 +fn_8073E830 = .text:0x8073E830; // type:function size:0xFC +fn_8073E930 = .text:0x8073E930; // type:function size:0x48 +fn_8073E980 = .text:0x8073E980; // type:function size:0x230 +SetExiInterruptMask = .text:0x8073EBB0; // type:function size:0xE8 scope:local +EXIImm = .text:0x8073ECA0; // type:function size:0x27C scope:global +fn_8073EF20 = .text:0x8073EF20; // type:function size:0xA4 +EXIDma = .text:0x8073EFD0; // type:function size:0xF8 scope:global +EXISync = .text:0x8073F0D0; // type:function size:0x27C scope:global +fn_8073F350 = .text:0x8073F350; // type:function size:0x84 +__EXIProbe = .text:0x8073F3E0; // type:function size:0x180 scope:local +fn_8073F560 = .text:0x8073F560; // type:function size:0x118 +fn_8073F680 = .text:0x8073F680; // type:function size:0xB8 +EXISelect = .text:0x8073F740; // type:function size:0x12C scope:global +EXIDeselect = .text:0x8073F870; // type:function size:0xFC scope:global +EXIIntrruptHandler = .text:0x8073F970; // type:function size:0xB8 scope:local +TCIntrruptHandler = .text:0x8073FA30; // type:function size:0x218 scope:local +EXTIntrruptHandler = .text:0x8073FC50; // type:function size:0xD0 scope:local +EXIInit = .text:0x8073FD20; // type:function size:0x1C4 scope:global +EXILock = .text:0x8073FEF0; // type:function size:0xFC scope:global +EXIUnlock = .text:0x8073FFF0; // type:function size:0xD8 scope:global +UnlockedHandler = .text:0x807400D0; // type:function size:0x28 scope:local +EXIGetID = .text:0x80740100; // type:function size:0x3A8 scope:global +fn_807404B0 = .text:0x807404B0; // type:function size:0x178 +__OSEnableBarnacle = .text:0x80740630; // type:function size:0x1BC scope:global +fn_807407F0 = .text:0x807407F0; // type:function size:0x188 +ISFS_OpenLib = .text:0x80740980; // type:function size:0x128 scope:global +_isfsFuncCb = .text:0x80740AB0; // type:function size:0x180 scope:local +fn_80740C30 = .text:0x80740C30; // type:function size:0xD4 +fn_80740D10 = .text:0x80740D10; // type:function size:0xF4 +fn_80740E10 = .text:0x80740E10; // type:function size:0xF4 +fn_80740F10 = .text:0x80740F10; // type:function size:0x154 +fn_80741070 = .text:0x80741070; // type:function size:0x148 +fn_807411C0 = .text:0x807411C0; // type:function size:0x158 +fn_80741320 = .text:0x80741320; // type:function size:0x134 +fn_80741460 = .text:0x80741460; // type:function size:0xD8 +fn_80741540 = .text:0x80741540; // type:function size:0xD0 +fn_80741610 = .text:0x80741610; // type:function size:0x104 +fn_80741720 = .text:0x80741720; // type:function size:0x104 +fn_80741830 = .text:0x80741830; // type:function size:0x138 +fn_80741970 = .text:0x80741970; // type:function size:0xF4 +fn_80741A70 = .text:0x80741A70; // type:function size:0xF4 +ISFS_Open = .text:0x80741B70; // type:function size:0xC8 scope:global +ISFS_OpenAsync = .text:0x80741C40; // type:function size:0xB8 scope:global +fn_80741D00 = .text:0x80741D00; // type:function size:0xD0 +fn_80741DD0 = .text:0x80741DD0; // type:function size:0x4 +fn_80741DE0 = .text:0x80741DE0; // type:function size:0x8C +fn_80741E70 = .text:0x80741E70; // type:function size:0x20 +fn_80741E90 = .text:0x80741E90; // type:function size:0xA4 +fn_80741F40 = .text:0x80741F40; // type:function size:0x20 +fn_80741F60 = .text:0x80741F60; // type:function size:0xA4 +fn_80742010 = .text:0x80742010; // type:function size:0x4 +fn_80742020 = .text:0x80742020; // type:function size:0x84 +fn_807420B0 = .text:0x807420B0; // type:function size:0x90 +fn_80742140 = .text:0x80742140; // type:function size:0xE4 +fn_80742230 = .text:0x80742230; // type:function size:0x24 +fn_80742260 = .text:0x80742260; // type:function size:0x170 +__GXInitRevisionBits = .text:0x807423D0; // type:function size:0x130 scope:global +GXInit = .text:0x80742500; // type:function size:0x504 scope:global +__GXInitGX = .text:0x80742A10; // type:function size:0x8C0 scope:global +fn_807432D0 = .text:0x807432D0; // type:function size:0x160 +GXInitFifoBase = .text:0x80743430; // type:function size:0x8C scope:global +fn_807434C0 = .text:0x807434C0; // type:function size:0xF8 +GXSetCPUFifo = .text:0x807435C0; // type:function size:0x1E0 scope:global +GXSetGPFifo = .text:0x807437A0; // type:function size:0x290 scope:global +fn_80743A30 = .text:0x80743A30; // type:function size:0x100 +fn_80743B30 = .text:0x80743B30; // type:function size:0x8 +fn_80743B40 = .text:0x80743B40; // type:function size:0x8 +fn_80743B50 = .text:0x80743B50; // type:function size:0x4C +fn_80743BA0 = .text:0x80743BA0; // type:function size:0x90 +fn_80743C30 = .text:0x80743C30; // type:function size:0x14 +fn_80743C50 = .text:0x80743C50; // type:function size:0x8 +fn_80743C60 = .text:0x80743C60; // type:function size:0x8 +fn_80743C70 = .text:0x80743C70; // type:function size:0x14 +fn_80743C90 = .text:0x80743C90; // type:function size:0x8 +fn_80743CA0 = .text:0x80743CA0; // type:function size:0x8 +fn_80743CB0 = .text:0x80743CB0; // type:function size:0x44 +fn_80743D00 = .text:0x80743D00; // type:function size:0xA0 +fn_80743DA0 = .text:0x80743DA0; // type:function size:0x48 +__GXFifoInit = .text:0x80743DF0; // type:function size:0x7C scope:global +fn_80743E70 = .text:0x80743E70; // type:function size:0x1A0 +fn_80744010 = .text:0x80744010; // type:function size:0x8 +fn_80744020 = .text:0x80744020; // type:function size:0x10 +fn_80744030 = .text:0x80744030; // type:function size:0xC8 +fn_80744100 = .text:0x80744100; // type:function size:0x164 +GXSetVtxDesc = .text:0x80744270; // type:function size:0x264 +fn_807444E0 = .text:0x807444E0; // type:function size:0xB0 +fn_80744590 = .text:0x80744590; // type:function size:0x12C +GXClearVtxDesc = .text:0x807446C0; // type:function size:0x34 +GXSetVtxAttrFmt = .text:0x80744700; // type:function size:0x1A0 +fn_807448A0 = .text:0x807448A0; // type:function size:0x1C8 +fn_80744A70 = .text:0x80744A70; // type:function size:0x80 +fn_80744AF0 = .text:0x80744AF0; // type:function size:0x40 +fn_80744B30 = .text:0x80744B30; // type:function size:0x10 +GXSetTexCoordGen2 = .text:0x80744B40; // type:function size:0x244 +GXSetNumTexGens = .text:0x80744D90; // type:function size:0x24 +GXSetMisc = .text:0x80744DC0; // type:function size:0x80 scope:global +fn_80744E40 = .text:0x80744E40; // type:function size:0x5C +fn_80744EA0 = .text:0x80744EA0; // type:function size:0x164 +fn_80745010 = .text:0x80745010; // type:function size:0x1B4 +fn_807451D0 = .text:0x807451D0; // type:function size:0xB4 +fn_80745290 = .text:0x80745290; // type:function size:0xA4 +fn_80745340 = .text:0x80745340; // type:function size:0xCC +fn_80745410 = .text:0x80745410; // type:function size:0x24 +fn_80745440 = .text:0x80745440; // type:function size:0x10 +fn_80745450 = .text:0x80745450; // type:function size:0x18 +fn_80745470 = .text:0x80745470; // type:function size:0x14 +fn_80745490 = .text:0x80745490; // type:function size:0x5C +fn_807454F0 = .text:0x807454F0; // type:function size:0x14 +fn_80745510 = .text:0x80745510; // type:function size:0x18 +fn_80745530 = .text:0x80745530; // type:function size:0x14 +fn_80745550 = .text:0x80745550; // type:function size:0x1C +fn_80745570 = .text:0x80745570; // type:function size:0x20 +fn_80745590 = .text:0x80745590; // type:function size:0x44 +fn_807455E0 = .text:0x807455E0; // type:function size:0x84 +fn_80745670 = .text:0x80745670; // type:function size:0x44 +fn_807456C0 = .text:0x807456C0; // type:function size:0x80 +__GXPEInit = .text:0x80745740; // type:function size:0x64 scope:global +fn_807457B0 = .text:0x807457B0; // type:function size:0x280 +GXBegin = .text:0x80745A30; // type:function size:0x14C +fn_80745B80 = .text:0x80745B80; // type:function size:0xD8 +GXSetLineWidth = .text:0x80745C60; // type:function size:0x34 +fn_80745CA0 = .text:0x80745CA0; // type:function size:0x34 +fn_80745CE0 = .text:0x80745CE0; // type:function size:0x3C +GXSetCullMode = .text:0x80745D20; // type:function size:0x28 +fn_80745D50 = .text:0x80745D50; // type:function size:0x3C +fn_80745D90 = .text:0x80745D90; // type:function size:0x24 +fn_80745DC0 = .text:0x80745DC0; // type:function size:0x40 +fn_80745E00 = .text:0x80745E00; // type:function size:0x40 +fn_80745E40 = .text:0x80745E40; // type:function size:0x24 +fn_80745E70 = .text:0x80745E70; // type:function size:0x10C +fn_80745F80 = .text:0x80745F80; // type:function size:0x20 +fn_80745FA0 = .text:0x80745FA0; // type:function size:0x28 +fn_80745FD0 = .text:0x80745FD0; // type:function size:0x230 +fn_80746200 = .text:0x80746200; // type:function size:0xCC +fn_807462D0 = .text:0x807462D0; // type:function size:0x78 +fn_80746350 = .text:0x80746350; // type:function size:0x1E4 +GXSetDispCopyGamma = .text:0x80746540; // type:function size:0x14 +fn_80746560 = .text:0x80746560; // type:function size:0x13C +fn_807466A0 = .text:0x807466A0; // type:function size:0x158 +fn_80746800 = .text:0x80746800; // type:function size:0x38 +fn_80746840 = .text:0x80746840; // type:function size:0x1C +fn_80746860 = .text:0x80746860; // type:function size:0x19C +fn_80746A00 = .text:0x80746A00; // type:function size:0xC4 +fn_80746AD0 = .text:0x80746AD0; // type:function size:0x10 +fn_80746AE0 = .text:0x80746AE0; // type:function size:0x1C +fn_80746B00 = .text:0x80746B00; // type:function size:0xC +fn_80746B10 = .text:0x80746B10; // type:function size:0x80 +fn_80746B90 = .text:0x80746B90; // type:function size:0xD8 +GXSetChanMatColor = .text:0x80746C70; // type:function size:0xD8 +GXSetNumChans = .text:0x80746D50; // type:function size:0x24 +GXSetChanCtrl = .text:0x80746D80; // type:function size:0xA4 +fn_80746E30 = .text:0x80746E30; // type:function size:0x124 +fn_80746F60 = .text:0x80746F60; // type:function size:0xC0 +GXInitTexObj = .text:0x80747020; // type:function size:0x20C +GXInitTexObjCI = .text:0x80747230; // type:function size:0x48 +GXInitTexObjLOD = .text:0x80747280; // type:function size:0x104 +fn_80747390 = .text:0x80747390; // type:function size:0x10 +GXInitTexObjWrapMode = .text:0x807473A0; // type:function size:0x14 +GXInitTexObjTlut = .text:0x807473C0; // type:function size:0x8 +GXInitTexObjUserData = .text:0x807473D0; // type:function size:0x8 +GXGetTexObjUserData = .text:0x807473E0; // type:function size:0x8 +GXGetTexObjAll = .text:0x807473F0; // type:function size:0x54 +GXGetTexObjWidth = .text:0x80747450; // type:function size:0x14 +GXGetTexObjHeight = .text:0x80747470; // type:function size:0x14 +GXGetTexObjFmt = .text:0x80747490; // type:function size:0x8 +GXGetTexObjWrapS = .text:0x807474A0; // type:function size:0xC +GXGetTexObjWrapT = .text:0x807474B0; // type:function size:0xC +fn_807474C0 = .text:0x807474C0; // type:function size:0xC +GXGetTexObjLODAll = .text:0x807474D0; // type:function size:0xDC +GXGetTexObjTlut = .text:0x807475B0; // type:function size:0x8 +fn_807475C0 = .text:0x807475C0; // type:function size:0x164 +GXLoadTexObj = .text:0x80747730; // type:function size:0x54 +GXInitTlutObj = .text:0x80747790; // type:function size:0x28 +GXLoadTlut = .text:0x807477C0; // type:function size:0x94 +GXInitTexCacheRegion = .text:0x80747860; // type:function size:0xA8 scope:global +GXInitTlutRegion = .text:0x80747910; // type:function size:0x20 scope:global +fn_80747930 = .text:0x80747930; // type:function size:0x48 +fn_80747980 = .text:0x80747980; // type:function size:0x14 +fn_807479A0 = .text:0x807479A0; // type:function size:0x14 +fn_807479C0 = .text:0x807479C0; // type:function size:0x7C +fn_80747A40 = .text:0x80747A40; // type:function size:0x90 +fn_80747AD0 = .text:0x80747AD0; // type:function size:0x164 +__GXSetTmemConfig = .text:0x80747C40; // type:function size:0x350 scope:global +GXSetTevIndirect = .text:0x80747F90; // type:function size:0x68 +GXSetIndTexMtx = .text:0x80748000; // type:function size:0x140 +GXSetIndTexCoordScale = .text:0x80748140; // type:function size:0x100 +GXSetIndTexOrder = .text:0x80748240; // type:function size:0xC8 +GXSetNumIndStages = .text:0x80748310; // type:function size:0x20 +GXSetTevDirect = .text:0x80748330; // type:function size:0x48 +fn_80748380 = .text:0x80748380; // type:function size:0x54 +fn_807483E0 = .text:0x807483E0; // type:function size:0x48 +fn_80748430 = .text:0x80748430; // type:function size:0x4 +__GXSetIndirectMask = .text:0x80748440; // type:function size:0x30 scope:global +__GXFlushTextureState = .text:0x80748470; // type:function size:0x24 scope:global +GXSetTevOp = .text:0x807484A0; // type:function size:0x94 +GXSetTevColorIn = .text:0x80748540; // type:function size:0x40 +GXSetTevAlphaIn = .text:0x80748580; // type:function size:0x40 +GXSetTevColorOp = .text:0x807485C0; // type:function size:0x58 +GXSetTevAlphaOp = .text:0x80748620; // type:function size:0x58 +GXSetTevColor = .text:0x80748680; // type:function size:0x60 +GXSetTevColorS10 = .text:0x807486E0; // type:function size:0x64 +GXSetTevKColor = .text:0x80748750; // type:function size:0x5C +GXSetTevKColorSel = .text:0x807487B0; // type:function size:0x50 +GXSetTevKAlphaSel = .text:0x80748800; // type:function size:0x50 +GXSetTevSwapMode = .text:0x80748850; // type:function size:0x3C +GXSetTevSwapModeTable = .text:0x80748890; // type:function size:0x7C +GXSetAlphaCompare = .text:0x80748910; // type:function size:0x38 +GXSetZTexture = .text:0x80748950; // type:function size:0x84 +GXSetTevOrder = .text:0x807489E0; // type:function size:0x15C +GXSetNumTevStages = .text:0x80748B40; // type:function size:0x24 +GXSetFog = .text:0x80748B70; // type:function size:0x22C +fn_80748DA0 = .text:0x80748DA0; // type:function size:0x110 +GXSetBlendMode = .text:0x80748EB0; // type:function size:0x50 +fn_80748F00 = .text:0x80748F00; // type:function size:0x2C +GXSetAlphaUpdate = .text:0x80748F30; // type:function size:0x2C +GXSetZMode = .text:0x80748F60; // type:function size:0x34 +fn_80748FA0 = .text:0x80748FA0; // type:function size:0x30 +fn_80748FD0 = .text:0x80748FD0; // type:function size:0xA8 +fn_80749080 = .text:0x80749080; // type:function size:0x2C +fn_807490B0 = .text:0x807490B0; // type:function size:0x30 +fn_807490E0 = .text:0x807490E0; // type:function size:0x34 +fn_80749120 = .text:0x80749120; // type:function size:0x70 +fn_80749190 = .text:0x80749190; // type:function size:0x74 +fn_80749210 = .text:0x80749210; // type:function size:0x44 +GXSetProjection = .text:0x80749260; // type:function size:0x64 +GXSetProjectionv = .text:0x807492D0; // type:function size:0x4C +GXGetProjectionv = .text:0x80749320; // type:function size:0x40 +GXLoadPosMtxImm = .text:0x80749360; // type:function size:0x50 +fn_807493B0 = .text:0x807493B0; // type:function size:0x58 +GXSetCurrentMtx = .text:0x80749410; // type:function size:0x20 +GXLoadTexMtxImm = .text:0x80749430; // type:function size:0xB4 +fn_807494F0 = .text:0x807494F0; // type:function size:0x90 +GXSetViewport = .text:0x80749580; // type:function size:0x2C +GXGetViewportv = .text:0x807495B0; // type:function size:0x20 +GXSetScissor = .text:0x807495D0; // type:function size:0x68 +GXGetScissor = .text:0x80749640; // type:function size:0x48 +fn_80749690 = .text:0x80749690; // type:function size:0x3C +fn_807496D0 = .text:0x807496D0; // type:function size:0x28 +fn_80749700 = .text:0x80749700; // type:function size:0x88 +fn_80749790 = .text:0x80749790; // type:function size:0x81C +fn_80749FB0 = .text:0x80749FB0; // type:function size:0x10 +fn_80749FC0 = .text:0x80749FC0; // type:function size:0x4 +fn_80749FD0 = .text:0x80749FD0; // type:function size:0x4 +fn_80749FE0 = .text:0x80749FE0; // type:function size:0x8 +fn_80749FF0 = .text:0x80749FF0; // type:function size:0x4 +fn_8074A000 = .text:0x8074A000; // type:function size:0x4 +fn_8074A010 = .text:0x8074A010; // type:function size:0x4 +fn_8074A020 = .text:0x8074A020; // type:function size:0x4 +fn_8074A030 = .text:0x8074A030; // type:function size:0x4 +fn_8074A040 = .text:0x8074A040; // type:function size:0x4 +fn_8074A050 = .text:0x8074A050; // type:function size:0x28 +fn_8074A080 = .text:0x8074A080; // type:function size:0x68 +fn_8074A0F0 = .text:0x8074A0F0; // type:function size:0x8 +fn_8074A100 = .text:0x8074A100; // type:function size:0xBC +fn_8074A1C0 = .text:0x8074A1C0; // type:function size:0x88 +fn_8074A250 = .text:0x8074A250; // type:function size:0x104 +fn_8074A360 = .text:0x8074A360; // type:function size:0x104 +fn_8074A470 = .text:0x8074A470; // type:function size:0x88 +fn_8074A500 = .text:0x8074A500; // type:function size:0xF8 +fn_8074A600 = .text:0x8074A600; // type:function size:0xF0 +fn_8074A6F0 = .text:0x8074A6F0; // type:function size:0x9C +fn_8074A790 = .text:0x8074A790; // type:function size:0xE4 +fn_8074A880 = .text:0x8074A880; // type:function size:0x38 +fn_8074A8C0 = .text:0x8074A8C0; // type:function size:0x4C +fn_8074A910 = .text:0x8074A910; // type:function size:0x10 +fn_8074A920 = .text:0x8074A920; // type:function size:0x38 +fn_8074A960 = .text:0x8074A960; // type:function size:0x110 +fn_8074AA70 = .text:0x8074AA70; // type:function size:0x6C +fn_8074AAE0 = .text:0x8074AAE0; // type:function size:0xA0 +fn_8074AB80 = .text:0x8074AB80; // type:function size:0x84 +fn_8074AC10 = .text:0x8074AC10; // type:function size:0x4C +fn_8074AC60 = .text:0x8074AC60; // type:function size:0x90 +fn_8074ACF0 = .text:0x8074ACF0; // type:function size:0x1B8 +fn_8074AEB0 = .text:0x8074AEB0; // type:function size:0x13C +fn_8074AFF0 = .text:0x8074AFF0; // type:function size:0xC0 +fn_8074B0B0 = .text:0x8074B0B0; // type:function size:0x18 +fn_8074B0D0 = .text:0x8074B0D0; // type:function size:0xC4 +fn_8074B1A0 = .text:0x8074B1A0; // type:function size:0x24 +fn_8074B1D0 = .text:0x8074B1D0; // type:function size:0xC8 +fn_8074B2A0 = .text:0x8074B2A0; // type:function size:0x9C +fn_8074B340 = .text:0x8074B340; // type:function size:0xB8 +fn_8074B400 = .text:0x8074B400; // type:function size:0x5C +fn_8074B460 = .text:0x8074B460; // type:function size:0x84 +fn_8074B4F0 = .text:0x8074B4F0; // type:function size:0xBC +fn_8074B5B0 = .text:0x8074B5B0; // type:function size:0x44 +fn_8074B600 = .text:0x8074B600; // type:function size:0x48 +fn_8074B650 = .text:0x8074B650; // type:function size:0x70 +IPCInit = .text:0x8074B6C0; // type:function size:0x4C scope:global +fn_8074B710 = .text:0x8074B710; // type:function size:0x48 +IPCReadReg = .text:0x8074B760; // type:function size:0x10 scope:global +IPCWriteReg = .text:0x8074B770; // type:function size:0x10 scope:global +IPCGetBufferHi = .text:0x8074B780; // type:function size:0x8 scope:global +IPCGetBufferLo = .text:0x8074B790; // type:function size:0x8 scope:global +IPCSetBufferLo = .text:0x8074B7A0; // type:function size:0x8 scope:global +strnlen = .text:0x8074B7B0; // type:function size:0x2C scope:global +fn_8074B7E0 = .text:0x8074B7E0; // type:function size:0x258 +IPCInterruptHandler = .text:0x8074BA40; // type:function size:0x1C0 scope:local +IPCCltInit = .text:0x8074BC00; // type:function size:0xC0 scope:global +fn_8074BCC0 = .text:0x8074BCC0; // type:function size:0x74 +__ios_Ipc2 = .text:0x8074BD40; // type:function size:0x268 scope:local +IOS_OpenAsync = .text:0x8074BFB0; // type:function size:0x11C scope:global +IOS_Open = .text:0x8074C0D0; // type:function size:0x124 scope:global +fn_8074C200 = .text:0x8074C200; // type:function size:0xC0 +fn_8074C2C0 = .text:0x8074C2C0; // type:function size:0xA8 +fn_8074C370 = .text:0x8074C370; // type:function size:0x100 +fn_8074C470 = .text:0x8074C470; // type:function size:0x108 +fn_8074C580 = .text:0x8074C580; // type:function size:0x100 +fn_8074C680 = .text:0x8074C680; // type:function size:0x108 +fn_8074C790 = .text:0x8074C790; // type:function size:0xE0 +fn_8074C870 = .text:0x8074C870; // type:function size:0xE8 +IOS_IoctlAsync = .text:0x8074C960; // type:function size:0x138 scope:global +IOS_Ioctl = .text:0x8074CAA0; // type:function size:0x130 +fn_8074CBD0 = .text:0x8074CBD0; // type:function size:0x13C +fn_8074CD10 = .text:0x8074CD10; // type:function size:0xE4 +IOS_Ioctlv = .text:0x8074CE00; // type:function size:0xDC scope:global +fn_8074CEE0 = .text:0x8074CEE0; // type:function size:0x324 +iosCreateHeap = .text:0x8074D210; // type:function size:0x130 scope:global +fn_8074D340 = .text:0x8074D340; // type:function size:0x1FC +fn_8074D540 = .text:0x8074D540; // type:function size:0x8 +iosAllocAligned = .text:0x8074D550; // type:function size:0x4 scope:global +iosFree = .text:0x8074D560; // type:function size:0x1E8 scope:global +IPCiProfInit = .text:0x8074D750; // type:function size:0x144 scope:global +IPCiProfQueueReq = .text:0x8074D8A0; // type:function size:0x1C scope:global +fn_8074D8C0 = .text:0x8074D8C0; // type:function size:0x10 +fn_8074D8D0 = .text:0x8074D8D0; // type:function size:0x10 +AddReqInfo = .text:0x8074D8E0; // type:function size:0x120 scope:local +fn_8074DA00 = .text:0x8074DA00; // type:function size:0x15C +fn_8074DB60 = .text:0x8074DB60; // type:function size:0x1B4 +fn_8074DD20 = .text:0x8074DD20; // type:function size:0x18 +fn_8074DD40 = .text:0x8074DD40; // type:function size:0x18 +fn_8074DD60 = .text:0x8074DD60; // type:function size:0x1A8 +fn_8074DF10 = .text:0x8074DF10; // type:function size:0xB4 +fn_8074DFD0 = .text:0x8074DFD0; // type:function size:0xB4 +fn_8074E090 = .text:0x8074E090; // type:function size:0x194 +fn_8074E230 = .text:0x8074E230; // type:function size:0x124 +fn_8074E360 = .text:0x8074E360; // type:function size:0x588 +fn_8074E8F0 = .text:0x8074E8F0; // type:function size:0x1E8 +fn_8074EAE0 = .text:0x8074EAE0; // type:function size:0x228 +fn_8074ED10 = .text:0x8074ED10; // type:function size:0x1B4 +fn_8074EED0 = .text:0x8074EED0; // type:function size:0x174 +fn_8074F050 = .text:0x8074F050; // type:function size:0x5D4 +fn_8074F630 = .text:0x8074F630; // type:function size:0x4BC +fn_8074FAF0 = .text:0x8074FAF0; // type:function size:0x128 +fn_8074FC20 = .text:0x8074FC20; // type:function size:0x224 +fn_8074FE50 = .text:0x8074FE50; // type:function size:0xFC8 +fn_80750E20 = .text:0x80750E20; // type:function size:0xA0 +fn_80750EC0 = .text:0x80750EC0; // type:function size:0xC +fn_80750ED0 = .text:0x80750ED0; // type:function size:0x808 +fn_807516E0 = .text:0x807516E0; // type:function size:0xC +fn_807516F0 = .text:0x807516F0; // type:function size:0x468 +fn_80751B60 = .text:0x80751B60; // type:function size:0x1F4 +fn_80751D60 = .text:0x80751D60; // type:function size:0x58 +fn_80751DC0 = .text:0x80751DC0; // type:function size:0x1C +fn_80751DE0 = .text:0x80751DE0; // type:function size:0x2C +fn_80751E10 = .text:0x80751E10; // type:function size:0x1C +fn_80751E30 = .text:0x80751E30; // type:function size:0x1C +fn_80751E50 = .text:0x80751E50; // type:function size:0x94 +fn_80751EF0 = .text:0x80751EF0; // type:function size:0xDC +fn_80751FD0 = .text:0x80751FD0; // type:function size:0x9C4 +fn_807529A0 = .text:0x807529A0; // type:function size:0x34 +fn_807529E0 = .text:0x807529E0; // type:function size:0x134 +fn_80752B20 = .text:0x80752B20; // type:function size:0x14 +fn_80752B40 = .text:0x80752B40; // type:function size:0x11C +fn_80752C60 = .text:0x80752C60; // type:function size:0x1B0 +fn_80752E10 = .text:0x80752E10; // type:function size:0x2AC +fn_807530C0 = .text:0x807530C0; // type:function size:0x38C +fn_80753450 = .text:0x80753450; // type:function size:0x2C0 +fn_80753710 = .text:0x80753710; // type:function size:0xE8 +fn_80753800 = .text:0x80753800; // type:function size:0xE8 +fn_807538F0 = .text:0x807538F0; // type:function size:0xE8 +fn_807539E0 = .text:0x807539E0; // type:function size:0xAC0 +fn_807544A0 = .text:0x807544A0; // type:function size:0x1A0 +fn_80754640 = .text:0x80754640; // type:function size:0x24 +fn_80754670 = .text:0x80754670; // type:function size:0x42C +fn_80754AA0 = .text:0x80754AA0; // type:function size:0x14 +fn_80754AC0 = .text:0x80754AC0; // type:function size:0x44 +fn_80754B10 = .text:0x80754B10; // type:function size:0x88 +fn_80754BA0 = .text:0x80754BA0; // type:function size:0x36C +fn_80754F10 = .text:0x80754F10; // type:function size:0x308 +fn_80755220 = .text:0x80755220; // type:function size:0x1B4 +fn_807553E0 = .text:0x807553E0; // type:function size:0xE4 +fn_807554D0 = .text:0x807554D0; // type:function size:0x17C +fn_80755650 = .text:0x80755650; // type:function size:0x2DC +fn_80755930 = .text:0x80755930; // type:function size:0x34 +fn_80755970 = .text:0x80755970; // type:function size:0x250 +fn_80755BC0 = .text:0x80755BC0; // type:function size:0x310 +fn_80755ED0 = .text:0x80755ED0; // type:function size:0x11C +fn_80755FF0 = .text:0x80755FF0; // type:function size:0x74 +KBDSetLedsAsync = .text:0x80756070; // type:function size:0x11C +KBDSetLeds = .text:0x80756190; // type:function size:0x130 +fn_807562C0 = .text:0x807562C0; // type:function size:0x110 +fn_807563D0 = .text:0x807563D0; // type:function size:0x100 +fn_807564D0 = .text:0x807564D0; // type:function size:0x8C +fn_80756560 = .text:0x80756560; // type:function size:0x144 +fn_807566B0 = .text:0x807566B0; // type:function size:0x58 +fn_80756710 = .text:0x80756710; // type:function size:0x11C +fn_80756830 = .text:0x80756830; // type:function size:0x144 +fn_80756980 = .text:0x80756980; // type:function size:0xF4 +fn_80756A80 = .text:0x80756A80; // type:function size:0x1C +fn_80756AA0 = .text:0x80756AA0; // type:function size:0x90 +KBDSetCountry = .text:0x80756B30; // type:function size:0x60 +KBDSetLockProcessing = .text:0x80756B90; // type:function size:0x18 +KBDSetModState = .text:0x80756BB0; // type:function size:0x7C +fn_80756C30 = .text:0x80756C30; // type:function size:0x1C +KBDTranslateHidCode = .text:0x80756C50; // type:function size:0x278 +fn_80756ED0 = .text:0x80756ED0; // type:function size:0x3C +fn_80756F10 = .text:0x80756F10; // type:function size:0x44 +fn_80756F60 = .text:0x80756F60; // type:function size:0x70 +fn_80756FD0 = .text:0x80756FD0; // type:function size:0x6C +fn_80757040 = .text:0x80757040; // type:function size:0x20 +fn_80757060 = .text:0x80757060; // type:function size:0x14 +fn_80757080 = .text:0x80757080; // type:function size:0x1C +fn_807570A0 = .text:0x807570A0; // type:function size:0xFC +fn_807571A0 = .text:0x807571A0; // type:function size:0x58 +fn_80757200 = .text:0x80757200; // type:function size:0x258 +KPRInitRegionUS = .text:0x80757460; // type:function size:0x10 +KPRInitRegionJP = .text:0x80757470; // type:function size:0x10 +KPRInitRegionEU = .text:0x80757480; // type:function size:0x10 +KPRInitQueue = .text:0x80757490; // type:function size:0x5C +KPRClearQueue = .text:0x807574F0; // type:function size:0x14 +KPRSetMode = .text:0x80757510; // type:function size:0x18 +KPRPutChar = .text:0x80757530; // type:function size:0x128 +KPRGetChar = .text:0x80757660; // type:function size:0x8C +KPRLookAhead = .text:0x807576F0; // type:function size:0xD0 +fn_807577C0 = .text:0x807577C0; // type:function size:0x170 +fn_80757930 = .text:0x80757930; // type:function size:0x16C +fn_80757AA0 = .text:0x80757AA0; // type:function size:0x548 +fn_80757FF0 = .text:0x80757FF0; // type:function size:0x140 +fn_80758130 = .text:0x80758130; // type:function size:0x1C0 +fn_807582F0 = .text:0x807582F0; // type:function size:0x16C +fn_80758460 = .text:0x80758460; // type:function size:0x22C +fn_80758690 = .text:0x80758690; // type:function size:0xDC +fn_80758770 = .text:0x80758770; // type:function size:0xC8 +fn_80758840 = .text:0x80758840; // type:function size:0x168 +MEMCreateExpHeapEx = .text:0x807589B0; // type:function size:0xB0 +MEMDestroyExpHeap = .text:0x80758A60; // type:function size:0x30 +MEMAllocFromExpHeapEx = .text:0x80758A90; // type:function size:0xB0 +MEMFreeToExpHeap = .text:0x80758B40; // type:function size:0xC4 +MEMGetAllocatableSizeForExpHeapEx = .text:0x80758C10; // type:function size:0xD8 +MEMSetGroupIDForExpHeap = .text:0x80758CF0; // type:function size:0x50 +fn_80758D40 = .text:0x80758D40; // type:function size:0x10 +fn_80758D50 = .text:0x80758D50; // type:function size:0x8 +MEMAllocFromAllocator = .text:0x80758D60; // type:function size:0x10 +MEMFreeToAllocator = .text:0x80758D70; // type:function size:0x10 +MEMInitAllocatorForExpHeap = .text:0x80758D80; // type:function size:0x1C +fn_80758DA0 = .text:0x80758DA0; // type:function size:0x18 +fn_80758DC0 = .text:0x80758DC0; // type:function size:0x70 +fn_80758E30 = .text:0x80758E30; // type:function size:0x6C +fn_80758EA0 = .text:0x80758EA0; // type:function size:0x20 +fn_80758EC0 = .text:0x80758EC0; // type:function size:0xB4 +fn_80758F80 = .text:0x80758F80; // type:function size:0x3C +fn_80758FC0 = .text:0x80758FC0; // type:function size:0x11C +fn_807590E0 = .text:0x807590E0; // type:function size:0x14 +fn_80759100 = .text:0x80759100; // type:function size:0x8 +fn_80759110 = .text:0x80759110; // type:function size:0x16C4 +fn_8075A7E0 = .text:0x8075A7E0; // type:function size:0x18 +fn_8075A800 = .text:0x8075A800; // type:function size:0x24 +fn_8075A830 = .text:0x8075A830; // type:function size:0x24 +fn_8075A860 = .text:0x8075A860; // type:function size:0x24 +fn_8075A890 = .text:0x8075A890; // type:function size:0x6C +fn_8075A900 = .text:0x8075A900; // type:function size:0x6C +fn_8075A970 = .text:0x8075A970; // type:function size:0x24 +MIXUpdateSettings = .text:0x8075A9A0; // type:function size:0x1694 +__MIXRmtUpdateSettings = .text:0x8075C040; // type:function size:0x43C +fn_8075C480 = .text:0x8075C480; // type:function size:0x58 +PSMTXIdentity = .text:0x8075C4E0; // type:function size:0x2C +PSMTXCopy = .text:0x8075C510; // type:function size:0x34 +PSMTXConcat = .text:0x8075C550; // type:function size:0xCC +fn_8075C620 = .text:0x8075C620; // type:function size:0x50 +PSMTXInverse = .text:0x8075C670; // type:function size:0xF8 +PSMTXRotRad = .text:0x8075C770; // type:function size:0x7C +fn_8075C7F0 = .text:0x8075C7F0; // type:function size:0xB0 +PSMTXTrans = .text:0x8075C8A0; // type:function size:0x34 +PSMTXTransApply = .text:0x8075C8E0; // type:function size:0x4C +PSMTXScale = .text:0x8075C930; // type:function size:0x28 +fn_8075C960 = .text:0x8075C960; // type:function size:0x58 +fn_8075C9C0 = .text:0x8075C9C0; // type:function size:0xF8 +PSMTXMultVec = .text:0x8075CAC0; // type:function size:0x54 +fn_8075CB20 = .text:0x8075CB20; // type:function size:0x54 +C_MTXOrtho = .text:0x8075CB80; // type:function size:0x98 +fn_8075CC20 = .text:0x8075CC20; // type:function size:0x24 +fn_8075CC50 = .text:0x8075CC50; // type:function size:0x44 +fn_8075CCA0 = .text:0x8075CCA0; // type:function size:0x20 +fn_8075CCC0 = .text:0x8075CCC0; // type:function size:0xD4 +fn_8075CDA0 = .text:0x8075CDA0; // type:function size:0x140 +NANDCreate = .text:0x8075CEE0; // type:function size:0x74 +NANDPrivateCreate = .text:0x8075CF60; // type:function size:0x74 +fn_8075CFE0 = .text:0x8075CFE0; // type:function size:0x78 +NANDDelete = .text:0x8075D060; // type:function size:0xB0 +NANDPrivateDelete = .text:0x8075D110; // type:function size:0x98 +fn_8075D1B0 = .text:0x8075D1B0; // type:function size:0xC0 +NANDRead = .text:0x8075D270; // type:function size:0x68 +fn_8075D2E0 = .text:0x8075D2E0; // type:function size:0x78 +NANDWrite = .text:0x8075D360; // type:function size:0x68 +fn_8075D3D0 = .text:0x8075D3D0; // type:function size:0x78 +NANDSeek = .text:0x8075D450; // type:function size:0x98 +fn_8075D4F0 = .text:0x8075D4F0; // type:function size:0xA8 +NANDReadDir = .text:0x8075D5A0; // type:function size:0xD0 +NANDPrivateReadDir = .text:0x8075D670; // type:function size:0xB8 +fn_8075D730 = .text:0x8075D730; // type:function size:0x144 +NANDCreateDir = .text:0x8075D880; // type:function size:0x74 +fn_8075D900 = .text:0x8075D900; // type:function size:0x74 +fn_8075D980 = .text:0x8075D980; // type:function size:0x78 +fn_8075DA00 = .text:0x8075DA00; // type:function size:0x1A8 +NANDPrivateMove = .text:0x8075DBB0; // type:function size:0x64 +fn_8075DC20 = .text:0x8075DC20; // type:function size:0x90 +NANDGetLength = .text:0x8075DCB0; // type:function size:0x88 +NANDTell = .text:0x8075DD40; // type:function size:0x88 +fn_8075DDD0 = .text:0x8075DDD0; // type:function size:0x54 +fn_8075DE30 = .text:0x8075DE30; // type:function size:0x8C +fn_8075DEC0 = .text:0x8075DEC0; // type:function size:0x154 +fn_8075E020 = .text:0x8075E020; // type:function size:0x74 +fn_8075E0A0 = .text:0x8075E0A0; // type:function size:0x64 +NANDPrivateGetStatus = .text:0x8075E110; // type:function size:0x64 +fn_8075E180 = .text:0x8075E180; // type:function size:0x84 +fn_8075E210 = .text:0x8075E210; // type:function size:0x334 +NANDGetTmpDirUsage = .text:0x8075E550; // type:function size:0x5C +NANDGetHomeDirUsage = .text:0x8075E5B0; // type:function size:0x5C +nandOpen = .text:0x8075E610; // type:function size:0x110 scope:local +NANDOpen = .text:0x8075E720; // type:function size:0x8C +NANDPrivateOpen = .text:0x8075E7B0; // type:function size:0x8C +fn_8075E840 = .text:0x8075E840; // type:function size:0x78 +NANDPrivateOpenAsync = .text:0x8075E8C0; // type:function size:0x78 scope:global +nandOpenCallback = .text:0x8075E940; // type:function size:0x78 scope:local +NANDClose = .text:0x8075E9C0; // type:function size:0x6C +fn_8075EA30 = .text:0x8075EA30; // type:function size:0x88 +fn_8075EAC0 = .text:0x8075EAC0; // type:function size:0x5C +fn_8075EB20 = .text:0x8075EB20; // type:function size:0xD4 +fn_8075EC00 = .text:0x8075EC00; // type:function size:0xD4 +fn_8075ECE0 = .text:0x8075ECE0; // type:function size:0x98 +nandConvertPath = .text:0x8075ED80; // type:function size:0x13C scope:global +fn_8075EEC0 = .text:0x8075EEC0; // type:function size:0x1C +nandIsPrivatePath = .text:0x8075EEE0; // type:function size:0x34 scope:global +fn_8075EF20 = .text:0x8075EF20; // type:function size:0x58 +nandIsInitialized = .text:0x8075EF80; // type:function size:0x14 scope:global +nandLoggingCallback = .text:0x8075EFA0; // type:function size:0x1C scope:local +nandConvertErrorCode = .text:0x8075EFC0; // type:function size:0x1B0 scope:global +nandGenerateAbsPath = .text:0x8075F170; // type:function size:0xC8 scope:global +NANDInit = .text:0x8075F240; // type:function size:0x134 scope:global +fn_8075F380 = .text:0x8075F380; // type:function size:0xCC +fn_8075F450 = .text:0x8075F450; // type:function size:0xC +fn_8075F460 = .text:0x8075F460; // type:function size:0x294 +NANDChangeDir = .text:0x8075F700; // type:function size:0x44 +fn_8075F750 = .text:0x8075F750; // type:function size:0x7C +NANDGetCurrentDir = .text:0x8075F7D0; // type:function size:0x7C +fn_8075F850 = .text:0x8075F850; // type:function size:0x54 +fn_8075F8B0 = .text:0x8075F8B0; // type:function size:0x3C +fn_8075F8F0 = .text:0x8075F8F0; // type:function size:0x2D4 +fn_8075FBD0 = .text:0x8075FBD0; // type:function size:0x44 +fn_8075FC20 = .text:0x8075FC20; // type:function size:0x48 +fn_8075FC70 = .text:0x8075FC70; // type:function size:0x78 +fn_8075FCF0 = .text:0x8075FCF0; // type:function size:0xC +fn_8075FD00 = .text:0x8075FD00; // type:function size:0xDC +NANDSecretGetUsage = .text:0x8075FDE0; // type:function size:0xB8 +fn_8075FEA0 = .text:0x8075FEA0; // type:function size:0x88 +fn_8075FF30 = .text:0x8075FF30; // type:function size:0xBC +fn_8075FFF0 = .text:0x8075FFF0; // type:function size:0x108 +NANDSecretGetUserUsage = .text:0x80760100; // type:function size:0x60 +reserveFileDescriptor = .text:0x80760160; // type:function size:0x54 scope:local +NANDLoggingAddMessageAsync = .text:0x807601C0; // type:function size:0x118 scope:global +asyncRoutine = .text:0x807602E0; // type:function size:0x4C4 scope:local +__NANDShowErrorMessage = .text:0x807607B0; // type:function size:0x278 scope:local +NANDSetAutoErrorMessaging = .text:0x80760A30; // type:function size:0x5C scope:global +__NANDPrintErrorMessage = .text:0x80760A90; // type:function size:0x18 scope:global +fn_80760AA8 = .text:0x80760AA8; // type:function size:0xF8 +fn_80760BA0 = .text:0x80760BA0; // type:function size:0x158 +fn_80760CF8 = .text:0x80760CF8; // type:function size:0x104 +fn_80760DFC = .text:0x80760DFC; // type:function size:0x128 +fn_80760F24 = .text:0x80760F24; // type:function size:0x17C +fn_807610A0 = .text:0x807610A0; // type:function size:0x194 +fn_80761234 = .text:0x80761234; // type:function size:0xF0 +TPLBind = .text:0x80761330; // type:function size:0x118 +TPLGet = .text:0x80761450; // type:function size:0x20 +fn_80761470 = .text:0x80761470; // type:function size:0xE0 +__OSFPRInit = .text:0x80761550; // type:function size:0x128 scope:global +__OSGetIOSRev = .text:0x80761680; // type:function size:0x6C scope:global +OSGetConsoleType = .text:0x807616F0; // type:function size:0x254 scope:global +ClearArena = .text:0x80761950; // type:function size:0x1DC scope:local +ClearMEM2Arena = .text:0x80761B30; // type:function size:0x1E4 scope:local +InquiryCallback = .text:0x80761D20; // type:function size:0x3C scope:local +ReportOSInfo = .text:0x80761D60; // type:function size:0x2A4 scope:local +OSInit = .text:0x80762010; // type:function size:0x558 scope:global +OSExceptionInit = .text:0x80762570; // type:function size:0x214 scope:local +__OSDBINTSTART = .text:0x80762790; // type:label scope:global +__OSDBIntegrator = .text:0x80762790; // type:function size:0x24 scope:local +__OSDBINTEND = .text:0x807627B4; // type:label scope:global +__OSDBJUMPSTART = .text:0x807627C0; // type:label scope:global +__OSDBJump = .text:0x807627C0; // type:function size:0x4 scope:local +__OSDBJUMPEND = .text:0x807627C4; // type:label scope:global +__OSSetExceptionHandler = .text:0x807627D0; // type:function size:0x14 scope:global +__OSGetExceptionHandler = .text:0x807627F0; // type:function size:0x10 scope:global +__OSEVStart = .text:0x80762800; // type:label scope:global +OSExceptionVector = .text:0x80762800; // type:function size:0x9C scope:local +__DBVECTOR = .text:0x80762858; // type:label scope:global data:4byte +__OSEVSetNumber = .text:0x80762868; // type:label scope:global data:4byte +__OSEVEnd = .text:0x80762898; // type:label scope:global +OSDefaultExceptionHandler = .text:0x807628A0; // type:function size:0x58 scope:global +__OSPSInit = .text:0x80762900; // type:function size:0x54 scope:global +fn_80762960 = .text:0x80762960; // type:function size:0x10 +OSRegisterVersion = .text:0x80762970; // type:function size:0x10 scope:global +fn_80762980 = .text:0x80762980; // type:function size:0x84 +fn_80762A10 = .text:0x80762A10; // type:function size:0x20 +__OSInitAlarm = .text:0x80762A30; // type:function size:0x58 scope:global +OSCreateAlarm = .text:0x80762A90; // type:function size:0x10 scope:global +InsertAlarm = .text:0x80762AA0; // type:function size:0x250 scope:local +OSSetAlarm = .text:0x80762CF0; // type:function size:0x70 scope:global +OSSetPeriodicAlarm = .text:0x80762D60; // type:function size:0x84 +OSCancelAlarm = .text:0x80762DF0; // type:function size:0x118 +DecrementerExceptionCallback = .text:0x80762F10; // type:function size:0x22C scope:local +DecrementerExceptionHandler = .text:0x80763140; // type:function size:0x50 scope:local +OSCancelAlarms = .text:0x80763190; // type:function size:0xB0 +fn_80763240 = .text:0x80763240; // type:function size:0x8C +OSSetAlarmUserData = .text:0x807632D0; // type:function size:0x8 +OSGetAlarmUserData = .text:0x807632E0; // type:function size:0x8 +fn_807632F0 = .text:0x807632F0; // type:function size:0x10 +fn_80763300 = .text:0x80763300; // type:function size:0xA8 +fn_807633B0 = .text:0x807633B0; // type:function size:0xB0 +fn_80763460 = .text:0x80763460; // type:function size:0xF8 +fn_80763560 = .text:0x80763560; // type:function size:0x78 +OSGetMEM1ArenaHi = .text:0x807635E0; // type:function size:0x8 scope:global +OSGetMEM2ArenaHi = .text:0x807635F0; // type:function size:0x8 scope:global +OSGetArenaHi = .text:0x80763600; // type:function size:0x8 scope:global +OSGetMEM1ArenaLo = .text:0x80763610; // type:function size:0x8 scope:global +OSGetMEM2ArenaLo = .text:0x80763620; // type:function size:0x8 scope:global +OSGetArenaLo = .text:0x80763630; // type:function size:0x8 scope:global +OSSetMEM1ArenaHi = .text:0x80763640; // type:function size:0x8 scope:global +OSSetMEM2ArenaHi = .text:0x80763650; // type:function size:0x8 scope:global +OSSetArenaHi = .text:0x80763660; // type:function size:0x8 scope:global +OSSetMEM1ArenaLo = .text:0x80763670; // type:function size:0x8 scope:global +OSSetMEM2ArenaLo = .text:0x80763680; // type:function size:0x8 scope:global +OSSetArenaLo = .text:0x80763690; // type:function size:0x8 scope:global +OSAllocFromMEM1ArenaLo = .text:0x807636A0; // type:function size:0x34 scope:global +__AIClockInit = .text:0x807636E0; // type:function size:0x220 scope:local +__OSInitAudioSystem = .text:0x80763900; // type:function size:0x1D0 scope:global +__OSStopAudioSystem = .text:0x80763AD0; // type:function size:0xD0 scope:global +DCEnable = .text:0x80763BA0; // type:function size:0x14 scope:global +DCInvalidateRange = .text:0x80763BC0; // type:function size:0x2C scope:global +DCFlushRange = .text:0x80763BF0; // type:function size:0x30 scope:global +fn_80763C20 = .text:0x80763C20; // type:function size:0x30 +DCFlushRangeNoSync = .text:0x80763C50; // type:function size:0x2C scope:global +DCZeroRange = .text:0x80763C80; // type:function size:0x2C scope:global +ICInvalidateRange = .text:0x80763CB0; // type:function size:0x34 scope:global +ICFlashInvalidate = .text:0x80763CF0; // type:function size:0x10 scope:global +ICEnable = .text:0x80763D00; // type:function size:0x14 scope:global +fn_80763D20 = .text:0x80763D20; // type:function size:0xCC +fn_80763DF0 = .text:0x80763DF0; // type:function size:0x38 +LCDisable = .text:0x80763E30; // type:function size:0x28 scope:global +fn_80763E60 = .text:0x80763E60; // type:function size:0x24 +fn_80763E90 = .text:0x80763E90; // type:function size:0x14 +DMAErrorHandler = .text:0x80763EB0; // type:function size:0x148 scope:global +__OSCacheInit = .text:0x80764000; // type:function size:0xE8 scope:global +__OSLoadFPUContext = .text:0x807640F0; // type:function size:0x124 scope:local +__OSSaveFPUContext = .text:0x80764220; // type:function size:0x128 scope:local +OSSaveFPUContext = .text:0x80764350; // type:function size:0x8 scope:global +OSSetCurrentContext = .text:0x80764360; // type:function size:0x5C scope:global +fn_807643C0 = .text:0x807643C0; // type:function size:0xC +fn_807643D0 = .text:0x807643D0; // type:function size:0x80 +OSLoadContext = .text:0x80764450; // type:function size:0xD8 scope:global +OSGetStackPointer = .text:0x80764530; // type:function size:0x8 scope:global +fn_80764540 = .text:0x80764540; // type:function size:0x30 +fn_80764570 = .text:0x80764570; // type:function size:0x30 +OSClearContext = .text:0x807645A0; // type:function size:0x24 scope:global +fn_807645D0 = .text:0x807645D0; // type:function size:0xBC +OSDumpContext = .text:0x80764690; // type:function size:0x260 scope:global +OSSwitchFPUContext = .text:0x807648F0; // type:function size:0x84 scope:local +__OSContextInit = .text:0x80764980; // type:function size:0x38 scope:global +OSReport = .text:0x807649C0; // type:function size:0x80 scope:global +OSVReport = .text:0x80764A40; // type:function size:0x4 +OSPanic = .text:0x80764A50; // type:function size:0x12C scope:weak +OSSetErrorHandler = .text:0x80764B80; // type:function size:0x28C scope:global +__OSUnhandledException = .text:0x80764E10; // type:function size:0x2FC scope:global +fn_80765110 = .text:0x80765110; // type:function size:0x180 +fn_80765290 = .text:0x80765290; // type:function size:0x158 +fn_807653F0 = .text:0x807653F0; // type:function size:0x1CC +fn_807655C0 = .text:0x807655C0; // type:function size:0x3C +fn_80765600 = .text:0x80765600; // type:function size:0xC +__OSGetExecParams = .text:0x80765610; // type:function size:0x24 scope:global +fn_80765640 = .text:0x80765640; // type:function size:0x8 +fn_80765650 = .text:0x80765650; // type:function size:0x7FC +__OSLaunchMenu = .text:0x80765E50; // type:function size:0xC8 scope:global +fn_80765F20 = .text:0x80765F20; // type:function size:0x754 +fn_80766680 = .text:0x80766680; // type:function size:0x1E0 +fn_80766860 = .text:0x80766860; // type:function size:0x328 +fn_80766B90 = .text:0x80766B90; // type:function size:0x120 +OSFatal = .text:0x80766CB0; // type:function size:0x1E8 scope:global +fn_80766EA0 = .text:0x80766EA0; // type:function size:0x5E8 +fn_80767490 = .text:0x80767490; // type:function size:0x138 +fn_807675D0 = .text:0x807675D0; // type:function size:0x1A8 +OSSetFontEncode = .text:0x80767780; // type:function size:0x78 scope:global +fn_80767800 = .text:0x80767800; // type:function size:0x310 +fn_80767B10 = .text:0x80767B10; // type:function size:0x118 +fn_80767C30 = .text:0x80767C30; // type:function size:0xF8 +fn_80767D30 = .text:0x80767D30; // type:function size:0x1B4 +fn_80767EF0 = .text:0x80767EF0; // type:function size:0x288 +fn_80768180 = .text:0x80768180; // type:function size:0x26C +fn_807683F0 = .text:0x807683F0; // type:function size:0x1E0 +fn_807685D0 = .text:0x807685D0; // type:function size:0x148 +OSDisableInterrupts = .text:0x80768720; // type:function size:0x14 scope:global +OSEnableInterrupts = .text:0x80768740; // type:function size:0x14 scope:global +OSRestoreInterrupts = .text:0x80768760; // type:function size:0x24 scope:global +__OSSetInterruptHandler = .text:0x80768790; // type:function size:0x14 scope:global +fn_807687B0 = .text:0x807687B0; // type:function size:0x10 +__OSInterruptInit = .text:0x807687C0; // type:function size:0xC4 scope:global +SetInterruptMask = .text:0x80768890; // type:function size:0x25C scope:local +__OSMaskInterrupts = .text:0x80768AF0; // type:function size:0x80 scope:global +__OSUnmaskInterrupts = .text:0x80768B70; // type:function size:0x80 scope:global +fn_80768BF0 = .text:0x80768BF0; // type:function size:0x2A8 +ExternalInterruptHandler = .text:0x80768EA0; // type:function size:0x50 scope:local +__OSModuleInit = .text:0x80768EF0; // type:function size:0x18 scope:global +OSInitMessageQueue = .text:0x80768F10; // type:function size:0x60 +OSSendMessage = .text:0x80768F70; // type:function size:0xC8 +OSReceiveMessage = .text:0x80769040; // type:function size:0xDC +OSJamMessage = .text:0x80769120; // type:function size:0xD0 +OSGetPhysicalMem2Size = .text:0x807691F0; // type:function size:0xC scope:global +OSGetConsoleSimulatedMem1Size = .text:0x80769200; // type:function size:0xC scope:global +OSGetConsoleSimulatedMem2Size = .text:0x80769210; // type:function size:0xC scope:global +fn_80769220 = .text:0x80769220; // type:function size:0x3C +MEMIntrruptHandler = .text:0x80769260; // type:function size:0x48 scope:local +fn_807692B0 = .text:0x807692B0; // type:function size:0x80 +fn_80769330 = .text:0x80769330; // type:function size:0xD4 +fn_80769410 = .text:0x80769410; // type:function size:0xD4 +fn_807694F0 = .text:0x807694F0; // type:function size:0xA8 +fn_807695A0 = .text:0x807695A0; // type:function size:0xD4 +fn_80769680 = .text:0x80769680; // type:function size:0xA8 +fn_80769730 = .text:0x80769730; // type:function size:0x40 +fn_80769770 = .text:0x80769770; // type:function size:0x18 +BATConfig = .text:0x80769790; // type:function size:0x120 scope:local +fn_807698B0 = .text:0x807698B0; // type:function size:0x44 +fn_80769900 = .text:0x80769900; // type:function size:0x40 +__OSInitMemoryProtection = .text:0x80769940; // type:function size:0xCC scope:global +OSInitMutex = .text:0x80769A10; // type:function size:0x38 +OSLockMutex = .text:0x80769A50; // type:function size:0xDC +OSUnlockMutex = .text:0x80769B30; // type:function size:0xC8 +fn_80769C00 = .text:0x80769C00; // type:function size:0x6C +fn_80769C70 = .text:0x80769C70; // type:function size:0xBC +OSInitCond = .text:0x80769D30; // type:function size:0x4 +OSWaitCond = .text:0x80769D40; // type:function size:0xDC +OSSignalCond = .text:0x80769E20; // type:function size:0x4 +fn_80769E30 = .text:0x80769E30; // type:function size:0x6C +fn_80769EA0 = .text:0x80769EA0; // type:function size:0x14 +OSRegisterShutdownFunction = .text:0x80769EC0; // type:function size:0x88 scope:global +fn_80769F50 = .text:0x80769F50; // type:function size:0xB0 +__OSShutdownDevices = .text:0x8076A000; // type:function size:0x180 scope:global +fn_8076A180 = .text:0x8076A180; // type:function size:0x11C +fn_8076A2A0 = .text:0x8076A2A0; // type:function size:0xD4 +__OSReturnToMenu = .text:0x8076A380; // type:function size:0x288 scope:local +OSReturnToMenu = .text:0x8076A610; // type:function size:0x40 scope:global +fn_8076A650 = .text:0x8076A650; // type:function size:0x40 +fn_8076A690 = .text:0x8076A690; // type:function size:0xA4 +fn_8076A740 = .text:0x8076A740; // type:function size:0x58 +OSGetResetCode = .text:0x8076A7A0; // type:function size:0x30 scope:global +OSResetSystem = .text:0x8076A7D0; // type:function size:0x1C scope:global +fn_8076A7F0 = .text:0x8076A7F0; // type:function size:0x138 +__OSInitSram = .text:0x8076A930; // type:function size:0x200 scope:global +UnlockSram = .text:0x8076AB30; // type:function size:0x2E0 scope:local +__OSSyncSram = .text:0x8076AE10; // type:function size:0x10 scope:global +fn_8076AE20 = .text:0x8076AE20; // type:function size:0x124 +fn_8076AF50 = .text:0x8076AF50; // type:function size:0x78 +fn_8076AFD0 = .text:0x8076AFD0; // type:function size:0x9C +__OSGetRTCFlags = .text:0x8076B070; // type:function size:0x11C scope:global +__OSClearRTCFlags = .text:0x8076B190; // type:function size:0x110 scope:global +OSInitSemaphore = .text:0x8076B2A0; // type:function size:0x58 +OSWaitSemaphore = .text:0x8076B300; // type:function size:0x70 +OSSignalSemaphore = .text:0x8076B370; // type:function size:0x60 +__OSSystemCallVectorStart = .text:0x8076B3D0; // type:label scope:global +fn_8076B3D0 = .text:0x8076B3D0; // type:function size:0x20 +__OSSystemCallVectorEnd = .text:0x8076B3EC; // type:label scope:global +__OSInitSystemCall = .text:0x8076B3F0; // type:function size:0x60 scope:global +fn_8076B450 = .text:0x8076B450; // type:function size:0x4 +__OSThreadInit = .text:0x8076B460; // type:function size:0x284 scope:global +OSInitThreadQueue = .text:0x8076B6F0; // type:function size:0x10 scope:global +OSGetCurrentThread = .text:0x8076B700; // type:function size:0xC +OSIsThreadSuspended = .text:0x8076B710; // type:function size:0x14 +fn_8076B730 = .text:0x8076B730; // type:function size:0x2C +OSDisableScheduler = .text:0x8076B760; // type:function size:0x3C scope:global +OSEnableScheduler = .text:0x8076B7A0; // type:function size:0x3C scope:global +fn_8076B7E0 = .text:0x8076B7E0; // type:function size:0x68 +fn_8076B850 = .text:0x8076B850; // type:function size:0x40 +fn_8076B890 = .text:0x8076B890; // type:function size:0x1A8 +fn_8076BA40 = .text:0x8076BA40; // type:function size:0x50 +SelectThread = .text:0x8076BA90; // type:function size:0x22C scope:local +__OSReschedule = .text:0x8076BCC0; // type:function size:0x18 scope:global +OSYieldThread = .text:0x8076BCE0; // type:function size:0x3C +OSCreateThread = .text:0x8076BD20; // type:function size:0x26C +fn_8076BF90 = .text:0x8076BF90; // type:function size:0xE4 +OSCancelThread = .text:0x8076C080; // type:function size:0x1D4 scope:global +OSJoinThread = .text:0x8076C260; // type:function size:0x144 +OSResumeThread = .text:0x8076C3B0; // type:function size:0x29C +fn_8076C650 = .text:0x8076C650; // type:function size:0x18C +OSSleepThread = .text:0x8076C7E0; // type:function size:0xF0 scope:global +fn_8076C8D0 = .text:0x8076C8D0; // type:function size:0xF8 +fn_8076C9D0 = .text:0x8076C9D0; // type:function size:0xEC +OSGetThreadPriority = .text:0x8076CAC0; // type:function size:0x8 +fn_8076CAD0 = .text:0x8076CAD0; // type:function size:0x30 +fn_8076CB00 = .text:0x8076CB00; // type:function size:0x80 +OSSleepTicks = .text:0x8076CB80; // type:function size:0xA8 +OSGetTime = .text:0x8076CC30; // type:function size:0x18 scope:global +OSGetTick = .text:0x8076CC50; // type:function size:0x8 scope:global +__OSGetSystemTime = .text:0x8076CC60; // type:function size:0x64 scope:global +fn_8076CCD0 = .text:0x8076CCD0; // type:function size:0x58 +OSTicksToCalendarTime = .text:0x8076CD30; // type:function size:0x32C +fn_8076D060 = .text:0x8076D060; // type:function size:0x2A0 +fn_8076D300 = .text:0x8076D300; // type:function size:0x114 +fn_8076D420 = .text:0x8076D420; // type:function size:0x70 +fn_8076D490 = .text:0x8076D490; // type:function size:0x7C +fn_8076D510 = .text:0x8076D510; // type:function size:0x40 +fn_8076D550 = .text:0x8076D550; // type:function size:0x8 +fn_8076D560 = .text:0x8076D560; // type:function size:0x8 +__OSInitIPCBuffer = .text:0x8076D570; // type:function size:0x18 scope:global +fn_8076D590 = .text:0x8076D590; // type:function size:0xEC +fn_8076D680 = .text:0x8076D680; // type:function size:0xEC +__OSInitSTM = .text:0x8076D770; // type:function size:0x118 scope:global +fn_8076D890 = .text:0x8076D890; // type:function size:0x7C +__OSHotReset = .text:0x8076D910; // type:function size:0x74 scope:global +fn_8076D990 = .text:0x8076D990; // type:function size:0xF8 +fn_8076DA90 = .text:0x8076DA90; // type:function size:0x40 +__OSUnRegisterStateEvent = .text:0x8076DAD0; // type:function size:0x78 scope:global +fn_8076DB50 = .text:0x8076DB50; // type:function size:0x10 +__OSDefaultResetCallback = .text:0x8076DB60; // type:function size:0x4 scope:local +__OSDefaultPowerCallback = .text:0x8076DB70; // type:function size:0x4 scope:local +__OSStateEventHandler = .text:0x8076DB80; // type:function size:0x154 scope:local +fn_8076DCE0 = .text:0x8076DCE0; // type:function size:0xC +PlayRecordCallback = .text:0x8076DCF0; // type:function size:0x4B4 scope:local +__OSStartPlayRecord = .text:0x8076E1B0; // type:function size:0x54 scope:global +__OSStopPlayRecord = .text:0x8076E210; // type:function size:0x1EC scope:global +__OSWriteStateFlags = .text:0x8076E400; // type:function size:0xE4 scope:global +__OSReadStateFlags = .text:0x8076E4F0; // type:function size:0x128 scope:global +__OSInitNet = .text:0x8076E620; // type:function size:0xB4 scope:global +fn_8076E6E0 = .text:0x8076E6E0; // type:function size:0xB0 +fn_8076E790 = .text:0x8076E790; // type:function size:0x158 +OSPlayTimeIsLimited = .text:0x8076E8F0; // type:function size:0x18 scope:global +fn_8076E910 = .text:0x8076E910; // type:function size:0x1BC +fn_8076EAD0 = .text:0x8076EAD0; // type:function size:0x114 +__OSWriteExpiredFlagIfSet = .text:0x8076EBF0; // type:function size:0x18 scope:global +fn_8076EC10 = .text:0x8076EC10; // type:function size:0xEC +__OSPlayTimeAlarmExpired = .text:0x8076ED00; // type:function size:0xA0 scope:local +__OSGetPlayTime = .text:0x8076EDA0; // type:function size:0x1CC scope:global +__OSInitPlayTime = .text:0x8076EF70; // type:function size:0x158 scope:global +fn_8076F0D0 = .text:0x8076F0D0; // type:function size:0x134 +fn_8076F210 = .text:0x8076F210; // type:function size:0x204 +__init_user = .text:0x8076F420; // type:function size:0x20 scope:global +__init_cpp = .text:0x8076F440; // type:function size:0x48 scope:local +exit = .text:0x8076F490; // type:function size:0x4C scope:weak +__PADDisableRecalibration = .text:0x8076F4E0; // type:function size:0x5C scope:global align:16 +RSONotifyModuleLoaded = .text:0x8076F540; // type:function size:0x4 scope:weak align:16 noexport +LocateObject = .text:0x8076F550; // type:function size:0x37C scope:local align:16 +RSOStaticLocateObject = .text:0x8076F8D0; // type:function size:0x30C scope:global align:16 +RSOUnLocateObject = .text:0x8076FBE0; // type:function size:0x3CC scope:global align:16 +RSOLink = .text:0x8076FFB0; // type:function size:0x130 scope:global align:16 +RSOGetNumImportSymbols = .text:0x807700E0; // type:function size:0x18 scope:global align:16 +RSOGetImportSymbolName = .text:0x80770100; // type:function size:0x18 scope:global align:16 +RSOIsImportSymbolResolved = .text:0x80770120; // type:function size:0x28 scope:global align:16 +RSOIsImportSymbolResolvedAll = .text:0x80770150; // type:function size:0x50 scope:global align:16 +FindExportIndex = .text:0x807701A0; // type:function size:0x1F4 scope:local align:16 +RSOFindExportSymbolAddr = .text:0x807703A0; // type:function size:0x60 scope:global align:16 +RSORelocate = .text:0x80770400; // type:function size:0x1CC scope:local align:16 +RSORelocateSmallDataSection = .text:0x807705D0; // type:function size:0x238 scope:local align:16 +RSOListInit = .text:0x80770810; // type:function size:0x70 scope:global align:16 +LinkList = .text:0x80770880; // type:function size:0xDC scope:local align:16 +RSOLinkList = .text:0x80770960; // type:function size:0x8 scope:global align:16 +RSOUnLinkList = .text:0x80770970; // type:function size:0x284 scope:global align:16 +cnvFarCode = .text:0x80770C00; // type:function size:0x174 scope:local align:16 +cnvJumpCode = .text:0x80770D80; // type:function size:0x108 scope:local align:16 +RSOGetFarCodeSize = .text:0x80770E90; // type:function size:0x154 scope:global align:16 +RSOLinkFar = .text:0x80770FF0; // type:function size:0x130 scope:global align:16 +RSOGetJumpCodeSize = .text:0x80771120; // type:function size:0x10 scope:global align:16 +RSOMakeJumpCode = .text:0x80771130; // type:function size:0x1B0 scope:global align:16 +RSOLinkJump = .text:0x807712E0; // type:function size:0x104 scope:global align:16 +SCInit = .text:0x807713F0; // type:function size:0xA0 scope:global +SCCheckStatus = .text:0x80771490; // type:function size:0x11C scope:global +SCReloadConfFileAsync = .text:0x807715B0; // type:function size:0x114 scope:local +OpenCallbackFromReload = .text:0x807716D0; // type:function size:0xD0 scope:local +fn_807717A0 = .text:0x807717A0; // type:function size:0xE8 +fn_80771890 = .text:0x80771890; // type:function size:0x8C +fn_80771920 = .text:0x80771920; // type:function size:0x124 +fn_80771A50 = .text:0x80771A50; // type:function size:0x4 +fn_80771A60 = .text:0x80771A60; // type:function size:0x248 +fn_80771CB0 = .text:0x80771CB0; // type:function size:0x180 +fn_80771E30 = .text:0x80771E30; // type:function size:0x194 +fn_80771FD0 = .text:0x80771FD0; // type:function size:0x278 +fn_80772250 = .text:0x80772250; // type:function size:0xE0 +fn_80772330 = .text:0x80772330; // type:function size:0x124 +fn_80772460 = .text:0x80772460; // type:function size:0xD4 +fn_80772540 = .text:0x80772540; // type:function size:0xD4 +fn_80772620 = .text:0x80772620; // type:function size:0xD4 +fn_80772700 = .text:0x80772700; // type:function size:0x100 +fn_80772800 = .text:0x80772800; // type:function size:0x104 +fn_80772910 = .text:0x80772910; // type:function size:0xC +fn_80772920 = .text:0x80772920; // type:function size:0x21C +fn_80772B40 = .text:0x80772B40; // type:function size:0x338 +SCGetAspectRatio = .text:0x80772E80; // type:function size:0x54 +fn_80772EE0 = .text:0x80772EE0; // type:function size:0x74 +fn_80772F60 = .text:0x80772F60; // type:function size:0xC +SCGetLanguage = .text:0x80772F70; // type:function size:0x6C scope:global +fn_80772FE0 = .text:0x80772FE0; // type:function size:0xC +fn_80772FF0 = .text:0x80772FF0; // type:function size:0x54 +SCGetSoundMode = .text:0x80773050; // type:function size:0x54 +fn_807730B0 = .text:0x807730B0; // type:function size:0x40 +fn_807730F0 = .text:0x807730F0; // type:function size:0xC +fn_80773100 = .text:0x80773100; // type:function size:0xC +fn_80773110 = .text:0x80773110; // type:function size:0xC +fn_80773120 = .text:0x80773120; // type:function size:0xC +fn_80773130 = .text:0x80773130; // type:function size:0x68 +fn_807731A0 = .text:0x807731A0; // type:function size:0x54 +fn_80773200 = .text:0x80773200; // type:function size:0x8 +fn_80773210 = .text:0x80773210; // type:function size:0x54 +fn_80773270 = .text:0x80773270; // type:function size:0x54 +fn_807732D0 = .text:0x807732D0; // type:function size:0x8 +fn_807732E0 = .text:0x807732E0; // type:function size:0xD8 +SCGetSimpleAddressRegionIdHi = .text:0x807733C0; // type:function size:0xF0 +fn_807734B0 = .text:0x807734B0; // type:function size:0x3C +fn_807734F0 = .text:0x807734F0; // type:function size:0x3C +fn_80773530 = .text:0x80773530; // type:function size:0x10 +fn_80773540 = .text:0x80773540; // type:function size:0x50 +fn_80773590 = .text:0x80773590; // type:function size:0x40 +fn_807735D0 = .text:0x807735D0; // type:function size:0x170 +fn_80773740 = .text:0x80773740; // type:function size:0x10 +fn_80773750 = .text:0x80773750; // type:function size:0x84 +fn_807737E0 = .text:0x807737E0; // type:function size:0x3C +fn_80773820 = .text:0x80773820; // type:function size:0x10 +fn_80773830 = .text:0x80773830; // type:function size:0x68 +fn_807738A0 = .text:0x807738A0; // type:function size:0x84 +fn_80773930 = .text:0x80773930; // type:function size:0x58 +fn_80773990 = .text:0x80773990; // type:function size:0x2F4 +SIInterruptHandler = .text:0x80773C90; // type:function size:0x3EC scope:local +SIInit = .text:0x80774080; // type:function size:0xC0 scope:global +fn_80774140 = .text:0x80774140; // type:function size:0x1B0 +SISetXY = .text:0x807742F0; // type:function size:0x5C scope:global +fn_80774350 = .text:0x80774350; // type:function size:0x8C +SITransfer = .text:0x807743E0; // type:function size:0x16C scope:global +GetTypeCallback = .text:0x80774550; // type:function size:0x2B4 scope:local +SIGetType = .text:0x80774810; // type:function size:0x1B4 scope:global +SISetSamplingRate = .text:0x807749D0; // type:function size:0xD4 scope:global +fn_80774AB0 = .text:0x80774AB0; // type:function size:0x8 +fn_80774AC0 = .text:0x80774AC0; // type:function size:0xA8 +fn_80774B70 = .text:0x80774B70; // type:function size:0xAC +fn_80774C20 = .text:0x80774C20; // type:function size:0xF8 +fn_80774D20 = .text:0x80774D20; // type:function size:0x8 +fn_80774D30 = .text:0x80774D30; // type:function size:0x19C +fn_80774ED0 = .text:0x80774ED0; // type:function size:0x144 +fn_80775020 = .text:0x80775020; // type:function size:0x160 +fn_80775180 = .text:0x80775180; // type:function size:0x5C +fn_807751E0 = .text:0x807751E0; // type:function size:0x124 +fn_80775310 = .text:0x80775310; // type:function size:0x354 +fn_80775670 = .text:0x80775670; // type:function size:0x358 +fn_807759D0 = .text:0x807759D0; // type:function size:0x74 +fn_80775A50 = .text:0x80775A50; // type:function size:0xA0 +fn_80775AF0 = .text:0x80775AF0; // type:function size:0xA0 +fn_80775B90 = .text:0x80775B90; // type:function size:0x5A4 +fn_80776140 = .text:0x80776140; // type:function size:0x8C +fn_807761D0 = .text:0x807761D0; // type:function size:0x84 +fn_80776260 = .text:0x80776260; // type:function size:0x8C +fn_807762F0 = .text:0x807762F0; // type:function size:0x74 +fn_80776370 = .text:0x80776370; // type:function size:0xCC +fn_80776440 = .text:0x80776440; // type:function size:0x3E0 +fn_80776820 = .text:0x80776820; // type:function size:0x390 +fn_80776BB0 = .text:0x80776BB0; // type:function size:0x124 +fn_80776CE0 = .text:0x80776CE0; // type:function size:0x198 +fn_80776E80 = .text:0x80776E80; // type:function size:0x80C +VISetPreRetraceCallback = .text:0x80777690; // type:function size:0x44 +VISetPostRetraceCallback = .text:0x807776E0; // type:function size:0x44 +fn_80777730 = .text:0x80777730; // type:function size:0x118 +fn_80777850 = .text:0x80777850; // type:function size:0x200 +fn_80777A50 = .text:0x80777A50; // type:function size:0x548 +fn_80777FA0 = .text:0x80777FA0; // type:function size:0x54 +fn_80778000 = .text:0x80778000; // type:function size:0x2A8 +fn_807782B0 = .text:0x807782B0; // type:function size:0xE0 +fn_80778390 = .text:0x80778390; // type:function size:0x194 +fn_80778530 = .text:0x80778530; // type:function size:0x6CC +fn_80778C00 = .text:0x80778C00; // type:function size:0x354 +VIFlush = .text:0x80778F60; // type:function size:0x114 +fn_80779080 = .text:0x80779080; // type:function size:0x6C +VISetBlack = .text:0x807790F0; // type:function size:0x78 +fn_80779170 = .text:0x80779170; // type:function size:0x8 +fn_80779180 = .text:0x80779180; // type:function size:0x90 +VIGetTvFormat = .text:0x80779210; // type:function size:0x60 scope:global +fn_80779270 = .text:0x80779270; // type:function size:0x60 +fn_807792D0 = .text:0x807792D0; // type:function size:0x3C +fn_80779310 = .text:0x80779310; // type:function size:0x234 +fn_80779550 = .text:0x80779550; // type:function size:0x54 +fn_807795B0 = .text:0x807795B0; // type:function size:0xF8 +fn_807796B0 = .text:0x807796B0; // type:function size:0x14 +fn_807796D0 = .text:0x807796D0; // type:function size:0x10 +fn_807796E0 = .text:0x807796E0; // type:function size:0x88 +fn_80779770 = .text:0x80779770; // type:function size:0x348 +fn_80779AC0 = .text:0x80779AC0; // type:function size:0x534 +fn_8077A000 = .text:0x8077A000; // type:function size:0xA0 +fn_8077A0A0 = .text:0x8077A0A0; // type:function size:0x40 +fn_8077A0E0 = .text:0x8077A0E0; // type:function size:0x58 +fn_8077A140 = .text:0x8077A140; // type:function size:0x64 +fn_8077A1B0 = .text:0x8077A1B0; // type:function size:0x6C +fn_8077A220 = .text:0x8077A220; // type:function size:0xD78 +fn_8077AFA0 = .text:0x8077AFA0; // type:function size:0x160 +fn_8077B100 = .text:0x8077B100; // type:function size:0x10 +fn_8077B110 = .text:0x8077B110; // type:function size:0x18 +fn_8077B130 = .text:0x8077B130; // type:function size:0x5C +fn_8077B190 = .text:0x8077B190; // type:function size:0x84 +fn_8077B220 = .text:0x8077B220; // type:function size:0x10 +__VISetRGBModeImm = .text:0x8077B230; // type:function size:0x48 scope:global +fn_8077B280 = .text:0x8077B280; // type:function size:0x4AC +WENCGetEncodeData = .text:0x8077B72C; // type:function size:0x2D8 +fn_8077BA10 = .text:0x8077BA10; // type:function size:0x8 +fn_8077BA20 = .text:0x8077BA20; // type:function size:0x8 +fn_8077BA30 = .text:0x8077BA30; // type:function size:0x8 +fn_8077BA40 = .text:0x8077BA40; // type:function size:0x8 +fn_8077BA50 = .text:0x8077BA50; // type:function size:0x8 +fn_8077BA60 = .text:0x8077BA60; // type:function size:0x8 +fn_8077BA70 = .text:0x8077BA70; // type:function size:0x8 +fn_8077BA80 = .text:0x8077BA80; // type:function size:0x8 +fn_8077BA90 = .text:0x8077BA90; // type:function size:0x8 +StubZero__Fv = .text:0x8077BAA0; // type:function size:0x8 scope:weak align:16 noexport +fn_8077BAB0 = .text:0x8077BAB0; // type:function size:0x8 align:16 +fn_8077BAC0 = .text:0x8077BAC0; // type:function size:0x1AC +fn_8077BC70 = .text:0x8077BC70; // type:function size:0x1C4 +fn_8077BE40 = .text:0x8077BE40; // type:function size:0x110 +fn_8077BF50 = .text:0x8077BF50; // type:function size:0x6C +fn_8077BFC0 = .text:0x8077BFC0; // type:function size:0xCB0 +fn_8077CC70 = .text:0x8077CC70; // type:function size:0xE8 +fn_8077CD60 = .text:0x8077CD60; // type:function size:0x194 +fn_8077CF00 = .text:0x8077CF00; // type:function size:0xA48 +fn_8077D950 = .text:0x8077D950; // type:function size:0x20 +fn_8077D970 = .text:0x8077D970; // type:function size:0x334 +fn_8077DCB0 = .text:0x8077DCB0; // type:function size:0x290 +fn_8077DF40 = .text:0x8077DF40; // type:function size:0x70 +fn_8077DFB0 = .text:0x8077DFB0; // type:function size:0x4 +WPADStartFastSimpleSync = .text:0x8077DFC0; // type:function size:0x4 +WPADStopSimpleSync = .text:0x8077DFD0; // type:function size:0x4 +fn_8077DFE0 = .text:0x8077DFE0; // type:function size:0x4 +WPADSetSimpleSyncCallback = .text:0x8077DFF0; // type:function size:0x4 +fn_8077E000 = .text:0x8077E000; // type:function size:0x4 +fn_8077E010 = .text:0x8077E010; // type:function size:0x4 +WPADGetRadioSensitivity = .text:0x8077E020; // type:function size:0x44 +fn_8077E070 = .text:0x8077E070; // type:function size:0x34 +fn_8077E0B0 = .text:0x8077E0B0; // type:function size:0xCC +fn_8077E180 = .text:0x8077E180; // type:function size:0xE8 +fn_8077E270 = .text:0x8077E270; // type:function size:0x8CC +fn_8077EB40 = .text:0x8077EB40; // type:function size:0x120 +fn_8077EC60 = .text:0x8077EC60; // type:function size:0x484 +fn_8077F0F0 = .text:0x8077F0F0; // type:function size:0x24 +fn_8077F120 = .text:0x8077F120; // type:function size:0xD4 +fn_8077F200 = .text:0x8077F200; // type:function size:0x24 +WPADDisconnect = .text:0x8077F230; // type:function size:0xC0 +fn_8077F2F0 = .text:0x8077F2F0; // type:function size:0x34 +fn_8077F330 = .text:0x8077F330; // type:function size:0x58 +WPADProbe = .text:0x8077F390; // type:function size:0x8C +fn_8077F420 = .text:0x8077F420; // type:function size:0x88 +WPADSetConnectCallback = .text:0x8077F4B0; // type:function size:0x88 +WPADSetExtensionCallback = .text:0x8077F540; // type:function size:0x5C +fn_8077F5A0 = .text:0x8077F5A0; // type:function size:0x44 +fn_8077F5F0 = .text:0x8077F5F0; // type:function size:0xC0 +fn_8077F6B0 = .text:0x8077F6B0; // type:function size:0x54 +WPADGetInfoAsync = .text:0x8077F710; // type:function size:0x220 +WPADControlMotor = .text:0x8077F930; // type:function size:0xCC +WPADEnableMotor = .text:0x8077FA00; // type:function size:0x34 +WPADIsMotorEnabled = .text:0x8077FA40; // type:function size:0x34 +fn_8077FA80 = .text:0x8077FA80; // type:function size:0x1E8 +WPADSaveConfig = .text:0x8077FC70; // type:function size:0xAC +fn_8077FD20 = .text:0x8077FD20; // type:function size:0x98 +fn_8077FDC0 = .text:0x8077FDC0; // type:function size:0x15C +fn_8077FF20 = .text:0x8077FF20; // type:function size:0x11C +fn_80780040 = .text:0x80780040; // type:function size:0xFC +WPADIsSpeakerEnabled = .text:0x80780140; // type:function size:0x44 +WPADControlSpeaker = .text:0x80780190; // type:function size:0x15FC +WPADGetSpeakerVolume = .text:0x80781790; // type:function size:0x34 +WPADSetSpeakerVolume = .text:0x807817D0; // type:function size:0x50 +fn_80781820 = .text:0x80781820; // type:function size:0x138 +WPADCanSendStreamData = .text:0x80781960; // type:function size:0x84 +WPADSendStreamData = .text:0x807819F0; // type:function size:0x210 +fn_80781C00 = .text:0x80781C00; // type:function size:0x34 +fn_80781C40 = .text:0x80781C40; // type:function size:0x44 +fn_80781C90 = .text:0x80781C90; // type:function size:0x38 +fn_80781CD0 = .text:0x80781CD0; // type:function size:0x1080 +fn_80782D50 = .text:0x80782D50; // type:function size:0x224 +fn_80782F80 = .text:0x80782F80; // type:function size:0x6C +fn_80782FF0 = .text:0x80782FF0; // type:function size:0x1164 +fn_80784160 = .text:0x80784160; // type:function size:0x368 +fn_807844D0 = .text:0x807844D0; // type:function size:0xD4 +fn_807845B0 = .text:0x807845B0; // type:function size:0x28C +fn_80784840 = .text:0x80784840; // type:function size:0x1B4 +fn_80784A00 = .text:0x80784A00; // type:function size:0x1B8 +fn_80784BC0 = .text:0x80784BC0; // type:function size:0x1AC +fn_80784D70 = .text:0x80784D70; // type:function size:0x88 +fn_80784E00 = .text:0x80784E00; // type:function size:0x60 +WPADSetCallbackByKPAD = .text:0x80784E60; // type:function size:0x8 +fn_80784E70 = .text:0x80784E70; // type:function size:0xE0 +fn_80784F50 = .text:0x80784F50; // type:function size:0x11C +fn_80785070 = .text:0x80785070; // type:function size:0x11C +fn_80785190 = .text:0x80785190; // type:function size:0x64 +fn_80785200 = .text:0x80785200; // type:function size:0xD8 +fn_807852E0 = .text:0x807852E0; // type:function size:0x168 +fn_80785450 = .text:0x80785450; // type:function size:0x2E4 +fn_80785740 = .text:0x80785740; // type:function size:0xD04 +fn_80786450 = .text:0x80786450; // type:function size:0x194 +fn_807865F0 = .text:0x807865F0; // type:function size:0xA60 +fn_80787050 = .text:0x80787050; // type:function size:0x140 +fn_80787190 = .text:0x80787190; // type:function size:0xC0 +fn_80787250 = .text:0x80787250; // type:function size:0x830 +fn_80787A80 = .text:0x80787A80; // type:function size:0x1C8 +fn_80787C50 = .text:0x80787C50; // type:function size:0x48 +fn_80787CA0 = .text:0x80787CA0; // type:function size:0x6AC +fn_80788350 = .text:0x80788350; // type:function size:0x1A4 +fn_80788500 = .text:0x80788500; // type:function size:0x120 +fn_80788620 = .text:0x80788620; // type:function size:0x140 +fn_80788760 = .text:0x80788760; // type:function size:0x440 +fn_80788BA0 = .text:0x80788BA0; // type:function size:0x370 +fn_80788F10 = .text:0x80788F10; // type:function size:0x108 +fn_80789020 = .text:0x80789020; // type:function size:0x494 +fn_807894C0 = .text:0x807894C0; // type:function size:0x278 +fn_80789740 = .text:0x80789740; // type:function size:0x54C +fn_80789C90 = .text:0x80789C90; // type:function size:0x100 +fn_80789D90 = .text:0x80789D90; // type:function size:0x178 +fn_80789F10 = .text:0x80789F10; // type:function size:0x900 +fn_8078A810 = .text:0x8078A810; // type:function size:0x52C +fn_8078AD40 = .text:0x8078AD40; // type:function size:0x34 +fn_8078AD80 = .text:0x8078AD80; // type:function size:0xD0 +fn_8078AE50 = .text:0x8078AE50; // type:function size:0x44 +fn_8078AEA0 = .text:0x8078AEA0; // type:function size:0x10C +fn_8078AFB0 = .text:0x8078AFB0; // type:function size:0x44 +fn_8078B000 = .text:0x8078B000; // type:function size:0xE0 +fn_8078B0E0 = .text:0x8078B0E0; // type:function size:0xA8 +fn_8078B190 = .text:0x8078B190; // type:function size:0x150 +fn_8078B2E0 = .text:0x8078B2E0; // type:function size:0x28 +fn_8078B310 = .text:0x8078B310; // type:function size:0x168 +fn_8078B480 = .text:0x8078B480; // type:function size:0x158 +fn_8078B5E0 = .text:0x8078B5E0; // type:function size:0x4 +fn_8078B5F0 = .text:0x8078B5F0; // type:function size:0x5D8 +fn_8078BBD0 = .text:0x8078BBD0; // type:function size:0x5F0 +fn_8078C1C0 = .text:0x8078C1C0; // type:function size:0x2E4 +fn_8078C4B0 = .text:0x8078C4B0; // type:function size:0x2C +fn_8078C4E0 = .text:0x8078C4E0; // type:function size:0xD4 +fn_8078C5C0 = .text:0x8078C5C0; // type:function size:0x80 +fn_8078C640 = .text:0x8078C640; // type:function size:0x2CC +fn_8078C910 = .text:0x8078C910; // type:function size:0xD4 +fn_8078C9F0 = .text:0x8078C9F0; // type:function size:0x10C +fn_8078CB00 = .text:0x8078CB00; // type:function size:0x32C +fn_8078CE30 = .text:0x8078CE30; // type:function size:0x8 +fn_8078CE40 = .text:0x8078CE40; // type:function size:0x14 +fn_8078CE60 = .text:0x8078CE60; // type:function size:0x14 +fn_8078CE80 = .text:0x8078CE80; // type:function size:0x34 +fn_8078CEC0 = .text:0x8078CEC0; // type:function size:0x158 +fn_8078D020 = .text:0x8078D020; // type:function size:0x158 +fn_8078D180 = .text:0x8078D180; // type:function size:0x3EC +fn_8078D570 = .text:0x8078D570; // type:function size:0x120 +fn_8078D690 = .text:0x8078D690; // type:function size:0x6C +fn_8078D700 = .text:0x8078D700; // type:function size:0x74 +fn_8078D780 = .text:0x8078D780; // type:function size:0x6C +fn_8078D7F0 = .text:0x8078D7F0; // type:function size:0x44 +fn_8078D840 = .text:0x8078D840; // type:function size:0x158 +fn_8078D9A0 = .text:0x8078D9A0; // type:function size:0x9CC +fn_8078E370 = .text:0x8078E370; // type:function size:0x20 +fn_8078E390 = .text:0x8078E390; // type:function size:0x20 +fn_8078E3B0 = .text:0x8078E3B0; // type:function size:0x98 +fn_8078E450 = .text:0x8078E450; // type:function size:0x204 +fn_8078E660 = .text:0x8078E660; // type:function size:0x270 +fn_8078E8D0 = .text:0x8078E8D0; // type:function size:0x20 +fn_8078E8F0 = .text:0x8078E8F0; // type:function size:0x10C +fn_8078EA00 = .text:0x8078EA00; // type:function size:0x180 +fn_8078EB80 = .text:0x8078EB80; // type:function size:0x20 +fn_8078EBA0 = .text:0x8078EBA0; // type:function size:0x14 +fn_8078EBC0 = .text:0x8078EBC0; // type:function size:0x550 +fn_8078F110 = .text:0x8078F110; // type:function size:0x80 +fn_8078F190 = .text:0x8078F190; // type:function size:0x18 +fn_8078F1B0 = .text:0x8078F1B0; // type:function size:0x434 +fn_8078F5F0 = .text:0x8078F5F0; // type:function size:0x144 +fn_8078F740 = .text:0x8078F740; // type:function size:0x20 +fn_8078F760 = .text:0x8078F760; // type:function size:0x14 +fn_8078F780 = .text:0x8078F780; // type:function size:0xB4 +fn_8078F840 = .text:0x8078F840; // type:function size:0x20 +fn_8078F860 = .text:0x8078F860; // type:function size:0x384 +fn_8078FBF0 = .text:0x8078FBF0; // type:function size:0x104 +fn_8078FD00 = .text:0x8078FD00; // type:function size:0x4C +fn_8078FD50 = .text:0x8078FD50; // type:function size:0x210 +fn_8078FF60 = .text:0x8078FF60; // type:function size:0x3C +fn_8078FFA0 = .text:0x8078FFA0; // type:function size:0x48 +fn_8078FFF0 = .text:0x8078FFF0; // type:function size:0x6C +fn_80790060 = .text:0x80790060; // type:function size:0x48 +fn_807900B0 = .text:0x807900B0; // type:function size:0x4C +fn_80790100 = .text:0x80790100; // type:function size:0x14C +fn_80790250 = .text:0x80790250; // type:function size:0x14 +fn_80790270 = .text:0x80790270; // type:function size:0x14 +fn_80790290 = .text:0x80790290; // type:function size:0x90 +fn_80790320 = .text:0x80790320; // type:function size:0x88 +fn_807903B0 = .text:0x807903B0; // type:function size:0xC0 +fn_80790470 = .text:0x80790470; // type:function size:0x4C +fn_807904C0 = .text:0x807904C0; // type:function size:0x4C +fn_80790510 = .text:0x80790510; // type:function size:0x58 +fn_80790570 = .text:0x80790570; // type:function size:0x4 +fn_80790580 = .text:0x80790580; // type:function size:0xCC +fn_80790650 = .text:0x80790650; // type:function size:0x230 +fn_80790880 = .text:0x80790880; // type:function size:0x178 +fn_80790A00 = .text:0x80790A00; // type:function size:0x20 +fn_80790A20 = .text:0x80790A20; // type:function size:0x160 +fn_80790B80 = .text:0x80790B80; // type:function size:0x130 +fn_80790CB0 = .text:0x80790CB0; // type:function size:0x104 +fn_80790DC0 = .text:0x80790DC0; // type:function size:0xD8 +fn_80790EA0 = .text:0x80790EA0; // type:function size:0x114 +fn_80790FC0 = .text:0x80790FC0; // type:function size:0x114 +fn_807910E0 = .text:0x807910E0; // type:function size:0x168 +fn_80791250 = .text:0x80791250; // type:function size:0x114 +fn_80791370 = .text:0x80791370; // type:function size:0x114 +fn_80791490 = .text:0x80791490; // type:function size:0x190 +fn_80791620 = .text:0x80791620; // type:function size:0x198 +fn_807917C0 = .text:0x807917C0; // type:function size:0x74 +fn_80791840 = .text:0x80791840; // type:function size:0x20 +fn_80791860 = .text:0x80791860; // type:function size:0x374 +fn_80791BE0 = .text:0x80791BE0; // type:function size:0x144 +fn_80791D30 = .text:0x80791D30; // type:function size:0x278 +fn_80791FB0 = .text:0x80791FB0; // type:function size:0x1C +fn_80791FD0 = .text:0x80791FD0; // type:function size:0x1F0 +fn_807921C0 = .text:0x807921C0; // type:function size:0x9C +fn_80792260 = .text:0x80792260; // type:function size:0x54 +fn_807922C0 = .text:0x807922C0; // type:function size:0x58 +fn_80792320 = .text:0x80792320; // type:function size:0x58 +fn_80792380 = .text:0x80792380; // type:function size:0x3C +fn_807923C0 = .text:0x807923C0; // type:function size:0xC +fn_807923D0 = .text:0x807923D0; // type:function size:0x74 +fn_80792450 = .text:0x80792450; // type:function size:0x54 +fn_807924B0 = .text:0x807924B0; // type:function size:0x4C +fn_80792500 = .text:0x80792500; // type:function size:0x14 +fn_80792520 = .text:0x80792520; // type:function size:0x14 +fn_80792540 = .text:0x80792540; // type:function size:0x14 +fn_80792560 = .text:0x80792560; // type:function size:0x14 +fn_80792580 = .text:0x80792580; // type:function size:0x410 +fn_80792990 = .text:0x80792990; // type:function size:0x28 +fn_807929C0 = .text:0x807929C0; // type:function size:0x4 +fn_807929D0 = .text:0x807929D0; // type:function size:0x4 +fn_807929E0 = .text:0x807929E0; // type:function size:0x8 +fn_807929F0 = .text:0x807929F0; // type:function size:0x8 +fn_80792A00 = .text:0x80792A00; // type:function size:0x8 +fn_80792A10 = .text:0x80792A10; // type:function size:0x40 +fn_80792A50 = .text:0x80792A50; // type:function size:0xDC +fn_80792B30 = .text:0x80792B30; // type:function size:0x9C +fn_80792BD0 = .text:0x80792BD0; // type:function size:0x998 +fn_80793570 = .text:0x80793570; // type:function size:0x5C +fn_807935D0 = .text:0x807935D0; // type:function size:0x24 +fn_80793600 = .text:0x80793600; // type:function size:0x1C +fn_80793620 = .text:0x80793620; // type:function size:0x78 +fn_807936A0 = .text:0x807936A0; // type:function size:0x78 +fn_80793720 = .text:0x80793720; // type:function size:0x80 +fn_807937A0 = .text:0x807937A0; // type:function size:0x8 +fn_807937B0 = .text:0x807937B0; // type:function size:0x24 +fn_807937E0 = .text:0x807937E0; // type:function size:0x3C +fn_80793820 = .text:0x80793820; // type:function size:0x3C +fn_80793860 = .text:0x80793860; // type:function size:0x98 +fn_80793900 = .text:0x80793900; // type:function size:0x24 +fn_80793930 = .text:0x80793930; // type:function size:0x54 +fn_80793990 = .text:0x80793990; // type:function size:0x4 +fn_807939A0 = .text:0x807939A0; // type:function size:0x1C +fn_807939C0 = .text:0x807939C0; // type:function size:0x18C +fn_80793B50 = .text:0x80793B50; // type:function size:0x1C +fn_80793B70 = .text:0x80793B70; // type:function size:0x270 +fn_80793DE0 = .text:0x80793DE0; // type:function size:0x38 +__dt__Q23std8bad_castFv = .text:0x80793E20; // type:function size:0x40 +fn_80793E60 = .text:0x80793E60; // type:function size:0x58 +fn_80793EC0 = .text:0x80793EC0; // type:function size:0x20 +fn_80793EE0 = .text:0x80793EE0; // type:function size:0x58 +fn_80793F40 = .text:0x80793F40; // type:function size:0x5C +fn_80793FA0 = .text:0x80793FA0; // type:function size:0x58 +fn_80794000 = .text:0x80794000; // type:function size:0x58 +fn_80794060 = .text:0x80794060; // type:function size:0x5C +fn_807940C0 = .text:0x807940C0; // type:function size:0x58 +fn_80794120 = .text:0x80794120; // type:function size:0x6C +fn_80794190 = .text:0x80794190; // type:function size:0x1D8 +fn_80794370 = .text:0x80794370; // type:function size:0x1D0 +fn_80794540 = .text:0x80794540; // type:function size:0x12C +fn_80794670 = .text:0x80794670; // type:function size:0x2C +fn_807946A0 = .text:0x807946A0; // type:function size:0x2C +fn_807946D0 = .text:0x807946D0; // type:function size:0x2C +fn_80794700 = .text:0x80794700; // type:function size:0x2C +fn_80794730 = .text:0x80794730; // type:function size:0x10C +fn_80794840 = .text:0x80794840; // type:function size:0x54 +fn_807948A0 = .text:0x807948A0; // type:function size:0x164 +fn_80794A10 = .text:0x80794A10; // type:function size:0x5C +fn_80794A70 = .text:0x80794A70; // type:function size:0x10C +fn_80794B80 = .text:0x80794B80; // type:function size:0x20 +fn_80794BA0 = .text:0x80794BA0; // type:function size:0x48 +fn_80794BF0 = .text:0x80794BF0; // type:function size:0xD0 +fn_80794CC0 = .text:0x80794CC0; // type:function size:0x114 +fn_80794DE0 = .text:0x80794DE0; // type:function size:0xB4 +fn_80794EA0 = .text:0x80794EA0; // type:function size:0x38 +fn_80794EE0 = .text:0x80794EE0; // type:function size:0x38 +fn_80794F20 = .text:0x80794F20; // type:function size:0xB8 +fn_80794FE0 = .text:0x80794FE0; // type:function size:0x3C +fn_80795020 = .text:0x80795020; // type:function size:0x464 +fn_80795490 = .text:0x80795490; // type:function size:0x68 +fn_80795500 = .text:0x80795500; // type:function size:0x2F4 +fn_80795800 = .text:0x80795800; // type:function size:0x4 +fn_80795810 = .text:0x80795810; // type:function size:0x58 +fn_80795870 = .text:0x80795870; // type:function size:0x164 +fn_807959E0 = .text:0x807959E0; // type:function size:0x64 +fn_80795A50 = .text:0x80795A50; // type:function size:0xBC +fn_80795B10 = .text:0x80795B10; // type:function size:0xAC +fn_80795BC0 = .text:0x80795BC0; // type:function size:0x2BC +fn_80795E80 = .text:0x80795E80; // type:function size:0xC0 +fn_80795F40 = .text:0x80795F40; // type:function size:0xB0 +fn_80795FF0 = .text:0x80795FF0; // type:function size:0x98 +fn_80796090 = .text:0x80796090; // type:function size:0xBC +fn_80796150 = .text:0x80796150; // type:function size:0x2C +fn_80796180 = .text:0x80796180; // type:function size:0x9C +fn_80796220 = .text:0x80796220; // type:function size:0x74 +fn_807962A0 = .text:0x807962A0; // type:function size:0x74 +fn_80796320 = .text:0x80796320; // type:function size:0x74 +fn_807963A0 = .text:0x807963A0; // type:function size:0x90 +fn_80796430 = .text:0x80796430; // type:function size:0xB8 +fn_807964F0 = .text:0x807964F0; // type:function size:0xC0 +fn_807965B0 = .text:0x807965B0; // type:function size:0x7C +fn_80796630 = .text:0x80796630; // type:function size:0x44 +fn_80796680 = .text:0x80796680; // type:function size:0x114 +fn_807967A0 = .text:0x807967A0; // type:function size:0xCC +fn_80796870 = .text:0x80796870; // type:function size:0x94 +fn_80796910 = .text:0x80796910; // type:function size:0xC0 +fn_807969D0 = .text:0x807969D0; // type:function size:0x74 +fn_80796A50 = .text:0x80796A50; // type:function size:0x54 +fn_80796AB0 = .text:0x80796AB0; // type:function size:0x7C +fn_80796B30 = .text:0x80796B30; // type:function size:0xB8 +fn_80796BF0 = .text:0x80796BF0; // type:function size:0x108 +fn_80796D00 = .text:0x80796D00; // type:function size:0x5C +fn_80796D60 = .text:0x80796D60; // type:function size:0x8C +fn_80796DF0 = .text:0x80796DF0; // type:function size:0xA0 +fn_80796E90 = .text:0x80796E90; // type:function size:0xD4 +fn_80796F70 = .text:0x80796F70; // type:function size:0x9C +fn_80797010 = .text:0x80797010; // type:function size:0x80 +fn_80797090 = .text:0x80797090; // type:function size:0xA0 +fn_80797130 = .text:0x80797130; // type:function size:0x1C8 +fn_80797300 = .text:0x80797300; // type:function size:0x3C +fn_80797340 = .text:0x80797340; // type:function size:0xC0 +fn_80797400 = .text:0x80797400; // type:function size:0xD8 +fn_807974E0 = .text:0x807974E0; // type:function size:0x3C +fn_80797520 = .text:0x80797520; // type:function size:0x2D0 +fn_807977F0 = .text:0x807977F0; // type:function size:0xB8 +fn_807978B0 = .text:0x807978B0; // type:function size:0x10 +fn_807978C0 = .text:0x807978C0; // type:function size:0xF0 +fn_807979B0 = .text:0x807979B0; // type:function size:0x9C +fn_80797A50 = .text:0x80797A50; // type:function size:0x14 +fn_80797A70 = .text:0x80797A70; // type:function size:0xC0 +fn_80797B30 = .text:0x80797B30; // type:function size:0x260 +fn_80797D90 = .text:0x80797D90; // type:function size:0x128 +fn_80797EC0 = .text:0x80797EC0; // type:function size:0x140 +fn_80798000 = .text:0x80798000; // type:function size:0x98 +fn_807980A0 = .text:0x807980A0; // type:function size:0x180 +fn_80798220 = .text:0x80798220; // type:function size:0x9C +fn_807982C0 = .text:0x807982C0; // type:function size:0x10 +fn_807982D0 = .text:0x807982D0; // type:function size:0xC +fn_807982E0 = .text:0x807982E0; // type:function size:0x144 +fn_80798430 = .text:0x80798430; // type:function size:0x34 +fn_80798470 = .text:0x80798470; // type:function size:0x54 +fn_807984D0 = .text:0x807984D0; // type:function size:0x2C +fn_80798500 = .text:0x80798500; // type:function size:0x128 +fn_80798630 = .text:0x80798630; // type:function size:0x13C +fn_80798770 = .text:0x80798770; // type:function size:0x124 +fn_807988A0 = .text:0x807988A0; // type:function size:0x11C +fn_807989C0 = .text:0x807989C0; // type:function size:0xB8 +fn_80798A80 = .text:0x80798A80; // type:function size:0x8C +fn_80798B10 = .text:0x80798B10; // type:function size:0x48 +fn_80798B60 = .text:0x80798B60; // type:function size:0xE1C +fn_80799980 = .text:0x80799980; // type:function size:0xC +fn_80799990 = .text:0x80799990; // type:function size:0x58 +fn_807999F0 = .text:0x807999F0; // type:function size:0xE4 +fn_80799AE0 = .text:0x80799AE0; // type:function size:0x18C +fn_80799C70 = .text:0x80799C70; // type:function size:0x5C +fn_80799CD0 = .text:0x80799CD0; // type:function size:0x68 +fn_80799D40 = .text:0x80799D40; // type:function size:0x2FC +fn_8079A040 = .text:0x8079A040; // type:function size:0x2A0 +fn_8079A2E0 = .text:0x8079A2E0; // type:function size:0x58 +fn_8079A340 = .text:0x8079A340; // type:function size:0x14 +fn_8079A360 = .text:0x8079A360; // type:function size:0x2C +fn_8079A390 = .text:0x8079A390; // type:function size:0x218 +fn_8079A5B0 = .text:0x8079A5B0; // type:function size:0x64 +fn_8079A620 = .text:0x8079A620; // type:function size:0x4F4 +fn_8079AB20 = .text:0x8079AB20; // type:function size:0xE0 +fn_8079AC00 = .text:0x8079AC00; // type:function size:0x2AC +fn_8079AEB0 = .text:0x8079AEB0; // type:function size:0x58 +fn_8079AF10 = .text:0x8079AF10; // type:function size:0x5C +fn_8079AF70 = .text:0x8079AF70; // type:function size:0x5C +fn_8079AFD0 = .text:0x8079AFD0; // type:function size:0x58 +fn_8079B030 = .text:0x8079B030; // type:function size:0x5C +fn_8079B090 = .text:0x8079B090; // type:function size:0x58 +fn_8079B0F0 = .text:0x8079B0F0; // type:function size:0xFC +fn_8079B1F0 = .text:0x8079B1F0; // type:function size:0x88 +fn_8079B280 = .text:0x8079B280; // type:function size:0x100 +fn_8079B380 = .text:0x8079B380; // type:function size:0x8C +fn_8079B410 = .text:0x8079B410; // type:function size:0x8 +fn_8079B420 = .text:0x8079B420; // type:function size:0x8 +fn_8079B430 = .text:0x8079B430; // type:function size:0x244 +fn_8079B680 = .text:0x8079B680; // type:function size:0x88 +fn_8079B710 = .text:0x8079B710; // type:function size:0xC +fn_8079B720 = .text:0x8079B720; // type:function size:0x90 +fn_8079B7B0 = .text:0x8079B7B0; // type:function size:0xA0 +fn_8079B850 = .text:0x8079B850; // type:function size:0xA4 +fn_8079B900 = .text:0x8079B900; // type:function size:0xBC +fn_8079B9C0 = .text:0x8079B9C0; // type:function size:0x4 +fn_8079B9D0 = .text:0x8079B9D0; // type:function size:0x4 +fn_8079B9E0 = .text:0x8079B9E0; // type:function size:0x224 +fn_8079BC10 = .text:0x8079BC10; // type:function size:0x110 +fn_8079BD20 = .text:0x8079BD20; // type:function size:0x58 +fn_8079BD80 = .text:0x8079BD80; // type:function size:0x4 +fn_8079BD90 = .text:0x8079BD90; // type:function size:0x6C +fn_8079BE00 = .text:0x8079BE00; // type:function size:0x68 +fn_8079BE70 = .text:0x8079BE70; // type:function size:0xC0 +fn_8079BF30 = .text:0x8079BF30; // type:function size:0x5C +fn_8079BF90 = .text:0x8079BF90; // type:function size:0x98 +fn_8079C030 = .text:0x8079C030; // type:function size:0x48 +fn_8079C080 = .text:0x8079C080; // type:function size:0x50 +fn_8079C0D0 = .text:0x8079C0D0; // type:function size:0x80 +fn_8079C150 = .text:0x8079C150; // type:function size:0x768 +fn_8079C8C0 = .text:0x8079C8C0; // type:function size:0x4 +fn_8079C8D0 = .text:0x8079C8D0; // type:function size:0x48 +fn_8079C920 = .text:0x8079C920; // type:function size:0x230 +fn_8079CB50 = .text:0x8079CB50; // type:function size:0x230 +fn_8079CD80 = .text:0x8079CD80; // type:function size:0x1B0 +fn_8079CF30 = .text:0x8079CF30; // type:function size:0xE0 +fn_8079D010 = .text:0x8079D010; // type:function size:0xD0 +fn_8079D0E0 = .text:0x8079D0E0; // type:function size:0x114 +fn_8079D200 = .text:0x8079D200; // type:function size:0x2C +fn_8079D230 = .text:0x8079D230; // type:function size:0x25C +fn_8079D490 = .text:0x8079D490; // type:function size:0x10 +fn_8079D4A0 = .text:0x8079D4A0; // type:function size:0x46C +fn_8079D910 = .text:0x8079D910; // type:function size:0x2C8 +fn_8079DBE0 = .text:0x8079DBE0; // type:function size:0x4C +fn_8079DC30 = .text:0x8079DC30; // type:function size:0x150 +fn_8079DD80 = .text:0x8079DD80; // type:function size:0xB0 +fn_8079DE30 = .text:0x8079DE30; // type:function size:0x178 +fn_8079DFB0 = .text:0x8079DFB0; // type:function size:0x200 +fn_8079E1B0 = .text:0x8079E1B0; // type:function size:0x22C +fn_8079E3E0 = .text:0x8079E3E0; // type:function size:0x70 +fn_8079E450 = .text:0x8079E450; // type:function size:0x2F4 +fn_8079E750 = .text:0x8079E750; // type:function size:0x28C +fn_8079E9E0 = .text:0x8079E9E0; // type:function size:0xE8 +fn_8079EAD0 = .text:0x8079EAD0; // type:function size:0x1A0 +fn_8079EC70 = .text:0x8079EC70; // type:function size:0x3C8 +fn_8079F040 = .text:0x8079F040; // type:function size:0x58 +fn_8079F0A0 = .text:0x8079F0A0; // type:function size:0x5C +fn_8079F100 = .text:0x8079F100; // type:function size:0x58 +fn_8079F160 = .text:0x8079F160; // type:function size:0x64 +fn_8079F1D0 = .text:0x8079F1D0; // type:function size:0x524 +fn_8079F700 = .text:0x8079F700; // type:function size:0x58 +fn_8079F760 = .text:0x8079F760; // type:function size:0x5C +fn_8079F7C0 = .text:0x8079F7C0; // type:function size:0x58 +fn_8079F820 = .text:0x8079F820; // type:function size:0x66C +fn_8079FE90 = .text:0x8079FE90; // type:function size:0x58 +fn_8079FEF0 = .text:0x8079FEF0; // type:function size:0x5C +fn_8079FF50 = .text:0x8079FF50; // type:function size:0x58 +fn_8079FFB0 = .text:0x8079FFB0; // type:function size:0x24 +fn_8079FFE0 = .text:0x8079FFE0; // type:function size:0x4E0 +fn_807A04C0 = .text:0x807A04C0; // type:function size:0x5C +fn_807A0520 = .text:0x807A0520; // type:function size:0x5F4 +fn_807A0B20 = .text:0x807A0B20; // type:function size:0x5C +fn_807A0B80 = .text:0x807A0B80; // type:function size:0x248 +fn_807A0DD0 = .text:0x807A0DD0; // type:function size:0x80 +fn_807A0E50 = .text:0x807A0E50; // type:function size:0xA0 +fn_807A0EF0 = .text:0x807A0EF0; // type:function size:0xA4 +fn_807A0FA0 = .text:0x807A0FA0; // type:function size:0xA4 +fn_807A1050 = .text:0x807A1050; // type:function size:0xA4 +fn_807A1100 = .text:0x807A1100; // type:function size:0xB0 +fn_807A11B0 = .text:0x807A11B0; // type:function size:0xB4 +fn_807A1270 = .text:0x807A1270; // type:function size:0xD4 +fn_807A1350 = .text:0x807A1350; // type:function size:0xF8 +fn_807A1450 = .text:0x807A1450; // type:function size:0xF0 +fn_807A1540 = .text:0x807A1540; // type:function size:0xF0 +fn_807A1630 = .text:0x807A1630; // type:function size:0xF0 +fn_807A1720 = .text:0x807A1720; // type:function size:0xF0 +fn_807A1810 = .text:0x807A1810; // type:function size:0xF0 +fn_807A1900 = .text:0x807A1900; // type:function size:0xF0 +fn_807A19F0 = .text:0x807A19F0; // type:function size:0x60 +fn_807A1A50 = .text:0x807A1A50; // type:function size:0x60 +fn_807A1AB0 = .text:0x807A1AB0; // type:function size:0x60 +fn_807A1B10 = .text:0x807A1B10; // type:function size:0x9C +fn_807A1BB0 = .text:0x807A1BB0; // type:function size:0x60 +fn_807A1C10 = .text:0x807A1C10; // type:function size:0x9C +fn_807A1CB0 = .text:0x807A1CB0; // type:function size:0xC0 +fn_807A1D70 = .text:0x807A1D70; // type:function size:0x94 +fn_807A1E10 = .text:0x807A1E10; // type:function size:0xC0 +fn_807A1ED0 = .text:0x807A1ED0; // type:function size:0x94 +fn_807A1F70 = .text:0x807A1F70; // type:function size:0x94 +fn_807A2010 = .text:0x807A2010; // type:function size:0x94 +fn_807A20B0 = .text:0x807A20B0; // type:function size:0xDC +fn_807A2190 = .text:0x807A2190; // type:function size:0x17C +fn_807A2310 = .text:0x807A2310; // type:function size:0x88 +fn_807A23A0 = .text:0x807A23A0; // type:function size:0x34 +fn_807A23E0 = .text:0x807A23E0; // type:function size:0x194 +fn_807A2580 = .text:0x807A2580; // type:function size:0x30 +fn_807A25B0 = .text:0x807A25B0; // type:function size:0x70 +fn_807A2620 = .text:0x807A2620; // type:function size:0x240 +fn_807A2860 = .text:0x807A2860; // type:function size:0x50 +fn_807A28B0 = .text:0x807A28B0; // type:function size:0x90 +fn_807A2940 = .text:0x807A2940; // type:function size:0x90 +fn_807A29D0 = .text:0x807A29D0; // type:function size:0x94 +fn_807A2A70 = .text:0x807A2A70; // type:function size:0x94 +fn_807A2B10 = .text:0x807A2B10; // type:function size:0x60 +fn_807A2B70 = .text:0x807A2B70; // type:function size:0x60 +fn_807A2BD0 = .text:0x807A2BD0; // type:function size:0x68 +fn_807A2C40 = .text:0x807A2C40; // type:function size:0x68 +fn_807A2CB0 = .text:0x807A2CB0; // type:function size:0x90 +fn_807A2D40 = .text:0x807A2D40; // type:function size:0xB4 +fn_807A2E00 = .text:0x807A2E00; // type:function size:0x6C +fn_807A2E70 = .text:0x807A2E70; // type:function size:0xA0 +fn_807A2F10 = .text:0x807A2F10; // type:function size:0x188 +fn_807A30A0 = .text:0x807A30A0; // type:function size:0x164 +fn_807A3210 = .text:0x807A3210; // type:function size:0x58 +fn_807A3270 = .text:0x807A3270; // type:function size:0x5C +fn_807A32D0 = .text:0x807A32D0; // type:function size:0x5C +fn_807A3330 = .text:0x807A3330; // type:function size:0x110 +fn_807A3440 = .text:0x807A3440; // type:function size:0x864 +fn_807A3CB0 = .text:0x807A3CB0; // type:function size:0xA4 +fn_807A3D60 = .text:0x807A3D60; // type:function size:0xE4 +fn_807A3E50 = .text:0x807A3E50; // type:function size:0x54 +fn_807A3EB0 = .text:0x807A3EB0; // type:function size:0x74 +fn_807A3F30 = .text:0x807A3F30; // type:function size:0x6C +fn_807A3FA0 = .text:0x807A3FA0; // type:function size:0xB4 +fn_807A4060 = .text:0x807A4060; // type:function size:0x370 +fn_807A43D0 = .text:0x807A43D0; // type:function size:0x1A0 +fn_807A4570 = .text:0x807A4570; // type:function size:0x74 +fn_807A45F0 = .text:0x807A45F0; // type:function size:0xD8 +fn_807A46D0 = .text:0x807A46D0; // type:function size:0xEC +fn_807A47C0 = .text:0x807A47C0; // type:function size:0x514 +fn_807A4CE0 = .text:0x807A4CE0; // type:function size:0x1C0 +fn_807A4EA0 = .text:0x807A4EA0; // type:function size:0x4E4 +fn_807A5390 = .text:0x807A5390; // type:function size:0x54 +fn_807A53F0 = .text:0x807A53F0; // type:function size:0xD4 +fn_807A54D0 = .text:0x807A54D0; // type:function size:0x200 +fn_807A56D0 = .text:0x807A56D0; // type:function size:0x190 +fn_807A5860 = .text:0x807A5860; // type:function size:0x88 +fn_807A58F0 = .text:0x807A58F0; // type:function size:0x94 +fn_807A5990 = .text:0x807A5990; // type:function size:0x228 +fn_807A5BC0 = .text:0x807A5BC0; // type:function size:0x194 +fn_807A5D60 = .text:0x807A5D60; // type:function size:0x14 +fn_807A5D80 = .text:0x807A5D80; // type:function size:0x218 +fn_807A5FA0 = .text:0x807A5FA0; // type:function size:0x48 +fn_807A5FF0 = .text:0x807A5FF0; // type:function size:0x26C +fn_807A6260 = .text:0x807A6260; // type:function size:0x354 +fn_807A65C0 = .text:0x807A65C0; // type:function size:0x30 +fn_807A65F0 = .text:0x807A65F0; // type:function size:0x58 +fn_807A6650 = .text:0x807A6650; // type:function size:0x39C +fn_807A69F0 = .text:0x807A69F0; // type:function size:0x98 +fn_807A6A90 = .text:0x807A6A90; // type:function size:0x13C +fn_807A6BD0 = .text:0x807A6BD0; // type:function size:0xE4 +fn_807A6CC0 = .text:0x807A6CC0; // type:function size:0x1A4 +fn_807A6E70 = .text:0x807A6E70; // type:function size:0x7FC +fn_807A7670 = .text:0x807A7670; // type:function size:0x74 +fn_807A76F0 = .text:0x807A76F0; // type:function size:0x194 +fn_807A7890 = .text:0x807A7890; // type:function size:0x94 +fn_807A7930 = .text:0x807A7930; // type:function size:0x8C +fn_807A79C0 = .text:0x807A79C0; // type:function size:0x8C +fn_807A7A50 = .text:0x807A7A50; // type:function size:0x30 +fn_807A7A80 = .text:0x807A7A80; // type:function size:0x134 +fn_807A7BC0 = .text:0x807A7BC0; // type:function size:0x62C +fn_807A81F0 = .text:0x807A81F0; // type:function size:0x4 +fn_807A8200 = .text:0x807A8200; // type:function size:0xD4 +fn_807A82E0 = .text:0x807A82E0; // type:function size:0xFC +fn_807A83E0 = .text:0x807A83E0; // type:function size:0xF4 +fn_807A84E0 = .text:0x807A84E0; // type:function size:0x284 +fn_807A8770 = .text:0x807A8770; // type:function size:0x1A8 +fn_807A8920 = .text:0x807A8920; // type:function size:0xC0 +fn_807A89E0 = .text:0x807A89E0; // type:function size:0xBC +fn_807A8AA0 = .text:0x807A8AA0; // type:function size:0xB8 +fn_807A8B60 = .text:0x807A8B60; // type:function size:0x13C +fn_807A8CA0 = .text:0x807A8CA0; // type:function size:0x9D4 +fn_807A9680 = .text:0x807A9680; // type:function size:0x3B0 +fn_807A9A30 = .text:0x807A9A30; // type:function size:0x2C +fn_807A9A60 = .text:0x807A9A60; // type:function size:0x98 +fn_807A9B00 = .text:0x807A9B00; // type:function size:0x50 +fn_807A9B50 = .text:0x807A9B50; // type:function size:0x6CC +fn_807AA220 = .text:0x807AA220; // type:function size:0x54 +fn_807AA280 = .text:0x807AA280; // type:function size:0x25C +fn_807AA4E0 = .text:0x807AA4E0; // type:function size:0x58 +fn_807AA540 = .text:0x807AA540; // type:function size:0x2F0 +fn_807AA830 = .text:0x807AA830; // type:function size:0x58 +fn_807AA890 = .text:0x807AA890; // type:function size:0x5C +fn_807AA8F0 = .text:0x807AA8F0; // type:function size:0x58 +fn_807AA950 = .text:0x807AA950; // type:function size:0x58 +fn_807AA9B0 = .text:0x807AA9B0; // type:function size:0x2C +fn_807AA9E0 = .text:0x807AA9E0; // type:function size:0x8 +fn_807AA9F0 = .text:0x807AA9F0; // type:function size:0x28C +fn_807AAC80 = .text:0x807AAC80; // type:function size:0x12C +fn_807AADB0 = .text:0x807AADB0; // type:function size:0x4C +fn_807AAE00 = .text:0x807AAE00; // type:function size:0x4C +fn_807AAE50 = .text:0x807AAE50; // type:function size:0x6C +fn_807AAEC0 = .text:0x807AAEC0; // type:function size:0x19C +fn_807AB060 = .text:0x807AB060; // type:function size:0x2B0 +fn_807AB310 = .text:0x807AB310; // type:function size:0x88 +fn_807AB3A0 = .text:0x807AB3A0; // type:function size:0x134 +fn_807AB4E0 = .text:0x807AB4E0; // type:function size:0x290 +fn_807AB770 = .text:0x807AB770; // type:function size:0x2C0 +fn_807ABA30 = .text:0x807ABA30; // type:function size:0x19C +fn_807ABBD0 = .text:0x807ABBD0; // type:function size:0x28 +fn_807ABC00 = .text:0x807ABC00; // type:function size:0x6C +fn_807ABC70 = .text:0x807ABC70; // type:function size:0x268 +fn_807ABEE0 = .text:0x807ABEE0; // type:function size:0xAC +fn_807ABF90 = .text:0x807ABF90; // type:function size:0x10 +fn_807ABFA0 = .text:0x807ABFA0; // type:function size:0xB4 +fn_807AC060 = .text:0x807AC060; // type:function size:0x5B4 +fn_807AC620 = .text:0x807AC620; // type:function size:0x140 +fn_807AC760 = .text:0x807AC760; // type:function size:0x64 +fn_807AC7D0 = .text:0x807AC7D0; // type:function size:0x64 +fn_807AC840 = .text:0x807AC840; // type:function size:0x18C +fn_807AC9D0 = .text:0x807AC9D0; // type:function size:0x29C +fn_807ACC70 = .text:0x807ACC70; // type:function size:0x50 +fn_807ACCC0 = .text:0x807ACCC0; // type:function size:0x70 +fn_807ACD30 = .text:0x807ACD30; // type:function size:0x19C +fn_807ACED0 = .text:0x807ACED0; // type:function size:0x84 +fn_807ACF60 = .text:0x807ACF60; // type:function size:0x50 +fn_807ACFB0 = .text:0x807ACFB0; // type:function size:0x68 +fn_807AD020 = .text:0x807AD020; // type:function size:0x194 +fn_807AD1C0 = .text:0x807AD1C0; // type:function size:0x5C +fn_807AD220 = .text:0x807AD220; // type:function size:0x64 +fn_807AD290 = .text:0x807AD290; // type:function size:0x40 +fn_807AD2D0 = .text:0x807AD2D0; // type:function size:0x4AC +fn_807AD780 = .text:0x807AD780; // type:function size:0xB0 +fn_807AD830 = .text:0x807AD830; // type:function size:0x3C0 +fn_807ADBF0 = .text:0x807ADBF0; // type:function size:0x920 +fn_807AE510 = .text:0x807AE510; // type:function size:0x2F4 +fn_807AE810 = .text:0x807AE810; // type:function size:0xA0 +fn_807AE8B0 = .text:0x807AE8B0; // type:function size:0x10 +fn_807AE8C0 = .text:0x807AE8C0; // type:function size:0x80 +fn_807AE940 = .text:0x807AE940; // type:function size:0x3B8 +fn_807AED00 = .text:0x807AED00; // type:function size:0x2C8 +fn_807AEFD0 = .text:0x807AEFD0; // type:function size:0x14C +fn_807AF120 = .text:0x807AF120; // type:function size:0x330 +fn_807AF450 = .text:0x807AF450; // type:function size:0x1AC +fn_807AF600 = .text:0x807AF600; // type:function size:0xA0 +fn_807AF6A0 = .text:0x807AF6A0; // type:function size:0x90 +fn_807AF730 = .text:0x807AF730; // type:function size:0x4 +fn_807AF740 = .text:0x807AF740; // type:function size:0x37C +fn_807AFAC0 = .text:0x807AFAC0; // type:function size:0x6C +fn_807AFB30 = .text:0x807AFB30; // type:function size:0x64 +fn_807AFBA0 = .text:0x807AFBA0; // type:function size:0x54 +fn_807AFC00 = .text:0x807AFC00; // type:function size:0x138 +fn_807AFD40 = .text:0x807AFD40; // type:function size:0x2C +fn_807AFD70 = .text:0x807AFD70; // type:function size:0x1DC +fn_807AFF50 = .text:0x807AFF50; // type:function size:0x260 +fn_807B01B0 = .text:0x807B01B0; // type:function size:0x10 +fn_807B01C0 = .text:0x807B01C0; // type:function size:0xE4 +fn_807B02B0 = .text:0x807B02B0; // type:function size:0x8 +fn_807B02C0 = .text:0x807B02C0; // type:function size:0x38 +fn_807B0300 = .text:0x807B0300; // type:function size:0x1D8 +fn_807B04E0 = .text:0x807B04E0; // type:function size:0x14 +fn_807B0500 = .text:0x807B0500; // type:function size:0x1C +fn_807B0520 = .text:0x807B0520; // type:function size:0x94 +fn_807B05C0 = .text:0x807B05C0; // type:function size:0x68 +fn_807B0630 = .text:0x807B0630; // type:function size:0x1A0 +fn_807B07D0 = .text:0x807B07D0; // type:function size:0x78 +fn_807B0850 = .text:0x807B0850; // type:function size:0x5C +fn_807B08B0 = .text:0x807B08B0; // type:function size:0x4C +fn_807B0900 = .text:0x807B0900; // type:function size:0x50 +fn_807B0950 = .text:0x807B0950; // type:function size:0x44 +fn_807B09A0 = .text:0x807B09A0; // type:function size:0xB4 +fn_807B0A60 = .text:0x807B0A60; // type:function size:0x44 +fn_807B0AB0 = .text:0x807B0AB0; // type:function size:0x50 +fn_807B0B00 = .text:0x807B0B00; // type:function size:0x50 +fn_807B0B50 = .text:0x807B0B50; // type:function size:0x2DC +fn_807B0E30 = .text:0x807B0E30; // type:function size:0xDC +fn_807B0F10 = .text:0x807B0F10; // type:function size:0x88 +fn_807B0FA0 = .text:0x807B0FA0; // type:function size:0x78 +fn_807B1020 = .text:0x807B1020; // type:function size:0x54 +fn_807B1080 = .text:0x807B1080; // type:function size:0x44 +fn_807B10D0 = .text:0x807B10D0; // type:function size:0xC +fn_807B10E0 = .text:0x807B10E0; // type:function size:0x30 +fn_807B1110 = .text:0x807B1110; // type:function size:0x90 +fn_807B11A0 = .text:0x807B11A0; // type:function size:0x5C +fn_807B1200 = .text:0x807B1200; // type:function size:0x78 +fn_807B1280 = .text:0x807B1280; // type:function size:0x4C +fn_807B12D0 = .text:0x807B12D0; // type:function size:0x120 +fn_807B13F0 = .text:0x807B13F0; // type:function size:0x2C +fn_807B1420 = .text:0x807B1420; // type:function size:0x10 +fn_807B1430 = .text:0x807B1430; // type:function size:0x50 +fn_807B1480 = .text:0x807B1480; // type:function size:0xD8 +fn_807B1560 = .text:0x807B1560; // type:function size:0x6C +fn_807B15D0 = .text:0x807B15D0; // type:function size:0x34 +fn_807B1610 = .text:0x807B1610; // type:function size:0x58 +fn_807B1670 = .text:0x807B1670; // type:function size:0x128 +fn_807B17A0 = .text:0x807B17A0; // type:function size:0x6C +fn_807B1810 = .text:0x807B1810; // type:function size:0x230 +fn_807B1A40 = .text:0x807B1A40; // type:function size:0x34 +fn_807B1A80 = .text:0x807B1A80; // type:function size:0x68 +fn_807B1AF0 = .text:0x807B1AF0; // type:function size:0x10C +fn_807B1C00 = .text:0x807B1C00; // type:function size:0xC8 +fn_807B1CD0 = .text:0x807B1CD0; // type:function size:0x258 +fn_807B1F30 = .text:0x807B1F30; // type:function size:0x6C +fn_807B1FA0 = .text:0x807B1FA0; // type:function size:0xD4 +fn_807B2080 = .text:0x807B2080; // type:function size:0x1FC +fn_807B2280 = .text:0x807B2280; // type:function size:0x84 +fn_807B2310 = .text:0x807B2310; // type:function size:0xBC +fn_807B23D0 = .text:0x807B23D0; // type:function size:0x7FC +fn_807B2BD0 = .text:0x807B2BD0; // type:function size:0x7FC +fn_807B33D0 = .text:0x807B33D0; // type:function size:0x7FC +fn_807B3BCC = .text:0x807B3BCC; // type:function size:0x278 +fn_807B3E44 = .text:0x807B3E44; // type:function size:0x80 +fn_807B3EC4 = .text:0x807B3EC4; // type:function size:0x178 +fn_807B403C = .text:0x807B403C; // type:function size:0x8 +fn_807B4044 = .text:0x807B4044; // type:function size:0x4 +NETMemCpy = .text:0x807B4048; // type:function size:0x3C0 +fn_807B4408 = .text:0x807B4408; // type:function size:0x104 +fn_807B450C = .text:0x807B450C; // type:function size:0x30 +fn_807B453C = .text:0x807B453C; // type:function size:0x5C +fn_807B4598 = .text:0x807B4598; // type:function size:0x44 +fn_807B45DC = .text:0x807B45DC; // type:function size:0x8 +fn_807B45E4 = .text:0x807B45E4; // type:function size:0x8 +fn_807B45EC = .text:0x807B45EC; // type:function size:0x8 +fn_807B45F4 = .text:0x807B45F4; // type:function size:0x190 +fn_807B4784 = .text:0x807B4784; // type:function size:0xF0 +fn_807B4874 = .text:0x807B4874; // type:function size:0x8 +fn_807B487C = .text:0x807B487C; // type:function size:0x13C +fn_807B49B8 = .text:0x807B49B8; // type:function size:0x48 +fn_807B4A00 = .text:0x807B4A00; // type:function size:0x20 +fn_807B4A20 = .text:0x807B4A20; // type:function size:0x18C +fn_807B4BAC = .text:0x807B4BAC; // type:function size:0x10 +fn_807B4BBC = .text:0x807B4BBC; // type:function size:0xCC +fn_807B4C88 = .text:0x807B4C88; // type:function size:0x11C +fn_807B4DA4 = .text:0x807B4DA4; // type:function size:0x54 +fn_807B4DF8 = .text:0x807B4DF8; // type:function size:0x4 +fn_807B4DFC = .text:0x807B4DFC; // type:function size:0xC +fn_807B4E08 = .text:0x807B4E08; // type:function size:0x40 +fn_807B4E48 = .text:0x807B4E48; // type:function size:0x4 +fn_807B4E4C = .text:0x807B4E4C; // type:function size:0x4 +fn_807B4E50 = .text:0x807B4E50; // type:function size:0x4 +fn_807B4E54 = .text:0x807B4E54; // type:function size:0x94 +fn_807B4EE8 = .text:0x807B4EE8; // type:function size:0x48 +fn_807B4F30 = .text:0x807B4F30; // type:function size:0x28 +fn_807B4F58 = .text:0x807B4F58; // type:function size:0xC +fn_807B4F64 = .text:0x807B4F64; // type:function size:0x98 +fn_807B4FFC = .text:0x807B4FFC; // type:function size:0x24 +fn_807B5020 = .text:0x807B5020; // type:function size:0x1F8 +fn_807B5218 = .text:0x807B5218; // type:function size:0xF8 +fn_807B5310 = .text:0x807B5310; // type:function size:0x1F0 +fn_807B5500 = .text:0x807B5500; // type:function size:0x144 +fn_807B5644 = .text:0x807B5644; // type:function size:0x1C +fn_807B5660 = .text:0x807B5660; // type:function size:0x20 +fn_807B5680 = .text:0x807B5680; // type:function size:0x3C +fn_807B56BC = .text:0x807B56BC; // type:function size:0xC +fn_807B56C8 = .text:0x807B56C8; // type:function size:0x628 +fn_807B5CF0 = .text:0x807B5CF0; // type:function size:0x104 +fn_807B5DF4 = .text:0x807B5DF4; // type:function size:0xD8 +fn_807B5ECC = .text:0x807B5ECC; // type:function size:0xC0 +fn_807B5F8C = .text:0x807B5F8C; // type:function size:0xC4 +fn_807B6050 = .text:0x807B6050; // type:function size:0xA8 +fn_807B60F8 = .text:0x807B60F8; // type:function size:0xCC +fn_807B61C4 = .text:0x807B61C4; // type:function size:0x134 +fn_807B62F8 = .text:0x807B62F8; // type:function size:0xD0 +fn_807B63C8 = .text:0x807B63C8; // type:function size:0x58 +fn_807B6420 = .text:0x807B6420; // type:function size:0xD4 +fn_807B64F4 = .text:0x807B64F4; // type:function size:0x6C +fn_807B6560 = .text:0x807B6560; // type:function size:0xC0 +fn_807B6620 = .text:0x807B6620; // type:function size:0x1B0 +fn_807B67D0 = .text:0x807B67D0; // type:function size:0x10C +fn_807B68DC = .text:0x807B68DC; // type:function size:0xDC +fn_807B69B8 = .text:0x807B69B8; // type:function size:0x198 +fn_807B6B50 = .text:0x807B6B50; // type:function size:0xAC +fn_807B6BFC = .text:0x807B6BFC; // type:function size:0x54 +fn_807B6C50 = .text:0x807B6C50; // type:function size:0x74 +fn_807B6CC4 = .text:0x807B6CC4; // type:function size:0x4 +fn_807B6CC8 = .text:0x807B6CC8; // type:function size:0x4 +fn_807B6CCC = .text:0x807B6CCC; // type:function size:0x4 +fn_807B6CD0 = .text:0x807B6CD0; // type:function size:0xC +fn_807B6CDC = .text:0x807B6CDC; // type:function size:0xCC +fn_807B6DA8 = .text:0x807B6DA8; // type:function size:0x70 +fn_807B6E18 = .text:0x807B6E18; // type:function size:0x74 +fn_807B6E8C = .text:0x807B6E8C; // type:function size:0xA0 +fn_807B6F2C = .text:0x807B6F2C; // type:function size:0x124 +fn_807B7050 = .text:0x807B7050; // type:function size:0xA0 +fn_807B70F0 = .text:0x807B70F0; // type:function size:0x17C +fn_807B726C = .text:0x807B726C; // type:function size:0xB4 +fn_807B7320 = .text:0x807B7320; // type:function size:0x90 +fn_807B73B0 = .text:0x807B73B0; // type:function size:0xAC +fn_807B745C = .text:0x807B745C; // type:function size:0x1DC +fn_807B7638 = .text:0x807B7638; // type:function size:0xC +fn_807B7644 = .text:0x807B7644; // type:function size:0xC +fn_807B7650 = .text:0x807B7650; // type:function size:0x8 +fn_807B7658 = .text:0x807B7658; // type:function size:0xE8 +fn_807B7740 = .text:0x807B7740; // type:function size:0xC8 +fn_807B7808 = .text:0x807B7808; // type:function size:0xE0 +fn_807B78E8 = .text:0x807B78E8; // type:function size:0x104 +fn_807B79EC = .text:0x807B79EC; // type:function size:0x190 +fn_807B7B7C = .text:0x807B7B7C; // type:function size:0xCC +fn_807B7C48 = .text:0x807B7C48; // type:function size:0xAC +fn_807B7CF4 = .text:0x807B7CF4; // type:function size:0x2A8 +fn_807B7F9C = .text:0x807B7F9C; // type:function size:0x1F8 +fn_807B8194 = .text:0x807B8194; // type:function size:0xF8 +fn_807B828C = .text:0x807B828C; // type:function size:0x188 +fn_807B8414 = .text:0x807B8414; // type:function size:0x3A4 +fn_807B87B8 = .text:0x807B87B8; // type:function size:0x2C4 +fn_807B8A7C = .text:0x807B8A7C; // type:function size:0x180 +fn_807B8BFC = .text:0x807B8BFC; // type:function size:0xB8 +fn_807B8CB4 = .text:0x807B8CB4; // type:function size:0x154 +fn_807B8E08 = .text:0x807B8E08; // type:function size:0x1BC +fn_807B8FC4 = .text:0x807B8FC4; // type:function size:0x154 +fn_807B9118 = .text:0x807B9118; // type:function size:0x49C +fn_807B95B4 = .text:0x807B95B4; // type:function size:0x1EC +fn_807B97A0 = .text:0x807B97A0; // type:function size:0x330 +fn_807B9AD0 = .text:0x807B9AD0; // type:function size:0x5F0 +fn_807BA0C0 = .text:0x807BA0C0; // type:function size:0x204 +fn_807BA2C4 = .text:0x807BA2C4; // type:function size:0x148 +fn_807BA40C = .text:0x807BA40C; // type:function size:0x19C +fn_807BA5A8 = .text:0x807BA5A8; // type:function size:0x8C +fn_807BA634 = .text:0x807BA634; // type:function size:0x74 +fn_807BA6A8 = .text:0x807BA6A8; // type:function size:0x4C +fn_807BA6F4 = .text:0x807BA6F4; // type:function size:0x9C +fn_807BA790 = .text:0x807BA790; // type:function size:0x74 +fn_807BA804 = .text:0x807BA804; // type:function size:0x4C +fn_807BA850 = .text:0x807BA850; // type:function size:0x4C +fn_807BA89C = .text:0x807BA89C; // type:function size:0xB4 +fn_807BA950 = .text:0x807BA950; // type:function size:0x5C +fn_807BA9AC = .text:0x807BA9AC; // type:function size:0x8C +fn_807BAA38 = .text:0x807BAA38; // type:function size:0x34 +fn_807BAA6C = .text:0x807BAA6C; // type:function size:0x24 +fn_807BAA90 = .text:0x807BAA90; // type:function size:0x24 +fn_807BAAB4 = .text:0x807BAAB4; // type:function size:0x1E4 +fn_807BAC98 = .text:0x807BAC98; // type:function size:0xD0 +fn_807BAD68 = .text:0x807BAD68; // type:function size:0x84 +fn_807BADEC = .text:0x807BADEC; // type:function size:0x7C +fn_807BAE68 = .text:0x807BAE68; // type:function size:0x44 +fn_807BAEAC = .text:0x807BAEAC; // type:function size:0xC4 +fn_807BAF70 = .text:0x807BAF70; // type:function size:0xC4 +fn_807BB034 = .text:0x807BB034; // type:function size:0xC8 +fn_807BB0FC = .text:0x807BB0FC; // type:function size:0x5C +fn_807BB158 = .text:0x807BB158; // type:function size:0x40 +fn_807BB198 = .text:0x807BB198; // type:function size:0x50 +fn_807BB1E8 = .text:0x807BB1E8; // type:function size:0x84 +fn_807BB26C = .text:0x807BB26C; // type:function size:0x84 +fn_807BB2F0 = .text:0x807BB2F0; // type:function size:0x68 +fn_807BB358 = .text:0x807BB358; // type:function size:0x60 +fn_807BB3B8 = .text:0x807BB3B8; // type:function size:0x5C +fn_807BB414 = .text:0x807BB414; // type:function size:0x170 +fn_807BB584 = .text:0x807BB584; // type:function size:0x128 +fn_807BB6AC = .text:0x807BB6AC; // type:function size:0x6C +fn_807BB718 = .text:0x807BB718; // type:function size:0x78 +fn_807BB790 = .text:0x807BB790; // type:function size:0x60 +fn_807BB7F0 = .text:0x807BB7F0; // type:function size:0x70 +fn_807BB860 = .text:0x807BB860; // type:function size:0x88 +fn_807BB8E8 = .text:0x807BB8E8; // type:function size:0x7C +fn_807BB964 = .text:0x807BB964; // type:function size:0x110 +fn_807BBA74 = .text:0x807BBA74; // type:function size:0x30 +fn_807BBAA4 = .text:0x807BBAA4; // type:function size:0x30 +fn_807BBAD4 = .text:0x807BBAD4; // type:function size:0x38 +fn_807BBB0C = .text:0x807BBB0C; // type:function size:0x38 +fn_807BBB44 = .text:0x807BBB44; // type:function size:0x8 +fn_807BBB4C = .text:0x807BBB4C; // type:function size:0x8 +fn_807BBB54 = .text:0x807BBB54; // type:function size:0x8 +fn_807BBB5C = .text:0x807BBB5C; // type:function size:0x44 +fn_807BBBA0 = .text:0x807BBBA0; // type:function size:0x44 +fn_807BBBE4 = .text:0x807BBBE4; // type:function size:0x20 +fn_807BBC04 = .text:0x807BBC04; // type:function size:0xE8 +fn_807BBCEC = .text:0x807BBCEC; // type:function size:0x118 +fn_807BBE04 = .text:0x807BBE04; // type:function size:0x118 +fn_807BBF1C = .text:0x807BBF1C; // type:function size:0x58 +fn_807BBF74 = .text:0x807BBF74; // type:function size:0x68 +fn_807BBFDC = .text:0x807BBFDC; // type:function size:0x4 +fn_807BBFE0 = .text:0x807BBFE0; // type:function size:0x8 +fn_807BBFE8 = .text:0x807BBFE8; // type:function size:0x8 +fn_807BBFF0 = .text:0x807BBFF0; // type:function size:0x8 +fn_807BBFF8 = .text:0x807BBFF8; // type:function size:0x8 +fn_807BC000 = .text:0x807BC000; // type:function size:0x10 +fn_807BC010 = .text:0x807BC010; // type:function size:0x18 +fn_807BC028 = .text:0x807BC028; // type:function size:0x60 +fn_807BC088 = .text:0x807BC088; // type:function size:0x30 +fn_807BC0B8 = .text:0x807BC0B8; // type:function size:0x4 +fn_807BC0BC = .text:0x807BC0BC; // type:function size:0x568 +fn_807BC624 = .text:0x807BC624; // type:function size:0x8C +fn_807BC6B0 = .text:0x807BC6B0; // type:function size:0x4C0 +fn_807BCB70 = .text:0x807BCB70; // type:function size:0xF4 +fn_807BCC64 = .text:0x807BCC64; // type:function size:0x138 +fn_807BCD9C = .text:0x807BCD9C; // type:function size:0x128 +fn_807BCEC4 = .text:0x807BCEC4; // type:function size:0xE8 +fn_807BCFAC = .text:0x807BCFAC; // type:function size:0xB0 +fn_807BD05C = .text:0x807BD05C; // type:function size:0x1F0 +fn_807BD24C = .text:0x807BD24C; // type:function size:0x1D0 +fn_807BD41C = .text:0x807BD41C; // type:function size:0x1D8 +fn_807BD5F4 = .text:0x807BD5F4; // type:function size:0xBC +fn_807BD6B0 = .text:0x807BD6B0; // type:function size:0x194 +fn_807BD844 = .text:0x807BD844; // type:function size:0x170 +fn_807BD9B4 = .text:0x807BD9B4; // type:function size:0x1EC +fn_807BDBA0 = .text:0x807BDBA0; // type:function size:0x168 +fn_807BDD08 = .text:0x807BDD08; // type:function size:0x78 +fn_807BDD80 = .text:0x807BDD80; // type:function size:0xF4 +fn_807BDE74 = .text:0x807BDE74; // type:function size:0x180 +fn_807BDFF4 = .text:0x807BDFF4; // type:function size:0x70 +fn_807BE064 = .text:0x807BE064; // type:function size:0x4C +fn_807BE0B0 = .text:0x807BE0B0; // type:function size:0xA4 +fn_807BE154 = .text:0x807BE154; // type:function size:0xEC +fn_807BE240 = .text:0x807BE240; // type:function size:0x38 +fn_807BE278 = .text:0x807BE278; // type:function size:0x20 +fn_807BE298 = .text:0x807BE298; // type:function size:0x1CC +fn_807BE464 = .text:0x807BE464; // type:function size:0x6C +fn_807BE4D0 = .text:0x807BE4D0; // type:function size:0x14 +fn_807BE4E4 = .text:0x807BE4E4; // type:function size:0x14 +fn_807BE4F8 = .text:0x807BE4F8; // type:function size:0x14 +fn_807BE50C = .text:0x807BE50C; // type:function size:0xA0 +fn_807BE5AC = .text:0x807BE5AC; // type:function size:0x8 +fn_807BE5B4 = .text:0x807BE5B4; // type:function size:0x194 +fn_807BE748 = .text:0x807BE748; // type:function size:0x204 +fn_807BE94C = .text:0x807BE94C; // type:function size:0x2E0 +NWC24SuspendScheduler = .text:0x807BEC2C; // type:function size:0xD0 scope:global +fn_807BECFC = .text:0x807BECFC; // type:function size:0xF0 +fn_807BEDEC = .text:0x807BEDEC; // type:function size:0x1A0 +fn_807BEF8C = .text:0x807BEF8C; // type:function size:0x1BC +fn_807BF148 = .text:0x807BF148; // type:function size:0x10 +fn_807BF158 = .text:0x807BF158; // type:function size:0x10 +fn_807BF168 = .text:0x807BF168; // type:function size:0x10 +fn_807BF178 = .text:0x807BF178; // type:function size:0x10 +fn_807BF188 = .text:0x807BF188; // type:function size:0xE0 +fn_807BF268 = .text:0x807BF268; // type:function size:0xCC +fn_807BF334 = .text:0x807BF334; // type:function size:0x10 +fn_807BF344 = .text:0x807BF344; // type:function size:0x18C +fn_807BF4D0 = .text:0x807BF4D0; // type:function size:0x10 +fn_807BF4E0 = .text:0x807BF4E0; // type:function size:0x160 +fn_807BF640 = .text:0x807BF640; // type:function size:0xA4 +fn_807BF6E4 = .text:0x807BF6E4; // type:function size:0x3C +fn_807BF720 = .text:0x807BF720; // type:function size:0x118 +fn_807BF838 = .text:0x807BF838; // type:function size:0xE0 +fn_807BF918 = .text:0x807BF918; // type:function size:0x3C +fn_807BF954 = .text:0x807BF954; // type:function size:0xE0 +fn_807BFA34 = .text:0x807BFA34; // type:function size:0x98 +fn_807BFACC = .text:0x807BFACC; // type:function size:0x284 +fn_807BFD50 = .text:0x807BFD50; // type:function size:0x148 +NWC24iSynchronizeRtcCounter = .text:0x807BFE98; // type:function size:0x94 scope:global +fn_807BFF2C = .text:0x807BFF2C; // type:function size:0x78 +fn_807BFFA4 = .text:0x807BFFA4; // type:function size:0x34 +fn_807BFFD8 = .text:0x807BFFD8; // type:function size:0x48 +fn_807C0020 = .text:0x807C0020; // type:function size:0x5C +fn_807C007C = .text:0x807C007C; // type:function size:0x8 +fn_807C0084 = .text:0x807C0084; // type:function size:0x1C +fn_807C00A0 = .text:0x807C00A0; // type:function size:0x128 +fn_807C01C8 = .text:0x807C01C8; // type:function size:0x5C +fn_807C0224 = .text:0x807C0224; // type:function size:0x8 +fn_807C022C = .text:0x807C022C; // type:function size:0x394 +fn_807C05C0 = .text:0x807C05C0; // type:function size:0x190 +fn_807C0750 = .text:0x807C0750; // type:function size:0x1C4 +NWC24iPrepareShutdown = .text:0x807C0914; // type:function size:0xC0 scope:global +fn_807C09D4 = .text:0x807C09D4; // type:function size:0xD0 +fn_807C0AA4 = .text:0x807C0AA4; // type:function size:0x1CC +fn_807C0C70 = .text:0x807C0C70; // type:function size:0xFC +fn_807C0D6C = .text:0x807C0D6C; // type:function size:0xC +fn_807C0D78 = .text:0x807C0D78; // type:function size:0x428 +fn_807C11A0 = .text:0x807C11A0; // type:function size:0x1B0 +fn_807C1350 = .text:0x807C1350; // type:function size:0x34 +fn_807C1384 = .text:0x807C1384; // type:function size:0xC +fn_807C1390 = .text:0x807C1390; // type:function size:0x8 +fn_807C1398 = .text:0x807C1398; // type:function size:0x50 +SOiAlloc = .text:0x807C13E8; // type:function size:0xE8 +SOiFree = .text:0x807C14D0; // type:function size:0x34 +SOiPrepare = .text:0x807C1504; // type:function size:0xE8 +SOiConclude = .text:0x807C15EC; // type:function size:0x5C +fn_807C1648 = .text:0x807C1648; // type:function size:0x2D8 +fn_807C1920 = .text:0x807C1920; // type:function size:0xE4 +fn_807C1A04 = .text:0x807C1A04; // type:function size:0x138 +fn_807C1B3C = .text:0x807C1B3C; // type:function size:0xD4 +SOSocket = .text:0x807C1C10; // type:function size:0xF0 +SOClose = .text:0x807C1D00; // type:function size:0xA4 +fn_807C1DA4 = .text:0x807C1DA4; // type:function size:0xB4 +SOAccept = .text:0x807C1E58; // type:function size:0x140 +SOBind = .text:0x807C1F98; // type:function size:0xE8 +SOConnect = .text:0x807C2080; // type:function size:0xE8 +SORecvFrom = .text:0x807C2168; // type:function size:0x28 +SORecv = .text:0x807C2190; // type:function size:0x24 +SOSendTo = .text:0x807C21B4; // type:function size:0x28 +SOSend = .text:0x807C21DC; // type:function size:0x24 +SOFcntl = .text:0x807C2200; // type:function size:0x130 +SOShutdown = .text:0x807C2330; // type:function size:0xB4 +SOPoll = .text:0x807C23E4; // type:function size:0x15C +fn_807C2540 = .text:0x807C2540; // type:function size:0x10C +SOInetPtoN = .text:0x807C264C; // type:function size:0x140 +SOInetNtoP = .text:0x807C278C; // type:function size:0x14C +fn_807C28D8 = .text:0x807C28D8; // type:function size:0x4 +fn_807C28DC = .text:0x807C28DC; // type:function size:0x8 +SOHtoNl = .text:0x807C28E4; // type:function size:0x4 +fn_807C28E8 = .text:0x807C28E8; // type:function size:0x8 +fn_807C28F0 = .text:0x807C28F0; // type:function size:0x2B8 +fn_807C2BA8 = .text:0x807C2BA8; // type:function size:0x22C +fn_807C2DD4 = .text:0x807C2DD4; // type:function size:0x78 +SOGetHostByName = .text:0x807C2E4C; // type:function size:0x140 +fn_807C2F8C = .text:0x807C2F8C; // type:function size:0x2E4 +fn_807C3270 = .text:0x807C3270; // type:function size:0x64 +SOSetSockOpt = .text:0x807C32D4; // type:function size:0x104 +SOGetInterfaceOpt = .text:0x807C33D8; // type:function size:0x1DC +fn_807C35B4 = .text:0x807C35B4; // type:function size:0x158 +fn_807C370C = .text:0x807C370C; // type:function size:0xC8 +fn_807C37D4 = .text:0x807C37D4; // type:function size:0xAC +fn_807C3880 = .text:0x807C3880; // type:function size:0x2D0 +fn_807C3B50 = .text:0x807C3B50; // type:function size:0x2C0 +fn_807C3E10 = .text:0x807C3E10; // type:function size:0xAC +fn_807C3EBC = .text:0x807C3EBC; // type:function size:0x16C +fn_807C4028 = .text:0x807C4028; // type:function size:0x148 +fn_807C4170 = .text:0x807C4170; // type:function size:0xC8 +fn_807C4238 = .text:0x807C4238; // type:function size:0xC8 +fn_807C4300 = .text:0x807C4300; // type:function size:0x4 +fn_807C4304 = .text:0x807C4304; // type:function size:0x4 +fn_807C4308 = .text:0x807C4308; // type:function size:0x4 +fn_807C4310 = .text:0x807C4310; // type:function size:0x18 +fn_807C4330 = .text:0x807C4330; // type:function size:0x130 +fn_807C4460 = .text:0x807C4460; // type:function size:0xF8 +fn_807C4560 = .text:0x807C4560; // type:function size:0x20 +fn_807C4580 = .text:0x807C4580; // type:function size:0x24 +fn_807C45B0 = .text:0x807C45B0; // type:function size:0x3C +fn_807C45F0 = .text:0x807C45F0; // type:function size:0x50 +VFiPFCODE_Combine_Width = .text:0x807C4640; // type:function size:0xC +fn_807C4650 = .text:0x807C4650; // type:function size:0x10 +fn_807C4660 = .text:0x807C4660; // type:function size:0x118 +fn_807C4780 = .text:0x807C4780; // type:function size:0x8 +fn_807C4790 = .text:0x807C4790; // type:function size:0x8 +fn_807C47A0 = .text:0x807C47A0; // type:function size:0x18 +fn_807C47C0 = .text:0x807C47C0; // type:function size:0xE0 +fn_807C48A0 = .text:0x807C48A0; // type:function size:0xAC +fn_807C4950 = .text:0x807C4950; // type:function size:0x14 +fn_807C4970 = .text:0x807C4970; // type:function size:0xE0 +fn_807C4A50 = .text:0x807C4A50; // type:function size:0xA4 +fn_807C4B00 = .text:0x807C4B00; // type:function size:0xFC +fn_807C4C00 = .text:0x807C4C00; // type:function size:0xF0 +fn_807C4CF0 = .text:0x807C4CF0; // type:function size:0x24 +fn_807C4D20 = .text:0x807C4D20; // type:function size:0x24 +fn_807C4D50 = .text:0x807C4D50; // type:function size:0x50 +fn_807C4DA0 = .text:0x807C4DA0; // type:function size:0xEC +fn_807C4E90 = .text:0x807C4E90; // type:function size:0x1BC +fn_807C5050 = .text:0x807C5050; // type:function size:0x1B4 +fn_807C5210 = .text:0x807C5210; // type:function size:0x2C +fn_807C5240 = .text:0x807C5240; // type:function size:0x2C +fn_807C5270 = .text:0x807C5270; // type:function size:0x2C +fn_807C52A0 = .text:0x807C52A0; // type:function size:0x80 +fn_807C5320 = .text:0x807C5320; // type:function size:0x18 +fn_807C5340 = .text:0x807C5340; // type:function size:0x238 +fn_807C5580 = .text:0x807C5580; // type:function size:0x88 +fn_807C5610 = .text:0x807C5610; // type:function size:0x128 +fn_807C5740 = .text:0x807C5740; // type:function size:0x84 +fn_807C57D0 = .text:0x807C57D0; // type:function size:0x84 +fn_807C5860 = .text:0x807C5860; // type:function size:0x80 +fn_807C58E0 = .text:0x807C58E0; // type:function size:0x118 +fn_807C5A00 = .text:0x807C5A00; // type:function size:0x530 +fn_807C5F30 = .text:0x807C5F30; // type:function size:0x60 +fn_807C5F90 = .text:0x807C5F90; // type:function size:0xC4 +fn_807C6060 = .text:0x807C6060; // type:function size:0x128 +fn_807C6190 = .text:0x807C6190; // type:function size:0xAC +fn_807C6240 = .text:0x807C6240; // type:function size:0x1E8 +fn_807C6430 = .text:0x807C6430; // type:function size:0x144 +fn_807C6580 = .text:0x807C6580; // type:function size:0xB4 +fn_807C6640 = .text:0x807C6640; // type:function size:0x174 +fn_807C67C0 = .text:0x807C67C0; // type:function size:0x24C +fn_807C6A10 = .text:0x807C6A10; // type:function size:0xEC +fn_807C6B00 = .text:0x807C6B00; // type:function size:0x194 +fn_807C6CA0 = .text:0x807C6CA0; // type:function size:0x154 +fn_807C6E00 = .text:0x807C6E00; // type:function size:0x154 +fn_807C6F60 = .text:0x807C6F60; // type:function size:0x144 +fn_807C70B0 = .text:0x807C70B0; // type:function size:0x13C +fn_807C71F0 = .text:0x807C71F0; // type:function size:0xF0 +fn_807C72E0 = .text:0x807C72E0; // type:function size:0x110 +fn_807C73F0 = .text:0x807C73F0; // type:function size:0x108 +fn_807C7500 = .text:0x807C7500; // type:function size:0x108 +fn_807C7610 = .text:0x807C7610; // type:function size:0xEC +fn_807C7700 = .text:0x807C7700; // type:function size:0xE0 +fn_807C77E0 = .text:0x807C77E0; // type:function size:0x154 +fn_807C7940 = .text:0x807C7940; // type:function size:0x180 +fn_807C7AC0 = .text:0x807C7AC0; // type:function size:0x188 +fn_807C7C50 = .text:0x807C7C50; // type:function size:0x124 +fn_807C7D80 = .text:0x807C7D80; // type:function size:0x1DC +fn_807C7F60 = .text:0x807C7F60; // type:function size:0x1D8 +fn_807C8140 = .text:0x807C8140; // type:function size:0x180 +fn_807C82C0 = .text:0x807C82C0; // type:function size:0x144 +fn_807C8410 = .text:0x807C8410; // type:function size:0x210 +fn_807C8620 = .text:0x807C8620; // type:function size:0x210 +fn_807C8830 = .text:0x807C8830; // type:function size:0x1A4 +fn_807C89E0 = .text:0x807C89E0; // type:function size:0x114 +fn_807C8B00 = .text:0x807C8B00; // type:function size:0x108 +fn_807C8C10 = .text:0x807C8C10; // type:function size:0x108 +fn_807C8D20 = .text:0x807C8D20; // type:function size:0x108 +fn_807C8E30 = .text:0x807C8E30; // type:function size:0x114 +fn_807C8F50 = .text:0x807C8F50; // type:function size:0xC0 +fn_807C9010 = .text:0x807C9010; // type:function size:0x1C +fn_807C9030 = .text:0x807C9030; // type:function size:0x1C +fn_807C9050 = .text:0x807C9050; // type:function size:0x114 +fn_807C9170 = .text:0x807C9170; // type:function size:0xBC +fn_807C9230 = .text:0x807C9230; // type:function size:0x1CC +fn_807C9400 = .text:0x807C9400; // type:function size:0x21C +fn_807C9620 = .text:0x807C9620; // type:function size:0x128 +fn_807C9750 = .text:0x807C9750; // type:function size:0x48 +fn_807C97A0 = .text:0x807C97A0; // type:function size:0x18 +fn_807C97C0 = .text:0x807C97C0; // type:function size:0x5C +fn_807C9820 = .text:0x807C9820; // type:function size:0x40 +fn_807C9860 = .text:0x807C9860; // type:function size:0x280 +fn_807C9AE0 = .text:0x807C9AE0; // type:function size:0x100 +fn_807C9BE0 = .text:0x807C9BE0; // type:function size:0x30C +fn_807C9EF0 = .text:0x807C9EF0; // type:function size:0x204 +fn_807CA100 = .text:0x807CA100; // type:function size:0x258 +fn_807CA360 = .text:0x807CA360; // type:function size:0x254 +fn_807CA5C0 = .text:0x807CA5C0; // type:function size:0x424 +fn_807CA9F0 = .text:0x807CA9F0; // type:function size:0x14 +fn_807CAA10 = .text:0x807CAA10; // type:function size:0x10 +fn_807CAA20 = .text:0x807CAA20; // type:function size:0x10 +fn_807CAA30 = .text:0x807CAA30; // type:function size:0xC8 +fn_807CAB00 = .text:0x807CAB00; // type:function size:0x68 +fn_807CAB70 = .text:0x807CAB70; // type:function size:0x74 +fn_807CABF0 = .text:0x807CABF0; // type:function size:0x90 +fn_807CAC80 = .text:0x807CAC80; // type:function size:0x40 +fn_807CACC0 = .text:0x807CACC0; // type:function size:0x48 +fn_807CAD10 = .text:0x807CAD10; // type:function size:0x48 +fn_807CAD60 = .text:0x807CAD60; // type:function size:0x60 +fn_807CADC0 = .text:0x807CADC0; // type:function size:0xC4 +fn_807CAE90 = .text:0x807CAE90; // type:function size:0xD8 +fn_807CAF70 = .text:0x807CAF70; // type:function size:0x60 +fn_807CAFD0 = .text:0x807CAFD0; // type:function size:0x88 +fn_807CB060 = .text:0x807CB060; // type:function size:0xAC +fn_807CB110 = .text:0x807CB110; // type:function size:0xD0 +fn_807CB1E0 = .text:0x807CB1E0; // type:function size:0x114 +fn_807CB300 = .text:0x807CB300; // type:function size:0x144 +fn_807CB450 = .text:0x807CB450; // type:function size:0x10 +fn_807CB460 = .text:0x807CB460; // type:function size:0xBC +fn_807CB520 = .text:0x807CB520; // type:function size:0x10 +fn_807CB530 = .text:0x807CB530; // type:function size:0x210 +fn_807CB740 = .text:0x807CB740; // type:function size:0x2B0 +fn_807CB9F0 = .text:0x807CB9F0; // type:function size:0x1A8 +fn_807CBBA0 = .text:0x807CBBA0; // type:function size:0x3DC +fn_807CBF80 = .text:0x807CBF80; // type:function size:0x274 +fn_807CC200 = .text:0x807CC200; // type:function size:0x1E8 +fn_807CC3F0 = .text:0x807CC3F0; // type:function size:0x35C +fn_807CC750 = .text:0x807CC750; // type:function size:0x104 +fn_807CC860 = .text:0x807CC860; // type:function size:0x8C +fn_807CC8F0 = .text:0x807CC8F0; // type:function size:0x144 +fn_807CCA40 = .text:0x807CCA40; // type:function size:0xB8 +fn_807CCB00 = .text:0x807CCB00; // type:function size:0xF0 +fn_807CCBF0 = .text:0x807CCBF0; // type:function size:0x158 +fn_807CCD50 = .text:0x807CCD50; // type:function size:0x108 +fn_807CCE60 = .text:0x807CCE60; // type:function size:0x368 +fn_807CD1D0 = .text:0x807CD1D0; // type:function size:0x120 +fn_807CD2F0 = .text:0x807CD2F0; // type:function size:0x70 +fn_807CD360 = .text:0x807CD360; // type:function size:0x48 +fn_807CD3B0 = .text:0x807CD3B0; // type:function size:0xAC +fn_807CD460 = .text:0x807CD460; // type:function size:0x224 +fn_807CD690 = .text:0x807CD690; // type:function size:0x170 +fn_807CD800 = .text:0x807CD800; // type:function size:0x9C +fn_807CD8A0 = .text:0x807CD8A0; // type:function size:0x9C +fn_807CD940 = .text:0x807CD940; // type:function size:0x190 +fn_807CDAD0 = .text:0x807CDAD0; // type:function size:0x6C +fn_807CDB40 = .text:0x807CDB40; // type:function size:0xA8 +fn_807CDBF0 = .text:0x807CDBF0; // type:function size:0xE0 +fn_807CDCD0 = .text:0x807CDCD0; // type:function size:0x74 +fn_807CDD50 = .text:0x807CDD50; // type:function size:0x130 +fn_807CDE80 = .text:0x807CDE80; // type:function size:0x1B4 +fn_807CE040 = .text:0x807CE040; // type:function size:0x250 +fn_807CE290 = .text:0x807CE290; // type:function size:0xD8 +fn_807CE370 = .text:0x807CE370; // type:function size:0x178 +fn_807CE4F0 = .text:0x807CE4F0; // type:function size:0x84 +fn_807CE580 = .text:0x807CE580; // type:function size:0x238 +fn_807CE7C0 = .text:0x807CE7C0; // type:function size:0x300 +fn_807CEAC0 = .text:0x807CEAC0; // type:function size:0x114 +fn_807CEBE0 = .text:0x807CEBE0; // type:function size:0x2B4 +fn_807CEEA0 = .text:0x807CEEA0; // type:function size:0x5E4 +fn_807CF490 = .text:0x807CF490; // type:function size:0x40C +fn_807CF8A0 = .text:0x807CF8A0; // type:function size:0x614 +fn_807CFEC0 = .text:0x807CFEC0; // type:function size:0x104 +fn_807CFFD0 = .text:0x807CFFD0; // type:function size:0x108 +fn_807D00E0 = .text:0x807D00E0; // type:function size:0xF8 +fn_807D01E0 = .text:0x807D01E0; // type:function size:0x32C +fn_807D0510 = .text:0x807D0510; // type:function size:0xF4 +fn_807D0610 = .text:0x807D0610; // type:function size:0x104 +fn_807D0720 = .text:0x807D0720; // type:function size:0xA8 +fn_807D07D0 = .text:0x807D07D0; // type:function size:0xB4 +fn_807D0890 = .text:0x807D0890; // type:function size:0x324 +fn_807D0BC0 = .text:0x807D0BC0; // type:function size:0x128 +fn_807D0CF0 = .text:0x807D0CF0; // type:function size:0x1FC +fn_807D0EF0 = .text:0x807D0EF0; // type:function size:0x1B4 +fn_807D10B0 = .text:0x807D10B0; // type:function size:0x1A4 +fn_807D1260 = .text:0x807D1260; // type:function size:0x1C4 +fn_807D1430 = .text:0x807D1430; // type:function size:0x21C +fn_807D1650 = .text:0x807D1650; // type:function size:0x220 +fn_807D1870 = .text:0x807D1870; // type:function size:0x2AC +fn_807D1B20 = .text:0x807D1B20; // type:function size:0x35C +fn_807D1E80 = .text:0x807D1E80; // type:function size:0x130 +fn_807D1FB0 = .text:0x807D1FB0; // type:function size:0x110 +fn_807D20C0 = .text:0x807D20C0; // type:function size:0x180 +fn_807D2240 = .text:0x807D2240; // type:function size:0x118 +fn_807D2360 = .text:0x807D2360; // type:function size:0x1B8 +fn_807D2520 = .text:0x807D2520; // type:function size:0x3C +fn_807D2560 = .text:0x807D2560; // type:function size:0xC4 +fn_807D2630 = .text:0x807D2630; // type:function size:0xB0 +fn_807D26E0 = .text:0x807D26E0; // type:function size:0xAC +fn_807D2790 = .text:0x807D2790; // type:function size:0x194 +fn_807D2930 = .text:0x807D2930; // type:function size:0x130 +fn_807D2A60 = .text:0x807D2A60; // type:function size:0x22C +fn_807D2C90 = .text:0x807D2C90; // type:function size:0x3D0 +fn_807D3060 = .text:0x807D3060; // type:function size:0x190 +fn_807D31F0 = .text:0x807D31F0; // type:function size:0x130 +fn_807D3320 = .text:0x807D3320; // type:function size:0x28C +fn_807D35B0 = .text:0x807D35B0; // type:function size:0xE0 +fn_807D3690 = .text:0x807D3690; // type:function size:0x5C +fn_807D36F0 = .text:0x807D36F0; // type:function size:0x218 +fn_807D3910 = .text:0x807D3910; // type:function size:0xA8 +fn_807D39C0 = .text:0x807D39C0; // type:function size:0x74 +fn_807D3A40 = .text:0x807D3A40; // type:function size:0x10 +fn_807D3A50 = .text:0x807D3A50; // type:function size:0x8 +fn_807D3A60 = .text:0x807D3A60; // type:function size:0x5C +fn_807D3AC0 = .text:0x807D3AC0; // type:function size:0x68 +fn_807D3B30 = .text:0x807D3B30; // type:function size:0x20 +fn_807D3B50 = .text:0x807D3B50; // type:function size:0x14 +fn_807D3B70 = .text:0x807D3B70; // type:function size:0x1C +fn_807D3B90 = .text:0x807D3B90; // type:function size:0x1DC +fn_807D3D70 = .text:0x807D3D70; // type:function size:0x2D4 +fn_807D4050 = .text:0x807D4050; // type:function size:0x19C +fn_807D41F0 = .text:0x807D41F0; // type:function size:0x4CC +fn_807D46C0 = .text:0x807D46C0; // type:function size:0x15C +fn_807D4820 = .text:0x807D4820; // type:function size:0x1B8 +fn_807D49E0 = .text:0x807D49E0; // type:function size:0x90 +fn_807D4A70 = .text:0x807D4A70; // type:function size:0x1C8 +fn_807D4C40 = .text:0x807D4C40; // type:function size:0x16C +fn_807D4DB0 = .text:0x807D4DB0; // type:function size:0x1C8 +fn_807D4F80 = .text:0x807D4F80; // type:function size:0x118 +fn_807D50A0 = .text:0x807D50A0; // type:function size:0x1E8 +fn_807D5290 = .text:0x807D5290; // type:function size:0x4 +fn_807D52A0 = .text:0x807D52A0; // type:function size:0x11C +fn_807D53C0 = .text:0x807D53C0; // type:function size:0x298 +fn_807D5660 = .text:0x807D5660; // type:function size:0x1D4 +fn_807D5840 = .text:0x807D5840; // type:function size:0x27C +fn_807D5AC0 = .text:0x807D5AC0; // type:function size:0x144 +fn_807D5C10 = .text:0x807D5C10; // type:function size:0x25C +fn_807D5E70 = .text:0x807D5E70; // type:function size:0x2DC +fn_807D6150 = .text:0x807D6150; // type:function size:0x26C +fn_807D63C0 = .text:0x807D63C0; // type:function size:0x3A0 +fn_807D6760 = .text:0x807D6760; // type:function size:0x1C8 +fn_807D6930 = .text:0x807D6930; // type:function size:0x1D4 +fn_807D6B10 = .text:0x807D6B10; // type:function size:0x578 +fn_807D7090 = .text:0x807D7090; // type:function size:0x1A0 +fn_807D7230 = .text:0x807D7230; // type:function size:0x3F8 +fn_807D7630 = .text:0x807D7630; // type:function size:0x124 +fn_807D7760 = .text:0x807D7760; // type:function size:0x98 +fn_807D7800 = .text:0x807D7800; // type:function size:0xA4 +fn_807D78B0 = .text:0x807D78B0; // type:function size:0x1C4 +fn_807D7A80 = .text:0x807D7A80; // type:function size:0x148 +fn_807D7BD0 = .text:0x807D7BD0; // type:function size:0x380 +fn_807D7F50 = .text:0x807D7F50; // type:function size:0x23C +fn_807D8190 = .text:0x807D8190; // type:function size:0x2A0 +fn_807D8430 = .text:0x807D8430; // type:function size:0x38C +fn_807D87C0 = .text:0x807D87C0; // type:function size:0x260 +fn_807D8A20 = .text:0x807D8A20; // type:function size:0x248 +fn_807D8C70 = .text:0x807D8C70; // type:function size:0x1E0 +fn_807D8E50 = .text:0x807D8E50; // type:function size:0x2B4 +fn_807D9110 = .text:0x807D9110; // type:function size:0x4AC +fn_807D95C0 = .text:0x807D95C0; // type:function size:0x354 +fn_807D9920 = .text:0x807D9920; // type:function size:0x2C +fn_807D9950 = .text:0x807D9950; // type:function size:0x10 +fn_807D9960 = .text:0x807D9960; // type:function size:0x384 +fn_807D9CF0 = .text:0x807D9CF0; // type:function size:0x8 +fn_807D9D00 = .text:0x807D9D00; // type:function size:0x8 +fn_807D9D10 = .text:0x807D9D10; // type:function size:0x98 +fn_807D9DB0 = .text:0x807D9DB0; // type:function size:0x18C +fn_807D9F40 = .text:0x807D9F40; // type:function size:0x25C +fn_807DA1A0 = .text:0x807DA1A0; // type:function size:0x1B0 +fn_807DA350 = .text:0x807DA350; // type:function size:0x6C +fn_807DA3C0 = .text:0x807DA3C0; // type:function size:0x9C +fn_807DA460 = .text:0x807DA460; // type:function size:0x12C +fn_807DA590 = .text:0x807DA590; // type:function size:0x98 +fn_807DA630 = .text:0x807DA630; // type:function size:0x778 +fn_807DADB0 = .text:0x807DADB0; // type:function size:0x1DC +fn_807DAF90 = .text:0x807DAF90; // type:function size:0x114 +fn_807DB0B0 = .text:0x807DB0B0; // type:function size:0x64 +fn_807DB120 = .text:0x807DB120; // type:function size:0x318 +fn_807DB440 = .text:0x807DB440; // type:function size:0x198 +fn_807DB5E0 = .text:0x807DB5E0; // type:function size:0x78 +fn_807DB660 = .text:0x807DB660; // type:function size:0xB8 +fn_807DB720 = .text:0x807DB720; // type:function size:0xF0 +fn_807DB810 = .text:0x807DB810; // type:function size:0xEC +fn_807DB900 = .text:0x807DB900; // type:function size:0x290 +fn_807DBB90 = .text:0x807DBB90; // type:function size:0x148 +fn_807DBCE0 = .text:0x807DBCE0; // type:function size:0x23C +fn_807DBF20 = .text:0x807DBF20; // type:function size:0x114 +fn_807DC040 = .text:0x807DC040; // type:function size:0x104 +fn_807DC150 = .text:0x807DC150; // type:function size:0x1FC +fn_807DC350 = .text:0x807DC350; // type:function size:0x18C +fn_807DC4E0 = .text:0x807DC4E0; // type:function size:0x1BC +fn_807DC6A0 = .text:0x807DC6A0; // type:function size:0x1D4 +fn_807DC880 = .text:0x807DC880; // type:function size:0x1C0 +fn_807DCA40 = .text:0x807DCA40; // type:function size:0x1C8 +fn_807DCC10 = .text:0x807DCC10; // type:function size:0x158 +fn_807DCD70 = .text:0x807DCD70; // type:function size:0x160 +fn_807DCED0 = .text:0x807DCED0; // type:function size:0x54 +fn_807DCF30 = .text:0x807DCF30; // type:function size:0x44 +fn_807DCF80 = .text:0x807DCF80; // type:function size:0x10 +fn_807DCF90 = .text:0x807DCF90; // type:function size:0x2A0 +fn_807DD230 = .text:0x807DD230; // type:function size:0x5F4 +fn_807DD830 = .text:0x807DD830; // type:function size:0x11C +fn_807DD950 = .text:0x807DD950; // type:function size:0x168 +fn_807DDAC0 = .text:0x807DDAC0; // type:function size:0x1F0 +fn_807DDCB0 = .text:0x807DDCB0; // type:function size:0x1C0 +VFiPFCODE_CP932_Unicode2OEM = .text:0x807DDE70; // type:function size:0x258 +fn_807DE0D0 = .text:0x807DE0D0; // type:function size:0x34 +fn_807DE110 = .text:0x807DE110; // type:function size:0x78 +fn_807DE190 = .text:0x807DE190; // type:function size:0x8 +fn_807DE1A0 = .text:0x807DE1A0; // type:function size:0x8 +fn_807DE1B0 = .text:0x807DE1B0; // type:function size:0xB4 +fn_807DE270 = .text:0x807DE270; // type:function size:0x40 +fn_807DE2B0 = .text:0x807DE2B0; // type:function size:0x10 +fn_807DE2C0 = .text:0x807DE2C0; // type:function size:0x18 +fn_807DE2E0 = .text:0x807DE2E0; // type:function size:0x24 +fn_807DE310 = .text:0x807DE310; // type:function size:0x94 +fn_807DE3B0 = .text:0x807DE3B0; // type:function size:0x50 +fn_807DE400 = .text:0x807DE400; // type:function size:0x64 +fn_807DE470 = .text:0x807DE470; // type:function size:0x28 +fn_807DE4A0 = .text:0x807DE4A0; // type:function size:0x24 +fn_807DE4D0 = .text:0x807DE4D0; // type:function size:0x24 +fn_807DE500 = .text:0x807DE500; // type:function size:0x24 +fn_807DE530 = .text:0x807DE530; // type:function size:0xAC +fn_807DE5E0 = .text:0x807DE5E0; // type:function size:0x28 +fn_807DE610 = .text:0x807DE610; // type:function size:0x28 +fn_807DE640 = .text:0x807DE640; // type:function size:0x24 +fn_807DE670 = .text:0x807DE670; // type:function size:0x74 +fn_807DE6F0 = .text:0x807DE6F0; // type:function size:0x24 +fn_807DE720 = .text:0x807DE720; // type:function size:0x60 +fn_807DE780 = .text:0x807DE780; // type:function size:0x24 +fn_807DE7B0 = .text:0x807DE7B0; // type:function size:0x28 +fn_807DE7E0 = .text:0x807DE7E0; // type:function size:0x28 +fn_807DE810 = .text:0x807DE810; // type:function size:0x40 +fn_807DE850 = .text:0x807DE850; // type:function size:0x50 +fn_807DE8A0 = .text:0x807DE8A0; // type:function size:0x50 +fn_807DE8F0 = .text:0x807DE8F0; // type:function size:0x28 +fn_807DE920 = .text:0x807DE920; // type:function size:0xC +fn_807DE930 = .text:0x807DE930; // type:function size:0x8 +fn_807DE940 = .text:0x807DE940; // type:function size:0x4 +fn_807DE950 = .text:0x807DE950; // type:function size:0x10 +fn_807DE960 = .text:0x807DE960; // type:function size:0x64 +fn_807DE9D0 = .text:0x807DE9D0; // type:function size:0xC8 +fn_807DEAA0 = .text:0x807DEAA0; // type:function size:0x64 +fn_807DEB10 = .text:0x807DEB10; // type:function size:0x14 +fn_807DEB30 = .text:0x807DEB30; // type:function size:0x78 +fn_807DEBB0 = .text:0x807DEBB0; // type:function size:0x68 +fn_807DEC20 = .text:0x807DEC20; // type:function size:0xF4 +fn_807DED20 = .text:0x807DED20; // type:function size:0x18C +fn_807DEEB0 = .text:0x807DEEB0; // type:function size:0xDC +fn_807DEF90 = .text:0x807DEF90; // type:function size:0xB0 +fn_807DF040 = .text:0x807DF040; // type:function size:0xC4 +fn_807DF110 = .text:0x807DF110; // type:function size:0x6C +fn_807DF180 = .text:0x807DF180; // type:function size:0x8C +fn_807DF210 = .text:0x807DF210; // type:function size:0x9C +fn_807DF2B0 = .text:0x807DF2B0; // type:function size:0x8C +fn_807DF340 = .text:0x807DF340; // type:function size:0xA8 +fn_807DF3F0 = .text:0x807DF3F0; // type:function size:0xA8 +fn_807DF4A0 = .text:0x807DF4A0; // type:function size:0xA8 +fn_807DF550 = .text:0x807DF550; // type:function size:0x70 +fn_807DF5C0 = .text:0x807DF5C0; // type:function size:0x9C +fn_807DF660 = .text:0x807DF660; // type:function size:0xD4 +fn_807DF740 = .text:0x807DF740; // type:function size:0xE8 +fn_807DF830 = .text:0x807DF830; // type:function size:0xD0 +fn_807DF900 = .text:0x807DF900; // type:function size:0x6C +fn_807DF970 = .text:0x807DF970; // type:function size:0x6C +fn_807DF9E0 = .text:0x807DF9E0; // type:function size:0x60 +fn_807DFA40 = .text:0x807DFA40; // type:function size:0x80 +fn_807DFAC0 = .text:0x807DFAC0; // type:function size:0x2C +fn_807DFAF0 = .text:0x807DFAF0; // type:function size:0xE0 +fn_807DFBD0 = .text:0x807DFBD0; // type:function size:0x184 +fn_807DFD60 = .text:0x807DFD60; // type:function size:0x18C +fn_807DFEF0 = .text:0x807DFEF0; // type:function size:0x4 +fn_807DFF00 = .text:0x807DFF00; // type:function size:0xC4 +fn_807DFFD0 = .text:0x807DFFD0; // type:function size:0x4 +fn_807DFFE0 = .text:0x807DFFE0; // type:function size:0x88 +fn_807E0070 = .text:0x807E0070; // type:function size:0xC +fn_807E0080 = .text:0x807E0080; // type:function size:0x160 +fn_807E01E0 = .text:0x807E01E0; // type:function size:0x3C +fn_807E0220 = .text:0x807E0220; // type:function size:0x134 +fn_807E0360 = .text:0x807E0360; // type:function size:0x144 +fn_807E04B0 = .text:0x807E04B0; // type:function size:0x440 +fn_807E08F0 = .text:0x807E08F0; // type:function size:0x2C8 +fn_807E0BC0 = .text:0x807E0BC0; // type:function size:0x150 +fn_807E0D10 = .text:0x807E0D10; // type:function size:0x2C +fn_807E0D40 = .text:0x807E0D40; // type:function size:0x60 +fn_807E0DA0 = .text:0x807E0DA0; // type:function size:0x68 +fn_807E0E10 = .text:0x807E0E10; // type:function size:0x1EC +fn_807E1000 = .text:0x807E1000; // type:function size:0x158 +fn_807E1160 = .text:0x807E1160; // type:function size:0x40 +fn_807E11A0 = .text:0x807E11A0; // type:function size:0x6C +fn_807E1210 = .text:0x807E1210; // type:function size:0x330 +fn_807E1540 = .text:0x807E1540; // type:function size:0x12C +fn_807E1670 = .text:0x807E1670; // type:function size:0xE4 +fn_807E1760 = .text:0x807E1760; // type:function size:0x138 +fn_807E18A0 = .text:0x807E18A0; // type:function size:0xF0 +fn_807E1990 = .text:0x807E1990; // type:function size:0xEC +fn_807E1A80 = .text:0x807E1A80; // type:function size:0x10C +fn_807E1B90 = .text:0x807E1B90; // type:function size:0x178 +fn_807E1D10 = .text:0x807E1D10; // type:function size:0x110 +fn_807E1E20 = .text:0x807E1E20; // type:function size:0x110 +fn_807E1F30 = .text:0x807E1F30; // type:function size:0xD4 +fn_807E2010 = .text:0x807E2010; // type:function size:0x110 +fn_807E2120 = .text:0x807E2120; // type:function size:0xD4 +fn_807E2200 = .text:0x807E2200; // type:function size:0x110 +fn_807E2310 = .text:0x807E2310; // type:function size:0xD4 +fn_807E23F0 = .text:0x807E23F0; // type:function size:0x68 +fn_807E2460 = .text:0x807E2460; // type:function size:0x120 +fn_807E2580 = .text:0x807E2580; // type:function size:0xE4 +fn_807E2670 = .text:0x807E2670; // type:function size:0x108 +fn_807E2780 = .text:0x807E2780; // type:function size:0x130 +fn_807E28B0 = .text:0x807E28B0; // type:function size:0xF4 +fn_807E29B0 = .text:0x807E29B0; // type:function size:0xDC +fn_807E2A90 = .text:0x807E2A90; // type:function size:0x10 +fn_807E2AA0 = .text:0x807E2AA0; // type:function size:0x8 +fn_807E2AB0 = .text:0x807E2AB0; // type:function size:0x48 +fn_807E2B00 = .text:0x807E2B00; // type:function size:0xB0 +fn_807E2BB0 = .text:0x807E2BB0; // type:function size:0x10 +fn_807E2BC0 = .text:0x807E2BC0; // type:function size:0x8 +fn_807E2BD0 = .text:0x807E2BD0; // type:function size:0x12C +fn_807E2D00 = .text:0x807E2D00; // type:function size:0x104 +fn_807E2E10 = .text:0x807E2E10; // type:function size:0x198 +fn_807E2FB0 = .text:0x807E2FB0; // type:function size:0x60 +fn_807E3010 = .text:0x807E3010; // type:function size:0x1E8 +fn_807E3200 = .text:0x807E3200; // type:function size:0x70 +fn_807E3270 = .text:0x807E3270; // type:function size:0x2E4 +fn_807E3560 = .text:0x807E3560; // type:function size:0xE0 +fn_807E3640 = .text:0x807E3640; // type:function size:0x68 +fn_807E36B0 = .text:0x807E36B0; // type:function size:0x68 +fn_807E3720 = .text:0x807E3720; // type:function size:0xCC +fn_807E37F0 = .text:0x807E37F0; // type:function size:0x4 +fn_807E3800 = .text:0x807E3800; // type:function size:0x4C +fn_807E3850 = .text:0x807E3850; // type:function size:0x10 +fn_807E3860 = .text:0x807E3860; // type:function size:0x88 +fn_807E38F0 = .text:0x807E38F0; // type:function size:0x14 +fn_807E3910 = .text:0x807E3910; // type:function size:0x1C +fn_807E3930 = .text:0x807E3930; // type:function size:0x278 +fn_807E3BB0 = .text:0x807E3BB0; // type:function size:0x178 +fn_807E3D30 = .text:0x807E3D30; // type:function size:0x108 +fn_807E3E40 = .text:0x807E3E40; // type:function size:0xEC +fn_807E3F30 = .text:0x807E3F30; // type:function size:0x54 +fn_807E3F90 = .text:0x807E3F90; // type:function size:0x58 +fn_807E3FF0 = .text:0x807E3FF0; // type:function size:0x54 +fn_807E4050 = .text:0x807E4050; // type:function size:0x58 +fn_807E40B0 = .text:0x807E40B0; // type:function size:0x20 +fn_807E40D0 = .text:0x807E40D0; // type:function size:0x4 +fn_807E40E0 = .text:0x807E40E0; // type:function size:0x58 +fn_807E4140 = .text:0x807E4140; // type:function size:0x54 +fn_807E41A0 = .text:0x807E41A0; // type:function size:0x58 +fn_807E4200 = .text:0x807E4200; // type:function size:0x54 +fn_807E4260 = .text:0x807E4260; // type:function size:0x58 +fn_807E42C0 = .text:0x807E42C0; // type:function size:0x7C +fn_807E4340 = .text:0x807E4340; // type:function size:0xC0 +fn_807E4400 = .text:0x807E4400; // type:function size:0xB0 +fn_807E44B0 = .text:0x807E44B0; // type:function size:0xB0 +fn_807E4560 = .text:0x807E4560; // type:function size:0xC0 +fn_807E4620 = .text:0x807E4620; // type:function size:0xC0 +fn_807E46E0 = .text:0x807E46E0; // type:function size:0xC0 +fn_807E47A0 = .text:0x807E47A0; // type:function size:0xB8 +fn_807E4860 = .text:0x807E4860; // type:function size:0x218 +fn_807E4A80 = .text:0x807E4A80; // type:function size:0x4C +fn_807E4AD0 = .text:0x807E4AD0; // type:function size:0x3B0 +fn_807E4E80 = .text:0x807E4E80; // type:function size:0x270 +fn_807E50F0 = .text:0x807E50F0; // type:function size:0xD64 +fn_807E5E60 = .text:0x807E5E60; // type:function size:0xC +fn_807E5E70 = .text:0x807E5E70; // type:function size:0x324 +fn_807E61A0 = .text:0x807E61A0; // type:function size:0x6A8 +fn_807E6850 = .text:0x807E6850; // type:function size:0x38 +fn_807E6890 = .text:0x807E6890; // type:function size:0xA4 +fn_807E6940 = .text:0x807E6940; // type:function size:0x4C +fn_807E6990 = .text:0x807E6990; // type:function size:0x6C +fn_807E6A00 = .text:0x807E6A00; // type:function size:0x18 +fn_807E6A20 = .text:0x807E6A20; // type:function size:0x44 +fn_807E6A70 = .text:0x807E6A70; // type:function size:0x44 +fn_807E6AC0 = .text:0x807E6AC0; // type:function size:0xFC +fn_807E6BC0 = .text:0x807E6BC0; // type:function size:0x38 +fn_807E6C00 = .text:0x807E6C00; // type:function size:0xA8 +fn_807E6CB0 = .text:0x807E6CB0; // type:function size:0x18 +fn_807E6CD0 = .text:0x807E6CD0; // type:function size:0x1A0 +fn_807E6E70 = .text:0x807E6E70; // type:function size:0x194 +fn_807E7010 = .text:0x807E7010; // type:function size:0x4 +fn_807E7020 = .text:0x807E7020; // type:function size:0x190 +fn_807E71B0 = .text:0x807E71B0; // type:function size:0x1D8 +fn_807E7390 = .text:0x807E7390; // type:function size:0xAC +fn_807E7440 = .text:0x807E7440; // type:function size:0x1C +fn_807E7460 = .text:0x807E7460; // type:function size:0x18 +fn_807E7480 = .text:0x807E7480; // type:function size:0xA4 +fn_807E7530 = .text:0x807E7530; // type:function size:0xC +fn_807E7540 = .text:0x807E7540; // type:function size:0xC +fn_807E7550 = .text:0x807E7550; // type:function size:0x84 +fn_807E75E0 = .text:0x807E75E0; // type:function size:0x88 +fn_807E7670 = .text:0x807E7670; // type:function size:0x1C +fn_807E7690 = .text:0x807E7690; // type:function size:0x348 +fn_807E79E0 = .text:0x807E79E0; // type:function size:0x9E4 +fn_807E83D0 = .text:0x807E83D0; // type:function size:0x118 +fn_807E84F0 = .text:0x807E84F0; // type:function size:0x88 +fn_807E8580 = .text:0x807E8580; // type:function size:0x1B8 +fn_807E8740 = .text:0x807E8740; // type:function size:0x7C +fn_807E87C0 = .text:0x807E87C0; // type:function size:0xDC +fn_807E88A0 = .text:0x807E88A0; // type:function size:0x264 +fn_807E8B10 = .text:0x807E8B10; // type:function size:0x708 +fn_807E9220 = .text:0x807E9220; // type:function size:0x44 +fn_807E9270 = .text:0x807E9270; // type:function size:0x18 +fn_807E9290 = .text:0x807E9290; // type:function size:0xC +fn_807E92A0 = .text:0x807E92A0; // type:function size:0xC +fn_807E92B0 = .text:0x807E92B0; // type:function size:0xC +fn_807E92C0 = .text:0x807E92C0; // type:function size:0x18 +fn_807E92E0 = .text:0x807E92E0; // type:function size:0x1C +fn_807E9300 = .text:0x807E9300; // type:function size:0x18 +fn_807E9320 = .text:0x807E9320; // type:function size:0xB40 +fn_807E9E60 = .text:0x807E9E60; // type:function size:0x960 +fn_807EA7C0 = .text:0x807EA7C0; // type:function size:0x58 +fn_807EA820 = .text:0x807EA820; // type:function size:0x128 +fn_807EA950 = .text:0x807EA950; // type:function size:0x2C +fn_807EA980 = .text:0x807EA980; // type:function size:0xB4 +fn_807EAA40 = .text:0x807EAA40; // type:function size:0x28 +fn_807EAA70 = .text:0x807EAA70; // type:function size:0x2DC +fn_807EAD50 = .text:0x807EAD50; // type:function size:0x374 +fn_807EB0D0 = .text:0x807EB0D0; // type:function size:0x6C +fn_807EB140 = .text:0x807EB140; // type:function size:0x18 +fn_807EB160 = .text:0x807EB160; // type:function size:0x11C +fn_807EB280 = .text:0x807EB280; // type:function size:0x4 +uhf_ker_get_memory_block = .text:0x807EB290; // type:function size:0x20 +uhf_ker_release_memory_block = .text:0x807EB2B0; // type:function size:0x3C +uhf_ker_check_cacheable = .text:0x807EB2F0; // type:function size:0x8 +uhf_ker_send_message = .text:0x807EB300; // type:function size:0x84 +uhf_ker_create_sem = .text:0x807EB390; // type:function size:0x198 +uhf_ker_delete_sem = .text:0x807EB530; // type:function size:0x100 +uhf_ker_get_sem = .text:0x807EB630; // type:function size:0x60 +fn_807EB690 = .text:0x807EB690; // type:function size:0x114 +fn_807EB7B0 = .text:0x807EB7B0; // type:function size:0xA0 +ISD_GetDeviceStatus = .text:0x807EB850; // type:function size:0xDC +fn_807EB930 = .text:0x807EB930; // type:function size:0x1C0 +fn_807EBAF0 = .text:0x807EBAF0; // type:function size:0x1C0 +ISD_ResetDevice = .text:0x807EBCB0; // type:function size:0xD8 +ISD_ReadBlock = .text:0x807EBD90; // type:function size:0xC +ISD_WriteBlock = .text:0x807EBDA0; // type:function size:0xC +ISD_ReadMultiBlock = .text:0x807EBDB0; // type:function size:0xC +ISD_WriteMultiBlock = .text:0x807EBDC0; // type:function size:0xC +fn_807EBDD0 = .text:0x807EBDD0; // type:function size:0x268 +fn_807EC040 = .text:0x807EC040; // type:function size:0x268 +ISD_MountCard = .text:0x807EC2B0; // type:function size:0xD4 +ISD_UnmountCard = .text:0x807EC390; // type:function size:0x40 +ISD_InitCard = .text:0x807EC3D0; // type:function size:0x174 +ISD_ReadCardRegister = .text:0x807EC550; // type:function size:0x2EC +fn_807EC840 = .text:0x807EC840; // type:function size:0x17C +ISD_GetCardSize = .text:0x807EC9C0; // type:function size:0x150 +ISD_RegisterDeviceIntrHandler = .text:0x807ECB10; // type:function size:0xA8 +ISD_UnregisterDeviceIntrHandler = .text:0x807ECBC0; // type:function size:0x7C +fn_807ECC40 = .text:0x807ECC40; // type:function size:0x54 +fn_807ECCA0 = .text:0x807ECCA0; // type:function size:0x18 +fn_807ECCC0 = .text:0x807ECCC0; // type:function size:0x50 +fn_807ECD10 = .text:0x807ECD10; // type:function size:0x50 +fn_807ECD60 = .text:0x807ECD60; // type:function size:0x68 +fn_807ECDD0 = .text:0x807ECDD0; // type:function size:0x48 +fn_807ECE20 = .text:0x807ECE20; // type:function size:0x80 +fn_807ECEA0 = .text:0x807ECEA0; // type:function size:0x134 +fn_807ECFE0 = .text:0x807ECFE0; // type:function size:0x200 +fn_807ED1E0 = .text:0x807ED1E0; // type:function size:0x2A8 +fn_807ED490 = .text:0x807ED490; // type:function size:0xFC +fn_807ED590 = .text:0x807ED590; // type:function size:0x194 +fn_807ED730 = .text:0x807ED730; // type:function size:0x4 +fn_807ED740 = .text:0x807ED740; // type:function size:0x34 +fn_807ED780 = .text:0x807ED780; // type:function size:0x6C +fn_807ED7F0 = .text:0x807ED7F0; // type:function size:0x120 +fn_807ED910 = .text:0x807ED910; // type:function size:0x168 +fn_807EDA80 = .text:0x807EDA80; // type:function size:0x154 +fn_807EDBE0 = .text:0x807EDBE0; // type:function size:0x12C +fn_807EDD10 = .text:0x807EDD10; // type:function size:0x24 +fn_807EDD40 = .text:0x807EDD40; // type:function size:0x20 +fn_807EDD60 = .text:0x807EDD60; // type:function size:0xBC +fn_807EDE20 = .text:0x807EDE20; // type:function size:0x4 +fn_807EDE30 = .text:0x807EDE30; // type:function size:0x1C +fn_807EDE50 = .text:0x807EDE50; // type:function size:0x9C +fn_807EDEF0 = .text:0x807EDEF0; // type:function size:0xF0 +fn_807EDFE0 = .text:0x807EDFE0; // type:function size:0xBC +fn_807EE0A0 = .text:0x807EE0A0; // type:function size:0xC4 +fn_807EE170 = .text:0x807EE170; // type:function size:0xCC +fn_807EE240 = .text:0x807EE240; // type:function size:0xD4 +fn_807EE320 = .text:0x807EE320; // type:function size:0x100 +fn_807EE420 = .text:0x807EE420; // type:function size:0x58 +fn_807EE480 = .text:0x807EE480; // type:function size:0x58 +fn_807EE4E0 = .text:0x807EE4E0; // type:function size:0xA4 +fn_807EE590 = .text:0x807EE590; // type:function size:0x228 +fn_807EE7C0 = .text:0x807EE7C0; // type:function size:0x50 +fn_807EE810 = .text:0x807EE810; // type:function size:0x68 +fn_807EE880 = .text:0x807EE880; // type:function size:0x68 +fn_807EE8F0 = .text:0x807EE8F0; // type:function size:0x70 +fn_807EE960 = .text:0x807EE960; // type:function size:0x138 +fn_807EEAA0 = .text:0x807EEAA0; // type:function size:0x70 +fn_807EEB10 = .text:0x807EEB10; // type:function size:0xEC +fn_807EEC00 = .text:0x807EEC00; // type:function size:0x3C +fn_807EEC40 = .text:0x807EEC40; // type:function size:0x68 +fn_807EECB0 = .text:0x807EECB0; // type:function size:0x28 +fn_807EECE0 = .text:0x807EECE0; // type:function size:0x120 +fn_807EEE00 = .text:0x807EEE00; // type:function size:0x28 +fn_807EEE30 = .text:0x807EEE30; // type:function size:0x150 +fn_807EEF80 = .text:0x807EEF80; // type:function size:0x48 +fn_807EEFD0 = .text:0x807EEFD0; // type:function size:0x260 +fn_807EF230 = .text:0x807EF230; // type:function size:0xF8 +fn_807EF330 = .text:0x807EF330; // type:function size:0xF4 +fn_807EF430 = .text:0x807EF430; // type:function size:0xC8 +fn_807EF500 = .text:0x807EF500; // type:function size:0x2CC +fn_807EF7D0 = .text:0x807EF7D0; // type:function size:0x190 +fn_807EF960 = .text:0x807EF960; // type:function size:0xC +fn_807EF970 = .text:0x807EF970; // type:function size:0x80 +fn_807EF9F0 = .text:0x807EF9F0; // type:function size:0x9C +fn_807EFA90 = .text:0x807EFA90; // type:function size:0x84 +fn_807EFB20 = .text:0x807EFB20; // type:function size:0x40 +fn_807EFB60 = .text:0x807EFB60; // type:function size:0x40 +fn_807EFBA0 = .text:0x807EFBA0; // type:function size:0x4C +fn_807EFBF0 = .text:0x807EFBF0; // type:function size:0x50 +fn_807EFC40 = .text:0x807EFC40; // type:function size:0x64 +fn_807EFCB0 = .text:0x807EFCB0; // type:function size:0x6C +_ctors = .ctors:0x807EFD20; // type:label scope:global data:4byte +__init_cpp_exceptions_reference = .ctors:0x807EFD20; // type:object size:0x4 scope:global +_dtors = .dtors:0x807F0060; // type:label scope:global data:4byte +__destroy_global_chain_reference = .dtors:0x807F0060; // type:object size:0x4 scope:global +__fini_cpp_exceptions_reference = .dtors:0x807F0064; // type:object size:0x4 scope:global +lbl_807F0090 = .rodata:0x807F0090; // type:object size:0x4 +lbl_807F0094 = .rodata:0x807F0094; // type:object size:0x4 +lbl_807F0098 = .rodata:0x807F0098; // type:object size:0x1C +@F_00000000 = .rodata:0x807F00B4; // type:object size:0x4 data:float +@D_0000304300000000 = .rodata:0x807F00B8; // type:object size:0x8 data:double +@D_0000304300000080 = .rodata:0x807F00C0; // type:object size:0x8 data:double +@F_0000803f = .rodata:0x807F00C8; // type:object size:0x4 data:float +lbl_807F00CC = .rodata:0x807F00CC; // type:object size:0x4 data:float +@F_00007a44 = .rodata:0x807F00D0; // type:object size:0x4 data:float +lbl_807F00D4 = .rodata:0x807F00D4; // type:object size:0x4 data:float +hiddenKeys = .rodata:0x807F00D8; // type:object size:0x180 +lbl_807F0258 = .rodata:0x807F0258; // type:object size:0x20 data:4byte +@F_0000003f = .rodata:0x807F0278; // type:object size:0x4 data:float +@D_0000000000000000 = .rodata:0x807F0280; // type:object size:0x8 data:double +@D_0000f0bf00000000 = .rodata:0x807F0288; // type:object size:0x8 data:double +@F_0000c842 = .rodata:0x807F0290; // type:object size:0x8 data:float +@F_00008047 = .rodata:0x807F0298; // type:object size:0x8 data:float +lbl_807F02A0 = .rodata:0x807F02A0; // type:object size:0x4 data:float +lbl_807F02A4 = .rodata:0x807F02A4; // type:object size:0x4 data:float +@F_00007f43 = .rodata:0x807F02A8; // type:object size:0x8 data:float +lbl_807F02B0 = .rodata:0x807F02B0; // type:object size:0x8 data:string +lbl_807F02B8 = .rodata:0x807F02B8; // type:object size:0x8 +lbl_807F02C0 = .rodata:0x807F02C0; // type:object size:0x8 data:float +lbl_807F02C8 = .rodata:0x807F02C8; // type:object size:0x8 +@F_000080bf = .rodata:0x807F02D0; // type:object size:0x8 data:float +lbl_807F02D8 = .rodata:0x807F02D8; // type:object size:0x8 data:float +@F_cdcccc3d = .rodata:0x807F02E0; // type:object size:0x8 data:float +@F_00000040 = .rodata:0x807F02E8; // type:object size:0x8 data:float +@F_00008040 = .rodata:0x807F02F0; // type:object size:0x4 data:float +@F_db0f4940 = .rodata:0x807F02F4; // type:object size:0x4 data:float +lbl_807F02F8 = .rodata:0x807F02F8; // type:object size:0x8 data:float +@F_000000c0 = .rodata:0x807F0300; // type:object size:0x4 data:float +@D_0000e03f00000000 = .rodata:0x807F0308; // type:object size:0x8 data:double +@D_0000f03f00000000 = .rodata:0x807F0310; // type:object size:0x8 data:double +lbl_807F0318 = .rodata:0x807F0318; // type:object size:0x8 data:double +lbl_807F0320 = .rodata:0x807F0320; // type:object size:0x8 data:float +@F_00401c46 = .rodata:0x807F0328; // type:object size:0x4 data:float +@D_b81ee53f1f85eb51 = .rodata:0x807F0330; // type:object size:0x8 data:double +@F_0000a040 = .rodata:0x807F0338; // type:object size:0x8 data:float +lbl_807F0340 = .rodata:0x807F0340; // type:object size:0x8 data:float +lbl_807F0348 = .rodata:0x807F0348; // type:object size:0x10 data:4byte +@F_00007041 = .rodata:0x807F0358; // type:object size:0x4 data:float +lbl_807F035C = .rodata:0x807F035C; // type:object size:0x4 data:float +lbl_807F0360 = .rodata:0x807F0360; // type:object size:0x8 data:float +@F_00004040 = .rodata:0x807F0368; // type:object size:0x4 data:float +@F_0000c0c2 = .rodata:0x807F036C; // type:object size:0x4 data:float +lbl_807F0370 = .rodata:0x807F0370; // type:object size:0x4 data:float +lbl_807F0374 = .rodata:0x807F0374; // type:object size:0x4 data:float +lbl_807F0378 = .rodata:0x807F0378; // type:object size:0x4 data:float +lbl_807F037C = .rodata:0x807F037C; // type:object size:0x4 data:float +@F_00803b45 = .rodata:0x807F0380; // type:object size:0x4 data:float +lbl_807F0384 = .rodata:0x807F0384; // type:object size:0x4 data:float +lbl_807F0388 = .rodata:0x807F0388; // type:object size:0xC data:4byte +lbl_807F0394 = .rodata:0x807F0394; // type:object size:0x4 data:float +lbl_807F0398 = .rodata:0x807F0398; // type:object size:0x4 data:float +lbl_807F039C = .rodata:0x807F039C; // type:object size:0x4 data:float +lbl_807F03A0 = .rodata:0x807F03A0; // type:object size:0x4 data:float +lbl_807F03A4 = .rodata:0x807F03A4; // type:object size:0x4 data:float +@F_00001643 = .rodata:0x807F03A8; // type:object size:0x4 data:float +@F_00002041 = .rodata:0x807F03AC; // type:object size:0x4 data:float +lbl_807F03B0 = .rodata:0x807F03B0; // type:object size:0x8 data:float +lbl_807F03B8 = .rodata:0x807F03B8; // type:object size:0x4 data:float +lbl_807F03BC = .rodata:0x807F03BC; // type:object size:0x4 data:float +lbl_807F03C0 = .rodata:0x807F03C0; // type:object size:0x4 data:float +lbl_807F03C4 = .rodata:0x807F03C4; // type:object size:0x4 data:float +@D_3333eb3f33333333 = .rodata:0x807F03C8; // type:object size:0x8 data:double +@D_6666ee3f66666666 = .rodata:0x807F03D0; // type:object size:0x8 data:double +lbl_807F03D8 = .rodata:0x807F03D8; // type:object size:0x8 data:double +lbl_807F03E0 = .rodata:0x807F03E0; // type:object size:0x8 data:double +lbl_807F03E8 = .rodata:0x807F03E8; // type:object size:0x8 data:double +lbl_807F03F0 = .rodata:0x807F03F0; // type:object size:0x4 data:float +lbl_807F03F4 = .rodata:0x807F03F4; // type:object size:0x4 data:float +@F_3333733f = .rodata:0x807F03F8; // type:object size:0x8 data:float +lbl_807F0400 = .rodata:0x807F0400; // type:object size:0x78 data:4byte +lbl_807F0478 = .rodata:0x807F0478; // type:object size:0x4 data:float +lbl_807F047C = .rodata:0x807F047C; // type:object size:0x4 data:float +@F_0060ea46 = .rodata:0x807F0480; // type:object size:0x8 data:float +lbl_807F0488 = .rodata:0x807F0488; // type:object size:0x8 data:float +lbl_807F0490 = .rodata:0x807F0490; // type:object size:0x4 data:float +lbl_807F0494 = .rodata:0x807F0494; // type:object size:0x4 data:float +lbl_807F0498 = .rodata:0x807F0498; // type:object size:0x4 data:float +lbl_807F049C = .rodata:0x807F049C; // type:object size:0x4 data:float +lbl_807F04A0 = .rodata:0x807F04A0; // type:object size:0x4 data:float +@F_0000f043 = .rodata:0x807F04A4; // type:object size:0x4 data:float +@F_00606a47 = .rodata:0x807F04A8; // type:object size:0x4 data:float +lbl_807F04AC = .rodata:0x807F04AC; // type:object size:0x4 data:float +lbl_807F04B0 = .rodata:0x807F04B0; // type:object size:0x8 data:float +@F_00008042 = .rodata:0x807F04B8; // type:object size:0x8 data:float +lbl_807F04C0 = .rodata:0x807F04C0; // type:object size:0x4 data:float +@F_db0fc93f = .rodata:0x807F04C4; // type:object size:0x4 data:float +lbl_807F04C8 = .rodata:0x807F04C8; // type:object size:0x4 data:float +lbl_807F04D0 = .rodata:0x807F04D0; // type:object size:0x8 data:double +lbl_807F04D8 = .rodata:0x807F04D8; // type:object size:0x8 data:float +lbl_807F04E0 = .rodata:0x807F04E0; // type:object size:0x8 data:byte +lbl_807F04E8 = .rodata:0x807F04E8; // type:object size:0x8 data:float +lbl_807F04F0 = .rodata:0x807F04F0; // type:object size:0x8 data:float +lbl_807F04F8 = .rodata:0x807F04F8; // type:object size:0x4 data:float +lbl_807F04FC = .rodata:0x807F04FC; // type:object size:0x4 data:float +lbl_807F0500 = .rodata:0x807F0500; // type:object size:0x4 data:float +lbl_807F0504 = .rodata:0x807F0504; // type:object size:0x4 data:float +lbl_807F0508 = .rodata:0x807F0508; // type:object size:0x8 data:float +lbl_807F0510 = .rodata:0x807F0510; // type:object size:0x4 data:float +lbl_807F0514 = .rodata:0x807F0514; // type:object size:0x4 data:float +lbl_807F0518 = .rodata:0x807F0518; // type:object size:0x8 data:float +lbl_807F0520 = .rodata:0x807F0520; // type:object size:0x4 data:float +lbl_807F0524 = .rodata:0x807F0524; // type:object size:0x4 data:float +lbl_807F0528 = .rodata:0x807F0528; // type:object size:0x4 data:float +lbl_807F052C = .rodata:0x807F052C; // type:object size:0x4 data:float +lbl_807F0530 = .rodata:0x807F0530; // type:object size:0x4 data:float +lbl_807F0534 = .rodata:0x807F0534; // type:object size:0x4 data:float +lbl_807F0538 = .rodata:0x807F0538; // type:object size:0x4 data:float +lbl_807F053C = .rodata:0x807F053C; // type:object size:0x4 data:float +lbl_807F0540 = .rodata:0x807F0540; // type:object size:0x4 data:float +lbl_807F0544 = .rodata:0x807F0544; // type:object size:0x4 data:float +lbl_807F0548 = .rodata:0x807F0548; // type:object size:0x8 +lbl_807F0550 = .rodata:0x807F0550; // type:object size:0x4 data:float +lbl_807F0554 = .rodata:0x807F0554; // type:object size:0x4 data:float +lbl_807F0558 = .rodata:0x807F0558; // type:object size:0x4 data:float +@F_acc52737 = .rodata:0x807F055C; // type:object size:0x4 data:float +@F_cdcc4c3e = .rodata:0x807F0560; // type:object size:0x4 data:float +lbl_807F0564 = .rodata:0x807F0564; // type:object size:0x4 data:float +lbl_807F0568 = .rodata:0x807F0568; // type:object size:0x4 data:float +lbl_807F056C = .rodata:0x807F056C; // type:object size:0x4 data:float +lbl_807F0570 = .rodata:0x807F0570; // type:object size:0x4 data:float +lbl_807F0574 = .rodata:0x807F0574; // type:object size:0x4 data:float +lbl_807F0578 = .rodata:0x807F0578; // type:object size:0x4 data:float +lbl_807F057C = .rodata:0x807F057C; // type:object size:0x4 data:float +lbl_807F0580 = .rodata:0x807F0580; // type:object size:0x8 data:float +lbl_807F0588 = .rodata:0x807F0588; // type:object size:0x8 data:4byte +lbl_807F0590 = .rodata:0x807F0590; // type:object size:0x20 data:4byte +lbl_807F05B0 = .rodata:0x807F05B0; // type:object size:0x100 data:4byte +lbl_807F06B0 = .rodata:0x807F06B0; // type:object size:0x4 data:float +lbl_807F06B4 = .rodata:0x807F06B4; // type:object size:0x4 data:float +lbl_807F06B8 = .rodata:0x807F06B8; // type:object size:0x4 data:float +lbl_807F06BC = .rodata:0x807F06BC; // type:object size:0x4 data:float +lbl_807F06C0 = .rodata:0x807F06C0; // type:object size:0x8 data:double +lbl_807F06C8 = .rodata:0x807F06C8; // type:object size:0x8 data:double +lbl_807F06D0 = .rodata:0x807F06D0; // type:object size:0x8 data:double +lbl_807F06D8 = .rodata:0x807F06D8; // type:object size:0x8 data:double +lbl_807F06E0 = .rodata:0x807F06E0; // type:object size:0x8 data:double +@D_9999a93f9a999999 = .rodata:0x807F06E8; // type:object size:0x8 data:double +@D_9999b93f9a999999 = .rodata:0x807F06F0; // type:object size:0x8 data:double +lbl_807F06F8 = .rodata:0x807F06F8; // type:object size:0x4 data:float +lbl_807F06FC = .rodata:0x807F06FC; // type:object size:0x4 data:float +lbl_807F0700 = .rodata:0x807F0700; // type:object size:0x8 data:double +lbl_807F0708 = .rodata:0x807F0708; // type:object size:0x4 data:float +lbl_807F070C = .rodata:0x807F070C; // type:object size:0x4 data:float +lbl_807F0710 = .rodata:0x807F0710; // type:object size:0x4 data:float +lbl_807F0714 = .rodata:0x807F0714; // type:object size:0x4 data:float +lbl_807F0718 = .rodata:0x807F0718; // type:object size:0x4 data:float +lbl_807F071C = .rodata:0x807F071C; // type:object size:0x4 data:float +lbl_807F0720 = .rodata:0x807F0720; // type:object size:0x8 data:float +@F_35fa8e3c = .rodata:0x807F0728; // type:object size:0x4 data:float +lbl_807F072C = .rodata:0x807F072C; // type:object size:0x4 data:float +@F_cdcc4cbd = .rodata:0x807F0730; // type:object size:0x4 data:float +@F_cdcc4c3d = .rodata:0x807F0734; // type:object size:0x4 data:float +lbl_807F0738 = .rodata:0x807F0738; // type:object size:0x8 data:4byte +lbl_807F0740 = .rodata:0x807F0740; // type:object size:0x10 data:4byte +lbl_807F0750 = .rodata:0x807F0750; // type:object size:0x8 data:float +@F_0080bb45 = .rodata:0x807F0758; // type:object size:0x8 data:float +lbl_807F0760 = .rodata:0x807F0760; // type:object size:0x4 data:float +@F_00000041 = .rodata:0x807F0764; // type:object size:0x4 data:float +lbl_807F0768 = .rodata:0x807F0768; // type:object size:0x4 data:float +lbl_807F076C = .rodata:0x807F076C; // type:object size:0x4 data:float +lbl_807F0770 = .rodata:0x807F0770; // type:object size:0x4 data:float +lbl_807F0774 = .rodata:0x807F0774; // type:object size:0x4 data:float +lbl_807F0778 = .rodata:0x807F0778; // type:object size:0x8 data:float +lbl_807F0780 = .rodata:0x807F0780; // type:object size:0x4 data:float +lbl_807F0784 = .rodata:0x807F0784; // type:object size:0x4 data:float +lbl_807F0788 = .rodata:0x807F0788; // type:object size:0x4 data:float +lbl_807F078C = .rodata:0x807F078C; // type:object size:0x4 data:float +lbl_807F0790 = .rodata:0x807F0790; // type:object size:0x4 data:float +lbl_807F0794 = .rodata:0x807F0794; // type:object size:0x4 data:float +lbl_807F0798 = .rodata:0x807F0798; // type:object size:0x4 data:float +lbl_807F079C = .rodata:0x807F079C; // type:object size:0x4 data:float +lbl_807F07A0 = .rodata:0x807F07A0; // type:object size:0x4 data:float +lbl_807F07A4 = .rodata:0x807F07A4; // type:object size:0x4 data:float +lbl_807F07A8 = .rodata:0x807F07A8; // type:object size:0x4 data:float +lbl_807F07AC = .rodata:0x807F07AC; // type:object size:0x4 data:float +lbl_807F07B0 = .rodata:0x807F07B0; // type:object size:0x4 data:float +lbl_807F07B4 = .rodata:0x807F07B4; // type:object size:0x4 data:float +lbl_807F07B8 = .rodata:0x807F07B8; // type:object size:0x4 data:float +lbl_807F07BC = .rodata:0x807F07BC; // type:object size:0x4 data:float +lbl_807F07C0 = .rodata:0x807F07C0; // type:object size:0x4 data:float +lbl_807F07C4 = .rodata:0x807F07C4; // type:object size:0x4 data:float +lbl_807F07C8 = .rodata:0x807F07C8; // type:object size:0x8 +lbl_807F07D0 = .rodata:0x807F07D0; // type:object size:0x8 data:float +lbl_807F07D8 = .rodata:0x807F07D8; // type:object size:0x8 data:float +lbl_807F07E0 = .rodata:0x807F07E0; // type:object size:0x8 data:float +lbl_807F07E8 = .rodata:0x807F07E8; // type:object size:0x8 data:float +lbl_807F07F0 = .rodata:0x807F07F0; // type:object size:0x4 data:float +lbl_807F07F4 = .rodata:0x807F07F4; // type:object size:0x4 data:float +lbl_807F07F8 = .rodata:0x807F07F8; // type:object size:0x150 data:4byte +lbl_807F0948 = .rodata:0x807F0948; // type:object size:0x8 data:float +lbl_807F0950 = .rodata:0x807F0950; // type:object size:0x4 data:float +lbl_807F0954 = .rodata:0x807F0954; // type:object size:0x4 data:float +@F_bd378635 = .rodata:0x807F0958; // type:object size:0x8 data:float +@F_00010038 = .rodata:0x807F0960; // type:object size:0x4 data:float +@F_00feffc6 = .rodata:0x807F0964; // type:object size:0x4 data:float +@F_00feff46 = .rodata:0x807F0968; // type:object size:0x4 data:float +@F_feff7f3f = .rodata:0x807F096C; // type:object size:0x4 data:float +@F_db0fc9bf = .rodata:0x807F0970; // type:object size:0x4 data:float +@F_95bfd633 = .rodata:0x807F0974; // type:object size:0x4 data:float +@F_db0fc93c = .rodata:0x807F0978; // type:object size:0x4 data:float +@F_83f92242 = .rodata:0x807F097C; // type:object size:0x4 data:float +@F_b0feff3e = .rodata:0x807F0980; // type:object size:0x4 data:float +@F_83f922c2 = .rodata:0x807F0984; // type:object size:0x4 data:float +@F_e02e6542 = .rodata:0x807F0988; // type:object size:0x8 data:float +lbl_807F0990 = .rodata:0x807F0990; // type:object size:0x8 +lbl_807F0998 = .rodata:0x807F0998; // type:object size:0x4 data:4byte +lbl_807F099C = .rodata:0x807F099C; // type:object size:0x4 data:float +lbl_807F09A0 = .rodata:0x807F09A0; // type:object size:0x8 data:float +lbl_807F09A8 = .rodata:0x807F09A8; // type:object size:0x4 data:float +lbl_807F09AC = .rodata:0x807F09AC; // type:object size:0x4 data:float +lbl_807F09B0 = .rodata:0x807F09B0; // type:object size:0x8 data:float +lbl_807F09B8 = .rodata:0x807F09B8; // type:object size:0x8 +lbl_807F09C0 = .rodata:0x807F09C0; // type:object size:0x10 data:4byte +lbl_807F09D0 = .rodata:0x807F09D0; // type:object size:0x10 data:4byte +lbl_807F09E0 = .rodata:0x807F09E0; // type:object size:0x4 data:4byte +lbl_807F09E4 = .rodata:0x807F09E4; // type:object size:0x4 data:4byte +lbl_807F09E8 = .rodata:0x807F09E8; // type:object size:0x8 data:float +lbl_807F09F0 = .rodata:0x807F09F0; // type:object size:0x4 data:float +lbl_807F09F4 = .rodata:0x807F09F4; // type:object size:0x4 data:float +lbl_807F09F8 = .rodata:0x807F09F8; // type:object size:0x4 data:float +lbl_807F09FC = .rodata:0x807F09FC; // type:object size:0x4 data:float +lbl_807F0A00 = .rodata:0x807F0A00; // type:object size:0x4 data:float +lbl_807F0A04 = .rodata:0x807F0A04; // type:object size:0x4 data:float +lbl_807F0A08 = .rodata:0x807F0A08; // type:object size:0x4 data:float +lbl_807F0A0C = .rodata:0x807F0A0C; // type:object size:0x4 data:float +lbl_807F0A10 = .rodata:0x807F0A10; // type:object size:0x4 data:float +lbl_807F0A14 = .rodata:0x807F0A14; // type:object size:0x4 data:float +lbl_807F0A18 = .rodata:0x807F0A18; // type:object size:0x44 +lbl_807F0A5C = .rodata:0x807F0A5C; // type:object size:0x44 +lbl_807F0AA0 = .rodata:0x807F0AA0; // type:object size:0x40 +lbl_807F0AE0 = .rodata:0x807F0AE0; // type:object size:0x48 +lbl_807F0B28 = .rodata:0x807F0B28; // type:object size:0x38 +lbl_807F0B60 = .rodata:0x807F0B60; // type:object size:0x54 +lbl_807F0BB4 = .rodata:0x807F0BB4; // type:object size:0x54 +lbl_807F0C08 = .rodata:0x807F0C08; // type:object size:0x54 +lbl_807F0C5C = .rodata:0x807F0C5C; // type:object size:0x54 +lbl_807F0CB0 = .rodata:0x807F0CB0; // type:object size:0x54 +lbl_807F0D04 = .rodata:0x807F0D04; // type:object size:0x4 data:float +lbl_807F0D08 = .rodata:0x807F0D08; // type:object size:0x4 data:float +lbl_807F0D0C = .rodata:0x807F0D0C; // type:object size:0x4 data:float +lbl_807F0D10 = .rodata:0x807F0D10; // type:object size:0x4 data:float +lbl_807F0D14 = .rodata:0x807F0D14; // type:object size:0x4 data:float +lbl_807F0D18 = .rodata:0x807F0D18; // type:object size:0x4 data:float +lbl_807F0D1C = .rodata:0x807F0D1C; // type:object size:0x4 data:float +lbl_807F0D20 = .rodata:0x807F0D20; // type:object size:0x8 data:float +lbl_807F0D28 = .rodata:0x807F0D28; // type:object size:0x8 data:float +lbl_807F0D30 = .rodata:0x807F0D30; // type:object size:0x8 data:4byte +lbl_807F0D38 = .rodata:0x807F0D38; // type:object size:0x4 data:4byte +lbl_807F0D3C = .rodata:0x807F0D3C; // type:object size:0x4 data:4byte +lbl_807F0D40 = .rodata:0x807F0D40; // type:object size:0x4 data:float +@F_a4707d3f = .rodata:0x807F0D44; // type:object size:0x4 data:float +lbl_807F0D48 = .rodata:0x807F0D48; // type:object size:0x8 data:double +lbl_807F0D50 = .rodata:0x807F0D50; // type:object size:0x8 data:double +lbl_807F0D58 = .rodata:0x807F0D58; // type:object size:0x8 data:byte +lbl_807F0D60 = .rodata:0x807F0D60; // type:object size:0x1030 +lbl_807F1D90 = .rodata:0x807F1D90; // type:object size:0x8 data:4byte +lbl_807F1D98 = .rodata:0x807F1D98; // type:object size:0x8 data:float +lbl_807F1DA0 = .rodata:0x807F1DA0; // type:object size:0x10 data:4byte +lbl_807F1DB0 = .rodata:0x807F1DB0; // type:object size:0x8 data:float +lbl_807F1DB8 = .rodata:0x807F1DB8; // type:object size:0x8 data:float +lbl_807F1DC0 = .rodata:0x807F1DC0; // type:object size:0x10 data:4byte +@D_0000244000000000 = .rodata:0x807F1DD0; // type:object size:0x8 data:double +lbl_807F1DD8 = .rodata:0x807F1DD8; // type:object size:0x10 data:4byte +lbl_807F1DE8 = .rodata:0x807F1DE8; // type:object size:0x8 data:float +lbl_807F1DF0 = .rodata:0x807F1DF0; // type:object size:0x4 data:float +@F_0000003d = .rodata:0x807F1DF4; // type:object size:0x4 data:float +npos__6String = .rodata:0x807F1DF8; // type:object size:0x8 data:4byte +crc_table = .rodata:0x807F1E00; // type:object size:0x400 +configuration_table = .rodata:0x807F2200; // type:object size:0x78 +@LOCAL@deflateInit2___Fe@my_version = .rodata:0x807F2278; // type:object size:0x6 data:string +extra_lbits = .rodata:0x807F2280; // type:object size:0x74 +extra_dbits = .rodata:0x807F22F8; // type:object size:0x78 +extra_blbits = .rodata:0x807F2370; // type:object size:0x4C +bl_order = .rodata:0x807F23BC; // type:object size:0x13 data:byte +static_ltree = .rodata:0x807F23D0; // type:object size:0x480 +static_dtree = .rodata:0x807F2850; // type:object size:0x78 +_dist_code = .rodata:0x807F28C8; // type:object size:0x200 +_length_code = .rodata:0x807F2AC8; // type:object size:0x100 +base_length = .rodata:0x807F2BC8; // type:object size:0x74 +base_dist = .rodata:0x807F2C40; // type:object size:0x78 +z_errmsg = .rodata:0x807F2CB8; // type:object size:0x28 +@LOCAL@fixedtables__Fe@lenfix = .rodata:0x807F2CE0; // type:object size:0x800 +@LOCAL@fixedtables__Fe@distfix@0 = .rodata:0x807F34E0; // type:object size:0x80 +@LOCAL@inflate__Fe@order = .rodata:0x807F3560; // type:object size:0x26 +inflate_copyright = .rodata:0x807F3588; // type:object size:0x2F data:string +lbl_807F36B8 = .rodata:0x807F36B8; // type:object size:0x8 data:float +lbl_807F36C0 = .rodata:0x807F36C0; // type:object size:0x30 +lbl_807F36F0 = .rodata:0x807F36F0; // type:object size:0x10 data:4byte +lbl_807F3700 = .rodata:0x807F3700; // type:object size:0x18 data:4byte +lbl_807F3718 = .rodata:0x807F3718; // type:object size:0x8 data:double +lbl_807F3720 = .rodata:0x807F3720; // type:object size:0x8 data:float +lbl_807F3728 = .rodata:0x807F3728; // type:object size:0x4 data:float +@F_7d1d9026 = .rodata:0x807F372C; // type:object size:0x4 data:float +lbl_807F3730 = .rodata:0x807F3730; // type:object size:0x4 data:float +lbl_807F3734 = .rodata:0x807F3734; // type:object size:0x4 data:float +lbl_807F3738 = .rodata:0x807F3738; // type:object size:0x4 data:float +lbl_807F373C = .rodata:0x807F373C; // type:object size:0x4 data:float +@F_0000a0c0 = .rodata:0x807F3740; // type:object size:0x8 data:float +lbl_807F3748 = .rodata:0x807F3748; // type:object size:0x4 data:float +lbl_807F374C = .rodata:0x807F374C; // type:object size:0x4 data:float +lbl_807F3750 = .rodata:0x807F3750; // type:object size:0x38 data:4byte +lbl_807F3788 = .rodata:0x807F3788; // type:object size:0x38 data:4byte +lbl_807F37C0 = .rodata:0x807F37C0; // type:object size:0x120 data:4byte +lbl_807F38E0 = .rodata:0x807F38E0; // type:object size:0xC data:4byte +lbl_807F38EC = .rodata:0x807F38EC; // type:object size:0x14 data:4byte +lbl_807F3900 = .rodata:0x807F3900; // type:object size:0x18 data:4byte +lbl_807F3918 = .rodata:0x807F3918; // type:object size:0x8 data:float +lbl_807F3920 = .rodata:0x807F3920; // type:object size:0x18 +lbl_807F3938 = .rodata:0x807F3938; // type:object size:0x40 data:4byte +lbl_807F3978 = .rodata:0x807F3978; // type:object size:0x10 data:4byte +lbl_807F3988 = .rodata:0x807F3988; // type:object size:0x10 data:4byte +lbl_807F3998 = .rodata:0x807F3998; // type:object size:0x10 data:4byte +lbl_807F39A8 = .rodata:0x807F39A8; // type:object size:0x4 data:float +lbl_807F39AC = .rodata:0x807F39AC; // type:object size:0x4 data:float +lbl_807F39B0 = .rodata:0x807F39B0; // type:object size:0x4 data:float +lbl_807F39B4 = .rodata:0x807F39B4; // type:object size:0x4 data:float +lbl_807F39B8 = .rodata:0x807F39B8; // type:object size:0x4 data:float +lbl_807F39BC = .rodata:0x807F39BC; // type:object size:0x4 data:float +lbl_807F39C0 = .rodata:0x807F39C0; // type:object size:0x4 data:float +lbl_807F39C4 = .rodata:0x807F39C4; // type:object size:0x4 data:float +lbl_807F39C8 = .rodata:0x807F39C8; // type:object size:0x4 data:float +lbl_807F39CC = .rodata:0x807F39CC; // type:object size:0x4 data:float +lbl_807F39D0 = .rodata:0x807F39D0; // type:object size:0x4 data:float +lbl_807F39D4 = .rodata:0x807F39D4; // type:object size:0x4 data:float +lbl_807F39D8 = .rodata:0x807F39D8; // type:object size:0x4 data:float +lbl_807F39DC = .rodata:0x807F39DC; // type:object size:0x4 data:float +lbl_807F39E0 = .rodata:0x807F39E0; // type:object size:0x4 data:float +lbl_807F39E4 = .rodata:0x807F39E4; // type:object size:0x4 data:float +@F_cdcc0c40 = .rodata:0x807F39E8; // type:object size:0x8 data:float +lbl_807F39F0 = .rodata:0x807F39F0; // type:object size:0x4 data:float +lbl_807F39F4 = .rodata:0x807F39F4; // type:object size:0x4 data:float +lbl_807F39F8 = .rodata:0x807F39F8; // type:object size:0x8 data:float +@F_9a99593f = .rodata:0x807F3A00; // type:object size:0x4 data:float +lbl_807F3A04 = .rodata:0x807F3A04; // type:object size:0x4 data:float +lbl_807F3A08 = .rodata:0x807F3A08; // type:object size:0x8 data:float +lbl_807F3A10 = .rodata:0x807F3A10; // type:object size:0x8 data:float +lbl_807F3A18 = .rodata:0x807F3A18; // type:object size:0x8 data:float +lbl_807F3A20 = .rodata:0x807F3A20; // type:object size:0x8 data:float +lbl_807F3A28 = .rodata:0x807F3A28; // type:object size:0x4 data:float +lbl_807F3A2C = .rodata:0x807F3A2C; // type:object size:0x4 data:float +lbl_807F3A30 = .rodata:0x807F3A30; // type:object size:0x8 data:float +lbl_807F3A38 = .rodata:0x807F3A38; // type:object size:0x8 data:float +lbl_807F3A40 = .rodata:0x807F3A40; // type:object size:0x4 data:float +lbl_807F3A48 = .rodata:0x807F3A48; // type:object size:0x8 data:double +lbl_807F3A50 = .rodata:0x807F3A50; // type:object size:0x4 data:float +lbl_807F3A54 = .rodata:0x807F3A54; // type:object size:0x4 data:float +lbl_807F3A58 = .rodata:0x807F3A58; // type:object size:0x4 data:float +lbl_807F3A5C = .rodata:0x807F3A5C; // type:object size:0x4 data:float +lbl_807F3A60 = .rodata:0x807F3A60; // type:object size:0x8 data:float +lbl_807F3A68 = .rodata:0x807F3A68; // type:object size:0x4 data:float +lbl_807F3A6C = .rodata:0x807F3A6C; // type:object size:0x4 +lbl_807F3A70 = .rodata:0x807F3A70; // type:object size:0x4 data:float +lbl_807F3A74 = .rodata:0x807F3A74; // type:object size:0x4 data:float +lbl_807F3A78 = .rodata:0x807F3A78; // type:object size:0x18 data:4byte +lbl_807F3A90 = .rodata:0x807F3A90; // type:object size:0x4 data:float +lbl_807F3A94 = .rodata:0x807F3A94; // type:object size:0x4 data:float +lbl_807F3A98 = .rodata:0x807F3A98; // type:object size:0x4 data:float +lbl_807F3A9C = .rodata:0x807F3A9C; // type:object size:0x4 data:float +lbl_807F3AA0 = .rodata:0x807F3AA0; // type:object size:0x4 data:float +lbl_807F3AA4 = .rodata:0x807F3AA4; // type:object size:0x4 data:float +lbl_807F3AA8 = .rodata:0x807F3AA8; // type:object size:0x4 data:float +lbl_807F3AAC = .rodata:0x807F3AAC; // type:object size:0x4 data:float +lbl_807F3AB0 = .rodata:0x807F3AB0; // type:object size:0x8 data:float +lbl_807F3AB8 = .rodata:0x807F3AB8; // type:object size:0x4 data:float +lbl_807F3ABC = .rodata:0x807F3ABC; // type:object size:0x4 data:float +lbl_807F3AC0 = .rodata:0x807F3AC0; // type:object size:0x8 data:float +lbl_807F3AC8 = .rodata:0x807F3AC8; // type:object size:0x4 data:float +lbl_807F3ACC = .rodata:0x807F3ACC; // type:object size:0x4 data:float +lbl_807F3AD0 = .rodata:0x807F3AD0; // type:object size:0x4 data:float +lbl_807F3AD4 = .rodata:0x807F3AD4; // type:object size:0x4 data:float +lbl_807F3AD8 = .rodata:0x807F3AD8; // type:object size:0x4 data:float +lbl_807F3ADC = .rodata:0x807F3ADC; // type:object size:0x4 data:float +lbl_807F3AE0 = .rodata:0x807F3AE0; // type:object size:0x4 data:float +lbl_807F3AE4 = .rodata:0x807F3AE4; // type:object size:0x4 data:float +lbl_807F3AE8 = .rodata:0x807F3AE8; // type:object size:0x4 data:float +lbl_807F3AF0 = .rodata:0x807F3AF0; // type:object size:0x8 data:double +lbl_807F3AF8 = .rodata:0x807F3AF8; // type:object size:0x8 data:double +lbl_807F3B00 = .rodata:0x807F3B00; // type:object size:0x4 data:float +lbl_807F3B04 = .rodata:0x807F3B04; // type:object size:0x4 data:float +lbl_807F3B08 = .rodata:0x807F3B08; // type:object size:0x8 data:float +lbl_807F3B10 = .rodata:0x807F3B10; // type:object size:0x4 data:float +lbl_807F3B14 = .rodata:0x807F3B14; // type:object size:0x4 data:float +lbl_807F3B18 = .rodata:0x807F3B18; // type:object size:0x4 data:float +lbl_807F3B1C = .rodata:0x807F3B1C; // type:object size:0x4 data:float +lbl_807F3B20 = .rodata:0x807F3B20; // type:object size:0x4 data:float +lbl_807F3B24 = .rodata:0x807F3B24; // type:object size:0x4 data:float +lbl_807F3B28 = .rodata:0x807F3B28; // type:object size:0x4 data:float +lbl_807F3B2C = .rodata:0x807F3B2C; // type:object size:0x4 data:float +lbl_807F3B30 = .rodata:0x807F3B30; // type:object size:0x4 data:float +lbl_807F3B34 = .rodata:0x807F3B34; // type:object size:0x4 data:float +lbl_807F3B38 = .rodata:0x807F3B38; // type:object size:0x4 data:float +lbl_807F3B3C = .rodata:0x807F3B3C; // type:object size:0x4 data:float +lbl_807F3B40 = .rodata:0x807F3B40; // type:object size:0x4 data:float +lbl_807F3B44 = .rodata:0x807F3B44; // type:object size:0x4 data:float +lbl_807F3B48 = .rodata:0x807F3B48; // type:object size:0x4 data:float +lbl_807F3B4C = .rodata:0x807F3B4C; // type:object size:0x4 data:float +lbl_807F3B50 = .rodata:0x807F3B50; // type:object size:0x4 data:float +lbl_807F3B54 = .rodata:0x807F3B54; // type:object size:0x4 data:float +lbl_807F3B58 = .rodata:0x807F3B58; // type:object size:0x4 data:float +lbl_807F3B5C = .rodata:0x807F3B5C; // type:object size:0x4 data:float +lbl_807F3B60 = .rodata:0x807F3B60; // type:object size:0x4 data:float +lbl_807F3B64 = .rodata:0x807F3B64; // type:object size:0x4 data:float +@D_9999c93f9a999999 = .rodata:0x807F3B68; // type:object size:0x8 data:double +lbl_807F3B70 = .rodata:0x807F3B70; // type:object size:0x8 data:float +lbl_807F3B78 = .rodata:0x807F3B78; // type:object size:0x4 data:float +lbl_807F3B7C = .rodata:0x807F3B7C; // type:object size:0x4 data:float +lbl_807F3B80 = .rodata:0x807F3B80; // type:object size:0x8 data:float +lbl_807F3B88 = .rodata:0x807F3B88; // type:object size:0x4 data:float +lbl_807F3B8C = .rodata:0x807F3B8C; // type:object size:0x4 data:float +lbl_807F3B90 = .rodata:0x807F3B90; // type:object size:0x14 data:4byte +lbl_807F3BA4 = .rodata:0x807F3BA4; // type:object size:0x14 data:4byte +lbl_807F3BB8 = .rodata:0x807F3BB8; // type:object size:0x4 data:float +lbl_807F3BBC = .rodata:0x807F3BBC; // type:object size:0x4 data:float +lbl_807F3BC0 = .rodata:0x807F3BC0; // type:object size:0x8 data:float +lbl_807F3BC8 = .rodata:0x807F3BC8; // type:object size:0x8 data:float +lbl_807F3BD0 = .rodata:0x807F3BD0; // type:object size:0x8 data:float +lbl_807F3BD8 = .rodata:0x807F3BD8; // type:object size:0x8 data:float +lbl_807F3BE0 = .rodata:0x807F3BE0; // type:object size:0x8 data:float +lbl_807F3BE8 = .rodata:0x807F3BE8; // type:object size:0x8 data:float +lbl_807F3BF0 = .rodata:0x807F3BF0; // type:object size:0x40 data:4byte +lbl_807F3C30 = .rodata:0x807F3C30; // type:object size:0x4 data:float +lbl_807F3C34 = .rodata:0x807F3C34; // type:object size:0x4 data:4byte +lbl_807F3C38 = .rodata:0x807F3C38; // type:object size:0x8 data:float +lbl_807F3C40 = .rodata:0x807F3C40; // type:object size:0x8 data:float +lbl_807F3C48 = .rodata:0x807F3C48; // type:object size:0x8 data:float +lbl_807F3C50 = .rodata:0x807F3C50; // type:object size:0x4 data:float +lbl_807F3C54 = .rodata:0x807F3C54; // type:object size:0x4 data:float +lbl_807F3C58 = .rodata:0x807F3C58; // type:object size:0x4 data:float +lbl_807F3C5C = .rodata:0x807F3C5C; // type:object size:0x4 data:float +lbl_807F3C60 = .rodata:0x807F3C60; // type:object size:0x4 data:float +lbl_807F3C64 = .rodata:0x807F3C64; // type:object size:0x4 data:float +lbl_807F3C68 = .rodata:0x807F3C68; // type:object size:0x8 data:4byte +lbl_807F3C70 = .rodata:0x807F3C70; // type:object size:0x8 data:float +lbl_807F3C78 = .rodata:0x807F3C78; // type:object size:0x8 data:float +lbl_807F3C80 = .rodata:0x807F3C80; // type:object size:0x4 data:float +lbl_807F3C84 = .rodata:0x807F3C84; // type:object size:0x4 data:float +lbl_807F3C88 = .rodata:0x807F3C88; // type:object size:0x4 data:float +lbl_807F3C8C = .rodata:0x807F3C8C; // type:object size:0x4 data:float +lbl_807F3C90 = .rodata:0x807F3C90; // type:object size:0x8 data:float +lbl_807F3C98 = .rodata:0x807F3C98; // type:object size:0x8 data:float +lbl_807F3CA0 = .rodata:0x807F3CA0; // type:object size:0x10 data:4byte +lbl_807F3CB0 = .rodata:0x807F3CB0; // type:object size:0x10 data:4byte +lbl_807F3CC0 = .rodata:0x807F3CC0; // type:object size:0x10 data:4byte +lbl_807F3CD0 = .rodata:0x807F3CD0; // type:object size:0x8 data:float +lbl_807F3CD8 = .rodata:0x807F3CD8; // type:object size:0x8 data:float +lbl_807F3CE0 = .rodata:0x807F3CE0; // type:object size:0x4 data:float +lbl_807F3CE4 = .rodata:0x807F3CE4; // type:object size:0x4 data:float +lbl_807F3CE8 = .rodata:0x807F3CE8; // type:object size:0x4 data:float +lbl_807F3CEC = .rodata:0x807F3CEC; // type:object size:0x4 data:float +lbl_807F3CF0 = .rodata:0x807F3CF0; // type:object size:0x60 data:4byte +lbl_807F3D50 = .rodata:0x807F3D50; // type:object size:0x8 data:float +lbl_807F3D58 = .rodata:0x807F3D58; // type:object size:0x8 data:float +lbl_807F3D60 = .rodata:0x807F3D60; // type:object size:0x10 data:4byte +lbl_807F3D70 = .rodata:0x807F3D70; // type:object size:0x8 data:double +@D_0000d03f00000000 = .rodata:0x807F3D78; // type:object size:0x8 data:double +lbl_807F3D80 = .rodata:0x807F3D80; // type:object size:0x8 data:double +lbl_807F3D88 = .rodata:0x807F3D88; // type:object size:0x4 data:float +lbl_807F3D8C = .rodata:0x807F3D8C; // type:object size:0x4 data:float +lbl_807F3D90 = .rodata:0x807F3D90; // type:object size:0x4 data:float +lbl_807F3D94 = .rodata:0x807F3D94; // type:object size:0x4 data:float +lbl_807F3D98 = .rodata:0x807F3D98; // type:object size:0x8 data:float +lbl_807F3DA0 = .rodata:0x807F3DA0; // type:object size:0x4 data:float +lbl_807F3DA8 = .rodata:0x807F3DA8; // type:object size:0x8 data:double +lbl_807F3DB0 = .rodata:0x807F3DB0; // type:object size:0x8 data:float +lbl_807F3DB8 = .rodata:0x807F3DB8; // type:object size:0x4 data:float +@F_00000042 = .rodata:0x807F3DBC; // type:object size:0x4 data:float +lbl_807F3DC0 = .rodata:0x807F3DC0; // type:object size:0x8 data:float +lbl_807F3DC8 = .rodata:0x807F3DC8; // type:object size:0x10 +lbl_807F3DD8 = .rodata:0x807F3DD8; // type:object size:0x4 data:float +lbl_807F3DDC = .rodata:0x807F3DDC; // type:object size:0x4 data:float +lbl_807F3DE0 = .rodata:0x807F3DE0; // type:object size:0x4 data:float +lbl_807F3DE4 = .rodata:0x807F3DE4; // type:object size:0x4 data:float +lbl_807F3DE8 = .rodata:0x807F3DE8; // type:object size:0x8 data:float +lbl_807F3DF0 = .rodata:0x807F3DF0; // type:object size:0x40 +lbl_807F3E30 = .rodata:0x807F3E30; // type:object size:0x20 +@F_000000c1 = .rodata:0x807F3E50; // type:object size:0x4 data:float +lbl_807F3E54 = .rodata:0x807F3E54; // type:object size:0x14 data:4byte +lbl_807F3E68 = .rodata:0x807F3E68; // type:object size:0x8 data:float +lbl_807F3E70 = .rodata:0x807F3E70; // type:object size:0x8 data:float +lbl_807F3E78 = .rodata:0x807F3E78; // type:object size:0x18 data:4byte +lbl_807F3E90 = .rodata:0x807F3E90; // type:object size:0x8 data:float +lbl_807F3E98 = .rodata:0x807F3E98; // type:object size:0x18 data:4byte +lbl_807F3EB0 = .rodata:0x807F3EB0; // type:object size:0x8 data:float +@F_00008044 = .rodata:0x807F3EB8; // type:object size:0x4 data:float +lbl_807F3EBC = .rodata:0x807F3EBC; // type:object size:0x4 data:float +lbl_807F3EC0 = .rodata:0x807F3EC0; // type:object size:0x4 data:float +lbl_807F3EC4 = .rodata:0x807F3EC4; // type:object size:0x4 data:float +lbl_807F3EC8 = .rodata:0x807F3EC8; // type:object size:0x8 data:float +lbl_807F3ED0 = .rodata:0x807F3ED0; // type:object size:0x4 data:float +lbl_807F3ED4 = .rodata:0x807F3ED4; // type:object size:0x4 data:float +lbl_807F3ED8 = .rodata:0x807F3ED8; // type:object size:0x4 data:float +lbl_807F3EDC = .rodata:0x807F3EDC; // type:object size:0x4 data:float +lbl_807F3EE0 = .rodata:0x807F3EE0; // type:object size:0x4 data:float +lbl_807F3EE4 = .rodata:0x807F3EE4; // type:object size:0x4 data:float +lbl_807F3EE8 = .rodata:0x807F3EE8; // type:object size:0x8 data:float +lbl_807F3EF0 = .rodata:0x807F3EF0; // type:object size:0x4 data:float +@F_6f12033b = .rodata:0x807F3EF4; // type:object size:0x4 data:float +lbl_807F3EF8 = .rodata:0x807F3EF8; // type:object size:0x4 data:float +lbl_807F3F00 = .rodata:0x807F3F00; // type:object size:0x8 data:double +lbl_807F3F08 = .rodata:0x807F3F08; // type:object size:0x8 data:double +lbl_807F3F10 = .rodata:0x807F3F10; // type:object size:0x8 data:double +lbl_807F3F18 = .rodata:0x807F3F18; // type:object size:0x8 data:double +lbl_807F3F20 = .rodata:0x807F3F20; // type:object size:0x8 data:double +@D_0000e0bf00000000 = .rodata:0x807F3F28; // type:object size:0x8 data:double +gDecayRate = .rodata:0x807F3F30; // type:object size:0x40 +gSustainLevel = .rodata:0x807F3F70; // type:object size:0x40 +gReleaseRateLin = .rodata:0x807F3FB0; // type:object size:0x80 +gReleaseRateExp = .rodata:0x807F4030; // type:object size:0x80 +gLinIncAndDec = .rodata:0x807F40B0; // type:object size:0x400 +gExpIncAndDec = .rodata:0x807F44B0; // type:object size:0x5F8 +lbl_807F4AA8 = .rodata:0x807F4AA8; // type:object size:0x8 data:float +lbl_807F4AB0 = .rodata:0x807F4AB0; // type:object size:0x8 data:float +lbl_807F4AB8 = .rodata:0x807F4AB8; // type:object size:0x8 data:float +lbl_807F4AC0 = .rodata:0x807F4AC0; // type:object size:0x8 data:float +lbl_807F4AC8 = .rodata:0x807F4AC8; // type:object size:0x8 data:float +lbl_807F4AD0 = .rodata:0x807F4AD0; // type:object size:0x8 data:float +lbl_807F4AD8 = .rodata:0x807F4AD8; // type:object size:0x4 data:float +lbl_807F4ADC = .rodata:0x807F4ADC; // type:object size:0x4 data:4byte +lbl_807F4AE0 = .rodata:0x807F4AE0; // type:object size:0x4 data:float +lbl_807F4AE4 = .rodata:0x807F4AE4; // type:object size:0x8 data:byte +lbl_807F4AEC = .rodata:0x807F4AEC; // type:object size:0x4 data:float +lbl_807F4AF0 = .rodata:0x807F4AF0; // type:object size:0x8 data:float +lbl_807F4AF8 = .rodata:0x807F4AF8; // type:object size:0x28 data:4byte +lbl_807F4B20 = .rodata:0x807F4B20; // type:object size:0x8 data:double +lbl_807F4B28 = .rodata:0x807F4B28; // type:object size:0x8 data:double +lbl_807F4B30 = .rodata:0x807F4B30; // type:object size:0x8 data:double +lbl_807F4B38 = .rodata:0x807F4B38; // type:object size:0x8 data:double +lbl_807F4B40 = .rodata:0x807F4B40; // type:object size:0x8 data:double +lbl_807F4B48 = .rodata:0x807F4B48; // type:object size:0x8 data:double +@D_e17a943f7b14ae47 = .rodata:0x807F4B50; // type:object size:0x8 data:double +lbl_807F4B58 = .rodata:0x807F4B58; // type:object size:0x8 data:double +lbl_807F4B60 = .rodata:0x807F4B60; // type:object size:0x8 data:double +lbl_807F4B68 = .rodata:0x807F4B68; // type:object size:0x8 data:double +lbl_807F4B70 = .rodata:0x807F4B70; // type:object size:0x8 data:double +lbl_807F4B78 = .rodata:0x807F4B78; // type:object size:0x8 data:double +lbl_807F4B80 = .rodata:0x807F4B80; // type:object size:0x8 data:double +lbl_807F4B88 = .rodata:0x807F4B88; // type:object size:0x8 data:double +lbl_807F4B90 = .rodata:0x807F4B90; // type:object size:0x8 data:double +lbl_807F4B98 = .rodata:0x807F4B98; // type:object size:0x8 data:double +lbl_807F4BA0 = .rodata:0x807F4BA0; // type:object size:0x8 data:double +lbl_807F4BA8 = .rodata:0x807F4BA8; // type:object size:0x8 data:double +lbl_807F4BB0 = .rodata:0x807F4BB0; // type:object size:0x8 data:double +lbl_807F4BB8 = .rodata:0x807F4BB8; // type:object size:0x8 data:double +lbl_807F4BC0 = .rodata:0x807F4BC0; // type:object size:0x8 data:double +lbl_807F4BC8 = .rodata:0x807F4BC8; // type:object size:0x8 data:double +lbl_807F4BD0 = .rodata:0x807F4BD0; // type:object size:0x8 data:double +@D_3333d33f33333333 = .rodata:0x807F4BD8; // type:object size:0x8 data:double +lbl_807F4BE0 = .rodata:0x807F4BE0; // type:object size:0x8 data:double +rijndael_desc = .rodata:0x807F4BE8; // type:object size:0x30 +ft_tab = .rodata:0x807F4C18; // type:object size:0x1000 +it_tab = .rodata:0x807F5C18; // type:object size:0x1000 +fl_tab = .rodata:0x807F6C18; // type:object size:0x1000 +il_tab = .rodata:0x807F7C18; // type:object size:0x46C +lbl_807F8084 = .rodata:0x807F8084; // type:object size:0xB94 +rco_tab = .rodata:0x807F8C18; // type:object size:0xB0 +@D_0000a03f00000000 = .rodata:0x807F8CC8; // type:object size:0x8 data:double +@F_a95f6358 = .rodata:0x807F8CD0; // type:object size:0x4 data:float +@D_0000f83f00000000 = .rodata:0x807F8CD8; // type:object size:0x8 data:double +@D_aeb60b40f46c567d = .rodata:0x807F8CE0; // type:object size:0x8 data:double +lbl_807F8CE8 = .rodata:0x807F8CE8; // type:object size:0xA0 +lbl_807F8D88 = .rodata:0x807F8D88; // type:object size:0x140 +lbl_807F8EC8 = .rodata:0x807F8EC8; // type:object size:0x280 +lbl_807F9148 = .rodata:0x807F9148; // type:object size:0x500 +lbl_807F9648 = .rodata:0x807F9648; // type:object size:0x140 +lbl_807F9788 = .rodata:0x807F9788; // type:object size:0x400 +lbl_807F9B88 = .rodata:0x807F9B88; // type:object size:0x3C data:4byte +lbl_807F9BC4 = .rodata:0x807F9BC4; // type:object size:0x3C data:4byte +shift_filt = .rodata:0x807F9C00; // type:object size:0x54 +@D_85ebb13fec51b81e = .rodata:0x807F9C58; // type:object size:0x8 data:double +@D_9999d93f9a999999 = .rodata:0x807F9C60; // type:object size:0x8 data:double +@D_1e85fb3f85eb51b8 = .rodata:0x807F9C68; // type:object size:0x8 data:double +@D_6666e63f66666666 = .rodata:0x807F9C70; // type:object size:0x8 data:double +@D_3333e33f33333333 = .rodata:0x807F9C78; // type:object size:0x8 data:double +lbl_807F9C80 = .rodata:0x807F9C80; // type:object size:0x200 +lbl_807F9E80 = .rodata:0x807F9E80; // type:object size:0x80 +@D_7493683ffa7e6abc = .rodata:0x807F9F00; // type:object size:0x8 data:double +@D_ccccec3fcdcccccc = .rodata:0x807F9F08; // type:object size:0x8 data:double +@D_fb21f93fe0864454 = .rodata:0x807F9F10; // type:object size:0x8 data:double +@F_90ff7f3f = .rodata:0x807F9F18; // type:object size:0x4 data:float +@F_86f4ffbe = .rodata:0x807F9F1C; // type:object size:0x4 data:float +@F_0eef293d = .rodata:0x807F9F20; // type:object size:0x4 data:float +@F_b69ea6ba = .rodata:0x807F9F24; // type:object size:0x4 data:float +@D_fb210940182d4454 = .rodata:0x807F9F28; // type:object size:0x8 data:double +cdbk_nb = .rodata:0x807F9F30; // type:object size:0x280 +cdbk_nb_low1 = .rodata:0x807FA1B0; // type:object size:0x140 +cdbk_nb_low2 = .rodata:0x807FA2F0; // type:object size:0x140 +cdbk_nb_high1 = .rodata:0x807FA430; // type:object size:0x140 +cdbk_nb_high2 = .rodata:0x807FA570; // type:object size:0x140 +@F_a95f63d8 = .rodata:0x807FA6B0; // type:object size:0x4 data:float +@F_00000043 = .rodata:0x807FA6B4; // type:object size:0x4 data:float +@F_0000f841 = .rodata:0x807FA6B8; // type:object size:0x4 data:float +@F_00008048 = .rodata:0x807FA6BC; // type:object size:0x4 data:float +@D_0000903f00000000 = .rodata:0x807FA6C0; // type:object size:0x8 data:double +@D_14aeef3fae47e17a = .rodata:0x807FA6C8; // type:object size:0x8 data:double +lbl_807FA6D0 = .rodata:0x807FA6D0; // type:object size:0xC +lbl_807FA6DC = .rodata:0x807FA6DC; // type:object size:0xC +lbl_807FA6E8 = .rodata:0x807FA6E8; // type:object size:0xC +lbl_807FA6F4 = .rodata:0x807FA6F4; // type:object size:0xC +lbl_807FA700 = .rodata:0x807FA700; // type:object size:0x14 +lbl_807FA714 = .rodata:0x807FA714; // type:object size:0x14 +lbl_807FA728 = .rodata:0x807FA728; // type:object size:0x14 +lbl_807FA73C = .rodata:0x807FA73C; // type:object size:0x14 +lbl_807FA750 = .rodata:0x807FA750; // type:object size:0x14 +lbl_807FA764 = .rodata:0x807FA764; // type:object size:0x14 +lbl_807FA778 = .rodata:0x807FA778; // type:object size:0x38 +lbl_807FA7B0 = .rodata:0x807FA7B0; // type:object size:0x38 +lbl_807FA7E8 = .rodata:0x807FA7E8; // type:object size:0x38 +lbl_807FA820 = .rodata:0x807FA820; // type:object size:0x38 +lbl_807FA858 = .rodata:0x807FA858; // type:object size:0x38 +lbl_807FA890 = .rodata:0x807FA890; // type:object size:0x38 +lbl_807FA8C8 = .rodata:0x807FA8C8; // type:object size:0x38 +lbl_807FA900 = .rodata:0x807FA900; // type:object size:0x38 +lbl_807FA938 = .rodata:0x807FA938; // type:object size:0x90 +lbl_807FA9C8 = .rodata:0x807FA9C8; // type:object size:0x38 +lbl_807FAA00 = .rodata:0x807FAA00; // type:object size:0x78 +@D_9999f13f9a999999 = .rodata:0x807FAA78; // type:object size:0x10 data:double +@D_9999e93f9a999999 = .rodata:0x807FAA88; // type:object size:0x8 data:double +@D_b5f8e4bef168e388 = .rodata:0x807FAA90; // type:object size:0x20 data:double +@D_9999a9bf9a999999 = .rodata:0x807FAAB0; // type:object size:0x40 data:double +@D_1611b13f4ef1b8a8 = .rodata:0x807FAAF0; // type:object size:0x8 data:double +@D_00000c4000000000 = .rodata:0x807FAAF8; // type:object size:0xC +@F_1fbae83e = .rodata:0x807FAB04; // type:object size:0x4 data:float +attenuation = .rodata:0x807FAB08; // type:object size:0x2C +@F_48e17a3f = .rodata:0x807FAB34; // type:object size:0x34 data:float +@F_7b146e3f = .rodata:0x807FAB68; // type:object size:0x10 data:float +@D_9999c9bf9a999999 = .rodata:0x807FAB78; // type:object size:0x8 data:double +lbl_807FAB80 = .rodata:0x807FAB80; // type:object size:0x10 data:float +lbl_807FAB90 = .rodata:0x807FAB90; // type:object size:0x20 data:double +@F_ae47813f = .rodata:0x807FABB0; // type:object size:0x18 data:float +@D_e17aa43f7b14ae47 = .rodata:0x807FABC8; // type:object size:0x8 data:double +@D_0000704000000000 = .rodata:0x807FABD0; // type:object size:0x8 data:double +@D_faff4f3f74479ca1 = .rodata:0x807FABD8; // type:object size:0x8 data:double +@D_e5ff6f3f43650d28 = .rodata:0x807FABE0; // type:object size:0x8 data:double +@D_e5ff5f3f43650d28 = .rodata:0x807FABE8; // type:object size:0x8 data:double +vbr_nb_thresh = .rodata:0x807FABF0; // type:object size:0x190 +@D_0070b74000000000 = .rodata:0x807FAD80; // type:object size:0x8 data:double +@D_0000084000000000 = .rodata:0x807FAD88; // type:object size:0x8 data:double +@D_51b8ae3fb81e85eb = .rodata:0x807FAD90; // type:object size:0x8 data:double +@D_3333f33f33333333 = .rodata:0x807FAD98; // type:object size:0x8 data:double +@D_9999f93f9a999999 = .rodata:0x807FADA0; // type:object size:0x8 data:double +@D_999901409a999999 = .rodata:0x807FADA8; // type:object size:0x8 data:double +@D_e2361a3f2d431ceb = .rodata:0x807FADB0; // type:object size:0x8 data:double +@D_004ced4000000000 = .rodata:0x807FADB8; // type:object size:0x8 data:double +lag_window = .rodata:0x807FADC0; // type:object size:0x30 +lpc_window = .rodata:0x807FADF0; // type:object size:0x320 +lbl_807FB110 = .rodata:0x807FB110; // type:object size:0x4 data:float +lbl_807FB114 = .rodata:0x807FB114; // type:object size:0x4 data:float +lbl_807FB118 = .rodata:0x807FB118; // type:object size:0x8 data:float +lbl_807FB120 = .rodata:0x807FB120; // type:object size:0x8 data:float +lbl_807FB128 = .rodata:0x807FB128; // type:object size:0x20 +lbl_807FB148 = .rodata:0x807FB148; // type:object size:0x4 data:float +lbl_807FB150 = .rodata:0x807FB150; // type:object size:0x8 data:double +lbl_807FB158 = .rodata:0x807FB158; // type:object size:0x8 data:double +lbl_807FB160 = .rodata:0x807FB160; // type:object size:0x10 data:4byte +lbl_807FB170 = .rodata:0x807FB170; // type:object size:0x8 data:float +lbl_807FB178 = .rodata:0x807FB178; // type:object size:0x8 data:4byte +lbl_807FB180 = .rodata:0x807FB180; // type:object size:0x10 data:4byte +lbl_807FB190 = .rodata:0x807FB190; // type:object size:0x4 data:float +lbl_807FB194 = .rodata:0x807FB194; // type:object size:0x4 data:float +lbl_807FB198 = .rodata:0x807FB198; // type:object size:0x8 data:float +lbl_807FB1A0 = .rodata:0x807FB1A0; // type:object size:0xFC +lbl_807FB29C = .rodata:0x807FB29C; // type:object size:0x4 data:float +lbl_807FB2A0 = .rodata:0x807FB2A0; // type:object size:0x4 data:float +lbl_807FB2A4 = .rodata:0x807FB2A4; // type:object size:0x4 data:float +lbl_807FB2A8 = .rodata:0x807FB2A8; // type:object size:0x4 data:4byte +lbl_807FB2AC = .rodata:0x807FB2AC; // type:object size:0x4 data:4byte +lbl_807FB2B0 = .rodata:0x807FB2B0; // type:object size:0x4 data:float +lbl_807FB2B4 = .rodata:0x807FB2B4; // type:object size:0x4 data:float +lbl_807FB2B8 = .rodata:0x807FB2B8; // type:object size:0x4 data:float +lbl_807FB2BC = .rodata:0x807FB2BC; // type:object size:0x4 data:float +lbl_807FB2C0 = .rodata:0x807FB2C0; // type:object size:0x4 data:float +lbl_807FB2C4 = .rodata:0x807FB2C4; // type:object size:0x4 data:float +lbl_807FB2C8 = .rodata:0x807FB2C8; // type:object size:0x4 data:4byte +lbl_807FB2CC = .rodata:0x807FB2CC; // type:object size:0x4 data:4byte +@F_c1a84035 = .rodata:0x807FB2D0; // type:object size:0x4 data:float +@F_5b113fc4 = .rodata:0x807FB2D4; // type:object size:0x4 data:float +lbl_807FB2D8 = .rodata:0x807FB2D8; // type:object size:0x8 data:double +lbl_807FB2E0 = .rodata:0x807FB2E0; // type:object size:0x8 data:double +@F_003c1cc6 = .rodata:0x807FB2E8; // type:object size:0x8 data:float +lbl_807FB2F0 = .rodata:0x807FB2F0; // type:object size:0x4 data:float +lbl_807FB2F4 = .rodata:0x807FB2F4; // type:object size:0x4 data:float +@F_00e07f44 = .rodata:0x807FB2F8; // type:object size:0x4 data:float +@F_a10eea40 = .rodata:0x807FB2FC; // type:object size:0x4 data:float +@D_305f44405ec6e271 = .rodata:0x807FB300; // type:object size:0x8 data:double +@F_f304353f = .rodata:0x807FB308; // type:object size:0x8 data:float +lbl_807FB310 = .rodata:0x807FB310; // type:object size:0x4 data:float +lbl_807FB314 = .rodata:0x807FB314; // type:object size:0x4 data:float +lbl_807FB318 = .rodata:0x807FB318; // type:object size:0x4 data:float +lbl_807FB320 = .rodata:0x807FB320; // type:object size:0x8 data:double +lbl_807FB328 = .rodata:0x807FB328; // type:object size:0x8 data:double +lbl_807FB330 = .rodata:0x807FB330; // type:object size:0x8 data:double +lbl_807FB338 = .rodata:0x807FB338; // type:object size:0x8 data:double +lbl_807FB340 = .rodata:0x807FB340; // type:object size:0x8 data:double +lbl_807FB348 = .rodata:0x807FB348; // type:object size:0x8 data:double +lbl_807FB350 = .rodata:0x807FB350; // type:object size:0x4 data:float +lbl_807FB354 = .rodata:0x807FB354; // type:object size:0x4 data:float +lbl_807FB358 = .rodata:0x807FB358; // type:object size:0x8 data:double +lbl_807FB360 = .rodata:0x807FB360; // type:object size:0x4 data:float +lbl_807FB368 = .rodata:0x807FB368; // type:object size:0x8 data:double +lbl_807FB370 = .rodata:0x807FB370; // type:object size:0xD0 data:byte +huff4decodes = .rodata:0x807FB440; // type:object size:0x4E0 +lbl_807FB920 = .rodata:0x807FB920; // type:object size:0x1000 +lbl_807FC920 = .rodata:0x807FC920; // type:object size:0x1000 +patterns = .rodata:0x807FD920; // type:object size:0x400 +lbl_807FDD20 = .rodata:0x807FDD20; // type:object size:0x50 data:string +lbl_807FDD70 = .rodata:0x807FDD70; // type:object size:0x2C data:string +lbl_807FDD9C = .rodata:0x807FDD9C; // type:object size:0x10 +lbl_807FDDAC = .rodata:0x807FDDAC; // type:object size:0x24 data:string +lbl_807FDDD0 = .rodata:0x807FDDD0; // type:object size:0x14 +lbl_807FDDE4 = .rodata:0x807FDDE4; // type:object size:0x14 +lbl_807FDDF8 = .rodata:0x807FDDF8; // type:object size:0x18 +lbl_807FDE10 = .rodata:0x807FDE10; // type:object size:0x18 data:4byte +lbl_807FDE28 = .rodata:0x807FDE28; // type:object size:0xE0 +lbl_807FDF08 = .rodata:0x807FDF08; // type:object size:0x200 +lbl_807FE108 = .rodata:0x807FE108; // type:object size:0x100 +lbl_807FE208 = .rodata:0x807FE208; // type:object size:0x100 +lbl_807FE308 = .rodata:0x807FE308; // type:object size:0x10 +lbl_807FE318 = .rodata:0x807FE318; // type:object size:0xC data:string +lbl_807FE324 = .rodata:0x807FE324; // type:object size:0xC +lbl_807FE330 = .rodata:0x807FE330; // type:object size:0x58 +lbl_807FE388 = .rodata:0x807FE388; // type:object size:0x88 +@stringBase0 = .rodata:0x807FE410; // type:object size:0x25 scope:local data:string_table +lbl_807FE438 = .rodata:0x807FE438; // type:object size:0x28 data:4byte +lbl_807FE460 = .rodata:0x807FE460; // type:object size:0x370 +lbl_807FE7D0 = .rodata:0x807FE7D0; // type:object size:0x10 data:byte +lbl_807FE7E0 = .rodata:0x807FE7E0; // type:object size:0x200 +lbl_807FE9E0 = .rodata:0x807FE9E0; // type:object size:0x200 +lbl_807FEBE0 = .rodata:0x807FEBE0; // type:object size:0x200 +lbl_807FEDE0 = .rodata:0x807FEDE0; // type:object size:0x8 +lbl_807FEDE8 = .rodata:0x807FEDE8; // type:object size:0x30 +lbl_807FEE18 = .rodata:0x807FEE18; // type:object size:0x10 +lbl_807FEE28 = .rodata:0x807FEE28; // type:object size:0x30 +lbl_807FEE58 = .rodata:0x807FEE58; // type:object size:0x108 +lbl_807FEF60 = .rodata:0x807FEF60; // type:object size:0x80 +init_jk = .rodata:0x807FEFE0; // type:object size:0x10 +lbl_807FEFF0 = .rodata:0x807FEFF0; // type:object size:0x40 data:double +lbl_807FF030 = .rodata:0x807FF030; // type:object size:0x68 data:double +lbl_807FF098 = .rodata:0x807FF098; // type:object size:0x98 +lbl_807FF130 = .rodata:0x807FF130; // type:object size:0x10 +lbl_807FF140 = .rodata:0x807FF140; // type:object size:0x10 +lbl_807FF150 = .rodata:0x807FF150; // type:object size:0x10 data:4byte +lbl_807FF160 = .rodata:0x807FF160; // type:object size:0x10 +lbl_807FF170 = .rodata:0x807FF170; // type:object size:0x48 +lbl_807FF1B8 = .rodata:0x807FF1B8; // type:object size:0x18 data:double +lbl_807FF1D0 = .rodata:0x807FF1D0; // type:object size:0x14 +lbl_807FF1E4 = .rodata:0x807FF1E4; // type:object size:0x54 +lbl_807FF238 = .rodata:0x807FF238; // type:object size:0x10 data:4byte +lbl_807FF248 = .rodata:0x807FF248; // type:object size:0x28 data:4byte +lbl_807FF270 = .rodata:0x807FF270; // type:object size:0x28 data:4byte +lbl_807FF298 = .rodata:0x807FF298; // type:object size:0x28 data:4byte +lbl_807FF2C0 = .rodata:0x807FF2C0; // type:object size:0x18 +lbl_807FF2D8 = .rodata:0x807FF2D8; // type:object size:0xC +lbl_807FF2E4 = .rodata:0x807FF2E4; // type:object size:0xC +lbl_807FF2F0 = .rodata:0x807FF2F0; // type:object size:0x14 +lbl_807FF304 = .rodata:0x807FF304; // type:object size:0x4C +lbl_807FF350 = .rodata:0x807FF350; // type:object size:0x18 +lbl_807FF368 = .rodata:0x807FF368; // type:object size:0x10 +lbl_807FF378 = .rodata:0x807FF378; // type:object size:0x30 +lbl_807FF3A8 = .rodata:0x807FF3A8; // type:object size:0x60 +lbl_807FF408 = .rodata:0x807FF408; // type:object size:0x18 +lbl_807FF420 = .rodata:0x807FF420; // type:object size:0x34 +lbl_807FF454 = .rodata:0x807FF454; // type:object size:0x2C +lbl_807FF480 = .rodata:0x807FF480; // type:object size:0x48 +lbl_807FF4C8 = .rodata:0x807FF4C8; // type:object size:0x1C +lbl_807FF4E4 = .rodata:0x807FF4E4; // type:object size:0x1C +lbl_807FF500 = .rodata:0x807FF500; // type:object size:0x1C +lbl_807FF51C = .rodata:0x807FF51C; // type:object size:0x1C +lbl_807FF538 = .rodata:0x807FF538; // type:object size:0x10 +lbl_807FF548 = .rodata:0x807FF548; // type:object size:0x30 +lbl_807FF578 = .rodata:0x807FF578; // type:object size:0x18 +lbl_807FF590 = .rodata:0x807FF590; // type:object size:0x18 +lbl_807FF5A8 = .rodata:0x807FF5A8; // type:object size:0x18 +lbl_807FF5C0 = .rodata:0x807FF5C0; // type:object size:0x10 +lbl_807FF5D0 = .rodata:0x807FF5D0; // type:object size:0x10 +lbl_807FF5E0 = .rodata:0x807FF5E0; // type:object size:0x10 data:4byte +lbl_807FF5F0 = .rodata:0x807FF5F0; // type:object size:0x10 data:byte +lbl_807FF600 = .rodata:0x807FF600; // type:object size:0x28 +lbl_807FF628 = .rodata:0x807FF628; // type:object size:0x100 +lbl_807FF728 = .rodata:0x807FF728; // type:object size:0x10 +lbl_807FF738 = .rodata:0x807FF738; // type:object size:0x278 data:4byte +lbl_807FF9B0 = .rodata:0x807FF9B0; // type:object size:0x1C +lbl_807FF9CC = .rodata:0x807FF9CC; // type:object size:0x70 +lbl_807FFA3C = .rodata:0x807FFA3C; // type:object size:0x1C +lbl_807FFA58 = .rodata:0x807FFA58; // type:object size:0x68 +lbl_807FFAC0 = .rodata:0x807FFAC0; // type:object size:0x1C +lbl_807FFADC = .rodata:0x807FFADC; // type:object size:0x1C +__DVDDeviceErrorMessage = .rodata:0x807FFAF8; // type:object size:0x1C scope:global data:4byte +lbl_807FFB18 = .rodata:0x807FFB18; // type:object size:0x284 data:2byte +lbl_807FFD9C = .rodata:0x807FFD9C; // type:object size:0xA3C data:byte +lbl_808007D8 = .rodata:0x808007D8; // type:object size:0x40 +lbl_80800818 = .rodata:0x80800818; // type:object size:0x100 +lbl_80800918 = .rodata:0x80800918; // type:object size:0x48 data:4byte +@3073 = .rodata:0x80800960; // type:object size:0x148 scope:local +lbl_80800AA8 = .rodata:0x80800AA8; // type:object size:0x1C +lbl_80800AC4 = .rodata:0x80800AC4; // type:object size:0x1C +lbl_80800AE0 = .rodata:0x80800AE0; // type:object size:0x1C +lbl_80800AFC = .rodata:0x80800AFC; // type:object size:0x1C +lbl_80800B18 = .rodata:0x80800B18; // type:object size:0x1C +lbl_80800B34 = .rodata:0x80800B34; // type:object size:0x1C +lbl_80800B50 = .rodata:0x80800B50; // type:object size:0x1C +lbl_80800B6C = .rodata:0x80800B6C; // type:object size:0x1C +lbl_80800B88 = .rodata:0x80800B88; // type:object size:0x1C +lbl_80800BA4 = .rodata:0x80800BA4; // type:object size:0x1C +lbl_80800BC0 = .rodata:0x80800BC0; // type:object size:0x100 data:4byte +lbl_80800CC0 = .rodata:0x80800CC0; // type:object size:0x40 +lbl_80800D00 = .rodata:0x80800D00; // type:object size:0x10 +ConfFileName = .rodata:0x80800D10; // type:object size:0x15 scope:local data:string +ProductInfoFileName = .rodata:0x80800D28; // type:object size:0x2A scope:local data:string +lbl_80800D58 = .rodata:0x80800D58; // type:object size:0x40 data:4byte +lbl_80800D98 = .rodata:0x80800D98; // type:object size:0x48 data:4byte +lbl_80800DE0 = .rodata:0x80800DE0; // type:object size:0x48 +lbl_80800E28 = .rodata:0x80800E28; // type:object size:0x30 +lbl_80800E58 = .rodata:0x80800E58; // type:object size:0x10 +lbl_80800E68 = .rodata:0x80800E68; // type:object size:0x18 +lbl_80800E80 = .rodata:0x80800E80; // type:object size:0x18 +lbl_80800E98 = .rodata:0x80800E98; // type:object size:0x40 data:4byte +lbl_80800ED8 = .rodata:0x80800ED8; // type:object size:0x4 data:string +lbl_80800EDC = .rodata:0x80800EDC; // type:object size:0x4 data:string +lbl_80800EE0 = .rodata:0x80800EE0; // type:object size:0x200 +lbl_808010E0 = .rodata:0x808010E0; // type:object size:0x30 +lbl_80801110 = .rodata:0x80801110; // type:object size:0x10 data:4byte +lbl_80801120 = .rodata:0x80801120; // type:object size:0x18 +lbl_80801138 = .rodata:0x80801138; // type:object size:0x28 data:4byte +lbl_80801160 = .rodata:0x80801160; // type:object size:0x74 +lbl_808011D4 = .rodata:0x808011D4; // type:object size:0x64 +lbl_80801238 = .rodata:0x80801238; // type:object size:0x10 +lbl_80801248 = .rodata:0x80801248; // type:object size:0x60 +lbl_808012A8 = .rodata:0x808012A8; // type:object size:0x40 +cp932_to_unicode = .rodata:0x808012E8; // type:object size:0x8B3 +lbl_80801B9B = .rodata:0x80801B9B; // type:object size:0x39C5 noreloc +lbl_80805560 = .rodata:0x80805560; // type:object size:0x30 +lbl_80805590 = .rodata:0x80805590; // type:object size:0x20 +lbl_808055B0 = .rodata:0x808055B0; // type:object size:0x10 data:4byte +lbl_808055C0 = .rodata:0x808055C0; // type:object size:0x10 data:4byte +lbl_808055D0 = .rodata:0x808055D0; // type:object size:0x10 data:4byte +lbl_808055E0 = .rodata:0x808055E0; // type:object size:0x2C +lbl_80805624 = .data:0x80805624; // type:object size:0x14 data:string +__vt__21ObjDirPtr<9ObjectDir> = .data:0x80805638; // type:object size:0x18 +__classname__21ObjDirPtr<9ObjectDir> = .data:0x80805650; // type:object size:0x15 data:string +__superclasses__21ObjDirPtr<9ObjectDir> = .data:0x80805668; // type:object size:0xC +__RTTI__21ObjDirPtr<9ObjectDir> = .data:0x80805678; // type:object size:0x8 +__vt__7Message = .data:0x80805680; // type:object size:0xC +__classname__7Message = .data:0x80805690; // type:object size:0x8 data:string +__RTTI__7Message = .data:0x80805698; // type:object size:0x8 +__vt__6ObjRef = .data:0x808056A0; // type:object size:0x18 +__classname__6ObjRef = .data:0x808056B8; // type:object size:0x7 data:string +__RTTI__6ObjRef = .data:0x808056C0; // type:object size:0x8 +__vt__8FilePath = .data:0x808056C8; // type:object size:0x10 +__classname__8FilePath = .data:0x808056D8; // type:object size:0x9 data:string +__superclasses__8FilePath = .data:0x808056E4; // type:object size:0x10 +__RTTI__8FilePath = .data:0x808056F8; // type:object size:0x8 +__classname__6String = .data:0x80805700; // type:object size:0x7 data:string +__superclasses__6String = .data:0x80805708; // type:object size:0xC +__RTTI__6String = .data:0x80805718; // type:object size:0x8 +__classname__10TextStream = .data:0x80805720; // type:object size:0xB data:string +__RTTI__10TextStream = .data:0x80805730; // type:object size:0x8 +__classname__9ObjectDir = .data:0x80805738; // type:object size:0xA data:string +__superclasses__9ObjectDir = .data:0x80805744; // type:object size:0x14 +__RTTI__9ObjectDir = .data:0x80805758; // type:object size:0x8 +__classname__Q23Hmx6Object = .data:0x80805760; // type:object size:0xB data:string +__superclasses__Q23Hmx6Object = .data:0x8080576C; // type:object size:0xC +__RTTI__Q23Hmx6Object = .data:0x80805778; // type:object size:0x8 +lbl_80805780 = .data:0x80805780; // type:object size:0x18 data:string +lbl_80805798 = .data:0x80805798; // type:object size:0x1C8 data:string +lbl_80805960 = .data:0x80805960; // type:object size:0x4 +__classname__13BandCharacter = .data:0x80805964; // type:object size:0xE data:string +__superclasses__13BandCharacter = .data:0x80805974; // type:object size:0x7C +__RTTI__13BandCharacter = .data:0x808059F0; // type:object size:0x8 +__classname__11MergeFilter = .data:0x808059F8; // type:object size:0xC data:string +__RTTI__11MergeFilter = .data:0x80805A08; // type:object size:0x8 +__classname__9Character = .data:0x80805A10; // type:object size:0xA data:string +__superclasses__9Character = .data:0x80805A1C; // type:object size:0x54 +__RTTI__9Character = .data:0x80805A70; // type:object size:0x8 +__classname__Q23Rnd23CompressTextureCallback = .data:0x80805A78; // type:object size:0x1D data:string +__RTTI__Q23Rnd23CompressTextureCallback = .data:0x80805A98; // type:object size:0x8 +__classname__6RndDir = .data:0x80805AA0; // type:object size:0x7 data:string +__superclasses__6RndDir = .data:0x80805AA8; // type:object size:0x50 +__RTTI__6RndDir = .data:0x80805AF8; // type:object size:0x8 +__classname__13RndAnimatable = .data:0x80805B00; // type:object size:0xE data:string +__superclasses__13RndAnimatable = .data:0x80805B10; // type:object size:0x18 +__RTTI__13RndAnimatable = .data:0x80805B28; // type:object size:0x8 +__classname__16RndTransformable = .data:0x80805B30; // type:object size:0x11 data:string +__superclasses__16RndTransformable = .data:0x80805B44; // type:object size:0x1C +__RTTI__16RndTransformable = .data:0x80805B60; // type:object size:0x8 +__classname__11RndDrawable = .data:0x80805B68; // type:object size:0xC data:string +__superclasses__11RndDrawable = .data:0x80805B74; // type:object size:0x1C +__RTTI__11RndDrawable = .data:0x80805B90; // type:object size:0x8 +__classname__16RndHighlightable = .data:0x80805B98; // type:object size:0x11 data:string +__superclasses__16RndHighlightable = .data:0x80805BAC; // type:object size:0x14 +__RTTI__16RndHighlightable = .data:0x80805BC0; // type:object size:0x8 +__classname__11RndPollable = .data:0x80805BC8; // type:object size:0xC data:string +__superclasses__11RndPollable = .data:0x80805BD4; // type:object size:0x14 +__RTTI__11RndPollable = .data:0x80805BE8; // type:object size:0x8 +__classname__12BandCharDesc = .data:0x80805BF0; // type:object size:0x10 +__superclasses__12BandCharDesc = .data:0x80805C00; // type:object size:0x20 +__RTTI__12BandCharDesc = .data:0x80805C20; // type:object size:0x8 +__classname__17FixedSizeSaveable = .data:0x80805C28; // type:object size:0x18 +__RTTI__17FixedSizeSaveable = .data:0x80805C40; // type:object size:0x8 +__classname__9MsgSource = .data:0x80805C48; // type:object size:0xC +__superclasses__9MsgSource = .data:0x80805C54; // type:object size:0x14 +__RTTI__9MsgSource = .data:0x80805C68; // type:object size:0x8 +lbl_80805C70 = .data:0x80805C70; // type:object size:0x8 +lbl_80805C78 = .data:0x80805C78; // type:object size:0x8 +lbl_80805C80 = .data:0x80805C80; // type:object size:0x8 data:string +lbl_80805C88 = .data:0x80805C88; // type:object size:0x23F8 +lbl_80808080 = .data:0x80808080; // type:object size:0x1 +lbl_80808081 = .data:0x80808081; // type:object size:0x3C7F data:byte noreloc +lbl_8080BD00 = .data:0x8080BD00; // type:object size:0x1E data:string +lbl_8080BD1E = .data:0x8080BD1E; // type:object size:0x26 data:string +lbl_8080BD44 = .data:0x8080BD44; // type:object size:0x2B data:string +lbl_8080BD6F = .data:0x8080BD6F; // type:object size:0x2C data:string +lbl_8080BD9B = .data:0x8080BD9B; // type:object size:0x1E data:string +lbl_8080BDB9 = .data:0x8080BDB9; // type:object size:0x23 data:string +lbl_8080BDDC = .data:0x8080BDDC; // type:object size:0x24 data:string +lbl_8080BE00 = .data:0x8080BE00; // type:object size:0x23 data:string +lbl_8080BE23 = .data:0x8080BE23; // type:object size:0x18 data:string +lbl_8080BE3B = .data:0x8080BE3B; // type:object size:0x1C data:string +lbl_8080BE57 = .data:0x8080BE57; // type:object size:0x27 data:string +lbl_8080BE7E = .data:0x8080BE7E; // type:object size:0x2A data:string +lbl_8080BEA8 = .data:0x8080BEA8; // type:object size:0x1E data:string +lbl_8080BEC6 = .data:0x8080BEC6; // type:object size:0x18 data:string +lbl_8080BEDE = .data:0x8080BEDE; // type:object size:0x15 data:string +lbl_8080BEF3 = .data:0x8080BEF3; // type:object size:0x15 data:string +lbl_8080BF08 = .data:0x8080BF08; // type:object size:0x18 data:string +lbl_8080BF20 = .data:0x8080BF20; // type:object size:0x17 data:string +lbl_8080BF37 = .data:0x8080BF37; // type:object size:0x22 data:string +lbl_8080BF59 = .data:0x8080BF59; // type:object size:0x1E data:string +lbl_8080BF77 = .data:0x8080BF77; // type:object size:0x17 data:string +lbl_8080BF8E = .data:0x8080BF8E; // type:object size:0x28 data:string +lbl_8080BFB6 = .data:0x8080BFB6; // type:object size:0x37 data:string +lbl_8080BFED = .data:0x8080BFED; // type:object size:0x28 data:string +lbl_8080C015 = .data:0x8080C015; // type:object size:0x2C data:string +lbl_8080C041 = .data:0x8080C041; // type:object size:0x2E data:string +lbl_8080C06F = .data:0x8080C06F; // type:object size:0x2B data:string +lbl_8080C09A = .data:0x8080C09A; // type:object size:0x27 data:string +lbl_8080C0C1 = .data:0x8080C0C1; // type:object size:0x2D data:string +lbl_8080C0EE = .data:0x8080C0EE; // type:object size:0x2D data:string +lbl_8080C11B = .data:0x8080C11B; // type:object size:0x2B data:string +lbl_8080C146 = .data:0x8080C146; // type:object size:0x27 data:string +lbl_8080C16D = .data:0x8080C16D; // type:object size:0x29 data:string +lbl_8080C196 = .data:0x8080C196; // type:object size:0x26 data:string +lbl_8080C1BC = .data:0x8080C1BC; // type:object size:0x1B data:string +lbl_8080C1D7 = .data:0x8080C1D7; // type:object size:0x1D data:string +lbl_8080C1F4 = .data:0x8080C1F4; // type:object size:0x22 data:string +lbl_8080C216 = .data:0x8080C216; // type:object size:0x16 data:string +lbl_8080C22C = .data:0x8080C22C; // type:object size:0x17 data:string +lbl_8080C243 = .data:0x8080C243; // type:object size:0x10 data:string +lbl_8080C253 = .data:0x8080C253; // type:object size:0x12 data:string +lbl_8080C265 = .data:0x8080C265; // type:object size:0x14 data:string +lbl_8080C279 = .data:0x8080C279; // type:object size:0x1A data:string +lbl_8080C293 = .data:0x8080C293; // type:object size:0x1A data:string +lbl_8080C2AD = .data:0x8080C2AD; // type:object size:0x14 data:string +lbl_8080C2C1 = .data:0x8080C2C1; // type:object size:0x12 data:string +lbl_8080C2D3 = .data:0x8080C2D3; // type:object size:0x19 data:string +lbl_8080C2EC = .data:0x8080C2EC; // type:object size:0x1F data:string +lbl_8080C30B = .data:0x8080C30B; // type:object size:0x12 data:string +lbl_8080C31D = .data:0x8080C31D; // type:object size:0x17 data:string +lbl_8080C334 = .data:0x8080C334; // type:object size:0x1A data:string +lbl_8080C34E = .data:0x8080C34E; // type:object size:0x1B data:string +lbl_8080C369 = .data:0x8080C369; // type:object size:0x17 data:string +lbl_8080C380 = .data:0x8080C380; // type:object size:0x2D data:string +lbl_8080C3AD = .data:0x8080C3AD; // type:object size:0x34 data:string +lbl_8080C3E1 = .data:0x8080C3E1; // type:object size:0x36 data:string +lbl_8080C417 = .data:0x8080C417; // type:object size:0x36 data:string +lbl_8080C44D = .data:0x8080C44D; // type:object size:0x38 data:string +lbl_8080C485 = .data:0x8080C485; // type:object size:0x39 data:string +lbl_8080C4BE = .data:0x8080C4BE; // type:object size:0x33 data:string +lbl_8080C4F1 = .data:0x8080C4F1; // type:object size:0x33 data:string +lbl_8080C524 = .data:0x8080C524; // type:object size:0x35 data:string +lbl_8080C559 = .data:0x8080C559; // type:object size:0x1B data:string +lbl_8080C574 = .data:0x8080C574; // type:object size:0x1F data:string +lbl_8080C593 = .data:0x8080C593; // type:object size:0x1D data:string +lbl_8080C5B0 = .data:0x8080C5B0; // type:object size:0x2D data:string +lbl_8080C5DD = .data:0x8080C5DD; // type:object size:0x21 data:string +lbl_8080C5FE = .data:0x8080C5FE; // type:object size:0x23 data:string +lbl_8080C621 = .data:0x8080C621; // type:object size:0x1D data:string +lbl_8080C63E = .data:0x8080C63E; // type:object size:0x25 data:string +lbl_8080C663 = .data:0x8080C663; // type:object size:0x1E data:string +lbl_8080C681 = .data:0x8080C681; // type:object size:0x1A data:string +lbl_8080C69B = .data:0x8080C69B; // type:object size:0x25 data:string +lbl_8080C6C0 = .data:0x8080C6C0; // type:object size:0x2C data:string +lbl_8080C6EC = .data:0x8080C6EC; // type:object size:0x1D data:string +lbl_8080C709 = .data:0x8080C709; // type:object size:0x19 data:string +lbl_8080C722 = .data:0x8080C722; // type:object size:0x17 data:string +lbl_8080C739 = .data:0x8080C739; // type:object size:0x1F data:string +lbl_8080C758 = .data:0x8080C758; // type:object size:0x1E data:string +lbl_8080C776 = .data:0x8080C776; // type:object size:0x29 data:string +lbl_8080C79F = .data:0x8080C79F; // type:object size:0x21 data:string +lbl_8080C7C0 = .data:0x8080C7C0; // type:object size:0x20 data:string +lbl_8080C7E0 = .data:0x8080C7E0; // type:object size:0x17 data:string +lbl_8080C7F7 = .data:0x8080C7F7; // type:object size:0x1E data:string +lbl_8080C815 = .data:0x8080C815; // type:object size:0x1D data:string +lbl_8080C832 = .data:0x8080C832; // type:object size:0x25 data:string +lbl_8080C857 = .data:0x8080C857; // type:object size:0x1F data:string +lbl_8080C876 = .data:0x8080C876; // type:object size:0x22 data:string +lbl_8080C898 = .data:0x8080C898; // type:object size:0x22 data:string +lbl_8080C8BA = .data:0x8080C8BA; // type:object size:0x21 data:string +lbl_8080C8DB = .data:0x8080C8DB; // type:object size:0x28 data:string +lbl_8080C903 = .data:0x8080C903; // type:object size:0x26 data:string +lbl_8080C929 = .data:0x8080C929; // type:object size:0x24 data:string +lbl_8080C94D = .data:0x8080C94D; // type:object size:0x24 data:string +lbl_8080C971 = .data:0x8080C971; // type:object size:0x21 data:string +lbl_8080C992 = .data:0x8080C992; // type:object size:0x21 data:string +lbl_8080C9B3 = .data:0x8080C9B3; // type:object size:0x24 data:string +lbl_8080C9D7 = .data:0x8080C9D7; // type:object size:0x24 data:string +lbl_8080C9FB = .data:0x8080C9FB; // type:object size:0x27 data:string +lbl_8080CA22 = .data:0x8080CA22; // type:object size:0x1F data:string +lbl_8080CA41 = .data:0x8080CA41; // type:object size:0x25 data:string +lbl_8080CA66 = .data:0x8080CA66; // type:object size:0x1D data:string +lbl_8080CA83 = .data:0x8080CA83; // type:object size:0x22 data:string +lbl_8080CAA5 = .data:0x8080CAA5; // type:object size:0x1B data:string +lbl_8080CAC0 = .data:0x8080CAC0; // type:object size:0x19 data:string +lbl_8080CAD9 = .data:0x8080CAD9; // type:object size:0x1D data:string +lbl_8080CAF6 = .data:0x8080CAF6; // type:object size:0x1B data:string +lbl_8080CB11 = .data:0x8080CB11; // type:object size:0x23 data:string +lbl_8080CB34 = .data:0x8080CB34; // type:object size:0x1E data:string +lbl_8080CB52 = .data:0x8080CB52; // type:object size:0x1E data:string +lbl_8080CB70 = .data:0x8080CB70; // type:object size:0x24 data:string +lbl_8080CB94 = .data:0x8080CB94; // type:object size:0x21 data:string +lbl_8080CBB5 = .data:0x8080CBB5; // type:object size:0x24 data:string +lbl_8080CBD9 = .data:0x8080CBD9; // type:object size:0x24 data:string +lbl_8080CBFD = .data:0x8080CBFD; // type:object size:0x31 data:string +lbl_8080CC2E = .data:0x8080CC2E; // type:object size:0x1F data:string +lbl_8080CC4D = .data:0x8080CC4D; // type:object size:0x2D data:string +lbl_8080CC7A = .data:0x8080CC7A; // type:object size:0x1D data:string +lbl_8080CC97 = .data:0x8080CC97; // type:object size:0x23 data:string +lbl_8080CCBA = .data:0x8080CCBA; // type:object size:0x29 data:string +lbl_8080CCE3 = .data:0x8080CCE3; // type:object size:0x15 data:string +lbl_8080CCF8 = .data:0x8080CCF8; // type:object size:0x11 data:string +lbl_8080CD09 = .data:0x8080CD09; // type:object size:0x15 data:string +lbl_8080CD1E = .data:0x8080CD1E; // type:object size:0x19 data:string +lbl_8080CD37 = .data:0x8080CD37; // type:object size:0x1C data:string +lbl_8080CD53 = .data:0x8080CD53; // type:object size:0x24 data:string +lbl_8080CD77 = .data:0x8080CD77; // type:object size:0x1B data:string +lbl_8080CD92 = .data:0x8080CD92; // type:object size:0x1E data:string +lbl_8080CDB0 = .data:0x8080CDB0; // type:object size:0x1C data:string +lbl_8080CDCC = .data:0x8080CDCC; // type:object size:0x1C data:string +lbl_8080CDE8 = .data:0x8080CDE8; // type:object size:0x1A data:string +lbl_8080CE02 = .data:0x8080CE02; // type:object size:0x1F data:string +lbl_8080CE21 = .data:0x8080CE21; // type:object size:0x16 data:string +lbl_8080CE37 = .data:0x8080CE37; // type:object size:0x1E data:string +lbl_8080CE55 = .data:0x8080CE55; // type:object size:0x1B data:string +lbl_8080CE70 = .data:0x8080CE70; // type:object size:0x18 data:string +lbl_8080CE88 = .data:0x8080CE88; // type:object size:0x16 data:string +lbl_8080CE9E = .data:0x8080CE9E; // type:object size:0x25 data:string +lbl_8080CEC3 = .data:0x8080CEC3; // type:object size:0x35 data:string +lbl_8080CEF8 = .data:0x8080CEF8; // type:object size:0x1D data:string +lbl_8080CF15 = .data:0x8080CF15; // type:object size:0x21 data:string +lbl_8080CF36 = .data:0x8080CF36; // type:object size:0x24 data:string +lbl_8080CF5A = .data:0x8080CF5A; // type:object size:0x2A data:string +lbl_8080CF84 = .data:0x8080CF84; // type:object size:0x23 data:string +lbl_8080CFA7 = .data:0x8080CFA7; // type:object size:0x1F data:string +lbl_8080CFC6 = .data:0x8080CFC6; // type:object size:0x1F data:string +lbl_8080CFE5 = .data:0x8080CFE5; // type:object size:0x20 data:string +lbl_8080D005 = .data:0x8080D005; // type:object size:0x23 data:string +lbl_8080D028 = .data:0x8080D028; // type:object size:0x20 data:string +lbl_8080D048 = .data:0x8080D048; // type:object size:0x1E data:string +lbl_8080D066 = .data:0x8080D066; // type:object size:0x1E data:string +lbl_8080D084 = .data:0x8080D084; // type:object size:0x21 data:string +lbl_8080D0A5 = .data:0x8080D0A5; // type:object size:0x29 data:string +lbl_8080D0CE = .data:0x8080D0CE; // type:object size:0x20 data:string +lbl_8080D0EE = .data:0x8080D0EE; // type:object size:0x22 data:string +lbl_8080D110 = .data:0x8080D110; // type:object size:0x22 data:string +lbl_8080D132 = .data:0x8080D132; // type:object size:0x24 data:string +lbl_8080D156 = .data:0x8080D156; // type:object size:0x1D data:string +lbl_8080D173 = .data:0x8080D173; // type:object size:0x1A data:string +lbl_8080D18D = .data:0x8080D18D; // type:object size:0x1E data:string +lbl_8080D1AB = .data:0x8080D1AB; // type:object size:0x23 data:string +lbl_8080D1CE = .data:0x8080D1CE; // type:object size:0x29 data:string +lbl_8080D1F7 = .data:0x8080D1F7; // type:object size:0x1F data:string +lbl_8080D216 = .data:0x8080D216; // type:object size:0x1C data:string +lbl_8080D232 = .data:0x8080D232; // type:object size:0x27 data:string +lbl_8080D259 = .data:0x8080D259; // type:object size:0x26 data:string +lbl_8080D27F = .data:0x8080D27F; // type:object size:0x2D data:string +lbl_8080D2AC = .data:0x8080D2AC; // type:object size:0x23 data:string +lbl_8080D2CF = .data:0x8080D2CF; // type:object size:0x26 data:string +lbl_8080D2F5 = .data:0x8080D2F5; // type:object size:0x1E data:string +lbl_8080D313 = .data:0x8080D313; // type:object size:0x1D data:string +lbl_8080D330 = .data:0x8080D330; // type:object size:0x22 data:string +lbl_8080D352 = .data:0x8080D352; // type:object size:0x26 data:string +lbl_8080D378 = .data:0x8080D378; // type:object size:0x1D data:string +lbl_8080D395 = .data:0x8080D395; // type:object size:0x1B data:string +lbl_8080D3B0 = .data:0x8080D3B0; // type:object size:0x26 data:string +lbl_8080D3D6 = .data:0x8080D3D6; // type:object size:0x1E data:string +lbl_8080D3F4 = .data:0x8080D3F4; // type:object size:0x1D data:string +lbl_8080D411 = .data:0x8080D411; // type:object size:0x1C data:string +lbl_8080D42D = .data:0x8080D42D; // type:object size:0x2A data:string +lbl_8080D457 = .data:0x8080D457; // type:object size:0x17 data:string +lbl_8080D46E = .data:0x8080D46E; // type:object size:0x18 data:string +lbl_8080D486 = .data:0x8080D486; // type:object size:0x1C data:string +lbl_8080D4A2 = .data:0x8080D4A2; // type:object size:0x19 data:string +lbl_8080D4BB = .data:0x8080D4BB; // type:object size:0x21 data:string +lbl_8080D4DC = .data:0x8080D4DC; // type:object size:0x20 data:string +lbl_8080D4FC = .data:0x8080D4FC; // type:object size:0x17 data:string +lbl_8080D513 = .data:0x8080D513; // type:object size:0x16 data:string +lbl_8080D529 = .data:0x8080D529; // type:object size:0x1D data:string +lbl_8080D546 = .data:0x8080D546; // type:object size:0x21 data:string +lbl_8080D567 = .data:0x8080D567; // type:object size:0x1C data:string +lbl_8080D583 = .data:0x8080D583; // type:object size:0x18 data:string +lbl_8080D59B = .data:0x8080D59B; // type:object size:0x1F data:string +lbl_8080D5BA = .data:0x8080D5BA; // type:object size:0x21 data:string +lbl_8080D5DB = .data:0x8080D5DB; // type:object size:0x1B data:string +lbl_8080D5F6 = .data:0x8080D5F6; // type:object size:0x1A data:string +lbl_8080D610 = .data:0x8080D610; // type:object size:0x20 data:string +lbl_8080D630 = .data:0x8080D630; // type:object size:0x2B data:string +lbl_8080D65B = .data:0x8080D65B; // type:object size:0x27 data:string +lbl_8080D682 = .data:0x8080D682; // type:object size:0x18 data:string +lbl_8080D69A = .data:0x8080D69A; // type:object size:0x2A data:string +lbl_8080D6C4 = .data:0x8080D6C4; // type:object size:0x21 data:string +lbl_8080D6E5 = .data:0x8080D6E5; // type:object size:0x2D data:string +lbl_8080D712 = .data:0x8080D712; // type:object size:0x2E data:string +lbl_8080D740 = .data:0x8080D740; // type:object size:0x2E data:string +lbl_8080D76E = .data:0x8080D76E; // type:object size:0x2F data:string +lbl_8080D79D = .data:0x8080D79D; // type:object size:0x30 data:string +lbl_8080D7CD = .data:0x8080D7CD; // type:object size:0x34 data:string +lbl_8080D801 = .data:0x8080D801; // type:object size:0x2E data:string +lbl_8080D82F = .data:0x8080D82F; // type:object size:0x31 data:string +lbl_8080D860 = .data:0x8080D860; // type:object size:0x32 data:string +lbl_8080D892 = .data:0x8080D892; // type:object size:0x33 data:string +lbl_8080D8C5 = .data:0x8080D8C5; // type:object size:0x31 data:string +lbl_8080D8F6 = .data:0x8080D8F6; // type:object size:0x2E data:string +lbl_8080D924 = .data:0x8080D924; // type:object size:0x2D data:string +lbl_8080D951 = .data:0x8080D951; // type:object size:0x28 data:string +lbl_8080D979 = .data:0x8080D979; // type:object size:0x1F data:string +lbl_8080D998 = .data:0x8080D998; // type:object size:0x20 data:string +lbl_8080D9B8 = .data:0x8080D9B8; // type:object size:0x24 data:string +lbl_8080D9DC = .data:0x8080D9DC; // type:object size:0x1B data:string +lbl_8080D9F7 = .data:0x8080D9F7; // type:object size:0x2D data:string +lbl_8080DA24 = .data:0x8080DA24; // type:object size:0x2E data:string +lbl_8080DA52 = .data:0x8080DA52; // type:object size:0x2C data:string +lbl_8080DA7E = .data:0x8080DA7E; // type:object size:0x2C data:string +lbl_8080DAAA = .data:0x8080DAAA; // type:object size:0x3C data:string +lbl_8080DAE6 = .data:0x8080DAE6; // type:object size:0x2D data:string +lbl_8080DB13 = .data:0x8080DB13; // type:object size:0x2C data:string +lbl_8080DB3F = .data:0x8080DB3F; // type:object size:0x25 data:string +lbl_8080DB64 = .data:0x8080DB64; // type:object size:0x2D data:string +lbl_8080DB91 = .data:0x8080DB91; // type:object size:0x2F data:string +lbl_8080DBC0 = .data:0x8080DBC0; // type:object size:0x2E data:string +lbl_8080DBEE = .data:0x8080DBEE; // type:object size:0x30 data:string +lbl_8080DC1E = .data:0x8080DC1E; // type:object size:0x2E data:string +lbl_8080DC4C = .data:0x8080DC4C; // type:object size:0x2F data:string +lbl_8080DC7B = .data:0x8080DC7B; // type:object size:0x2A data:string +lbl_8080DCA5 = .data:0x8080DCA5; // type:object size:0x2D data:string +lbl_8080DCD2 = .data:0x8080DCD2; // type:object size:0x2B data:string +lbl_8080DCFD = .data:0x8080DCFD; // type:object size:0x2C data:string +lbl_8080DD29 = .data:0x8080DD29; // type:object size:0x29 data:string +lbl_8080DD52 = .data:0x8080DD52; // type:object size:0x2B data:string +lbl_8080DD7D = .data:0x8080DD7D; // type:object size:0x2B data:string +lbl_8080DDA8 = .data:0x8080DDA8; // type:object size:0x2C data:string +lbl_8080DDD4 = .data:0x8080DDD4; // type:object size:0x36 data:string +lbl_8080DE0A = .data:0x8080DE0A; // type:object size:0x2C data:string +lbl_8080DE36 = .data:0x8080DE36; // type:object size:0x2C data:string +lbl_8080DE62 = .data:0x8080DE62; // type:object size:0x32 data:string +lbl_8080DE94 = .data:0x8080DE94; // type:object size:0x2F data:string +lbl_8080DEC3 = .data:0x8080DEC3; // type:object size:0x2D data:string +lbl_8080DEF0 = .data:0x8080DEF0; // type:object size:0x30 data:string +lbl_8080DF20 = .data:0x8080DF20; // type:object size:0x2F data:string +lbl_8080DF4F = .data:0x8080DF4F; // type:object size:0x2C data:string +lbl_8080DF7B = .data:0x8080DF7B; // type:object size:0x32 data:string +lbl_8080DFAD = .data:0x8080DFAD; // type:object size:0x2F data:string +lbl_8080DFDC = .data:0x8080DFDC; // type:object size:0x2B data:string +lbl_8080E007 = .data:0x8080E007; // type:object size:0x2E data:string +lbl_8080E035 = .data:0x8080E035; // type:object size:0x2B data:string +lbl_8080E060 = .data:0x8080E060; // type:object size:0x38 data:string +lbl_8080E098 = .data:0x8080E098; // type:object size:0x38 data:string +lbl_8080E0D0 = .data:0x8080E0D0; // type:object size:0x35 data:string +lbl_8080E105 = .data:0x8080E105; // type:object size:0x39 data:string +lbl_8080E13E = .data:0x8080E13E; // type:object size:0x3C data:string +lbl_8080E17A = .data:0x8080E17A; // type:object size:0x3E data:string +lbl_8080E1B8 = .data:0x8080E1B8; // type:object size:0x38 data:string +lbl_8080E1F0 = .data:0x8080E1F0; // type:object size:0x2C data:string +lbl_8080E21C = .data:0x8080E21C; // type:object size:0x41 data:string +lbl_8080E25D = .data:0x8080E25D; // type:object size:0x2F data:string +lbl_8080E28C = .data:0x8080E28C; // type:object size:0x33 data:string +lbl_8080E2BF = .data:0x8080E2BF; // type:object size:0x2F data:string +lbl_8080E2EE = .data:0x8080E2EE; // type:object size:0x18 data:string +lbl_8080E306 = .data:0x8080E306; // type:object size:0x1C data:string +lbl_8080E322 = .data:0x8080E322; // type:object size:0x22 data:string +lbl_8080E344 = .data:0x8080E344; // type:object size:0x20 data:string +lbl_8080E364 = .data:0x8080E364; // type:object size:0x1E data:string +lbl_8080E382 = .data:0x8080E382; // type:object size:0x23 data:string +lbl_8080E3A5 = .data:0x8080E3A5; // type:object size:0x21 data:string +lbl_8080E3C6 = .data:0x8080E3C6; // type:object size:0x26 data:string +lbl_8080E3EC = .data:0x8080E3EC; // type:object size:0x23 data:string +lbl_8080E40F = .data:0x8080E40F; // type:object size:0x27 data:string +lbl_8080E436 = .data:0x8080E436; // type:object size:0x17 data:string +lbl_8080E44D = .data:0x8080E44D; // type:object size:0x24 data:string +lbl_8080E471 = .data:0x8080E471; // type:object size:0x24 data:string +lbl_8080E495 = .data:0x8080E495; // type:object size:0x24 data:string +lbl_8080E4B9 = .data:0x8080E4B9; // type:object size:0x24 data:string +lbl_8080E4DD = .data:0x8080E4DD; // type:object size:0x24 data:string +lbl_8080E501 = .data:0x8080E501; // type:object size:0x42 data:string +lbl_8080E543 = .data:0x8080E543; // type:object size:0x41 data:string +lbl_8080E584 = .data:0x8080E584; // type:object size:0x44 data:string +lbl_8080E5C8 = .data:0x8080E5C8; // type:object size:0x4A data:string +lbl_8080E612 = .data:0x8080E612; // type:object size:0x4A data:string +lbl_8080E65C = .data:0x8080E65C; // type:object size:0x54 data:string +lbl_8080E6B0 = .data:0x8080E6B0; // type:object size:0x40 data:string +lbl_8080E6F0 = .data:0x8080E6F0; // type:object size:0x40 data:string +lbl_8080E730 = .data:0x8080E730; // type:object size:0x4A data:string +lbl_8080E77A = .data:0x8080E77A; // type:object size:0x52 data:string +lbl_8080E7CC = .data:0x8080E7CC; // type:object size:0x52 data:string +lbl_8080E81E = .data:0x8080E81E; // type:object size:0x5C data:string +lbl_8080E87A = .data:0x8080E87A; // type:object size:0x4E data:string +lbl_8080E8C8 = .data:0x8080E8C8; // type:object size:0x44 data:string +lbl_8080E90C = .data:0x8080E90C; // type:object size:0x44 data:string +lbl_8080E950 = .data:0x8080E950; // type:object size:0x56 data:string +lbl_8080E9A6 = .data:0x8080E9A6; // type:object size:0x42 data:string +lbl_8080E9E8 = .data:0x8080E9E8; // type:object size:0x48 data:string +lbl_8080EA30 = .data:0x8080EA30; // type:object size:0x5C data:string +lbl_8080EA8C = .data:0x8080EA8C; // type:object size:0x3C data:string +lbl_8080EAC8 = .data:0x8080EAC8; // type:object size:0x40 data:string +lbl_8080EB08 = .data:0x8080EB08; // type:object size:0x64 data:string +lbl_8080EB6C = .data:0x8080EB6C; // type:object size:0x58 data:string +lbl_8080EBC4 = .data:0x8080EBC4; // type:object size:0x3A data:string +lbl_8080EBFE = .data:0x8080EBFE; // type:object size:0x3E data:string +lbl_8080EC3C = .data:0x8080EC3C; // type:object size:0x50 data:string +lbl_8080EC8C = .data:0x8080EC8C; // type:object size:0x5A data:string +lbl_8080ECE6 = .data:0x8080ECE6; // type:object size:0x56 data:string +lbl_8080ED3C = .data:0x8080ED3C; // type:object size:0x44 data:string +lbl_8080ED80 = .data:0x8080ED80; // type:object size:0x44 data:string +lbl_8080EDC4 = .data:0x8080EDC4; // type:object size:0x4E data:string +lbl_8080EE12 = .data:0x8080EE12; // type:object size:0x4E data:string +lbl_8080EE60 = .data:0x8080EE60; // type:object size:0x46 data:string +lbl_8080EEA6 = .data:0x8080EEA6; // type:object size:0x46 data:string +lbl_8080EEEC = .data:0x8080EEEC; // type:object size:0x5A data:string +lbl_8080EF46 = .data:0x8080EF46; // type:object size:0x68 data:string +lbl_8080EFAE = .data:0x8080EFAE; // type:object size:0x52 data:string +lbl_8080F000 = .data:0x8080F000; // type:object size:0x44 data:string +lbl_8080F044 = .data:0x8080F044; // type:object size:0x5C data:string +lbl_8080F0A0 = .data:0x8080F0A0; // type:object size:0x5C data:string +lbl_8080F0FC = .data:0x8080F0FC; // type:object size:0x4C data:string +lbl_8080F148 = .data:0x8080F148; // type:object size:0x40 data:string +lbl_8080F188 = .data:0x8080F188; // type:object size:0x52 data:string +lbl_8080F1DA = .data:0x8080F1DA; // type:object size:0x50 data:string +lbl_8080F22A = .data:0x8080F22A; // type:object size:0x42 data:string +lbl_8080F26C = .data:0x8080F26C; // type:object size:0x56 data:string +lbl_8080F2C2 = .data:0x8080F2C2; // type:object size:0x4C data:string +lbl_8080F30E = .data:0x8080F30E; // type:object size:0x1F data:string +lbl_8080F32D = .data:0x8080F32D; // type:object size:0x22 data:string +lbl_8080F34F = .data:0x8080F34F; // type:object size:0x1E data:string +lbl_8080F36D = .data:0x8080F36D; // type:object size:0x34 data:string +lbl_8080F3A1 = .data:0x8080F3A1; // type:object size:0x34 data:string +lbl_8080F3D5 = .data:0x8080F3D5; // type:object size:0x34 data:string +lbl_8080F409 = .data:0x8080F409; // type:object size:0x34 data:string +lbl_8080F43D = .data:0x8080F43D; // type:object size:0x34 data:string +lbl_8080F471 = .data:0x8080F471; // type:object size:0x34 data:string +lbl_8080F4A5 = .data:0x8080F4A5; // type:object size:0x34 data:string +lbl_8080F4D9 = .data:0x8080F4D9; // type:object size:0x34 data:string +lbl_8080F50D = .data:0x8080F50D; // type:object size:0x34 data:string +lbl_8080F541 = .data:0x8080F541; // type:object size:0x37 data:string +lbl_8080F578 = .data:0x8080F578; // type:object size:0x37 data:string +lbl_8080F5AF = .data:0x8080F5AF; // type:object size:0x37 data:string +lbl_8080F5E6 = .data:0x8080F5E6; // type:object size:0x37 data:string +lbl_8080F61D = .data:0x8080F61D; // type:object size:0x37 data:string +lbl_8080F654 = .data:0x8080F654; // type:object size:0x37 data:string +lbl_8080F68B = .data:0x8080F68B; // type:object size:0x37 data:string +lbl_8080F6C2 = .data:0x8080F6C2; // type:object size:0x37 data:string +lbl_8080F6F9 = .data:0x8080F6F9; // type:object size:0x37 data:string +lbl_8080F730 = .data:0x8080F730; // type:object size:0x37 data:string +lbl_8080F767 = .data:0x8080F767; // type:object size:0x37 data:string +lbl_8080F79E = .data:0x8080F79E; // type:object size:0x37 data:string +lbl_8080F7D5 = .data:0x8080F7D5; // type:object size:0x37 data:string +lbl_8080F80C = .data:0x8080F80C; // type:object size:0x37 data:string +lbl_8080F843 = .data:0x8080F843; // type:object size:0x37 data:string +lbl_8080F87A = .data:0x8080F87A; // type:object size:0x37 data:string +lbl_8080F8B1 = .data:0x8080F8B1; // type:object size:0x37 data:string +lbl_8080F8E8 = .data:0x8080F8E8; // type:object size:0x39 data:string +lbl_8080F921 = .data:0x8080F921; // type:object size:0x39 data:string +lbl_8080F95A = .data:0x8080F95A; // type:object size:0x39 data:string +lbl_8080F993 = .data:0x8080F993; // type:object size:0x39 data:string +lbl_8080F9CC = .data:0x8080F9CC; // type:object size:0x39 data:string +lbl_8080FA05 = .data:0x8080FA05; // type:object size:0x39 data:string +lbl_8080FA3E = .data:0x8080FA3E; // type:object size:0x39 data:string +lbl_8080FA77 = .data:0x8080FA77; // type:object size:0x39 data:string +lbl_8080FAB0 = .data:0x8080FAB0; // type:object size:0x39 data:string +lbl_8080FAE9 = .data:0x8080FAE9; // type:object size:0x39 data:string +lbl_8080FB22 = .data:0x8080FB22; // type:object size:0x39 data:string +lbl_8080FB5B = .data:0x8080FB5B; // type:object size:0x39 data:string +lbl_8080FB94 = .data:0x8080FB94; // type:object size:0x34 data:string +lbl_8080FBC8 = .data:0x8080FBC8; // type:object size:0x34 data:string +lbl_8080FBFC = .data:0x8080FBFC; // type:object size:0x34 data:string +lbl_8080FC30 = .data:0x8080FC30; // type:object size:0x34 data:string +lbl_8080FC64 = .data:0x8080FC64; // type:object size:0x34 data:string +lbl_8080FC98 = .data:0x8080FC98; // type:object size:0x34 data:string +lbl_8080FCCC = .data:0x8080FCCC; // type:object size:0x34 data:string +lbl_8080FD00 = .data:0x8080FD00; // type:object size:0x28 data:string +lbl_8080FD28 = .data:0x8080FD28; // type:object size:0x2A data:string +lbl_8080FD52 = .data:0x8080FD52; // type:object size:0x1E data:string +lbl_8080FD70 = .data:0x8080FD70; // type:object size:0x22 data:string +lbl_8080FD92 = .data:0x8080FD92; // type:object size:0x30 data:string +lbl_8080FDC2 = .data:0x8080FDC2; // type:object size:0x32 data:string +lbl_8080FDF4 = .data:0x8080FDF4; // type:object size:0x28 data:string +lbl_8080FE1C = .data:0x8080FE1C; // type:object size:0x2E data:string +lbl_8080FE4A = .data:0x8080FE4A; // type:object size:0x2A data:string +lbl_8080FE74 = .data:0x8080FE74; // type:object size:0x28 data:string +lbl_8080FE9C = .data:0x8080FE9C; // type:object size:0x22 data:string +lbl_8080FEBE = .data:0x8080FEBE; // type:object size:0x22 data:string +lbl_8080FEE0 = .data:0x8080FEE0; // type:object size:0x20 data:string +lbl_8080FF00 = .data:0x8080FF00; // type:object size:0x2E data:string +lbl_8080FF2E = .data:0x8080FF2E; // type:object size:0x22 data:string +lbl_8080FF50 = .data:0x8080FF50; // type:object size:0x22 data:string +lbl_8080FF72 = .data:0x8080FF72; // type:object size:0x2E data:string +lbl_8080FFA0 = .data:0x8080FFA0; // type:object size:0x2A data:string +lbl_8080FFCA = .data:0x8080FFCA; // type:object size:0x22 data:string +lbl_8080FFEC = .data:0x8080FFEC; // type:object size:0x36 data:string +lbl_80810022 = .data:0x80810022; // type:object size:0x1A data:string +lbl_8081003C = .data:0x8081003C; // type:object size:0x36 data:string +lbl_80810072 = .data:0x80810072; // type:object size:0x22 data:string +lbl_80810094 = .data:0x80810094; // type:object size:0x2A data:string +lbl_808100BE = .data:0x808100BE; // type:object size:0x1A data:string +lbl_808100D8 = .data:0x808100D8; // type:object size:0x1E data:string +lbl_808100F6 = .data:0x808100F6; // type:object size:0x1C data:string +lbl_80810112 = .data:0x80810112; // type:object size:0x26 data:string +lbl_80810138 = .data:0x80810138; // type:object size:0x32 data:string +lbl_8081016A = .data:0x8081016A; // type:object size:0x26 data:string +lbl_80810190 = .data:0x80810190; // type:object size:0x26 data:string +lbl_808101B6 = .data:0x808101B6; // type:object size:0x2A data:string +lbl_808101E0 = .data:0x808101E0; // type:object size:0x1E data:string +lbl_808101FE = .data:0x808101FE; // type:object size:0x2C data:string +lbl_8081022A = .data:0x8081022A; // type:object size:0x26 data:string +lbl_80810250 = .data:0x80810250; // type:object size:0x2A data:string +lbl_8081027A = .data:0x8081027A; // type:object size:0x1C data:string +lbl_80810296 = .data:0x80810296; // type:object size:0x28 data:string +lbl_808102BE = .data:0x808102BE; // type:object size:0x24 data:string +lbl_808102E2 = .data:0x808102E2; // type:object size:0x28 data:string +lbl_8081030A = .data:0x8081030A; // type:object size:0x2C data:string +lbl_80810336 = .data:0x80810336; // type:object size:0x2E data:string +lbl_80810364 = .data:0x80810364; // type:object size:0x2A data:string +lbl_8081038E = .data:0x8081038E; // type:object size:0x30 data:string +lbl_808103BE = .data:0x808103BE; // type:object size:0x22 data:string +lbl_808103E0 = .data:0x808103E0; // type:object size:0x18 data:string +lbl_808103F8 = .data:0x808103F8; // type:object size:0x20 data:string +lbl_80810418 = .data:0x80810418; // type:object size:0x2C data:string +lbl_80810444 = .data:0x80810444; // type:object size:0x18 data:string +lbl_8081045C = .data:0x8081045C; // type:object size:0x1E data:string +lbl_8081047A = .data:0x8081047A; // type:object size:0x20 data:string +lbl_8081049A = .data:0x8081049A; // type:object size:0x28 data:string +lbl_808104C2 = .data:0x808104C2; // type:object size:0x2C data:string +lbl_808104EE = .data:0x808104EE; // type:object size:0x2A data:string +lbl_80810518 = .data:0x80810518; // type:object size:0x22 data:string +lbl_8081053A = .data:0x8081053A; // type:object size:0x1C data:string +lbl_80810556 = .data:0x80810556; // type:object size:0x2E data:string +lbl_80810584 = .data:0x80810584; // type:object size:0x2C data:string +lbl_808105B0 = .data:0x808105B0; // type:object size:0x20 data:string +lbl_808105D0 = .data:0x808105D0; // type:object size:0x18 data:string +lbl_808105E8 = .data:0x808105E8; // type:object size:0x2E data:string +lbl_80810616 = .data:0x80810616; // type:object size:0x20 data:string +lbl_80810636 = .data:0x80810636; // type:object size:0x2E data:string +lbl_80810664 = .data:0x80810664; // type:object size:0x18 data:string +lbl_8081067C = .data:0x8081067C; // type:object size:0x24 data:string +lbl_808106A0 = .data:0x808106A0; // type:object size:0x22 data:string +lbl_808106C2 = .data:0x808106C2; // type:object size:0x38 data:string +lbl_808106FA = .data:0x808106FA; // type:object size:0x2C data:string +lbl_80810726 = .data:0x80810726; // type:object size:0x2C data:string +lbl_80810752 = .data:0x80810752; // type:object size:0x2C data:string +lbl_8081077E = .data:0x8081077E; // type:object size:0x24 data:string +lbl_808107A2 = .data:0x808107A2; // type:object size:0x2E data:string +lbl_808107D0 = .data:0x808107D0; // type:object size:0x32 data:string +lbl_80810802 = .data:0x80810802; // type:object size:0x1A data:string +lbl_8081081C = .data:0x8081081C; // type:object size:0x2E data:string +lbl_8081084A = .data:0x8081084A; // type:object size:0x2A data:string +lbl_80810874 = .data:0x80810874; // type:object size:0x1C data:string +lbl_80810890 = .data:0x80810890; // type:object size:0x2A data:string +lbl_808108BA = .data:0x808108BA; // type:object size:0x2E data:string +lbl_808108E8 = .data:0x808108E8; // type:object size:0x33 data:string +lbl_8081091B = .data:0x8081091B; // type:object size:0x29 data:string +lbl_80810944 = .data:0x80810944; // type:object size:0x3B data:string +lbl_8081097F = .data:0x8081097F; // type:object size:0x2F data:string +lbl_808109AE = .data:0x808109AE; // type:object size:0x41 data:string +lbl_808109EF = .data:0x808109EF; // type:object size:0x31 data:string +lbl_80810A20 = .data:0x80810A20; // type:object size:0x37 data:string +lbl_80810A57 = .data:0x80810A57; // type:object size:0x31 data:string +lbl_80810A88 = .data:0x80810A88; // type:object size:0x29 data:string +lbl_80810AB1 = .data:0x80810AB1; // type:object size:0x3D data:string +lbl_80810AEE = .data:0x80810AEE; // type:object size:0x47 data:string +lbl_80810B35 = .data:0x80810B35; // type:object size:0x39 data:string +lbl_80810B6E = .data:0x80810B6E; // type:object size:0x27 data:string +lbl_80810B95 = .data:0x80810B95; // type:object size:0x31 data:string +lbl_80810BC6 = .data:0x80810BC6; // type:object size:0x2F data:string +lbl_80810BF5 = .data:0x80810BF5; // type:object size:0x35 data:string +lbl_80810C2A = .data:0x80810C2A; // type:object size:0x3F data:string +lbl_80810C69 = .data:0x80810C69; // type:object size:0x41 data:string +lbl_80810CAA = .data:0x80810CAA; // type:object size:0x31 data:string +lbl_80810CDB = .data:0x80810CDB; // type:object size:0x39 data:string +lbl_80810D14 = .data:0x80810D14; // type:object size:0x37 data:string +lbl_80810D4B = .data:0x80810D4B; // type:object size:0x3D data:string +lbl_80810D88 = .data:0x80810D88; // type:object size:0x35 data:string +lbl_80810DBD = .data:0x80810DBD; // type:object size:0x2D data:string +lbl_80810DEA = .data:0x80810DEA; // type:object size:0x37 data:string +lbl_80810E21 = .data:0x80810E21; // type:object size:0x43 data:string +lbl_80810E64 = .data:0x80810E64; // type:object size:0x41 data:string +lbl_80810EA5 = .data:0x80810EA5; // type:object size:0x33 data:string +lbl_80810ED8 = .data:0x80810ED8; // type:object size:0x31 data:string +lbl_80810F09 = .data:0x80810F09; // type:object size:0x3B data:string +lbl_80810F44 = .data:0x80810F44; // type:object size:0x2B data:string +lbl_80810F6F = .data:0x80810F6F; // type:object size:0x2B data:string +lbl_80810F9A = .data:0x80810F9A; // type:object size:0x37 data:string +lbl_80810FD1 = .data:0x80810FD1; // type:object size:0x35 data:string +lbl_80811006 = .data:0x80811006; // type:object size:0x31 data:string +lbl_80811037 = .data:0x80811037; // type:object size:0x2F data:string +lbl_80811066 = .data:0x80811066; // type:object size:0x2B data:string +lbl_80811091 = .data:0x80811091; // type:object size:0x33 data:string +lbl_808110C4 = .data:0x808110C4; // type:object size:0x39 data:string +lbl_808110FD = .data:0x808110FD; // type:object size:0x29 data:string +lbl_80811126 = .data:0x80811126; // type:object size:0x3F data:string +lbl_80811165 = .data:0x80811165; // type:object size:0x27 data:string +lbl_8081118C = .data:0x8081118C; // type:object size:0x2F data:string +lbl_808111BB = .data:0x808111BB; // type:object size:0x35 data:string +lbl_808111F0 = .data:0x808111F0; // type:object size:0x31 data:string +lbl_80811221 = .data:0x80811221; // type:object size:0x31 data:string +lbl_80811252 = .data:0x80811252; // type:object size:0x37 data:string +lbl_80811289 = .data:0x80811289; // type:object size:0x2F data:string +lbl_808112B8 = .data:0x808112B8; // type:object size:0x33 data:string +lbl_808112EB = .data:0x808112EB; // type:object size:0x33 data:string +lbl_8081131E = .data:0x8081131E; // type:object size:0x29 data:string +lbl_80811347 = .data:0x80811347; // type:object size:0x37 data:string +lbl_8081137E = .data:0x8081137E; // type:object size:0x3B data:string +lbl_808113B9 = .data:0x808113B9; // type:object size:0x37 data:string +lbl_808113F0 = .data:0x808113F0; // type:object size:0x2B data:string +lbl_8081141B = .data:0x8081141B; // type:object size:0x39 data:string +lbl_80811454 = .data:0x80811454; // type:object size:0x25 data:string +lbl_80811479 = .data:0x80811479; // type:object size:0x33 data:string +lbl_808114AC = .data:0x808114AC; // type:object size:0x31 data:string +lbl_808114DD = .data:0x808114DD; // type:object size:0x25 data:string +lbl_80811502 = .data:0x80811502; // type:object size:0x43 data:string +lbl_80811545 = .data:0x80811545; // type:object size:0x37 data:string +lbl_8081157C = .data:0x8081157C; // type:object size:0x2F data:string +lbl_808115AB = .data:0x808115AB; // type:object size:0x43 data:string +lbl_808115EE = .data:0x808115EE; // type:object size:0x41 data:string +lbl_8081162F = .data:0x8081162F; // type:object size:0x2D data:string +lbl_8081165C = .data:0x8081165C; // type:object size:0x3F data:string +lbl_8081169B = .data:0x8081169B; // type:object size:0x49 data:string +lbl_808116E4 = .data:0x808116E4; // type:object size:0x31 data:string +lbl_80811715 = .data:0x80811715; // type:object size:0x3F data:string +lbl_80811754 = .data:0x80811754; // type:object size:0x2F data:string +lbl_80811783 = .data:0x80811783; // type:object size:0x37 data:string +lbl_808117BA = .data:0x808117BA; // type:object size:0x29 data:string +lbl_808117E3 = .data:0x808117E3; // type:object size:0x3D data:string +lbl_80811820 = .data:0x80811820; // type:object size:0x2D data:string +lbl_8081184D = .data:0x8081184D; // type:object size:0x2F data:string +lbl_8081187C = .data:0x8081187C; // type:object size:0x39 data:string +lbl_808118B5 = .data:0x808118B5; // type:object size:0x3B data:string +lbl_808118F0 = .data:0x808118F0; // type:object size:0x31 data:string +lbl_80811921 = .data:0x80811921; // type:object size:0x39 data:string +lbl_8081195A = .data:0x8081195A; // type:object size:0x27 data:string +lbl_80811981 = .data:0x80811981; // type:object size:0x49 data:string +lbl_808119CA = .data:0x808119CA; // type:object size:0x3B data:string +lbl_80811A05 = .data:0x80811A05; // type:object size:0x3B data:string +lbl_80811A40 = .data:0x80811A40; // type:object size:0x35 data:string +lbl_80811A75 = .data:0x80811A75; // type:object size:0x39 data:string +lbl_80811AAE = .data:0x80811AAE; // type:object size:0x3D data:string +lbl_80811AEB = .data:0x80811AEB; // type:object size:0x41 data:string +lbl_80811B2C = .data:0x80811B2C; // type:object size:0x25 data:string +lbl_80811B51 = .data:0x80811B51; // type:object size:0x47 data:string +lbl_80811B98 = .data:0x80811B98; // type:object size:0x37 data:string +lbl_80811BCF = .data:0x80811BCF; // type:object size:0x2B data:string +lbl_80811BFA = .data:0x80811BFA; // type:object size:0x25 data:string +lbl_80811C1F = .data:0x80811C1F; // type:object size:0x29 data:string +lbl_80811C48 = .data:0x80811C48; // type:object size:0x3B data:string +lbl_80811C83 = .data:0x80811C83; // type:object size:0x27 data:string +lbl_80811CAA = .data:0x80811CAA; // type:object size:0x35 data:string +lbl_80811CDF = .data:0x80811CDF; // type:object size:0x29 data:string +lbl_80811D08 = .data:0x80811D08; // type:object size:0x3F data:string +lbl_80811D47 = .data:0x80811D47; // type:object size:0x2F data:string +lbl_80811D76 = .data:0x80811D76; // type:object size:0x4B data:string +lbl_80811DC1 = .data:0x80811DC1; // type:object size:0x23 data:string +lbl_80811DE4 = .data:0x80811DE4; // type:object size:0x2D data:string +lbl_80811E11 = .data:0x80811E11; // type:object size:0x33 data:string +lbl_80811E44 = .data:0x80811E44; // type:object size:0x33 data:string +lbl_80811E77 = .data:0x80811E77; // type:object size:0x35 data:string +lbl_80811EAC = .data:0x80811EAC; // type:object size:0x3F data:string +lbl_80811EEB = .data:0x80811EEB; // type:object size:0x37 data:string +lbl_80811F22 = .data:0x80811F22; // type:object size:0x43 data:string +lbl_80811F65 = .data:0x80811F65; // type:object size:0x2F data:string +lbl_80811F94 = .data:0x80811F94; // type:object size:0x3F data:string +lbl_80811FD3 = .data:0x80811FD3; // type:object size:0x31 data:string +lbl_80812004 = .data:0x80812004; // type:object size:0x43 data:string +lbl_80812047 = .data:0x80812047; // type:object size:0x3D data:string +lbl_80812084 = .data:0x80812084; // type:object size:0x43 data:string +lbl_808120C7 = .data:0x808120C7; // type:object size:0x2B data:string +lbl_808120F2 = .data:0x808120F2; // type:object size:0x2D data:string +lbl_8081211F = .data:0x8081211F; // type:object size:0x2B data:string +lbl_8081214A = .data:0x8081214A; // type:object size:0x39 data:string +lbl_80812183 = .data:0x80812183; // type:object size:0x2B data:string +lbl_808121AE = .data:0x808121AE; // type:object size:0x3D data:string +lbl_808121EB = .data:0x808121EB; // type:object size:0x39 data:string +lbl_80812224 = .data:0x80812224; // type:object size:0x37 data:string +lbl_8081225B = .data:0x8081225B; // type:object size:0x3B data:string +lbl_80812296 = .data:0x80812296; // type:object size:0x34 data:string +lbl_808122CA = .data:0x808122CA; // type:object size:0x39 data:string +lbl_80812303 = .data:0x80812303; // type:object size:0x33 data:string +lbl_80812336 = .data:0x80812336; // type:object size:0x35 data:string +lbl_8081236B = .data:0x8081236B; // type:object size:0x25 data:string +lbl_80812390 = .data:0x80812390; // type:object size:0x25 data:string +lbl_808123B5 = .data:0x808123B5; // type:object size:0x2D data:string +lbl_808123E2 = .data:0x808123E2; // type:object size:0x3D data:string +lbl_8081241F = .data:0x8081241F; // type:object size:0x2D data:string +lbl_8081244C = .data:0x8081244C; // type:object size:0x35 data:string +lbl_80812481 = .data:0x80812481; // type:object size:0x3F data:string +lbl_808124C0 = .data:0x808124C0; // type:object size:0x37 data:string +lbl_808124F7 = .data:0x808124F7; // type:object size:0x33 data:string +lbl_8081252A = .data:0x8081252A; // type:object size:0x33 data:string +lbl_8081255D = .data:0x8081255D; // type:object size:0x33 data:string +lbl_80812590 = .data:0x80812590; // type:object size:0x3F data:string +lbl_808125CF = .data:0x808125CF; // type:object size:0x2F data:string +lbl_808125FE = .data:0x808125FE; // type:object size:0x2D data:string +lbl_8081262B = .data:0x8081262B; // type:object size:0x43 data:string +lbl_8081266E = .data:0x8081266E; // type:object size:0x35 data:string +lbl_808126A3 = .data:0x808126A3; // type:object size:0x37 data:string +lbl_808126DA = .data:0x808126DA; // type:object size:0x3D data:string +lbl_80812717 = .data:0x80812717; // type:object size:0x49 data:string +lbl_80812760 = .data:0x80812760; // type:object size:0x35 data:string +lbl_80812795 = .data:0x80812795; // type:object size:0x35 data:string +lbl_808127CA = .data:0x808127CA; // type:object size:0x29 data:string +lbl_808127F3 = .data:0x808127F3; // type:object size:0x31 data:string +lbl_80812824 = .data:0x80812824; // type:object size:0x35 data:string +lbl_80812859 = .data:0x80812859; // type:object size:0x29 data:string +lbl_80812882 = .data:0x80812882; // type:object size:0x2D data:string +lbl_808128AF = .data:0x808128AF; // type:object size:0x29 data:string +lbl_808128D8 = .data:0x808128D8; // type:object size:0x2B data:string +lbl_80812903 = .data:0x80812903; // type:object size:0x37 data:string +lbl_8081293A = .data:0x8081293A; // type:object size:0x35 data:string +lbl_8081296F = .data:0x8081296F; // type:object size:0x3B data:string +lbl_808129AA = .data:0x808129AA; // type:object size:0x33 data:string +lbl_808129DD = .data:0x808129DD; // type:object size:0x43 data:string +lbl_80812A20 = .data:0x80812A20; // type:object size:0x2F data:string +lbl_80812A4F = .data:0x80812A4F; // type:object size:0x33 data:string +lbl_80812A82 = .data:0x80812A82; // type:object size:0x25 data:string +lbl_80812AA7 = .data:0x80812AA7; // type:object size:0x2D data:string +lbl_80812AD4 = .data:0x80812AD4; // type:object size:0x2B data:string +lbl_80812AFF = .data:0x80812AFF; // type:object size:0x3D data:string +lbl_80812B3C = .data:0x80812B3C; // type:object size:0x49 data:string +lbl_80812B85 = .data:0x80812B85; // type:object size:0x37 data:string +lbl_80812BBC = .data:0x80812BBC; // type:object size:0x2B data:string +lbl_80812BE7 = .data:0x80812BE7; // type:object size:0x37 data:string +lbl_80812C1E = .data:0x80812C1E; // type:object size:0x35 data:string +lbl_80812C53 = .data:0x80812C53; // type:object size:0x31 data:string +lbl_80812C84 = .data:0x80812C84; // type:object size:0x3D data:string +lbl_80812CC1 = .data:0x80812CC1; // type:object size:0x31 data:string +lbl_80812CF2 = .data:0x80812CF2; // type:object size:0x3B data:string +lbl_80812D2D = .data:0x80812D2D; // type:object size:0x2F data:string +lbl_80812D5C = .data:0x80812D5C; // type:object size:0x2D data:string +lbl_80812D89 = .data:0x80812D89; // type:object size:0x3F data:string +lbl_80812DC8 = .data:0x80812DC8; // type:object size:0x33 data:string +lbl_80812DFB = .data:0x80812DFB; // type:object size:0x35 data:string +lbl_80812E30 = .data:0x80812E30; // type:object size:0x3C data:string +lbl_80812E6C = .data:0x80812E6C; // type:object size:0x2F data:string +lbl_80812E9B = .data:0x80812E9B; // type:object size:0x2F data:string +lbl_80812ECA = .data:0x80812ECA; // type:object size:0x37 data:string +lbl_80812F01 = .data:0x80812F01; // type:object size:0x2F data:string +lbl_80812F30 = .data:0x80812F30; // type:object size:0x29 data:string +lbl_80812F59 = .data:0x80812F59; // type:object size:0x2B data:string +lbl_80812F84 = .data:0x80812F84; // type:object size:0x4F data:string +lbl_80812FD3 = .data:0x80812FD3; // type:object size:0x37 data:string +lbl_8081300A = .data:0x8081300A; // type:object size:0x33 data:string +lbl_8081303D = .data:0x8081303D; // type:object size:0x3B data:string +lbl_80813078 = .data:0x80813078; // type:object size:0x31 data:string +lbl_808130A9 = .data:0x808130A9; // type:object size:0x47 data:string +lbl_808130F0 = .data:0x808130F0; // type:object size:0x3F data:string +lbl_8081312F = .data:0x8081312F; // type:object size:0x3F data:string +lbl_8081316E = .data:0x8081316E; // type:object size:0x3F data:string +lbl_808131AD = .data:0x808131AD; // type:object size:0x2D data:string +lbl_808131DA = .data:0x808131DA; // type:object size:0x41 data:string +lbl_8081321B = .data:0x8081321B; // type:object size:0x29 data:string +lbl_80813244 = .data:0x80813244; // type:object size:0x3B data:string +lbl_8081327F = .data:0x8081327F; // type:object size:0x29 data:string +lbl_808132A8 = .data:0x808132A8; // type:object size:0x3B data:string +lbl_808132E3 = .data:0x808132E3; // type:object size:0x31 data:string +lbl_80813314 = .data:0x80813314; // type:object size:0x2F data:string +lbl_80813343 = .data:0x80813343; // type:object size:0x35 data:string +lbl_80813378 = .data:0x80813378; // type:object size:0x37 data:string +lbl_808133AF = .data:0x808133AF; // type:object size:0x37 data:string +lbl_808133E6 = .data:0x808133E6; // type:object size:0x39 data:string +lbl_8081341F = .data:0x8081341F; // type:object size:0x35 data:string +lbl_80813454 = .data:0x80813454; // type:object size:0x43 data:string +lbl_80813497 = .data:0x80813497; // type:object size:0x39 data:string +lbl_808134D0 = .data:0x808134D0; // type:object size:0x37 data:string +lbl_80813507 = .data:0x80813507; // type:object size:0x2D data:string +lbl_80813534 = .data:0x80813534; // type:object size:0x35 data:string +lbl_80813569 = .data:0x80813569; // type:object size:0x2B data:string +lbl_80813594 = .data:0x80813594; // type:object size:0x37 data:string +lbl_808135CB = .data:0x808135CB; // type:object size:0x37 data:string +lbl_80813602 = .data:0x80813602; // type:object size:0x41 data:string +lbl_80813643 = .data:0x80813643; // type:object size:0x2B data:string +lbl_8081366E = .data:0x8081366E; // type:object size:0x29 data:string +lbl_80813697 = .data:0x80813697; // type:object size:0x39 data:string +lbl_808136D0 = .data:0x808136D0; // type:object size:0x23 data:string +lbl_808136F3 = .data:0x808136F3; // type:object size:0x33 data:string +lbl_80813726 = .data:0x80813726; // type:object size:0x31 data:string +lbl_80813757 = .data:0x80813757; // type:object size:0x21 data:string +lbl_80813778 = .data:0x80813778; // type:object size:0x3B data:string +lbl_808137B3 = .data:0x808137B3; // type:object size:0x3D data:string +lbl_808137F0 = .data:0x808137F0; // type:object size:0x33 data:string +lbl_80813823 = .data:0x80813823; // type:object size:0x3B data:string +lbl_8081385E = .data:0x8081385E; // type:object size:0x29 data:string +lbl_80813887 = .data:0x80813887; // type:object size:0x3B data:string +lbl_808138C2 = .data:0x808138C2; // type:object size:0x35 data:string +lbl_808138F7 = .data:0x808138F7; // type:object size:0x33 data:string +lbl_8081392A = .data:0x8081392A; // type:object size:0x33 data:string +lbl_8081395D = .data:0x8081395D; // type:object size:0x39 data:string +lbl_80813996 = .data:0x80813996; // type:object size:0x33 data:string +lbl_808139C9 = .data:0x808139C9; // type:object size:0x39 data:string +lbl_80813A02 = .data:0x80813A02; // type:object size:0x3D data:string +lbl_80813A3F = .data:0x80813A3F; // type:object size:0x39 data:string +lbl_80813A78 = .data:0x80813A78; // type:object size:0x31 data:string +lbl_80813AA9 = .data:0x80813AA9; // type:object size:0x39 data:string +lbl_80813AE2 = .data:0x80813AE2; // type:object size:0x37 data:string +lbl_80813B19 = .data:0x80813B19; // type:object size:0x37 data:string +lbl_80813B50 = .data:0x80813B50; // type:object size:0x2F data:string +lbl_80813B7F = .data:0x80813B7F; // type:object size:0x2B data:string +lbl_80813BAA = .data:0x80813BAA; // type:object size:0x31 data:string +lbl_80813BDB = .data:0x80813BDB; // type:object size:0x35 data:string +lbl_80813C10 = .data:0x80813C10; // type:object size:0x3F data:string +lbl_80813C4F = .data:0x80813C4F; // type:object size:0x31 data:string +lbl_80813C80 = .data:0x80813C80; // type:object size:0x49 data:string +lbl_80813CC9 = .data:0x80813CC9; // type:object size:0x31 data:string +lbl_80813CFA = .data:0x80813CFA; // type:object size:0x27 data:string +lbl_80813D21 = .data:0x80813D21; // type:object size:0x3D data:string +lbl_80813D5E = .data:0x80813D5E; // type:object size:0x3B data:string +lbl_80813D99 = .data:0x80813D99; // type:object size:0x33 data:string +lbl_80813DCC = .data:0x80813DCC; // type:object size:0x35 data:string +lbl_80813E01 = .data:0x80813E01; // type:object size:0x3B data:string +lbl_80813E3C = .data:0x80813E3C; // type:object size:0x2F data:string +lbl_80813E6B = .data:0x80813E6B; // type:object size:0x2F data:string +lbl_80813E9A = .data:0x80813E9A; // type:object size:0x31 data:string +lbl_80813ECB = .data:0x80813ECB; // type:object size:0x33 data:string +lbl_80813EFE = .data:0x80813EFE; // type:object size:0x33 data:string +lbl_80813F31 = .data:0x80813F31; // type:object size:0x3D data:string +lbl_80813F6E = .data:0x80813F6E; // type:object size:0x35 data:string +lbl_80813FA3 = .data:0x80813FA3; // type:object size:0x33 data:string +lbl_80813FD6 = .data:0x80813FD6; // type:object size:0x39 data:string +lbl_8081400F = .data:0x8081400F; // type:object size:0x2F data:string +lbl_8081403E = .data:0x8081403E; // type:object size:0x2F data:string +lbl_8081406D = .data:0x8081406D; // type:object size:0x33 data:string +lbl_808140A0 = .data:0x808140A0; // type:object size:0x39 data:string +lbl_808140D9 = .data:0x808140D9; // type:object size:0x33 data:string +lbl_8081410C = .data:0x8081410C; // type:object size:0x3B data:string +lbl_80814147 = .data:0x80814147; // type:object size:0x25 data:string +lbl_8081416C = .data:0x8081416C; // type:object size:0x35 data:string +lbl_808141A1 = .data:0x808141A1; // type:object size:0x35 data:string +lbl_808141D6 = .data:0x808141D6; // type:object size:0x35 data:string +lbl_8081420B = .data:0x8081420B; // type:object size:0x3F data:string +lbl_8081424A = .data:0x8081424A; // type:object size:0x25 data:string +lbl_8081426F = .data:0x8081426F; // type:object size:0x39 data:string +lbl_808142A8 = .data:0x808142A8; // type:object size:0x2B data:string +lbl_808142D3 = .data:0x808142D3; // type:object size:0x3D data:string +lbl_80814310 = .data:0x80814310; // type:object size:0x35 data:string +lbl_80814345 = .data:0x80814345; // type:object size:0x25 data:string +lbl_8081436A = .data:0x8081436A; // type:object size:0x3B data:string +lbl_808143A5 = .data:0x808143A5; // type:object size:0x2F data:string +lbl_808143D4 = .data:0x808143D4; // type:object size:0x2B data:string +lbl_808143FF = .data:0x808143FF; // type:object size:0x3B data:string +lbl_8081443A = .data:0x8081443A; // type:object size:0x3D data:string +lbl_80814477 = .data:0x80814477; // type:object size:0x43 data:string +lbl_808144BA = .data:0x808144BA; // type:object size:0x35 data:string +lbl_808144EF = .data:0x808144EF; // type:object size:0x2F data:string +lbl_8081451E = .data:0x8081451E; // type:object size:0x39 data:string +lbl_80814557 = .data:0x80814557; // type:object size:0x35 data:string +lbl_8081458C = .data:0x8081458C; // type:object size:0x2F data:string +lbl_808145BB = .data:0x808145BB; // type:object size:0x37 data:string +lbl_808145F2 = .data:0x808145F2; // type:object size:0x3F data:string +lbl_80814631 = .data:0x80814631; // type:object size:0x2B data:string +lbl_8081465C = .data:0x8081465C; // type:object size:0x35 data:string +lbl_80814691 = .data:0x80814691; // type:object size:0x29 data:string +lbl_808146BA = .data:0x808146BA; // type:object size:0x37 data:string +lbl_808146F1 = .data:0x808146F1; // type:object size:0x33 data:string +lbl_80814724 = .data:0x80814724; // type:object size:0x3B data:string +lbl_8081475F = .data:0x8081475F; // type:object size:0x2F data:string +lbl_8081478E = .data:0x8081478E; // type:object size:0x39 data:string +lbl_808147C7 = .data:0x808147C7; // type:object size:0x37 data:string +lbl_808147FE = .data:0x808147FE; // type:object size:0x23 data:string +lbl_80814821 = .data:0x80814821; // type:object size:0x39 data:string +lbl_8081485A = .data:0x8081485A; // type:object size:0x37 data:string +lbl_80814891 = .data:0x80814891; // type:object size:0x2D data:string +lbl_808148BE = .data:0x808148BE; // type:object size:0x2B data:string +lbl_808148E9 = .data:0x808148E9; // type:object size:0x31 data:string +lbl_8081491A = .data:0x8081491A; // type:object size:0x2F data:string +lbl_80814949 = .data:0x80814949; // type:object size:0x2F data:string +lbl_80814978 = .data:0x80814978; // type:object size:0x2F data:string +lbl_808149A7 = .data:0x808149A7; // type:object size:0x3F data:string +lbl_808149E6 = .data:0x808149E6; // type:object size:0x2F data:string +lbl_80814A15 = .data:0x80814A15; // type:object size:0x2F data:string +lbl_80814A44 = .data:0x80814A44; // type:object size:0x29 data:string +lbl_80814A6D = .data:0x80814A6D; // type:object size:0x29 data:string +lbl_80814A96 = .data:0x80814A96; // type:object size:0x2F data:string +lbl_80814AC5 = .data:0x80814AC5; // type:object size:0x37 data:string +lbl_80814AFC = .data:0x80814AFC; // type:object size:0x2D data:string +lbl_80814B29 = .data:0x80814B29; // type:object size:0x3D data:string +lbl_80814B66 = .data:0x80814B66; // type:object size:0x37 data:string +lbl_80814B9D = .data:0x80814B9D; // type:object size:0x3B data:string +lbl_80814BD8 = .data:0x80814BD8; // type:object size:0x39 data:string +lbl_80814C11 = .data:0x80814C11; // type:object size:0x2F data:string +lbl_80814C40 = .data:0x80814C40; // type:object size:0x33 data:string +lbl_80814C73 = .data:0x80814C73; // type:object size:0x33 data:string +lbl_80814CA6 = .data:0x80814CA6; // type:object size:0x2D data:string +lbl_80814CD3 = .data:0x80814CD3; // type:object size:0x3B data:string +lbl_80814D0E = .data:0x80814D0E; // type:object size:0x3B data:string +lbl_80814D49 = .data:0x80814D49; // type:object size:0x31 data:string +lbl_80814D7A = .data:0x80814D7A; // type:object size:0x33 data:string +lbl_80814DAD = .data:0x80814DAD; // type:object size:0x2D data:string +lbl_80814DDA = .data:0x80814DDA; // type:object size:0x35 data:string +lbl_80814E0F = .data:0x80814E0F; // type:object size:0x33 data:string +lbl_80814E42 = .data:0x80814E42; // type:object size:0x31 data:string +lbl_80814E73 = .data:0x80814E73; // type:object size:0x45 data:string +lbl_80814EB8 = .data:0x80814EB8; // type:object size:0x33 data:string +lbl_80814EEB = .data:0x80814EEB; // type:object size:0x37 data:string +lbl_80814F22 = .data:0x80814F22; // type:object size:0x39 data:string +lbl_80814F5B = .data:0x80814F5B; // type:object size:0x2F data:string +lbl_80814F8A = .data:0x80814F8A; // type:object size:0x2B data:string +lbl_80814FB5 = .data:0x80814FB5; // type:object size:0x30 data:string +lbl_80814FE5 = .data:0x80814FE5; // type:object size:0x2D data:string +lbl_80815012 = .data:0x80815012; // type:object size:0x3F data:string +lbl_80815051 = .data:0x80815051; // type:object size:0x33 data:string +lbl_80815084 = .data:0x80815084; // type:object size:0x35 data:string +lbl_808150B9 = .data:0x808150B9; // type:object size:0x31 data:string +lbl_808150EA = .data:0x808150EA; // type:object size:0x41 data:string +lbl_8081512B = .data:0x8081512B; // type:object size:0x47 data:string +lbl_80815172 = .data:0x80815172; // type:object size:0x35 data:string +lbl_808151A7 = .data:0x808151A7; // type:object size:0x33 data:string +lbl_808151DA = .data:0x808151DA; // type:object size:0x35 data:string +lbl_8081520F = .data:0x8081520F; // type:object size:0x35 data:string +lbl_80815244 = .data:0x80815244; // type:object size:0x2D data:string +lbl_80815271 = .data:0x80815271; // type:object size:0x29 data:string +lbl_8081529A = .data:0x8081529A; // type:object size:0x31 data:string +lbl_808152CB = .data:0x808152CB; // type:object size:0x31 data:string +lbl_808152FC = .data:0x808152FC; // type:object size:0x3D data:string +lbl_80815339 = .data:0x80815339; // type:object size:0x3B data:string +lbl_80815374 = .data:0x80815374; // type:object size:0x2F data:string +lbl_808153A3 = .data:0x808153A3; // type:object size:0x35 data:string +lbl_808153D8 = .data:0x808153D8; // type:object size:0x2D data:string +lbl_80815405 = .data:0x80815405; // type:object size:0x2D data:string +lbl_80815432 = .data:0x80815432; // type:object size:0x33 data:string +lbl_80815465 = .data:0x80815465; // type:object size:0x2B data:string +lbl_80815490 = .data:0x80815490; // type:object size:0x29 data:string +lbl_808154B9 = .data:0x808154B9; // type:object size:0x2B data:string +lbl_808154E4 = .data:0x808154E4; // type:object size:0x2D data:string +lbl_80815511 = .data:0x80815511; // type:object size:0x3D data:string +lbl_8081554E = .data:0x8081554E; // type:object size:0x3D data:string +lbl_8081558B = .data:0x8081558B; // type:object size:0x23 data:string +lbl_808155AE = .data:0x808155AE; // type:object size:0x25 data:string +lbl_808155D3 = .data:0x808155D3; // type:object size:0x3B data:string +lbl_8081560E = .data:0x8081560E; // type:object size:0x3B data:string +lbl_80815649 = .data:0x80815649; // type:object size:0x43 data:string +lbl_8081568C = .data:0x8081568C; // type:object size:0x37 data:string +lbl_808156C3 = .data:0x808156C3; // type:object size:0x2B data:string +lbl_808156EE = .data:0x808156EE; // type:object size:0x37 data:string +lbl_80815725 = .data:0x80815725; // type:object size:0x2B data:string +lbl_80815750 = .data:0x80815750; // type:object size:0x2D data:string +lbl_8081577D = .data:0x8081577D; // type:object size:0x2B data:string +lbl_808157A8 = .data:0x808157A8; // type:object size:0x37 data:string +lbl_808157DF = .data:0x808157DF; // type:object size:0x39 data:string +lbl_80815818 = .data:0x80815818; // type:object size:0x2D data:string +lbl_80815845 = .data:0x80815845; // type:object size:0x41 data:string +lbl_80815886 = .data:0x80815886; // type:object size:0x3B data:string +lbl_808158C1 = .data:0x808158C1; // type:object size:0x33 data:string +lbl_808158F4 = .data:0x808158F4; // type:object size:0x2F data:string +lbl_80815923 = .data:0x80815923; // type:object size:0x29 data:string +lbl_8081594C = .data:0x8081594C; // type:object size:0x33 data:string +lbl_8081597F = .data:0x8081597F; // type:object size:0x39 data:string +lbl_808159B8 = .data:0x808159B8; // type:object size:0x2B data:string +lbl_808159E3 = .data:0x808159E3; // type:object size:0x35 data:string +lbl_80815A18 = .data:0x80815A18; // type:object size:0x31 data:string +lbl_80815A49 = .data:0x80815A49; // type:object size:0x2F data:string +lbl_80815A78 = .data:0x80815A78; // type:object size:0x35 data:string +lbl_80815AAD = .data:0x80815AAD; // type:object size:0x27 data:string +lbl_80815AD4 = .data:0x80815AD4; // type:object size:0x33 data:string +lbl_80815B07 = .data:0x80815B07; // type:object size:0x33 data:string +lbl_80815B3A = .data:0x80815B3A; // type:object size:0x33 data:string +lbl_80815B6D = .data:0x80815B6D; // type:object size:0x4B data:string +lbl_80815BB8 = .data:0x80815BB8; // type:object size:0x33 data:string +lbl_80815BEB = .data:0x80815BEB; // type:object size:0x2F data:string +lbl_80815C1A = .data:0x80815C1A; // type:object size:0x35 data:string +lbl_80815C4F = .data:0x80815C4F; // type:object size:0x3F data:string +lbl_80815C8E = .data:0x80815C8E; // type:object size:0x29 data:string +lbl_80815CB7 = .data:0x80815CB7; // type:object size:0x2D data:string +lbl_80815CE4 = .data:0x80815CE4; // type:object size:0x37 data:string +lbl_80815D1B = .data:0x80815D1B; // type:object size:0x35 data:string +lbl_80815D50 = .data:0x80815D50; // type:object size:0x25 data:string +lbl_80815D75 = .data:0x80815D75; // type:object size:0x33 data:string +lbl_80815DA8 = .data:0x80815DA8; // type:object size:0x39 data:string +lbl_80815DE1 = .data:0x80815DE1; // type:object size:0x41 data:string +lbl_80815E22 = .data:0x80815E22; // type:object size:0x3F data:string +lbl_80815E61 = .data:0x80815E61; // type:object size:0x2F data:string +lbl_80815E90 = .data:0x80815E90; // type:object size:0x29 data:string +lbl_80815EB9 = .data:0x80815EB9; // type:object size:0x39 data:string +lbl_80815EF2 = .data:0x80815EF2; // type:object size:0x3F data:string +lbl_80815F31 = .data:0x80815F31; // type:object size:0x3F data:string +lbl_80815F70 = .data:0x80815F70; // type:object size:0x3D data:string +lbl_80815FAD = .data:0x80815FAD; // type:object size:0x3D data:string +lbl_80815FEA = .data:0x80815FEA; // type:object size:0x29 data:string +lbl_80816013 = .data:0x80816013; // type:object size:0x27 data:string +lbl_8081603A = .data:0x8081603A; // type:object size:0x35 data:string +lbl_8081606F = .data:0x8081606F; // type:object size:0x2D data:string +lbl_8081609C = .data:0x8081609C; // type:object size:0x35 data:string +lbl_808160D1 = .data:0x808160D1; // type:object size:0x35 data:string +lbl_80816106 = .data:0x80816106; // type:object size:0x39 data:string +lbl_8081613F = .data:0x8081613F; // type:object size:0x2D data:string +lbl_8081616C = .data:0x8081616C; // type:object size:0x29 data:string +lbl_80816195 = .data:0x80816195; // type:object size:0x43 data:string +lbl_808161D8 = .data:0x808161D8; // type:object size:0x31 data:string +lbl_80816209 = .data:0x80816209; // type:object size:0x31 data:string +lbl_8081623A = .data:0x8081623A; // type:object size:0x25 data:string +lbl_8081625F = .data:0x8081625F; // type:object size:0x37 data:string +lbl_80816296 = .data:0x80816296; // type:object size:0x3B data:string +lbl_808162D1 = .data:0x808162D1; // type:object size:0x2B data:string +lbl_808162FC = .data:0x808162FC; // type:object size:0x3B data:string +lbl_80816337 = .data:0x80816337; // type:object size:0x3B data:string +lbl_80816372 = .data:0x80816372; // type:object size:0x37 data:string +lbl_808163A9 = .data:0x808163A9; // type:object size:0x2B data:string +lbl_808163D4 = .data:0x808163D4; // type:object size:0x3B data:string +lbl_8081640F = .data:0x8081640F; // type:object size:0x31 data:string +lbl_80816440 = .data:0x80816440; // type:object size:0x27 data:string +lbl_80816467 = .data:0x80816467; // type:object size:0x39 data:string +lbl_808164A0 = .data:0x808164A0; // type:object size:0x3B data:string +lbl_808164DB = .data:0x808164DB; // type:object size:0x2F data:string +lbl_8081650A = .data:0x8081650A; // type:object size:0x3B data:string +lbl_80816545 = .data:0x80816545; // type:object size:0x3B data:string +lbl_80816580 = .data:0x80816580; // type:object size:0x39 data:string +lbl_808165B9 = .data:0x808165B9; // type:object size:0x33 data:string +lbl_808165EC = .data:0x808165EC; // type:object size:0x31 data:string +lbl_8081661D = .data:0x8081661D; // type:object size:0x35 data:string +lbl_80816652 = .data:0x80816652; // type:object size:0x3B data:string +lbl_8081668D = .data:0x8081668D; // type:object size:0x3B data:string +lbl_808166C8 = .data:0x808166C8; // type:object size:0x37 data:string +lbl_808166FF = .data:0x808166FF; // type:object size:0x39 data:string +lbl_80816738 = .data:0x80816738; // type:object size:0x35 data:string +lbl_8081676D = .data:0x8081676D; // type:object size:0x2D data:string +lbl_8081679A = .data:0x8081679A; // type:object size:0x2D data:string +lbl_808167C7 = .data:0x808167C7; // type:object size:0x31 data:string +lbl_808167F8 = .data:0x808167F8; // type:object size:0x2B data:string +lbl_80816823 = .data:0x80816823; // type:object size:0x39 data:string +lbl_8081685C = .data:0x8081685C; // type:object size:0x3B data:string +lbl_80816897 = .data:0x80816897; // type:object size:0x3D data:string +lbl_808168D4 = .data:0x808168D4; // type:object size:0x2B data:string +lbl_808168FF = .data:0x808168FF; // type:object size:0x37 data:string +lbl_80816936 = .data:0x80816936; // type:object size:0x2D data:string +lbl_80816963 = .data:0x80816963; // type:object size:0x41 data:string +lbl_808169A4 = .data:0x808169A4; // type:object size:0x37 data:string +lbl_808169DB = .data:0x808169DB; // type:object size:0x39 data:string +lbl_80816A14 = .data:0x80816A14; // type:object size:0x2D data:string +lbl_80816A41 = .data:0x80816A41; // type:object size:0x39 data:string +lbl_80816A7A = .data:0x80816A7A; // type:object size:0x35 data:string +lbl_80816AAF = .data:0x80816AAF; // type:object size:0x3B data:string +lbl_80816AEA = .data:0x80816AEA; // type:object size:0x33 data:string +lbl_80816B1D = .data:0x80816B1D; // type:object size:0x33 data:string +lbl_80816B50 = .data:0x80816B50; // type:object size:0x33 data:string +lbl_80816B83 = .data:0x80816B83; // type:object size:0x2D data:string +lbl_80816BB0 = .data:0x80816BB0; // type:object size:0x39 data:string +lbl_80816BE9 = .data:0x80816BE9; // type:object size:0x43 data:string +lbl_80816C2C = .data:0x80816C2C; // type:object size:0x2D data:string +lbl_80816C59 = .data:0x80816C59; // type:object size:0x35 data:string +lbl_80816C8E = .data:0x80816C8E; // type:object size:0x2D data:string +lbl_80816CBB = .data:0x80816CBB; // type:object size:0x33 data:string +lbl_80816CEE = .data:0x80816CEE; // type:object size:0x39 data:string +lbl_80816D27 = .data:0x80816D27; // type:object size:0x27 data:string +lbl_80816D4E = .data:0x80816D4E; // type:object size:0x27 data:string +lbl_80816D75 = .data:0x80816D75; // type:object size:0x2F data:string +lbl_80816DA4 = .data:0x80816DA4; // type:object size:0x39 data:string +lbl_80816DDD = .data:0x80816DDD; // type:object size:0x45 data:string +lbl_80816E22 = .data:0x80816E22; // type:object size:0x39 data:string +lbl_80816E5B = .data:0x80816E5B; // type:object size:0x2D data:string +lbl_80816E88 = .data:0x80816E88; // type:object size:0x3D data:string +lbl_80816EC5 = .data:0x80816EC5; // type:object size:0x49 data:string +lbl_80816F0E = .data:0x80816F0E; // type:object size:0x3B data:string +lbl_80816F49 = .data:0x80816F49; // type:object size:0x35 data:string +lbl_80816F7E = .data:0x80816F7E; // type:object size:0x41 data:string +lbl_80816FBF = .data:0x80816FBF; // type:object size:0x2B data:string +lbl_80816FEA = .data:0x80816FEA; // type:object size:0x41 data:string +lbl_8081702B = .data:0x8081702B; // type:object size:0x3B data:string +lbl_80817066 = .data:0x80817066; // type:object size:0x39 data:string +lbl_8081709F = .data:0x8081709F; // type:object size:0x27 data:string +lbl_808170C6 = .data:0x808170C6; // type:object size:0x2D data:string +lbl_808170F3 = .data:0x808170F3; // type:object size:0x2B data:string +lbl_8081711E = .data:0x8081711E; // type:object size:0x31 data:string +lbl_8081714F = .data:0x8081714F; // type:object size:0x35 data:string +lbl_80817184 = .data:0x80817184; // type:object size:0x2B data:string +lbl_808171AF = .data:0x808171AF; // type:object size:0x31 data:string +lbl_808171E0 = .data:0x808171E0; // type:object size:0x31 data:string +lbl_80817211 = .data:0x80817211; // type:object size:0x39 data:string +lbl_8081724A = .data:0x8081724A; // type:object size:0x41 data:string +lbl_8081728B = .data:0x8081728B; // type:object size:0x3F data:string +lbl_808172CA = .data:0x808172CA; // type:object size:0x39 data:string +lbl_80817303 = .data:0x80817303; // type:object size:0x2B data:string +lbl_8081732E = .data:0x8081732E; // type:object size:0x33 data:string +lbl_80817361 = .data:0x80817361; // type:object size:0x3D data:string +lbl_8081739E = .data:0x8081739E; // type:object size:0x31 data:string +lbl_808173CF = .data:0x808173CF; // type:object size:0x31 data:string +lbl_80817400 = .data:0x80817400; // type:object size:0x35 data:string +lbl_80817435 = .data:0x80817435; // type:object size:0x33 data:string +lbl_80817468 = .data:0x80817468; // type:object size:0x3B data:string +lbl_808174A3 = .data:0x808174A3; // type:object size:0x3D data:string +lbl_808174E0 = .data:0x808174E0; // type:object size:0x33 data:string +lbl_80817513 = .data:0x80817513; // type:object size:0x31 data:string +lbl_80817544 = .data:0x80817544; // type:object size:0x35 data:string +lbl_80817579 = .data:0x80817579; // type:object size:0x35 data:string +lbl_808175AE = .data:0x808175AE; // type:object size:0x2F data:string +lbl_808175DD = .data:0x808175DD; // type:object size:0x37 data:string +lbl_80817614 = .data:0x80817614; // type:object size:0x39 data:string +lbl_8081764D = .data:0x8081764D; // type:object size:0x27 data:string +lbl_80817674 = .data:0x80817674; // type:object size:0x31 data:string +lbl_808176A5 = .data:0x808176A5; // type:object size:0x29 data:string +lbl_808176CE = .data:0x808176CE; // type:object size:0x2F data:string +lbl_808176FD = .data:0x808176FD; // type:object size:0x27 data:string +lbl_80817724 = .data:0x80817724; // type:object size:0x31 data:string +lbl_80817755 = .data:0x80817755; // type:object size:0x37 data:string +lbl_8081778C = .data:0x8081778C; // type:object size:0x43 data:string +lbl_808177CF = .data:0x808177CF; // type:object size:0x31 data:string +lbl_80817800 = .data:0x80817800; // type:object size:0x33 data:string +lbl_80817833 = .data:0x80817833; // type:object size:0x27 data:string +lbl_8081785A = .data:0x8081785A; // type:object size:0x4D data:string +lbl_808178A7 = .data:0x808178A7; // type:object size:0x37 data:string +lbl_808178DE = .data:0x808178DE; // type:object size:0x37 data:string +lbl_80817915 = .data:0x80817915; // type:object size:0x35 data:string +lbl_8081794A = .data:0x8081794A; // type:object size:0x45 data:string +lbl_8081798F = .data:0x8081798F; // type:object size:0x23 data:string +lbl_808179B2 = .data:0x808179B2; // type:object size:0x25 data:string +lbl_808179D7 = .data:0x808179D7; // type:object size:0x2E data:string +lbl_80817A05 = .data:0x80817A05; // type:object size:0x2A data:string +lbl_80817A2F = .data:0x80817A2F; // type:object size:0x22 data:string +lbl_80817A51 = .data:0x80817A51; // type:object size:0x32 data:string +lbl_80817A83 = .data:0x80817A83; // type:object size:0x1A data:string +lbl_80817A9D = .data:0x80817A9D; // type:object size:0x2A data:string +lbl_80817AC7 = .data:0x80817AC7; // type:object size:0x16 data:string +lbl_80817ADD = .data:0x80817ADD; // type:object size:0x2A data:string +lbl_80817B07 = .data:0x80817B07; // type:object size:0x2D data:string +lbl_80817B34 = .data:0x80817B34; // type:object size:0x22 data:string +lbl_80817B56 = .data:0x80817B56; // type:object size:0x23 data:string +lbl_80817B79 = .data:0x80817B79; // type:object size:0x29 data:string +lbl_80817BA2 = .data:0x80817BA2; // type:object size:0x18 data:string +lbl_80817BBA = .data:0x80817BBA; // type:object size:0x11 data:string +lbl_80817BCB = .data:0x80817BCB; // type:object size:0x11 data:string +lbl_80817BDC = .data:0x80817BDC; // type:object size:0x11 data:string +lbl_80817BED = .data:0x80817BED; // type:object size:0x20 data:string +lbl_80817C0D = .data:0x80817C0D; // type:object size:0x26 data:string +lbl_80817C33 = .data:0x80817C33; // type:object size:0x25 +@STRING@Allocate__Q26Quazal13MemoryManagerFUlQ36Quazal13MemoryManager16_InstructionType = .data:0x80817C58; // type:object size:0x8 data:string +lbl_80817C60 = .data:0x80817C60; // type:object size:0x30 +lbl_80817C90 = .data:0x80817C90; // type:object size:0x18 +lbl_80817CA8 = .data:0x80817CA8; // type:object size:0x8 +lbl_80817CB0 = .data:0x80817CB0; // type:object size:0x18 +__vt__Q26Quazal8EventLog = .data:0x80817CC8; // type:object size:0x18 +lbl_80817CE0 = .data:0x80817CE0; // type:object size:0x14 +lbl_80817CF4 = .data:0x80817CF4; // type:object size:0x14 +__RTTI__Q26Quazal8EventLog = .data:0x80817D08; // type:object size:0x8 +lbl_80817D10 = .data:0x80817D10; // type:object size:0xC data:string +lbl_80817D1C = .data:0x80817D1C; // type:object size:0xC +__RTTI__Q26Quazal3Log = .data:0x80817D28; // type:object size:0x8 +lbl_80817D30 = .data:0x80817D30; // type:object size:0x58 +__vt__Q26Quazal9LogDevice = .data:0x80817D88; // type:object size:0x10 +lbl_80817D98 = .data:0x80817D98; // type:object size:0x14 +lbl_80817DAC = .data:0x80817DAC; // type:object size:0xC +__RTTI__Q26Quazal9LogDevice = .data:0x80817DB8; // type:object size:0x8 +__vt__Q26Quazal3Log = .data:0x80817DC0; // type:object size:0x18 +lbl_80817DD8 = .data:0x80817DD8; // type:object size:0x8 data:string +__vt__Q26Quazal20LogDeviceDebugOutput = .data:0x80817DE0; // type:object size:0x10 +lbl_80817DF0 = .data:0x80817DF0; // type:object size:0x20 +lbl_80817E10 = .data:0x80817E10; // type:object size:0x18 +__RTTI__Q26Quazal20LogDeviceDebugOutput = .data:0x80817E28; // type:object size:0x8 +lbl_80817E30 = .data:0x80817E30; // type:object size:0x8 +__vt__Q26Quazal13MemoryManager = .data:0x80817E38; // type:object size:0x14 +lbl_80817E4C = .data:0x80817E4C; // type:object size:0x18 +lbl_80817E64 = .data:0x80817E64; // type:object size:0xC +__RTTI__Q26Quazal13MemoryManager = .data:0x80817E70; // type:object size:0x8 +lbl_80817E78 = .data:0x80817E78; // type:object size:0x30 +lbl_80817EA8 = .data:0x80817EA8; // type:object size:0x18 +lbl_80817EC0 = .data:0x80817EC0; // type:object size:0x4 data:4byte +lbl_80817EC4 = .data:0x80817EC4; // type:object size:0x4 data:4byte +__vt__Q26Quazal16ObjectThreadRoot = .data:0x80817EC8; // type:object size:0x10 +lbl_80817ED8 = .data:0x80817ED8; // type:object size:0x1C +lbl_80817EF4 = .data:0x80817EF4; // type:object size:0xC +__RTTI__Q26Quazal16ObjectThreadRoot = .data:0x80817F00; // type:object size:0x8 +lbl_80817F08 = .data:0x80817F08; // type:object size:0x14 +lbl_80817F1C = .data:0x80817F1C; // type:object size:0x34 +lbl_80817F50 = .data:0x80817F50; // type:object size:0x18 +lbl_80817F68 = .data:0x80817F68; // type:object size:0x8 +lbl_80817F70 = .data:0x80817F70; // type:object size:0x1C +lbl_80817F8C = .data:0x80817F8C; // type:object size:0xC +__RTTI__Q26Quazal18ThreadVariableRoot = .data:0x80817F98; // type:object size:0x8 +lbl_80817FA0 = .data:0x80817FA0; // type:object size:0x40 +__vt__Q26Quazal12OutputFormat = .data:0x80817FE0; // type:object size:0x28 +lbl_80818008 = .data:0x80818008; // type:object size:0x18 +lbl_80818020 = .data:0x80818020; // type:object size:0x10 +__RTTI__Q26Quazal12OutputFormat = .data:0x80818030; // type:object size:0x8 +lbl_80818038 = .data:0x80818038; // type:object size:0x90 +lbl_808180C8 = .data:0x808180C8; // type:object size:0x74 +lbl_8081813C = .data:0x8081813C; // type:object size:0x14 data:string +lbl_80818150 = .data:0x80818150; // type:object size:0x16 data:string +lbl_80818166 = .data:0x80818166; // type:object size:0x21 data:string +lbl_80818187 = .data:0x80818187; // type:object size:0x13 data:string +lbl_8081819A = .data:0x8081819A; // type:object size:0x25 data:string +lbl_808181BF = .data:0x808181BF; // type:object size:0x2E data:string +lbl_808181ED = .data:0x808181ED; // type:object size:0x17 data:string +lbl_80818204 = .data:0x80818204; // type:object size:0x37 data:string +lbl_8081823B = .data:0x8081823B; // type:object size:0x17 data:string +lbl_80818252 = .data:0x80818252; // type:object size:0x18 data:string +lbl_8081826A = .data:0x8081826A; // type:object size:0x19 data:string +lbl_80818283 = .data:0x80818283; // type:object size:0x13 data:string +lbl_80818296 = .data:0x80818296; // type:object size:0x10 data:string +lbl_808182A6 = .data:0x808182A6; // type:object size:0x24 data:string +lbl_808182CA = .data:0x808182CA; // type:object size:0x12 data:string +lbl_808182DC = .data:0x808182DC; // type:object size:0x1F data:string +lbl_808182FB = .data:0x808182FB; // type:object size:0x28 data:string +lbl_80818323 = .data:0x80818323; // type:object size:0x19 data:string +lbl_8081833C = .data:0x8081833C; // type:object size:0x17 data:string +lbl_80818353 = .data:0x80818353; // type:object size:0x11 data:string +lbl_80818364 = .data:0x80818364; // type:object size:0x12 data:string +lbl_80818376 = .data:0x80818376; // type:object size:0x1E data:string +lbl_80818394 = .data:0x80818394; // type:object size:0x12 data:string +lbl_808183A6 = .data:0x808183A6; // type:object size:0x9 data:string +lbl_808183AF = .data:0x808183AF; // type:object size:0x29 data:string +lbl_808183D8 = .data:0x808183D8; // type:object size:0x1B data:string +lbl_808183F3 = .data:0x808183F3; // type:object size:0xD data:string +lbl_80818400 = .data:0x80818400; // type:object size:0xE data:string +lbl_8081840E = .data:0x8081840E; // type:object size:0x52 +lbl_80818460 = .data:0x80818460; // type:object size:0xB0 +__vt__Q26Quazal16RefCountedObject = .data:0x80818510; // type:object size:0x14 +lbl_80818524 = .data:0x80818524; // type:object size:0x1C +lbl_80818540 = .data:0x80818540; // type:object size:0x10 +__RTTI__Q26Quazal16RefCountedObject = .data:0x80818550; // type:object size:0x8 +@stringBase0 = .data:0x80818558; // type:object size:0x2B data:string_table +__vt__Q26Quazal8SpinTest = .data:0x80818588; // type:object size:0xC +lbl_80818594 = .data:0x80818594; // type:object size:0x14 +lbl_808185A8 = .data:0x808185A8; // type:object size:0x10 +__RTTI__Q26Quazal8SpinTest = .data:0x808185B8; // type:object size:0x8 +s_pInstance__Q26Quazal11StackTracer = .data:0x808185C0; // type:object size:0x8 data:4byte +__vt__Q26Quazal11StackTracer = .data:0x808185C8; // type:object size:0x20 +lbl_808185E8 = .data:0x808185E8; // type:object size:0x14 data:string +lbl_808185FC = .data:0x808185FC; // type:object size:0xC +__RTTI__Q26Quazal11StackTracer = .data:0x80818608; // type:object size:0x8 +lbl_80818610 = .data:0x80818610; // type:object size:0x28 +lbl_80818638 = .data:0x80818638; // type:object size:0x4 data:4byte +lbl_8081863C = .data:0x8081863C; // type:object size:0xC +lbl_80818648 = .data:0x80818648; // type:object size:0x10 +lbl_80818658 = .data:0x80818658; // type:object size:0x18 +lbl_80818670 = .data:0x80818670; // type:object size:0x48 +lbl_808186B8 = .data:0x808186B8; // type:object size:0x4 +lbl_808186BC = .data:0x808186BC; // type:object size:0x4 +lbl_808186C0 = .data:0x808186C0; // type:object size:0x4 data:4byte +lbl_808186C4 = .data:0x808186C4; // type:object size:0x14 +lbl_808186D8 = .data:0x808186D8; // type:object size:0x28 +lbl_80818700 = .data:0x80818700; // type:object size:0x18 +lbl_80818718 = .data:0x80818718; // type:object size:0x8 +lbl_80818720 = .data:0x80818720; // type:object size:0x20 +__vt__Q26Quazal18ThreadVariableRoot = .data:0x80818740; // type:object size:0x18 +__vt__Q26Quazal8TraceLog = .data:0x80818758; // type:object size:0x18 +lbl_80818770 = .data:0x80818770; // type:object size:0x14 +lbl_80818784 = .data:0x80818784; // type:object size:0x14 +__RTTI__Q26Quazal8TraceLog = .data:0x80818798; // type:object size:0x8 +__vt__Q36Quazal20BerkeleySocketDriver14BerkeleySocket = .data:0x808187A0; // type:object size:0x30 +lbl_808187D0 = .data:0x808187D0; // type:object size:0x30 +lbl_80818800 = .data:0x80818800; // type:object size:0x18 +__RTTI__Q36Quazal20BerkeleySocketDriver14BerkeleySocket = .data:0x80818818; // type:object size:0x8 +__vt__Q26Quazal20BerkeleySocketDriver = .data:0x80818820; // type:object size:0x18 +lbl_80818838 = .data:0x80818838; // type:object size:0x20 +lbl_80818858 = .data:0x80818858; // type:object size:0x18 +__RTTI__Q26Quazal20BerkeleySocketDriver = .data:0x80818870; // type:object size:0x8 +lbl_80818878 = .data:0x80818878; // type:object size:0x18 +lbl_80818890 = .data:0x80818890; // type:object size:0x10 +__RTTI__Q26Quazal12SocketDriver = .data:0x808188A0; // type:object size:0x8 +__vt__Q36Quazal12SocketDriver6Socket = .data:0x808188A8; // type:object size:0x30 +lbl_808188D8 = .data:0x808188D8; // type:object size:0x20 +lbl_808188F8 = .data:0x808188F8; // type:object size:0x10 +__RTTI__Q36Quazal12SocketDriver6Socket = .data:0x80818908; // type:object size:0x8 +lbl_80818910 = .data:0x80818910; // type:object size:0x20 +lbl_80818930 = .data:0x80818930; // type:object size:0x30 +lbl_80818960 = .data:0x80818960; // type:object size:0x18 +lbl_80818978 = .data:0x80818978; // type:object size:0x20 +lbl_80818998 = .data:0x80818998; // type:object size:0x8 data:4byte +__vt__Q26Quazal12SocketDriver = .data:0x808189A0; // type:object size:0x18 +lbl_808189B8 = .data:0x808189B8; // type:object size:0x4 +lbl_808189BC = .data:0x808189BC; // type:object size:0x4 +lbl_808189C0 = .data:0x808189C0; // type:object size:0x4 +lbl_808189C4 = .data:0x808189C4; // type:object size:0x4 +__vt__Q26Quazal11CallContext = .data:0x808189C8; // type:object size:0x20 +lbl_808189E8 = .data:0x808189E8; // type:object size:0x14 data:string +lbl_808189FC = .data:0x808189FC; // type:object size:0x14 +__RTTI__Q26Quazal11CallContext = .data:0x80818A10; // type:object size:0x8 +lbl_80818A18 = .data:0x80818A18; // type:object size:0xA0 +lbl_80818AB8 = .data:0x80818AB8; // type:object size:0xC data:4byte +lbl_80818AC4 = .data:0x80818AC4; // type:object size:0x4 +lbl_80818AC8 = .data:0x80818AC8; // type:object size:0x8 +__vt__Q26Quazal70MethodCallJob = .data:0x80818AD0; // type:object size:0x30 +lbl_80818B00 = .data:0x80818B00; // type:object size:0x50 +lbl_80818B50 = .data:0x80818B50; // type:object size:0x28 +__RTTI__Q26Quazal70MethodCallJob = .data:0x80818B78; // type:object size:0x8 +lbl_80818B80 = .data:0x80818B80; // type:object size:0x14 data:string +lbl_80818B94 = .data:0x80818B94; // type:object size:0x1C +__RTTI__Q26Quazal11PeriodicJob = .data:0x80818BB0; // type:object size:0x8 +__vt__Q26Quazal19CallContextRegister = .data:0x80818BB8; // type:object size:0x50 +lbl_80818C08 = .data:0x80818C08; // type:object size:0x1C data:string +lbl_80818C24 = .data:0x80818C24; // type:object size:0x1C +__RTTI__Q26Quazal19CallContextRegister = .data:0x80818C40; // type:object size:0x8 +lbl_80818C48 = .data:0x80818C48; // type:object size:0x18 data:string +lbl_80818C60 = .data:0x80818C60; // type:object size:0x18 +__RTTI__Q26Quazal15SystemComponent = .data:0x80818C78; // type:object size:0x8 +lbl_80818C80 = .data:0x80818C80; // type:object size:0xC data:string +lbl_80818C8C = .data:0x80818C8C; // type:object size:0x14 +__RTTI__Q26Quazal3Job = .data:0x80818CA0; // type:object size:0x8 +lbl_80818CA8 = .data:0x80818CA8; // type:object size:0xC data:string +lbl_80818CB4 = .data:0x80818CB4; // type:object size:0x14 data:string +@STRING@type__Q26Quazal15SystemComponentFv = .data:0x80818CC8; // type:object size:0x10 data:string +lbl_80818CD8 = .data:0x80818CD8; // type:object size:0x58 +lbl_80818D30 = .data:0x80818D30; // type:object size:0x14 +lbl_80818D44 = .data:0x80818D44; // type:object size:0x10 +lbl_80818D54 = .data:0x80818D54; // type:object size:0x14 +lbl_80818D68 = .data:0x80818D68; // type:object size:0x8 +lbl_80818D70 = .data:0x80818D70; // type:object size:0x20 +lbl_80818D90 = .data:0x80818D90; // type:object size:0x10 +lbl_80818DA0 = .data:0x80818DA0; // type:object size:0x18 data:string +lbl_80818DB8 = .data:0x80818DB8; // type:object size:0x10 +lbl_80818DC8 = .data:0x80818DC8; // type:object size:0x8 +__vt__Q26Quazal3Job = .data:0x80818DD0; // type:object size:0x30 +lbl_80818E00 = .data:0x80818E00; // type:object size:0x88 +__vt__Q26Quazal9Operation = .data:0x80818E88; // type:object size:0x20 +lbl_80818EA8 = .data:0x80818EA8; // type:object size:0x14 +lbl_80818EBC = .data:0x80818EBC; // type:object size:0x14 +__RTTI__Q26Quazal9Operation = .data:0x80818ED0; // type:object size:0x8 +__vt__Q36Quazal12StateMachine6QEvent = .data:0x80818ED8; // type:object size:0x10 +lbl_80818EE8 = .data:0x80818EE8; // type:object size:0x20 +lbl_80818F08 = .data:0x80818F08; // type:object size:0x10 +__RTTI__Q36Quazal12StateMachine6QEvent = .data:0x80818F18; // type:object size:0x8 +__vt__Q26Quazal11PeriodicJob = .data:0x80818F20; // type:object size:0x30 +lbl_80818F50 = .data:0x80818F50; // type:object size:0x18 data:string +lbl_80818F68 = .data:0x80818F68; // type:object size:0x20 +__RTTI__Q26Quazal15StepSequenceJob = .data:0x80818F88; // type:object size:0x8 +lbl_80818F90 = .data:0x80818F90; // type:object size:0xC +lbl_80818F9C = .data:0x80818F9C; // type:object size:0x24 +lbl_80818FC0 = .data:0x80818FC0; // type:object size:0x10 +lbl_80818FD0 = .data:0x80818FD0; // type:object size:0x8 +lbl_80818FD8 = .data:0x80818FD8; // type:object size:0x8 data:4byte +__vt__Q26Quazal24PseudoGlobalVariableRoot = .data:0x80818FE0; // type:object size:0x20 +lbl_80819000 = .data:0x80819000; // type:object size:0x24 +lbl_80819024 = .data:0x80819024; // type:object size:0xC +__RTTI__Q26Quazal24PseudoGlobalVariableRoot = .data:0x80819030; // type:object size:0x8 +lbl_80819038 = .data:0x80819038; // type:object size:0x10 +lbl_80819048 = .data:0x80819048; // type:object size:0x18 data:string +lbl_80819060 = .data:0x80819060; // type:object size:0x18 +lbl_80819078 = .data:0x80819078; // type:object size:0x8 +lbl_80819080 = .data:0x80819080; // type:object size:0xC +lbl_8081908C = .data:0x8081908C; // type:object size:0x14 +lbl_808190A0 = .data:0x808190A0; // type:object size:0x10 +lbl_808190B0 = .data:0x808190B0; // type:object size:0x8 +lbl_808190B8 = .data:0x808190B8; // type:object size:0x18 +lbl_808190D0 = .data:0x808190D0; // type:object size:0x2C +lbl_808190FC = .data:0x808190FC; // type:object size:0x14 +lbl_80819110 = .data:0x80819110; // type:object size:0x8 +lbl_80819118 = .data:0x80819118; // type:object size:0x18 +lbl_80819130 = .data:0x80819130; // type:object size:0x10 +__RTTI__Q26Quazal13WorkerThreads = .data:0x80819140; // type:object size:0x8 +lbl_80819148 = .data:0x80819148; // type:object size:0x68 +lbl_808191B0 = .data:0x808191B0; // type:object size:0x14 +lbl_808191C4 = .data:0x808191C4; // type:object size:0x40 +lbl_80819204 = .data:0x80819204; // type:object size:0x14 +lbl_80819218 = .data:0x80819218; // type:object size:0x8 +__vt__Q26Quazal22SingleThreadCallPolicy = .data:0x80819220; // type:object size:0x14 +lbl_80819234 = .data:0x80819234; // type:object size:0x20 +lbl_80819254 = .data:0x80819254; // type:object size:0x14 +__RTTI__Q26Quazal22SingleThreadCallPolicy = .data:0x80819268; // type:object size:0x8 +__vt__Q26Quazal10CallPolicy = .data:0x80819270; // type:object size:0x14 +lbl_80819284 = .data:0x80819284; // type:object size:0x14 +lbl_80819298 = .data:0x80819298; // type:object size:0x10 +__RTTI__Q26Quazal10CallPolicy = .data:0x808192A8; // type:object size:0x8 +lbl_808192B0 = .data:0x808192B0; // type:object size:0xC data:4byte +__vt__Q26Quazal12StateMachine = .data:0x808192BC; // type:object size:0xC +lbl_808192C8 = .data:0x808192C8; // type:object size:0x18 +lbl_808192E0 = .data:0x808192E0; // type:object size:0x10 +__RTTI__Q26Quazal12StateMachine = .data:0x808192F0; // type:object size:0x8 +__vt__Q36Quazal12StateMachine12QSimpleEvent = .data:0x808192F8; // type:object size:0x10 +lbl_80819308 = .data:0x80819308; // type:object size:0x24 +lbl_8081932C = .data:0x8081932C; // type:object size:0x14 +__RTTI__Q36Quazal12StateMachine12QSimpleEvent = .data:0x80819340; // type:object size:0x8 +lbl_80819348 = .data:0x80819348; // type:object size:0x20 +lbl_80819368 = .data:0x80819368; // type:object size:0x8 +lbl_80819370 = .data:0x80819370; // type:object size:0xC data:4byte +__vt__Q26Quazal69Callback = .data:0x8081937C; // type:object size:0x14 +lbl_80819390 = .data:0x80819390; // type:object size:0x4C +lbl_808193DC = .data:0x808193DC; // type:object size:0x14 +__RTTI__Q26Quazal69Callback = .data:0x808193F0; // type:object size:0x8 +__vt__Q26Quazal12CallbackRoot = .data:0x808193F8; // type:object size:0x14 +lbl_8081940C = .data:0x8081940C; // type:object size:0x18 +lbl_80819424 = .data:0x80819424; // type:object size:0xC +__RTTI__Q26Quazal12CallbackRoot = .data:0x80819430; // type:object size:0x8 +__vt__Q26Quazal15StepSequenceJob = .data:0x80819438; // type:object size:0x34 +lbl_8081946C = .data:0x8081946C; // type:object size:0x1C +lbl_80819488 = .data:0x80819488; // type:object size:0x48 +__vt__Q26Quazal15SystemComponent = .data:0x808194D0; // type:object size:0xE8 +lbl_808195B8 = .data:0x808195B8; // type:object size:0xE0 +__vt__Q26Quazal20SystemComponentGroup = .data:0x80819698; // type:object size:0x50 +lbl_808196E8 = .data:0x808196E8; // type:object size:0x20 +lbl_80819708 = .data:0x80819708; // type:object size:0x20 +__RTTI__Q26Quazal20SystemComponentGroup = .data:0x80819728; // type:object size:0x8 +lbl_80819730 = .data:0x80819730; // type:object size:0x18 +__vt__Q26Quazal16SystemComponents = .data:0x80819748; // type:object size:0x50 +lbl_80819798 = .data:0x80819798; // type:object size:0x1C +lbl_808197B4 = .data:0x808197B4; // type:object size:0x24 +__RTTI__Q26Quazal16SystemComponents = .data:0x808197D8; // type:object size:0x8 +lbl_808197E0 = .data:0x808197E0; // type:object size:0x30 +__vt__Q26Quazal11TimedSignal = .data:0x80819810; // type:object size:0xC +lbl_8081981C = .data:0x8081981C; // type:object size:0x14 data:string +lbl_80819830 = .data:0x80819830; // type:object size:0x10 +__RTTI__Q26Quazal11TimedSignal = .data:0x80819840; // type:object size:0x8 +lbl_80819848 = .data:0x80819848; // type:object size:0x20 +lbl_80819868 = .data:0x80819868; // type:object size:0x10 data:4byte +__vt__Q26Quazal40ObjectThread = .data:0x80819878; // type:object size:0x10 +lbl_80819888 = .data:0x80819888; // type:object size:0x34 +lbl_808198BC = .data:0x808198BC; // type:object size:0x14 +__RTTI__Q26Quazal40ObjectThread = .data:0x808198D0; // type:object size:0x8 +__vt__Q26Quazal13WorkerThreads = .data:0x808198D8; // type:object size:0x18 +lbl_808198F0 = .data:0x808198F0; // type:object size:0x28 +__vt__Q26Quazal7qBuffer = .data:0x80819918; // type:object size:0x18 +lbl_80819930 = .data:0x80819930; // type:object size:0x10 data:string +lbl_80819940 = .data:0x80819940; // type:object size:0x18 +__RTTI__Q26Quazal7qBuffer = .data:0x80819958; // type:object size:0x8 +__vt__Q26Quazal12HMACChecksum = .data:0x80819960; // type:object size:0x1C +lbl_8081997C = .data:0x8081997C; // type:object size:0x18 +lbl_80819994 = .data:0x80819994; // type:object size:0x24 +__RTTI__Q26Quazal12HMACChecksum = .data:0x808199B8; // type:object size:0x8 +lbl_808199C0 = .data:0x808199C0; // type:object size:0x20 +lbl_808199E0 = .data:0x808199E0; // type:object size:0x20 +__RTTI__Q26Quazal22KeyedChecksumAlgorithm = .data:0x80819A00; // type:object size:0x8 +lbl_80819A08 = .data:0x80819A08; // type:object size:0x1C +lbl_80819A24 = .data:0x80819A24; // type:object size:0x14 +__RTTI__Q26Quazal17ChecksumAlgorithm = .data:0x80819A38; // type:object size:0x8 +lbl_80819A40 = .data:0x80819A40; // type:object size:0x18 +lbl_80819A58 = .data:0x80819A58; // type:object size:0x10 +__RTTI__Q26Quazal12PluginObject = .data:0x80819A68; // type:object size:0x8 +__vt__Q26Quazal17ChecksumAlgorithm = .data:0x80819A70; // type:object size:0x18 +__vt__Q26Quazal12PluginObject = .data:0x80819A88; // type:object size:0xC +lbl_80819A94 = .data:0x80819A94; // type:object size:0x1C +lbl_80819AB0 = .data:0x80819AB0; // type:object size:0x8 +__vt__Q26Quazal12JobDeriveKey = .data:0x80819AB8; // type:object size:0x30 +lbl_80819AE8 = .data:0x80819AE8; // type:object size:0x18 +lbl_80819B00 = .data:0x80819B00; // type:object size:0x20 +__RTTI__Q26Quazal12JobDeriveKey = .data:0x80819B20; // type:object size:0x8 +__vt__Q26Quazal22KeyedChecksumAlgorithm = .data:0x80819B28; // type:object size:0x20 +lbl_80819B48 = .data:0x80819B48; // type:object size:0x40 +__vt__Q26Quazal11MD5Checksum = .data:0x80819B88; // type:object size:0x18 +lbl_80819BA0 = .data:0x80819BA0; // type:object size:0x14 data:string +lbl_80819BB4 = .data:0x80819BB4; // type:object size:0x1C +__RTTI__Q26Quazal11MD5Checksum = .data:0x80819BD0; // type:object size:0x8 +__vt__Q26Quazal20CompressionAlgorithm = .data:0x80819BD8; // type:object size:0x14 +lbl_80819BEC = .data:0x80819BEC; // type:object size:0x20 +lbl_80819C0C = .data:0x80819C0C; // type:object size:0x14 +__RTTI__Q26Quazal20CompressionAlgorithm = .data:0x80819C20; // type:object size:0x8 +lbl_80819C28 = .data:0x80819C28; // type:object size:0x20 +__vt__Q26Quazal15ZLibCompression = .data:0x80819C48; // type:object size:0x18 +lbl_80819C60 = .data:0x80819C60; // type:object size:0x18 data:string +lbl_80819C78 = .data:0x80819C78; // type:object size:0x20 +__RTTI__Q26Quazal15ZLibCompression = .data:0x80819C98; // type:object size:0x8 +lbl_80819CA0 = .data:0x80819CA0; // type:object size:0x20 +lbl_80819CC0 = .data:0x80819CC0; // type:object size:0x30 +__vt__Q26Quazal6Buffer = .data:0x80819CF0; // type:object size:0x14 +lbl_80819D04 = .data:0x80819D04; // type:object size:0x10 +lbl_80819D14 = .data:0x80819D14; // type:object size:0x14 +__RTTI__Q26Quazal6Buffer = .data:0x80819D28; // type:object size:0x8 +lbl_80819D30 = .data:0x80819D30; // type:object size:0x18 +__vt__Q26Quazal3Key = .data:0x80819D48; // type:object size:0x14 +lbl_80819D5C = .data:0x80819D5C; // type:object size:0xC data:string +lbl_80819D68 = .data:0x80819D68; // type:object size:0x18 +__RTTI__Q26Quazal3Key = .data:0x80819D80; // type:object size:0x8 +__vt__Q26Quazal19EncryptionAlgorithm = .data:0x80819D88; // type:object size:0x24 +lbl_80819DAC = .data:0x80819DAC; // type:object size:0x1C data:string +lbl_80819DC8 = .data:0x80819DC8; // type:object size:0x18 +__RTTI__Q26Quazal19EncryptionAlgorithm = .data:0x80819DE0; // type:object size:0x8 +lbl_80819DE8 = .data:0x80819DE8; // type:object size:0x18 +__vt__Q26Quazal13RC4Encryption = .data:0x80819E00; // type:object size:0x24 +lbl_80819E24 = .data:0x80819E24; // type:object size:0x18 +lbl_80819E3C = .data:0x80819E3C; // type:object size:0x1C +__RTTI__Q26Quazal13RC4Encryption = .data:0x80819E58; // type:object size:0x8 +lbl_80819E60 = .data:0x80819E60; // type:object size:0x18 +lbl_80819E78 = .data:0x80819E78; // type:object size:0x8 +__vt__Q26Quazal24SessionDiscoveryProtocol = .data:0x80819E80; // type:object size:0x2C +lbl_80819EAC = .data:0x80819EAC; // type:object size:0x24 +lbl_80819ED0 = .data:0x80819ED0; // type:object size:0x18 +__RTTI__Q26Quazal24SessionDiscoveryProtocol = .data:0x80819EE8; // type:object size:0x8 +lbl_80819EF0 = .data:0x80819EF0; // type:object size:0x20 +lbl_80819F10 = .data:0x80819F10; // type:object size:0x14 +lbl_80819F24 = .data:0x80819F24; // type:object size:0x30 +lbl_80819F54 = .data:0x80819F54; // type:object size:0x14 +lbl_80819F68 = .data:0x80819F68; // type:object size:0x8 +lbl_80819F70 = .data:0x80819F70; // type:object size:0x30 +lbl_80819FA0 = .data:0x80819FA0; // type:object size:0x1C data:string +lbl_80819FBC = .data:0x80819FBC; // type:object size:0x1C +lbl_80819FD8 = .data:0x80819FD8; // type:object size:0x8 +lbl_80819FE0 = .data:0x80819FE0; // type:object size:0x10 +lbl_80819FF0 = .data:0x80819FF0; // type:object size:0x10 +__RTTI__Q26Quazal6Stream = .data:0x8081A000; // type:object size:0x8 +lbl_8081A008 = .data:0x8081A008; // type:object size:0x4 data:string +lbl_8081A00C = .data:0x8081A00C; // type:object size:0x2C +__vt__Q26Quazal17ConnectionManager = .data:0x8081A038; // type:object size:0x20 +lbl_8081A058 = .data:0x8081A058; // type:object size:0x1C +lbl_8081A074 = .data:0x8081A074; // type:object size:0x14 +__RTTI__Q26Quazal17ConnectionManager = .data:0x8081A088; // type:object size:0x8 +__vt__Q26Quazal14ComponentState = .data:0x8081A090; // type:object size:0x50 +lbl_8081A0E0 = .data:0x8081A0E0; // type:object size:0x18 +lbl_8081A0F8 = .data:0x8081A0F8; // type:object size:0x20 +__RTTI__Q26Quazal14ComponentState = .data:0x8081A118; // type:object size:0x8 +lbl_8081A120 = .data:0x8081A120; // type:object size:0x20 +lbl_8081A140 = .data:0x8081A140; // type:object size:0x10 +lbl_8081A150 = .data:0x8081A150; // type:object size:0x8 +lbl_8081A158 = .data:0x8081A158; // type:object size:0x10 +lbl_8081A168 = .data:0x8081A168; // type:object size:0x28 +lbl_8081A190 = .data:0x8081A190; // type:object size:0x4 +lbl_8081A194 = .data:0x8081A194; // type:object size:0x4 +lbl_8081A198 = .data:0x8081A198; // type:object size:0x4 +lbl_8081A19C = .data:0x8081A19C; // type:object size:0x4 +lbl_8081A1A0 = .data:0x8081A1A0; // type:object size:0x4 +lbl_8081A1A4 = .data:0x8081A1A4; // type:object size:0x4 +lbl_8081A1A8 = .data:0x8081A1A8; // type:object size:0x4 +lbl_8081A1AC = .data:0x8081A1AC; // type:object size:0x4 +lbl_8081A1B0 = .data:0x8081A1B0; // type:object size:0x7C +lbl_8081A22C = .data:0x8081A22C; // type:object size:0x24 +lbl_8081A250 = .data:0x8081A250; // type:object size:0x18 +lbl_8081A268 = .data:0x8081A268; // type:object size:0x8 +__vt__Q26Quazal15EmulationDevice = .data:0x8081A270; // type:object size:0x10 +lbl_8081A280 = .data:0x8081A280; // type:object size:0x18 data:string +lbl_8081A298 = .data:0x8081A298; // type:object size:0x10 +__RTTI__Q26Quazal15EmulationDevice = .data:0x8081A2A8; // type:object size:0x8 +lbl_8081A2B0 = .data:0x8081A2B0; // type:object size:0x4 +lbl_8081A2B4 = .data:0x8081A2B4; // type:object size:0x4 +__vt__Q26Quazal8EndPoint = .data:0x8081A2B8; // type:object size:0x6C +lbl_8081A324 = .data:0x8081A324; // type:object size:0x14 +lbl_8081A338 = .data:0x8081A338; // type:object size:0x10 +__RTTI__Q26Quazal8EndPoint = .data:0x8081A348; // type:object size:0x8 +__vt__Q26Quazal15HighLevelStream = .data:0x8081A350; // type:object size:0x20 +lbl_8081A370 = .data:0x8081A370; // type:object size:0x18 data:string +lbl_8081A388 = .data:0x8081A388; // type:object size:0x18 +__RTTI__Q26Quazal15HighLevelStream = .data:0x8081A3A0; // type:object size:0x8 +lbl_8081A3A8 = .data:0x8081A3A8; // type:object size:0x18 +lbl_8081A3C0 = .data:0x8081A3C0; // type:object size:0x58 +lbl_8081A418 = .data:0x8081A418; // type:object size:0x4 +lbl_8081A41C = .data:0x8081A41C; // type:object size:0xC data:4byte +lbl_8081A428 = .data:0x8081A428; // type:object size:0xC data:4byte +lbl_8081A434 = .data:0x8081A434; // type:object size:0xC data:4byte +lbl_8081A440 = .data:0x8081A440; // type:object size:0xC data:4byte +lbl_8081A44C = .data:0x8081A44C; // type:object size:0xC data:4byte +lbl_8081A458 = .data:0x8081A458; // type:object size:0x54 data:4byte +lbl_8081A4AC = .data:0x8081A4AC; // type:object size:0xC data:4byte +lbl_8081A4B8 = .data:0x8081A4B8; // type:object size:0xC data:4byte +lbl_8081A4C4 = .data:0x8081A4C4; // type:object size:0xC data:4byte +lbl_8081A4D0 = .data:0x8081A4D0; // type:object size:0x30 data:4byte +lbl_8081A500 = .data:0x8081A500; // type:object size:0xC data:4byte +lbl_8081A50C = .data:0x8081A50C; // type:object size:0xC data:4byte +lbl_8081A518 = .data:0x8081A518; // type:object size:0xC data:4byte +lbl_8081A524 = .data:0x8081A524; // type:object size:0xC data:4byte +lbl_8081A530 = .data:0x8081A530; // type:object size:0xC data:4byte +lbl_8081A53C = .data:0x8081A53C; // type:object size:0x4 +lbl_8081A540 = .data:0x8081A540; // type:object size:0x4 +lbl_8081A544 = .data:0x8081A544; // type:object size:0x4 +lbl_8081A548 = .data:0x8081A548; // type:object size:0x38 +lbl_8081A580 = .data:0x8081A580; // type:object size:0x1C +lbl_8081A59C = .data:0x8081A59C; // type:object size:0x24 +lbl_8081A5C0 = .data:0x8081A5C0; // type:object size:0x8 +lbl_8081A5C8 = .data:0x8081A5C8; // type:object size:0x14 +lbl_8081A5DC = .data:0x8081A5DC; // type:object size:0x20 +lbl_8081A5FC = .data:0x8081A5FC; // type:object size:0x14 +lbl_8081A610 = .data:0x8081A610; // type:object size:0x108 +lbl_8081A718 = .data:0x8081A718; // type:object size:0x278 +lbl_8081A990 = .data:0x8081A990; // type:object size:0x4 +lbl_8081A994 = .data:0x8081A994; // type:object size:0x4 +__vt__Q26Quazal17NATRelayInterface = .data:0x8081A998; // type:object size:0x14 +lbl_8081A9AC = .data:0x8081A9AC; // type:object size:0x1C +lbl_8081A9C8 = .data:0x8081A9C8; // type:object size:0x10 +__RTTI__Q26Quazal17NATRelayInterface = .data:0x8081A9D8; // type:object size:0x8 +lbl_8081A9E0 = .data:0x8081A9E0; // type:object size:0x4 data:4byte +lbl_8081A9E4 = .data:0x8081A9E4; // type:object size:0x4 data:4byte +__vt__Q26Quazal18NATTraversalEngine = .data:0x8081A9E8; // type:object size:0x1C +lbl_8081AA04 = .data:0x8081AA04; // type:object size:0x1C +lbl_8081AA20 = .data:0x8081AA20; // type:object size:0x10 +__RTTI__Q26Quazal18NATTraversalEngine = .data:0x8081AA30; // type:object size:0x8 +__vt__Q26Quazal8URLProbe = .data:0x8081AA38; // type:object size:0xC +lbl_8081AA44 = .data:0x8081AA44; // type:object size:0x14 +lbl_8081AA58 = .data:0x8081AA58; // type:object size:0x10 +__RTTI__Q26Quazal8URLProbe = .data:0x8081AA68; // type:object size:0x8 +lbl_8081AA70 = .data:0x8081AA70; // type:object size:0x18 +__vt__Q26Quazal18NATTraversalStream = .data:0x8081AA88; // type:object size:0x1C +lbl_8081AAA4 = .data:0x8081AAA4; // type:object size:0x1C +lbl_8081AAC0 = .data:0x8081AAC0; // type:object size:0x20 +__RTTI__Q26Quazal18NATTraversalStream = .data:0x8081AAE0; // type:object size:0x8 +lbl_8081AAE8 = .data:0x8081AAE8; // type:object size:0x4 +lbl_8081AAEC = .data:0x8081AAEC; // type:object size:0x4 data:4byte +lbl_8081AAF0 = .data:0x8081AAF0; // type:object size:0x18 +lbl_8081AB08 = .data:0x8081AB08; // type:object size:0x10 data:string +lbl_8081AB18 = .data:0x8081AB18; // type:object size:0x18 +lbl_8081AB30 = .data:0x8081AB30; // type:object size:0x8 +lbl_8081AB38 = .data:0x8081AB38; // type:object size:0x10 +lbl_8081AB48 = .data:0x8081AB48; // type:object size:0x4 +lbl_8081AB4C = .data:0x8081AB4C; // type:object size:0x4 data:4byte +lbl_8081AB50 = .data:0x8081AB50; // type:object size:0x8 data:4byte +lbl_8081AB58 = .data:0x8081AB58; // type:object size:0x40 +lbl_8081AB98 = .data:0x8081AB98; // type:object size:0x18 +lbl_8081ABB0 = .data:0x8081ABB0; // type:object size:0x10 +lbl_8081ABC0 = .data:0x8081ABC0; // type:object size:0x8 +lbl_8081ABC8 = .data:0x8081ABC8; // type:object size:0x10 +lbl_8081ABD8 = .data:0x8081ABD8; // type:object size:0x20 +lbl_8081ABF8 = .data:0x8081ABF8; // type:object size:0x18 +lbl_8081AC10 = .data:0x8081AC10; // type:object size:0x8 +lbl_8081AC18 = .data:0x8081AC18; // type:object size:0x10 +lbl_8081AC28 = .data:0x8081AC28; // type:object size:0x20 +lbl_8081AC48 = .data:0x8081AC48; // type:object size:0x18 +lbl_8081AC60 = .data:0x8081AC60; // type:object size:0x8 +lbl_8081AC68 = .data:0x8081AC68; // type:object size:0x20 +lbl_8081AC88 = .data:0x8081AC88; // type:object size:0x30 +lbl_8081ACB8 = .data:0x8081ACB8; // type:object size:0x18 +lbl_8081ACD0 = .data:0x8081ACD0; // type:object size:0x8 +lbl_8081ACD8 = .data:0x8081ACD8; // type:object size:0x18 +lbl_8081ACF0 = .data:0x8081ACF0; // type:object size:0xC data:4byte +lbl_8081ACFC = .data:0x8081ACFC; // type:object size:0xC data:4byte +lbl_8081AD08 = .data:0x8081AD08; // type:object size:0x30 +lbl_8081AD38 = .data:0x8081AD38; // type:object size:0x4 +lbl_8081AD3C = .data:0x8081AD3C; // type:object size:0x1C +lbl_8081AD58 = .data:0x8081AD58; // type:object size:0x78 +__vt__Q26Quazal6Stream = .data:0x8081ADD0; // type:object size:0x18 +lbl_8081ADE8 = .data:0x8081ADE8; // type:object size:0x20 +lbl_8081AE08 = .data:0x8081AE08; // type:object size:0x38 +lbl_8081AE40 = .data:0x8081AE40; // type:object size:0x18 +lbl_8081AE58 = .data:0x8081AE58; // type:object size:0x8 +lbl_8081AE60 = .data:0x8081AE60; // type:object size:0x18 +lbl_8081AE78 = .data:0x8081AE78; // type:object size:0xC +lbl_8081AE84 = .data:0x8081AE84; // type:object size:0x18 +lbl_8081AE9C = .data:0x8081AE9C; // type:object size:0xC +lbl_8081AEA8 = .data:0x8081AEA8; // type:object size:0x8 +lbl_8081AEB0 = .data:0x8081AEB0; // type:object size:0x4 +lbl_8081AEB4 = .data:0x8081AEB4; // type:object size:0x4 +lbl_8081AEB8 = .data:0x8081AEB8; // type:object size:0xC +lbl_8081AEC4 = .data:0x8081AEC4; // type:object size:0x14 data:string +lbl_8081AED8 = .data:0x8081AED8; // type:object size:0x10 +lbl_8081AEE8 = .data:0x8081AEE8; // type:object size:0x8 +lbl_8081AEF0 = .data:0x8081AEF0; // type:object size:0x4 +lbl_8081AEF4 = .data:0x8081AEF4; // type:object size:0x2C +lbl_8081AF20 = .data:0x8081AF20; // type:object size:0x1C +lbl_8081AF3C = .data:0x8081AF3C; // type:object size:0xC +lbl_8081AF48 = .data:0x8081AF48; // type:object size:0x8 +lbl_8081AF50 = .data:0x8081AF50; // type:object size:0x8 data:string +lbl_8081AF58 = .data:0x8081AF58; // type:object size:0x20 +lbl_8081AF78 = .data:0x8081AF78; // type:object size:0x14 data:string +lbl_8081AF8C = .data:0x8081AF8C; // type:object size:0xDC +lbl_8081B068 = .data:0x8081B068; // type:object size:0x20 data:string +lbl_8081B088 = .data:0x8081B088; // type:object size:0x8 +lbl_8081B090 = .data:0x8081B090; // type:object size:0xC +lbl_8081B09C = .data:0x8081B09C; // type:object size:0x18 +lbl_8081B0B4 = .data:0x8081B0B4; // type:object size:0x14 +lbl_8081B0C8 = .data:0x8081B0C8; // type:object size:0x8 +lbl_8081B0D0 = .data:0x8081B0D0; // type:object size:0x2C +lbl_8081B0FC = .data:0x8081B0FC; // type:object size:0xC +lbl_8081B108 = .data:0x8081B108; // type:object size:0x8 +lbl_8081B110 = .data:0x8081B110; // type:object size:0x18 +lbl_8081B128 = .data:0x8081B128; // type:object size:0x50 +lbl_8081B178 = .data:0x8081B178; // type:object size:0x4 +lbl_8081B17C = .data:0x8081B17C; // type:object size:0x14 +lbl_8081B190 = .data:0x8081B190; // type:object size:0x18 +lbl_8081B1A8 = .data:0x8081B1A8; // type:object size:0x6C +lbl_8081B214 = .data:0x8081B214; // type:object size:0x18 +lbl_8081B22C = .data:0x8081B22C; // type:object size:0x14 +lbl_8081B240 = .data:0x8081B240; // type:object size:0x50 +lbl_8081B290 = .data:0x8081B290; // type:object size:0x38 +lbl_8081B2C8 = .data:0x8081B2C8; // type:object size:0x30 +jumptable_8081B2F8 = .data:0x8081B2F8; // type:object size:0x24 scope:local +lbl_8081B32C = .data:0x8081B32C; // type:object size:0x7C +lbl_8081B3A8 = .data:0x8081B3A8; // type:object size:0x14 data:string +lbl_8081B3BC = .data:0x8081B3BC; // type:object size:0x1C +lbl_8081B3D8 = .data:0x8081B3D8; // type:object size:0x98 +lbl_8081B470 = .data:0x8081B470; // type:object size:0x138 +lbl_8081B5A8 = .data:0x8081B5A8; // type:object size:0x8 +lbl_8081B5B0 = .data:0x8081B5B0; // type:object size:0x20 +lbl_8081B5D0 = .data:0x8081B5D0; // type:object size:0x54 +lbl_8081B624 = .data:0x8081B624; // type:object size:0x14 +lbl_8081B638 = .data:0x8081B638; // type:object size:0x8 +lbl_8081B640 = .data:0x8081B640; // type:object size:0x20 +lbl_8081B660 = .data:0x8081B660; // type:object size:0x2C +lbl_8081B68C = .data:0x8081B68C; // type:object size:0x14 +lbl_8081B6A0 = .data:0x8081B6A0; // type:object size:0x8 +lbl_8081B6A8 = .data:0x8081B6A8; // type:object size:0x18 +lbl_8081B6C0 = .data:0x8081B6C0; // type:object size:0x18 +lbl_8081B6D8 = .data:0x8081B6D8; // type:object size:0x30 +lbl_8081B708 = .data:0x8081B708; // type:object size:0x18 +lbl_8081B720 = .data:0x8081B720; // type:object size:0x10 +lbl_8081B730 = .data:0x8081B730; // type:object size:0x14 +lbl_8081B744 = .data:0x8081B744; // type:object size:0x18 +lbl_8081B75C = .data:0x8081B75C; // type:object size:0x14 +lbl_8081B770 = .data:0x8081B770; // type:object size:0x8 +lbl_8081B778 = .data:0x8081B778; // type:object size:0x18 +lbl_8081B790 = .data:0x8081B790; // type:object size:0x20 +lbl_8081B7B0 = .data:0x8081B7B0; // type:object size:0x40 data:string +lbl_8081B7F0 = .data:0x8081B7F0; // type:object size:0x18 +lbl_8081B808 = .data:0x8081B808; // type:object size:0x8 +lbl_8081B810 = .data:0x8081B810; // type:object size:0x1C +lbl_8081B82C = .data:0x8081B82C; // type:object size:0x40 +lbl_8081B86C = .data:0x8081B86C; // type:object size:0x14 +lbl_8081B880 = .data:0x8081B880; // type:object size:0x8 +lbl_8081B888 = .data:0x8081B888; // type:object size:0x1C +lbl_8081B8A4 = .data:0x8081B8A4; // type:object size:0x3C +lbl_8081B8E0 = .data:0x8081B8E0; // type:object size:0x10 +lbl_8081B8F0 = .data:0x8081B8F0; // type:object size:0x8 +jumptable_8081B8F8 = .data:0x8081B8F8; // type:object size:0x20 scope:local +lbl_8081B918 = .data:0x8081B918; // type:object size:0x18 +lbl_8081B930 = .data:0x8081B930; // type:object size:0x10 +lbl_8081B940 = .data:0x8081B940; // type:object size:0x18 +lbl_8081B958 = .data:0x8081B958; // type:object size:0x8 +lbl_8081B960 = .data:0x8081B960; // type:object size:0xA8 +lbl_8081BA08 = .data:0x8081BA08; // type:object size:0x18 +lbl_8081BA20 = .data:0x8081BA20; // type:object size:0x14 +lbl_8081BA34 = .data:0x8081BA34; // type:object size:0x1C +lbl_8081BA50 = .data:0x8081BA50; // type:object size:0x8 +lbl_8081BA58 = .data:0x8081BA58; // type:object size:0x10 +lbl_8081BA68 = .data:0x8081BA68; // type:object size:0x18 +lbl_8081BA80 = .data:0x8081BA80; // type:object size:0x14 +lbl_8081BA94 = .data:0x8081BA94; // type:object size:0x1C +lbl_8081BAB0 = .data:0x8081BAB0; // type:object size:0x8 +lbl_8081BAB8 = .data:0x8081BAB8; // type:object size:0x10 +lbl_8081BAC8 = .data:0x8081BAC8; // type:object size:0x18 +lbl_8081BAE0 = .data:0x8081BAE0; // type:object size:0x30 +lbl_8081BB10 = .data:0x8081BB10; // type:object size:0x4 +lbl_8081BB14 = .data:0x8081BB14; // type:object size:0x4 +lbl_8081BB18 = .data:0x8081BB18; // type:object size:0x20 data:4byte +lbl_8081BB38 = .data:0x8081BB38; // type:object size:0x10 +lbl_8081BB48 = .data:0x8081BB48; // type:object size:0x34 +lbl_8081BB7C = .data:0x8081BB7C; // type:object size:0x14 +lbl_8081BB90 = .data:0x8081BB90; // type:object size:0x8 +lbl_8081BB98 = .data:0x8081BB98; // type:object size:0x30 +lbl_8081BBC8 = .data:0x8081BBC8; // type:object size:0x24 +lbl_8081BBEC = .data:0x8081BBEC; // type:object size:0x1C +lbl_8081BC08 = .data:0x8081BC08; // type:object size:0x8 +lbl_8081BC10 = .data:0x8081BC10; // type:object size:0x40 +lbl_8081BC50 = .data:0x8081BC50; // type:object size:0x18 +lbl_8081BC68 = .data:0x8081BC68; // type:object size:0x18 +lbl_8081BC80 = .data:0x8081BC80; // type:object size:0xE8 +lbl_8081BD68 = .data:0x8081BD68; // type:object size:0x88 +lbl_8081BDF0 = .data:0x8081BDF0; // type:object size:0x8 +lbl_8081BDF8 = .data:0x8081BDF8; // type:object size:0x20 +lbl_8081BE18 = .data:0x8081BE18; // type:object size:0x24 data:string +lbl_8081BE3C = .data:0x8081BE3C; // type:object size:0x1C +lbl_8081BE58 = .data:0x8081BE58; // type:object size:0x8 +lbl_8081BE60 = .data:0x8081BE60; // type:object size:0x18 +lbl_8081BE78 = .data:0x8081BE78; // type:object size:0x4 +lbl_8081BE7C = .data:0x8081BE7C; // type:object size:0x4 +lbl_8081BE80 = .data:0x8081BE80; // type:object size:0x8 +lbl_8081BE88 = .data:0x8081BE88; // type:object size:0x18 +lbl_8081BEA0 = .data:0x8081BEA0; // type:object size:0x28 +__RTTI__Q26Quazal14ServerProtocol = .data:0x8081BEC8; // type:object size:0x8 +lbl_8081BED0 = .data:0x8081BED0; // type:object size:0x14 +lbl_8081BEE4 = .data:0x8081BEE4; // type:object size:0x1C +__RTTI__Q26Quazal8Protocol = .data:0x8081BF00; // type:object size:0x8 +lbl_8081BF08 = .data:0x8081BF08; // type:object size:0x10 +lbl_8081BF18 = .data:0x8081BF18; // type:object size:0x10 +lbl_8081BF28 = .data:0x8081BF28; // type:object size:0x38 +lbl_8081BF60 = .data:0x8081BF60; // type:object size:0x20 data:string +lbl_8081BF80 = .data:0x8081BF80; // type:object size:0x20 +lbl_8081BFA0 = .data:0x8081BFA0; // type:object size:0x8 +lbl_8081BFA8 = .data:0x8081BFA8; // type:object size:0x34 +lbl_8081BFDC = .data:0x8081BFDC; // type:object size:0x24 +lbl_8081C000 = .data:0x8081C000; // type:object size:0x28 +lbl_8081C028 = .data:0x8081C028; // type:object size:0x8 +lbl_8081C030 = .data:0x8081C030; // type:object size:0x38 +lbl_8081C068 = .data:0x8081C068; // type:object size:0x8 +__vt__Q26Quazal8Protocol = .data:0x8081C070; // type:object size:0x60 +lbl_8081C0D0 = .data:0x8081C0D0; // type:object size:0x10 +__vt__Q26Quazal19ProtocolCallContext = .data:0x8081C0E0; // type:object size:0x20 +lbl_8081C100 = .data:0x8081C100; // type:object size:0x1C data:string +lbl_8081C11C = .data:0x8081C11C; // type:object size:0x1C +__RTTI__Q26Quazal19ProtocolCallContext = .data:0x8081C138; // type:object size:0x8 +lbl_8081C140 = .data:0x8081C140; // type:object size:0x4 +lbl_8081C144 = .data:0x8081C144; // type:object size:0x4 +lbl_8081C148 = .data:0x8081C148; // type:object size:0x18 +lbl_8081C160 = .data:0x8081C160; // type:object size:0x20 +lbl_8081C180 = .data:0x8081C180; // type:object size:0x10 +lbl_8081C190 = .data:0x8081C190; // type:object size:0x8 +lbl_8081C198 = .data:0x8081C198; // type:object size:0xA8 +__vt__Q26Quazal14ServerProtocol = .data:0x8081C240; // type:object size:0x64 +lbl_8081C2A4 = .data:0x8081C2A4; // type:object size:0x9C +lbl_8081C340 = .data:0x8081C340; // type:object size:0x20 +lbl_8081C360 = .data:0x8081C360; // type:object size:0x30 +__vt__Q26Quazal19ActiveDOCallContext = .data:0x8081C390; // type:object size:0x38 +lbl_8081C3C8 = .data:0x8081C3C8; // type:object size:0x1C data:string +lbl_8081C3E4 = .data:0x8081C3E4; // type:object size:0x24 +__RTTI__Q26Quazal19ActiveDOCallContext = .data:0x8081C408; // type:object size:0x8 +lbl_8081C410 = .data:0x8081C410; // type:object size:0x18 +lbl_8081C428 = .data:0x8081C428; // type:object size:0x20 +__RTTI__Q26Quazal13DOCallContext = .data:0x8081C448; // type:object size:0x88 +lbl_8081C4D0 = .data:0x8081C4D0; // type:object size:0x20 +lbl_8081C4F0 = .data:0x8081C4F0; // type:object size:0x30 +lbl_8081C520 = .data:0x8081C520; // type:object size:0x1C data:string +lbl_8081C53C = .data:0x8081C53C; // type:object size:0x24 +lbl_8081C560 = .data:0x8081C560; // type:object size:0x8 +lbl_8081C568 = .data:0x8081C568; // type:object size:0x14 data:string +lbl_8081C57C = .data:0x8081C57C; // type:object size:0x1C +__RTTI__Q26Quazal11DOOperation = .data:0x8081C598; // type:object size:0x8 +lbl_8081C5A0 = .data:0x8081C5A0; // type:object size:0x10 +s_strTitle__Q26Quazal21ProcessAuthentication = .data:0x8081C5B0; // type:object size:0x8 data:4byte +lbl_8081C5B8 = .data:0x8081C5B8; // type:object size:0x28 +lbl_8081C5E0 = .data:0x8081C5E0; // type:object size:0x30 +lbl_8081C610 = .data:0x8081C610; // type:object size:0x14 +lbl_8081C624 = .data:0x8081C624; // type:object size:0x4 +lbl_8081C628 = .data:0x8081C628; // type:object size:0x4 +lbl_8081C62C = .data:0x8081C62C; // type:object size:0x4 +lbl_8081C630 = .data:0x8081C630; // type:object size:0x8 +__vt__Q26Quazal19CallMethodOperation = .data:0x8081C638; // type:object size:0x30 +lbl_8081C668 = .data:0x8081C668; // type:object size:0x1C data:string +lbl_8081C684 = .data:0x8081C684; // type:object size:0x24 +__RTTI__Q26Quazal19CallMethodOperation = .data:0x8081C6A8; // type:object size:0xC8 +lbl_8081C770 = .data:0x8081C770; // type:object size:0x10 +lbl_8081C780 = .data:0x8081C780; // type:object size:0xC data:4byte +lbl_8081C78C = .data:0x8081C78C; // type:object size:0xC data:4byte +lbl_8081C798 = .data:0x8081C798; // type:object size:0x30 +lbl_8081C7C8 = .data:0x8081C7C8; // type:object size:0x4C +lbl_8081C814 = .data:0x8081C814; // type:object size:0x1C +lbl_8081C830 = .data:0x8081C830; // type:object size:0x8 +lbl_8081C838 = .data:0x8081C838; // type:object size:0x30 +lbl_8081C868 = .data:0x8081C868; // type:object size:0x48 +lbl_8081C8B0 = .data:0x8081C8B0; // type:object size:0x28 +lbl_8081C8D8 = .data:0x8081C8D8; // type:object size:0x8 +lbl_8081C8E0 = .data:0x8081C8E0; // type:object size:0x14 +lbl_8081C8F4 = .data:0x8081C8F4; // type:object size:0x18 +lbl_8081C90C = .data:0x8081C90C; // type:object size:0x14 +lbl_8081C920 = .data:0x8081C920; // type:object size:0x8 +lbl_8081C928 = .data:0x8081C928; // type:object size:0x14 +lbl_8081C93C = .data:0x8081C93C; // type:object size:0x2C data:string +lbl_8081C968 = .data:0x8081C968; // type:object size:0x10 +lbl_8081C978 = .data:0x8081C978; // type:object size:0x8 +lbl_8081C980 = .data:0x8081C980; // type:object size:0xC data:string +lbl_8081C98C = .data:0x8081C98C; // type:object size:0xC data:string +lbl_8081C998 = .data:0x8081C998; // type:object size:0x58 +lbl_8081C9F0 = .data:0x8081C9F0; // type:object size:0x30 +lbl_8081CA20 = .data:0x8081CA20; // type:object size:0x20 +lbl_8081CA40 = .data:0x8081CA40; // type:object size:0x28 +lbl_8081CA68 = .data:0x8081CA68; // type:object size:0x8 +lbl_8081CA70 = .data:0x8081CA70; // type:object size:0x10 +lbl_8081CA80 = .data:0x8081CA80; // type:object size:0x20 +lbl_8081CAA0 = .data:0x8081CAA0; // type:object size:0x30 +lbl_8081CAD0 = .data:0x8081CAD0; // type:object size:0x28 +lbl_8081CAF8 = .data:0x8081CAF8; // type:object size:0x28 +lbl_8081CB20 = .data:0x8081CB20; // type:object size:0x8 +lbl_8081CB28 = .data:0x8081CB28; // type:object size:0x14 data:string +lbl_8081CB3C = .data:0x8081CB3C; // type:object size:0x24 +lbl_8081CB60 = .data:0x8081CB60; // type:object size:0x8 +lbl_8081CB68 = .data:0x8081CB68; // type:object size:0x4 +lbl_8081CB6C = .data:0x8081CB6C; // type:object size:0x4 +lbl_8081CB70 = .data:0x8081CB70; // type:object size:0x4 +lbl_8081CB74 = .data:0x8081CB74; // type:object size:0xB4 +__vt__Q26Quazal21CreateMasterOperation = .data:0x8081CC28; // type:object size:0x30 +lbl_8081CC58 = .data:0x8081CC58; // type:object size:0x20 +lbl_8081CC78 = .data:0x8081CC78; // type:object size:0x28 +__RTTI__Q26Quazal21CreateMasterOperation = .data:0x8081CCA0; // type:object size:0x8 +lbl_8081CCA8 = .data:0x8081CCA8; // type:object size:0x10 +s_uiBaseClassID__Q26Quazal15DDLDeclarations = .data:0x8081CCB8; // type:object size:0x8 data:4byte +__vt__Q26Quazal15DDLDeclarations = .data:0x8081CCC0; // type:object size:0x10 +lbl_8081CCD0 = .data:0x8081CCD0; // type:object size:0x18 data:string +lbl_8081CCE8 = .data:0x8081CCE8; // type:object size:0x10 +__RTTI__Q26Quazal15DDLDeclarations = .data:0x8081CCF8; // type:object size:0x8 +lbl_8081CD00 = .data:0x8081CD00; // type:object size:0x4 +__vt__Q26Quazal13DOCallContext = .data:0x8081CD04; // type:object size:0x34 +lbl_8081CD38 = .data:0x8081CD38; // type:object size:0x160 +lbl_8081CE98 = .data:0x8081CE98; // type:object size:0x8 +lbl_8081CEA0 = .data:0x8081CEA0; // type:object size:0x68 +lbl_8081CF08 = .data:0x8081CF08; // type:object size:0x10 data:string +lbl_8081CF18 = .data:0x8081CF18; // type:object size:0x10 +lbl_8081CF28 = .data:0x8081CF28; // type:object size:0x8 +lbl_8081CF30 = .data:0x8081CF30; // type:object size:0x14 +lbl_8081CF44 = .data:0x8081CF44; // type:object size:0x18 +lbl_8081CF5C = .data:0x8081CF5C; // type:object size:0x3C +lbl_8081CF98 = .data:0x8081CF98; // type:object size:0x18 +lbl_8081CFB0 = .data:0x8081CFB0; // type:object size:0x68 +lbl_8081D018 = .data:0x8081D018; // type:object size:0xC +lbl_8081D024 = .data:0x8081D024; // type:object size:0x10 +lbl_8081D034 = .data:0x8081D034; // type:object size:0x1C +lbl_8081D050 = .data:0x8081D050; // type:object size:0x8 +lbl_8081D058 = .data:0x8081D058; // type:object size:0x1F data:string +lbl_8081D077 = .data:0x8081D077; // type:object size:0x2A data:string +lbl_8081D0A1 = .data:0x8081D0A1; // type:object size:0x1C data:string +lbl_8081D0BD = .data:0x8081D0BD; // type:object size:0x15 data:string +lbl_8081D0D2 = .data:0x8081D0D2; // type:object size:0x1C data:string +lbl_8081D0EE = .data:0x8081D0EE; // type:object size:0x28 data:string +lbl_8081D116 = .data:0x8081D116; // type:object size:0x23 data:string +lbl_8081D139 = .data:0x8081D139; // type:object size:0x27 data:string +lbl_8081D160 = .data:0x8081D160; // type:object size:0x24 data:string +lbl_8081D184 = .data:0x8081D184; // type:object size:0x19 data:string +lbl_8081D19D = .data:0x8081D19D; // type:object size:0x2D data:string +lbl_8081D1CA = .data:0x8081D1CA; // type:object size:0x23 data:string +lbl_8081D1ED = .data:0x8081D1ED; // type:object size:0x23 data:string +lbl_8081D210 = .data:0x8081D210; // type:object size:0x22 data:string +lbl_8081D232 = .data:0x8081D232; // type:object size:0x2B data:string +lbl_8081D25D = .data:0x8081D25D; // type:object size:0x12 data:string +lbl_8081D26F = .data:0x8081D26F; // type:object size:0x15 data:string +lbl_8081D284 = .data:0x8081D284; // type:object size:0x14 data:string +lbl_8081D298 = .data:0x8081D298; // type:object size:0x2D data:string +lbl_8081D2C5 = .data:0x8081D2C5; // type:object size:0x16 data:string +lbl_8081D2DB = .data:0x8081D2DB; // type:object size:0x10 data:string +lbl_8081D2EB = .data:0x8081D2EB; // type:object size:0x18 data:string +lbl_8081D303 = .data:0x8081D303; // type:object size:0x15 data:string +lbl_8081D318 = .data:0x8081D318; // type:object size:0x19 data:string +lbl_8081D331 = .data:0x8081D331; // type:object size:0x1C data:string +lbl_8081D34D = .data:0x8081D34D; // type:object size:0x5B +__vt__Q26Quazal21DOCoreDDLDeclarations = .data:0x8081D3A8; // type:object size:0x10 +lbl_8081D3B8 = .data:0x8081D3B8; // type:object size:0x20 +lbl_8081D3D8 = .data:0x8081D3D8; // type:object size:0x18 +__RTTI__Q26Quazal21DOCoreDDLDeclarations = .data:0x8081D3F0; // type:object size:0x8 +lbl_8081D3F8 = .data:0x8081D3F8; // type:object size:0x4 +lbl_8081D3FC = .data:0x8081D3FC; // type:object size:0x1C +__vt__Q26Quazal8DOFilter = .data:0x8081D418; // type:object size:0x24 +lbl_8081D43C = .data:0x8081D43C; // type:object size:0x14 +lbl_8081D450 = .data:0x8081D450; // type:object size:0x18 +__RTTI__Q26Quazal8DOFilter = .data:0x8081D468; // type:object size:0x8 +lbl_8081D470 = .data:0x8081D470; // type:object size:0x24 +lbl_8081D494 = .data:0x8081D494; // type:object size:0x20 +lbl_8081D4B4 = .data:0x8081D4B4; // type:object size:0x1C +lbl_8081D4D0 = .data:0x8081D4D0; // type:object size:0x8 +lbl_8081D4D8 = .data:0x8081D4D8; // type:object size:0x24 +lbl_8081D4FC = .data:0x8081D4FC; // type:object size:0x28 +lbl_8081D524 = .data:0x8081D524; // type:object size:0x1C +lbl_8081D540 = .data:0x8081D540; // type:object size:0x8 +lbl_8081D548 = .data:0x8081D548; // type:object size:0x24 +lbl_8081D56C = .data:0x8081D56C; // type:object size:0x14 data:string +lbl_8081D580 = .data:0x8081D580; // type:object size:0x20 +lbl_8081D5A0 = .data:0x8081D5A0; // type:object size:0x8 +lbl_8081D5A8 = .data:0x8081D5A8; // type:object size:0x24 +lbl_8081D5CC = .data:0x8081D5CC; // type:object size:0x14 data:string +lbl_8081D5E0 = .data:0x8081D5E0; // type:object size:0x20 +lbl_8081D600 = .data:0x8081D600; // type:object size:0x8 +__vt__Q26Quazal10OrDOFilter = .data:0x8081D608; // type:object size:0x24 +lbl_8081D62C = .data:0x8081D62C; // type:object size:0x14 +lbl_8081D640 = .data:0x8081D640; // type:object size:0x20 +__RTTI__Q26Quazal10OrDOFilter = .data:0x8081D660; // type:object size:0x8 +__vt__Q26Quazal17IsAKindOfDOFilter = .data:0x8081D668; // type:object size:0x24 +lbl_8081D68C = .data:0x8081D68C; // type:object size:0x1C +lbl_8081D6A8 = .data:0x8081D6A8; // type:object size:0x20 +__RTTI__Q26Quazal17IsAKindOfDOFilter = .data:0x8081D6C8; // type:object size:0x8 +__vt__Q26Quazal11IsADOFilter = .data:0x8081D6D0; // type:object size:0x24 +lbl_8081D6F4 = .data:0x8081D6F4; // type:object size:0x14 data:string +lbl_8081D708 = .data:0x8081D708; // type:object size:0x20 +__RTTI__Q26Quazal11IsADOFilter = .data:0x8081D728; // type:object size:0x8 +lbl_8081D730 = .data:0x8081D730; // type:object size:0x24 +lbl_8081D754 = .data:0x8081D754; // type:object size:0x18 +lbl_8081D76C = .data:0x8081D76C; // type:object size:0x1C +lbl_8081D788 = .data:0x8081D788; // type:object size:0x8 +lbl_8081D790 = .data:0x8081D790; // type:object size:0x24 +lbl_8081D7B4 = .data:0x8081D7B4; // type:object size:0x18 +lbl_8081D7CC = .data:0x8081D7CC; // type:object size:0x1C +lbl_8081D7E8 = .data:0x8081D7E8; // type:object size:0x8 +lbl_8081D7F0 = .data:0x8081D7F0; // type:object size:0x18 +__vt__Q26Quazal11DOOperation = .data:0x8081D808; // type:object size:0x30 +lbl_8081D838 = .data:0x8081D838; // type:object size:0x8 +__vt__Q26Quazal23_Proto_DOProtocolServer = .data:0x8081D840; // type:object size:0x70 +lbl_8081D8B0 = .data:0x8081D8B0; // type:object size:0x20 data:string +lbl_8081D8D0 = .data:0x8081D8D0; // type:object size:0x30 +__RTTI__Q26Quazal23_Proto_DOProtocolServer = .data:0x8081D900; // type:object size:0x8 +lbl_8081D908 = .data:0x8081D908; // type:object size:0x18 +lbl_8081D920 = .data:0x8081D920; // type:object size:0x28 +__RTTI__Q26Quazal14ClientProtocol = .data:0x8081D948; // type:object size:0x8 +lbl_8081D950 = .data:0x8081D950; // type:object size:0x10 +__vt__Q26Quazal16DOProtocolServer = .data:0x8081D960; // type:object size:0x70 +lbl_8081D9D0 = .data:0x8081D9D0; // type:object size:0x1C +lbl_8081D9EC = .data:0x8081D9EC; // type:object size:0x34 +__RTTI__Q26Quazal16DOProtocolServer = .data:0x8081DA20; // type:object size:0x8 +lbl_8081DA28 = .data:0x8081DA28; // type:object size:0x20 +lbl_8081DA48 = .data:0x8081DA48; // type:object size:0x50 +lbl_8081DA98 = .data:0x8081DA98; // type:object size:0x14 +lbl_8081DAAC = .data:0x8081DAAC; // type:object size:0x1C +lbl_8081DAC8 = .data:0x8081DAC8; // type:object size:0x8 +lbl_8081DAD0 = .data:0x8081DAD0; // type:object size:0x10 +lbl_8081DAE0 = .data:0x8081DAE0; // type:object size:0x30 +lbl_8081DB10 = .data:0x8081DB10; // type:object size:0xC data:4byte +lbl_8081DB1C = .data:0x8081DB1C; // type:object size:0xC data:4byte +lbl_8081DB28 = .data:0x8081DB28; // type:object size:0x6C data:4byte +lbl_8081DB94 = .data:0x8081DB94; // type:object size:0xC data:4byte +lbl_8081DBA0 = .data:0x8081DBA0; // type:object size:0xC data:4byte +lbl_8081DBAC = .data:0x8081DBAC; // type:object size:0xC data:4byte +lbl_8081DBB8 = .data:0x8081DBB8; // type:object size:0x30 data:4byte +lbl_8081DBE8 = .data:0x8081DBE8; // type:object size:0xC data:4byte +lbl_8081DBF4 = .data:0x8081DBF4; // type:object size:0x60 data:4byte +lbl_8081DC54 = .data:0x8081DC54; // type:object size:0xC data:4byte +lbl_8081DC60 = .data:0x8081DC60; // type:object size:0xC data:4byte +lbl_8081DC6C = .data:0x8081DC6C; // type:object size:0xC data:4byte +__vt__Q26Quazal16DuplicatedObject = .data:0x8081DC78; // type:object size:0x50 +lbl_8081DCC8 = .data:0x8081DCC8; // type:object size:0x1C +lbl_8081DCE4 = .data:0x8081DCE4; // type:object size:0x14 +__RTTI__Q26Quazal16DuplicatedObject = .data:0x8081DCF8; // type:object size:0xB8 +lbl_8081DDB0 = .data:0x8081DDB0; // type:object size:0x58 +lbl_8081DE08 = .data:0x8081DE08; // type:object size:0x20 +lbl_8081DE28 = .data:0x8081DE28; // type:object size:0x40 data:string +lbl_8081DE68 = .data:0x8081DE68; // type:object size:0x18 +lbl_8081DE80 = .data:0x8081DE80; // type:object size:0x8 +lbl_8081DE88 = .data:0x8081DE88; // type:object size:0x18 +lbl_8081DEA0 = .data:0x8081DEA0; // type:object size:0xC +lbl_8081DEAC = .data:0x8081DEAC; // type:object size:0x20 +lbl_8081DECC = .data:0x8081DECC; // type:object size:0xC +lbl_8081DED8 = .data:0x8081DED8; // type:object size:0x8 +lbl_8081DEE0 = .data:0x8081DEE0; // type:object size:0x30 +lbl_8081DF10 = .data:0x8081DF10; // type:object size:0x20 +lbl_8081DF30 = .data:0x8081DF30; // type:object size:0x28 +lbl_8081DF58 = .data:0x8081DF58; // type:object size:0x8 +lbl_8081DF60 = .data:0x8081DF60; // type:object size:0x10 +lbl_8081DF70 = .data:0x8081DF70; // type:object size:0x38 +lbl_8081DFA8 = .data:0x8081DFA8; // type:object size:0x18 +lbl_8081DFC0 = .data:0x8081DFC0; // type:object size:0x30 +lbl_8081DFF0 = .data:0x8081DFF0; // type:object size:0x8 +lbl_8081DFF8 = .data:0x8081DFF8; // type:object size:0x8 data:4byte +lbl_8081E000 = .data:0x8081E000; // type:object size:0x50 +lbl_8081E050 = .data:0x8081E050; // type:object size:0x14 data:string +lbl_8081E064 = .data:0x8081E064; // type:object size:0x34 +lbl_8081E098 = .data:0x8081E098; // type:object size:0x8 +lbl_8081E0A0 = .data:0x8081E0A0; // type:object size:0x18 data:string +lbl_8081E0B8 = .data:0x8081E0B8; // type:object size:0x30 +lbl_8081E0E8 = .data:0x8081E0E8; // type:object size:0x8 +lbl_8081E0F0 = .data:0x8081E0F0; // type:object size:0x10 +lbl_8081E100 = .data:0x8081E100; // type:object size:0x28 +__RTTI__Q26Quazal6RootDO = .data:0x8081E128; // type:object size:0x8 +lbl_8081E130 = .data:0x8081E130; // type:object size:0x14 +lbl_8081E144 = .data:0x8081E144; // type:object size:0x1C +lbl_8081E160 = .data:0x8081E160; // type:object size:0x8 +lbl_8081E168 = .data:0x8081E168; // type:object size:0x8 +lbl_8081E170 = .data:0x8081E170; // type:object size:0x20 +lbl_8081E190 = .data:0x8081E190; // type:object size:0x2C +lbl_8081E1BC = .data:0x8081E1BC; // type:object size:0x14 +lbl_8081E1D0 = .data:0x8081E1D0; // type:object size:0x8 +lbl_8081E1D8 = .data:0x8081E1D8; // type:object size:0x68 +lbl_8081E240 = .data:0x8081E240; // type:object size:0x1C +lbl_8081E25C = .data:0x8081E25C; // type:object size:0x2C +lbl_8081E288 = .data:0x8081E288; // type:object size:0x8 +lbl_8081E290 = .data:0x8081E290; // type:object size:0x68 +lbl_8081E2F8 = .data:0x8081E2F8; // type:object size:0x48 +lbl_8081E340 = .data:0x8081E340; // type:object size:0x28 +lbl_8081E368 = .data:0x8081E368; // type:object size:0x8 +lbl_8081E370 = .data:0x8081E370; // type:object size:0x50 +lbl_8081E3C0 = .data:0x8081E3C0; // type:object size:0x14 data:string +lbl_8081E3D4 = .data:0x8081E3D4; // type:object size:0x1C +lbl_8081E3F0 = .data:0x8081E3F0; // type:object size:0x8 +lbl_8081E3F8 = .data:0x8081E3F8; // type:object size:0x40 +lbl_8081E438 = .data:0x8081E438; // type:object size:0x18 +lbl_8081E450 = .data:0x8081E450; // type:object size:0x8 +lbl_8081E458 = .data:0x8081E458; // type:object size:0x20 +lbl_8081E478 = .data:0x8081E478; // type:object size:0x18 +lbl_8081E490 = .data:0x8081E490; // type:object size:0x10 +lbl_8081E4A0 = .data:0x8081E4A0; // type:object size:0x8 +lbl_8081E4A8 = .data:0x8081E4A8; // type:object size:0x8 +lbl_8081E4B0 = .data:0x8081E4B0; // type:object size:0x48 +lbl_8081E4F8 = .data:0x8081E4F8; // type:object size:0x40 +lbl_8081E538 = .data:0x8081E538; // type:object size:0x1C data:string +lbl_8081E554 = .data:0x8081E554; // type:object size:0x24 +lbl_8081E578 = .data:0x8081E578; // type:object size:0x8 +lbl_8081E580 = .data:0x8081E580; // type:object size:0x88 +lbl_8081E608 = .data:0x8081E608; // type:object size:0xC data:4byte +lbl_8081E614 = .data:0x8081E614; // type:object size:0x30 data:4byte +lbl_8081E644 = .data:0x8081E644; // type:object size:0x90 data:4byte +lbl_8081E6D4 = .data:0x8081E6D4; // type:object size:0x78 data:4byte +lbl_8081E74C = .data:0x8081E74C; // type:object size:0xC data:4byte +lbl_8081E758 = .data:0x8081E758; // type:object size:0x30 data:4byte +lbl_8081E788 = .data:0x8081E788; // type:object size:0xC data:4byte +lbl_8081E794 = .data:0x8081E794; // type:object size:0x30 data:4byte +lbl_8081E7C4 = .data:0x8081E7C4; // type:object size:0xC data:4byte +lbl_8081E7D0 = .data:0x8081E7D0; // type:object size:0xC data:4byte +lbl_8081E7DC = .data:0x8081E7DC; // type:object size:0xC data:4byte +lbl_8081E7E8 = .data:0x8081E7E8; // type:object size:0xC data:4byte +lbl_8081E7F4 = .data:0x8081E7F4; // type:object size:0x30 data:4byte +lbl_8081E824 = .data:0x8081E824; // type:object size:0xC data:4byte +lbl_8081E830 = .data:0x8081E830; // type:object size:0x10 data:4byte +lbl_8081E840 = .data:0x8081E840; // type:object size:0x40 +lbl_8081E880 = .data:0x8081E880; // type:object size:0x1C +lbl_8081E89C = .data:0x8081E89C; // type:object size:0x2C +lbl_8081E8C8 = .data:0x8081E8C8; // type:object size:0x130 +lbl_8081E9F8 = .data:0x8081E9F8; // type:object size:0x340 +lbl_8081ED38 = .data:0x8081ED38; // type:object size:0xC data:4byte +lbl_8081ED44 = .data:0x8081ED44; // type:object size:0xC data:4byte +lbl_8081ED50 = .data:0x8081ED50; // type:object size:0xC data:4byte +lbl_8081ED5C = .data:0x8081ED5C; // type:object size:0xC data:4byte +lbl_8081ED68 = .data:0x8081ED68; // type:object size:0xC data:4byte +lbl_8081ED74 = .data:0x8081ED74; // type:object size:0xC data:4byte +lbl_8081ED80 = .data:0x8081ED80; // type:object size:0xC data:4byte +lbl_8081ED8C = .data:0x8081ED8C; // type:object size:0xC data:4byte +lbl_8081ED98 = .data:0x8081ED98; // type:object size:0xC data:4byte +lbl_8081EDA4 = .data:0x8081EDA4; // type:object size:0xC data:4byte +lbl_8081EDB0 = .data:0x8081EDB0; // type:object size:0x40 +lbl_8081EDF0 = .data:0x8081EDF0; // type:object size:0x20 +lbl_8081EE10 = .data:0x8081EE10; // type:object size:0x30 +lbl_8081EE40 = .data:0x8081EE40; // type:object size:0x8 +lbl_8081EE48 = .data:0x8081EE48; // type:object size:0x1A8 +lbl_8081EFF0 = .data:0x8081EFF0; // type:object size:0x34 +lbl_8081F024 = .data:0x8081F024; // type:object size:0x24 +lbl_8081F048 = .data:0x8081F048; // type:object size:0x20 +lbl_8081F068 = .data:0x8081F068; // type:object size:0x8 +lbl_8081F070 = .data:0x8081F070; // type:object size:0x34 +lbl_8081F0A4 = .data:0x8081F0A4; // type:object size:0x4 +lbl_8081F0A8 = .data:0x8081F0A8; // type:object size:0xC data:4byte +lbl_8081F0B4 = .data:0x8081F0B4; // type:object size:0x28 +lbl_8081F0DC = .data:0x8081F0DC; // type:object size:0xC data:4byte +lbl_8081F0E8 = .data:0x8081F0E8; // type:object size:0x30 data:4byte +lbl_8081F118 = .data:0x8081F118; // type:object size:0xC data:4byte +lbl_8081F124 = .data:0x8081F124; // type:object size:0x60 data:4byte +lbl_8081F184 = .data:0x8081F184; // type:object size:0xB0 data:4byte +lbl_8081F234 = .data:0x8081F234; // type:object size:0xC data:4byte +lbl_8081F240 = .data:0x8081F240; // type:object size:0x44 data:4byte +lbl_8081F284 = .data:0x8081F284; // type:object size:0x4 +lbl_8081F288 = .data:0x8081F288; // type:object size:0x3C data:4byte +lbl_8081F2C4 = .data:0x8081F2C4; // type:object size:0x4 +lbl_8081F2C8 = .data:0x8081F2C8; // type:object size:0x8 +lbl_8081F2D0 = .data:0x8081F2D0; // type:object size:0x38 +lbl_8081F308 = .data:0x8081F308; // type:object size:0x18 +lbl_8081F320 = .data:0x8081F320; // type:object size:0x28 +lbl_8081F348 = .data:0x8081F348; // type:object size:0x8 +lbl_8081F350 = .data:0x8081F350; // type:object size:0x14 +lbl_8081F364 = .data:0x8081F364; // type:object size:0x1C +lbl_8081F380 = .data:0x8081F380; // type:object size:0x18 +lbl_8081F398 = .data:0x8081F398; // type:object size:0x120 +lbl_8081F4B8 = .data:0x8081F4B8; // type:object size:0x210 +lbl_8081F6C8 = .data:0x8081F6C8; // type:object size:0x34 +lbl_8081F6FC = .data:0x8081F6FC; // type:object size:0x20 +lbl_8081F71C = .data:0x8081F71C; // type:object size:0x1C +lbl_8081F738 = .data:0x8081F738; // type:object size:0x8 +lbl_8081F740 = .data:0x8081F740; // type:object size:0x20 +lbl_8081F760 = .data:0x8081F760; // type:object size:0x30 +lbl_8081F790 = .data:0x8081F790; // type:object size:0x18 data:string +lbl_8081F7A8 = .data:0x8081F7A8; // type:object size:0x20 +lbl_8081F7C8 = .data:0x8081F7C8; // type:object size:0x8 +lbl_8081F7D0 = .data:0x8081F7D0; // type:object size:0x18 +lbl_8081F7E8 = .data:0x8081F7E8; // type:object size:0x34 +lbl_8081F81C = .data:0x8081F81C; // type:object size:0xC data:4byte +lbl_8081F828 = .data:0x8081F828; // type:object size:0xC data:4byte +lbl_8081F834 = .data:0x8081F834; // type:object size:0xC data:4byte +lbl_8081F840 = .data:0x8081F840; // type:object size:0x60 data:4byte +lbl_8081F8A0 = .data:0x8081F8A0; // type:object size:0xC data:4byte +lbl_8081F8AC = .data:0x8081F8AC; // type:object size:0xC data:4byte +lbl_8081F8B8 = .data:0x8081F8B8; // type:object size:0xC data:4byte +lbl_8081F8C4 = .data:0x8081F8C4; // type:object size:0xC data:4byte +lbl_8081F8D0 = .data:0x8081F8D0; // type:object size:0xC data:4byte +lbl_8081F8DC = .data:0x8081F8DC; // type:object size:0xC data:4byte +lbl_8081F8E8 = .data:0x8081F8E8; // type:object size:0x30 data:4byte +lbl_8081F918 = .data:0x8081F918; // type:object size:0xC data:4byte +lbl_8081F924 = .data:0x8081F924; // type:object size:0xC data:4byte +lbl_8081F930 = .data:0x8081F930; // type:object size:0xC data:4byte +lbl_8081F93C = .data:0x8081F93C; // type:object size:0xC data:4byte +lbl_8081F948 = .data:0x8081F948; // type:object size:0xC data:4byte +lbl_8081F954 = .data:0x8081F954; // type:object size:0xC data:4byte +lbl_8081F960 = .data:0x8081F960; // type:object size:0xC data:4byte +lbl_8081F96C = .data:0x8081F96C; // type:object size:0xC data:4byte +lbl_8081F978 = .data:0x8081F978; // type:object size:0xC data:4byte +lbl_8081F984 = .data:0x8081F984; // type:object size:0xC data:4byte +lbl_8081F990 = .data:0x8081F990; // type:object size:0xC data:4byte +lbl_8081F99C = .data:0x8081F99C; // type:object size:0xC data:4byte +lbl_8081F9A8 = .data:0x8081F9A8; // type:object size:0x8 +lbl_8081F9B0 = .data:0x8081F9B0; // type:object size:0x38 +lbl_8081F9E8 = .data:0x8081F9E8; // type:object size:0x20 +lbl_8081FA08 = .data:0x8081FA08; // type:object size:0x28 +lbl_8081FA30 = .data:0x8081FA30; // type:object size:0xDC +lbl_8081FB0C = .data:0x8081FB0C; // type:object size:0x37C +lbl_8081FE88 = .data:0x8081FE88; // type:object size:0x34 +lbl_8081FEBC = .data:0x8081FEBC; // type:object size:0x1C +lbl_8081FED8 = .data:0x8081FED8; // type:object size:0x20 +lbl_8081FEF8 = .data:0x8081FEF8; // type:object size:0x8 +lbl_8081FF00 = .data:0x8081FF00; // type:object size:0x20 +lbl_8081FF20 = .data:0x8081FF20; // type:object size:0x30 +lbl_8081FF50 = .data:0x8081FF50; // type:object size:0x4 data:4byte +lbl_8081FF54 = .data:0x8081FF54; // type:object size:0xC data:4byte +lbl_8081FF60 = .data:0x8081FF60; // type:object size:0xC data:4byte +lbl_8081FF6C = .data:0x8081FF6C; // type:object size:0x30 data:4byte +lbl_8081FF9C = .data:0x8081FF9C; // type:object size:0xC data:4byte +lbl_8081FFA8 = .data:0x8081FFA8; // type:object size:0x18 data:4byte +lbl_8081FFC0 = .data:0x8081FFC0; // type:object size:0xC data:4byte +lbl_8081FFCC = .data:0x8081FFCC; // type:object size:0xC data:4byte +lbl_8081FFD8 = .data:0x8081FFD8; // type:object size:0x34 +lbl_8082000C = .data:0x8082000C; // type:object size:0x1C +lbl_80820028 = .data:0x80820028; // type:object size:0x28 +lbl_80820050 = .data:0x80820050; // type:object size:0xDC +lbl_8082012C = .data:0x8082012C; // type:object size:0x1D4 +lbl_80820300 = .data:0x80820300; // type:object size:0x8 +lbl_80820308 = .data:0x80820308; // type:object size:0x20 +lbl_80820328 = .data:0x80820328; // type:object size:0x20 +lbl_80820348 = .data:0x80820348; // type:object size:0x28 +lbl_80820370 = .data:0x80820370; // type:object size:0x8 +lbl_80820378 = .data:0x80820378; // type:object size:0x1C +lbl_80820394 = .data:0x80820394; // type:object size:0x1C +lbl_808203B0 = .data:0x808203B0; // type:object size:0x8 +lbl_808203B8 = .data:0x808203B8; // type:object size:0x10 +lbl_808203C8 = .data:0x808203C8; // type:object size:0x20 +lbl_808203E8 = .data:0x808203E8; // type:object size:0x20 +lbl_80820408 = .data:0x80820408; // type:object size:0x28 +lbl_80820430 = .data:0x80820430; // type:object size:0x8 +lbl_80820438 = .data:0x80820438; // type:object size:0x10 +lbl_80820448 = .data:0x80820448; // type:object size:0x8 +lbl_80820450 = .data:0x80820450; // type:object size:0x40 +lbl_80820490 = .data:0x80820490; // type:object size:0x38 +lbl_808204C8 = .data:0x808204C8; // type:object size:0x1C +lbl_808204E4 = .data:0x808204E4; // type:object size:0x2C +lbl_80820510 = .data:0x80820510; // type:object size:0x110 +lbl_80820620 = .data:0x80820620; // type:object size:0x20 +lbl_80820640 = .data:0x80820640; // type:object size:0x3C +lbl_8082067C = .data:0x8082067C; // type:object size:0x14 +lbl_80820690 = .data:0x80820690; // type:object size:0x8 +lbl_80820698 = .data:0x80820698; // type:object size:0x18 +lbl_808206B0 = .data:0x808206B0; // type:object size:0x30 +lbl_808206E0 = .data:0x808206E0; // type:object size:0x18 +lbl_808206F8 = .data:0x808206F8; // type:object size:0x20 +lbl_80820718 = .data:0x80820718; // type:object size:0x8 +lbl_80820720 = .data:0x80820720; // type:object size:0x18 +lbl_80820738 = .data:0x80820738; // type:object size:0x18 +lbl_80820750 = .data:0x80820750; // type:object size:0x18 +lbl_80820768 = .data:0x80820768; // type:object size:0x8 +lbl_80820770 = .data:0x80820770; // type:object size:0x18 +lbl_80820788 = .data:0x80820788; // type:object size:0x20 +lbl_808207A8 = .data:0x808207A8; // type:object size:0x10 +lbl_808207B8 = .data:0x808207B8; // type:object size:0x8 +lbl_808207C0 = .data:0x808207C0; // type:object size:0x2D8 +lbl_80820A98 = .data:0x80820A98; // type:object size:0xC +lbl_80820AA4 = .data:0x80820AA4; // type:object size:0x20 +lbl_80820AC4 = .data:0x80820AC4; // type:object size:0xC +lbl_80820AD0 = .data:0x80820AD0; // type:object size:0x8 +lbl_80820AD8 = .data:0x80820AD8; // type:object size:0x20 +lbl_80820AF8 = .data:0x80820AF8; // type:object size:0x50 +lbl_80820B48 = .data:0x80820B48; // type:object size:0x1C +lbl_80820B64 = .data:0x80820B64; // type:object size:0x34 +lbl_80820B98 = .data:0x80820B98; // type:object size:0x8 +lbl_80820BA0 = .data:0x80820BA0; // type:object size:0x20 +lbl_80820BC0 = .data:0x80820BC0; // type:object size:0x30 +lbl_80820BF0 = .data:0x80820BF0; // type:object size:0x8 +lbl_80820BF8 = .data:0x80820BF8; // type:object size:0x20 +lbl_80820C18 = .data:0x80820C18; // type:object size:0x40 +lbl_80820C58 = .data:0x80820C58; // type:object size:0x68 +lbl_80820CC0 = .data:0x80820CC0; // type:object size:0x20 +lbl_80820CE0 = .data:0x80820CE0; // type:object size:0x30 +lbl_80820D10 = .data:0x80820D10; // type:object size:0x8 +lbl_80820D18 = .data:0x80820D18; // type:object size:0x68 +lbl_80820D80 = .data:0x80820D80; // type:object size:0x4C +lbl_80820DCC = .data:0x80820DCC; // type:object size:0x24 +lbl_80820DF0 = .data:0x80820DF0; // type:object size:0x8 +lbl_80820DF8 = .data:0x80820DF8; // type:object size:0x290 +lbl_80821088 = .data:0x80821088; // type:object size:0x60 +lbl_808210E8 = .data:0x808210E8; // type:object size:0x38 +lbl_80821120 = .data:0x80821120; // type:object size:0x14 +lbl_80821134 = .data:0x80821134; // type:object size:0x2C +lbl_80821160 = .data:0x80821160; // type:object size:0x8 +lbl_80821168 = .data:0x80821168; // type:object size:0x10 +lbl_80821178 = .data:0x80821178; // type:object size:0x18 +lbl_80821190 = .data:0x80821190; // type:object size:0x30 +lbl_808211C0 = .data:0x808211C0; // type:object size:0x24 +lbl_808211E4 = .data:0x808211E4; // type:object size:0x24 +lbl_80821208 = .data:0x80821208; // type:object size:0x8 +lbl_80821210 = .data:0x80821210; // type:object size:0x10 data:string +__vt__Q26Quazal6RootDO = .data:0x80821220; // type:object size:0x50 +lbl_80821270 = .data:0x80821270; // type:object size:0x68 +lbl_808212D8 = .data:0x808212D8; // type:object size:0x68 +lbl_80821340 = .data:0x80821340; // type:object size:0x50 +lbl_80821390 = .data:0x80821390; // type:object size:0x58 +lbl_808213E8 = .data:0x808213E8; // type:object size:0xC +lbl_808213F4 = .data:0x808213F4; // type:object size:0x14 +lbl_80821408 = .data:0x80821408; // type:object size:0x10 +lbl_80821418 = .data:0x80821418; // type:object size:0x8 +lbl_80821420 = .data:0x80821420; // type:object size:0x8 +lbl_80821428 = .data:0x80821428; // type:object size:0x50 +lbl_80821478 = .data:0x80821478; // type:object size:0x10 data:string +lbl_80821488 = .data:0x80821488; // type:object size:0x38 +lbl_808214C0 = .data:0x808214C0; // type:object size:0x8 +lbl_808214C8 = .data:0x808214C8; // type:object size:0x14 data:string +lbl_808214DC = .data:0x808214DC; // type:object size:0x2C +lbl_80821508 = .data:0x80821508; // type:object size:0x8 +lbl_80821510 = .data:0x80821510; // type:object size:0x20 +lbl_80821530 = .data:0x80821530; // type:object size:0x38 data:string +lbl_80821568 = .data:0x80821568; // type:object size:0x18 +lbl_80821580 = .data:0x80821580; // type:object size:0x8 +lbl_80821588 = .data:0x80821588; // type:object size:0x18 +lbl_808215A0 = .data:0x808215A0; // type:object size:0x70 +lbl_80821610 = .data:0x80821610; // type:object size:0x4 +lbl_80821614 = .data:0x80821614; // type:object size:0x4 +lbl_80821618 = .data:0x80821618; // type:object size:0x20 +lbl_80821638 = .data:0x80821638; // type:object size:0x38 +lbl_80821670 = .data:0x80821670; // type:object size:0x18 +lbl_80821688 = .data:0x80821688; // type:object size:0x8 +lbl_80821690 = .data:0x80821690; // type:object size:0x20 +lbl_808216B0 = .data:0x808216B0; // type:object size:0x34 +lbl_808216E4 = .data:0x808216E4; // type:object size:0x14 +lbl_808216F8 = .data:0x808216F8; // type:object size:0x8 +lbl_80821700 = .data:0x80821700; // type:object size:0x20 +lbl_80821720 = .data:0x80821720; // type:object size:0x34 +lbl_80821754 = .data:0x80821754; // type:object size:0x14 +lbl_80821768 = .data:0x80821768; // type:object size:0x8 +lbl_80821770 = .data:0x80821770; // type:object size:0x20 +lbl_80821790 = .data:0x80821790; // type:object size:0x40 +lbl_808217D0 = .data:0x808217D0; // type:object size:0x18 +lbl_808217E8 = .data:0x808217E8; // type:object size:0x8 +lbl_808217F0 = .data:0x808217F0; // type:object size:0x68 +lbl_80821858 = .data:0x80821858; // type:object size:0x18 +lbl_80821870 = .data:0x80821870; // type:object size:0x30 +lbl_808218A0 = .data:0x808218A0; // type:object size:0x8 +lbl_808218A8 = .data:0x808218A8; // type:object size:0x68 +lbl_80821910 = .data:0x80821910; // type:object size:0x44 +lbl_80821954 = .data:0x80821954; // type:object size:0x24 +lbl_80821978 = .data:0x80821978; // type:object size:0x8 +lbl_80821980 = .data:0x80821980; // type:object size:0x50 +lbl_808219D0 = .data:0x808219D0; // type:object size:0x14 +lbl_808219E4 = .data:0x808219E4; // type:object size:0x10 +lbl_808219F4 = .data:0x808219F4; // type:object size:0xC data:string +lbl_80821A00 = .data:0x80821A00; // type:object size:0x1C +lbl_80821A1C = .data:0x80821A1C; // type:object size:0x94 +lbl_80821AB0 = .data:0x80821AB0; // type:object size:0x8 +lbl_80821AB8 = .data:0x80821AB8; // type:object size:0x28 +lbl_80821AE0 = .data:0x80821AE0; // type:object size:0x20 +lbl_80821B00 = .data:0x80821B00; // type:object size:0x4 +lbl_80821B04 = .data:0x80821B04; // type:object size:0x4 +lbl_80821B08 = .data:0x80821B08; // type:object size:0x4 +lbl_80821B0C = .data:0x80821B0C; // type:object size:0x14 +lbl_80821B20 = .data:0x80821B20; // type:object size:0x4 +lbl_80821B24 = .data:0x80821B24; // type:object size:0x4 +lbl_80821B28 = .data:0x80821B28; // type:object size:0x4 +lbl_80821B2C = .data:0x80821B2C; // type:object size:0x4 +lbl_80821B30 = .data:0x80821B30; // type:object size:0x8 +lbl_80821B38 = .data:0x80821B38; // type:object size:0x50 +lbl_80821B88 = .data:0x80821B88; // type:object size:0x10 data:string +lbl_80821B98 = .data:0x80821B98; // type:object size:0x38 +lbl_80821BD0 = .data:0x80821BD0; // type:object size:0x8 +lbl_80821BD8 = .data:0x80821BD8; // type:object size:0x14 data:string +lbl_80821BEC = .data:0x80821BEC; // type:object size:0x2C +lbl_80821C18 = .data:0x80821C18; // type:object size:0x8 +lbl_80821C20 = .data:0x80821C20; // type:object size:0x20 +lbl_80821C40 = .data:0x80821C40; // type:object size:0x30 +lbl_80821C70 = .data:0x80821C70; // type:object size:0x18 +lbl_80821C88 = .data:0x80821C88; // type:object size:0x8 +lbl_80821C90 = .data:0x80821C90; // type:object size:0x18 +lbl_80821CA8 = .data:0x80821CA8; // type:object size:0x18 +lbl_80821CC0 = .data:0x80821CC0; // type:object size:0x20 +lbl_80821CE0 = .data:0x80821CE0; // type:object size:0x24 +lbl_80821D04 = .data:0x80821D04; // type:object size:0x1C +lbl_80821D20 = .data:0x80821D20; // type:object size:0x8 +lbl_80821D28 = .data:0x80821D28; // type:object size:0x8 +lbl_80821D30 = .data:0x80821D30; // type:object size:0x20 +lbl_80821D50 = .data:0x80821D50; // type:object size:0x34 +lbl_80821D84 = .data:0x80821D84; // type:object size:0x14 +lbl_80821D98 = .data:0x80821D98; // type:object size:0x8 +lbl_80821DA0 = .data:0x80821DA0; // type:object size:0x20 +lbl_80821DC0 = .data:0x80821DC0; // type:object size:0x34 +lbl_80821DF4 = .data:0x80821DF4; // type:object size:0x14 +lbl_80821E08 = .data:0x80821E08; // type:object size:0x8 +lbl_80821E10 = .data:0x80821E10; // type:object size:0x20 +lbl_80821E30 = .data:0x80821E30; // type:object size:0x3C +lbl_80821E6C = .data:0x80821E6C; // type:object size:0x14 +lbl_80821E80 = .data:0x80821E80; // type:object size:0x8 +lbl_80821E88 = .data:0x80821E88; // type:object size:0x20 +lbl_80821EA8 = .data:0x80821EA8; // type:object size:0x34 data:string +lbl_80821EDC = .data:0x80821EDC; // type:object size:0x14 +lbl_80821EF0 = .data:0x80821EF0; // type:object size:0x8 +lbl_80821EF8 = .data:0x80821EF8; // type:object size:0x68 +lbl_80821F60 = .data:0x80821F60; // type:object size:0x18 +lbl_80821F78 = .data:0x80821F78; // type:object size:0x30 +lbl_80821FA8 = .data:0x80821FA8; // type:object size:0x8 +lbl_80821FB0 = .data:0x80821FB0; // type:object size:0x68 +lbl_80822018 = .data:0x80822018; // type:object size:0x44 +lbl_8082205C = .data:0x8082205C; // type:object size:0x24 +lbl_80822080 = .data:0x80822080; // type:object size:0x8 +lbl_80822088 = .data:0x80822088; // type:object size:0x50 +lbl_808220D8 = .data:0x808220D8; // type:object size:0x14 +lbl_808220EC = .data:0x808220EC; // type:object size:0x14 data:string +lbl_80822100 = .data:0x80822100; // type:object size:0x18 +lbl_80822118 = .data:0x80822118; // type:object size:0x8 +lbl_80822120 = .data:0x80822120; // type:object size:0x14 +lbl_80822134 = .data:0x80822134; // type:object size:0x1C +lbl_80822150 = .data:0x80822150; // type:object size:0x10 +lbl_80822160 = .data:0x80822160; // type:object size:0x8 +lbl_80822168 = .data:0x80822168; // type:object size:0x10 +lbl_80822178 = .data:0x80822178; // type:object size:0xC data:string +lbl_80822184 = .data:0x80822184; // type:object size:0x18 +lbl_8082219C = .data:0x8082219C; // type:object size:0x10 +lbl_808221AC = .data:0x808221AC; // type:object size:0x6C +lbl_80822218 = .data:0x80822218; // type:object size:0x50 +lbl_80822268 = .data:0x80822268; // type:object size:0x20 +lbl_80822288 = .data:0x80822288; // type:object size:0x50 +lbl_808222D8 = .data:0x808222D8; // type:object size:0x18 +lbl_808222F0 = .data:0x808222F0; // type:object size:0x20 +lbl_80822310 = .data:0x80822310; // type:object size:0x8 +lbl_80822318 = .data:0x80822318; // type:object size:0x10 +lbl_80822328 = .data:0x80822328; // type:object size:0x28 +lbl_80822350 = .data:0x80822350; // type:object size:0x4 +lbl_80822354 = .data:0x80822354; // type:object size:0xC data:string +lbl_80822360 = .data:0x80822360; // type:object size:0x30 +lbl_80822390 = .data:0x80822390; // type:object size:0x20 +lbl_808223B0 = .data:0x808223B0; // type:object size:0x28 +lbl_808223D8 = .data:0x808223D8; // type:object size:0x8 +lbl_808223E0 = .data:0x808223E0; // type:object size:0x10 +lbl_808223F0 = .data:0x808223F0; // type:object size:0x18 +lbl_80822408 = .data:0x80822408; // type:object size:0x8 data:4byte +lbl_80822410 = .data:0x80822410; // type:object size:0xC +lbl_8082241C = .data:0x8082241C; // type:object size:0x10 +lbl_8082242C = .data:0x8082242C; // type:object size:0xC +lbl_80822438 = .data:0x80822438; // type:object size:0x8 +lbl_80822440 = .data:0x80822440; // type:object size:0x10 +lbl_80822450 = .data:0x80822450; // type:object size:0x10 +lbl_80822460 = .data:0x80822460; // type:object size:0x14 +lbl_80822474 = .data:0x80822474; // type:object size:0x14 +lbl_80822488 = .data:0x80822488; // type:object size:0x8 +lbl_80822490 = .data:0x80822490; // type:object size:0x14 data:string +lbl_808224A4 = .data:0x808224A4; // type:object size:0xC +lbl_808224B0 = .data:0x808224B0; // type:object size:0x8 +lbl_808224B8 = .data:0x808224B8; // type:object size:0x20 +lbl_808224D8 = .data:0x808224D8; // type:object size:0x10 +lbl_808224E8 = .data:0x808224E8; // type:object size:0xA0 +__vt__Q26Quazal21AnyExtDDLDeclarations = .data:0x80822588; // type:object size:0x10 +lbl_80822598 = .data:0x80822598; // type:object size:0x20 +lbl_808225B8 = .data:0x808225B8; // type:object size:0x18 +__RTTI__Q26Quazal21AnyExtDDLDeclarations = .data:0x808225D0; // type:object size:0x8 +__vt__Q26Quazal10SpeexCodec = .data:0x808225D8; // type:object size:0x40 +lbl_80822618 = .data:0x80822618; // type:object size:0x14 +lbl_8082262C = .data:0x8082262C; // type:object size:0x14 +__RTTI__Q26Quazal10SpeexCodec = .data:0x80822640; // type:object size:0x8 +lbl_80822648 = .data:0x80822648; // type:object size:0x10 +lbl_80822658 = .data:0x80822658; // type:object size:0x10 +__RTTI__Q26Quazal5Codec = .data:0x80822668; // type:object size:0x8 +lbl_80822670 = .data:0x80822670; // type:object size:0x8 +__vt__Q26Quazal24AVStreamsDDLDeclarations = .data:0x80822678; // type:object size:0x10 +lbl_80822688 = .data:0x80822688; // type:object size:0x24 +lbl_808226AC = .data:0x808226AC; // type:object size:0x14 +__RTTI__Q26Quazal24AVStreamsDDLDeclarations = .data:0x808226C0; // type:object size:0x8 +__vt__Q26Quazal5Codec = .data:0x808226C8; // type:object size:0x40 +__vt__Q26Quazal17AudioStreamFormat = .data:0x80822708; // type:object size:0xC +lbl_80822714 = .data:0x80822714; // type:object size:0x1C +lbl_80822730 = .data:0x80822730; // type:object size:0x18 +__RTTI__Q26Quazal17AudioStreamFormat = .data:0x80822748; // type:object size:0x8 +__vt__Q26Quazal22_DDL_AudioStreamFormat = .data:0x80822750; // type:object size:0xC +lbl_8082275C = .data:0x8082275C; // type:object size:0x20 +lbl_8082277C = .data:0x8082277C; // type:object size:0xC +__RTTI__Q26Quazal22_DDL_AudioStreamFormat = .data:0x80822788; // type:object size:0x8 +__vt__Q26Quazal17StreamingProtocol = .data:0x80822790; // type:object size:0x20 +lbl_808227B0 = .data:0x808227B0; // type:object size:0x1C +lbl_808227CC = .data:0x808227CC; // type:object size:0xC +__RTTI__Q26Quazal17StreamingProtocol = .data:0x808227D8; // type:object size:0x8 +__vt__Q26Quazal11VoicePacket = .data:0x808227E0; // type:object size:0xC +lbl_808227EC = .data:0x808227EC; // type:object size:0x14 data:string +lbl_80822800 = .data:0x80822800; // type:object size:0x18 +__RTTI__Q26Quazal11VoicePacket = .data:0x80822818; // type:object size:0x8 +__vt__Q26Quazal16_DDL_VoicePacket = .data:0x80822820; // type:object size:0xC +lbl_8082282C = .data:0x8082282C; // type:object size:0x1C +lbl_80822848 = .data:0x80822848; // type:object size:0x10 +__RTTI__Q26Quazal16_DDL_VoicePacket = .data:0x80822858; // type:object size:0x8 +lbl_80822860 = .data:0x80822860; // type:object size:0x18 +lbl_80822878 = .data:0x80822878; // type:object size:0x20 +lbl_80822898 = .data:0x80822898; // type:object size:0x20 +lbl_808228B8 = .data:0x808228B8; // type:object size:0x3C +lbl_808228F4 = .data:0x808228F4; // type:object size:0x14 +lbl_80822908 = .data:0x80822908; // type:object size:0x8 +__vt__Q26Quazal11DefaultCell = .data:0x80822910; // type:object size:0x50 +lbl_80822960 = .data:0x80822960; // type:object size:0x14 data:string +lbl_80822974 = .data:0x80822974; // type:object size:0x34 +__RTTI__Q26Quazal11DefaultCell = .data:0x808229A8; // type:object size:0x8 +__vt__Q26Quazal16_DOC_DefaultCell = .data:0x808229B0; // type:object size:0x68 +lbl_80822A18 = .data:0x80822A18; // type:object size:0x1C +lbl_80822A34 = .data:0x80822A34; // type:object size:0x2C +__RTTI__Q26Quazal16_DOC_DefaultCell = .data:0x80822A60; // type:object size:0x8 +__vt__Q26Quazal66DOClassTemplate = .data:0x80822A68; // type:object size:0x68 +lbl_80822AD0 = .data:0x80822AD0; // type:object size:0x48 +lbl_80822B18 = .data:0x80822B18; // type:object size:0x28 +__RTTI__Q26Quazal66DOClassTemplate = .data:0x80822B40; // type:object size:0x8 +__vt__Q26Quazal15_DO_DefaultCell = .data:0x80822B48; // type:object size:0x50 +lbl_80822B98 = .data:0x80822B98; // type:object size:0x18 data:string +lbl_80822BB0 = .data:0x80822BB0; // type:object size:0x30 +__RTTI__Q26Quazal15_DO_DefaultCell = .data:0x80822BE0; // type:object size:0x8 +lbl_80822BE8 = .data:0x80822BE8; // type:object size:0x18 +lbl_80822C00 = .data:0x80822C00; // type:object size:0x30 +lbl_80822C30 = .data:0x80822C30; // type:object size:0x10 +lbl_80822C40 = .data:0x80822C40; // type:object size:0x10 +lbl_80822C50 = .data:0x80822C50; // type:object size:0x24 +lbl_80822C74 = .data:0x80822C74; // type:object size:0x14 +lbl_80822C88 = .data:0x80822C88; // type:object size:0x8 +lbl_80822C90 = .data:0x80822C90; // type:object size:0x10 data:4byte +lbl_80822CA0 = .data:0x80822CA0; // type:object size:0x30 +lbl_80822CD0 = .data:0x80822CD0; // type:object size:0x50 +lbl_80822D20 = .data:0x80822D20; // type:object size:0x28 +lbl_80822D48 = .data:0x80822D48; // type:object size:0x8 +lbl_80822D50 = .data:0x80822D50; // type:object size:0x50 +lbl_80822DA0 = .data:0x80822DA0; // type:object size:0x1C +lbl_80822DBC = .data:0x80822DBC; // type:object size:0x1C +lbl_80822DD8 = .data:0x80822DD8; // type:object size:0x8 +lbl_80822DE0 = .data:0x80822DE0; // type:object size:0x10 +lbl_80822DF0 = .data:0x80822DF0; // type:object size:0x38 +lbl_80822E28 = .data:0x80822E28; // type:object size:0x18 +lbl_80822E40 = .data:0x80822E40; // type:object size:0x8 +__vt__Q26Quazal17OperationCallback = .data:0x80822E48; // type:object size:0x10 +lbl_80822E58 = .data:0x80822E58; // type:object size:0x1C +lbl_80822E74 = .data:0x80822E74; // type:object size:0xC +__RTTI__Q26Quazal17OperationCallback = .data:0x80822E80; // type:object size:0x8 +lbl_80822E88 = .data:0x80822E88; // type:object size:0xC data:string +lbl_80822E94 = .data:0x80822E94; // type:object size:0x14 +lbl_80822EA8 = .data:0x80822EA8; // type:object size:0x48 +lbl_80822EF0 = .data:0x80822EF0; // type:object size:0x20 +lbl_80822F10 = .data:0x80822F10; // type:object size:0x1C +lbl_80822F2C = .data:0x80822F2C; // type:object size:0x1C +lbl_80822F48 = .data:0x80822F48; // type:object size:0x8 +lbl_80822F50 = .data:0x80822F50; // type:object size:0x8 data:4byte +lbl_80822F58 = .data:0x80822F58; // type:object size:0x38 +lbl_80822F90 = .data:0x80822F90; // type:object size:0x20 +lbl_80822FB0 = .data:0x80822FB0; // type:object size:0x8 +lbl_80822FB8 = .data:0x80822FB8; // type:object size:0x20 +lbl_80822FD8 = .data:0x80822FD8; // type:object size:0x40 +lbl_80823018 = .data:0x80823018; // type:object size:0x18 +lbl_80823030 = .data:0x80823030; // type:object size:0x8 +lbl_80823038 = .data:0x80823038; // type:object size:0x18 +lbl_80823050 = .data:0x80823050; // type:object size:0x20 +lbl_80823070 = .data:0x80823070; // type:object size:0xC data:4byte +lbl_8082307C = .data:0x8082307C; // type:object size:0xC data:4byte +lbl_80823088 = .data:0x80823088; // type:object size:0x30 +lbl_808230B8 = .data:0x808230B8; // type:object size:0x40 data:string +lbl_808230F8 = .data:0x808230F8; // type:object size:0x20 +lbl_80823118 = .data:0x80823118; // type:object size:0x8 +lbl_80823120 = .data:0x80823120; // type:object size:0xC +lbl_8082312C = .data:0x8082312C; // type:object size:0x20 +lbl_8082314C = .data:0x8082314C; // type:object size:0x1C +lbl_80823168 = .data:0x80823168; // type:object size:0x8 +lbl_80823170 = .data:0x80823170; // type:object size:0xC data:string +lbl_8082317C = .data:0x8082317C; // type:object size:0x34 +lbl_808231B0 = .data:0x808231B0; // type:object size:0x20 +lbl_808231D0 = .data:0x808231D0; // type:object size:0x18 +lbl_808231E8 = .data:0x808231E8; // type:object size:0x28 +lbl_80823210 = .data:0x80823210; // type:object size:0x8 +lbl_80823218 = .data:0x80823218; // type:object size:0x8 +lbl_80823220 = .data:0x80823220; // type:object size:0x28 +lbl_80823248 = .data:0x80823248; // type:object size:0x3C +lbl_80823284 = .data:0x80823284; // type:object size:0x18 +lbl_8082329C = .data:0x8082329C; // type:object size:0x14 +lbl_808232B0 = .data:0x808232B0; // type:object size:0x8 +lbl_808232B8 = .data:0x808232B8; // type:object size:0x20 +lbl_808232D8 = .data:0x808232D8; // type:object size:0x10 +lbl_808232E8 = .data:0x808232E8; // type:object size:0x8 +lbl_808232F0 = .data:0x808232F0; // type:object size:0x38 +lbl_80823328 = .data:0x80823328; // type:object size:0x10 +lbl_80823338 = .data:0x80823338; // type:object size:0x10 +lbl_80823348 = .data:0x80823348; // type:object size:0x18 data:string +lbl_80823360 = .data:0x80823360; // type:object size:0x18 +lbl_80823378 = .data:0x80823378; // type:object size:0x8 +lbl_80823380 = .data:0x80823380; // type:object size:0x50 +lbl_808233D0 = .data:0x808233D0; // type:object size:0x24 +lbl_808233F4 = .data:0x808233F4; // type:object size:0x1C +lbl_80823410 = .data:0x80823410; // type:object size:0x8 +lbl_80823418 = .data:0x80823418; // type:object size:0x1C +lbl_80823434 = .data:0x80823434; // type:object size:0x3C +__vt__Q26Quazal14ClientProtocol = .data:0x80823470; // type:object size:0x64 +lbl_808234D4 = .data:0x808234D4; // type:object size:0x5C +lbl_80823530 = .data:0x80823530; // type:object size:0x8 +lbl_80823538 = .data:0x80823538; // type:object size:0x68 +lbl_808235A0 = .data:0x808235A0; // type:object size:0x30 +lbl_808235D0 = .data:0x808235D0; // type:object size:0x30 +lbl_80823600 = .data:0x80823600; // type:object size:0x8 +lbl_80823608 = .data:0x80823608; // type:object size:0x68 +lbl_80823670 = .data:0x80823670; // type:object size:0x20 +lbl_80823690 = .data:0x80823690; // type:object size:0x38 +lbl_808236C8 = .data:0x808236C8; // type:object size:0x8 +lbl_808236D0 = .data:0x808236D0; // type:object size:0x10 +lbl_808236E0 = .data:0x808236E0; // type:object size:0x28 +lbl_80823708 = .data:0x80823708; // type:object size:0x18 +lbl_80823720 = .data:0x80823720; // type:object size:0x8 +lbl_80823728 = .data:0x80823728; // type:object size:0x40 +lbl_80823768 = .data:0x80823768; // type:object size:0x68 +lbl_808237D0 = .data:0x808237D0; // type:object size:0x1C +lbl_808237EC = .data:0x808237EC; // type:object size:0x2C +lbl_80823818 = .data:0x80823818; // type:object size:0x8 +lbl_80823820 = .data:0x80823820; // type:object size:0x68 +lbl_80823888 = .data:0x80823888; // type:object size:0x48 +lbl_808238D0 = .data:0x808238D0; // type:object size:0x28 +lbl_808238F8 = .data:0x808238F8; // type:object size:0x8 +lbl_80823900 = .data:0x80823900; // type:object size:0x50 +lbl_80823950 = .data:0x80823950; // type:object size:0x1C +lbl_8082396C = .data:0x8082396C; // type:object size:0x2C +lbl_80823998 = .data:0x80823998; // type:object size:0x1F0 +lbl_80823B88 = .data:0x80823B88; // type:object size:0x48 +lbl_80823BD0 = .data:0x80823BD0; // type:object size:0x50 +lbl_80823C20 = .data:0x80823C20; // type:object size:0x20 +lbl_80823C40 = .data:0x80823C40; // type:object size:0x20 +lbl_80823C60 = .data:0x80823C60; // type:object size:0x8 +lbl_80823C68 = .data:0x80823C68; // type:object size:0x18 +lbl_80823C80 = .data:0x80823C80; // type:object size:0x38 +lbl_80823CB8 = .data:0x80823CB8; // type:object size:0x4 data:4byte +lbl_80823CBC = .data:0x80823CBC; // type:object size:0x4 data:4byte +lbl_80823CC0 = .data:0x80823CC0; // type:object size:0x8 data:4byte +lbl_80823CC8 = .data:0x80823CC8; // type:object size:0x30 +lbl_80823CF8 = .data:0x80823CF8; // type:object size:0x24 +lbl_80823D1C = .data:0x80823D1C; // type:object size:0x1C +lbl_80823D38 = .data:0x80823D38; // type:object size:0x8 +lbl_80823D40 = .data:0x80823D40; // type:object size:0x50 +lbl_80823D90 = .data:0x80823D90; // type:object size:0x18 +lbl_80823DA8 = .data:0x80823DA8; // type:object size:0x38 +lbl_80823DE0 = .data:0x80823DE0; // type:object size:0x8 +lbl_80823DE8 = .data:0x80823DE8; // type:object size:0x20 +lbl_80823E08 = .data:0x80823E08; // type:object size:0x38 +lbl_80823E40 = .data:0x80823E40; // type:object size:0x18 +lbl_80823E58 = .data:0x80823E58; // type:object size:0x8 +lbl_80823E60 = .data:0x80823E60; // type:object size:0x18 +lbl_80823E78 = .data:0x80823E78; // type:object size:0x18 +lbl_80823E90 = .data:0x80823E90; // type:object size:0x10 +lbl_80823EA0 = .data:0x80823EA0; // type:object size:0x20 +lbl_80823EC0 = .data:0x80823EC0; // type:object size:0x18 +lbl_80823ED8 = .data:0x80823ED8; // type:object size:0x8 +lbl_80823EE0 = .data:0x80823EE0; // type:object size:0x58 +lbl_80823F38 = .data:0x80823F38; // type:object size:0x10 +lbl_80823F48 = .data:0x80823F48; // type:object size:0x24 +lbl_80823F6C = .data:0x80823F6C; // type:object size:0x1C +lbl_80823F88 = .data:0x80823F88; // type:object size:0x10 +lbl_80823F98 = .data:0x80823F98; // type:object size:0x8 +lbl_80823FA0 = .data:0x80823FA0; // type:object size:0x28 +lbl_80823FC8 = .data:0x80823FC8; // type:object size:0x8 +lbl_80823FD0 = .data:0x80823FD0; // type:object size:0x54 +lbl_80824024 = .data:0x80824024; // type:object size:0x18 +lbl_8082403C = .data:0x8082403C; // type:object size:0x34 +lbl_80824070 = .data:0x80824070; // type:object size:0x8 +lbl_80824078 = .data:0x80824078; // type:object size:0x1C +lbl_80824094 = .data:0x80824094; // type:object size:0x2C +lbl_808240C0 = .data:0x808240C0; // type:object size:0x8 +lbl_808240C8 = .data:0x808240C8; // type:object size:0x10 +lbl_808240D8 = .data:0x808240D8; // type:object size:0x20 data:string +lbl_808240F8 = .data:0x808240F8; // type:object size:0x10 +lbl_80824108 = .data:0x80824108; // type:object size:0x8 +lbl_80824110 = .data:0x80824110; // type:object size:0x18 +lbl_80824128 = .data:0x80824128; // type:object size:0x58 +lbl_80824180 = .data:0x80824180; // type:object size:0x20 +lbl_808241A0 = .data:0x808241A0; // type:object size:0x34 data:string +lbl_808241D4 = .data:0x808241D4; // type:object size:0x14 +lbl_808241E8 = .data:0x808241E8; // type:object size:0x8 +lbl_808241F0 = .data:0x808241F0; // type:object size:0x20 +lbl_80824210 = .data:0x80824210; // type:object size:0x34 +lbl_80824244 = .data:0x80824244; // type:object size:0x14 +lbl_80824258 = .data:0x80824258; // type:object size:0x8 +lbl_80824260 = .data:0x80824260; // type:object size:0x68 +lbl_808242C8 = .data:0x808242C8; // type:object size:0x1C +lbl_808242E4 = .data:0x808242E4; // type:object size:0x2C +lbl_80824310 = .data:0x80824310; // type:object size:0x8 +lbl_80824318 = .data:0x80824318; // type:object size:0x68 +lbl_80824380 = .data:0x80824380; // type:object size:0x48 +lbl_808243C8 = .data:0x808243C8; // type:object size:0x28 +lbl_808243F0 = .data:0x808243F0; // type:object size:0x8 +lbl_808243F8 = .data:0x808243F8; // type:object size:0x3B0 +lbl_808247A8 = .data:0x808247A8; // type:object size:0x10 +lbl_808247B8 = .data:0x808247B8; // type:object size:0x18 +lbl_808247D0 = .data:0x808247D0; // type:object size:0xC0 +lbl_80824890 = .data:0x80824890; // type:object size:0xC +lbl_8082489C = .data:0x8082489C; // type:object size:0x1C +lbl_808248B8 = .data:0x808248B8; // type:object size:0x18 +lbl_808248D0 = .data:0x808248D0; // type:object size:0x8 +lbl_808248D8 = .data:0x808248D8; // type:object size:0x10 +lbl_808248E8 = .data:0x808248E8; // type:object size:0x24 data:string +lbl_8082490C = .data:0x8082490C; // type:object size:0x14 +lbl_80824920 = .data:0x80824920; // type:object size:0x8 +lbl_80824928 = .data:0x80824928; // type:object size:0x20 +lbl_80824948 = .data:0x80824948; // type:object size:0x20 data:string +lbl_80824968 = .data:0x80824968; // type:object size:0x18 +lbl_80824980 = .data:0x80824980; // type:object size:0x8 +lbl_80824988 = .data:0x80824988; // type:object size:0x18 +lbl_808249A0 = .data:0x808249A0; // type:object size:0x10 +lbl_808249B0 = .data:0x808249B0; // type:object size:0x8 +lbl_808249B8 = .data:0x808249B8; // type:object size:0x130 +lbl_80824AE8 = .data:0x80824AE8; // type:object size:0x10 +lbl_80824AF8 = .data:0x80824AF8; // type:object size:0x24 +lbl_80824B1C = .data:0x80824B1C; // type:object size:0xC +lbl_80824B28 = .data:0x80824B28; // type:object size:0x8 +lbl_80824B30 = .data:0x80824B30; // type:object size:0x10 +lbl_80824B40 = .data:0x80824B40; // type:object size:0x24 +lbl_80824B64 = .data:0x80824B64; // type:object size:0x14 +lbl_80824B78 = .data:0x80824B78; // type:object size:0x8 +lbl_80824B80 = .data:0x80824B80; // type:object size:0x10 +lbl_80824B90 = .data:0x80824B90; // type:object size:0x28 data:string +lbl_80824BB8 = .data:0x80824BB8; // type:object size:0x20 +lbl_80824BD8 = .data:0x80824BD8; // type:object size:0x8 +lbl_80824BE0 = .data:0x80824BE0; // type:object size:0x30 +lbl_80824C10 = .data:0x80824C10; // type:object size:0x4 +lbl_80824C14 = .data:0x80824C14; // type:object size:0xC data:4byte +lbl_80824C20 = .data:0x80824C20; // type:object size:0x3C data:4byte +lbl_80824C5C = .data:0x80824C5C; // type:object size:0xC data:4byte +lbl_80824C68 = .data:0x80824C68; // type:object size:0x28 data:4byte +lbl_80824C90 = .data:0x80824C90; // type:object size:0xC data:4byte +lbl_80824C9C = .data:0x80824C9C; // type:object size:0x28 data:4byte +lbl_80824CC4 = .data:0x80824CC4; // type:object size:0x4 +lbl_80824CC8 = .data:0x80824CC8; // type:object size:0xC data:4byte +lbl_80824CD4 = .data:0x80824CD4; // type:object size:0xC data:4byte +lbl_80824CE0 = .data:0x80824CE0; // type:object size:0x34 +lbl_80824D14 = .data:0x80824D14; // type:object size:0x1C +lbl_80824D30 = .data:0x80824D30; // type:object size:0x28 +lbl_80824D58 = .data:0x80824D58; // type:object size:0x48 +lbl_80824DA0 = .data:0x80824DA0; // type:object size:0xC +lbl_80824DAC = .data:0x80824DAC; // type:object size:0x38 +lbl_80824DE4 = .data:0x80824DE4; // type:object size:0xC +lbl_80824DF0 = .data:0x80824DF0; // type:object size:0x8 +lbl_80824DF8 = .data:0x80824DF8; // type:object size:0x20 +lbl_80824E18 = .data:0x80824E18; // type:object size:0x80 +lbl_80824E98 = .data:0x80824E98; // type:object size:0x178 +lbl_80825010 = .data:0x80825010; // type:object size:0x58 +lbl_80825068 = .data:0x80825068; // type:object size:0x4 +lbl_8082506C = .data:0x8082506C; // type:object size:0xC data:4byte +lbl_80825078 = .data:0x80825078; // type:object size:0xC data:4byte +lbl_80825084 = .data:0x80825084; // type:object size:0x34 +lbl_808250B8 = .data:0x808250B8; // type:object size:0x20 data:string +lbl_808250D8 = .data:0x808250D8; // type:object size:0x28 +lbl_80825100 = .data:0x80825100; // type:object size:0xC0 +lbl_808251C0 = .data:0x808251C0; // type:object size:0xC8 +lbl_80825288 = .data:0x80825288; // type:object size:0x30 +lbl_808252B8 = .data:0x808252B8; // type:object size:0x18 data:4byte +lbl_808252D0 = .data:0x808252D0; // type:object size:0x14C data:4byte +lbl_8082541C = .data:0x8082541C; // type:object size:0x34 +lbl_80825450 = .data:0x80825450; // type:object size:0x1C +lbl_8082546C = .data:0x8082546C; // type:object size:0x24 +lbl_80825490 = .data:0x80825490; // type:object size:0x140 +lbl_808255D0 = .data:0x808255D0; // type:object size:0x198 +lbl_80825768 = .data:0x80825768; // type:object size:0x10 +lbl_80825778 = .data:0x80825778; // type:object size:0x28 +lbl_808257A0 = .data:0x808257A0; // type:object size:0x18 +lbl_808257B8 = .data:0x808257B8; // type:object size:0x8 +lbl_808257C0 = .data:0x808257C0; // type:object size:0x4 +jumptable_808257C4 = .data:0x808257C4; // type:object size:0x6C scope:local +lbl_80825830 = .data:0x80825830; // type:object size:0x68 +lbl_80825898 = .data:0x80825898; // type:object size:0x28 data:string +lbl_808258C0 = .data:0x808258C0; // type:object size:0x30 +lbl_808258F0 = .data:0x808258F0; // type:object size:0x8 +lbl_808258F8 = .data:0x808258F8; // type:object size:0xC +lbl_80825904 = .data:0x80825904; // type:object size:0x1C +lbl_80825920 = .data:0x80825920; // type:object size:0x18 +lbl_80825938 = .data:0x80825938; // type:object size:0x8 +lbl_80825940 = .data:0x80825940; // type:object size:0xC +lbl_8082594C = .data:0x8082594C; // type:object size:0x20 +lbl_8082596C = .data:0x8082596C; // type:object size:0xC +lbl_80825978 = .data:0x80825978; // type:object size:0x8 +lbl_80825980 = .data:0x80825980; // type:object size:0x14 +lbl_80825994 = .data:0x80825994; // type:object size:0x14 data:string +lbl_808259A8 = .data:0x808259A8; // type:object size:0x18 +lbl_808259C0 = .data:0x808259C0; // type:object size:0x8 +lbl_808259C8 = .data:0x808259C8; // type:object size:0xC +lbl_808259D4 = .data:0x808259D4; // type:object size:0x1C +lbl_808259F0 = .data:0x808259F0; // type:object size:0x10 +lbl_80825A00 = .data:0x80825A00; // type:object size:0x8 +lbl_80825A08 = .data:0x80825A08; // type:object size:0xC +lbl_80825A14 = .data:0x80825A14; // type:object size:0x14 data:string +lbl_80825A28 = .data:0x80825A28; // type:object size:0x18 +lbl_80825A40 = .data:0x80825A40; // type:object size:0x8 +lbl_80825A48 = .data:0x80825A48; // type:object size:0xC +lbl_80825A54 = .data:0x80825A54; // type:object size:0x1C +lbl_80825A70 = .data:0x80825A70; // type:object size:0x10 +lbl_80825A80 = .data:0x80825A80; // type:object size:0x8 +lbl_80825A88 = .data:0x80825A88; // type:object size:0x10 +lbl_80825A98 = .data:0x80825A98; // type:object size:0x18 +lbl_80825AB0 = .data:0x80825AB0; // type:object size:0x8 +lbl_80825AB8 = .data:0x80825AB8; // type:object size:0x14 +lbl_80825ACC = .data:0x80825ACC; // type:object size:0xC +lbl_80825AD8 = .data:0x80825AD8; // type:object size:0x8 +lbl_80825AE0 = .data:0x80825AE0; // type:object size:0x20 +lbl_80825B00 = .data:0x80825B00; // type:object size:0x20 +lbl_80825B20 = .data:0x80825B20; // type:object size:0x18 +lbl_80825B38 = .data:0x80825B38; // type:object size:0x8 +lbl_80825B40 = .data:0x80825B40; // type:object size:0x20 +lbl_80825B60 = .data:0x80825B60; // type:object size:0x4 +lbl_80825B64 = .data:0x80825B64; // type:object size:0xC data:4byte +lbl_80825B70 = .data:0x80825B70; // type:object size:0xC data:4byte +lbl_80825B7C = .data:0x80825B7C; // type:object size:0x34 +lbl_80825BB0 = .data:0x80825BB0; // type:object size:0x28 +lbl_80825BD8 = .data:0x80825BD8; // type:object size:0x28 +lbl_80825C00 = .data:0x80825C00; // type:object size:0x8 +lbl_80825C08 = .data:0x80825C08; // type:object size:0x80 +lbl_80825C88 = .data:0x80825C88; // type:object size:0x30 +lbl_80825CB8 = .data:0x80825CB8; // type:object size:0x30 data:4byte +lbl_80825CE8 = .data:0x80825CE8; // type:object size:0x34 data:4byte +lbl_80825D1C = .data:0x80825D1C; // type:object size:0x34 +lbl_80825D50 = .data:0x80825D50; // type:object size:0x20 +lbl_80825D70 = .data:0x80825D70; // type:object size:0x28 +lbl_80825D98 = .data:0x80825D98; // type:object size:0xC0 +lbl_80825E58 = .data:0x80825E58; // type:object size:0xB0 +lbl_80825F08 = .data:0x80825F08; // type:object size:0x4 +lbl_80825F0C = .data:0x80825F0C; // type:object size:0x4 +lbl_80825F10 = .data:0x80825F10; // type:object size:0x4 +lbl_80825F14 = .data:0x80825F14; // type:object size:0x1C +lbl_80825F30 = .data:0x80825F30; // type:object size:0x18 +lbl_80825F48 = .data:0x80825F48; // type:object size:0x14 +lbl_80825F5C = .data:0x80825F5C; // type:object size:0x10 +lbl_80825F6C = .data:0x80825F6C; // type:object size:0x14 +lbl_80825F80 = .data:0x80825F80; // type:object size:0x8 +lbl_80825F88 = .data:0x80825F88; // type:object size:0x4 +lbl_80825F8C = .data:0x80825F8C; // type:object size:0x64 +lbl_80825FF0 = .data:0x80825FF0; // type:object size:0x28 +lbl_80826018 = .data:0x80826018; // type:object size:0x30 +lbl_80826048 = .data:0x80826048; // type:object size:0x8 +lbl_80826050 = .data:0x80826050; // type:object size:0xC +lbl_8082605C = .data:0x8082605C; // type:object size:0x1C +lbl_80826078 = .data:0x80826078; // type:object size:0x18 +lbl_80826090 = .data:0x80826090; // type:object size:0x8 +lbl_80826098 = .data:0x80826098; // type:object size:0xC +lbl_808260A4 = .data:0x808260A4; // type:object size:0x20 +lbl_808260C4 = .data:0x808260C4; // type:object size:0xC +lbl_808260D0 = .data:0x808260D0; // type:object size:0x8 +lbl_808260D8 = .data:0x808260D8; // type:object size:0x28 +lbl_80826100 = .data:0x80826100; // type:object size:0x10 data:string +lbl_80826110 = .data:0x80826110; // type:object size:0x38 +lbl_80826148 = .data:0x80826148; // type:object size:0x8 +lbl_80826150 = .data:0x80826150; // type:object size:0x18 +lbl_80826168 = .data:0x80826168; // type:object size:0x30 +lbl_80826198 = .data:0x80826198; // type:object size:0x8 +lbl_808261A0 = .data:0x808261A0; // type:object size:0x28 +lbl_808261C8 = .data:0x808261C8; // type:object size:0x14 +lbl_808261DC = .data:0x808261DC; // type:object size:0x34 +lbl_80826210 = .data:0x80826210; // type:object size:0x8 +lbl_80826218 = .data:0x80826218; // type:object size:0x18 data:string +lbl_80826230 = .data:0x80826230; // type:object size:0x30 +lbl_80826260 = .data:0x80826260; // type:object size:0x8 +lbl_80826268 = .data:0x80826268; // type:object size:0x14 data:string +lbl_8082627C = .data:0x8082627C; // type:object size:0x24 +lbl_808262A0 = .data:0x808262A0; // type:object size:0x8 +lbl_808262A8 = .data:0x808262A8; // type:object size:0x1C +lbl_808262C4 = .data:0x808262C4; // type:object size:0x1C +lbl_808262E0 = .data:0x808262E0; // type:object size:0x8 +lbl_808262E8 = .data:0x808262E8; // type:object size:0x14 +lbl_808262FC = .data:0x808262FC; // type:object size:0x14 +lbl_80826310 = .data:0x80826310; // type:object size:0x8 +lbl_80826318 = .data:0x80826318; // type:object size:0x18 +lbl_80826330 = .data:0x80826330; // type:object size:0x10 +lbl_80826340 = .data:0x80826340; // type:object size:0x8 +lbl_80826348 = .data:0x80826348; // type:object size:0x20 +lbl_80826368 = .data:0x80826368; // type:object size:0x1C +lbl_80826384 = .data:0x80826384; // type:object size:0x14 +lbl_80826398 = .data:0x80826398; // type:object size:0x8 +lbl_808263A0 = .data:0x808263A0; // type:object size:0x18 +lbl_808263B8 = .data:0x808263B8; // type:object size:0x28 +lbl_808263E0 = .data:0x808263E0; // type:object size:0xC +lbl_808263EC = .data:0x808263EC; // type:object size:0x3C +lbl_80826428 = .data:0x80826428; // type:object size:0x10 +lbl_80826438 = .data:0x80826438; // type:object size:0x8 +lbl_80826440 = .data:0x80826440; // type:object size:0x28 +lbl_80826468 = .data:0x80826468; // type:object size:0x8 +lbl_80826470 = .data:0x80826470; // type:object size:0x28 +lbl_80826498 = .data:0x80826498; // type:object size:0x20 +lbl_808264B8 = .data:0x808264B8; // type:object size:0x4 +lbl_808264BC = .data:0x808264BC; // type:object size:0x64 +lbl_80826520 = .data:0x80826520; // type:object size:0x24 +lbl_80826544 = .data:0x80826544; // type:object size:0x2C +lbl_80826570 = .data:0x80826570; // type:object size:0x8 +lbl_80826578 = .data:0x80826578; // type:object size:0x28 +lbl_808265A0 = .data:0x808265A0; // type:object size:0x18 +lbl_808265B8 = .data:0x808265B8; // type:object size:0x28 +lbl_808265E0 = .data:0x808265E0; // type:object size:0x20 +lbl_80826600 = .data:0x80826600; // type:object size:0x18 +lbl_80826618 = .data:0x80826618; // type:object size:0x1C data:string +lbl_80826634 = .data:0x80826634; // type:object size:0x1C +lbl_80826650 = .data:0x80826650; // type:object size:0x8 +lbl_80826658 = .data:0x80826658; // type:object size:0x18 +lbl_80826670 = .data:0x80826670; // type:object size:0x18 +lbl_80826688 = .data:0x80826688; // type:object size:0x8 +lbl_80826690 = .data:0x80826690; // type:object size:0x18 data:string +lbl_808266A8 = .data:0x808266A8; // type:object size:0x14 +lbl_808266BC = .data:0x808266BC; // type:object size:0x14 data:string +lbl_808266D0 = .data:0x808266D0; // type:object size:0x18 +lbl_808266E8 = .data:0x808266E8; // type:object size:0x8 +lbl_808266F0 = .data:0x808266F0; // type:object size:0x8 +lbl_808266F8 = .data:0x808266F8; // type:object size:0x20 +lbl_80826718 = .data:0x80826718; // type:object size:0x14 +lbl_8082672C = .data:0x8082672C; // type:object size:0x18 +lbl_80826744 = .data:0x80826744; // type:object size:0xC +lbl_80826750 = .data:0x80826750; // type:object size:0x8 +lbl_80826758 = .data:0x80826758; // type:object size:0x38 +lbl_80826790 = .data:0x80826790; // type:object size:0x8 +lbl_80826798 = .data:0x80826798; // type:object size:0x10 +lbl_808267A8 = .data:0x808267A8; // type:object size:0x28 +lbl_808267D0 = .data:0x808267D0; // type:object size:0x24 +lbl_808267F4 = .data:0x808267F4; // type:object size:0x14 +lbl_80826808 = .data:0x80826808; // type:object size:0x68 +lbl_80826870 = .data:0x80826870; // type:object size:0x24 +lbl_80826894 = .data:0x80826894; // type:object size:0x34 +lbl_808268C8 = .data:0x808268C8; // type:object size:0x8 +lbl_808268D0 = .data:0x808268D0; // type:object size:0x2C +lbl_808268FC = .data:0x808268FC; // type:object size:0x2C +lbl_80826928 = .data:0x80826928; // type:object size:0x8 +lbl_80826930 = .data:0x80826930; // type:object size:0x38 +lbl_80826968 = .data:0x80826968; // type:object size:0x8 +lbl_80826970 = .data:0x80826970; // type:object size:0x68 +lbl_808269D8 = .data:0x808269D8; // type:object size:0xC +lbl_808269E4 = .data:0x808269E4; // type:object size:0x1C +lbl_80826A00 = .data:0x80826A00; // type:object size:0x18 +lbl_80826A18 = .data:0x80826A18; // type:object size:0x8 +lbl_80826A20 = .data:0x80826A20; // type:object size:0xC +lbl_80826A2C = .data:0x80826A2C; // type:object size:0x20 +lbl_80826A4C = .data:0x80826A4C; // type:object size:0xC +lbl_80826A58 = .data:0x80826A58; // type:object size:0x8 +lbl_80826A60 = .data:0x80826A60; // type:object size:0x10 +lbl_80826A70 = .data:0x80826A70; // type:object size:0x2C +lbl_80826A9C = .data:0x80826A9C; // type:object size:0x14 +lbl_80826AB0 = .data:0x80826AB0; // type:object size:0x8 +lbl_80826AB8 = .data:0x80826AB8; // type:object size:0x24 +lbl_80826ADC = .data:0x80826ADC; // type:object size:0x14 data:string +lbl_80826AF0 = .data:0x80826AF0; // type:object size:0x28 +lbl_80826B18 = .data:0x80826B18; // type:object size:0x8 +lbl_80826B20 = .data:0x80826B20; // type:object size:0x24 +lbl_80826B44 = .data:0x80826B44; // type:object size:0x1C +lbl_80826B60 = .data:0x80826B60; // type:object size:0x20 +lbl_80826B80 = .data:0x80826B80; // type:object size:0x8 +lbl_80826B88 = .data:0x80826B88; // type:object size:0x20 +lbl_80826BA8 = .data:0x80826BA8; // type:object size:0x8 data:4byte +lbl_80826BB0 = .data:0x80826BB0; // type:object size:0x24 +lbl_80826BD4 = .data:0x80826BD4; // type:object size:0x1C +lbl_80826BF0 = .data:0x80826BF0; // type:object size:0x18 +lbl_80826C08 = .data:0x80826C08; // type:object size:0x8 +lbl_80826C10 = .data:0x80826C10; // type:object size:0x24 +lbl_80826C34 = .data:0x80826C34; // type:object size:0x18 +lbl_80826C4C = .data:0x80826C4C; // type:object size:0xC +lbl_80826C58 = .data:0x80826C58; // type:object size:0x8 +lbl_80826C60 = .data:0x80826C60; // type:object size:0x10 +lbl_80826C70 = .data:0x80826C70; // type:object size:0x10 +lbl_80826C80 = .data:0x80826C80; // type:object size:0x18 +lbl_80826C98 = .data:0x80826C98; // type:object size:0x38 +lbl_80826CD0 = .data:0x80826CD0; // type:object size:0x4 +jumptable_80826CD4 = .data:0x80826CD4; // type:object size:0x2C scope:local +__vt__Q26Quazal15BackEndServices = .data:0x80826D00; // type:object size:0x18 +lbl_80826D18 = .data:0x80826D18; // type:object size:0x18 data:string +lbl_80826D30 = .data:0x80826D30; // type:object size:0x10 +__RTTI__Q26Quazal15BackEndServices = .data:0x80826D40; // type:object size:0x8 +lbl_80826D48 = .data:0x80826D48; // type:object size:0x270 +lbl_80826FB8 = .data:0x80826FB8; // type:object size:0x40 +lbl_80826FF8 = .data:0x80826FF8; // type:object size:0x4 data:4byte +lbl_80826FFC = .data:0x80826FFC; // type:object size:0x20 data:4byte +lbl_8082701C = .data:0x8082701C; // type:object size:0x4 +lbl_80827020 = .data:0x80827020; // type:object size:0xC data:4byte +lbl_8082702C = .data:0x8082702C; // type:object size:0x28 data:4byte +lbl_80827054 = .data:0x80827054; // type:object size:0x28 data:4byte +lbl_8082707C = .data:0x8082707C; // type:object size:0x28 data:4byte +lbl_808270A4 = .data:0x808270A4; // type:object size:0xC data:4byte +lbl_808270B0 = .data:0x808270B0; // type:object size:0x4 +lbl_808270B4 = .data:0x808270B4; // type:object size:0xC data:4byte +lbl_808270C0 = .data:0x808270C0; // type:object size:0xC data:4byte +lbl_808270CC = .data:0x808270CC; // type:object size:0x4 +lbl_808270D0 = .data:0x808270D0; // type:object size:0xC data:4byte +lbl_808270DC = .data:0x808270DC; // type:object size:0x4 +lbl_808270E0 = .data:0x808270E0; // type:object size:0xC data:4byte +lbl_808270EC = .data:0x808270EC; // type:object size:0x34 +lbl_80827120 = .data:0x80827120; // type:object size:0x20 data:string +lbl_80827140 = .data:0x80827140; // type:object size:0x28 +lbl_80827168 = .data:0x80827168; // type:object size:0x150 +lbl_808272B8 = .data:0x808272B8; // type:object size:0x340 +lbl_808275F8 = .data:0x808275F8; // type:object size:0x20 +lbl_80827618 = .data:0x80827618; // type:object size:0x4 +lbl_8082761C = .data:0x8082761C; // type:object size:0x1C +lbl_80827638 = .data:0x80827638; // type:object size:0x30 data:4byte +lbl_80827668 = .data:0x80827668; // type:object size:0xC data:4byte +lbl_80827674 = .data:0x80827674; // type:object size:0x48 data:4byte +lbl_808276BC = .data:0x808276BC; // type:object size:0xC data:4byte +lbl_808276C8 = .data:0x808276C8; // type:object size:0x3C data:4byte +lbl_80827704 = .data:0x80827704; // type:object size:0xC data:4byte +lbl_80827710 = .data:0x80827710; // type:object size:0xC data:4byte +lbl_8082771C = .data:0x8082771C; // type:object size:0xC data:4byte +lbl_80827728 = .data:0x80827728; // type:object size:0xC data:4byte +lbl_80827734 = .data:0x80827734; // type:object size:0xC data:4byte +lbl_80827740 = .data:0x80827740; // type:object size:0x34 +lbl_80827774 = .data:0x80827774; // type:object size:0x24 +lbl_80827798 = .data:0x80827798; // type:object size:0x28 +lbl_808277C0 = .data:0x808277C0; // type:object size:0xC0 +lbl_80827880 = .data:0x80827880; // type:object size:0x278 +lbl_80827AF8 = .data:0x80827AF8; // type:object size:0xC data:4byte +lbl_80827B04 = .data:0x80827B04; // type:object size:0xC data:4byte +lbl_80827B10 = .data:0x80827B10; // type:object size:0x4 +lbl_80827B14 = .data:0x80827B14; // type:object size:0xC data:4byte +lbl_80827B20 = .data:0x80827B20; // type:object size:0x34 +lbl_80827B54 = .data:0x80827B54; // type:object size:0x24 data:string +lbl_80827B78 = .data:0x80827B78; // type:object size:0x28 +lbl_80827BA0 = .data:0x80827BA0; // type:object size:0x8 +lbl_80827BA8 = .data:0x80827BA8; // type:object size:0xC0 +lbl_80827C68 = .data:0x80827C68; // type:object size:0x14 +lbl_80827C7C = .data:0x80827C7C; // type:object size:0x14 +lbl_80827C90 = .data:0x80827C90; // type:object size:0x18 +lbl_80827CA8 = .data:0x80827CA8; // type:object size:0x8 +lbl_80827CB0 = .data:0x80827CB0; // type:object size:0x30 +lbl_80827CE0 = .data:0x80827CE0; // type:object size:0x20 +lbl_80827D00 = .data:0x80827D00; // type:object size:0x18 +lbl_80827D18 = .data:0x80827D18; // type:object size:0x18 +lbl_80827D30 = .data:0x80827D30; // type:object size:0x8 +lbl_80827D38 = .data:0x80827D38; // type:object size:0x4 +jumptable_80827D3C = .data:0x80827D3C; // type:object size:0x28 scope:local +lbl_80827D64 = .data:0x80827D64; // type:object size:0x64 +lbl_80827DC8 = .data:0x80827DC8; // type:object size:0x20 +lbl_80827DE8 = .data:0x80827DE8; // type:object size:0x30 +lbl_80827E18 = .data:0x80827E18; // type:object size:0x8 +lbl_80827E20 = .data:0x80827E20; // type:object size:0xC +lbl_80827E2C = .data:0x80827E2C; // type:object size:0x14 +lbl_80827E40 = .data:0x80827E40; // type:object size:0x18 +lbl_80827E58 = .data:0x80827E58; // type:object size:0x8 +lbl_80827E60 = .data:0x80827E60; // type:object size:0x10 +lbl_80827E70 = .data:0x80827E70; // type:object size:0x18 data:string +lbl_80827E88 = .data:0x80827E88; // type:object size:0x10 +lbl_80827E98 = .data:0x80827E98; // type:object size:0x8 +lbl_80827EA0 = .data:0x80827EA0; // type:object size:0x28 +lbl_80827EC8 = .data:0x80827EC8; // type:object size:0x14 data:string +lbl_80827EDC = .data:0x80827EDC; // type:object size:0x24 +lbl_80827F00 = .data:0x80827F00; // type:object size:0x8 +lbl_80827F08 = .data:0x80827F08; // type:object size:0x1C +lbl_80827F24 = .data:0x80827F24; // type:object size:0x1C +lbl_80827F40 = .data:0x80827F40; // type:object size:0x8 +lbl_80827F48 = .data:0x80827F48; // type:object size:0x28 +lbl_80827F70 = .data:0x80827F70; // type:object size:0x1C +lbl_80827F8C = .data:0x80827F8C; // type:object size:0x24 +lbl_80827FB0 = .data:0x80827FB0; // type:object size:0x8 +lbl_80827FB8 = .data:0x80827FB8; // type:object size:0x20 +lbl_80827FD8 = .data:0x80827FD8; // type:object size:0x20 +lbl_80827FF8 = .data:0x80827FF8; // type:object size:0x8 +lbl_80828000 = .data:0x80828000; // type:object size:0x20 +lbl_80828020 = .data:0x80828020; // type:object size:0x1C +lbl_8082803C = .data:0x8082803C; // type:object size:0x14 +lbl_80828050 = .data:0x80828050; // type:object size:0x8 +lbl_80828058 = .data:0x80828058; // type:object size:0xC +lbl_80828064 = .data:0x80828064; // type:object size:0x18 +lbl_8082807C = .data:0x8082807C; // type:object size:0x14 +lbl_80828090 = .data:0x80828090; // type:object size:0x8 +lbl_80828098 = .data:0x80828098; // type:object size:0xC +lbl_808280A4 = .data:0x808280A4; // type:object size:0x1C data:string +lbl_808280C0 = .data:0x808280C0; // type:object size:0x10 +lbl_808280D0 = .data:0x808280D0; // type:object size:0x8 +lbl_808280D8 = .data:0x808280D8; // type:object size:0x18 +lbl_808280F0 = .data:0x808280F0; // type:object size:0x118 +lbl_80828208 = .data:0x80828208; // type:object size:0x14 +lbl_8082821C = .data:0x8082821C; // type:object size:0x1C data:string +lbl_80828238 = .data:0x80828238; // type:object size:0x10 +lbl_80828248 = .data:0x80828248; // type:object size:0x8 +lbl_80828250 = .data:0x80828250; // type:object size:0x40 +lbl_80828290 = .data:0x80828290; // type:object size:0x8 +lbl_80828298 = .data:0x80828298; // type:object size:0x18 +lbl_808282B0 = .data:0x808282B0; // type:object size:0x28 +lbl_808282D8 = .data:0x808282D8; // type:object size:0x30 +lbl_80828308 = .data:0x80828308; // type:object size:0x28 +lbl_80828330 = .data:0x80828330; // type:object size:0x20 +lbl_80828350 = .data:0x80828350; // type:object size:0x28 +lbl_80828378 = .data:0x80828378; // type:object size:0x24 +lbl_8082839C = .data:0x8082839C; // type:object size:0x1C +lbl_808283B8 = .data:0x808283B8; // type:object size:0x4 +jumptable_808283BC = .data:0x808283BC; // type:object size:0xA4 scope:local +lbl_80828460 = .data:0x80828460; // type:object size:0x64 +lbl_808284C4 = .data:0x808284C4; // type:object size:0x24 +lbl_808284E8 = .data:0x808284E8; // type:object size:0x30 +lbl_80828518 = .data:0x80828518; // type:object size:0x8 +lbl_80828520 = .data:0x80828520; // type:object size:0xC +lbl_8082852C = .data:0x8082852C; // type:object size:0x18 +lbl_80828544 = .data:0x80828544; // type:object size:0x14 +lbl_80828558 = .data:0x80828558; // type:object size:0x8 +lbl_80828560 = .data:0x80828560; // type:object size:0xC +lbl_8082856C = .data:0x8082856C; // type:object size:0x1C +lbl_80828588 = .data:0x80828588; // type:object size:0x10 +lbl_80828598 = .data:0x80828598; // type:object size:0x8 +lbl_808285A0 = .data:0x808285A0; // type:object size:0xC +lbl_808285AC = .data:0x808285AC; // type:object size:0x1C +lbl_808285C8 = .data:0x808285C8; // type:object size:0x18 +lbl_808285E0 = .data:0x808285E0; // type:object size:0x8 +lbl_808285E8 = .data:0x808285E8; // type:object size:0x10 +lbl_808285F8 = .data:0x808285F8; // type:object size:0x20 data:string +lbl_80828618 = .data:0x80828618; // type:object size:0x10 +lbl_80828628 = .data:0x80828628; // type:object size:0x8 +lbl_80828630 = .data:0x80828630; // type:object size:0xC +lbl_8082863C = .data:0x8082863C; // type:object size:0x14 +lbl_80828650 = .data:0x80828650; // type:object size:0x18 +lbl_80828668 = .data:0x80828668; // type:object size:0x8 +lbl_80828670 = .data:0x80828670; // type:object size:0x10 +lbl_80828680 = .data:0x80828680; // type:object size:0x18 data:string +lbl_80828698 = .data:0x80828698; // type:object size:0x10 +lbl_808286A8 = .data:0x808286A8; // type:object size:0x8 +lbl_808286B0 = .data:0x808286B0; // type:object size:0x4 +lbl_808286B4 = .data:0x808286B4; // type:object size:0x64 +lbl_80828718 = .data:0x80828718; // type:object size:0x28 +lbl_80828740 = .data:0x80828740; // type:object size:0x30 +lbl_80828770 = .data:0x80828770; // type:object size:0x8 +lbl_80828778 = .data:0x80828778; // type:object size:0xC +lbl_80828784 = .data:0x80828784; // type:object size:0x18 +lbl_8082879C = .data:0x8082879C; // type:object size:0x14 +lbl_808287B0 = .data:0x808287B0; // type:object size:0x8 +lbl_808287B8 = .data:0x808287B8; // type:object size:0xC +lbl_808287C4 = .data:0x808287C4; // type:object size:0x1C +lbl_808287E0 = .data:0x808287E0; // type:object size:0x10 +lbl_808287F0 = .data:0x808287F0; // type:object size:0x8 +lbl_808287F8 = .data:0x808287F8; // type:object size:0x10 +lbl_80828808 = .data:0x80828808; // type:object size:0x2C +lbl_80828834 = .data:0x80828834; // type:object size:0x14 +lbl_80828848 = .data:0x80828848; // type:object size:0x8 +lbl_80828850 = .data:0x80828850; // type:object size:0x68 +lbl_808288B8 = .data:0x808288B8; // type:object size:0x20 +lbl_808288D8 = .data:0x808288D8; // type:object size:0x38 +lbl_80828910 = .data:0x80828910; // type:object size:0x8 +lbl_80828918 = .data:0x80828918; // type:object size:0x30 +lbl_80828948 = .data:0x80828948; // type:object size:0x30 +lbl_80828978 = .data:0x80828978; // type:object size:0x8 +lbl_80828980 = .data:0x80828980; // type:object size:0x20 +lbl_808289A0 = .data:0x808289A0; // type:object size:0x24 +lbl_808289C4 = .data:0x808289C4; // type:object size:0x14 data:string +lbl_808289D8 = .data:0x808289D8; // type:object size:0x38 +lbl_80828A10 = .data:0x80828A10; // type:object size:0x8 +lbl_80828A18 = .data:0x80828A18; // type:object size:0x1C +lbl_80828A34 = .data:0x80828A34; // type:object size:0x2C +lbl_80828A60 = .data:0x80828A60; // type:object size:0x8 +lbl_80828A68 = .data:0x80828A68; // type:object size:0x20 +lbl_80828A88 = .data:0x80828A88; // type:object size:0x18 data:string +lbl_80828AA0 = .data:0x80828AA0; // type:object size:0x18 +lbl_80828AB8 = .data:0x80828AB8; // type:object size:0x8 +lbl_80828AC0 = .data:0x80828AC0; // type:object size:0xC +lbl_80828ACC = .data:0x80828ACC; // type:object size:0x1C +lbl_80828AE8 = .data:0x80828AE8; // type:object size:0x18 +lbl_80828B00 = .data:0x80828B00; // type:object size:0x8 +lbl_80828B08 = .data:0x80828B08; // type:object size:0xC +lbl_80828B14 = .data:0x80828B14; // type:object size:0x20 +lbl_80828B34 = .data:0x80828B34; // type:object size:0xC +lbl_80828B40 = .data:0x80828B40; // type:object size:0x8 +lbl_80828B48 = .data:0x80828B48; // type:object size:0x30 +lbl_80828B78 = .data:0x80828B78; // type:object size:0x4 +lbl_80828B7C = .data:0x80828B7C; // type:object size:0x4 +lbl_80828B80 = .data:0x80828B80; // type:object size:0x68 +lbl_80828BE8 = .data:0x80828BE8; // type:object size:0x64 +lbl_80828C4C = .data:0x80828C4C; // type:object size:0x28 +lbl_80828C74 = .data:0x80828C74; // type:object size:0x2C +lbl_80828CA0 = .data:0x80828CA0; // type:object size:0x8 +lbl_80828CA8 = .data:0x80828CA8; // type:object size:0x4 +lbl_80828CAC = .data:0x80828CAC; // type:object size:0x64 +lbl_80828D10 = .data:0x80828D10; // type:object size:0x20 data:string +lbl_80828D30 = .data:0x80828D30; // type:object size:0x30 +lbl_80828D60 = .data:0x80828D60; // type:object size:0x8 +lbl_80828D68 = .data:0x80828D68; // type:object size:0x24 +lbl_80828D8C = .data:0x80828D8C; // type:object size:0x24 +lbl_80828DB0 = .data:0x80828DB0; // type:object size:0x4 +lbl_80828DB4 = .data:0x80828DB4; // type:object size:0x4 +lbl_80828DB8 = .data:0x80828DB8; // type:object size:0x30 +lbl_80828DE8 = .data:0x80828DE8; // type:object size:0x1C +lbl_80828E04 = .data:0x80828E04; // type:object size:0x1C +lbl_80828E20 = .data:0x80828E20; // type:object size:0x8 +lbl_80828E28 = .data:0x80828E28; // type:object size:0x20 +lbl_80828E48 = .data:0x80828E48; // type:object size:0x1C +lbl_80828E64 = .data:0x80828E64; // type:object size:0x14 +lbl_80828E78 = .data:0x80828E78; // type:object size:0x8 +lbl_80828E80 = .data:0x80828E80; // type:object size:0x10 +lbl_80828E90 = .data:0x80828E90; // type:object size:0x1C +lbl_80828EAC = .data:0x80828EAC; // type:object size:0xC +lbl_80828EB8 = .data:0x80828EB8; // type:object size:0x8 +lbl_80828EC0 = .data:0x80828EC0; // type:object size:0x70 +lbl_80828F30 = .data:0x80828F30; // type:object size:0x20 data:string +lbl_80828F50 = .data:0x80828F50; // type:object size:0x40 +lbl_80828F90 = .data:0x80828F90; // type:object size:0x8 +lbl_80828F98 = .data:0x80828F98; // type:object size:0x24 +lbl_80828FBC = .data:0x80828FBC; // type:object size:0x34 +lbl_80828FF0 = .data:0x80828FF0; // type:object size:0x8 +lbl_80828FF8 = .data:0x80828FF8; // type:object size:0x2C +lbl_80829024 = .data:0x80829024; // type:object size:0x2C +lbl_80829050 = .data:0x80829050; // type:object size:0x8 +lbl_80829058 = .data:0x80829058; // type:object size:0x10 +lbl_80829068 = .data:0x80829068; // type:object size:0x20 +lbl_80829088 = .data:0x80829088; // type:object size:0x18 +lbl_808290A0 = .data:0x808290A0; // type:object size:0x8 +lbl_808290A8 = .data:0x808290A8; // type:object size:0x10 +lbl_808290B8 = .data:0x808290B8; // type:object size:0x1C +lbl_808290D4 = .data:0x808290D4; // type:object size:0xC +lbl_808290E0 = .data:0x808290E0; // type:object size:0x8 +lbl_808290E8 = .data:0x808290E8; // type:object size:0x20 +lbl_80829108 = .data:0x80829108; // type:object size:0x10 +lbl_80829118 = .data:0x80829118; // type:object size:0x14 +lbl_8082912C = .data:0x8082912C; // type:object size:0x14 +lbl_80829140 = .data:0x80829140; // type:object size:0x8 +lbl_80829148 = .data:0x80829148; // type:object size:0x14 +lbl_8082915C = .data:0x8082915C; // type:object size:0x14 +lbl_80829170 = .data:0x80829170; // type:object size:0x18 +lbl_80829188 = .data:0x80829188; // type:object size:0x8 +lbl_80829190 = .data:0x80829190; // type:object size:0x18 +lbl_808291A8 = .data:0x808291A8; // type:object size:0x4 +lbl_808291AC = .data:0x808291AC; // type:object size:0x4 +lbl_808291B0 = .data:0x808291B0; // type:object size:0x70 +lbl_80829220 = .data:0x80829220; // type:object size:0x64 +lbl_80829284 = .data:0x80829284; // type:object size:0x24 +lbl_808292A8 = .data:0x808292A8; // type:object size:0x30 +lbl_808292D8 = .data:0x808292D8; // type:object size:0x8 +lbl_808292E0 = .data:0x808292E0; // type:object size:0x70 +lbl_80829350 = .data:0x80829350; // type:object size:0x20 +lbl_80829370 = .data:0x80829370; // type:object size:0x20 +lbl_80829390 = .data:0x80829390; // type:object size:0x20 +lbl_808293B0 = .data:0x808293B0; // type:object size:0x18 +lbl_808293C8 = .data:0x808293C8; // type:object size:0x8 +lbl_808293D0 = .data:0x808293D0; // type:object size:0x4 +lbl_808293D4 = .data:0x808293D4; // type:object size:0x64 +lbl_80829438 = .data:0x80829438; // type:object size:0x28 +lbl_80829460 = .data:0x80829460; // type:object size:0x30 +lbl_80829490 = .data:0x80829490; // type:object size:0x8 +lbl_80829498 = .data:0x80829498; // type:object size:0x20 +lbl_808294B8 = .data:0x808294B8; // type:object size:0x20 +lbl_808294D8 = .data:0x808294D8; // type:object size:0x18 +lbl_808294F0 = .data:0x808294F0; // type:object size:0x8 +lbl_808294F8 = .data:0x808294F8; // type:object size:0x8 +lbl_80829500 = .data:0x80829500; // type:object size:0x4 +lbl_80829504 = .data:0x80829504; // type:object size:0x64 +lbl_80829568 = .data:0x80829568; // type:object size:0x28 +lbl_80829590 = .data:0x80829590; // type:object size:0x30 +lbl_808295C0 = .data:0x808295C0; // type:object size:0x8 +lbl_808295C8 = .data:0x808295C8; // type:object size:0xC +lbl_808295D4 = .data:0x808295D4; // type:object size:0x18 +lbl_808295EC = .data:0x808295EC; // type:object size:0x14 +lbl_80829600 = .data:0x80829600; // type:object size:0x8 +lbl_80829608 = .data:0x80829608; // type:object size:0xC +lbl_80829614 = .data:0x80829614; // type:object size:0x1C data:string +lbl_80829630 = .data:0x80829630; // type:object size:0x10 +lbl_80829640 = .data:0x80829640; // type:object size:0x8 +lbl_80829648 = .data:0x80829648; // type:object size:0x40 +lbl_80829688 = .data:0x80829688; // type:object size:0x4 +lbl_8082968C = .data:0x8082968C; // type:object size:0x10 +lbl_8082969C = .data:0x8082969C; // type:object size:0x4 +lbl_808296A0 = .data:0x808296A0; // type:object size:0x4 +lbl_808296A4 = .data:0x808296A4; // type:object size:0x4 +lbl_808296A8 = .data:0x808296A8; // type:object size:0x4 +lbl_808296AC = .data:0x808296AC; // type:object size:0x34 +lbl_808296E0 = .data:0x808296E0; // type:object size:0x24 +lbl_80829704 = .data:0x80829704; // type:object size:0x1C +lbl_80829720 = .data:0x80829720; // type:object size:0x108 +lbl_80829828 = .data:0x80829828; // type:object size:0x98 +lbl_808298C0 = .data:0x808298C0; // type:object size:0x4C +lbl_8082990C = .data:0x8082990C; // type:object size:0x4 +lbl_80829910 = .data:0x80829910; // type:object size:0x6C +lbl_8082997C = .data:0x8082997C; // type:object size:0x18 +lbl_80829994 = .data:0x80829994; // type:object size:0x14 +lbl_808299A8 = .data:0x808299A8; // type:object size:0x50 +lbl_808299F8 = .data:0x808299F8; // type:object size:0x18 +lbl_80829A10 = .data:0x80829A10; // type:object size:0x4 +lbl_80829A14 = .data:0x80829A14; // type:object size:0x4 +lbl_80829A18 = .data:0x80829A18; // type:object size:0x4 +lbl_80829A1C = .data:0x80829A1C; // type:object size:0x4 +lbl_80829A20 = .data:0x80829A20; // type:object size:0x9C +lbl_80829ABC = .data:0x80829ABC; // type:object size:0x18 +lbl_80829AD4 = .data:0x80829AD4; // type:object size:0x1C +lbl_80829AF0 = .data:0x80829AF0; // type:object size:0x8 +lbl_80829AF8 = .data:0x80829AF8; // type:object size:0x18 +lbl_80829B10 = .data:0x80829B10; // type:object size:0x30 +lbl_80829B40 = .data:0x80829B40; // type:object size:0xC data:4byte +lbl_80829B4C = .data:0x80829B4C; // type:object size:0x4 +lbl_80829B50 = .data:0x80829B50; // type:object size:0x20 data:4byte +lbl_80829B70 = .data:0x80829B70; // type:object size:0x4 +lbl_80829B74 = .data:0x80829B74; // type:object size:0x18 data:4byte +lbl_80829B8C = .data:0x80829B8C; // type:object size:0xC data:4byte +lbl_80829B98 = .data:0x80829B98; // type:object size:0x34 +lbl_80829BCC = .data:0x80829BCC; // type:object size:0x1C +lbl_80829BE8 = .data:0x80829BE8; // type:object size:0x30 +lbl_80829C18 = .data:0x80829C18; // type:object size:0x8 +lbl_80829C20 = .data:0x80829C20; // type:object size:0x10 +lbl_80829C30 = .data:0x80829C30; // type:object size:0x30 data:string +lbl_80829C60 = .data:0x80829C60; // type:object size:0x18 +lbl_80829C78 = .data:0x80829C78; // type:object size:0x8 +lbl_80829C80 = .data:0x80829C80; // type:object size:0x24 +lbl_80829CA4 = .data:0x80829CA4; // type:object size:0x18 +lbl_80829CBC = .data:0x80829CBC; // type:object size:0x24 +lbl_80829CE0 = .data:0x80829CE0; // type:object size:0x8 +lbl_80829CE8 = .data:0x80829CE8; // type:object size:0x1C +lbl_80829D04 = .data:0x80829D04; // type:object size:0x1C +lbl_80829D20 = .data:0x80829D20; // type:object size:0x1E8 +lbl_80829F08 = .data:0x80829F08; // type:object size:0xD0 +lbl_80829FD8 = .data:0x80829FD8; // type:object size:0xC data:4byte +lbl_80829FE4 = .data:0x80829FE4; // type:object size:0x4 +lbl_80829FE8 = .data:0x80829FE8; // type:object size:0x34 +lbl_8082A01C = .data:0x8082A01C; // type:object size:0x20 +lbl_8082A03C = .data:0x8082A03C; // type:object size:0x24 +lbl_8082A060 = .data:0x8082A060; // type:object size:0x8 +lbl_8082A068 = .data:0x8082A068; // type:object size:0x30 +__vt__Q26Quazal14NintendoClient = .data:0x8082A098; // type:object size:0x18 +lbl_8082A0B0 = .data:0x8082A0B0; // type:object size:0x18 +lbl_8082A0C8 = .data:0x8082A0C8; // type:object size:0x18 +__RTTI__Q26Quazal14NintendoClient = .data:0x8082A0E0; // type:object size:0x8 +lbl_8082A0E8 = .data:0x8082A0E8; // type:object size:0x30 +lbl_8082A118 = .data:0x8082A118; // type:object size:0x24 +lbl_8082A13C = .data:0x8082A13C; // type:object size:0x24 +lbl_8082A160 = .data:0x8082A160; // type:object size:0x4 +lbl_8082A164 = .data:0x8082A164; // type:object size:0x64 +lbl_8082A1C8 = .data:0x8082A1C8; // type:object size:0x2C +lbl_8082A1F4 = .data:0x8082A1F4; // type:object size:0x2C +lbl_8082A220 = .data:0x8082A220; // type:object size:0x8 +lbl_8082A228 = .data:0x8082A228; // type:object size:0x4 +lbl_8082A22C = .data:0x8082A22C; // type:object size:0xC data:4byte +lbl_8082A238 = .data:0x8082A238; // type:object size:0xC data:4byte +lbl_8082A244 = .data:0x8082A244; // type:object size:0xC data:4byte +lbl_8082A250 = .data:0x8082A250; // type:object size:0xC data:4byte +lbl_8082A25C = .data:0x8082A25C; // type:object size:0xC data:4byte +lbl_8082A268 = .data:0x8082A268; // type:object size:0xC data:4byte +lbl_8082A274 = .data:0x8082A274; // type:object size:0xC data:4byte +lbl_8082A280 = .data:0x8082A280; // type:object size:0xC data:4byte +lbl_8082A28C = .data:0x8082A28C; // type:object size:0xC data:4byte +lbl_8082A298 = .data:0x8082A298; // type:object size:0xC data:4byte +lbl_8082A2A4 = .data:0x8082A2A4; // type:object size:0xC data:4byte +lbl_8082A2B0 = .data:0x8082A2B0; // type:object size:0x10 data:4byte +__vt__Q26Quazal18JobTerminateFacade = .data:0x8082A2C0; // type:object size:0x38 +lbl_8082A2F8 = .data:0x8082A2F8; // type:object size:0x1C +lbl_8082A314 = .data:0x8082A314; // type:object size:0x24 +__RTTI__Q26Quazal18JobTerminateFacade = .data:0x8082A338; // type:object size:0x8 +lbl_8082A340 = .data:0x8082A340; // type:object size:0x1E0 +lbl_8082A520 = .data:0x8082A520; // type:object size:0x4 +__vt__Q26Quazal13ProductFacade = .data:0x8082A524; // type:object size:0xC +lbl_8082A530 = .data:0x8082A530; // type:object size:0x18 +lbl_8082A548 = .data:0x8082A548; // type:object size:0x20 +__RTTI__Q26Quazal13ProductFacade = .data:0x8082A568; // type:object size:0x8 +lbl_8082A570 = .data:0x8082A570; // type:object size:0x8 data:string +lbl_8082A578 = .data:0x8082A578; // type:object size:0x14 +lbl_8082A58C = .data:0x8082A58C; // type:object size:0x8 +lbl_8082A594 = .data:0x8082A594; // type:object size:0x14 +lbl_8082A5A8 = .data:0x8082A5A8; // type:object size:0x18 +__vt__Q26Quazal16ProductSpecifics = .data:0x8082A5C0; // type:object size:0x18 +lbl_8082A5D8 = .data:0x8082A5D8; // type:object size:0x1C +lbl_8082A5F4 = .data:0x8082A5F4; // type:object size:0xC +lbl_8082A600 = .data:0x8082A600; // type:object size:0x8 +__vt__Q26Quazal4NetZ = .data:0x8082A608; // type:object size:0xC +lbl_8082A614 = .data:0x8082A614; // type:object size:0x10 +lbl_8082A624 = .data:0x8082A624; // type:object size:0x24 +__RTTI__Q26Quazal4NetZ = .data:0x8082A648; // type:object size:0x8 +lbl_8082A650 = .data:0x8082A650; // type:object size:0x10 +__vt__Q26Quazal13NetZSpecifics = .data:0x8082A660; // type:object size:0x18 +lbl_8082A678 = .data:0x8082A678; // type:object size:0x18 +lbl_8082A690 = .data:0x8082A690; // type:object size:0x18 +lbl_8082A6A8 = .data:0x8082A6A8; // type:object size:0x8 +lbl_8082A6B0 = .data:0x8082A6B0; // type:object size:0x10 +lbl_8082A6C0 = .data:0x8082A6C0; // type:object size:0x18 data:string +lbl_8082A6D8 = .data:0x8082A6D8; // type:object size:0x18 +lbl_8082A6F0 = .data:0x8082A6F0; // type:object size:0x8 +lbl_8082A6F8 = .data:0x8082A6F8; // type:object size:0x28 +lbl_8082A720 = .data:0x8082A720; // type:object size:0x10 +lbl_8082A730 = .data:0x8082A730; // type:object size:0x20 +lbl_8082A750 = .data:0x8082A750; // type:object size:0x18 +lbl_8082A768 = .data:0x8082A768; // type:object size:0x8 +lbl_8082A770 = .data:0x8082A770; // type:object size:0x38 +lbl_8082A7A8 = .data:0x8082A7A8; // type:object size:0x1C +lbl_8082A7C4 = .data:0x8082A7C4; // type:object size:0x18 +lbl_8082A7DC = .data:0x8082A7DC; // type:object size:0x14 +lbl_8082A7F0 = .data:0x8082A7F0; // type:object size:0x8 +lbl_8082A7F8 = .data:0x8082A7F8; // type:object size:0x1C +lbl_8082A814 = .data:0x8082A814; // type:object size:0x14 +lbl_8082A828 = .data:0x8082A828; // type:object size:0x18 +lbl_8082A840 = .data:0x8082A840; // type:object size:0x8 +lbl_8082A848 = .data:0x8082A848; // type:object size:0x1C +lbl_8082A864 = .data:0x8082A864; // type:object size:0x10 +lbl_8082A874 = .data:0x8082A874; // type:object size:0xC +lbl_8082A880 = .data:0x8082A880; // type:object size:0x8 +lbl_8082A888 = .data:0x8082A888; // type:object size:0x1C +lbl_8082A8A4 = .data:0x8082A8A4; // type:object size:0x10 +lbl_8082A8B4 = .data:0x8082A8B4; // type:object size:0xC +lbl_8082A8C0 = .data:0x8082A8C0; // type:object size:0x8 +lbl_8082A8C8 = .data:0x8082A8C8; // type:object size:0x1C +lbl_8082A8E4 = .data:0x8082A8E4; // type:object size:0x8 +lbl_8082A8EC = .data:0x8082A8EC; // type:object size:0xC +lbl_8082A8F8 = .data:0x8082A8F8; // type:object size:0x8 +lbl_8082A900 = .data:0x8082A900; // type:object size:0x8 +lbl_8082A908 = .data:0x8082A908; // type:object size:0x8 +lbl_8082A910 = .data:0x8082A910; // type:object size:0x18 +__vt__13JsonConverter = .data:0x8082A928; // type:object size:0xC +__classname__13JsonConverter = .data:0x8082A934; // type:object size:0xE data:string +__superclasses__13JsonConverter = .data:0x8082A944; // type:object size:0x14 +__RTTI__13JsonConverter = .data:0x8082A958; // type:object size:0x8 +__vt__10JsonDouble = .data:0x8082A960; // type:object size:0xC +__classname__10JsonDouble = .data:0x8082A96C; // type:object size:0xB data:string +__superclasses__10JsonDouble = .data:0x8082A978; // type:object size:0xC +__RTTI__10JsonDouble = .data:0x8082A988; // type:object size:0x8 +__vt__7JsonInt = .data:0x8082A990; // type:object size:0xC +__classname__7JsonInt = .data:0x8082A9A0; // type:object size:0x8 data:string +__superclasses__7JsonInt = .data:0x8082A9A8; // type:object size:0xC +__RTTI__7JsonInt = .data:0x8082A9B8; // type:object size:0x8 +__vt__10JsonString = .data:0x8082A9C0; // type:object size:0xC +__classname__10JsonString = .data:0x8082A9CC; // type:object size:0xB data:string +__superclasses__10JsonString = .data:0x8082A9D8; // type:object size:0xC +__RTTI__10JsonString = .data:0x8082A9E8; // type:object size:0x8 +__vt__9JsonArray = .data:0x8082A9F0; // type:object size:0xC +__classname__9JsonArray = .data:0x8082A9FC; // type:object size:0xA data:string +__superclasses__9JsonArray = .data:0x8082AA08; // type:object size:0xC +__RTTI__9JsonArray = .data:0x8082AA18; // type:object size:0x8 +__vt__10JsonObject = .data:0x8082AA20; // type:object size:0xC +__classname__10JsonObject = .data:0x8082AA2C; // type:object size:0xB data:string +__RTTI__10JsonObject = .data:0x8082AA38; // type:object size:0x8 +lbl_8082AA40 = .data:0x8082AA40; // type:object size:0xC +lbl_8082AA4C = .data:0x8082AA4C; // type:object size:0x14 +lbl_8082AA60 = .data:0x8082AA60; // type:object size:0x10 +lbl_8082AA70 = .data:0x8082AA70; // type:object size:0x8 +lbl_8082AA78 = .data:0x8082AA78; // type:object size:0x18 +lbl_8082AA90 = .data:0x8082AA90; // type:object size:0x10 +lbl_8082AAA0 = .data:0x8082AAA0; // type:object size:0x10 +lbl_8082AAB0 = .data:0x8082AAB0; // type:object size:0x8 +lbl_8082AAB8 = .data:0x8082AAB8; // type:object size:0x50 +lbl_8082AB08 = .data:0x8082AB08; // type:object size:0x10 data:string +lbl_8082AB18 = .data:0x8082AB18; // type:object size:0x18 +lbl_8082AB30 = .data:0x8082AB30; // type:object size:0x8 +__vt__19MatchMakingSettings = .data:0x8082AB38; // type:object size:0x18 +lbl_8082AB50 = .data:0x8082AB50; // type:object size:0x18 +__RTTI__19MatchMakingSettings = .data:0x8082AB68; // type:object size:0x8 +lbl_8082AB70 = .data:0x8082AB70; // type:object size:0x10 +__RTTI__14Synchronizable = .data:0x8082AB80; // type:object size:0x8 +lbl_8082AB88 = .data:0x8082AB88; // type:object size:0x18 +lbl_8082ABA0 = .data:0x8082ABA0; // type:object size:0x10 data:string +lbl_8082ABB0 = .data:0x8082ABB0; // type:object size:0x8 data:4byte +lbl_8082ABB8 = .data:0x8082ABB8; // type:object size:0x50 +lbl_8082AC08 = .data:0x8082AC08; // type:object size:0x10 +lbl_8082AC18 = .data:0x8082AC18; // type:object size:0x38 +lbl_8082AC50 = .data:0x8082AC50; // type:object size:0x8 +lbl_8082AC58 = .data:0x8082AC58; // type:object size:0x1C +lbl_8082AC74 = .data:0x8082AC74; // type:object size:0x2C +__RTTI__Q26Quazal17_DO_MessageBroker = .data:0x8082ACA0; // type:object size:0x8 +lbl_8082ACA8 = .data:0x8082ACA8; // type:object size:0x18 +__vt__Q215DiscErrorMgrWii30WiiDiscErrorSessionTerminatior = .data:0x8082ACC0; // type:object size:0x14 +lbl_8082ACD4 = .data:0x8082ACD4; // type:object size:0x20 +lbl_8082ACF4 = .data:0x8082ACF4; // type:object size:0xC +lbl_8082AD00 = .data:0x8082AD00; // type:object size:0x8 +lbl_8082AD08 = .data:0x8082AD08; // type:object size:0x20 +lbl_8082AD28 = .data:0x8082AD28; // type:object size:0x8 +__vt__10NetMessage = .data:0x8082AD30; // type:object size:0x28 +lbl_8082AD58 = .data:0x8082AD58; // type:object size:0x10 +__RTTI__10NetMessage = .data:0x8082AD68; // type:object size:0x8 +__vt__3Net = .data:0x8082AD70; // type:object size:0x5C +lbl_8082ADCC = .data:0x8082ADCC; // type:object size:0x4 data:string +lbl_8082ADD0 = .data:0x8082ADD0; // type:object size:0x18 +__RTTI__3Net = .data:0x8082ADE8; // type:object size:0x8 +__vt__Q215DiscErrorMgrWii8Callback = .data:0x8082ADF0; // type:object size:0x14 +lbl_8082AE04 = .data:0x8082AE04; // type:object size:0xC +lbl_8082AE10 = .data:0x8082AE10; // type:object size:0x10 data:string +lbl_8082AE20 = .data:0x8082AE20; // type:object size:0x30 +__vt__15NetSearchResult = .data:0x8082AE50; // type:object size:0x68 +lbl_8082AEB8 = .data:0x8082AEB8; // type:object size:0x10 data:string +lbl_8082AEC8 = .data:0x8082AEC8; // type:object size:0x18 +__RTTI__15NetSearchResult = .data:0x8082AEE0; // type:object size:0x8 +__vt__10NetSession = .data:0x8082AEE8; // type:object size:0xC8 +lbl_8082AFB0 = .data:0x8082AFB0; // type:object size:0xC +lbl_8082AFBC = .data:0x8082AFBC; // type:object size:0x1C +__RTTI__10NetSession = .data:0x8082AFD8; // type:object size:0x8 +lbl_8082AFE0 = .data:0x8082AFE0; // type:object size:0x10 +lbl_8082AFF0 = .data:0x8082AFF0; // type:object size:0x18 +__RTTI__12VoiceDataMsg = .data:0x8082B008; // type:object size:0x8 +lbl_8082B010 = .data:0x8082B010; // type:object size:0xC +lbl_8082B01C = .data:0x8082B01C; // type:object size:0x14 +__RTTI__10EndGameMsg = .data:0x8082B030; // type:object size:0x8 +lbl_8082B038 = .data:0x8082B038; // type:object size:0x14 +lbl_8082B04C = .data:0x8082B04C; // type:object size:0x14 +__RTTI__18StartGameOnTimeMsg = .data:0x8082B060; // type:object size:0x8 +lbl_8082B068 = .data:0x8082B068; // type:object size:0x18 +lbl_8082B080 = .data:0x8082B080; // type:object size:0x18 +__RTTI__22FinishedArbitrationMsg = .data:0x8082B098; // type:object size:0x8 +__vt__19BeginArbitrationMsg = .data:0x8082B0A0; // type:object size:0x28 +lbl_8082B0C8 = .data:0x8082B0C8; // type:object size:0x14 data:string +lbl_8082B0DC = .data:0x8082B0DC; // type:object size:0x14 +__RTTI__19BeginArbitrationMsg = .data:0x8082B0F0; // type:object size:0x8 +lbl_8082B0F8 = .data:0x8082B0F8; // type:object size:0x14 +lbl_8082B10C = .data:0x8082B10C; // type:object size:0x14 +__RTTI__17UpdateUserDataMsg = .data:0x8082B120; // type:object size:0x8 +lbl_8082B128 = .data:0x8082B128; // type:object size:0x14 +lbl_8082B13C = .data:0x8082B13C; // type:object size:0x14 +__RTTI__18AddUserResponseMsg = .data:0x8082B150; // type:object size:0x8 +lbl_8082B158 = .data:0x8082B158; // type:object size:0x14 +lbl_8082B16C = .data:0x8082B16C; // type:object size:0x14 +__RTTI__17AddUserRequestMsg = .data:0x8082B180; // type:object size:0x8 +lbl_8082B188 = .data:0x8082B188; // type:object size:0xC data:string +lbl_8082B194 = .data:0x8082B194; // type:object size:0x14 +__RTTI__11UserLeftMsg = .data:0x8082B1A8; // type:object size:0x8 +lbl_8082B1B0 = .data:0x8082B1B0; // type:object size:0xC +lbl_8082B1BC = .data:0x8082B1BC; // type:object size:0x14 +__RTTI__10NewUserMsg = .data:0x8082B1D0; // type:object size:0x8 +lbl_8082B1D8 = .data:0x8082B1D8; // type:object size:0x10 data:string +lbl_8082B1E8 = .data:0x8082B1E8; // type:object size:0x18 +__RTTI__15JoinResponseMsg = .data:0x8082B200; // type:object size:0x8 +lbl_8082B208 = .data:0x8082B208; // type:object size:0x10 +lbl_8082B218 = .data:0x8082B218; // type:object size:0x18 +__RTTI__14JoinRequestMsg = .data:0x8082B230; // type:object size:0x8 +lbl_8082B238 = .data:0x8082B238; // type:object size:0xC +lbl_8082B244 = .data:0x8082B244; // type:object size:0xC +__RTTI__10SessionMsg = .data:0x8082B250; // type:object size:0x8 +__vt__12GameEndedMsg = .data:0x8082B258; // type:object size:0xC +lbl_8082B264 = .data:0x8082B264; // type:object size:0x10 +lbl_8082B274 = .data:0x8082B274; // type:object size:0xC +__RTTI__12GameEndedMsg = .data:0x8082B280; // type:object size:0x8 +__vt__16SyncStartGameMsg = .data:0x8082B288; // type:object size:0xC +lbl_8082B294 = .data:0x8082B294; // type:object size:0x14 +lbl_8082B2A8 = .data:0x8082B2A8; // type:object size:0x10 +__RTTI__16SyncStartGameMsg = .data:0x8082B2B8; // type:object size:0x8 +__vt__20RemoteUserUpdatedMsg = .data:0x8082B2C0; // type:object size:0xC +lbl_8082B2CC = .data:0x8082B2CC; // type:object size:0x18 +lbl_8082B2E4 = .data:0x8082B2E4; // type:object size:0xC +__RTTI__20RemoteUserUpdatedMsg = .data:0x8082B2F0; // type:object size:0x8 +__vt__17RemoteUserLeftMsg = .data:0x8082B2F8; // type:object size:0xC +lbl_8082B304 = .data:0x8082B304; // type:object size:0x14 +lbl_8082B318 = .data:0x8082B318; // type:object size:0x10 +__RTTI__17RemoteUserLeftMsg = .data:0x8082B328; // type:object size:0x8 +__vt__21RemovingRemoteUserMsg = .data:0x8082B330; // type:object size:0xC +lbl_8082B33C = .data:0x8082B33C; // type:object size:0x18 +lbl_8082B354 = .data:0x8082B354; // type:object size:0xC +__RTTI__21RemovingRemoteUserMsg = .data:0x8082B360; // type:object size:0x8 +__vt__16NewRemoteUserMsg = .data:0x8082B368; // type:object size:0xC +lbl_8082B374 = .data:0x8082B374; // type:object size:0x14 +lbl_8082B388 = .data:0x8082B388; // type:object size:0x10 +__RTTI__16NewRemoteUserMsg = .data:0x8082B398; // type:object size:0x8 +__vt__16LocalUserLeftMsg = .data:0x8082B3A0; // type:object size:0xC +lbl_8082B3AC = .data:0x8082B3AC; // type:object size:0x14 +lbl_8082B3C0 = .data:0x8082B3C0; // type:object size:0x10 +__RTTI__16LocalUserLeftMsg = .data:0x8082B3D0; // type:object size:0x8 +__vt__16AddUserResultMsg = .data:0x8082B3D8; // type:object size:0xC +lbl_8082B3E4 = .data:0x8082B3E4; // type:object size:0x14 +lbl_8082B3F8 = .data:0x8082B3F8; // type:object size:0x10 +__RTTI__16AddUserResultMsg = .data:0x8082B408; // type:object size:0x8 +__vt__13JoinResultMsg = .data:0x8082B410; // type:object size:0xC +lbl_8082B41C = .data:0x8082B41C; // type:object size:0x10 +lbl_8082B42C = .data:0x8082B42C; // type:object size:0xC +lbl_8082B438 = .data:0x8082B438; // type:object size:0x8 +__vt__23ProcessedJoinRequestMsg = .data:0x8082B440; // type:object size:0x10 +lbl_8082B450 = .data:0x8082B450; // type:object size:0x18 data:string +lbl_8082B468 = .data:0x8082B468; // type:object size:0x10 +__RTTI__23ProcessedJoinRequestMsg = .data:0x8082B478; // type:object size:0x8 +__vt__22SessionDisconnectedMsg = .data:0x8082B480; // type:object size:0xC +lbl_8082B48C = .data:0x8082B48C; // type:object size:0x18 +lbl_8082B4A4 = .data:0x8082B4A4; // type:object size:0xC +__RTTI__22SessionDisconnectedMsg = .data:0x8082B4B0; // type:object size:0x8 +__vt__15SessionReadyMsg = .data:0x8082B4B8; // type:object size:0x10 +lbl_8082B4C8 = .data:0x8082B4C8; // type:object size:0x10 data:string +lbl_8082B4D8 = .data:0x8082B4D8; // type:object size:0x10 +__RTTI__15SessionReadyMsg = .data:0x8082B4E8; // type:object size:0x8 +__vt__14SessionBusyMsg = .data:0x8082B4F0; // type:object size:0xC +lbl_8082B4FC = .data:0x8082B4FC; // type:object size:0x10 +lbl_8082B50C = .data:0x8082B50C; // type:object size:0xC +__RTTI__14SessionBusyMsg = .data:0x8082B518; // type:object size:0x8 +lbl_8082B520 = .data:0x8082B520; // type:object size:0xC +lbl_8082B52C = .data:0x8082B52C; // type:object size:0x1C +__RTTI__9LocalUser = .data:0x8082B548; // type:object size:0x8 +lbl_8082B550 = .data:0x8082B550; // type:object size:0x8 +lbl_8082B558 = .data:0x8082B558; // type:object size:0x18 +__RTTI__4User = .data:0x8082B570; // type:object size:0x8 +@STRING@Register__12DataArrayMsgFv = .data:0x8082B578; // type:object size:0x10 +@STRING@Register__12VoiceDataMsgFv = .data:0x8082B588; // type:object size:0x10 +@STRING@StaticByteCode__12VoiceDataMsgFv = .data:0x8082B598; // type:object size:0x10 +@STRING@Register__10EndGameMsgFv = .data:0x8082B5A8; // type:object size:0xC +@STRING@StaticByteCode__10EndGameMsgFv = .data:0x8082B5B4; // type:object size:0xC +@STRING@Register__18StartGameOnTimeMsgFv = .data:0x8082B5C0; // type:object size:0x14 +@STRING@StaticByteCode__18StartGameOnTimeMsgFv = .data:0x8082B5D4; // type:object size:0x14 +@STRING@Register__22FinishedArbitrationMsgFv = .data:0x8082B5E8; // type:object size:0x18 +@STRING@StaticByteCode__22FinishedArbitrationMsgFv = .data:0x8082B600; // type:object size:0x18 +@STRING@Register__19BeginArbitrationMsgFv = .data:0x8082B618; // type:object size:0x14 data:string +@STRING@StaticByteCode__19BeginArbitrationMsgFv = .data:0x8082B62C; // type:object size:0x14 data:string +lbl_8082B640 = .data:0x8082B640; // type:object size:0x14 data:string +@STRING@Register__17UpdateUserDataMsgFv = .data:0x8082B654; // type:object size:0x14 +@STRING@StaticByteCode__17UpdateUserDataMsgFv = .data:0x8082B668; // type:object size:0x14 +@STRING@Register__18AddUserResponseMsgFv = .data:0x8082B67C; // type:object size:0x14 +@STRING@StaticByteCode__18AddUserResponseMsgFv = .data:0x8082B690; // type:object size:0x14 +@STRING@Register__17AddUserRequestMsgFv = .data:0x8082B6A4; // type:object size:0x14 +@STRING@StaticByteCode__17AddUserRequestMsgFv = .data:0x8082B6B8; // type:object size:0x14 +@STRING@Register__11UserLeftMsgFv = .data:0x8082B6CC; // type:object size:0xC data:string +@STRING@StaticByteCode__11UserLeftMsgFv = .data:0x8082B6D8; // type:object size:0xC data:string +@STRING@Register__10NewUserMsgFv = .data:0x8082B6E4; // type:object size:0xC +@STRING@StaticByteCode__10NewUserMsgFv = .data:0x8082B6F0; // type:object size:0x10 +@STRING@Register__15JoinResponseMsgFv = .data:0x8082B700; // type:object size:0x10 data:string +@STRING@StaticByteCode__15JoinResponseMsgFv = .data:0x8082B710; // type:object size:0x10 data:string +@STRING@Register__14JoinRequestMsgFv = .data:0x8082B720; // type:object size:0x10 +@STRING@StaticByteCode__14JoinRequestMsgFv = .data:0x8082B730; // type:object size:0x10 +lbl_8082B740 = .data:0x8082B740; // type:object size:0x10 +lbl_8082B750 = .data:0x8082B750; // type:object size:0x10 data:string +lbl_8082B760 = .data:0x8082B760; // type:object size:0x14 data:string +lbl_8082B774 = .data:0x8082B774; // type:object size:0x14 +lbl_8082B788 = .data:0x8082B788; // type:object size:0x18 +lbl_8082B7A0 = .data:0x8082B7A0; // type:object size:0x10 data:string +lbl_8082B7B0 = .data:0x8082B7B0; // type:object size:0x10 data:string +lbl_8082B7C0 = .data:0x8082B7C0; // type:object size:0x10 data:string +lbl_8082B7D0 = .data:0x8082B7D0; // type:object size:0xC data:string +lbl_8082B7DC = .data:0x8082B7DC; // type:object size:0x18 +lbl_8082B7F4 = .data:0x8082B7F4; // type:object size:0x18 +lbl_8082B80C = .data:0x8082B80C; // type:object size:0x10 +lbl_8082B81C = .data:0x8082B81C; // type:object size:0x10 +lbl_8082B82C = .data:0x8082B82C; // type:object size:0xC +lbl_8082B838 = .data:0x8082B838; // type:object size:0x8 +lbl_8082B840 = .data:0x8082B840; // type:object size:0x8 data:string +lbl_8082B848 = .data:0x8082B848; // type:object size:0x48 +lbl_8082B890 = .data:0x8082B890; // type:object size:0x2C +jumptable_8082B8BC = .data:0x8082B8BC; // type:object size:0x2C scope:local +lbl_8082B8E8 = .data:0x8082B8E8; // type:object size:0x28 +lbl_8082B910 = .data:0x8082B910; // type:object size:0x1C +lbl_8082B92C = .data:0x8082B92C; // type:object size:0x24 +lbl_8082B950 = .data:0x8082B950; // type:object size:0x8 +lbl_8082B958 = .data:0x8082B958; // type:object size:0x20 +lbl_8082B978 = .data:0x8082B978; // type:object size:0x20 +lbl_8082B998 = .data:0x8082B998; // type:object size:0x8 +__vt__13RVSessionData = .data:0x8082B9A0; // type:object size:0x1C +lbl_8082B9BC = .data:0x8082B9BC; // type:object size:0x10 +lbl_8082B9CC = .data:0x8082B9CC; // type:object size:0xC +__RTTI__13RVSessionData = .data:0x8082B9D8; // type:object size:0x8 +__vt__9RVSession = .data:0x8082B9E0; // type:object size:0xC8 +lbl_8082BAA8 = .data:0x8082BAA8; // type:object size:0xC +lbl_8082BAB4 = .data:0x8082BAB4; // type:object size:0x24 +__RTTI__9RVSession = .data:0x8082BAD8; // type:object size:0x8 +__vt__11SessionData = .data:0x8082BAE0; // type:object size:0x1C +lbl_8082BAFC = .data:0x8082BAFC; // type:object size:0xC data:string +__RTTI__11SessionData = .data:0x8082BB08; // type:object size:0x8 +__vt__16SigninChangedMsg = .data:0x8082BB10; // type:object size:0xC +lbl_8082BB1C = .data:0x8082BB1C; // type:object size:0x14 +lbl_8082BB30 = .data:0x8082BB30; // type:object size:0x10 +__RTTI__16SigninChangedMsg = .data:0x8082BB40; // type:object size:0x8 +@STRING@Type__16SigninChangedMsgFv = .data:0x8082BB48; // type:object size:0x10 +lbl_8082BB58 = .data:0x8082BB58; // type:object size:0x8 +__vt__15NetworkEmulator = .data:0x8082BB60; // type:object size:0x60 +lbl_8082BBC0 = .data:0x8082BBC0; // type:object size:0x10 data:string +lbl_8082BBD0 = .data:0x8082BBD0; // type:object size:0x18 +__RTTI__15NetworkEmulator = .data:0x8082BBE8; // type:object size:0x8 +lbl_8082BBF0 = .data:0x8082BBF0; // type:object size:0x30 +__vt__6Server = .data:0x8082BC20; // type:object size:0xD0 +lbl_8082BCF0 = .data:0x8082BCF0; // type:object size:0x8 +lbl_8082BCF8 = .data:0x8082BCF8; // type:object size:0x20 +__RTTI__6Server = .data:0x8082BD18; // type:object size:0x8 +lbl_8082BD20 = .data:0x8082BD20; // type:object size:0x28 +__vt__15SessionSearcher = .data:0x8082BD48; // type:object size:0x98 +lbl_8082BDE0 = .data:0x8082BDE0; // type:object size:0x10 data:string +lbl_8082BDF0 = .data:0x8082BDF0; // type:object size:0x20 +__RTTI__15SessionSearcher = .data:0x8082BE10; // type:object size:0x8 +__vt__17InviteAcceptedMsg = .data:0x8082BE18; // type:object size:0xC +lbl_8082BE24 = .data:0x8082BE24; // type:object size:0x14 +lbl_8082BE38 = .data:0x8082BE38; // type:object size:0x10 +__RTTI__17InviteAcceptedMsg = .data:0x8082BE48; // type:object size:0x8 +lbl_8082BE50 = .data:0x8082BE50; // type:object size:0x10 data:string +lbl_8082BE60 = .data:0x8082BE60; // type:object size:0x18 +__vt__17RVSessionSearcher = .data:0x8082BE78; // type:object size:0x94 +lbl_8082BF0C = .data:0x8082BF0C; // type:object size:0x14 +lbl_8082BF20 = .data:0x8082BF20; // type:object size:0x28 +__RTTI__17RVSessionSearcher = .data:0x8082BF48; // type:object size:0x8 +__vt__12DataArrayMsg = .data:0x8082BF50; // type:object size:0x28 +lbl_8082BF78 = .data:0x8082BF78; // type:object size:0x10 +lbl_8082BF88 = .data:0x8082BF88; // type:object size:0x10 +__RTTI__12DataArrayMsg = .data:0x8082BF98; // type:object size:0x8 +__vt__12VoiceDataMsg = .data:0x8082BFA0; // type:object size:0x28 +__vt__10EndGameMsg = .data:0x8082BFC8; // type:object size:0x28 +__vt__18StartGameOnTimeMsg = .data:0x8082BFF0; // type:object size:0x28 +__vt__22FinishedArbitrationMsg = .data:0x8082C018; // type:object size:0x28 +__vt__17UpdateUserDataMsg = .data:0x8082C040; // type:object size:0x28 +__vt__18AddUserResponseMsg = .data:0x8082C068; // type:object size:0x28 +__vt__17AddUserRequestMsg = .data:0x8082C090; // type:object size:0x28 +__vt__11UserLeftMsg = .data:0x8082C0B8; // type:object size:0x28 +__vt__10NewUserMsg = .data:0x8082C0E0; // type:object size:0x28 +__vt__15JoinResponseMsg = .data:0x8082C108; // type:object size:0x28 +__vt__14JoinRequestMsg = .data:0x8082C130; // type:object size:0x28 +__vt__10SessionMsg = .data:0x8082C158; // type:object size:0x28 +@STRING@StaticByteCode__12DataArrayMsgFv = .data:0x8082C180; // type:object size:0x10 +lbl_8082C190 = .data:0x8082C190; // type:object size:0x10 +lbl_8082C1A0 = .data:0x8082C1A0; // type:object size:0x10 +lbl_8082C1B0 = .data:0x8082C1B0; // type:object size:0xC +lbl_8082C1BC = .data:0x8082C1BC; // type:object size:0x14 +lbl_8082C1D0 = .data:0x8082C1D0; // type:object size:0x18 +lbl_8082C1E8 = .data:0x8082C1E8; // type:object size:0x14 +lbl_8082C1FC = .data:0x8082C1FC; // type:object size:0x14 +lbl_8082C210 = .data:0x8082C210; // type:object size:0x14 +lbl_8082C224 = .data:0x8082C224; // type:object size:0xC data:string +lbl_8082C230 = .data:0x8082C230; // type:object size:0x10 +lbl_8082C240 = .data:0x8082C240; // type:object size:0x10 data:string +lbl_8082C250 = .data:0x8082C250; // type:object size:0x10 +lbl_8082C260 = .data:0x8082C260; // type:object size:0x48 +__vt__14Synchronizable = .data:0x8082C2A8; // type:object size:0x20 +lbl_8082C2C8 = .data:0x8082C2C8; // type:object size:0x30 +__vt__10SyncAllMsg = .data:0x8082C2F8; // type:object size:0x28 +lbl_8082C320 = .data:0x8082C320; // type:object size:0xC +lbl_8082C32C = .data:0x8082C32C; // type:object size:0xC +__RTTI__10SyncAllMsg = .data:0x8082C338; // type:object size:0x8 +__vt__11SyncUserMsg = .data:0x8082C340; // type:object size:0x28 +lbl_8082C368 = .data:0x8082C368; // type:object size:0xC data:string +lbl_8082C374 = .data:0x8082C374; // type:object size:0xC +__RTTI__11SyncUserMsg = .data:0x8082C380; // type:object size:0x8 +__vt__10SyncObjMsg = .data:0x8082C388; // type:object size:0x28 +lbl_8082C3B0 = .data:0x8082C3B0; // type:object size:0xC +lbl_8082C3BC = .data:0x8082C3BC; // type:object size:0xC +__RTTI__10SyncObjMsg = .data:0x8082C3C8; // type:object size:0x8 +@STRING@Register__10SyncAllMsgFv = .data:0x8082C3D0; // type:object size:0xC +@STRING@StaticByteCode__10SyncAllMsgFv = .data:0x8082C3DC; // type:object size:0xC +lbl_8082C3E8 = .data:0x8082C3E8; // type:object size:0xC +@STRING@Register__11SyncUserMsgFv = .data:0x8082C3F4; // type:object size:0xC data:string +@STRING@StaticByteCode__11SyncUserMsgFv = .data:0x8082C400; // type:object size:0xC data:string +lbl_8082C40C = .data:0x8082C40C; // type:object size:0xC data:string +@STRING@Register__10SyncObjMsgFv = .data:0x8082C418; // type:object size:0xC +@STRING@StaticByteCode__10SyncObjMsgFv = .data:0x8082C424; // type:object size:0xC +lbl_8082C430 = .data:0x8082C430; // type:object size:0xC +lbl_8082C43C = .data:0x8082C43C; // type:object size:0xA4 +__vt__12NetZCallback = .data:0x8082C4E0; // type:object size:0x10 +lbl_8082C4F0 = .data:0x8082C4F0; // type:object size:0x10 +lbl_8082C500 = .data:0x8082C500; // type:object size:0x18 +__RTTI__12NetZCallback = .data:0x8082C518; // type:object size:0x8 +__vt__20MakeQuazalSessionJob = .data:0x8082C520; // type:object size:0x1C +lbl_8082C53C = .data:0x8082C53C; // type:object size:0x18 +lbl_8082C554 = .data:0x8082C554; // type:object size:0xC +__RTTI__20MakeQuazalSessionJob = .data:0x8082C560; // type:object size:0x8 +lbl_8082C568 = .data:0x8082C568; // type:object size:0x24 +lbl_8082C58C = .data:0x8082C58C; // type:object size:0x2C +lbl_8082C5B8 = .data:0x8082C5B8; // type:object size:0x18 +lbl_8082C5D0 = .data:0x8082C5D0; // type:object size:0x8 +lbl_8082C5D8 = .data:0x8082C5D8; // type:object size:0xC +lbl_8082C5E4 = .data:0x8082C5E4; // type:object size:0x1C +__RTTI__10RemoteUser = .data:0x8082C600; // type:object size:0x8 +__vt__12VoiceChatMgr = .data:0x8082C608; // type:object size:0x80 +lbl_8082C688 = .data:0x8082C688; // type:object size:0x10 +lbl_8082C698 = .data:0x8082C698; // type:object size:0x20 +__RTTI__12VoiceChatMgr = .data:0x8082C6B8; // type:object size:0x8 +lbl_8082C6C0 = .data:0x8082C6C0; // type:object size:0x18 +lbl_8082C6D8 = .data:0x8082C6D8; // type:object size:0x4 +__vt__Q26Quazal23CustomMatchMakingClient = .data:0x8082C6DC; // type:object size:0x64 +lbl_8082C740 = .data:0x8082C740; // type:object size:0x20 data:string +lbl_8082C760 = .data:0x8082C760; // type:object size:0x30 +__RTTI__Q26Quazal23CustomMatchMakingClient = .data:0x8082C790; // type:object size:0x8 +__vt__Q26Quazal27HarmonixGameDDLDeclarations = .data:0x8082C798; // type:object size:0x10 +lbl_8082C7A8 = .data:0x8082C7A8; // type:object size:0x24 data:string +lbl_8082C7CC = .data:0x8082C7CC; // type:object size:0x14 +__RTTI__Q26Quazal27HarmonixGameDDLDeclarations = .data:0x8082C7E0; // type:object size:0x8 +lbl_8082C7E8 = .data:0x8082C7E8; // type:object size:0x28 +lbl_8082C810 = .data:0x8082C810; // type:object size:0x30 +lbl_8082C840 = .data:0x8082C840; // type:object size:0x8 +lbl_8082C848 = .data:0x8082C848; // type:object size:0x68 +lbl_8082C8B0 = .data:0x8082C8B0; // type:object size:0x1C +lbl_8082C8CC = .data:0x8082C8CC; // type:object size:0x2C +lbl_8082C8F8 = .data:0x8082C8F8; // type:object size:0x8 +lbl_8082C900 = .data:0x8082C900; // type:object size:0x68 +lbl_8082C968 = .data:0x8082C968; // type:object size:0x48 data:string +lbl_8082C9B0 = .data:0x8082C9B0; // type:object size:0x28 +lbl_8082C9D8 = .data:0x8082C9D8; // type:object size:0x8 +__vt__Q26Quazal17_DO_MessageBroker = .data:0x8082C9E0; // type:object size:0x50 +lbl_8082CA30 = .data:0x8082CA30; // type:object size:0x38 +lbl_8082CA68 = .data:0x8082CA68; // type:object size:0x8 data:4byte +__vt__9WiiServer = .data:0x8082CA70; // type:object size:0xD0 +lbl_8082CB40 = .data:0x8082CB40; // type:object size:0xC +lbl_8082CB4C = .data:0x8082CB4C; // type:object size:0x24 +__RTTI__9WiiServer = .data:0x8082CB70; // type:object size:0x8 +__vt__15NamingResultMsg = .data:0x8082CB78; // type:object size:0x10 +lbl_8082CB88 = .data:0x8082CB88; // type:object size:0x10 data:string +lbl_8082CB98 = .data:0x8082CB98; // type:object size:0x10 +__RTTI__15NamingResultMsg = .data:0x8082CBA8; // type:object size:0x8 +__vt__17UserRegisteredMsg = .data:0x8082CBB0; // type:object size:0xC +lbl_8082CBBC = .data:0x8082CBBC; // type:object size:0x14 +lbl_8082CBD0 = .data:0x8082CBD0; // type:object size:0x10 +__RTTI__17UserRegisteredMsg = .data:0x8082CBE0; // type:object size:0x8 +__vt__21DWCProfanityResultMsg = .data:0x8082CBE8; // type:object size:0xC +lbl_8082CBF4 = .data:0x8082CBF4; // type:object size:0x18 +lbl_8082CC0C = .data:0x8082CC0C; // type:object size:0xC +__RTTI__21DWCProfanityResultMsg = .data:0x8082CC18; // type:object size:0x8 +__vt__23UserNameNewlyProfaneMsg = .data:0x8082CC20; // type:object size:0x10 +lbl_8082CC30 = .data:0x8082CC30; // type:object size:0x18 data:string +lbl_8082CC48 = .data:0x8082CC48; // type:object size:0x10 +lbl_8082CC58 = .data:0x8082CC58; // type:object size:0x8 +__vt__21DeleteUserCompleteMsg = .data:0x8082CC60; // type:object size:0xC +lbl_8082CC6C = .data:0x8082CC6C; // type:object size:0x18 +lbl_8082CC84 = .data:0x8082CC84; // type:object size:0xC +lbl_8082CC90 = .data:0x8082CC90; // type:object size:0x8 +__vt__12UserLoginMsg = .data:0x8082CC98; // type:object size:0xC +lbl_8082CCA4 = .data:0x8082CCA4; // type:object size:0x10 +lbl_8082CCB4 = .data:0x8082CCB4; // type:object size:0xC +__RTTI__12UserLoginMsg = .data:0x8082CCC0; // type:object size:0x8 +__vt__22ServerStatusChangedMsg = .data:0x8082CCC8; // type:object size:0xC +lbl_8082CCD4 = .data:0x8082CCD4; // type:object size:0x18 +lbl_8082CCEC = .data:0x8082CCEC; // type:object size:0xC +__RTTI__22ServerStatusChangedMsg = .data:0x8082CCF8; // type:object size:0x8 +@STRING@Type__15NamingResultMsgFv = .data:0x8082CD00; // type:object size:0x18 +lbl_8082CD18 = .data:0x8082CD18; // type:object size:0x10 data:string +@STRING@Type__21DWCProfanityResultMsgFv = .data:0x8082CD28; // type:object size:0x20 +@STRING@Type__23UserNameNewlyProfaneMsgFv = .data:0x8082CD48; // type:object size:0x18 data:string +@STRING@Type__21DeleteUserCompleteMsgFv = .data:0x8082CD60; // type:object size:0x18 +@STRING@Type__12UserLoginMsgFv = .data:0x8082CD78; // type:object size:0xC +@STRING@Type__22ServerStatusChangedMsgFv = .data:0x8082CD84; // type:object size:0x18 +lbl_8082CD9C = .data:0x8082CD9C; // type:object size:0x3C +lbl_8082CDD8 = .data:0x8082CDD8; // type:object size:0xC data:4byte +jumptable_8082CDE4 = .data:0x8082CDE4; // type:object size:0xC8 scope:local +__vt__12WiiFriendMgr = .data:0x8082CEB0; // type:object size:0x80 +lbl_8082CF30 = .data:0x8082CF30; // type:object size:0x10 +lbl_8082CF40 = .data:0x8082CF40; // type:object size:0x20 +__RTTI__12WiiFriendMgr = .data:0x8082CF60; // type:object size:0x8 +__vt__24WiiFriendsListChangedMsg = .data:0x8082CF68; // type:object size:0xC +lbl_8082CF74 = .data:0x8082CF74; // type:object size:0x1C +lbl_8082CF90 = .data:0x8082CF90; // type:object size:0x10 +__RTTI__24WiiFriendsListChangedMsg = .data:0x8082CFA0; // type:object size:0x8 +__vt__25WiiFriendMgrOpCompleteMsg = .data:0x8082CFA8; // type:object size:0xC +lbl_8082CFB4 = .data:0x8082CFB4; // type:object size:0x1C +lbl_8082CFD0 = .data:0x8082CFD0; // type:object size:0x10 +__RTTI__25WiiFriendMgrOpCompleteMsg = .data:0x8082CFE0; // type:object size:0x8 +lbl_8082CFE8 = .data:0x8082CFE8; // type:object size:0x28 +lbl_8082D010 = .data:0x8082D010; // type:object size:0x1C +lbl_8082D02C = .data:0x8082D02C; // type:object size:0x1C +lbl_8082D048 = .data:0x8082D048; // type:object size:0x38 +lbl_8082D080 = .data:0x8082D080; // type:object size:0xBC +lbl_8082D13C = .data:0x8082D13C; // type:object size:0xC data:4byte +lbl_8082D148 = .data:0x8082D148; // type:object size:0xC data:4byte +lbl_8082D154 = .data:0x8082D154; // type:object size:0xC data:4byte +lbl_8082D160 = .data:0x8082D160; // type:object size:0xC data:4byte +lbl_8082D16C = .data:0x8082D16C; // type:object size:0x3C data:4byte +lbl_8082D1A8 = .data:0x8082D1A8; // type:object size:0xC data:4byte +lbl_8082D1B4 = .data:0x8082D1B4; // type:object size:0xC data:4byte +lbl_8082D1C0 = .data:0x8082D1C0; // type:object size:0xC data:4byte +lbl_8082D1CC = .data:0x8082D1CC; // type:object size:0xC data:4byte +lbl_8082D1D8 = .data:0x8082D1D8; // type:object size:0xC data:4byte +lbl_8082D1E4 = .data:0x8082D1E4; // type:object size:0xC data:4byte +lbl_8082D1F0 = .data:0x8082D1F0; // type:object size:0xC data:4byte +lbl_8082D1FC = .data:0x8082D1FC; // type:object size:0xC data:4byte +lbl_8082D208 = .data:0x8082D208; // type:object size:0xC data:4byte +lbl_8082D214 = .data:0x8082D214; // type:object size:0xC data:4byte +lbl_8082D220 = .data:0x8082D220; // type:object size:0xC data:4byte +lbl_8082D22C = .data:0x8082D22C; // type:object size:0xC data:4byte +lbl_8082D238 = .data:0x8082D238; // type:object size:0xC data:4byte +lbl_8082D244 = .data:0x8082D244; // type:object size:0xC data:4byte +lbl_8082D250 = .data:0x8082D250; // type:object size:0xC data:4byte +lbl_8082D25C = .data:0x8082D25C; // type:object size:0xC data:4byte +lbl_8082D268 = .data:0x8082D268; // type:object size:0xC data:4byte +lbl_8082D274 = .data:0x8082D274; // type:object size:0xC data:4byte +lbl_8082D280 = .data:0x8082D280; // type:object size:0xC data:4byte +lbl_8082D28C = .data:0x8082D28C; // type:object size:0x54 data:4byte +lbl_8082D2E0 = .data:0x8082D2E0; // type:object size:0xC data:4byte +lbl_8082D2EC = .data:0x8082D2EC; // type:object size:0xC data:4byte +lbl_8082D2F8 = .data:0x8082D2F8; // type:object size:0xC data:4byte +lbl_8082D304 = .data:0x8082D304; // type:object size:0x34 +lbl_8082D338 = .data:0x8082D338; // type:object size:0x14 +lbl_8082D34C = .data:0x8082D34C; // type:object size:0x24 +lbl_8082D370 = .data:0x8082D370; // type:object size:0x8 +__vt__16JobCreateProfile = .data:0x8082D378; // type:object size:0x94 +lbl_8082D40C = .data:0x8082D40C; // type:object size:0x14 +lbl_8082D420 = .data:0x8082D420; // type:object size:0x38 +__RTTI__16JobCreateProfile = .data:0x8082D458; // type:object size:0x8 +lbl_8082D460 = .data:0x8082D460; // type:object size:0x34 +lbl_8082D494 = .data:0x8082D494; // type:object size:0x18 +lbl_8082D4AC = .data:0x8082D4AC; // type:object size:0x24 +lbl_8082D4D0 = .data:0x8082D4D0; // type:object size:0x8 +lbl_8082D4D8 = .data:0x8082D4D8; // type:object size:0x34 +lbl_8082D50C = .data:0x8082D50C; // type:object size:0x10 +lbl_8082D51C = .data:0x8082D51C; // type:object size:0x24 +lbl_8082D540 = .data:0x8082D540; // type:object size:0x8 +lbl_8082D548 = .data:0x8082D548; // type:object size:0x34 +lbl_8082D57C = .data:0x8082D57C; // type:object size:0x14 data:string +lbl_8082D590 = .data:0x8082D590; // type:object size:0x28 +lbl_8082D5B8 = .data:0x8082D5B8; // type:object size:0x8 +__vt__25JobDeleteOrphanedProfiles = .data:0x8082D5C0; // type:object size:0x34 +lbl_8082D5F4 = .data:0x8082D5F4; // type:object size:0x1C +lbl_8082D610 = .data:0x8082D610; // type:object size:0x28 +__RTTI__25JobDeleteOrphanedProfiles = .data:0x8082D638; // type:object size:0x8 +lbl_8082D640 = .data:0x8082D640; // type:object size:0xC +lbl_8082D64C = .data:0x8082D64C; // type:object size:0x30 +lbl_8082D67C = .data:0x8082D67C; // type:object size:0x14 +lbl_8082D690 = .data:0x8082D690; // type:object size:0x4E0 +lbl_8082DB70 = .data:0x8082DB70; // type:object size:0x488 +__vt__12WiiMessenger = .data:0x8082DFF8; // type:object size:0x80 +lbl_8082E078 = .data:0x8082E078; // type:object size:0x10 +lbl_8082E088 = .data:0x8082E088; // type:object size:0x20 +__RTTI__12WiiMessenger = .data:0x8082E0A8; // type:object size:0x8 +lbl_8082E0B0 = .data:0x8082E0B0; // type:object size:0xC +lbl_8082E0BC = .data:0x8082E0BC; // type:object size:0x1C +lbl_8082E0D8 = .data:0x8082E0D8; // type:object size:0x10 +lbl_8082E0E8 = .data:0x8082E0E8; // type:object size:0x8 +lbl_8082E0F0 = .data:0x8082E0F0; // type:object size:0xC +lbl_8082E0FC = .data:0x8082E0FC; // type:object size:0x18 +lbl_8082E114 = .data:0x8082E114; // type:object size:0xC +lbl_8082E120 = .data:0x8082E120; // type:object size:0x8 +__vt__28EnumerateMessagesCompleteMsg = .data:0x8082E128; // type:object size:0xC +lbl_8082E134 = .data:0x8082E134; // type:object size:0x20 +lbl_8082E154 = .data:0x8082E154; // type:object size:0xC +__RTTI__28EnumerateMessagesCompleteMsg = .data:0x8082E160; // type:object size:0x8 +lbl_8082E168 = .data:0x8082E168; // type:object size:0x1C +lbl_8082E184 = .data:0x8082E184; // type:object size:0x18 +lbl_8082E19C = .data:0x8082E19C; // type:object size:0x1C data:string +lbl_8082E1B8 = .data:0x8082E1B8; // type:object size:0x18 +json_number_chars = .data:0x8082E1D0; // type:object size:0x4 data:4byte +json_hex_chars = .data:0x8082E1D4; // type:object size:0x4 data:4byte +@stringBase0 = .data:0x8082E1D8; // type:object size:0x70 scope:local data:string_table +json_null_str = .data:0x8082E248; // type:object size:0x4 data:4byte +json_true_str = .data:0x8082E24C; // type:object size:0x4 data:4byte +json_false_str = .data:0x8082E250; // type:object size:0x4 data:4byte +json_tokener_errors = .data:0x8082E258; // type:object size:0x38 +jumptable_8082E290 = .data:0x8082E290; // type:object size:0x168 scope:local +jumptable_8082E3F8 = .data:0x8082E3F8; // type:object size:0x58 scope:local +@stringBase0 = .data:0x8082E450; // type:object size:0x15C scope:local data:string_table +@stringBase0 = .data:0x8082E5B0; // type:object size:0x1D scope:local data:string_table +lbl_8082E5D0 = .data:0x8082E5D0; // type:object size:0x4 data:float +lbl_8082E5D4 = .data:0x8082E5D4; // type:object size:0x4 +lbl_8082E5D8 = .data:0x8082E5D8; // type:object size:0x80 +lbl_8082E658 = .data:0x8082E658; // type:object size:0x4 data:4byte +lbl_8082E65C = .data:0x8082E65C; // type:object size:0x4 +lbl_8082E660 = .data:0x8082E660; // type:object size:0x4 +lbl_8082E664 = .data:0x8082E664; // type:object size:0x4 +lbl_8082E668 = .data:0x8082E668; // type:object size:0xC data:string +lbl_8082E674 = .data:0x8082E674; // type:object size:0x24 +__RTTI__11TrackWidget = .data:0x8082E698; // type:object size:0x8 +lbl_8082E6A0 = .data:0x8082E6A0; // type:object size:0xC +lbl_8082E6AC = .data:0x8082E6AC; // type:object size:0x34 +__RTTI__8RndGroup = .data:0x8082E6E0; // type:object size:0x8 +lbl_8082E6E8 = .data:0x8082E6E8; // type:object size:0x130 +lbl_8082E818 = .data:0x8082E818; // type:object size:0x8 data:string +lbl_8082E820 = .data:0x8082E820; // type:object size:0x30 +__RTTI__7RndMesh = .data:0x8082E850; // type:object size:0x8 +lbl_8082E858 = .data:0x8082E858; // type:object size:0x8 +lbl_8082E860 = .data:0x8082E860; // type:object size:0x18 +__RTTI__6RndMat = .data:0x8082E878; // type:object size:0x8 +lbl_8082E880 = .data:0x8082E880; // type:object size:0x8 +lbl_8082E888 = .data:0x8082E888; // type:object size:0x130 +lbl_8082E9B8 = .data:0x8082E9B8; // type:object size:0x10 +lbl_8082E9C8 = .data:0x8082E9C8; // type:object size:0x20 +__RTTI__12EventTrigger = .data:0x8082E9E8; // type:object size:0x8 +lbl_8082E9F0 = .data:0x8082E9F0; // type:object size:0x1C0 +lbl_8082EBB0 = .data:0x8082EBB0; // type:object size:0x4 +lbl_8082EBB4 = .data:0x8082EBB4; // type:object size:0x4 data:4byte +lbl_8082EBB8 = .data:0x8082EBB8; // type:object size:0x4 +__vt__8GemTrack = .data:0x8082EBBC; // type:object size:0x18C +lbl_8082ED48 = .data:0x8082ED48; // type:object size:0xC +lbl_8082ED54 = .data:0x8082ED54; // type:object size:0x24 +__RTTI__8GemTrack = .data:0x8082ED78; // type:object size:0x8 +lbl_8082ED80 = .data:0x8082ED80; // type:object size:0x18 +lbl_8082ED98 = .data:0x8082ED98; // type:object size:0x20 +lbl_8082EDB8 = .data:0x8082EDB8; // type:object size:0x10 +lbl_8082EDC8 = .data:0x8082EDC8; // type:object size:0x8 +lbl_8082EDD0 = .data:0x8082EDD0; // type:object size:0xC data:string +lbl_8082EDDC = .data:0x8082EDDC; // type:object size:0x6C +__RTTI__11GemTrackDir = .data:0x8082EE48; // type:object size:0x8 +lbl_8082EE50 = .data:0x8082EE50; // type:object size:0xC +lbl_8082EE5C = .data:0x8082EE5C; // type:object size:0x14 +__RTTI__9BandTrack = .data:0x8082EE70; // type:object size:0x8 +lbl_8082EE78 = .data:0x8082EE78; // type:object size:0xC data:string +lbl_8082EE84 = .data:0x8082EE84; // type:object size:0x1C +__RTTI__11RndPropAnim = .data:0x8082EEA0; // type:object size:0x8 +lbl_8082EEA8 = .data:0x8082EEA8; // type:object size:0x8 +lbl_8082EEB0 = .data:0x8082EEB0; // type:object size:0x20 +__RTTI__5Track = .data:0x8082EED0; // type:object size:0x8 +lbl_8082EED8 = .data:0x8082EED8; // type:object size:0x10 +lbl_8082EEE8 = .data:0x8082EEE8; // type:object size:0x18 +__RTTI__14TrackInterface = .data:0x8082EF00; // type:object size:0x8 +lbl_8082EF08 = .data:0x8082EF08; // type:object size:0xC +lbl_8082EF14 = .data:0x8082EF14; // type:object size:0x5C +__RTTI__8TrackDir = .data:0x8082EF70; // type:object size:0x8 +lbl_8082EF78 = .data:0x8082EF78; // type:object size:0xC +lbl_8082EF84 = .data:0x8082EF84; // type:object size:0x54 +__RTTI__8PanelDir = .data:0x8082EFD8; // type:object size:0x8 +lbl_8082EFE0 = .data:0x8082EFE0; // type:object size:0x18 +lbl_8082EFF8 = .data:0x8082EFF8; // type:object size:0x1C data:string +lbl_8082F014 = .data:0x8082F014; // type:object size:0xC +lbl_8082F020 = .data:0x8082F020; // type:object size:0x8 +lbl_8082F028 = .data:0x8082F028; // type:object size:0x18 +lbl_8082F040 = .data:0x8082F040; // type:object size:0x24 +lbl_8082F064 = .data:0x8082F064; // type:object size:0xC +lbl_8082F070 = .data:0x8082F070; // type:object size:0x8 +lbl_8082F078 = .data:0x8082F078; // type:object size:0xC +lbl_8082F084 = .data:0x8082F084; // type:object size:0x34 +__RTTI__6Stream = .data:0x8082F0B8; // type:object size:0x8 +lbl_8082F0C0 = .data:0x8082F0C0; // type:object size:0x10 +__RTTI__13BeatMatchSink = .data:0x8082F0D0; // type:object size:0x8 +lbl_8082F0D8 = .data:0x8082F0D8; // type:object size:0x8 +lbl_8082F0E0 = .data:0x8082F0E0; // type:object size:0x28 +__RTTI__6Player = .data:0x8082F108; // type:object size:0x8 +lbl_8082F110 = .data:0x8082F110; // type:object size:0xC +lbl_8082F11C = .data:0x8082F11C; // type:object size:0x14 +__RTTI__9Performer = .data:0x8082F130; // type:object size:0x8 +lbl_8082F138 = .data:0x8082F138; // type:object size:0x8 +lbl_8082F140 = .data:0x8082F140; // type:object size:0x18 +__RTTI__4Task = .data:0x8082F158; // type:object size:0x8 +lbl_8082F160 = .data:0x8082F160; // type:object size:0x180 +lbl_8082F2E0 = .data:0x8082F2E0; // type:object size:0x4 data:4byte +lbl_8082F2E4 = .data:0x8082F2E4; // type:object size:0x4 data:4byte +__vt__5Lyric = .data:0x8082F2E8; // type:object size:0x5C +lbl_8082F344 = .data:0x8082F344; // type:object size:0x8 +lbl_8082F34C = .data:0x8082F34C; // type:object size:0x14 +__RTTI__5Lyric = .data:0x8082F360; // type:object size:0x8 +__vt__10LyricPlate = .data:0x8082F368; // type:object size:0x5C +lbl_8082F3C4 = .data:0x8082F3C4; // type:object size:0xC +lbl_8082F3D0 = .data:0x8082F3D0; // type:object size:0x18 +__RTTI__10LyricPlate = .data:0x8082F3E8; // type:object size:0x8 +lbl_8082F3F0 = .data:0x8082F3F0; // type:object size:0x28 +lbl_8082F418 = .data:0x8082F418; // type:object size:0x18 +lbl_8082F430 = .data:0x8082F430; // type:object size:0x8 data:float +lbl_8082F438 = .data:0x8082F438; // type:object size:0x18 +lbl_8082F450 = .data:0x8082F450; // type:object size:0x20 +lbl_8082F470 = .data:0x8082F470; // type:object size:0x10 +lbl_8082F480 = .data:0x8082F480; // type:object size:0x8 +lbl_8082F488 = .data:0x8082F488; // type:object size:0x18 +lbl_8082F4A0 = .data:0x8082F4A0; // type:object size:0x20 +lbl_8082F4C0 = .data:0x8082F4C0; // type:object size:0x10 +lbl_8082F4D0 = .data:0x8082F4D0; // type:object size:0x8 +lbl_8082F4D8 = .data:0x8082F4D8; // type:object size:0x18 +lbl_8082F4F0 = .data:0x8082F4F0; // type:object size:0x24 +lbl_8082F514 = .data:0x8082F514; // type:object size:0xC +lbl_8082F520 = .data:0x8082F520; // type:object size:0x8 +__vt__4Tail = .data:0x8082F528; // type:object size:0xC +lbl_8082F534 = .data:0x8082F534; // type:object size:0xC +__RTTI__4Tail = .data:0x8082F540; // type:object size:0x8 +lbl_8082F548 = .data:0x8082F548; // type:object size:0xC +lbl_8082F554 = .data:0x8082F554; // type:object size:0x14 +__RTTI__10RndEnviron = .data:0x8082F568; // type:object size:0x8 +lbl_8082F570 = .data:0x8082F570; // type:object size:0x8 +lbl_8082F578 = .data:0x8082F578; // type:object size:0x20 +__vt__5Track = .data:0x8082F598; // type:object size:0x188 +lbl_8082F720 = .data:0x8082F720; // type:object size:0xC +lbl_8082F72C = .data:0x8082F72C; // type:object size:0x54 +__RTTI__8AppLabel = .data:0x8082F780; // type:object size:0x8 +__vt__14TrackInterface = .data:0x8082F788; // type:object size:0x144 +lbl_8082F8CC = .data:0x8082F8CC; // type:object size:0xC +lbl_8082F8D8 = .data:0x8082F8D8; // type:object size:0x50 +__RTTI__9BandLabel = .data:0x8082F928; // type:object size:0x8 +lbl_8082F930 = .data:0x8082F930; // type:object size:0x18 +lbl_8082F948 = .data:0x8082F948; // type:object size:0x8 +lbl_8082F950 = .data:0x8082F950; // type:object size:0x8 data:string +lbl_8082F958 = .data:0x8082F958; // type:object size:0x40 +__RTTI__7UILabel = .data:0x8082F998; // type:object size:0x8 +lbl_8082F9A0 = .data:0x8082F9A0; // type:object size:0xC data:string +lbl_8082F9AC = .data:0x8082F9AC; // type:object size:0x34 +__RTTI__11UIComponent = .data:0x8082F9E0; // type:object size:0x8 +lbl_8082F9E8 = .data:0x8082F9E8; // type:object size:0x10 +lbl_8082F9F8 = .data:0x8082F9F8; // type:object size:0x30 +lbl_8082FA28 = .data:0x8082FA28; // type:object size:0x14 +lbl_8082FA3C = .data:0x8082FA3C; // type:object size:0x5C +__RTTI__17TrackPanelDirBase = .data:0x8082FA98; // type:object size:0x8 +__vt__10TrackPanel = .data:0x8082FAA0; // type:object size:0xF4 +lbl_8082FB94 = .data:0x8082FB94; // type:object size:0xC +lbl_8082FBA0 = .data:0x8082FBA0; // type:object size:0x28 +__RTTI__10TrackPanel = .data:0x8082FBC8; // type:object size:0x8 +lbl_8082FBD0 = .data:0x8082FBD0; // type:object size:0x18 +lbl_8082FBE8 = .data:0x8082FBE8; // type:object size:0x24 +lbl_8082FC0C = .data:0x8082FC0C; // type:object size:0xC +lbl_8082FC18 = .data:0x8082FC18; // type:object size:0x8 +lbl_8082FC20 = .data:0x8082FC20; // type:object size:0x10 +lbl_8082FC30 = .data:0x8082FC30; // type:object size:0x58 +__RTTI__14BandScoreboard = .data:0x8082FC88; // type:object size:0x8 +lbl_8082FC90 = .data:0x8082FC90; // type:object size:0xC +lbl_8082FC9C = .data:0x8082FC9C; // type:object size:0x1C +__RTTI__8Sequence = .data:0x8082FCB8; // type:object size:0x8 +lbl_8082FCC0 = .data:0x8082FCC0; // type:object size:0x10 +__RTTI__13SynthPollable = .data:0x8082FCD0; // type:object size:0x8 +__vt__19TrackPanelInterface = .data:0x8082FCD8; // type:object size:0xF4 +lbl_8082FDCC = .data:0x8082FDCC; // type:object size:0x14 data:string +lbl_8082FDE0 = .data:0x8082FDE0; // type:object size:0x20 +__RTTI__19TrackPanelInterface = .data:0x8082FE00; // type:object size:0x8 +lbl_8082FE08 = .data:0x8082FE08; // type:object size:0x8 data:string +lbl_8082FE10 = .data:0x8082FE10; // type:object size:0x18 +__RTTI__7UIPanel = .data:0x8082FE28; // type:object size:0x8 +lbl_8082FE30 = .data:0x8082FE30; // type:object size:0xC +lbl_8082FE3C = .data:0x8082FE3C; // type:object size:0xC +lbl_8082FE48 = .data:0x8082FE48; // type:object size:0x8 data:string +lbl_8082FE50 = .data:0x8082FE50; // type:object size:0x8 data:string +lbl_8082FE58 = .data:0x8082FE58; // type:object size:0x8 +lbl_8082FE60 = .data:0x8082FE60; // type:object size:0x8 data:string +lbl_8082FE68 = .data:0x8082FE68; // type:object size:0x1D0 +lbl_80830038 = .data:0x80830038; // type:object size:0xC8 +lbl_80830100 = .data:0x80830100; // type:object size:0x4 +lbl_80830104 = .data:0x80830104; // type:object size:0x3C +lbl_80830140 = .data:0x80830140; // type:object size:0x4 +lbl_80830144 = .data:0x80830144; // type:object size:0x4 +lbl_80830148 = .data:0x80830148; // type:object size:0x10 +lbl_80830158 = .data:0x80830158; // type:object size:0x28 +__RTTI__12RndMultiMesh = .data:0x80830180; // type:object size:0x8 +__vt__10VocalTrack = .data:0x80830188; // type:object size:0x18C +lbl_80830314 = .data:0x80830314; // type:object size:0xC +lbl_80830320 = .data:0x80830320; // type:object size:0x28 +__RTTI__10VocalTrack = .data:0x80830348; // type:object size:0x8 +__vt__32ObjPtr<11VocalPlayer,9ObjectDir> = .data:0x80830350; // type:object size:0x18 +lbl_80830368 = .data:0x80830368; // type:object size:0x20 +lbl_80830388 = .data:0x80830388; // type:object size:0x10 +__RTTI__32ObjPtr<11VocalPlayer,9ObjectDir> = .data:0x80830398; // type:object size:0x8 +__vt__34ObjPtr<13VocalTrackDir,9ObjectDir> = .data:0x808303A0; // type:object size:0x18 +lbl_808303B8 = .data:0x808303B8; // type:object size:0x24 +lbl_808303DC = .data:0x808303DC; // type:object size:0xC +__RTTI__34ObjPtr<13VocalTrackDir,9ObjectDir> = .data:0x808303E8; // type:object size:0x8 +lbl_808303F0 = .data:0x808303F0; // type:object size:0x10 +lbl_80830400 = .data:0x80830400; // type:object size:0x60 +__RTTI__13VocalTrackDir = .data:0x80830460; // type:object size:0x30 +lbl_80830490 = .data:0x80830490; // type:object size:0x18 +lbl_808304A8 = .data:0x808304A8; // type:object size:0x1C data:string +lbl_808304C4 = .data:0x808304C4; // type:object size:0xC +lbl_808304D0 = .data:0x808304D0; // type:object size:0xE0 +lbl_808305B0 = .data:0x808305B0; // type:object size:0x8 data:string +lbl_808305B8 = .data:0x808305B8; // type:object size:0x30 +__RTTI__7RndText = .data:0x808305E8; // type:object size:0x230 +lbl_80830818 = .data:0x80830818; // type:object size:0x4 +lbl_8083081C = .data:0x8083081C; // type:object size:0x4 +lbl_80830820 = .data:0x80830820; // type:object size:0x4 +lbl_80830824 = .data:0x80830824; // type:object size:0x4 +lbl_80830828 = .data:0x80830828; // type:object size:0x58 +lbl_80830880 = .data:0x80830880; // type:object size:0x18 +lbl_80830898 = .data:0x80830898; // type:object size:0x30 +lbl_808308C8 = .data:0x808308C8; // type:object size:0x28 +lbl_808308F0 = .data:0x808308F0; // type:object size:0x38 +lbl_80830928 = .data:0x80830928; // type:object size:0x30 +lbl_80830958 = .data:0x80830958; // type:object size:0x28 +lbl_80830980 = .data:0x80830980; // type:object size:0x28 +lbl_808309A8 = .data:0x808309A8; // type:object size:0xC data:string +lbl_808309B4 = .data:0x808309B4; // type:object size:0x34 +__RTTI__11VocalPlayer = .data:0x808309E8; // type:object size:0x68 +lbl_80830A50 = .data:0x80830A50; // type:object size:0x18 +__RTTI__Q210RndOverlay8Callback = .data:0x80830A68; // type:object size:0x50 +lbl_80830AB8 = .data:0x80830AB8; // type:object size:0x28 +lbl_80830AE0 = .data:0x80830AE0; // type:object size:0x278 +__vt__15AccuracyTracker = .data:0x80830D58; // type:object size:0x58 +lbl_80830DB0 = .data:0x80830DB0; // type:object size:0x10 data:string +lbl_80830DC0 = .data:0x80830DC0; // type:object size:0x10 +__RTTI__15AccuracyTracker = .data:0x80830DD0; // type:object size:0x8 +lbl_80830DD8 = .data:0x80830DD8; // type:object size:0x8 data:string +__RTTI__7Tracker = .data:0x80830DE0; // type:object size:0x8 +lbl_80830DE8 = .data:0x80830DE8; // type:object size:0x8 +lbl_80830DF0 = .data:0x80830DF0; // type:object size:0x4 +__vt__4Band = .data:0x80830DF4; // type:object size:0x5C +lbl_80830E50 = .data:0x80830E50; // type:object size:0x8 +lbl_80830E58 = .data:0x80830E58; // type:object size:0x18 +__RTTI__4Band = .data:0x80830E70; // type:object size:0x8 +lbl_80830E78 = .data:0x80830E78; // type:object size:0x58 +__vt__13BandPerformer = .data:0x80830ED0; // type:object size:0xFC +lbl_80830FCC = .data:0x80830FCC; // type:object size:0x10 +lbl_80830FDC = .data:0x80830FDC; // type:object size:0x1C +__RTTI__13BandPerformer = .data:0x80830FF8; // type:object size:0x8 +lbl_80831000 = .data:0x80831000; // type:object size:0x8 +lbl_80831008 = .data:0x80831008; // type:object size:0x38 +lbl_80831040 = .data:0x80831040; // type:object size:0x10 +lbl_80831050 = .data:0x80831050; // type:object size:0x38 +__RTTI__13TourCharLocal = .data:0x80831088; // type:object size:0x8 +lbl_80831090 = .data:0x80831090; // type:object size:0xC +lbl_8083109C = .data:0x8083109C; // type:object size:0x2C +__RTTI__8TourChar = .data:0x808310C8; // type:object size:0x8 +lbl_808310D0 = .data:0x808310D0; // type:object size:0xC +lbl_808310DC = .data:0x808310DC; // type:object size:0x1C +__RTTI__10PrefabChar = .data:0x808310F8; // type:object size:0x8 +lbl_80831100 = .data:0x80831100; // type:object size:0xC +lbl_8083110C = .data:0x8083110C; // type:object size:0x14 +__RTTI__8CharData = .data:0x80831120; // type:object size:0x8 +lbl_80831128 = .data:0x80831128; // type:object size:0xC data:string +lbl_80831134 = .data:0x80831134; // type:object size:0x14 +__RTTI__11TourSavable = .data:0x80831148; // type:object size:0x8 +__vt__17NullLocalBandUser = .data:0x80831150; // type:object size:0x150 +lbl_808312A0 = .data:0x808312A0; // type:object size:0x14 +lbl_808312B4 = .data:0x808312B4; // type:object size:0x34 +__RTTI__17NullLocalBandUser = .data:0x808312E8; // type:object size:0x8 +lbl_808312F0 = .data:0x808312F0; // type:object size:0x120 +lbl_80831410 = .data:0x80831410; // type:object size:0x10 +lbl_80831420 = .data:0x80831420; // type:object size:0x30 +lbl_80831450 = .data:0x80831450; // type:object size:0x8 +__vt__13LocalBandUser = .data:0x80831458; // type:object size:0x140 +lbl_80831598 = .data:0x80831598; // type:object size:0x10 +lbl_808315A8 = .data:0x808315A8; // type:object size:0x30 +__RTTI__13LocalBandUser = .data:0x808315D8; // type:object size:0x8 +__vt__8BandUser = .data:0x808315E0; // type:object size:0xC0 +lbl_808316A0 = .data:0x808316A0; // type:object size:0xC +lbl_808316AC = .data:0x808316AC; // type:object size:0x1C +__RTTI__8BandUser = .data:0x808316C8; // type:object size:0x8 +lbl_808316D0 = .data:0x808316D0; // type:object size:0xA0 +__vt__19ProfilePreDeleteMsg = .data:0x80831770; // type:object size:0xC +lbl_8083177C = .data:0x8083177C; // type:object size:0x14 data:string +lbl_80831790 = .data:0x80831790; // type:object size:0x10 +__RTTI__19ProfilePreDeleteMsg = .data:0x808317A0; // type:object size:0x8 +lbl_808317A8 = .data:0x808317A8; // type:object size:0xC data:string +lbl_808317B4 = .data:0x808317B4; // type:object size:0x24 +__RTTI__11BandProfile = .data:0x808317D8; // type:object size:0x8 +lbl_808317E0 = .data:0x808317E0; // type:object size:0x8 data:string +lbl_808317E8 = .data:0x808317E8; // type:object size:0x20 +__RTTI__7Profile = .data:0x80831808; // type:object size:0x8 +__vt__11BandUserMgr = .data:0x80831810; // type:object size:0x6C +lbl_8083187C = .data:0x8083187C; // type:object size:0xC data:string +lbl_80831888 = .data:0x80831888; // type:object size:0x20 +__RTTI__11BandUserMgr = .data:0x808318A8; // type:object size:0x8 +lbl_808318B0 = .data:0x808318B0; // type:object size:0x8 data:string +lbl_808318B8 = .data:0x808318B8; // type:object size:0x18 +__RTTI__7UserMgr = .data:0x808318D0; // type:object size:0x8 +lbl_808318D8 = .data:0x808318D8; // type:object size:0x18 +__vt__14ChordbookPanel = .data:0x808318F0; // type:object size:0x110 +lbl_80831A00 = .data:0x80831A00; // type:object size:0x10 +lbl_80831A10 = .data:0x80831A10; // type:object size:0x28 +__RTTI__14ChordbookPanel = .data:0x80831A38; // type:object size:0x8 +__vt__23BeatMatchControllerSink = .data:0x80831A40; // type:object size:0x48 +lbl_80831A88 = .data:0x80831A88; // type:object size:0x18 data:string +__RTTI__23BeatMatchControllerSink = .data:0x80831AA0; // type:object size:0x8 +lbl_80831AA8 = .data:0x80831AA8; // type:object size:0x10 +lbl_80831AB8 = .data:0x80831AB8; // type:object size:0x8 +lbl_80831AC0 = .data:0x80831AC0; // type:object size:0x8 data:string +lbl_80831AC8 = .data:0x80831AC8; // type:object size:0x2C0 +lbl_80831D88 = .data:0x80831D88; // type:object size:0x8 +lbl_80831D90 = .data:0x80831D90; // type:object size:0x18 +__RTTI__5Fader = .data:0x80831DA8; // type:object size:0x8 +__vt__Q210ContentMgr8Callback = .data:0x80831DB0; // type:object size:0x44 +lbl_80831DF4 = .data:0x80831DF4; // type:object size:0x1C +__RTTI__Q210ContentMgr8Callback = .data:0x80831E10; // type:object size:0x8 +lbl_80831E18 = .data:0x80831E18; // type:object size:0x10 +lbl_80831E28 = .data:0x80831E28; // type:object size:0x38 +lbl_80831E60 = .data:0x80831E60; // type:object size:0x4 +lbl_80831E64 = .data:0x80831E64; // type:object size:0x4 +lbl_80831E68 = .data:0x80831E68; // type:object size:0x4 +lbl_80831E6C = .data:0x80831E6C; // type:object size:0x4 +lbl_80831E70 = .data:0x80831E70; // type:object size:0x10 +lbl_80831E80 = .data:0x80831E80; // type:object size:0x10 +lbl_80831E90 = .data:0x80831E90; // type:object size:0x8 +lbl_80831E98 = .data:0x80831E98; // type:object size:0x80 +lbl_80831F18 = .data:0x80831F18; // type:object size:0x78 +jumptable_80831F90 = .data:0x80831F90; // type:object size:0x24 scope:local +jumptable_80831FB4 = .data:0x80831FB4; // type:object size:0x34 scope:local +jumptable_80831FE8 = .data:0x80831FE8; // type:object size:0x2C scope:local +jumptable_80832060 = .data:0x80832060; // type:object size:0x24 scope:local +lbl_80832084 = .data:0x80832084; // type:object size:0x14 +lbl_80832098 = .data:0x80832098; // type:object size:0x68 +lbl_80832100 = .data:0x80832100; // type:object size:0x10 +lbl_80832110 = .data:0x80832110; // type:object size:0x18 +__RTTI__14MidiInstrument = .data:0x80832128; // type:object size:0x8 +lbl_80832130 = .data:0x80832130; // type:object size:0x48 +lbl_80832178 = .data:0x80832178; // type:object size:0x8 +__vt__18DeployCountTracker = .data:0x80832180; // type:object size:0x58 +lbl_808321D8 = .data:0x808321D8; // type:object size:0x14 +lbl_808321EC = .data:0x808321EC; // type:object size:0xC +__RTTI__18DeployCountTracker = .data:0x808321F8; // type:object size:0x8 +__vt__9FadePanel = .data:0x80832200; // type:object size:0xBC +lbl_808322BC = .data:0x808322BC; // type:object size:0xC +lbl_808322C8 = .data:0x808322C8; // type:object size:0x20 +__RTTI__9FadePanel = .data:0x808322E8; // type:object size:0x8 +lbl_808322F0 = .data:0x808322F0; // type:object size:0xC +lbl_808322FC = .data:0x808322FC; // type:object size:0xC +lbl_80832308 = .data:0x80832308; // type:object size:0x8 data:string +lbl_80832310 = .data:0x80832310; // type:object size:0x20 +lbl_80832330 = .data:0x80832330; // type:object size:0x4 +lbl_80832334 = .data:0x80832334; // type:object size:0x4 +lbl_80832338 = .data:0x80832338; // type:object size:0x7C +lbl_808323B4 = .data:0x808323B4; // type:object size:0x18 +lbl_808323CC = .data:0x808323CC; // type:object size:0x14 +lbl_808323E0 = .data:0x808323E0; // type:object size:0x8 +lbl_808323E8 = .data:0x808323E8; // type:object size:0x7C +lbl_80832464 = .data:0x80832464; // type:object size:0x14 +lbl_80832478 = .data:0x80832478; // type:object size:0x18 +lbl_80832490 = .data:0x80832490; // type:object size:0x8 +__vt__12FocusTracker = .data:0x80832498; // type:object size:0x7C +lbl_80832514 = .data:0x80832514; // type:object size:0x10 +lbl_80832524 = .data:0x80832524; // type:object size:0xC +__RTTI__12FocusTracker = .data:0x80832530; // type:object size:0x8 +lbl_80832538 = .data:0x80832538; // type:object size:0x18 +lbl_80832550 = .data:0x80832550; // type:object size:0x4 data:string +lbl_80832554 = .data:0x80832554; // type:object size:0x24 +lbl_80832578 = .data:0x80832578; // type:object size:0x8 +__vt__14FreestylePanel = .data:0x80832580; // type:object size:0x104 +lbl_80832684 = .data:0x80832684; // type:object size:0x10 +lbl_80832694 = .data:0x80832694; // type:object size:0x24 +__RTTI__14FreestylePanel = .data:0x808326B8; // type:object size:0x8 +__vt__19JoypadConnectionMsg = .data:0x808326C0; // type:object size:0xC +lbl_808326CC = .data:0x808326CC; // type:object size:0x14 data:string +lbl_808326E0 = .data:0x808326E0; // type:object size:0x10 +__RTTI__19JoypadConnectionMsg = .data:0x808326F0; // type:object size:0x8 +lbl_808326F8 = .data:0x808326F8; // type:object size:0x10 +lbl_80832708 = .data:0x80832708; // type:object size:0x8 +lbl_80832710 = .data:0x80832710; // type:object size:0x8 data:string +lbl_80832718 = .data:0x80832718; // type:object size:0x10 +lbl_80832728 = .data:0x80832728; // type:object size:0x78 +lbl_808327A0 = .data:0x808327A0; // type:object size:0x4 +lbl_808327A4 = .data:0x808327A4; // type:object size:0x4 +lbl_808327A8 = .data:0x808327A8; // type:object size:0x4 +lbl_808327AC = .data:0x808327AC; // type:object size:0x4 +lbl_808327B0 = .data:0x808327B0; // type:object size:0x4 +lbl_808327B4 = .data:0x808327B4; // type:object size:0x4 +lbl_808327B8 = .data:0x808327B8; // type:object size:0x14 data:string +lbl_808327CC = .data:0x808327CC; // type:object size:0x3C +__RTTI__19RealGuitarGemPlayer = .data:0x80832808; // type:object size:0x8 +lbl_80832810 = .data:0x80832810; // type:object size:0xC +lbl_8083281C = .data:0x8083281C; // type:object size:0x14 data:string +lbl_80832830 = .data:0x80832830; // type:object size:0x10 +lbl_80832840 = .data:0x80832840; // type:object size:0x8 +lbl_80832848 = .data:0x80832848; // type:object size:0xC +lbl_80832854 = .data:0x80832854; // type:object size:0x1C +lbl_80832870 = .data:0x80832870; // type:object size:0x10 +lbl_80832880 = .data:0x80832880; // type:object size:0x8 +lbl_80832888 = .data:0x80832888; // type:object size:0xC +lbl_80832894 = .data:0x80832894; // type:object size:0x1C +__RTTI__10MidiParser = .data:0x808328B0; // type:object size:0x8 +lbl_808328B8 = .data:0x808328B8; // type:object size:0xC +lbl_808328C4 = .data:0x808328C4; // type:object size:0x5C +__RTTI__8WorldDir = .data:0x80832920; // type:object size:0x8 +__vt__16TrainerChallenge = .data:0x80832928; // type:object size:0x5C +lbl_80832984 = .data:0x80832984; // type:object size:0x14 +lbl_80832998 = .data:0x80832998; // type:object size:0x18 +__RTTI__16TrainerChallenge = .data:0x808329B0; // type:object size:0x8 +lbl_808329B8 = .data:0x808329B8; // type:object size:0xC +lbl_808329C4 = .data:0x808329C4; // type:object size:0x14 +lbl_808329D8 = .data:0x808329D8; // type:object size:0x10 +lbl_808329E8 = .data:0x808329E8; // type:object size:0x8 +lbl_808329F0 = .data:0x808329F0; // type:object size:0x2C +lbl_80832A1C = .data:0x80832A1C; // type:object size:0x14 +lbl_80832A30 = .data:0x80832A30; // type:object size:0x18 +lbl_80832A48 = .data:0x80832A48; // type:object size:0x8 +lbl_80832A50 = .data:0x80832A50; // type:object size:0x10 +lbl_80832A60 = .data:0x80832A60; // type:object size:0x10 +__RTTI__12StartLockMsg = .data:0x80832A70; // type:object size:0x8 +__vt__4Game = .data:0x80832A78; // type:object size:0x90 +lbl_80832B08 = .data:0x80832B08; // type:object size:0x8 +lbl_80832B10 = .data:0x80832B10; // type:object size:0x28 +__RTTI__4Game = .data:0x80832B38; // type:object size:0x8 +__vt__14BeatMasterSink = .data:0x80832B40; // type:object size:0x18 +lbl_80832B58 = .data:0x80832B58; // type:object size:0x10 +__RTTI__14BeatMasterSink = .data:0x80832B68; // type:object size:0x8 +lbl_80832B70 = .data:0x80832B70; // type:object size:0x18 +lbl_80832B88 = .data:0x80832B88; // type:object size:0x20 +lbl_80832BA8 = .data:0x80832BA8; // type:object size:0x14 +lbl_80832BBC = .data:0x80832BBC; // type:object size:0x10 +lbl_80832BCC = .data:0x80832BCC; // type:object size:0x10 +lbl_80832BDC = .data:0x80832BDC; // type:object size:0x10 +lbl_80832BEC = .data:0x80832BEC; // type:object size:0x14 data:string +lbl_80832C00 = .data:0x80832C00; // type:object size:0x10 data:string +lbl_80832C10 = .data:0x80832C10; // type:object size:0x14 +lbl_80832C24 = .data:0x80832C24; // type:object size:0xC +lbl_80832C30 = .data:0x80832C30; // type:object size:0x8 data:string +lbl_80832C38 = .data:0x80832C38; // type:object size:0x10 +lbl_80832C48 = .data:0x80832C48; // type:object size:0x14 +lbl_80832C5C = .data:0x80832C5C; // type:object size:0x14 +lbl_80832C70 = .data:0x80832C70; // type:object size:0x14 +lbl_80832C84 = .data:0x80832C84; // type:object size:0x10 +lbl_80832C94 = .data:0x80832C94; // type:object size:0x18 +lbl_80832CAC = .data:0x80832CAC; // type:object size:0x18 +lbl_80832CC4 = .data:0x80832CC4; // type:object size:0x14 data:string +lbl_80832CD8 = .data:0x80832CD8; // type:object size:0x18 +lbl_80832CF0 = .data:0x80832CF0; // type:object size:0x18 data:string +lbl_80832D08 = .data:0x80832D08; // type:object size:0x14 +lbl_80832D1C = .data:0x80832D1C; // type:object size:0x10 +lbl_80832D2C = .data:0x80832D2C; // type:object size:0x14 +lbl_80832D40 = .data:0x80832D40; // type:object size:0x18 +lbl_80832D58 = .data:0x80832D58; // type:object size:0x18 +lbl_80832D70 = .data:0x80832D70; // type:object size:0x14 data:string +lbl_80832D84 = .data:0x80832D84; // type:object size:0x10 +lbl_80832D94 = .data:0x80832D94; // type:object size:0x18 +lbl_80832DAC = .data:0x80832DAC; // type:object size:0x10 +lbl_80832DBC = .data:0x80832DBC; // type:object size:0x14 +lbl_80832DD0 = .data:0x80832DD0; // type:object size:0xC +lbl_80832DDC = .data:0x80832DDC; // type:object size:0x254 +__vt__10GameConfig = .data:0x80833030; // type:object size:0x5C +lbl_8083308C = .data:0x8083308C; // type:object size:0xC +lbl_80833098 = .data:0x80833098; // type:object size:0x18 +__RTTI__10GameConfig = .data:0x808330B0; // type:object size:0x8 +lbl_808330B8 = .data:0x808330B8; // type:object size:0x18 +lbl_808330D0 = .data:0x808330D0; // type:object size:0x4 +lbl_808330D4 = .data:0x808330D4; // type:object size:0x4 +lbl_808330D8 = .data:0x808330D8; // type:object size:0x4 +lbl_808330DC = .data:0x808330DC; // type:object size:0x2C +lbl_80833108 = .data:0x80833108; // type:object size:0xC data:string +lbl_80833114 = .data:0x80833114; // type:object size:0x1C +__RTTI__11FxSendDelay = .data:0x80833130; // type:object size:0x8 +lbl_80833138 = .data:0x80833138; // type:object size:0x10 +lbl_80833148 = .data:0x80833148; // type:object size:0x20 +__RTTI__13FxSendSynapse = .data:0x80833168; // type:object size:0x8 +__vt__18GameMicsChangedMsg = .data:0x80833170; // type:object size:0xC +lbl_8083317C = .data:0x8083317C; // type:object size:0x14 +lbl_80833190 = .data:0x80833190; // type:object size:0x10 +__RTTI__18GameMicsChangedMsg = .data:0x808331A0; // type:object size:0x8 +__vt__14GameMicManager = .data:0x808331A8; // type:object size:0x98 +lbl_80833240 = .data:0x80833240; // type:object size:0x10 +lbl_80833250 = .data:0x80833250; // type:object size:0x28 +__RTTI__14GameMicManager = .data:0x80833278; // type:object size:0x8 +__vt__19MicManagerInterface = .data:0x80833280; // type:object size:0x18 +lbl_80833298 = .data:0x80833298; // type:object size:0x18 +__RTTI__19MicManagerInterface = .data:0x808332B0; // type:object size:0x8 +lbl_808332B8 = .data:0x808332B8; // type:object size:0x8 +lbl_808332C0 = .data:0x808332C0; // type:object size:0x18 +__RTTI__6FxSend = .data:0x808332D8; // type:object size:0x8 +lbl_808332E0 = .data:0x808332E0; // type:object size:0x18 +lbl_808332F8 = .data:0x808332F8; // type:object size:0x98 +__vt__8GameMode = .data:0x80833390; // type:object size:0x80 +lbl_80833410 = .data:0x80833410; // type:object size:0xC +lbl_8083341C = .data:0x8083341C; // type:object size:0x1C +__RTTI__8GameMode = .data:0x80833438; // type:object size:0x8 +__vt__14ModeChangedMsg = .data:0x80833440; // type:object size:0xC +lbl_8083344C = .data:0x8083344C; // type:object size:0x10 +lbl_8083345C = .data:0x8083345C; // type:object size:0xC +__RTTI__14ModeChangedMsg = .data:0x80833468; // type:object size:0x8 +lbl_80833470 = .data:0x80833470; // type:object size:0x10 +lbl_80833480 = .data:0x80833480; // type:object size:0xF0 +lbl_80833570 = .data:0x80833570; // type:object size:0xC +lbl_8083357C = .data:0x8083357C; // type:object size:0x14 +__RTTI__8UIScreen = .data:0x80833590; // type:object size:0x8 +__vt__9GamePanel = .data:0x80833598; // type:object size:0xE4 +lbl_8083367C = .data:0x8083367C; // type:object size:0xC +lbl_80833688 = .data:0x80833688; // type:object size:0x28 +__RTTI__9GamePanel = .data:0x808336B0; // type:object size:0x8 +lbl_808336B8 = .data:0x808336B8; // type:object size:0x8 +lbl_808336C0 = .data:0x808336C0; // type:object size:0x8 data:string +lbl_808336C8 = .data:0x808336C8; // type:object size:0x88 +lbl_80833750 = .data:0x80833750; // type:object size:0x4 +lbl_80833754 = .data:0x80833754; // type:object size:0x4 +lbl_80833758 = .data:0x80833758; // type:object size:0x4 +jumptable_8083375C = .data:0x8083375C; // type:object size:0x28 scope:local +lbl_80833784 = .data:0x80833784; // type:object size:0x4 +lbl_80833788 = .data:0x80833788; // type:object size:0x10 +lbl_80833798 = .data:0x80833798; // type:object size:0x18 +lbl_808337B0 = .data:0x808337B0; // type:object size:0x8 +__vt__6Stream = .data:0x808337B8; // type:object size:0x338 +lbl_80833AF0 = .data:0x80833AF0; // type:object size:0x8 +lbl_80833AF8 = .data:0x80833AF8; // type:object size:0x8 +__vt__13BeatMatchSink = .data:0x80833B00; // type:object size:0x70 +lbl_80833B70 = .data:0x80833B70; // type:object size:0x370 +__vt__19GemTrainerLoopPanel = .data:0x80833EE0; // type:object size:0xBC +lbl_80833F9C = .data:0x80833F9C; // type:object size:0x14 data:string +lbl_80833FB0 = .data:0x80833FB0; // type:object size:0x20 +__RTTI__19GemTrainerLoopPanel = .data:0x80833FD0; // type:object size:0x8 +__vt__15GemTrainerPanel = .data:0x80833FD8; // type:object size:0xF8 +lbl_808340D0 = .data:0x808340D0; // type:object size:0x10 data:string +lbl_808340E0 = .data:0x808340E0; // type:object size:0x28 +__RTTI__15GemTrainerPanel = .data:0x80834108; // type:object size:0x8 +lbl_80834110 = .data:0x80834110; // type:object size:0x10 +lbl_80834120 = .data:0x80834120; // type:object size:0x20 +__RTTI__12TrainerPanel = .data:0x80834140; // type:object size:0x8 +lbl_80834148 = .data:0x80834148; // type:object size:0x8 +lbl_80834150 = .data:0x80834150; // type:object size:0x8 data:string +lbl_80834158 = .data:0x80834158; // type:object size:0x8 +lbl_80834160 = .data:0x80834160; // type:object size:0x8 data:string +lbl_80834168 = .data:0x80834168; // type:object size:0xB0 +__vt__8GuitarFx = .data:0x80834218; // type:object size:0x5C +lbl_80834274 = .data:0x80834274; // type:object size:0xC +lbl_80834280 = .data:0x80834280; // type:object size:0x18 +__RTTI__8GuitarFx = .data:0x80834298; // type:object size:0x8 +lbl_808342A0 = .data:0x808342A0; // type:object size:0x80 +lbl_80834320 = .data:0x80834320; // type:object size:0x4 +lbl_80834324 = .data:0x80834324; // type:object size:0x4 +__vt__10HitTracker = .data:0x80834328; // type:object size:0x1C +lbl_80834344 = .data:0x80834344; // type:object size:0xC +lbl_80834350 = .data:0x80834350; // type:object size:0x10 +__RTTI__10HitTracker = .data:0x80834360; // type:object size:0x8 +__vt__7HitSink = .data:0x80834368; // type:object size:0x20 +lbl_80834388 = .data:0x80834388; // type:object size:0x8 data:string +__RTTI__7HitSink = .data:0x80834390; // type:object size:0x8 +__vt__6KeysFx = .data:0x80834398; // type:object size:0x5C +lbl_808343F4 = .data:0x808343F4; // type:object size:0x8 +lbl_808343FC = .data:0x808343FC; // type:object size:0x14 +__RTTI__6KeysFx = .data:0x80834410; // type:object size:0x8 +lbl_80834418 = .data:0x80834418; // type:object size:0x30 +__vt__9Metronome = .data:0x80834448; // type:object size:0xC +lbl_80834454 = .data:0x80834454; // type:object size:0xC +__RTTI__9Metronome = .data:0x80834460; // type:object size:0x8 +lbl_80834468 = .data:0x80834468; // type:object size:0x40 +lbl_808344A8 = .data:0x808344A8; // type:object size:0x4 +lbl_808344AC = .data:0x808344AC; // type:object size:0x14 +lbl_808344C0 = .data:0x808344C0; // type:object size:0x20 +__RTTI__17SetlistMergePanel = .data:0x808344E0; // type:object size:0x8 +lbl_808344E8 = .data:0x808344E8; // type:object size:0x28 +lbl_80834510 = .data:0x80834510; // type:object size:0x10 +lbl_80834520 = .data:0x80834520; // type:object size:0x10 +lbl_80834530 = .data:0x80834530; // type:object size:0x8 +lbl_80834538 = .data:0x80834538; // type:object size:0x28 +lbl_80834560 = .data:0x80834560; // type:object size:0x18 +lbl_80834578 = .data:0x80834578; // type:object size:0x10 +lbl_80834588 = .data:0x80834588; // type:object size:0x8 +lbl_80834590 = .data:0x80834590; // type:object size:0x28 +lbl_808345B8 = .data:0x808345B8; // type:object size:0x18 +lbl_808345D0 = .data:0x808345D0; // type:object size:0x10 +lbl_808345E0 = .data:0x808345E0; // type:object size:0x8 +lbl_808345E8 = .data:0x808345E8; // type:object size:0x28 +lbl_80834610 = .data:0x80834610; // type:object size:0x14 data:string +lbl_80834624 = .data:0x80834624; // type:object size:0xC +lbl_80834630 = .data:0x80834630; // type:object size:0x8 +lbl_80834638 = .data:0x80834638; // type:object size:0x28 +lbl_80834660 = .data:0x80834660; // type:object size:0x18 +lbl_80834678 = .data:0x80834678; // type:object size:0x10 +lbl_80834688 = .data:0x80834688; // type:object size:0x8 +lbl_80834690 = .data:0x80834690; // type:object size:0x28 +lbl_808346B8 = .data:0x808346B8; // type:object size:0x18 data:string +lbl_808346D0 = .data:0x808346D0; // type:object size:0x10 +lbl_808346E0 = .data:0x808346E0; // type:object size:0x8 +lbl_808346E8 = .data:0x808346E8; // type:object size:0x28 +lbl_80834710 = .data:0x80834710; // type:object size:0x14 +lbl_80834724 = .data:0x80834724; // type:object size:0xC +lbl_80834730 = .data:0x80834730; // type:object size:0x8 +lbl_80834738 = .data:0x80834738; // type:object size:0x28 +lbl_80834760 = .data:0x80834760; // type:object size:0x10 +lbl_80834770 = .data:0x80834770; // type:object size:0x10 +lbl_80834780 = .data:0x80834780; // type:object size:0x8 +lbl_80834788 = .data:0x80834788; // type:object size:0x28 +lbl_808347B0 = .data:0x808347B0; // type:object size:0x14 +lbl_808347C4 = .data:0x808347C4; // type:object size:0xC +lbl_808347D0 = .data:0x808347D0; // type:object size:0x8 +lbl_808347D8 = .data:0x808347D8; // type:object size:0x28 +lbl_80834800 = .data:0x80834800; // type:object size:0x18 +lbl_80834818 = .data:0x80834818; // type:object size:0x10 +lbl_80834828 = .data:0x80834828; // type:object size:0x8 +lbl_80834830 = .data:0x80834830; // type:object size:0x28 +lbl_80834858 = .data:0x80834858; // type:object size:0x18 +lbl_80834870 = .data:0x80834870; // type:object size:0x10 +lbl_80834880 = .data:0x80834880; // type:object size:0x8 +lbl_80834888 = .data:0x80834888; // type:object size:0x28 +lbl_808348B0 = .data:0x808348B0; // type:object size:0x14 data:string +lbl_808348C4 = .data:0x808348C4; // type:object size:0xC +lbl_808348D0 = .data:0x808348D0; // type:object size:0x8 +lbl_808348D8 = .data:0x808348D8; // type:object size:0x28 +lbl_80834900 = .data:0x80834900; // type:object size:0x10 +lbl_80834910 = .data:0x80834910; // type:object size:0x10 +lbl_80834920 = .data:0x80834920; // type:object size:0x8 +lbl_80834928 = .data:0x80834928; // type:object size:0x28 +lbl_80834950 = .data:0x80834950; // type:object size:0x18 +lbl_80834968 = .data:0x80834968; // type:object size:0x10 +lbl_80834978 = .data:0x80834978; // type:object size:0x8 +lbl_80834980 = .data:0x80834980; // type:object size:0x28 +lbl_808349A8 = .data:0x808349A8; // type:object size:0x10 +lbl_808349B8 = .data:0x808349B8; // type:object size:0x10 +lbl_808349C8 = .data:0x808349C8; // type:object size:0x8 +lbl_808349D0 = .data:0x808349D0; // type:object size:0x28 +lbl_808349F8 = .data:0x808349F8; // type:object size:0x14 +lbl_80834A0C = .data:0x80834A0C; // type:object size:0xC +lbl_80834A18 = .data:0x80834A18; // type:object size:0x8 +lbl_80834A20 = .data:0x80834A20; // type:object size:0x10 +lbl_80834A30 = .data:0x80834A30; // type:object size:0x10 +lbl_80834A40 = .data:0x80834A40; // type:object size:0x18 +lbl_80834A58 = .data:0x80834A58; // type:object size:0x18 +lbl_80834A70 = .data:0x80834A70; // type:object size:0x18 +lbl_80834A88 = .data:0x80834A88; // type:object size:0x18 +lbl_80834AA0 = .data:0x80834AA0; // type:object size:0x14 data:string +lbl_80834AB4 = .data:0x80834AB4; // type:object size:0x14 data:string +lbl_80834AC8 = .data:0x80834AC8; // type:object size:0x18 +lbl_80834AE0 = .data:0x80834AE0; // type:object size:0x18 +lbl_80834AF8 = .data:0x80834AF8; // type:object size:0x18 data:string +lbl_80834B10 = .data:0x80834B10; // type:object size:0x18 data:string +lbl_80834B28 = .data:0x80834B28; // type:object size:0x14 +lbl_80834B3C = .data:0x80834B3C; // type:object size:0x14 +lbl_80834B50 = .data:0x80834B50; // type:object size:0x10 +lbl_80834B60 = .data:0x80834B60; // type:object size:0x10 +lbl_80834B70 = .data:0x80834B70; // type:object size:0x14 +lbl_80834B84 = .data:0x80834B84; // type:object size:0x14 +lbl_80834B98 = .data:0x80834B98; // type:object size:0x18 +lbl_80834BB0 = .data:0x80834BB0; // type:object size:0x18 +lbl_80834BC8 = .data:0x80834BC8; // type:object size:0x18 +lbl_80834BE0 = .data:0x80834BE0; // type:object size:0x18 +lbl_80834BF8 = .data:0x80834BF8; // type:object size:0x14 data:string +lbl_80834C0C = .data:0x80834C0C; // type:object size:0x14 data:string +lbl_80834C20 = .data:0x80834C20; // type:object size:0x10 +lbl_80834C30 = .data:0x80834C30; // type:object size:0x10 +lbl_80834C40 = .data:0x80834C40; // type:object size:0x18 +lbl_80834C58 = .data:0x80834C58; // type:object size:0x18 +lbl_80834C70 = .data:0x80834C70; // type:object size:0x10 +lbl_80834C80 = .data:0x80834C80; // type:object size:0x10 +lbl_80834C90 = .data:0x80834C90; // type:object size:0x14 +lbl_80834CA4 = .data:0x80834CA4; // type:object size:0x14 +lbl_80834CB8 = .data:0x80834CB8; // type:object size:0xA8 +__vt__20OverdriveTimeTracker = .data:0x80834D60; // type:object size:0x58 +lbl_80834DB8 = .data:0x80834DB8; // type:object size:0x18 +lbl_80834DD0 = .data:0x80834DD0; // type:object size:0x10 +__RTTI__20OverdriveTimeTracker = .data:0x80834DE0; // type:object size:0x8 +__vt__16OverdriveTracker = .data:0x80834DE8; // type:object size:0x58 +lbl_80834E40 = .data:0x80834E40; // type:object size:0x14 +lbl_80834E54 = .data:0x80834E54; // type:object size:0xC +__RTTI__16OverdriveTracker = .data:0x80834E60; // type:object size:0x8 +lbl_80834E68 = .data:0x80834E68; // type:object size:0x58 +lbl_80834EC0 = .data:0x80834EC0; // type:object size:0x4 +lbl_80834EC4 = .data:0x80834EC4; // type:object size:0x4 +__vt__23PerfectOverdriveTracker = .data:0x80834EC8; // type:object size:0x58 +lbl_80834F20 = .data:0x80834F20; // type:object size:0x18 data:string +lbl_80834F38 = .data:0x80834F38; // type:object size:0x10 +__RTTI__23PerfectOverdriveTracker = .data:0x80834F48; // type:object size:0x8 +lbl_80834F50 = .data:0x80834F50; // type:object size:0x38 +lbl_80834F88 = .data:0x80834F88; // type:object size:0x4 +lbl_80834F8C = .data:0x80834F8C; // type:object size:0x4 +__vt__21PerfectSectionTracker = .data:0x80834F90; // type:object size:0x58 +lbl_80834FE8 = .data:0x80834FE8; // type:object size:0x18 +lbl_80835000 = .data:0x80835000; // type:object size:0x10 +__RTTI__21PerfectSectionTracker = .data:0x80835010; // type:object size:0x8 +lbl_80835018 = .data:0x80835018; // type:object size:0x28 +lbl_80835040 = .data:0x80835040; // type:object size:0x4 +lbl_80835044 = .data:0x80835044; // type:object size:0x4 +__vt__9Performer = .data:0x80835048; // type:object size:0xF8 +lbl_80835140 = .data:0x80835140; // type:object size:0x8 data:string +lbl_80835148 = .data:0x80835148; // type:object size:0x4 +lbl_8083514C = .data:0x8083514C; // type:object size:0x4 +lbl_80835150 = .data:0x80835150; // type:object size:0x8 +__vt__6Player = .data:0x80835158; // type:object size:0x238 +lbl_80835390 = .data:0x80835390; // type:object size:0xC data:string +lbl_8083539C = .data:0x8083539C; // type:object size:0x14 +lbl_808353B0 = .data:0x808353B0; // type:object size:0x14 +lbl_808353C4 = .data:0x808353C4; // type:object size:0x10 +lbl_808353D4 = .data:0x808353D4; // type:object size:0x10 +lbl_808353E4 = .data:0x808353E4; // type:object size:0xC data:string +lbl_808353F0 = .data:0x808353F0; // type:object size:0x8 data:string +lbl_808353F8 = .data:0x808353F8; // type:object size:0xC data:string +lbl_80835404 = .data:0x80835404; // type:object size:0x14 +lbl_80835418 = .data:0x80835418; // type:object size:0x8 data:string +lbl_80835420 = .data:0x80835420; // type:object size:0x14 +lbl_80835434 = .data:0x80835434; // type:object size:0x1C +lbl_80835450 = .data:0x80835450; // type:object size:0xC +lbl_8083545C = .data:0x8083545C; // type:object size:0xC +lbl_80835468 = .data:0x80835468; // type:object size:0x8 data:string +lbl_80835470 = .data:0x80835470; // type:object size:0x1C data:string +lbl_8083548C = .data:0x8083548C; // type:object size:0xC +lbl_80835498 = .data:0x80835498; // type:object size:0x8 data:string +lbl_808354A0 = .data:0x808354A0; // type:object size:0xE8 +lbl_80835588 = .data:0x80835588; // type:object size:0x8 data:string +__vt__13PracticePanel = .data:0x80835590; // type:object size:0xBC +lbl_8083564C = .data:0x8083564C; // type:object size:0x10 +lbl_8083565C = .data:0x8083565C; // type:object size:0x1C +__RTTI__13PracticePanel = .data:0x80835678; // type:object size:0x8 +lbl_80835680 = .data:0x80835680; // type:object size:0x4 data:string +lbl_80835684 = .data:0x80835684; // type:object size:0xC +lbl_80835690 = .data:0x80835690; // type:object size:0x8 data:string +lbl_80835698 = .data:0x80835698; // type:object size:0xD0 +__vt__17MidiSectionLister = .data:0x80835768; // type:object size:0x30 +lbl_80835798 = .data:0x80835798; // type:object size:0x14 +lbl_808357AC = .data:0x808357AC; // type:object size:0xC +__RTTI__17MidiSectionLister = .data:0x808357B8; // type:object size:0x8 +lbl_808357C0 = .data:0x808357C0; // type:object size:0x10 +__RTTI__12MidiReceiver = .data:0x808357D0; // type:object size:0x8 +__vt__23PracticeSectionProvider = .data:0x808357D8; // type:object size:0xC0 +lbl_80835898 = .data:0x80835898; // type:object size:0x18 data:string +lbl_808358B0 = .data:0x808358B0; // type:object size:0x20 +__RTTI__23PracticeSectionProvider = .data:0x808358D0; // type:object size:0x8 +lbl_808358D8 = .data:0x808358D8; // type:object size:0x10 +__RTTI__14UIListProvider = .data:0x808358E8; // type:object size:0x8 +lbl_808358F0 = .data:0x808358F0; // type:object size:0x8 +lbl_808358F8 = .data:0x808358F8; // type:object size:0x8 data:string +lbl_80835900 = .data:0x80835900; // type:object size:0xC +lbl_8083590C = .data:0x8083590C; // type:object size:0x44 +__vt__19RealGuitarGemPlayer = .data:0x80835950; // type:object size:0x340 +lbl_80835C90 = .data:0x80835C90; // type:object size:0x38 +lbl_80835CC8 = .data:0x80835CC8; // type:object size:0x4 +__vt__14RGTrainerPanel = .data:0x80835CCC; // type:object size:0xFC +lbl_80835DC8 = .data:0x80835DC8; // type:object size:0x10 +lbl_80835DD8 = .data:0x80835DD8; // type:object size:0x38 +__RTTI__14RGTrainerPanel = .data:0x80835E10; // type:object size:0x8 +__vt__15ProTrainerPanel = .data:0x80835E18; // type:object size:0x100 +lbl_80835F18 = .data:0x80835F18; // type:object size:0x10 data:string +lbl_80835F28 = .data:0x80835F28; // type:object size:0x30 +__RTTI__15ProTrainerPanel = .data:0x80835F58; // type:object size:0x8 +lbl_80835F60 = .data:0x80835F60; // type:object size:0x8 +lbl_80835F68 = .data:0x80835F68; // type:object size:0x8 data:string +lbl_80835F70 = .data:0x80835F70; // type:object size:0x2B0 +lbl_80836220 = .data:0x80836220; // type:object size:0x8 +__vt__14RKTrainerPanel = .data:0x80836228; // type:object size:0xFC +lbl_80836324 = .data:0x80836324; // type:object size:0x10 +lbl_80836334 = .data:0x80836334; // type:object size:0x34 +__RTTI__14RKTrainerPanel = .data:0x80836368; // type:object size:0x8 +lbl_80836370 = .data:0x80836370; // type:object size:0x8 +lbl_80836378 = .data:0x80836378; // type:object size:0x8 data:string +__vt__12ScoreTracker = .data:0x80836380; // type:object size:0x58 +lbl_808363D8 = .data:0x808363D8; // type:object size:0x10 +lbl_808363E8 = .data:0x808363E8; // type:object size:0x10 +__RTTI__12ScoreTracker = .data:0x808363F8; // type:object size:0x8 +lbl_80836400 = .data:0x80836400; // type:object size:0x4 +lbl_80836404 = .data:0x80836404; // type:object size:0x4 +lbl_80836408 = .data:0x80836408; // type:object size:0x148 +lbl_80836550 = .data:0x80836550; // type:object size:0xB0 +lbl_80836600 = .data:0x80836600; // type:object size:0x4 +lbl_80836604 = .data:0x80836604; // type:object size:0x14 +lbl_80836618 = .data:0x80836618; // type:object size:0x20 +lbl_80836638 = .data:0x80836638; // type:object size:0x20 +lbl_80836658 = .data:0x80836658; // type:object size:0x20 +lbl_80836678 = .data:0x80836678; // type:object size:0x20 +lbl_80836698 = .data:0x80836698; // type:object size:0x88 +lbl_80836720 = .data:0x80836720; // type:object size:0xB8 +lbl_808367D8 = .data:0x808367D8; // type:object size:0x18 +lbl_808367F0 = .data:0x808367F0; // type:object size:0x18 +lbl_80836808 = .data:0x80836808; // type:object size:0x30 +__vt__6SongDB = .data:0x80836838; // type:object size:0x1C +lbl_80836854 = .data:0x80836854; // type:object size:0x8 +lbl_8083685C = .data:0x8083685C; // type:object size:0xC +__RTTI__6SongDB = .data:0x80836868; // type:object size:0x8 +__vt__14SongParserSink = .data:0x80836870; // type:object size:0x1C +lbl_8083688C = .data:0x8083688C; // type:object size:0x14 +__RTTI__14SongParserSink = .data:0x808368A0; // type:object size:0x8 +lbl_808368A8 = .data:0x808368A8; // type:object size:0x20 +lbl_808368C8 = .data:0x808368C8; // type:object size:0x10 +__vt__23UnisonStatMemberTracker = .data:0x808368D8; // type:object size:0x78 +lbl_80836950 = .data:0x80836950; // type:object size:0x18 data:string +lbl_80836968 = .data:0x80836968; // type:object size:0x18 +__RTTI__23UnisonStatMemberTracker = .data:0x80836980; // type:object size:0x8 +__vt__17StatMemberTracker = .data:0x80836988; // type:object size:0x74 +lbl_808369FC = .data:0x808369FC; // type:object size:0x14 +lbl_80836A10 = .data:0x80836A10; // type:object size:0x10 +__RTTI__17StatMemberTracker = .data:0x80836A20; // type:object size:0x8 +lbl_80836A28 = .data:0x80836A28; // type:object size:0x8 +lbl_80836A30 = .data:0x80836A30; // type:object size:0xE8 +lbl_80836B18 = .data:0x80836B18; // type:object size:0x4 +lbl_80836B1C = .data:0x80836B1C; // type:object size:0x30 +lbl_80836B4C = .data:0x80836B4C; // type:object size:0x4 +lbl_80836B50 = .data:0x80836B50; // type:object size:0x50 +lbl_80836BA0 = .data:0x80836BA0; // type:object size:0x8 +__vt__13StreakTracker = .data:0x80836BA8; // type:object size:0x58 +lbl_80836C00 = .data:0x80836C00; // type:object size:0x10 +lbl_80836C10 = .data:0x80836C10; // type:object size:0x10 +__RTTI__13StreakTracker = .data:0x80836C20; // type:object size:0x8 +__vt__18SyncGameStartPanel = .data:0x80836C28; // type:object size:0xBC +lbl_80836CE4 = .data:0x80836CE4; // type:object size:0x14 +lbl_80836CF8 = .data:0x80836CF8; // type:object size:0x20 +__RTTI__18SyncGameStartPanel = .data:0x80836D18; // type:object size:0x8 +__vt__19LockStepCompleteMsg = .data:0x80836D20; // type:object size:0xC +lbl_80836D2C = .data:0x80836D2C; // type:object size:0x14 data:string +lbl_80836D40 = .data:0x80836D40; // type:object size:0x10 +__RTTI__19LockStepCompleteMsg = .data:0x80836D50; // type:object size:0x8 +lbl_80836D58 = .data:0x80836D58; // type:object size:0xC +lbl_80836D64 = .data:0x80836D64; // type:object size:0x14 +lbl_80836D78 = .data:0x80836D78; // type:object size:0x10 +lbl_80836D88 = .data:0x80836D88; // type:object size:0x8 +lbl_80836D90 = .data:0x80836D90; // type:object size:0x8 +lbl_80836D98 = .data:0x80836D98; // type:object size:0x8 data:string +lbl_80836DA0 = .data:0x80836DA0; // type:object size:0x18 +lbl_80836DB8 = .data:0x80836DB8; // type:object size:0x10 data:string +lbl_80836DC8 = .data:0x80836DC8; // type:object size:0x10 data:string +lbl_80836DD8 = .data:0x80836DD8; // type:object size:0x68 +lbl_80836E40 = .data:0x80836E40; // type:object size:0x4 +__vt__17TambourineManager = .data:0x80836E44; // type:object size:0x5C +lbl_80836EA0 = .data:0x80836EA0; // type:object size:0x14 +lbl_80836EB4 = .data:0x80836EB4; // type:object size:0x14 +__RTTI__17TambourineManager = .data:0x80836EC8; // type:object size:0x8 +lbl_80836ED0 = .data:0x80836ED0; // type:object size:0xE8 +__vt__7Tracker = .data:0x80836FB8; // type:object size:0x58 +lbl_80837010 = .data:0x80837010; // type:object size:0x38 +lbl_80837048 = .data:0x80837048; // type:object size:0x18 +lbl_80837060 = .data:0x80837060; // type:object size:0x18 data:string +lbl_80837078 = .data:0x80837078; // type:object size:0x10 +lbl_80837088 = .data:0x80837088; // type:object size:0x8 +lbl_80837090 = .data:0x80837090; // type:object size:0x18 +lbl_808370A8 = .data:0x808370A8; // type:object size:0x18 +lbl_808370C0 = .data:0x808370C0; // type:object size:0x10 +lbl_808370D0 = .data:0x808370D0; // type:object size:0x8 +lbl_808370D8 = .data:0x808370D8; // type:object size:0x18 +lbl_808370F0 = .data:0x808370F0; // type:object size:0x14 +lbl_80837104 = .data:0x80837104; // type:object size:0xC +lbl_80837110 = .data:0x80837110; // type:object size:0x8 +lbl_80837118 = .data:0x80837118; // type:object size:0x18 +lbl_80837130 = .data:0x80837130; // type:object size:0x10 +lbl_80837140 = .data:0x80837140; // type:object size:0x8 +lbl_80837148 = .data:0x80837148; // type:object size:0x20 +jumptable_80837168 = .data:0x80837168; // type:object size:0x54 scope:local +jumptable_808371BC = .data:0x808371BC; // type:object size:0x34 scope:local +lbl_808371F0 = .data:0x808371F0; // type:object size:0x74 +lbl_80837264 = .data:0x80837264; // type:object size:0x1C +lbl_80837280 = .data:0x80837280; // type:object size:0x18 +lbl_80837298 = .data:0x80837298; // type:object size:0x8 +lbl_808372A0 = .data:0x808372A0; // type:object size:0x74 +lbl_80837314 = .data:0x80837314; // type:object size:0x24 +lbl_80837338 = .data:0x80837338; // type:object size:0x18 +lbl_80837350 = .data:0x80837350; // type:object size:0x8 +lbl_80837358 = .data:0x80837358; // type:object size:0x74 +lbl_808373CC = .data:0x808373CC; // type:object size:0x20 +lbl_808373EC = .data:0x808373EC; // type:object size:0x14 +lbl_80837400 = .data:0x80837400; // type:object size:0x8 +lbl_80837408 = .data:0x80837408; // type:object size:0x78 +lbl_80837480 = .data:0x80837480; // type:object size:0x3 data:string +lbl_80837483 = .data:0x80837483; // type:object size:0x1D data:string +lbl_808374A0 = .data:0x808374A0; // type:object size:0x18 +lbl_808374B8 = .data:0x808374B8; // type:object size:0x8 +lbl_808374C0 = .data:0x808374C0; // type:object size:0x74 +lbl_80837534 = .data:0x80837534; // type:object size:0x1C +lbl_80837550 = .data:0x80837550; // type:object size:0x18 +lbl_80837568 = .data:0x80837568; // type:object size:0x8 +lbl_80837570 = .data:0x80837570; // type:object size:0x78 +lbl_808375E8 = .data:0x808375E8; // type:object size:0x18 data:string +lbl_80837600 = .data:0x80837600; // type:object size:0x18 +lbl_80837618 = .data:0x80837618; // type:object size:0x8 +lbl_80837620 = .data:0x80837620; // type:object size:0x74 +lbl_80837694 = .data:0x80837694; // type:object size:0x20 +lbl_808376B4 = .data:0x808376B4; // type:object size:0x14 +lbl_808376C8 = .data:0x808376C8; // type:object size:0x8 +lbl_808376D0 = .data:0x808376D0; // type:object size:0x74 +lbl_80837744 = .data:0x80837744; // type:object size:0x18 +lbl_8083775C = .data:0x8083775C; // type:object size:0x14 +lbl_80837770 = .data:0x80837770; // type:object size:0x8 +lbl_80837778 = .data:0x80837778; // type:object size:0x20 +lbl_80837798 = .data:0x80837798; // type:object size:0x28 +lbl_808377C0 = .data:0x808377C0; // type:object size:0x14 +lbl_808377D4 = .data:0x808377D4; // type:object size:0xC +lbl_808377E0 = .data:0x808377E0; // type:object size:0x8 +lbl_808377E8 = .data:0x808377E8; // type:object size:0x28 +lbl_80837810 = .data:0x80837810; // type:object size:0x14 data:string +lbl_80837824 = .data:0x80837824; // type:object size:0xC +lbl_80837830 = .data:0x80837830; // type:object size:0x8 +lbl_80837838 = .data:0x80837838; // type:object size:0x28 +lbl_80837860 = .data:0x80837860; // type:object size:0x10 +lbl_80837870 = .data:0x80837870; // type:object size:0x8 +lbl_80837878 = .data:0x80837878; // type:object size:0x4 +lbl_8083787C = .data:0x8083787C; // type:object size:0x4 +lbl_80837880 = .data:0x80837880; // type:object size:0x8 +lbl_80837888 = .data:0x80837888; // type:object size:0x64 +lbl_808378EC = .data:0x808378EC; // type:object size:0x5DC +lbl_80837EC8 = .data:0x80837EC8; // type:object size:0x4 +lbl_80837ECC = .data:0x80837ECC; // type:object size:0x4 +__vt__12TrainerPanel = .data:0x80837ED0; // type:object size:0xDC +lbl_80837FAC = .data:0x80837FAC; // type:object size:0xDC +lbl_80838088 = .data:0x80838088; // type:object size:0x70 +lbl_808380F8 = .data:0x808380F8; // type:object size:0xC +lbl_80838104 = .data:0x80838104; // type:object size:0x44 +__RTTI__8UISlider = .data:0x80838148; // type:object size:0x8 +lbl_80838150 = .data:0x80838150; // type:object size:0x8 +lbl_80838158 = .data:0x80838158; // type:object size:0x60 +__RTTI__6UIList = .data:0x808381B8; // type:object size:0x8 +lbl_808381C0 = .data:0x808381C0; // type:object size:0x10 +__RTTI__12ScrollSelect = .data:0x808381D0; // type:object size:0x8 +lbl_808381D8 = .data:0x808381D8; // type:object size:0x18 +__RTTI__19UIListStateCallback = .data:0x808381F0; // type:object size:0x8 +lbl_808381F8 = .data:0x808381F8; // type:object size:0xC +lbl_80838204 = .data:0x80838204; // type:object size:0x1C +lbl_80838220 = .data:0x80838220; // type:object size:0x10 +lbl_80838230 = .data:0x80838230; // type:object size:0x8 +lbl_80838238 = .data:0x80838238; // type:object size:0xC +lbl_80838244 = .data:0x80838244; // type:object size:0x18 +lbl_8083825C = .data:0x8083825C; // type:object size:0xC +lbl_80838268 = .data:0x80838268; // type:object size:0x8 +lbl_80838270 = .data:0x80838270; // type:object size:0x28 +lbl_80838298 = .data:0x80838298; // type:object size:0x18 +lbl_808382B0 = .data:0x808382B0; // type:object size:0x10 +lbl_808382C0 = .data:0x808382C0; // type:object size:0x8 +lbl_808382C8 = .data:0x808382C8; // type:object size:0xC +lbl_808382D4 = .data:0x808382D4; // type:object size:0x18 +lbl_808382EC = .data:0x808382EC; // type:object size:0xC +lbl_808382F8 = .data:0x808382F8; // type:object size:0x8 +lbl_80838300 = .data:0x80838300; // type:object size:0x28 +lbl_80838328 = .data:0x80838328; // type:object size:0x18 +lbl_80838340 = .data:0x80838340; // type:object size:0x10 +lbl_80838350 = .data:0x80838350; // type:object size:0x8 +lbl_80838358 = .data:0x80838358; // type:object size:0x28 +lbl_80838380 = .data:0x80838380; // type:object size:0x18 +lbl_80838398 = .data:0x80838398; // type:object size:0x10 +lbl_808383A8 = .data:0x808383A8; // type:object size:0x8 +lbl_808383B0 = .data:0x808383B0; // type:object size:0x1C +lbl_808383CC = .data:0x808383CC; // type:object size:0x18 +lbl_808383E4 = .data:0x808383E4; // type:object size:0x18 +lbl_808383FC = .data:0x808383FC; // type:object size:0x18 +lbl_80838414 = .data:0x80838414; // type:object size:0x18 +lbl_8083842C = .data:0x8083842C; // type:object size:0x18 +lbl_80838444 = .data:0x80838444; // type:object size:0x18 +lbl_8083845C = .data:0x8083845C; // type:object size:0x18 +lbl_80838474 = .data:0x80838474; // type:object size:0x18 +lbl_8083848C = .data:0x8083848C; // type:object size:0x4 +__vt__16NetSyncScreenMsg = .data:0x80838490; // type:object size:0x94 +lbl_80838524 = .data:0x80838524; // type:object size:0x14 +lbl_80838538 = .data:0x80838538; // type:object size:0x38 +__RTTI__16NetSyncScreenMsg = .data:0x80838570; // type:object size:0x8 +__vt__15NetPopScreenMsg = .data:0x80838578; // type:object size:0x98 +lbl_80838610 = .data:0x80838610; // type:object size:0x10 data:string +lbl_80838620 = .data:0x80838620; // type:object size:0x38 +__RTTI__15NetPopScreenMsg = .data:0x80838658; // type:object size:0x8 +__vt__16NetPushScreenMsg = .data:0x80838660; // type:object size:0x94 +lbl_808386F4 = .data:0x808386F4; // type:object size:0x14 +lbl_80838708 = .data:0x80838708; // type:object size:0x38 +__RTTI__16NetPushScreenMsg = .data:0x80838740; // type:object size:0x8 +__vt__16NetGotoScreenMsg = .data:0x80838748; // type:object size:0x94 +lbl_808387DC = .data:0x808387DC; // type:object size:0x14 +lbl_808387F0 = .data:0x808387F0; // type:object size:0x38 +__RTTI__16NetGotoScreenMsg = .data:0x80838828; // type:object size:0x8 +__vt__18StartTransitionMsg = .data:0x80838830; // type:object size:0x94 +lbl_808388C4 = .data:0x808388C4; // type:object size:0x14 +lbl_808388D8 = .data:0x808388D8; // type:object size:0x30 +__RTTI__18StartTransitionMsg = .data:0x80838908; // type:object size:0x8 +__vt__8LockData = .data:0x80838910; // type:object size:0x68 +lbl_80838978 = .data:0x80838978; // type:object size:0xC +lbl_80838984 = .data:0x80838984; // type:object size:0x14 +__RTTI__8LockData = .data:0x80838998; // type:object size:0x8 +lbl_808389A0 = .data:0x808389A0; // type:object size:0x14 +lbl_808389B4 = .data:0x808389B4; // type:object size:0x14 +lbl_808389C8 = .data:0x808389C8; // type:object size:0x10 data:string +lbl_808389D8 = .data:0x808389D8; // type:object size:0x10 data:string +lbl_808389E8 = .data:0x808389E8; // type:object size:0x14 +lbl_808389FC = .data:0x808389FC; // type:object size:0x14 +lbl_80838A10 = .data:0x80838A10; // type:object size:0x14 +lbl_80838A24 = .data:0x80838A24; // type:object size:0x14 +lbl_80838A38 = .data:0x80838A38; // type:object size:0x10 +lbl_80838A48 = .data:0x80838A48; // type:object size:0x10 data:string +lbl_80838A58 = .data:0x80838A58; // type:object size:0x8 +lbl_80838A60 = .data:0x80838A60; // type:object size:0x30 +lbl_80838A90 = .data:0x80838A90; // type:object size:0x4 +lbl_80838A94 = .data:0x80838A94; // type:object size:0xEC +lbl_80838B80 = .data:0x80838B80; // type:object size:0xE8 +lbl_80838C68 = .data:0x80838C68; // type:object size:0x4 +lbl_80838C6C = .data:0x80838C6C; // type:object size:0x4 +lbl_80838C70 = .data:0x80838C70; // type:object size:0x88 +__vt__11ButtonUpMsg = .data:0x80838CF8; // type:object size:0xC +lbl_80838D04 = .data:0x80838D04; // type:object size:0xC data:string +lbl_80838D10 = .data:0x80838D10; // type:object size:0x10 +__RTTI__11ButtonUpMsg = .data:0x80838D20; // type:object size:0x8 +__vt__13ButtonDownMsg = .data:0x80838D28; // type:object size:0xC +lbl_80838D34 = .data:0x80838D34; // type:object size:0x10 +lbl_80838D44 = .data:0x80838D44; // type:object size:0xC +__RTTI__13ButtonDownMsg = .data:0x80838D50; // type:object size:0x70 +__vt__11VocalPlayer = .data:0x80838DC0; // type:object size:0x380 +__vt__Q210RndOverlay8Callback = .data:0x80839140; // type:object size:0xA8 +lbl_808391E8 = .data:0x808391E8; // type:object size:0x18 +lbl_80839200 = .data:0x80839200; // type:object size:0x60 +lbl_80839260 = .data:0x80839260; // type:object size:0xC +lbl_8083926C = .data:0x8083926C; // type:object size:0x2C +lbl_80839298 = .data:0x80839298; // type:object size:0x1C8 +lbl_80839460 = .data:0x80839460; // type:object size:0x8 +__vt__17VocalTrainerPanel = .data:0x80839468; // type:object size:0xDC +lbl_80839544 = .data:0x80839544; // type:object size:0x14 +lbl_80839558 = .data:0x80839558; // type:object size:0x28 +__RTTI__17VocalTrainerPanel = .data:0x80839580; // type:object size:0x8 +lbl_80839588 = .data:0x80839588; // type:object size:0x8 +lbl_80839590 = .data:0x80839590; // type:object size:0x8 data:string +lbl_80839598 = .data:0x80839598; // type:object size:0x20 +jumptable_808395B8 = .data:0x808395B8; // type:object size:0x28 scope:local +__vt__11PresenceMgr = .data:0x808395E0; // type:object size:0x5C +lbl_8083963C = .data:0x8083963C; // type:object size:0xC data:string +lbl_80839648 = .data:0x80839648; // type:object size:0x18 +__RTTI__11PresenceMgr = .data:0x80839660; // type:object size:0x8 +lbl_80839668 = .data:0x80839668; // type:object size:0x18 +lbl_80839680 = .data:0x80839680; // type:object size:0x50 +jumptable_808396D0 = .data:0x808396D0; // type:object size:0x30 scope:local +lbl_80839700 = .data:0x80839700; // type:object size:0x4 +lbl_80839704 = .data:0x80839704; // type:object size:0x18 +lbl_8083971C = .data:0x8083971C; // type:object size:0xC +lbl_80839728 = .data:0x80839728; // type:object size:0x8 +lbl_80839730 = .data:0x80839730; // type:object size:0x18 +lbl_80839748 = .data:0x80839748; // type:object size:0x18 +lbl_80839760 = .data:0x80839760; // type:object size:0x8 +lbl_80839768 = .data:0x80839768; // type:object size:0x1C +lbl_80839784 = .data:0x80839784; // type:object size:0xC +lbl_80839790 = .data:0x80839790; // type:object size:0x8 +__vt__21AccomplishmentManager = .data:0x80839798; // type:object size:0xA8 +lbl_80839840 = .data:0x80839840; // type:object size:0x18 +lbl_80839858 = .data:0x80839858; // type:object size:0x20 +__RTTI__21AccomplishmentManager = .data:0x80839878; // type:object size:0x8 +lbl_80839880 = .data:0x80839880; // type:object size:0x10 +lbl_80839890 = .data:0x80839890; // type:object size:0x8 +lbl_80839898 = .data:0x80839898; // type:object size:0xD8 +lbl_80839970 = .data:0x80839970; // type:object size:0x48 +__vt__22AccomplishmentProvider = .data:0x808399B8; // type:object size:0xBC +lbl_80839A74 = .data:0x80839A74; // type:object size:0x18 +lbl_80839A8C = .data:0x80839A8C; // type:object size:0x1C +__RTTI__22AccomplishmentProvider = .data:0x80839AA8; // type:object size:0x8 +__vt__27AccomplishmentEntryProvider = .data:0x80839AB0; // type:object size:0xBC +lbl_80839B6C = .data:0x80839B6C; // type:object size:0x1C data:string +lbl_80839B88 = .data:0x80839B88; // type:object size:0x20 +__RTTI__27AccomplishmentEntryProvider = .data:0x80839BA8; // type:object size:0x8 +__vt__30AccomplishmentCategoryProvider = .data:0x80839BB0; // type:object size:0xBC +lbl_80839C6C = .data:0x80839C6C; // type:object size:0x20 +lbl_80839C8C = .data:0x80839C8C; // type:object size:0x1C +__RTTI__30AccomplishmentCategoryProvider = .data:0x80839CA8; // type:object size:0x8 +__vt__27AccomplishmentGroupProvider = .data:0x80839CB0; // type:object size:0xBC +lbl_80839D6C = .data:0x80839D6C; // type:object size:0x1C data:string +lbl_80839D88 = .data:0x80839D88; // type:object size:0x20 +__RTTI__27AccomplishmentGroupProvider = .data:0x80839DA8; // type:object size:0x8 +lbl_80839DB0 = .data:0x80839DB0; // type:object size:0xC +lbl_80839DBC = .data:0x80839DBC; // type:object size:0x18 +lbl_80839DD4 = .data:0x80839DD4; // type:object size:0xC +lbl_80839DE0 = .data:0x80839DE0; // type:object size:0x8 +lbl_80839DE8 = .data:0x80839DE8; // type:object size:0x20 +lbl_80839E08 = .data:0x80839E08; // type:object size:0x10 +lbl_80839E18 = .data:0x80839E18; // type:object size:0x8 +lbl_80839E20 = .data:0x80839E20; // type:object size:0x24 data:string +lbl_80839E44 = .data:0x80839E44; // type:object size:0x1C +lbl_80839E60 = .data:0x80839E60; // type:object size:0x8 +lbl_80839E68 = .data:0x80839E68; // type:object size:0x20 +lbl_80839E88 = .data:0x80839E88; // type:object size:0x18 +lbl_80839EA0 = .data:0x80839EA0; // type:object size:0x8 +__vt__19AccomplishmentPanel = .data:0x80839EA8; // type:object size:0x10C +lbl_80839FB4 = .data:0x80839FB4; // type:object size:0x14 data:string +lbl_80839FC8 = .data:0x80839FC8; // type:object size:0x30 +__RTTI__19AccomplishmentPanel = .data:0x80839FF8; // type:object size:0x8 +lbl_8083A000 = .data:0x8083A000; // type:object size:0x10 +lbl_8083A010 = .data:0x8083A010; // type:object size:0x28 +__RTTI__12TexLoadPanel = .data:0x8083A038; // type:object size:0x8 +lbl_8083A040 = .data:0x8083A040; // type:object size:0x10 +lbl_8083A050 = .data:0x8083A050; // type:object size:0x40 +__RTTI__12MeterDisplay = .data:0x8083A090; // type:object size:0x8 +lbl_8083A098 = .data:0x8083A098; // type:object size:0xC +lbl_8083A0A4 = .data:0x8083A0A4; // type:object size:0xC data:string +lbl_8083A0B0 = .data:0x8083A0B0; // type:object size:0x8 +lbl_8083A0B8 = .data:0x8083A0B8; // type:object size:0xC +lbl_8083A0C4 = .data:0x8083A0C4; // type:object size:0x8 +lbl_8083A0CC = .data:0x8083A0CC; // type:object size:0xC +lbl_8083A0D8 = .data:0x8083A0D8; // type:object size:0x8 +lbl_8083A0E0 = .data:0x8083A0E0; // type:object size:0x8 +lbl_8083A0E8 = .data:0x8083A0E8; // type:object size:0x8 +lbl_8083A0F0 = .data:0x8083A0F0; // type:object size:0xC +lbl_8083A0FC = .data:0x8083A0FC; // type:object size:0x14 +lbl_8083A110 = .data:0x8083A110; // type:object size:0x10 data:string +lbl_8083A120 = .data:0x8083A120; // type:object size:0x8 +lbl_8083A128 = .data:0x8083A128; // type:object size:0xC +lbl_8083A134 = .data:0x8083A134; // type:object size:0x14 +lbl_8083A148 = .data:0x8083A148; // type:object size:0x14 data:string +lbl_8083A15C = .data:0x8083A15C; // type:object size:0xC +lbl_8083A168 = .data:0x8083A168; // type:object size:0x8 data:string +lbl_8083A170 = .data:0x8083A170; // type:object size:0x178 +__vt__24RockCentralOpCompleteMsg = .data:0x8083A2E8; // type:object size:0x68 +lbl_8083A350 = .data:0x8083A350; // type:object size:0x1C +lbl_8083A36C = .data:0x8083A36C; // type:object size:0x1C +__RTTI__24RockCentralOpCompleteMsg = .data:0x8083A388; // type:object size:0x8 +__vt__22AccomplishmentProgress = .data:0x8083A390; // type:object size:0x78 +lbl_8083A408 = .data:0x8083A408; // type:object size:0x18 +lbl_8083A420 = .data:0x8083A420; // type:object size:0x20 +__RTTI__22AccomplishmentProgress = .data:0x8083A440; // type:object size:0x8 +__vt__16GamerAwardStatus = .data:0x8083A448; // type:object size:0x14 +lbl_8083A45C = .data:0x8083A45C; // type:object size:0x14 +lbl_8083A470 = .data:0x8083A470; // type:object size:0x10 +__RTTI__16GamerAwardStatus = .data:0x8083A480; // type:object size:0x8 +lbl_8083A488 = .data:0x8083A488; // type:object size:0x20 +lbl_8083A4A8 = .data:0x8083A4A8; // type:object size:0x10 +lbl_8083A4B8 = .data:0x8083A4B8; // type:object size:0x48 +lbl_8083A500 = .data:0x8083A500; // type:object size:0x60 +lbl_8083A560 = .data:0x8083A560; // type:object size:0xC +lbl_8083A56C = .data:0x8083A56C; // type:object size:0x1C +lbl_8083A588 = .data:0x8083A588; // type:object size:0x8 +lbl_8083A590 = .data:0x8083A590; // type:object size:0x40 +lbl_8083A5D0 = .data:0x8083A5D0; // type:object size:0x48 +lbl_8083A618 = .data:0x8083A618; // type:object size:0x54 +lbl_8083A66C = .data:0x8083A66C; // type:object size:0x24 +lbl_8083A690 = .data:0x8083A690; // type:object size:0x20 +lbl_8083A6B0 = .data:0x8083A6B0; // type:object size:0x8 +lbl_8083A6B8 = .data:0x8083A6B8; // type:object size:0x8 +lbl_8083A6C0 = .data:0x8083A6C0; // type:object size:0x10 +lbl_8083A6D0 = .data:0x8083A6D0; // type:object size:0x18 +lbl_8083A6E8 = .data:0x8083A6E8; // type:object size:0x8 +lbl_8083A6F0 = .data:0x8083A6F0; // type:object size:0x40 +lbl_8083A730 = .data:0x8083A730; // type:object size:0x58 +lbl_8083A788 = .data:0x8083A788; // type:object size:0x28 data:string +lbl_8083A7B0 = .data:0x8083A7B0; // type:object size:0x28 +lbl_8083A7D8 = .data:0x8083A7D8; // type:object size:0x8 +lbl_8083A7E0 = .data:0x8083A7E0; // type:object size:0x24 +lbl_8083A804 = .data:0x8083A804; // type:object size:0x1C +lbl_8083A820 = .data:0x8083A820; // type:object size:0x8 +lbl_8083A828 = .data:0x8083A828; // type:object size:0x58 +lbl_8083A880 = .data:0x8083A880; // type:object size:0x28 data:string +lbl_8083A8A8 = .data:0x8083A8A8; // type:object size:0x28 +lbl_8083A8D0 = .data:0x8083A8D0; // type:object size:0x8 +lbl_8083A8D8 = .data:0x8083A8D8; // type:object size:0x48 +lbl_8083A920 = .data:0x8083A920; // type:object size:0x20 data:string +lbl_8083A940 = .data:0x8083A940; // type:object size:0x18 +lbl_8083A958 = .data:0x8083A958; // type:object size:0x8 +lbl_8083A960 = .data:0x8083A960; // type:object size:0x8 +lbl_8083A968 = .data:0x8083A968; // type:object size:0x48 +lbl_8083A9B0 = .data:0x8083A9B0; // type:object size:0x8 +lbl_8083A9B8 = .data:0x8083A9B8; // type:object size:0x58 +lbl_8083AA10 = .data:0x8083AA10; // type:object size:0x54 +lbl_8083AA64 = .data:0x8083AA64; // type:object size:0x4 +lbl_8083AA68 = .data:0x8083AA68; // type:object size:0x58 +lbl_8083AAC0 = .data:0x8083AAC0; // type:object size:0x48 +lbl_8083AB08 = .data:0x8083AB08; // type:object size:0x8 +lbl_8083AB10 = .data:0x8083AB10; // type:object size:0x50 +lbl_8083AB60 = .data:0x8083AB60; // type:object size:0x24 +lbl_8083AB84 = .data:0x8083AB84; // type:object size:0xC +lbl_8083AB90 = .data:0x8083AB90; // type:object size:0x8 +lbl_8083AB98 = .data:0x8083AB98; // type:object size:0x50 +lbl_8083ABE8 = .data:0x8083ABE8; // type:object size:0x28 +lbl_8083AC10 = .data:0x8083AC10; // type:object size:0x18 +lbl_8083AC28 = .data:0x8083AC28; // type:object size:0x8 +lbl_8083AC30 = .data:0x8083AC30; // type:object size:0x50 +lbl_8083AC80 = .data:0x8083AC80; // type:object size:0x2C +lbl_8083ACAC = .data:0x8083ACAC; // type:object size:0x14 +lbl_8083ACC0 = .data:0x8083ACC0; // type:object size:0x8 +lbl_8083ACC8 = .data:0x8083ACC8; // type:object size:0x8 +__vt__21AddLocalUserResultMsg = .data:0x8083ACD0; // type:object size:0xC +lbl_8083ACDC = .data:0x8083ACDC; // type:object size:0x18 +lbl_8083ACF4 = .data:0x8083ACF4; // type:object size:0xC +__RTTI__21AddLocalUserResultMsg = .data:0x8083AD00; // type:object size:0x8 +lbl_8083AD08 = .data:0x8083AD08; // type:object size:0xC +lbl_8083AD14 = .data:0x8083AD14; // type:object size:0x18 +lbl_8083AD2C = .data:0x8083AD2C; // type:object size:0xC +lbl_8083AD38 = .data:0x8083AD38; // type:object size:0x8 +__vt__13AppInlineHelp = .data:0x8083AD40; // type:object size:0x174 +lbl_8083AEB4 = .data:0x8083AEB4; // type:object size:0x10 +lbl_8083AEC4 = .data:0x8083AEC4; // type:object size:0x44 +__RTTI__13AppInlineHelp = .data:0x8083AF08; // type:object size:0x8 +lbl_8083AF10 = .data:0x8083AF10; // type:object size:0xC +lbl_8083AF1C = .data:0x8083AF1C; // type:object size:0x3C +__RTTI__10InlineHelp = .data:0x8083AF58; // type:object size:0x8 +__vt__16RndHighlightable = .data:0x8083AF60; // type:object size:0x6C +lbl_8083AFCC = .data:0x8083AFCC; // type:object size:0x1C +lbl_8083AFE8 = .data:0x8083AFE8; // type:object size:0x18 +lbl_8083B000 = .data:0x8083B000; // type:object size:0xC +lbl_8083B00C = .data:0x8083B00C; // type:object size:0xC +lbl_8083B018 = .data:0x8083B018; // type:object size:0x8 data:string +lbl_8083B020 = .data:0x8083B020; // type:object size:0x10 +lbl_8083B030 = .data:0x8083B030; // type:object size:0x28 +__RTTI__14StoreInfoPanel = .data:0x8083B058; // type:object size:0x8 +lbl_8083B060 = .data:0x8083B060; // type:object size:0x14 data:string +lbl_8083B074 = .data:0x8083B074; // type:object size:0x1C +__RTTI__19StoreArtLoaderPanel = .data:0x8083B090; // type:object size:0x8 +lbl_8083B098 = .data:0x8083B098; // type:object size:0x10 +lbl_8083B0A8 = .data:0x8083B0A8; // type:object size:0x28 +__RTTI__13MetaPerformer = .data:0x8083B0D0; // type:object size:0x8 +lbl_8083B0D8 = .data:0x8083B0D8; // type:object size:0x10 +lbl_8083B0E8 = .data:0x8083B0E8; // type:object size:0x20 +__RTTI__12MainHubPanel = .data:0x8083B108; // type:object size:0x8 +lbl_8083B110 = .data:0x8083B110; // type:object size:0x10 data:string +lbl_8083B120 = .data:0x8083B120; // type:object size:0x30 +__RTTI__15SetlistSortNode = .data:0x8083B150; // type:object size:0x8 +lbl_8083B158 = .data:0x8083B158; // type:object size:0x10 +lbl_8083B168 = .data:0x8083B168; // type:object size:0x30 +__RTTI__12SongSortNode = .data:0x8083B198; // type:object size:0x8 +lbl_8083B1A0 = .data:0x8083B1A0; // type:object size:0x10 +lbl_8083B1B0 = .data:0x8083B1B0; // type:object size:0x28 +__RTTI__12LeafSortNode = .data:0x8083B1D8; // type:object size:0x8 +lbl_8083B1E0 = .data:0x8083B1E0; // type:object size:0x14 +lbl_8083B1F4 = .data:0x8083B1F4; // type:object size:0x2C +__RTTI__17SubheaderSortNode = .data:0x8083B220; // type:object size:0x8 +lbl_8083B228 = .data:0x8083B228; // type:object size:0x10 +lbl_8083B238 = .data:0x8083B238; // type:object size:0x28 +__RTTI__14HeaderSortNode = .data:0x8083B260; // type:object size:0x8 +lbl_8083B268 = .data:0x8083B268; // type:object size:0xC +lbl_8083B274 = .data:0x8083B274; // type:object size:0x1C +__RTTI__8SortNode = .data:0x8083B290; // type:object size:0x8 +lbl_8083B298 = .data:0x8083B298; // type:object size:0x8 +lbl_8083B2A0 = .data:0x8083B2A0; // type:object size:0x18 +__RTTI__4Node = .data:0x8083B2B8; // type:object size:0x8 +lbl_8083B2C0 = .data:0x8083B2C0; // type:object size:0x10 +lbl_8083B2D0 = .data:0x8083B2D0; // type:object size:0x18 +__RTTI__13SetlistRecord = .data:0x8083B2E8; // type:object size:0x8 +lbl_8083B2F0 = .data:0x8083B2F0; // type:object size:0xC +lbl_8083B2FC = .data:0x8083B2FC; // type:object size:0x1C +lbl_8083B318 = .data:0x8083B318; // type:object size:0x8 +lbl_8083B320 = .data:0x8083B320; // type:object size:0x14 +lbl_8083B334 = .data:0x8083B334; // type:object size:0x14 +__RTTI__17StorePurchaseable = .data:0x8083B348; // type:object size:0x8 +__vt__8AppLabel = .data:0x8083B350; // type:object size:0x198 +lbl_8083B4E8 = .data:0x8083B4E8; // type:object size:0xC +lbl_8083B4F4 = .data:0x8083B4F4; // type:object size:0xC +lbl_8083B500 = .data:0x8083B500; // type:object size:0x8 data:string +lbl_8083B508 = .data:0x8083B508; // type:object size:0xB8 +lbl_8083B5C0 = .data:0x8083B5C0; // type:object size:0xF4 +lbl_8083B6B4 = .data:0x8083B6B4; // type:object size:0x18 +lbl_8083B6CC = .data:0x8083B6CC; // type:object size:0x2C +lbl_8083B6F8 = .data:0x8083B6F8; // type:object size:0x8 +lbl_8083B700 = .data:0x8083B700; // type:object size:0xC +lbl_8083B70C = .data:0x8083B70C; // type:object size:0x64 +__RTTI__8BandList = .data:0x8083B770; // type:object size:0x8 +lbl_8083B778 = .data:0x8083B778; // type:object size:0x14 +lbl_8083B78C = .data:0x8083B78C; // type:object size:0x24 +lbl_8083B7B0 = .data:0x8083B7B0; // type:object size:0x8 +__vt__25AppMiniLeaderboardDisplay = .data:0x8083B7B8; // type:object size:0x188 +lbl_8083B940 = .data:0x8083B940; // type:object size:0x1C +lbl_8083B95C = .data:0x8083B95C; // type:object size:0x4C +__RTTI__25AppMiniLeaderboardDisplay = .data:0x8083B9A8; // type:object size:0x8 +lbl_8083B9B0 = .data:0x8083B9B0; // type:object size:0xC data:string +lbl_8083B9BC = .data:0x8083B9BC; // type:object size:0x1C +__RTTI__11Leaderboard = .data:0x8083B9D8; // type:object size:0x8 +lbl_8083B9E0 = .data:0x8083B9E0; // type:object size:0x18 +lbl_8083B9F8 = .data:0x8083B9F8; // type:object size:0x18 +lbl_8083BA10 = .data:0x8083BA10; // type:object size:0x8 +lbl_8083BA18 = .data:0x8083BA18; // type:object size:0x18 +lbl_8083BA30 = .data:0x8083BA30; // type:object size:0x40 +__RTTI__22MiniLeaderboardDisplay = .data:0x8083BA70; // type:object size:0x8 +lbl_8083BA78 = .data:0x8083BA78; // type:object size:0x18 +lbl_8083BA90 = .data:0x8083BA90; // type:object size:0x8 +lbl_8083BA98 = .data:0x8083BA98; // type:object size:0x8 data:string +__vt__15AppScoreDisplay = .data:0x8083BAA0; // type:object size:0x188 +lbl_8083BC28 = .data:0x8083BC28; // type:object size:0x10 data:string +lbl_8083BC38 = .data:0x8083BC38; // type:object size:0x50 +__RTTI__15AppScoreDisplay = .data:0x8083BC88; // type:object size:0x8 +lbl_8083BC90 = .data:0x8083BC90; // type:object size:0x10 +lbl_8083BCA0 = .data:0x8083BCA0; // type:object size:0x48 +__RTTI__12ScoreDisplay = .data:0x8083BCE8; // type:object size:0x8 +lbl_8083BCF0 = .data:0x8083BCF0; // type:object size:0x18 +__RTTI__20UIListCustomTemplate = .data:0x8083BD08; // type:object size:0x8 +lbl_8083BD10 = .data:0x8083BD10; // type:object size:0x10 +lbl_8083BD20 = .data:0x8083BD20; // type:object size:0x8 +lbl_8083BD28 = .data:0x8083BD28; // type:object size:0x8 data:string +lbl_8083BD30 = .data:0x8083BD30; // type:object size:0xC +lbl_8083BD3C = .data:0x8083BD3C; // type:object size:0xC +lbl_8083BD48 = .data:0x8083BD48; // type:object size:0x8 +lbl_8083BD50 = .data:0x8083BD50; // type:object size:0x8 data:string +jumptable_8083BD58 = .data:0x8083BD58; // type:object size:0x50 scope:local +__vt__8AssetMgr = .data:0x8083BDA8; // type:object size:0x5C +lbl_8083BE04 = .data:0x8083BE04; // type:object size:0xC +lbl_8083BE10 = .data:0x8083BE10; // type:object size:0x18 +__RTTI__8AssetMgr = .data:0x8083BE28; // type:object size:0x8 +lbl_8083BE30 = .data:0x8083BE30; // type:object size:0x20 +__vt__13AssetProvider = .data:0x8083BE50; // type:object size:0xBC +lbl_8083BF0C = .data:0x8083BF0C; // type:object size:0x10 +lbl_8083BF1C = .data:0x8083BF1C; // type:object size:0x1C +__RTTI__13AssetProvider = .data:0x8083BF38; // type:object size:0x8 +lbl_8083BF40 = .data:0x8083BF40; // type:object size:0x38 +jumptable_8083BF78 = .data:0x8083BF78; // type:object size:0x50 scope:local +jumptable_8083BFC8 = .data:0x8083BFC8; // type:object size:0x28 scope:local +jumptable_8083BFF0 = .data:0x8083BFF0; // type:object size:0x50 scope:local +jumptable_8083C040 = .data:0x8083C040; // type:object size:0x50 scope:local +jumptable_8083C090 = .data:0x8083C090; // type:object size:0x4C scope:local +lbl_8083C0DC = .data:0x8083C0DC; // type:object size:0xBC +lbl_8083C198 = .data:0x8083C198; // type:object size:0x10 +lbl_8083C1A8 = .data:0x8083C1A8; // type:object size:0x8 +lbl_8083C1B0 = .data:0x8083C1B0; // type:object size:0x8 +lbl_8083C1B8 = .data:0x8083C1B8; // type:object size:0x20 +__vt__15BandNetGameData = .data:0x8083C1D8; // type:object size:0x80 +lbl_8083C258 = .data:0x8083C258; // type:object size:0x10 data:string +lbl_8083C268 = .data:0x8083C268; // type:object size:0x20 +__RTTI__15BandNetGameData = .data:0x8083C288; // type:object size:0x8 +lbl_8083C290 = .data:0x8083C290; // type:object size:0x20 +lbl_8083C2B0 = .data:0x8083C2B0; // type:object size:0x10 +lbl_8083C2C0 = .data:0x8083C2C0; // type:object size:0x8 +lbl_8083C2C8 = .data:0x8083C2C8; // type:object size:0x8 +__vt__16BandPreloadPanel = .data:0x8083C2D0; // type:object size:0x10C +lbl_8083C3DC = .data:0x8083C3DC; // type:object size:0x14 +lbl_8083C3F0 = .data:0x8083C3F0; // type:object size:0x30 +__RTTI__16BandPreloadPanel = .data:0x8083C420; // type:object size:0x8 +lbl_8083C428 = .data:0x8083C428; // type:object size:0x10 +lbl_8083C438 = .data:0x8083C438; // type:object size:0x28 +__RTTI__12PreloadPanel = .data:0x8083C460; // type:object size:0x8 +lbl_8083C468 = .data:0x8083C468; // type:object size:0x14 +lbl_8083C47C = .data:0x8083C47C; // type:object size:0xC +lbl_8083C488 = .data:0x8083C488; // type:object size:0x8 data:string +lbl_8083C490 = .data:0x8083C490; // type:object size:0x10 +lbl_8083C4A0 = .data:0x8083C4A0; // type:object size:0x4 +lbl_8083C4A4 = .data:0x8083C4A4; // type:object size:0x14 +lbl_8083C4B8 = .data:0x8083C4B8; // type:object size:0x30 +__RTTI__17LocalSavedSetlist = .data:0x8083C4E8; // type:object size:0x8 +lbl_8083C4F0 = .data:0x8083C4F0; // type:object size:0x10 +__RTTI__12SavedSetlist = .data:0x8083C500; // type:object size:0x8 +__vt__17ProfileChangedMsg = .data:0x8083C508; // type:object size:0xC +lbl_8083C514 = .data:0x8083C514; // type:object size:0x14 +lbl_8083C528 = .data:0x8083C528; // type:object size:0x10 +__RTTI__17ProfileChangedMsg = .data:0x8083C538; // type:object size:0x8 +__vt__11BandProfile = .data:0x8083C540; // type:object size:0x8C +lbl_8083C5CC = .data:0x8083C5CC; // type:object size:0x14 data:string +lbl_8083C5E0 = .data:0x8083C5E0; // type:object size:0x58 +__vt__10BandScreen = .data:0x8083C638; // type:object size:0x90 +lbl_8083C6C8 = .data:0x8083C6C8; // type:object size:0xC +lbl_8083C6D4 = .data:0x8083C6D4; // type:object size:0x1C +__RTTI__10BandScreen = .data:0x8083C6F0; // type:object size:0x8 +lbl_8083C6F8 = .data:0x8083C6F8; // type:object size:0xC +lbl_8083C704 = .data:0x8083C704; // type:object size:0xC +lbl_8083C710 = .data:0x8083C710; // type:object size:0x8 data:string +lbl_8083C718 = .data:0x8083C718; // type:object size:0x8 data:4byte +__vt__16BandSongMetadata = .data:0x8083C720; // type:object size:0x60 +lbl_8083C780 = .data:0x8083C780; // type:object size:0x14 +lbl_8083C794 = .data:0x8083C794; // type:object size:0x1C +__RTTI__16BandSongMetadata = .data:0x8083C7B0; // type:object size:0x8 +lbl_8083C7B8 = .data:0x8083C7B8; // type:object size:0x10 +lbl_8083C7C8 = .data:0x8083C7C8; // type:object size:0x18 +__RTTI__12SongMetadata = .data:0x8083C7E0; // type:object size:0x8 +lbl_8083C7E8 = .data:0x8083C7E8; // type:object size:0x48 +lbl_8083C830 = .data:0x8083C830; // type:object size:0x8 +__vt__11BandSongMgr = .data:0x8083C838; // type:object size:0x138 +lbl_8083C970 = .data:0x8083C970; // type:object size:0xC data:string +lbl_8083C97C = .data:0x8083C97C; // type:object size:0x2C +__RTTI__11BandSongMgr = .data:0x8083C9A8; // type:object size:0x8 +lbl_8083C9B0 = .data:0x8083C9B0; // type:object size:0x8 data:string +lbl_8083C9B8 = .data:0x8083C9B8; // type:object size:0x28 +__RTTI__7SongMgr = .data:0x8083C9E0; // type:object size:0x8 +lbl_8083C9E8 = .data:0x8083C9E8; // type:object size:0xF data:string +lbl_8083C9F7 = .data:0x8083C9F7; // type:object size:0xF data:string +lbl_8083CA06 = .data:0x8083CA06; // type:object size:0xD data:string +lbl_8083CA13 = .data:0x8083CA13; // type:object size:0xE data:string +lbl_8083CA21 = .data:0x8083CA21; // type:object size:0xDF +lbl_8083CB00 = .data:0x8083CB00; // type:object size:0x60 +lbl_8083CB60 = .data:0x8083CB60; // type:object size:0x10 +lbl_8083CB70 = .data:0x8083CB70; // type:object size:0x28 +lbl_8083CB98 = .data:0x8083CB98; // type:object size:0x8 +lbl_8083CBA0 = .data:0x8083CBA0; // type:object size:0x60 +lbl_8083CC00 = .data:0x8083CC00; // type:object size:0x1C +lbl_8083CC1C = .data:0x8083CC1C; // type:object size:0x14 +lbl_8083CC30 = .data:0x8083CC30; // type:object size:0x8 +lbl_8083CC38 = .data:0x8083CC38; // type:object size:0x10 +lbl_8083CC48 = .data:0x8083CC48; // type:object size:0x10 +lbl_8083CC58 = .data:0x8083CC58; // type:object size:0x8 +__vt__14BandStorePanel = .data:0x8083CC60; // type:object size:0x11C +lbl_8083CD7C = .data:0x8083CD7C; // type:object size:0x10 +lbl_8083CD8C = .data:0x8083CD8C; // type:object size:0x2C +__RTTI__14BandStorePanel = .data:0x8083CDB8; // type:object size:0x8 +lbl_8083CDC0 = .data:0x8083CDC0; // type:object size:0xC +lbl_8083CDCC = .data:0x8083CDCC; // type:object size:0x14 +lbl_8083CDE0 = .data:0x8083CDE0; // type:object size:0x10 +lbl_8083CDF0 = .data:0x8083CDF0; // type:object size:0x8 +lbl_8083CDF8 = .data:0x8083CDF8; // type:object size:0xC +lbl_8083CE04 = .data:0x8083CE04; // type:object size:0x1C +__RTTI__10StorePanel = .data:0x8083CE20; // type:object size:0x8 +lbl_8083CE28 = .data:0x8083CE28; // type:object size:0x10 +lbl_8083CE38 = .data:0x8083CE38; // type:object size:0x8 +lbl_8083CE40 = .data:0x8083CE40; // type:object size:0x8 data:string +lbl_8083CE48 = .data:0x8083CE48; // type:object size:0x10 data:string +lbl_8083CE58 = .data:0x8083CE58; // type:object size:0x58 +__vt__16BandStoreUIPanel = .data:0x8083CEB0; // type:object size:0xBC +lbl_8083CF6C = .data:0x8083CF6C; // type:object size:0x14 +lbl_8083CF80 = .data:0x8083CF80; // type:object size:0x20 +__RTTI__16BandStoreUIPanel = .data:0x8083CFA0; // type:object size:0x8 +lbl_8083CFA8 = .data:0x8083CFA8; // type:object size:0x10 data:string +lbl_8083CFB8 = .data:0x8083CFB8; // type:object size:0x20 +__RTTI__15HeldButtonPanel = .data:0x8083CFD8; // type:object size:0x8 +lbl_8083CFE0 = .data:0x8083CFE0; // type:object size:0x14 +lbl_8083CFF4 = .data:0x8083CFF4; // type:object size:0xC +lbl_8083D000 = .data:0x8083D000; // type:object size:0x8 data:string +jumptable_8083D008 = .data:0x8083D008; // type:object size:0x5C scope:local +lbl_8083D064 = .data:0x8083D064; // type:object size:0xC +lbl_8083D070 = .data:0x8083D070; // type:object size:0x18 data:string +lbl_8083D088 = .data:0x8083D088; // type:object size:0x10 +lbl_8083D098 = .data:0x8083D098; // type:object size:0x8 +lbl_8083D0A0 = .data:0x8083D0A0; // type:object size:0xC +lbl_8083D0AC = .data:0x8083D0AC; // type:object size:0x1C +lbl_8083D0C8 = .data:0x8083D0C8; // type:object size:0x10 +lbl_8083D0D8 = .data:0x8083D0D8; // type:object size:0x8 +lbl_8083D0E0 = .data:0x8083D0E0; // type:object size:0xC +lbl_8083D0EC = .data:0x8083D0EC; // type:object size:0x1C +lbl_8083D108 = .data:0x8083D108; // type:object size:0x10 +lbl_8083D118 = .data:0x8083D118; // type:object size:0x8 +lbl_8083D120 = .data:0x8083D120; // type:object size:0xC +lbl_8083D12C = .data:0x8083D12C; // type:object size:0x18 +lbl_8083D144 = .data:0x8083D144; // type:object size:0xC +lbl_8083D150 = .data:0x8083D150; // type:object size:0x8 +__vt__26ConnectionStatusChangedMsg = .data:0x8083D158; // type:object size:0xC +lbl_8083D164 = .data:0x8083D164; // type:object size:0x1C +lbl_8083D180 = .data:0x8083D180; // type:object size:0x10 +__RTTI__26ConnectionStatusChangedMsg = .data:0x8083D190; // type:object size:0x8 +lbl_8083D198 = .data:0x8083D198; // type:object size:0xC +lbl_8083D1A4 = .data:0x8083D1A4; // type:object size:0x10 +lbl_8083D1B4 = .data:0x8083D1B4; // type:object size:0xC +lbl_8083D1C0 = .data:0x8083D1C0; // type:object size:0x8 +lbl_8083D1C8 = .data:0x8083D1C8; // type:object size:0xC +lbl_8083D1D4 = .data:0x8083D1D4; // type:object size:0xC data:string +lbl_8083D1E0 = .data:0x8083D1E0; // type:object size:0x10 +lbl_8083D1F0 = .data:0x8083D1F0; // type:object size:0x8 +lbl_8083D1F8 = .data:0x8083D1F8; // type:object size:0xC +lbl_8083D204 = .data:0x8083D204; // type:object size:0x18 +lbl_8083D21C = .data:0x8083D21C; // type:object size:0xC +lbl_8083D228 = .data:0x8083D228; // type:object size:0x8 +lbl_8083D230 = .data:0x8083D230; // type:object size:0xC +lbl_8083D23C = .data:0x8083D23C; // type:object size:0x18 +lbl_8083D254 = .data:0x8083D254; // type:object size:0xC +lbl_8083D260 = .data:0x8083D260; // type:object size:0x8 +lbl_8083D268 = .data:0x8083D268; // type:object size:0xC +lbl_8083D274 = .data:0x8083D274; // type:object size:0x14 data:string +lbl_8083D288 = .data:0x8083D288; // type:object size:0x10 +lbl_8083D298 = .data:0x8083D298; // type:object size:0x8 +lbl_8083D2A0 = .data:0x8083D2A0; // type:object size:0x10 +lbl_8083D2B0 = .data:0x8083D2B0; // type:object size:0x30 +__RTTI__14OvershellPanel = .data:0x8083D2E0; // type:object size:0x8 +lbl_8083D2E8 = .data:0x8083D2E8; // type:object size:0x10 +lbl_8083D2F8 = .data:0x8083D2F8; // type:object size:0x20 data:string +lbl_8083D318 = .data:0x8083D318; // type:object size:0x10 +lbl_8083D328 = .data:0x8083D328; // type:object size:0x8 +lbl_8083D330 = .data:0x8083D330; // type:object size:0xC +lbl_8083D33C = .data:0x8083D33C; // type:object size:0x24 +lbl_8083D360 = .data:0x8083D360; // type:object size:0x10 +lbl_8083D370 = .data:0x8083D370; // type:object size:0x8 +__vt__6BandUI = .data:0x8083D378; // type:object size:0xC4 +lbl_8083D43C = .data:0x8083D43C; // type:object size:0x8 +lbl_8083D444 = .data:0x8083D444; // type:object size:0x24 +__RTTI__6BandUI = .data:0x8083D468; // type:object size:0x8 +lbl_8083D470 = .data:0x8083D470; // type:object size:0x10 +lbl_8083D480 = .data:0x8083D480; // type:object size:0x18 data:string +lbl_8083D498 = .data:0x8083D498; // type:object size:0x10 +lbl_8083D4A8 = .data:0x8083D4A8; // type:object size:0x8 +lbl_8083D4B0 = .data:0x8083D4B0; // type:object size:0xC +lbl_8083D4BC = .data:0x8083D4BC; // type:object size:0x14 +__RTTI__9UIManager = .data:0x8083D4D0; // type:object size:0x8 +lbl_8083D4D8 = .data:0x8083D4D8; // type:object size:0x18 +lbl_8083D4F0 = .data:0x8083D4F0; // type:object size:0x10 data:string +lbl_8083D500 = .data:0x8083D500; // type:object size:0x18 +lbl_8083D518 = .data:0x8083D518; // type:object size:0x14 +@STRING@Type__26ConnectionStatusChangedMsgFv = .data:0x8083D52C; // type:object size:0x1C +lbl_8083D548 = .data:0x8083D548; // type:object size:0xC +lbl_8083D554 = .data:0x8083D554; // type:object size:0xC +lbl_8083D560 = .data:0x8083D560; // type:object size:0x18 +lbl_8083D578 = .data:0x8083D578; // type:object size:0x18 +lbl_8083D590 = .data:0x8083D590; // type:object size:0x14 +lbl_8083D5A4 = .data:0x8083D5A4; // type:object size:0x24 data:string +lbl_8083D5C8 = .data:0x8083D5C8; // type:object size:0x28 +lbl_8083D5F0 = .data:0x8083D5F0; // type:object size:0x158 +lbl_8083D748 = .data:0x8083D748; // type:object size:0xC +lbl_8083D754 = .data:0x8083D754; // type:object size:0x44 +__RTTI__9UIPicture = .data:0x8083D798; // type:object size:0x8 +lbl_8083D7A0 = .data:0x8083D7A0; // type:object size:0xC +lbl_8083D7AC = .data:0x8083D7AC; // type:object size:0x1C +lbl_8083D7C8 = .data:0x8083D7C8; // type:object size:0x10 +lbl_8083D7D8 = .data:0x8083D7D8; // type:object size:0x8 +lbl_8083D7E0 = .data:0x8083D7E0; // type:object size:0xC +lbl_8083D7EC = .data:0x8083D7EC; // type:object size:0x14 +lbl_8083D800 = .data:0x8083D800; // type:object size:0x10 +lbl_8083D810 = .data:0x8083D810; // type:object size:0x8 +__vt__8Campaign = .data:0x8083D818; // type:object size:0x5C +lbl_8083D874 = .data:0x8083D874; // type:object size:0xC +lbl_8083D880 = .data:0x8083D880; // type:object size:0x18 +__RTTI__8Campaign = .data:0x8083D898; // type:object size:0x8 +lbl_8083D8A0 = .data:0x8083D8A0; // type:object size:0x20 +lbl_8083D8C0 = .data:0x8083D8C0; // type:object size:0x10 data:string +lbl_8083D8D0 = .data:0x8083D8D0; // type:object size:0x68 +lbl_8083D938 = .data:0x8083D938; // type:object size:0x10 +lbl_8083D948 = .data:0x8083D948; // type:object size:0x10 +lbl_8083D958 = .data:0x8083D958; // type:object size:0x8 +lbl_8083D960 = .data:0x8083D960; // type:object size:0x10 +lbl_8083D970 = .data:0x8083D970; // type:object size:0xF8 +lbl_8083DA68 = .data:0x8083DA68; // type:object size:0x20 data:string +lbl_8083DA88 = .data:0x8083DA88; // type:object size:0x30 +lbl_8083DAB8 = .data:0x8083DAB8; // type:object size:0x8 +lbl_8083DAC0 = .data:0x8083DAC0; // type:object size:0xF4 +lbl_8083DBB4 = .data:0x8083DBB4; // type:object size:0x20 +lbl_8083DBD4 = .data:0x8083DBD4; // type:object size:0x2C +lbl_8083DC00 = .data:0x8083DC00; // type:object size:0x8 +__vt__22CampaignSourceProvider = .data:0x8083DC08; // type:object size:0xBC +lbl_8083DCC4 = .data:0x8083DCC4; // type:object size:0x18 +lbl_8083DCDC = .data:0x8083DCDC; // type:object size:0x1C +__RTTI__22CampaignSourceProvider = .data:0x8083DCF8; // type:object size:0x8 +__vt__21CampaignSongInfoPanel = .data:0x8083DD00; // type:object size:0xBC +lbl_8083DDBC = .data:0x8083DDBC; // type:object size:0x18 +lbl_8083DDD4 = .data:0x8083DDD4; // type:object size:0x1C +__RTTI__21CampaignSongInfoPanel = .data:0x8083DDF0; // type:object size:0x8 +lbl_8083DDF8 = .data:0x8083DDF8; // type:object size:0x8 +lbl_8083DE00 = .data:0x8083DE00; // type:object size:0x18 +lbl_8083DE18 = .data:0x8083DE18; // type:object size:0x8 +lbl_8083DE20 = .data:0x8083DE20; // type:object size:0x8 data:string +lbl_8083DE28 = .data:0x8083DE28; // type:object size:0x20 +__vt__21KeyboardKeyPressedMsg = .data:0x8083DE48; // type:object size:0xC +lbl_8083DE54 = .data:0x8083DE54; // type:object size:0x18 +lbl_8083DE6C = .data:0x8083DE6C; // type:object size:0xC +__RTTI__21KeyboardKeyPressedMsg = .data:0x8083DE78; // type:object size:0x8 +lbl_8083DE80 = .data:0x8083DE80; // type:object size:0x10 +lbl_8083DE90 = .data:0x8083DE90; // type:object size:0x20 +__RTTI__12RndTransAnim = .data:0x8083DEB0; // type:object size:0x8 +__vt__23CalibrationWelcomePanel = .data:0x8083DEB8; // type:object size:0xC0 +lbl_8083DF78 = .data:0x8083DF78; // type:object size:0x18 data:string +lbl_8083DF90 = .data:0x8083DF90; // type:object size:0x20 +__RTTI__23CalibrationWelcomePanel = .data:0x8083DFB0; // type:object size:0x8 +__vt__24CalibrationModesProvider = .data:0x8083DFB8; // type:object size:0xC0 +lbl_8083E078 = .data:0x8083E078; // type:object size:0x1C +lbl_8083E094 = .data:0x8083E094; // type:object size:0x1C +__RTTI__24CalibrationModesProvider = .data:0x8083E0B0; // type:object size:0x8 +__vt__16CalibrationPanel = .data:0x8083E0B8; // type:object size:0xC0 +lbl_8083E178 = .data:0x8083E178; // type:object size:0x14 +lbl_8083E18C = .data:0x8083E18C; // type:object size:0x1C +__RTTI__16CalibrationPanel = .data:0x8083E1A8; // type:object size:0x8 +lbl_8083E1B0 = .data:0x8083E1B0; // type:object size:0x18 +lbl_8083E1C8 = .data:0x8083E1C8; // type:object size:0x18 data:string +lbl_8083E1E0 = .data:0x8083E1E0; // type:object size:0x8 +lbl_8083E1E8 = .data:0x8083E1E8; // type:object size:0x8 data:string +lbl_8083E1F0 = .data:0x8083E1F0; // type:object size:0x14 +lbl_8083E204 = .data:0x8083E204; // type:object size:0xC +lbl_8083E210 = .data:0x8083E210; // type:object size:0x8 data:string +lbl_8083E218 = .data:0x8083E218; // type:object size:0x308 +__vt__13CampaignLevel = .data:0x8083E520; // type:object size:0x10 +lbl_8083E530 = .data:0x8083E530; // type:object size:0x10 +__RTTI__13CampaignLevel = .data:0x8083E540; // type:object size:0x8 +lbl_8083E548 = .data:0x8083E548; // type:object size:0x48 +__vt__29CampaignGoalsLeaderboardPanel = .data:0x8083E590; // type:object size:0xF0 +lbl_8083E680 = .data:0x8083E680; // type:object size:0x20 +lbl_8083E6A0 = .data:0x8083E6A0; // type:object size:0x28 +__RTTI__29CampaignGoalsLeaderboardPanel = .data:0x8083E6C8; // type:object size:0x8 +lbl_8083E6D0 = .data:0x8083E6D0; // type:object size:0x20 +lbl_8083E6F0 = .data:0x8083E6F0; // type:object size:0x8 +lbl_8083E6F8 = .data:0x8083E6F8; // type:object size:0x8 data:string +lbl_8083E700 = .data:0x8083E700; // type:object size:0x38 +__vt__30CampaignCareerLeaderboardPanel = .data:0x8083E738; // type:object size:0xF0 +lbl_8083E828 = .data:0x8083E828; // type:object size:0x20 +lbl_8083E848 = .data:0x8083E848; // type:object size:0x28 +__RTTI__30CampaignCareerLeaderboardPanel = .data:0x8083E870; // type:object size:0x8 +lbl_8083E878 = .data:0x8083E878; // type:object size:0x20 +lbl_8083E898 = .data:0x8083E898; // type:object size:0x8 +lbl_8083E8A0 = .data:0x8083E8A0; // type:object size:0x8 data:string +lbl_8083E8A8 = .data:0x8083E8A8; // type:object size:0x38 +__vt__38CampaignGoalsLeaderboardChoiceProvider = .data:0x8083E8E0; // type:object size:0xBC +lbl_8083E99C = .data:0x8083E99C; // type:object size:0x28 +lbl_8083E9C4 = .data:0x8083E9C4; // type:object size:0x1C +__RTTI__38CampaignGoalsLeaderboardChoiceProvider = .data:0x8083E9E0; // type:object size:0x8 +__vt__35CampaignGoalsLeaderboardChoicePanel = .data:0x8083E9E8; // type:object size:0x10C +lbl_8083EAF4 = .data:0x8083EAF4; // type:object size:0x24 data:string +lbl_8083EB18 = .data:0x8083EB18; // type:object size:0x30 +__RTTI__35CampaignGoalsLeaderboardChoicePanel = .data:0x8083EB48; // type:object size:0x8 +lbl_8083EB50 = .data:0x8083EB50; // type:object size:0x8 +lbl_8083EB58 = .data:0x8083EB58; // type:object size:0x8 +lbl_8083EB60 = .data:0x8083EB60; // type:object size:0x24 data:string +lbl_8083EB84 = .data:0x8083EB84; // type:object size:0xC +lbl_8083EB90 = .data:0x8083EB90; // type:object size:0x8 data:string +lbl_8083EB98 = .data:0x8083EB98; // type:object size:0x20 +lbl_8083EBB8 = .data:0x8083EBB8; // type:object size:0x48 +lbl_8083EC00 = .data:0x8083EC00; // type:object size:0x4 +lbl_8083EC04 = .data:0x8083EC04; // type:object size:0x4 +__vt__19FaceOptionsProvider = .data:0x8083EC08; // type:object size:0xBC +lbl_8083ECC4 = .data:0x8083ECC4; // type:object size:0x14 data:string +lbl_8083ECD8 = .data:0x8083ECD8; // type:object size:0x20 +__RTTI__19FaceOptionsProvider = .data:0x8083ECF8; // type:object size:0x8 +__vt__21CharacterCreatorPanel = .data:0x8083ED00; // type:object size:0x110 +lbl_8083EE10 = .data:0x8083EE10; // type:object size:0x18 +lbl_8083EE28 = .data:0x8083EE28; // type:object size:0x30 +__RTTI__21CharacterCreatorPanel = .data:0x8083EE58; // type:object size:0x8 +lbl_8083EE60 = .data:0x8083EE60; // type:object size:0xC +lbl_8083EE6C = .data:0x8083EE6C; // type:object size:0x8 +lbl_8083EE74 = .data:0x8083EE74; // type:object size:0x18 +lbl_8083EE8C = .data:0x8083EE8C; // type:object size:0xC +lbl_8083EE98 = .data:0x8083EE98; // type:object size:0x8 data:string +lbl_8083EEA0 = .data:0x8083EEA0; // type:object size:0x100 +lbl_8083EFA0 = .data:0x8083EFA0; // type:object size:0xC +lbl_8083EFAC = .data:0x8083EFAC; // type:object size:0x1C +__RTTI__10PatchPanel = .data:0x8083EFC8; // type:object size:0x8 +lbl_8083EFD0 = .data:0x8083EFD0; // type:object size:0x10 +lbl_8083EFE0 = .data:0x8083EFE0; // type:object size:0x28 +__RTTI__14CustomizePanel = .data:0x8083F008; // type:object size:0x8 +__vt__9CharCache = .data:0x8083F010; // type:object size:0x5C +lbl_8083F06C = .data:0x8083F06C; // type:object size:0xC +lbl_8083F078 = .data:0x8083F078; // type:object size:0x18 +__RTTI__9CharCache = .data:0x8083F090; // type:object size:0x8 +lbl_8083F098 = .data:0x8083F098; // type:object size:0xC +lbl_8083F0A4 = .data:0x8083F0A4; // type:object size:0x5C +__RTTI__8PatchDir = .data:0x8083F100; // type:object size:0x8 +lbl_8083F108 = .data:0x8083F108; // type:object size:0x8 +lbl_8083F110 = .data:0x8083F110; // type:object size:0x18 +__RTTI__6RndTex = .data:0x8083F128; // type:object size:0x8 +lbl_8083F130 = .data:0x8083F130; // type:object size:0x88 +__vt__10PrefabChar = .data:0x8083F1B8; // type:object size:0x88 +__vt__8CharData = .data:0x8083F240; // type:object size:0x88 +lbl_8083F2C8 = .data:0x8083F2C8; // type:object size:0xC +lbl_8083F2D4 = .data:0x8083F2D4; // type:object size:0xC +__RTTI__10FileLoader = .data:0x8083F2E0; // type:object size:0x8 +lbl_8083F2E8 = .data:0x8083F2E8; // type:object size:0x8 +__RTTI__6Loader = .data:0x8083F2F0; // type:object size:0x8 +lbl_8083F2F8 = .data:0x8083F2F8; // type:object size:0x8 +lbl_8083F300 = .data:0x8083F300; // type:object size:0x8 +__vt__8CharSync = .data:0x8083F308; // type:object size:0x5C +lbl_8083F364 = .data:0x8083F364; // type:object size:0xC +lbl_8083F370 = .data:0x8083F370; // type:object size:0x18 +__RTTI__8CharSync = .data:0x8083F388; // type:object size:0x8 +lbl_8083F390 = .data:0x8083F390; // type:object size:0x10 +lbl_8083F3A0 = .data:0x8083F3A0; // type:object size:0x40 +__vt__12CharProvider = .data:0x8083F3E0; // type:object size:0xC0 +lbl_8083F4A0 = .data:0x8083F4A0; // type:object size:0x10 +lbl_8083F4B0 = .data:0x8083F4B0; // type:object size:0x20 +__RTTI__12CharProvider = .data:0x8083F4D0; // type:object size:0x8 +lbl_8083F4D8 = .data:0x8083F4D8; // type:object size:0x30 +__vt__16ChooseColorPanel = .data:0x8083F508; // type:object size:0xC0 +lbl_8083F5C8 = .data:0x8083F5C8; // type:object size:0x14 +lbl_8083F5DC = .data:0x8083F5DC; // type:object size:0x1C +__RTTI__16ChooseColorPanel = .data:0x8083F5F8; // type:object size:0x8 +lbl_8083F600 = .data:0x8083F600; // type:object size:0x14 +lbl_8083F614 = .data:0x8083F614; // type:object size:0xC +lbl_8083F620 = .data:0x8083F620; // type:object size:0x8 data:string +jumptable_8083F628 = .data:0x8083F628; // type:object size:0x50 scope:local +lbl_8083F678 = .data:0x8083F678; // type:object size:0xC data:string +lbl_8083F684 = .data:0x8083F684; // type:object size:0x24 +__RTTI__11ClosetPanel = .data:0x8083F6A8; // type:object size:0x8 +lbl_8083F6B0 = .data:0x8083F6B0; // type:object size:0x10 +lbl_8083F6C0 = .data:0x8083F6C0; // type:object size:0x20 +__RTTI__13DeJitterPanel = .data:0x8083F6E0; // type:object size:0x8 +__vt__9ClosetMgr = .data:0x8083F6E8; // type:object size:0x80 +lbl_8083F768 = .data:0x8083F768; // type:object size:0xC +lbl_8083F774 = .data:0x8083F774; // type:object size:0x1C +__RTTI__9ClosetMgr = .data:0x8083F790; // type:object size:0x8 +lbl_8083F798 = .data:0x8083F798; // type:object size:0xC +lbl_8083F7A4 = .data:0x8083F7A4; // type:object size:0x14 +lbl_8083F7B8 = .data:0x8083F7B8; // type:object size:0x10 +lbl_8083F7C8 = .data:0x8083F7C8; // type:object size:0x8 +lbl_8083F7D0 = .data:0x8083F7D0; // type:object size:0xC +lbl_8083F7DC = .data:0x8083F7DC; // type:object size:0x1C data:string +lbl_8083F7F8 = .data:0x8083F7F8; // type:object size:0x10 +lbl_8083F808 = .data:0x8083F808; // type:object size:0x8 +lbl_8083F810 = .data:0x8083F810; // type:object size:0x18 +lbl_8083F828 = .data:0x8083F828; // type:object size:0x20 +lbl_8083F848 = .data:0x8083F848; // type:object size:0xD8 +lbl_8083F920 = .data:0x8083F920; // type:object size:0x8 data:string +lbl_8083F928 = .data:0x8083F928; // type:object size:0x20 +__RTTI__7CamShot = .data:0x8083F948; // type:object size:0x8 +lbl_8083F950 = .data:0x8083F950; // type:object size:0x10 +lbl_8083F960 = .data:0x8083F960; // type:object size:0x38 +__RTTI__14RndTexRenderer = .data:0x8083F998; // type:object size:0x8 +__vt__11ClosetPanel = .data:0x8083F9A0; // type:object size:0xBC +lbl_8083FA5C = .data:0x8083FA5C; // type:object size:0xC data:string +lbl_8083FA68 = .data:0x8083FA68; // type:object size:0x8 +lbl_8083FA70 = .data:0x8083FA70; // type:object size:0x8 data:string +lbl_8083FA78 = .data:0x8083FA78; // type:object size:0x18 +__vt__18ContentDeletePanel = .data:0x8083FA90; // type:object size:0x10C +lbl_8083FB9C = .data:0x8083FB9C; // type:object size:0x14 +lbl_8083FBB0 = .data:0x8083FBB0; // type:object size:0x28 +__RTTI__18ContentDeletePanel = .data:0x8083FBD8; // type:object size:0x8 +lbl_8083FBE0 = .data:0x8083FBE0; // type:object size:0x14 +lbl_8083FBF4 = .data:0x8083FBF4; // type:object size:0xC +lbl_8083FC00 = .data:0x8083FC00; // type:object size:0x8 data:string +lbl_8083FC08 = .data:0x8083FC08; // type:object size:0xC +lbl_8083FC14 = .data:0x8083FC14; // type:object size:0x2C +__RTTI__9UITrigger = .data:0x8083FC40; // type:object size:0x8 +__vt__19ContentLoadingPanel = .data:0x8083FC48; // type:object size:0x11C +lbl_8083FD64 = .data:0x8083FD64; // type:object size:0x14 data:string +lbl_8083FD78 = .data:0x8083FD78; // type:object size:0x28 +__RTTI__19ContentLoadingPanel = .data:0x8083FDA0; // type:object size:0x8 +lbl_8083FDA8 = .data:0x8083FDA8; // type:object size:0x14 data:string +lbl_8083FDBC = .data:0x8083FDBC; // type:object size:0xC +lbl_8083FDC8 = .data:0x8083FDC8; // type:object size:0x8 data:string +lbl_8083FDD0 = .data:0x8083FDD0; // type:object size:0x68 +lbl_8083FE38 = .data:0x8083FE38; // type:object size:0x4 data:4byte +lbl_8083FE3C = .data:0x8083FE3C; // type:object size:0x124 +__vt__20CriticalUserListener = .data:0x8083FF60; // type:object size:0x5C +lbl_8083FFBC = .data:0x8083FFBC; // type:object size:0x18 +lbl_8083FFD4 = .data:0x8083FFD4; // type:object size:0x14 +__RTTI__20CriticalUserListener = .data:0x8083FFE8; // type:object size:0x8 +lbl_8083FFF0 = .data:0x8083FFF0; // type:object size:0x20 +__vt__21CurrentOutfitProvider = .data:0x80840010; // type:object size:0xBC +lbl_808400CC = .data:0x808400CC; // type:object size:0x18 +lbl_808400E4 = .data:0x808400E4; // type:object size:0x1C +__RTTI__21CurrentOutfitProvider = .data:0x80840100; // type:object size:0x8 +lbl_80840108 = .data:0x80840108; // type:object size:0x28 +lbl_80840130 = .data:0x80840130; // type:object size:0xC8 +lbl_808401F8 = .data:0x808401F8; // type:object size:0x94 +jumptable_8084028C = .data:0x8084028C; // type:object size:0x94 scope:local +jumptable_80840320 = .data:0x80840320; // type:object size:0x50 scope:local +jumptable_80840370 = .data:0x80840370; // type:object size:0x50 scope:local +jumptable_808403E0 = .data:0x808403E0; // type:object size:0x50 scope:local +jumptable_80840430 = .data:0x80840430; // type:object size:0x80 scope:local +jumptable_808404B0 = .data:0x808404B0; // type:object size:0x90 scope:local +__vt__14CustomizePanel = .data:0x808406E8; // type:object size:0x2E4 +lbl_808409CC = .data:0x808409CC; // type:object size:0x10 +lbl_808409DC = .data:0x808409DC; // type:object size:0xC +lbl_808409E8 = .data:0x808409E8; // type:object size:0x8 data:string +lbl_808409F0 = .data:0x808409F0; // type:object size:0xD8 +__vt__23CymbalSelectionProvider = .data:0x80840AC8; // type:object size:0xC0 +lbl_80840B88 = .data:0x80840B88; // type:object size:0x18 data:string +lbl_80840BA0 = .data:0x80840BA0; // type:object size:0x20 +__RTTI__23CymbalSelectionProvider = .data:0x80840BC0; // type:object size:0x8 +jumptable_80840BC8 = .data:0x80840BC8; // type:object size:0x20 scope:local +jumptable_80840BE8 = .data:0x80840BE8; // type:object size:0x24 scope:local +__vt__16EditSetlistPanel = .data:0x80840C10; // type:object size:0xC0 +lbl_80840CD0 = .data:0x80840CD0; // type:object size:0x14 +lbl_80840CE4 = .data:0x80840CE4; // type:object size:0x1C +lbl_80840D00 = .data:0x80840D00; // type:object size:0x8 +lbl_80840D08 = .data:0x80840D08; // type:object size:0x14 +lbl_80840D1C = .data:0x80840D1C; // type:object size:0xC +lbl_80840D28 = .data:0x80840D28; // type:object size:0x8 data:string +lbl_80840D30 = .data:0x80840D30; // type:object size:0x20 +__vt__16EventDialogPanel = .data:0x80840D50; // type:object size:0xBC +lbl_80840E0C = .data:0x80840E0C; // type:object size:0x14 +lbl_80840E20 = .data:0x80840E20; // type:object size:0x20 +__RTTI__16EventDialogPanel = .data:0x80840E40; // type:object size:0x8 +lbl_80840E48 = .data:0x80840E48; // type:object size:0x14 +lbl_80840E5C = .data:0x80840E5C; // type:object size:0xC +lbl_80840E68 = .data:0x80840E68; // type:object size:0x8 data:string +lbl_80840E70 = .data:0x80840E70; // type:object size:0x18 +__vt__16EyebrowsProvider = .data:0x80840E88; // type:object size:0xBC +lbl_80840F44 = .data:0x80840F44; // type:object size:0x14 +lbl_80840F58 = .data:0x80840F58; // type:object size:0x20 +__RTTI__16EyebrowsProvider = .data:0x80840F78; // type:object size:0x8 +lbl_80840F80 = .data:0x80840F80; // type:object size:0x18 +__vt__16FaceHairProvider = .data:0x80840F98; // type:object size:0xBC +lbl_80841054 = .data:0x80841054; // type:object size:0x14 +lbl_80841068 = .data:0x80841068; // type:object size:0x20 +__RTTI__16FaceHairProvider = .data:0x80841088; // type:object size:0x8 +lbl_80841090 = .data:0x80841090; // type:object size:0x10 +__vt__16FaceTypeProvider = .data:0x808410A0; // type:object size:0xBC +lbl_8084115C = .data:0x8084115C; // type:object size:0x14 +lbl_80841170 = .data:0x80841170; // type:object size:0x20 +__RTTI__16FaceTypeProvider = .data:0x80841190; // type:object size:0x8 +lbl_80841198 = .data:0x80841198; // type:object size:0x8 +__vt__15GameplayOptions = .data:0x808411A0; // type:object size:0x90 +lbl_80841230 = .data:0x80841230; // type:object size:0x10 data:string +lbl_80841240 = .data:0x80841240; // type:object size:0x20 +__RTTI__15GameplayOptions = .data:0x80841260; // type:object size:0x8 +__vt__13GameTimePanel = .data:0x80841268; // type:object size:0xBC +lbl_80841324 = .data:0x80841324; // type:object size:0x10 +lbl_80841334 = .data:0x80841334; // type:object size:0x1C +__RTTI__13GameTimePanel = .data:0x80841350; // type:object size:0x8 +lbl_80841358 = .data:0x80841358; // type:object size:0x10 +lbl_80841368 = .data:0x80841368; // type:object size:0x8 +lbl_80841370 = .data:0x80841370; // type:object size:0x8 data:string +lbl_80841378 = .data:0x80841378; // type:object size:0x8 +lbl_80841380 = .data:0x80841380; // type:object size:0x10 data:string +lbl_80841390 = .data:0x80841390; // type:object size:0x10 +lbl_808413A0 = .data:0x808413A0; // type:object size:0x8 +__vt__21SetlistScoresProvider = .data:0x808413A8; // type:object size:0xC0 +lbl_80841468 = .data:0x80841468; // type:object size:0x18 +lbl_80841480 = .data:0x80841480; // type:object size:0x20 +__RTTI__21SetlistScoresProvider = .data:0x808414A0; // type:object size:0x8 +lbl_808414A8 = .data:0x808414A8; // type:object size:0x10 +__vt__8InputMgr = .data:0x808414B8; // type:object size:0x80 +lbl_80841538 = .data:0x80841538; // type:object size:0xC +lbl_80841544 = .data:0x80841544; // type:object size:0x1C +__RTTI__8InputMgr = .data:0x80841560; // type:object size:0x8 +lbl_80841568 = .data:0x80841568; // type:object size:0xC +lbl_80841574 = .data:0x80841574; // type:object size:0x14 +lbl_80841588 = .data:0x80841588; // type:object size:0x10 +lbl_80841598 = .data:0x80841598; // type:object size:0x8 +lbl_808415A0 = .data:0x808415A0; // type:object size:0x10 data:string +lbl_808415B0 = .data:0x808415B0; // type:object size:0x10 +__vt__9Instarank = .data:0x808415C0; // type:object size:0x68 +lbl_80841628 = .data:0x80841628; // type:object size:0xC +lbl_80841634 = .data:0x80841634; // type:object size:0x14 +__RTTI__9Instarank = .data:0x80841648; // type:object size:0x8 +lbl_80841650 = .data:0x80841650; // type:object size:0x8 +__vt__24InstrumentFinishProvider = .data:0x80841658; // type:object size:0xBC +lbl_80841714 = .data:0x80841714; // type:object size:0x1C +lbl_80841730 = .data:0x80841730; // type:object size:0x20 +__RTTI__24InstrumentFinishProvider = .data:0x80841750; // type:object size:0x8 +lbl_80841758 = .data:0x80841758; // type:object size:0x10 +__vt__15InterstitialMgr = .data:0x80841768; // type:object size:0x80 +lbl_808417E8 = .data:0x808417E8; // type:object size:0x10 data:string +lbl_808417F8 = .data:0x808417F8; // type:object size:0x20 +__RTTI__15InterstitialMgr = .data:0x80841818; // type:object size:0x8 +lbl_80841820 = .data:0x80841820; // type:object size:0x68 +__vt__13BackdropPanel = .data:0x80841888; // type:object size:0xBC +lbl_80841944 = .data:0x80841944; // type:object size:0x10 +lbl_80841954 = .data:0x80841954; // type:object size:0x24 +__RTTI__13BackdropPanel = .data:0x80841978; // type:object size:0x8 +__vt__17InterstitialPanel = .data:0x80841980; // type:object size:0xBC +lbl_80841A3C = .data:0x80841A3C; // type:object size:0x14 +lbl_80841A50 = .data:0x80841A50; // type:object size:0x28 +__RTTI__17InterstitialPanel = .data:0x80841A78; // type:object size:0x8 +lbl_80841A80 = .data:0x80841A80; // type:object size:0x10 +lbl_80841A90 = .data:0x80841A90; // type:object size:0x8 +lbl_80841A98 = .data:0x80841A98; // type:object size:0x8 data:string +lbl_80841AA0 = .data:0x80841AA0; // type:object size:0x14 +lbl_80841AB4 = .data:0x80841AB4; // type:object size:0xC +lbl_80841AC0 = .data:0x80841AC0; // type:object size:0x8 data:string +lbl_80841AC8 = .data:0x80841AC8; // type:object size:0x38 +jumptable_80841B00 = .data:0x80841B00; // type:object size:0x2C scope:local +jumptable_80841B2C = .data:0x80841B2C; // type:object size:0x24 scope:local +__vt__15JoinInvitePanel = .data:0x80841B50; // type:object size:0xC0 +lbl_80841C10 = .data:0x80841C10; // type:object size:0x10 data:string +lbl_80841C20 = .data:0x80841C20; // type:object size:0x20 +__RTTI__15JoinInvitePanel = .data:0x80841C40; // type:object size:0x8 +lbl_80841C48 = .data:0x80841C48; // type:object size:0x10 data:string +lbl_80841C58 = .data:0x80841C58; // type:object size:0x8 +lbl_80841C60 = .data:0x80841C60; // type:object size:0x8 data:string +lbl_80841C68 = .data:0x80841C68; // type:object size:0x228 +lbl_80841E90 = .data:0x80841E90; // type:object size:0x8 +__vt__27LeaderboardShortcutProvider = .data:0x80841E98; // type:object size:0xC0 +lbl_80841F58 = .data:0x80841F58; // type:object size:0x1C data:string +lbl_80841F74 = .data:0x80841F74; // type:object size:0x1C +__RTTI__27LeaderboardShortcutProvider = .data:0x80841F90; // type:object size:0x8 +__vt__11Leaderboard = .data:0x80841F98; // type:object size:0xF8 +lbl_80842090 = .data:0x80842090; // type:object size:0x8 data:string +lbl_80842098 = .data:0x80842098; // type:object size:0x18 +__RTTI__7UIColor = .data:0x808420B0; // type:object size:0x8 +lbl_808420B8 = .data:0x808420B8; // type:object size:0xD0 +__vt__9LessonMgr = .data:0x80842188; // type:object size:0x5C +lbl_808421E4 = .data:0x808421E4; // type:object size:0xC +lbl_808421F0 = .data:0x808421F0; // type:object size:0x18 +__RTTI__9LessonMgr = .data:0x80842208; // type:object size:0x8 +lbl_80842210 = .data:0x80842210; // type:object size:0x28 +lbl_80842238 = .data:0x80842238; // type:object size:0x10 data:string +lbl_80842248 = .data:0x80842248; // type:object size:0x40 +__RTTI__15CheckboxDisplay = .data:0x80842288; // type:object size:0x8 +__vt__14LessonProvider = .data:0x80842290; // type:object size:0xBC +lbl_8084234C = .data:0x8084234C; // type:object size:0x10 +lbl_8084235C = .data:0x8084235C; // type:object size:0x1C +__RTTI__14LessonProvider = .data:0x80842378; // type:object size:0x8 +lbl_80842380 = .data:0x80842380; // type:object size:0x40 +__vt__10LicenseMgr = .data:0x808423C0; // type:object size:0x44 +lbl_80842404 = .data:0x80842404; // type:object size:0xC +__RTTI__10LicenseMgr = .data:0x80842410; // type:object size:0x8 +lbl_80842418 = .data:0x80842418; // type:object size:0xC +lbl_80842424 = .data:0x80842424; // type:object size:0xC +lbl_80842430 = .data:0x80842430; // type:object size:0x8 +lbl_80842438 = .data:0x80842438; // type:object size:0x18 +lbl_80842450 = .data:0x80842450; // type:object size:0xC +lbl_8084245C = .data:0x8084245C; // type:object size:0x18 +lbl_80842474 = .data:0x80842474; // type:object size:0xC +lbl_80842480 = .data:0x80842480; // type:object size:0x8 +lbl_80842488 = .data:0x80842488; // type:object size:0x14 +lbl_8084249C = .data:0x8084249C; // type:object size:0x1C +lbl_808424B8 = .data:0x808424B8; // type:object size:0x8 +lbl_808424C0 = .data:0x808424C0; // type:object size:0xC data:string +lbl_808424CC = .data:0x808424CC; // type:object size:0x14 +__RTTI__11BandMachine = .data:0x808424E0; // type:object size:0x8 +lbl_808424E8 = .data:0x808424E8; // type:object size:0x28 +lbl_80842510 = .data:0x80842510; // type:object size:0xC +lbl_8084251C = .data:0x8084251C; // type:object size:0xC +lbl_80842528 = .data:0x80842528; // type:object size:0x8 +lbl_80842530 = .data:0x80842530; // type:object size:0x28 +lbl_80842558 = .data:0x80842558; // type:object size:0x10 data:string +lbl_80842568 = .data:0x80842568; // type:object size:0x10 +lbl_80842578 = .data:0x80842578; // type:object size:0x8 +__vt__12StartLockMsg = .data:0x80842580; // type:object size:0x2C +__vt__11LockStepMgr = .data:0x808425AC; // type:object size:0x5C +lbl_80842608 = .data:0x80842608; // type:object size:0xC data:string +lbl_80842614 = .data:0x80842614; // type:object size:0x14 +__RTTI__11LockStepMgr = .data:0x80842628; // type:object size:0x8 +__vt__20ReleasingLockStepMsg = .data:0x80842630; // type:object size:0xC +lbl_8084263C = .data:0x8084263C; // type:object size:0x18 +lbl_80842654 = .data:0x80842654; // type:object size:0xC +__RTTI__20ReleasingLockStepMsg = .data:0x80842660; // type:object size:0x8 +lbl_80842668 = .data:0x80842668; // type:object size:0x14 data:string +lbl_8084267C = .data:0x8084267C; // type:object size:0xC +lbl_80842688 = .data:0x80842688; // type:object size:0xC +lbl_80842694 = .data:0x80842694; // type:object size:0xC +lbl_808426A0 = .data:0x808426A0; // type:object size:0x10 data:string +lbl_808426B0 = .data:0x808426B0; // type:object size:0x10 data:string +lbl_808426C0 = .data:0x808426C0; // type:object size:0x10 data:string +lbl_808426D0 = .data:0x808426D0; // type:object size:0x14 +lbl_808426E4 = .data:0x808426E4; // type:object size:0x14 data:string +lbl_808426F8 = .data:0x808426F8; // type:object size:0x64 +lbl_8084275C = .data:0x8084275C; // type:object size:0x64 +lbl_808427C0 = .data:0x808427C0; // type:object size:0x14 +lbl_808427D4 = .data:0x808427D4; // type:object size:0x1C +lbl_808427F0 = .data:0x808427F0; // type:object size:0x8 +__vt__11BandMachine = .data:0x808427F8; // type:object size:0x64 +lbl_8084285C = .data:0x8084285C; // type:object size:0x4 +lbl_80842860 = .data:0x80842860; // type:object size:0x28 +lbl_80842888 = .data:0x80842888; // type:object size:0x34 +lbl_808428BC = .data:0x808428BC; // type:object size:0xC +lbl_808428C8 = .data:0x808428C8; // type:object size:0x8 +lbl_808428D0 = .data:0x808428D0; // type:object size:0x28 +lbl_808428F8 = .data:0x808428F8; // type:object size:0x30 +lbl_80842928 = .data:0x80842928; // type:object size:0x10 +lbl_80842938 = .data:0x80842938; // type:object size:0x8 +__vt__14BandMachineMgr = .data:0x80842940; // type:object size:0x80 +lbl_808429C0 = .data:0x808429C0; // type:object size:0x10 +lbl_808429D0 = .data:0x808429D0; // type:object size:0x20 +__RTTI__14BandMachineMgr = .data:0x808429F0; // type:object size:0x8 +lbl_808429F8 = .data:0x808429F8; // type:object size:0xC +lbl_80842A04 = .data:0x80842A04; // type:object size:0x18 +lbl_80842A1C = .data:0x80842A1C; // type:object size:0xC +lbl_80842A28 = .data:0x80842A28; // type:object size:0x8 +__vt__23RemoteMachineUpdatedMsg = .data:0x80842A30; // type:object size:0x10 +lbl_80842A40 = .data:0x80842A40; // type:object size:0x18 data:string +lbl_80842A58 = .data:0x80842A58; // type:object size:0x10 +__RTTI__23RemoteMachineUpdatedMsg = .data:0x80842A68; // type:object size:0x8 +__vt__19NewRemoteMachineMsg = .data:0x80842A70; // type:object size:0xC +lbl_80842A7C = .data:0x80842A7C; // type:object size:0x14 data:string +lbl_80842A90 = .data:0x80842A90; // type:object size:0x10 +lbl_80842AA0 = .data:0x80842AA0; // type:object size:0x8 +lbl_80842AA8 = .data:0x80842AA8; // type:object size:0x18 +lbl_80842AC0 = .data:0x80842AC0; // type:object size:0x18 +lbl_80842AD8 = .data:0x80842AD8; // type:object size:0x18 +lbl_80842AF0 = .data:0x80842AF0; // type:object size:0x50 +__vt__14MakeupProvider = .data:0x80842B40; // type:object size:0xBC +lbl_80842BFC = .data:0x80842BFC; // type:object size:0x10 +lbl_80842C0C = .data:0x80842C0C; // type:object size:0x1C +__RTTI__14MakeupProvider = .data:0x80842C28; // type:object size:0x8 +lbl_80842C30 = .data:0x80842C30; // type:object size:0x70 +__vt__22MainHubMessageProvider = .data:0x80842CA0; // type:object size:0xC0 +lbl_80842D60 = .data:0x80842D60; // type:object size:0x18 +lbl_80842D78 = .data:0x80842D78; // type:object size:0x20 +__RTTI__22MainHubMessageProvider = .data:0x80842D98; // type:object size:0x8 +lbl_80842DA0 = .data:0x80842DA0; // type:object size:0x158 +lbl_80842EF8 = .data:0x80842EF8; // type:object size:0x28 +lbl_80842F20 = .data:0x80842F20; // type:object size:0x30 +lbl_80842F50 = .data:0x80842F50; // type:object size:0x10 +lbl_80842F60 = .data:0x80842F60; // type:object size:0x8 +__vt__20MatchmakerChangedMsg = .data:0x80842F68; // type:object size:0xC +lbl_80842F74 = .data:0x80842F74; // type:object size:0x18 +lbl_80842F8C = .data:0x80842F8C; // type:object size:0xC +__RTTI__20MatchmakerChangedMsg = .data:0x80842F98; // type:object size:0x8 +__vt__25OvershellOverrideEndedMsg = .data:0x80842FA0; // type:object size:0xC +lbl_80842FAC = .data:0x80842FAC; // type:object size:0x1C +lbl_80842FC8 = .data:0x80842FC8; // type:object size:0x10 +__RTTI__25OvershellOverrideEndedMsg = .data:0x80842FD8; // type:object size:0x8 +__vt__20SessionMgrUpdatedMsg = .data:0x80842FE0; // type:object size:0xC +lbl_80842FEC = .data:0x80842FEC; // type:object size:0x18 +lbl_80843004 = .data:0x80843004; // type:object size:0xC +__RTTI__20SessionMgrUpdatedMsg = .data:0x80843010; // type:object size:0x8 +__vt__12MainHubPanel = .data:0x80843018; // type:object size:0xBC +lbl_808430D4 = .data:0x808430D4; // type:object size:0x14 +lbl_808430E8 = .data:0x808430E8; // type:object size:0x10 +lbl_808430F8 = .data:0x808430F8; // type:object size:0x18 data:string +lbl_80843110 = .data:0x80843110; // type:object size:0x10 +lbl_80843120 = .data:0x80843120; // type:object size:0x8 +lbl_80843128 = .data:0x80843128; // type:object size:0x8 data:string +lbl_80843130 = .data:0x80843130; // type:object size:0x168 +__vt__22VignetteViewerProvider = .data:0x80843298; // type:object size:0xC0 +lbl_80843358 = .data:0x80843358; // type:object size:0x18 +lbl_80843370 = .data:0x80843370; // type:object size:0x20 +__RTTI__22VignetteViewerProvider = .data:0x80843390; // type:object size:0x8 +__vt__15ManageBandPanel = .data:0x80843398; // type:object size:0xC0 +lbl_80843458 = .data:0x80843458; // type:object size:0x10 data:string +lbl_80843468 = .data:0x80843468; // type:object size:0x20 +__RTTI__15ManageBandPanel = .data:0x80843488; // type:object size:0x8 +lbl_80843490 = .data:0x80843490; // type:object size:0x10 data:string +lbl_808434A0 = .data:0x808434A0; // type:object size:0x8 +lbl_808434A8 = .data:0x808434A8; // type:object size:0x8 data:string +lbl_808434B0 = .data:0x808434B0; // type:object size:0x18 +lbl_808434C8 = .data:0x808434C8; // type:object size:0x4 +lbl_808434CC = .data:0x808434CC; // type:object size:0x4 +lbl_808434D0 = .data:0x808434D0; // type:object size:0x18 +lbl_808434E8 = .data:0x808434E8; // type:object size:0xC data:string +lbl_808434F4 = .data:0x808434F4; // type:object size:0xC +lbl_80843500 = .data:0x80843500; // type:object size:0x8 +lbl_80843508 = .data:0x80843508; // type:object size:0x18 +lbl_80843520 = .data:0x80843520; // type:object size:0x10 +lbl_80843530 = .data:0x80843530; // type:object size:0x10 +lbl_80843540 = .data:0x80843540; // type:object size:0x8 +lbl_80843548 = .data:0x80843548; // type:object size:0x18 +lbl_80843560 = .data:0x80843560; // type:object size:0x10 +lbl_80843570 = .data:0x80843570; // type:object size:0x8 +__vt__14BandMatchmaker = .data:0x80843578; // type:object size:0x94 +lbl_8084360C = .data:0x8084360C; // type:object size:0x10 +lbl_8084361C = .data:0x8084361C; // type:object size:0x24 +__RTTI__14BandMatchmaker = .data:0x80843640; // type:object size:0x8 +__vt__10Matchmaker = .data:0x80843648; // type:object size:0x94 +lbl_808436DC = .data:0x808436DC; // type:object size:0xC +lbl_808436E8 = .data:0x808436E8; // type:object size:0x20 +__RTTI__10Matchmaker = .data:0x80843708; // type:object size:0x8 +lbl_80843710 = .data:0x80843710; // type:object size:0x40 +lbl_80843750 = .data:0x80843750; // type:object size:0x28 +lbl_80843778 = .data:0x80843778; // type:object size:0x20 +lbl_80843798 = .data:0x80843798; // type:object size:0x10 +lbl_808437A8 = .data:0x808437A8; // type:object size:0x8 +lbl_808437B0 = .data:0x808437B0; // type:object size:0x28 +lbl_808437D8 = .data:0x808437D8; // type:object size:0x18 +lbl_808437F0 = .data:0x808437F0; // type:object size:0x10 +lbl_80843800 = .data:0x80843800; // type:object size:0x8 +lbl_80843808 = .data:0x80843808; // type:object size:0x28 +lbl_80843830 = .data:0x80843830; // type:object size:0x18 +lbl_80843848 = .data:0x80843848; // type:object size:0x10 +lbl_80843858 = .data:0x80843858; // type:object size:0x8 +lbl_80843860 = .data:0x80843860; // type:object size:0x28 +lbl_80843888 = .data:0x80843888; // type:object size:0x14 data:string +lbl_8084389C = .data:0x8084389C; // type:object size:0xC +lbl_808438A8 = .data:0x808438A8; // type:object size:0x8 +lbl_808438B0 = .data:0x808438B0; // type:object size:0x28 +lbl_808438D8 = .data:0x808438D8; // type:object size:0x14 data:string +lbl_808438EC = .data:0x808438EC; // type:object size:0xC +lbl_808438F8 = .data:0x808438F8; // type:object size:0x8 +lbl_80843900 = .data:0x80843900; // type:object size:0x20 +lbl_80843920 = .data:0x80843920; // type:object size:0x20 +lbl_80843940 = .data:0x80843940; // type:object size:0x18 +lbl_80843958 = .data:0x80843958; // type:object size:0x18 +lbl_80843970 = .data:0x80843970; // type:object size:0x18 +lbl_80843988 = .data:0x80843988; // type:object size:0x18 +lbl_808439A0 = .data:0x808439A0; // type:object size:0x14 data:string +lbl_808439B4 = .data:0x808439B4; // type:object size:0x14 data:string +lbl_808439C8 = .data:0x808439C8; // type:object size:0x14 data:string +lbl_808439DC = .data:0x808439DC; // type:object size:0x14 data:string +lbl_808439F0 = .data:0x808439F0; // type:object size:0x88 +lbl_80843A78 = .data:0x80843A78; // type:object size:0x4 +lbl_80843A7C = .data:0x80843A7C; // type:object size:0xC data:string +lbl_80843A88 = .data:0x80843A88; // type:object size:0x20 +__RTTI__11RndPostProc = .data:0x80843AA8; // type:object size:0x8 +lbl_80843AB0 = .data:0x80843AB0; // type:object size:0x10 +__RTTI__13PostProcessor = .data:0x80843AC0; // type:object size:0x8 +lbl_80843AC8 = .data:0x80843AC8; // type:object size:0xC +lbl_80843AD4 = .data:0x80843AD4; // type:object size:0x14 +lbl_80843AE8 = .data:0x80843AE8; // type:object size:0x10 +lbl_80843AF8 = .data:0x80843AF8; // type:object size:0x8 +__vt__9MetaPanel = .data:0x80843B00; // type:object size:0xBC +lbl_80843BBC = .data:0x80843BBC; // type:object size:0xC +lbl_80843BC8 = .data:0x80843BC8; // type:object size:0x20 +__RTTI__9MetaPanel = .data:0x80843BE8; // type:object size:0x8 +lbl_80843BF0 = .data:0x80843BF0; // type:object size:0xC +lbl_80843BFC = .data:0x80843BFC; // type:object size:0x10 +lbl_80843C0C = .data:0x80843C0C; // type:object size:0x18 +lbl_80843C24 = .data:0x80843C24; // type:object size:0x14 +lbl_80843C38 = .data:0x80843C38; // type:object size:0x10 +lbl_80843C48 = .data:0x80843C48; // type:object size:0x10 +lbl_80843C58 = .data:0x80843C58; // type:object size:0x10 +lbl_80843C68 = .data:0x80843C68; // type:object size:0x10 +lbl_80843C78 = .data:0x80843C78; // type:object size:0x10 +lbl_80843C88 = .data:0x80843C88; // type:object size:0x10 data:string +lbl_80843C98 = .data:0x80843C98; // type:object size:0x10 +lbl_80843CA8 = .data:0x80843CA8; // type:object size:0x14 data:string +lbl_80843CBC = .data:0x80843CBC; // type:object size:0x14 +lbl_80843CD0 = .data:0x80843CD0; // type:object size:0x18 +lbl_80843CE8 = .data:0x80843CE8; // type:object size:0x14 data:string +lbl_80843CFC = .data:0x80843CFC; // type:object size:0x1C +lbl_80843D18 = .data:0x80843D18; // type:object size:0x10 +lbl_80843D28 = .data:0x80843D28; // type:object size:0x18 +lbl_80843D40 = .data:0x80843D40; // type:object size:0x10 data:string +lbl_80843D50 = .data:0x80843D50; // type:object size:0x10 +lbl_80843D60 = .data:0x80843D60; // type:object size:0x18 +lbl_80843D78 = .data:0x80843D78; // type:object size:0x14 +lbl_80843D8C = .data:0x80843D8C; // type:object size:0xC +lbl_80843D98 = .data:0x80843D98; // type:object size:0x18 +lbl_80843DB0 = .data:0x80843DB0; // type:object size:0x10 +lbl_80843DC0 = .data:0x80843DC0; // type:object size:0x10 +lbl_80843DD0 = .data:0x80843DD0; // type:object size:0x18 +lbl_80843DE8 = .data:0x80843DE8; // type:object size:0x20 +lbl_80843E08 = .data:0x80843E08; // type:object size:0x18 +lbl_80843E20 = .data:0x80843E20; // type:object size:0x18 +lbl_80843E38 = .data:0x80843E38; // type:object size:0x14 data:string +lbl_80843E4C = .data:0x80843E4C; // type:object size:0x14 data:string +lbl_80843E60 = .data:0x80843E60; // type:object size:0x10 +lbl_80843E70 = .data:0x80843E70; // type:object size:0x18 +lbl_80843E88 = .data:0x80843E88; // type:object size:0x10 data:string +lbl_80843E98 = .data:0x80843E98; // type:object size:0x20 +lbl_80843EB8 = .data:0x80843EB8; // type:object size:0x10 data:string +lbl_80843EC8 = .data:0x80843EC8; // type:object size:0x10 +lbl_80843ED8 = .data:0x80843ED8; // type:object size:0x14 +lbl_80843EEC = .data:0x80843EEC; // type:object size:0xC +lbl_80843EF8 = .data:0x80843EF8; // type:object size:0x8 +lbl_80843F00 = .data:0x80843F00; // type:object size:0x8 data:string +lbl_80843F08 = .data:0x80843F08; // type:object size:0xF8 +lbl_80844000 = .data:0x80844000; // type:object size:0x7C +lbl_8084407C = .data:0x8084407C; // type:object size:0x18 +lbl_80844094 = .data:0x80844094; // type:object size:0x1C +lbl_808440B0 = .data:0x808440B0; // type:object size:0x8 +__vt__17MetaPerformerImpl = .data:0x808440B8; // type:object size:0x7C +lbl_80844134 = .data:0x80844134; // type:object size:0x14 +lbl_80844148 = .data:0x80844148; // type:object size:0x18 +__RTTI__17MetaPerformerImpl = .data:0x80844160; // type:object size:0x8 +__vt__13MetaPerformer = .data:0x80844168; // type:object size:0xA4 +__vt__13BandStatsInfo = .data:0x8084420C; // type:object size:0xC +lbl_80844218 = .data:0x80844218; // type:object size:0x10 +__RTTI__13BandStatsInfo = .data:0x80844228; // type:object size:0x8 +__vt__18PerformerStatsInfo = .data:0x80844230; // type:object size:0xC +lbl_8084423C = .data:0x8084423C; // type:object size:0x14 +__RTTI__18PerformerStatsInfo = .data:0x80844250; // type:object size:0x8 +__vt__16InstarankDoneMsg = .data:0x80844258; // type:object size:0xC +lbl_80844264 = .data:0x80844264; // type:object size:0x14 +lbl_80844278 = .data:0x80844278; // type:object size:0x10 +__RTTI__16InstarankDoneMsg = .data:0x80844288; // type:object size:0x8 +__vt__11PlayerScore = .data:0x80844290; // type:object size:0xC +lbl_8084429C = .data:0x8084429C; // type:object size:0xC data:string +__RTTI__11PlayerScore = .data:0x808442A8; // type:object size:0x8 +lbl_808442B0 = .data:0x808442B0; // type:object size:0x10 +lbl_808442C0 = .data:0x808442C0; // type:object size:0x98 +__vt__11ModifierMgr = .data:0x80844358; // type:object size:0xD0 +lbl_80844428 = .data:0x80844428; // type:object size:0xC data:string +lbl_80844434 = .data:0x80844434; // type:object size:0x1C +__RTTI__11ModifierMgr = .data:0x80844450; // type:object size:0x8 +lbl_80844458 = .data:0x80844458; // type:object size:0x30 +__vt__20MultiSelectListPanel = .data:0x80844488; // type:object size:0xBC +lbl_80844544 = .data:0x80844544; // type:object size:0x18 +lbl_8084455C = .data:0x8084455C; // type:object size:0x1C +__RTTI__20MultiSelectListPanel = .data:0x80844578; // type:object size:0x8 +lbl_80844580 = .data:0x80844580; // type:object size:0x8 +lbl_80844588 = .data:0x80844588; // type:object size:0x8 data:string +lbl_80844590 = .data:0x80844590; // type:object size:0x28 +jumptable_808445B8 = .data:0x808445B8; // type:object size:0x2C scope:local +jumptable_808445E4 = .data:0x808445E4; // type:object size:0x28 scope:local +lbl_8084460C = .data:0x8084460C; // type:object size:0xC data:string +lbl_80844618 = .data:0x80844618; // type:object size:0x40 +__RTTI__11StarDisplay = .data:0x80844658; // type:object size:0x8 +lbl_80844660 = .data:0x80844660; // type:object size:0x10 +lbl_80844670 = .data:0x80844670; // type:object size:0x40 +__RTTI__13ReviewDisplay = .data:0x808446B0; // type:object size:0x8 +lbl_808446B8 = .data:0x808446B8; // type:object size:0x18 +lbl_808446D0 = .data:0x808446D0; // type:object size:0x20 +__RTTI__20ViewSettingsProvider = .data:0x808446F0; // type:object size:0x8 +lbl_808446F8 = .data:0x808446F8; // type:object size:0x10 data:string +lbl_80844708 = .data:0x80844708; // type:object size:0x20 +__RTTI__15SetlistProvider = .data:0x80844728; // type:object size:0x8 +lbl_80844730 = .data:0x80844730; // type:object size:0x18 +lbl_80844748 = .data:0x80844748; // type:object size:0x20 +__RTTI__20ParentalControlPanel = .data:0x80844768; // type:object size:0x8 +lbl_80844770 = .data:0x80844770; // type:object size:0x14 +lbl_80844784 = .data:0x80844784; // type:object size:0x14 +lbl_80844798 = .data:0x80844798; // type:object size:0x8 +__vt__21FriendsListChangedMsg = .data:0x808447A0; // type:object size:0xC +lbl_808447AC = .data:0x808447AC; // type:object size:0x18 +lbl_808447C4 = .data:0x808447C4; // type:object size:0xC +__RTTI__21FriendsListChangedMsg = .data:0x808447D0; // type:object size:0x8 +__vt__12MusicLibrary = .data:0x808447D8; // type:object size:0x148 +lbl_80844920 = .data:0x80844920; // type:object size:0x10 +lbl_80844930 = .data:0x80844930; // type:object size:0x30 +__RTTI__12MusicLibrary = .data:0x80844960; // type:object size:0x8 +lbl_80844968 = .data:0x80844968; // type:object size:0x14 +lbl_8084497C = .data:0x8084497C; // type:object size:0x34 +__RTTI__17OwnedSongSortNode = .data:0x808449B0; // type:object size:0x8 +lbl_808449B8 = .data:0x808449B8; // type:object size:0x18 +lbl_808449D0 = .data:0x808449D0; // type:object size:0x3E8 +__vt__23MusicLibraryNetSetlists = .data:0x80844DB8; // type:object size:0x60 +lbl_80844E18 = .data:0x80844E18; // type:object size:0x18 data:string +lbl_80844E30 = .data:0x80844E30; // type:object size:0x18 +__RTTI__23MusicLibraryNetSetlists = .data:0x80844E48; // type:object size:0x8 +lbl_80844E50 = .data:0x80844E50; // type:object size:0x58 +__vt__13NameGenerator = .data:0x80844EA8; // type:object size:0x5C +lbl_80844F04 = .data:0x80844F04; // type:object size:0x10 +lbl_80844F14 = .data:0x80844F14; // type:object size:0x14 +__RTTI__13NameGenerator = .data:0x80844F28; // type:object size:0x8 +lbl_80844F30 = .data:0x80844F30; // type:object size:0x10 +__vt__7NetSync = .data:0x80844F40; // type:object size:0x60 +lbl_80844FA0 = .data:0x80844FA0; // type:object size:0x8 data:string +lbl_80844FA8 = .data:0x80844FA8; // type:object size:0x18 +__RTTI__7NetSync = .data:0x80844FC0; // type:object size:0x8 +lbl_80844FC8 = .data:0x80844FC8; // type:object size:0x18 +lbl_80844FE0 = .data:0x80844FE0; // type:object size:0x10 data:string +lbl_80844FF0 = .data:0x80844FF0; // type:object size:0x14 +lbl_80845004 = .data:0x80845004; // type:object size:0x14 +lbl_80845018 = .data:0x80845018; // type:object size:0x18 +lbl_80845030 = .data:0x80845030; // type:object size:0x18 +lbl_80845048 = .data:0x80845048; // type:object size:0x18 +lbl_80845060 = .data:0x80845060; // type:object size:0x30 +__vt__16NewAssetProvider = .data:0x80845090; // type:object size:0xBC +lbl_8084514C = .data:0x8084514C; // type:object size:0x14 +lbl_80845160 = .data:0x80845160; // type:object size:0x20 +__RTTI__16NewAssetProvider = .data:0x80845180; // type:object size:0x8 +lbl_80845188 = .data:0x80845188; // type:object size:0x38 +__vt__18AwardAssetProvider = .data:0x808451C0; // type:object size:0xBC +lbl_8084527C = .data:0x8084527C; // type:object size:0x14 +lbl_80845290 = .data:0x80845290; // type:object size:0x20 +__RTTI__18AwardAssetProvider = .data:0x808452B0; // type:object size:0x8 +__vt__13NewAwardPanel = .data:0x808452B8; // type:object size:0x10C +lbl_808453C4 = .data:0x808453C4; // type:object size:0x10 +lbl_808453D4 = .data:0x808453D4; // type:object size:0x2C +__RTTI__13NewAwardPanel = .data:0x80845400; // type:object size:0x8 +lbl_80845408 = .data:0x80845408; // type:object size:0xC +lbl_80845414 = .data:0x80845414; // type:object size:0xC +lbl_80845420 = .data:0x80845420; // type:object size:0xC +lbl_8084542C = .data:0x8084542C; // type:object size:0x8 +lbl_80845434 = .data:0x80845434; // type:object size:0x8 +lbl_8084543C = .data:0x8084543C; // type:object size:0x8 +lbl_80845444 = .data:0x80845444; // type:object size:0xC +lbl_80845450 = .data:0x80845450; // type:object size:0x8 data:string +lbl_80845458 = .data:0x80845458; // type:object size:0x10 data:string +__vt__13NextSongPanel = .data:0x80845468; // type:object size:0xBC +lbl_80845524 = .data:0x80845524; // type:object size:0x10 +lbl_80845534 = .data:0x80845534; // type:object size:0x1C +__RTTI__13NextSongPanel = .data:0x80845550; // type:object size:0x8 +lbl_80845558 = .data:0x80845558; // type:object size:0x8 +lbl_80845560 = .data:0x80845560; // type:object size:0x8 data:string +lbl_80845568 = .data:0x80845568; // type:object size:0x90 +__vt__14OutfitProvider = .data:0x808455F8; // type:object size:0xBC +lbl_808456B4 = .data:0x808456B4; // type:object size:0x10 +lbl_808456C4 = .data:0x808456C4; // type:object size:0x1C +__RTTI__14OutfitProvider = .data:0x808456E0; // type:object size:0x8 +lbl_808456E8 = .data:0x808456E8; // type:object size:0x8 +lbl_808456F0 = .data:0x808456F0; // type:object size:0x10 +lbl_80845700 = .data:0x80845700; // type:object size:0x18 +__RTTI__13OvershellSlot = .data:0x80845718; // type:object size:0x8 +lbl_80845720 = .data:0x80845720; // type:object size:0xC +lbl_8084572C = .data:0x8084572C; // type:object size:0x1C +lbl_80845748 = .data:0x80845748; // type:object size:0x10 +lbl_80845758 = .data:0x80845758; // type:object size:0x8 +lbl_80845760 = .data:0x80845760; // type:object size:0xC +lbl_8084576C = .data:0x8084576C; // type:object size:0x18 +lbl_80845784 = .data:0x80845784; // type:object size:0xC +lbl_80845790 = .data:0x80845790; // type:object size:0x8 +lbl_80845798 = .data:0x80845798; // type:object size:0xC +lbl_808457A4 = .data:0x808457A4; // type:object size:0x14 +lbl_808457B8 = .data:0x808457B8; // type:object size:0x10 +lbl_808457C8 = .data:0x808457C8; // type:object size:0x8 +__vt__17InviteReceivedMsg = .data:0x808457D0; // type:object size:0xC +lbl_808457DC = .data:0x808457DC; // type:object size:0x14 +lbl_808457F0 = .data:0x808457F0; // type:object size:0x10 +__RTTI__17InviteReceivedMsg = .data:0x80845800; // type:object size:0x8 +lbl_80845808 = .data:0x80845808; // type:object size:0x10 +lbl_80845818 = .data:0x80845818; // type:object size:0x60 +__RTTI__12OvershellDir = .data:0x80845878; // type:object size:0x8 +__vt__14OvershellPanel = .data:0x80845880; // type:object size:0x110 +lbl_80845990 = .data:0x80845990; // type:object size:0x1C +lbl_808459AC = .data:0x808459AC; // type:object size:0x18 +lbl_808459C4 = .data:0x808459C4; // type:object size:0x14 +lbl_808459D8 = .data:0x808459D8; // type:object size:0x10 data:string +lbl_808459E8 = .data:0x808459E8; // type:object size:0x8 +lbl_808459F0 = .data:0x808459F0; // type:object size:0x8 data:string +lbl_808459F8 = .data:0x808459F8; // type:object size:0x140 +__vt__27OvershellPartSelectProvider = .data:0x80845B38; // type:object size:0xBC +lbl_80845BF4 = .data:0x80845BF4; // type:object size:0x1C data:string +lbl_80845C10 = .data:0x80845C10; // type:object size:0x20 +__RTTI__27OvershellPartSelectProvider = .data:0x80845C30; // type:object size:0x8 +lbl_80845C38 = .data:0x80845C38; // type:object size:0xE8 +jumptable_80845D20 = .data:0x80845D20; // type:object size:0x28 scope:local +lbl_80845D48 = .data:0x80845D48; // type:object size:0xC +lbl_80845D54 = .data:0x80845D54; // type:object size:0x1C +lbl_80845D70 = .data:0x80845D70; // type:object size:0x10 +lbl_80845D80 = .data:0x80845D80; // type:object size:0x8 +__vt__13OvershellSlot = .data:0x80845D88; // type:object size:0x5C +lbl_80845DE4 = .data:0x80845DE4; // type:object size:0x1C data:string +lbl_80845E00 = .data:0x80845E00; // type:object size:0x3C0 +__vt__18OvershellSlotState = .data:0x808461C0; // type:object size:0x5C +lbl_8084621C = .data:0x8084621C; // type:object size:0x14 +lbl_80846230 = .data:0x80846230; // type:object size:0x18 +__RTTI__18OvershellSlotState = .data:0x80846248; // type:object size:0x8 +__vt__20ParentalControlPanel = .data:0x80846250; // type:object size:0xBC +lbl_8084630C = .data:0x8084630C; // type:object size:0xC +lbl_80846318 = .data:0x80846318; // type:object size:0x8 data:string +__vt__20PassiveMessagesPanel = .data:0x80846320; // type:object size:0xBC +lbl_808463DC = .data:0x808463DC; // type:object size:0x18 +lbl_808463F4 = .data:0x808463F4; // type:object size:0x1C +__RTTI__20PassiveMessagesPanel = .data:0x80846410; // type:object size:0x8 +__vt__14PassiveMessage = .data:0x80846418; // type:object size:0xC +lbl_80846424 = .data:0x80846424; // type:object size:0x14 +__RTTI__14PassiveMessage = .data:0x80846438; // type:object size:0x8 +lbl_80846440 = .data:0x80846440; // type:object size:0x8 +lbl_80846448 = .data:0x80846448; // type:object size:0x8 data:string +lbl_80846450 = .data:0x80846450; // type:object size:0x10 data:string +lbl_80846460 = .data:0x80846460; // type:object size:0xC +lbl_8084646C = .data:0x8084646C; // type:object size:0x18 +lbl_80846484 = .data:0x80846484; // type:object size:0xC +lbl_80846490 = .data:0x80846490; // type:object size:0x8 +lbl_80846498 = .data:0x80846498; // type:object size:0xC +lbl_808464A4 = .data:0x808464A4; // type:object size:0x10 +lbl_808464B4 = .data:0x808464B4; // type:object size:0xC +lbl_808464C0 = .data:0x808464C0; // type:object size:0x8 +__vt__16PassiveMessenger = .data:0x808464C8; // type:object size:0x5C +lbl_80846524 = .data:0x80846524; // type:object size:0x14 +lbl_80846538 = .data:0x80846538; // type:object size:0x18 +__RTTI__16PassiveMessenger = .data:0x80846550; // type:object size:0x8 +lbl_80846558 = .data:0x80846558; // type:object size:0x14 +lbl_8084656C = .data:0x8084656C; // type:object size:0x14 data:string +lbl_80846580 = .data:0x80846580; // type:object size:0x8 +lbl_80846588 = .data:0x80846588; // type:object size:0x14 data:string +lbl_8084659C = .data:0x8084659C; // type:object size:0xC data:string +lbl_808465A8 = .data:0x808465A8; // type:object size:0xA8 +lbl_80846650 = .data:0x80846650; // type:object size:0xB8 +lbl_80846708 = .data:0x80846708; // type:object size:0x8 +__vt__13LayerProvider = .data:0x80846710; // type:object size:0xC0 +lbl_808467D0 = .data:0x808467D0; // type:object size:0x10 +lbl_808467E0 = .data:0x808467E0; // type:object size:0x20 +__RTTI__13LayerProvider = .data:0x80846800; // type:object size:0x8 +__vt__16CategoryProvider = .data:0x80846808; // type:object size:0xBC +lbl_808468C4 = .data:0x808468C4; // type:object size:0x14 +lbl_808468D8 = .data:0x808468D8; // type:object size:0x20 +__RTTI__16CategoryProvider = .data:0x808468F8; // type:object size:0x8 +__vt__15StickerProvider = .data:0x80846900; // type:object size:0xC0 +lbl_808469C0 = .data:0x808469C0; // type:object size:0x10 data:string +lbl_808469D0 = .data:0x808469D0; // type:object size:0x20 +__RTTI__15StickerProvider = .data:0x808469F0; // type:object size:0x330 +lbl_80846D20 = .data:0x80846D20; // type:object size:0x18 +lbl_80846D38 = .data:0x80846D38; // type:object size:0x1C +lbl_80846D54 = .data:0x80846D54; // type:object size:0xC +lbl_80846D60 = .data:0x80846D60; // type:object size:0x8 +lbl_80846D68 = .data:0x80846D68; // type:object size:0x18 +lbl_80846D80 = .data:0x80846D80; // type:object size:0x1C +lbl_80846D9C = .data:0x80846D9C; // type:object size:0xC +lbl_80846DA8 = .data:0x80846DA8; // type:object size:0x158 +__vt__10PatchPanel = .data:0x80846F00; // type:object size:0x204 +lbl_80847104 = .data:0x80847104; // type:object size:0xC +lbl_80847110 = .data:0x80847110; // type:object size:0x8 +lbl_80847118 = .data:0x80847118; // type:object size:0x18 +lbl_80847130 = .data:0x80847130; // type:object size:0xC data:string +lbl_8084713C = .data:0x8084713C; // type:object size:0xC +lbl_80847148 = .data:0x80847148; // type:object size:0x10 +lbl_80847158 = .data:0x80847158; // type:object size:0x14 +lbl_8084716C = .data:0x8084716C; // type:object size:0xC data:string +lbl_80847178 = .data:0x80847178; // type:object size:0x20 +lbl_80847198 = .data:0x80847198; // type:object size:0x10 +lbl_808471A8 = .data:0x808471A8; // type:object size:0x8 +lbl_808471B0 = .data:0x808471B0; // type:object size:0x20 +lbl_808471D0 = .data:0x808471D0; // type:object size:0x30 +__vt__13PatchProvider = .data:0x80847200; // type:object size:0xBC +lbl_808472BC = .data:0x808472BC; // type:object size:0x10 +lbl_808472CC = .data:0x808472CC; // type:object size:0x1C +__RTTI__13PatchProvider = .data:0x808472E8; // type:object size:0x8 +__vt__16PatchSelectPanel = .data:0x808472F0; // type:object size:0xC0 +lbl_808473B0 = .data:0x808473B0; // type:object size:0x14 +lbl_808473C4 = .data:0x808473C4; // type:object size:0x1C +__RTTI__16PatchSelectPanel = .data:0x808473E0; // type:object size:0x8 +lbl_808473E8 = .data:0x808473E8; // type:object size:0xC +lbl_808473F4 = .data:0x808473F4; // type:object size:0xC +lbl_80847400 = .data:0x80847400; // type:object size:0x8 +lbl_80847408 = .data:0x80847408; // type:object size:0x8 +lbl_80847410 = .data:0x80847410; // type:object size:0x8 data:string +lbl_80847418 = .data:0x80847418; // type:object size:0x10 +lbl_80847428 = .data:0x80847428; // type:object size:0x150 +lbl_80847578 = .data:0x80847578; // type:object size:0x4 +lbl_8084757C = .data:0x8084757C; // type:object size:0x1C +__vt__15PerformanceData = .data:0x80847598; // type:object size:0x78 +lbl_80847610 = .data:0x80847610; // type:object size:0x10 data:string +lbl_80847620 = .data:0x80847620; // type:object size:0x20 +__RTTI__15PerformanceData = .data:0x80847640; // type:object size:0x70 +lbl_808476B0 = .data:0x808476B0; // type:object size:0xF8 +lbl_808477A8 = .data:0x808477A8; // type:object size:0x18 data:string +lbl_808477C0 = .data:0x808477C0; // type:object size:0x30 +lbl_808477F0 = .data:0x808477F0; // type:object size:0x8 +lbl_808477F8 = .data:0x808477F8; // type:object size:0xF4 +lbl_808478EC = .data:0x808478EC; // type:object size:0x18 +lbl_80847904 = .data:0x80847904; // type:object size:0x2C +lbl_80847930 = .data:0x80847930; // type:object size:0x8 +lbl_80847938 = .data:0x80847938; // type:object size:0xF8 +__vt__9PrefabMgr = .data:0x80847A30; // type:object size:0x5C +lbl_80847A8C = .data:0x80847A8C; // type:object size:0xC +lbl_80847A98 = .data:0x80847A98; // type:object size:0x18 +__RTTI__9PrefabMgr = .data:0x80847AB0; // type:object size:0x8 +lbl_80847AB8 = .data:0x80847AB8; // type:object size:0xA0 +__vt__13ProfileAssets = .data:0x80847B58; // type:object size:0x14 +lbl_80847B6C = .data:0x80847B6C; // type:object size:0x10 +lbl_80847B7C = .data:0x80847B7C; // type:object size:0xC +__RTTI__13ProfileAssets = .data:0x80847B88; // type:object size:0x8 +lbl_80847B90 = .data:0x80847B90; // type:object size:0x4 +lbl_80847B94 = .data:0x80847B94; // type:object size:0xC data:4byte +lbl_80847BA0 = .data:0x80847BA0; // type:object size:0xC data:4byte +jumptable_80847BAC = .data:0x80847BAC; // type:object size:0x70 scope:local +jumptable_80847C1C = .data:0x80847C1C; // type:object size:0xA8 scope:local +__vt__26SaveLoadMgrStatusUpdateMsg = .data:0x80847CC4; // type:object size:0xC +lbl_80847CD0 = .data:0x80847CD0; // type:object size:0x1C +lbl_80847CEC = .data:0x80847CEC; // type:object size:0xC +__RTTI__26SaveLoadMgrStatusUpdateMsg = .data:0x80847CF8; // type:object size:0x8 +__vt__10ProfileMgr = .data:0x80847D00; // type:object size:0x88 +lbl_80847D88 = .data:0x80847D88; // type:object size:0xC +lbl_80847D94 = .data:0x80847D94; // type:object size:0x1C +__RTTI__10ProfileMgr = .data:0x80847DB0; // type:object size:0x8 +lbl_80847DB8 = .data:0x80847DB8; // type:object size:0x8 +lbl_80847DC0 = .data:0x80847DC0; // type:object size:0x20 +lbl_80847DE0 = .data:0x80847DE0; // type:object size:0x150 +__vt__15RetryAudioPanel = .data:0x80847F30; // type:object size:0x118 +lbl_80848048 = .data:0x80848048; // type:object size:0x10 data:string +lbl_80848058 = .data:0x80848058; // type:object size:0x30 +__RTTI__15RetryAudioPanel = .data:0x80848088; // type:object size:0x8 +lbl_80848090 = .data:0x80848090; // type:object size:0x10 +lbl_808480A0 = .data:0x808480A0; // type:object size:0x28 +__RTTI__14VoiceoverPanel = .data:0x808480C8; // type:object size:0x8 +lbl_808480D0 = .data:0x808480D0; // type:object size:0x8 +lbl_808480D8 = .data:0x808480D8; // type:object size:0x8 data:string +lbl_808480E0 = .data:0x808480E0; // type:object size:0x18 +jumptable_808480F8 = .data:0x808480F8; // type:object size:0x20 scope:local +lbl_80848118 = .data:0x80848118; // type:object size:0x34 +lbl_8084814C = .data:0x8084814C; // type:object size:0x34 +__vt__17LocalSavedSetlist = .data:0x80848180; // type:object size:0xDC +__vt__12SavedSetlist = .data:0x8084825C; // type:object size:0x34 +lbl_80848290 = .data:0x80848290; // type:object size:0x58 +lbl_808482E8 = .data:0x808482E8; // type:object size:0x4 data:4byte +jumptable_808482EC = .data:0x808482EC; // type:object size:0x1C4 scope:local +jumptable_808484B0 = .data:0x808484B0; // type:object size:0x1BC scope:local +jumptable_8084866C = .data:0x8084866C; // type:object size:0x68 scope:local +jumptable_808486D4 = .data:0x808486D4; // type:object size:0x1C0 scope:local +jumptable_80848894 = .data:0x80848894; // type:object size:0x188 scope:local +jumptable_80848A1C = .data:0x80848A1C; // type:object size:0x188 scope:local +jumptable_80848BA4 = .data:0x80848BA4; // type:object size:0x174 scope:local +jumptable_80848D18 = .data:0x80848D18; // type:object size:0x174 scope:local +__vt__15SaveLoadManager = .data:0x80848E90; // type:object size:0x80 +lbl_80848F10 = .data:0x80848F10; // type:object size:0x10 data:string +lbl_80848F20 = .data:0x80848F20; // type:object size:0x20 +__RTTI__15SaveLoadManager = .data:0x80848F40; // type:object size:0x8 +lbl_80848F48 = .data:0x80848F48; // type:object size:0x10 +lbl_80848F58 = .data:0x80848F58; // type:object size:0xC data:string +lbl_80848F64 = .data:0x80848F64; // type:object size:0xC +lbl_80848F70 = .data:0x80848F70; // type:object size:0x8 +__vt__15DeviceChosenMsg = .data:0x80848F78; // type:object size:0x10 +lbl_80848F88 = .data:0x80848F88; // type:object size:0x10 data:string +lbl_80848F98 = .data:0x80848F98; // type:object size:0x10 +__RTTI__15DeviceChosenMsg = .data:0x80848FA8; // type:object size:0x8 +lbl_80848FB0 = .data:0x80848FB0; // type:object size:0xC +lbl_80848FBC = .data:0x80848FBC; // type:object size:0x14 +lbl_80848FD0 = .data:0x80848FD0; // type:object size:0x10 +lbl_80848FE0 = .data:0x80848FE0; // type:object size:0x8 +lbl_80848FE8 = .data:0x80848FE8; // type:object size:0x10 +lbl_80848FF8 = .data:0x80848FF8; // type:object size:0x8 +lbl_80849000 = .data:0x80849000; // type:object size:0x10 +lbl_80849010 = .data:0x80849010; // type:object size:0x14 +lbl_80849024 = .data:0x80849024; // type:object size:0xE4 +__vt__19SaveLoadStatusPanel = .data:0x80849108; // type:object size:0xBC +lbl_808491C4 = .data:0x808491C4; // type:object size:0x14 data:string +lbl_808491D8 = .data:0x808491D8; // type:object size:0x20 +__RTTI__19SaveLoadStatusPanel = .data:0x808491F8; // type:object size:0x8 +lbl_80849200 = .data:0x80849200; // type:object size:0x8 +lbl_80849208 = .data:0x80849208; // type:object size:0x8 data:string +__vt__21SelectDifficultyPanel = .data:0x80849210; // type:object size:0x108 +lbl_80849318 = .data:0x80849318; // type:object size:0x18 +lbl_80849330 = .data:0x80849330; // type:object size:0x28 +__RTTI__21SelectDifficultyPanel = .data:0x80849358; // type:object size:0x8 +lbl_80849360 = .data:0x80849360; // type:object size:0x8 +lbl_80849368 = .data:0x80849368; // type:object size:0x8 data:string +lbl_80849370 = .data:0x80849370; // type:object size:0xD0 +__vt__10SessionMgr = .data:0x80849440; // type:object size:0xE4 +lbl_80849524 = .data:0x80849524; // type:object size:0xC +lbl_80849530 = .data:0x80849530; // type:object size:0x28 +__RTTI__10SessionMgr = .data:0x80849558; // type:object size:0x8 +lbl_80849560 = .data:0x80849560; // type:object size:0x10 +lbl_80849570 = .data:0x80849570; // type:object size:0x28 +lbl_80849598 = .data:0x80849598; // type:object size:0x34 +lbl_808495CC = .data:0x808495CC; // type:object size:0xC +lbl_808495D8 = .data:0x808495D8; // type:object size:0x8 +__vt__20SessionUsersProvider = .data:0x808495E0; // type:object size:0xC0 +lbl_808496A0 = .data:0x808496A0; // type:object size:0x18 +lbl_808496B8 = .data:0x808496B8; // type:object size:0x20 +__RTTI__20SessionUsersProvider = .data:0x808496D8; // type:object size:0x8 +lbl_808496E0 = .data:0x808496E0; // type:object size:0x48 +lbl_80849728 = .data:0x80849728; // type:object size:0x4 +lbl_8084972C = .data:0x8084972C; // type:object size:0x4 +__vt__17SetlistMergePanel = .data:0x80849730; // type:object size:0xBC +lbl_808497EC = .data:0x808497EC; // type:object size:0xC +lbl_808497F8 = .data:0x808497F8; // type:object size:0x8 data:string +lbl_80849800 = .data:0x80849800; // type:object size:0x58 +__vt__11LocationCmp = .data:0x80849858; // type:object size:0x1C +lbl_80849874 = .data:0x80849874; // type:object size:0xC data:string +lbl_80849880 = .data:0x80849880; // type:object size:0x10 +__RTTI__11LocationCmp = .data:0x80849890; // type:object size:0x8 +__vt__21SetlistSortByLocation = .data:0x80849898; // type:object size:0x10C +lbl_808499A4 = .data:0x808499A4; // type:object size:0x18 +lbl_808499BC = .data:0x808499BC; // type:object size:0x2C +__RTTI__21SetlistSortByLocation = .data:0x808499E8; // type:object size:0x8 +lbl_808499F0 = .data:0x808499F0; // type:object size:0xC data:string +lbl_808499FC = .data:0x808499FC; // type:object size:0x24 +__RTTI__11SetlistSort = .data:0x80849A20; // type:object size:0x8 +lbl_80849A28 = .data:0x80849A28; // type:object size:0xC +lbl_80849A34 = .data:0x80849A34; // type:object size:0x1C +__RTTI__8NodeSort = .data:0x80849A50; // type:object size:0x8 +__vt__11SongSortCmp = .data:0x80849A58; // type:object size:0x18 +lbl_80849A70 = .data:0x80849A70; // type:object size:0x10 +__RTTI__11SongSortCmp = .data:0x80849A80; // type:object size:0x8 +__vt__12LeafSortNode = .data:0x80849A88; // type:object size:0x9C +lbl_80849B24 = .data:0x80849B24; // type:object size:0x4 +__vt__19SetlistToStorePanel = .data:0x80849B28; // type:object size:0xBC +lbl_80849BE4 = .data:0x80849BE4; // type:object size:0x14 data:string +lbl_80849BF8 = .data:0x80849BF8; // type:object size:0x20 +__RTTI__19SetlistToStorePanel = .data:0x80849C18; // type:object size:0x8 +lbl_80849C20 = .data:0x80849C20; // type:object size:0x8 +lbl_80849C28 = .data:0x80849C28; // type:object size:0x8 data:string +__vt__21ShellInputInterceptor = .data:0x80849C30; // type:object size:0x5C +lbl_80849C8C = .data:0x80849C8C; // type:object size:0x18 +lbl_80849CA4 = .data:0x80849CA4; // type:object size:0x14 +__RTTI__21ShellInputInterceptor = .data:0x80849CB8; // type:object size:0x8 +__vt__12SigninScreen = .data:0x80849CC0; // type:object size:0x90 +lbl_80849D50 = .data:0x80849D50; // type:object size:0x10 +lbl_80849D60 = .data:0x80849D60; // type:object size:0x28 +__RTTI__12SigninScreen = .data:0x80849D88; // type:object size:0x8 +__vt__12UIChangedMsg = .data:0x80849D90; // type:object size:0xC +lbl_80849D9C = .data:0x80849D9C; // type:object size:0x10 +lbl_80849DAC = .data:0x80849DAC; // type:object size:0xC +__RTTI__12UIChangedMsg = .data:0x80849DB8; // type:object size:0x8 +lbl_80849DC0 = .data:0x80849DC0; // type:object size:0x8 +lbl_80849DC8 = .data:0x80849DC8; // type:object size:0x8 data:string +@STRING@Type__12UIChangedMsgFv = .data:0x80849DD0; // type:object size:0x10 +__vt__13SetlistRecord = .data:0x80849DE0; // type:object size:0x5C +__vt__10SongRecord = .data:0x80849E3C; // type:object size:0x5C +lbl_80849E98 = .data:0x80849E98; // type:object size:0xC +lbl_80849EA4 = .data:0x80849EA4; // type:object size:0x14 +__RTTI__10SongRecord = .data:0x80849EB8; // type:object size:0x8 +lbl_80849EC0 = .data:0x80849EC0; // type:object size:0x30 +__vt__15SongSelectPanel = .data:0x80849EF0; // type:object size:0xE0 +lbl_80849FD0 = .data:0x80849FD0; // type:object size:0x10 data:string +lbl_80849FE0 = .data:0x80849FE0; // type:object size:0x30 +__RTTI__15SongSelectPanel = .data:0x8084A010; // type:object size:0x8 +lbl_8084A018 = .data:0x8084A018; // type:object size:0x8 +lbl_8084A020 = .data:0x8084A020; // type:object size:0x8 data:string +lbl_8084A028 = .data:0x8084A028; // type:object size:0x80 +__vt__15SetlistProvider = .data:0x8084A0A8; // type:object size:0xBC +lbl_8084A164 = .data:0x8084A164; // type:object size:0x34 +__vt__11SetlistSort = .data:0x8084A198; // type:object size:0x10C +__vt__8SongSort = .data:0x8084A2A4; // type:object size:0x104 +lbl_8084A3A8 = .data:0x8084A3A8; // type:object size:0xC +lbl_8084A3B4 = .data:0x8084A3B4; // type:object size:0x24 +__RTTI__8SongSort = .data:0x8084A3D8; // type:object size:0x8 +__vt__8NodeSort = .data:0x8084A3E0; // type:object size:0xF0 +lbl_8084A4D0 = .data:0x8084A4D0; // type:object size:0x14 +lbl_8084A4E4 = .data:0x8084A4E4; // type:object size:0x2C +__RTTI__16FunctionSortNode = .data:0x8084A510; // type:object size:0x8 +lbl_8084A518 = .data:0x8084A518; // type:object size:0xA8 +__vt__9ArtistCmp = .data:0x8084A5C0; // type:object size:0x1C +lbl_8084A5DC = .data:0x8084A5DC; // type:object size:0xC +lbl_8084A5E8 = .data:0x8084A5E8; // type:object size:0x10 +__RTTI__9ArtistCmp = .data:0x8084A5F8; // type:object size:0x8 +__vt__16SongSortByArtist = .data:0x8084A600; // type:object size:0x104 +lbl_8084A704 = .data:0x8084A704; // type:object size:0x14 +lbl_8084A718 = .data:0x8084A718; // type:object size:0x30 +__RTTI__16SongSortByArtist = .data:0x8084A748; // type:object size:0x8 +lbl_8084A750 = .data:0x8084A750; // type:object size:0x8 +__vt__14SongSortByDiff = .data:0x8084A758; // type:object size:0x104 +lbl_8084A85C = .data:0x8084A85C; // type:object size:0x10 +lbl_8084A86C = .data:0x8084A86C; // type:object size:0x2C +__RTTI__14SongSortByDiff = .data:0x8084A898; // type:object size:0x8 +__vt__13DifficultyCmp = .data:0x8084A8A0; // type:object size:0x1C +lbl_8084A8BC = .data:0x8084A8BC; // type:object size:0x10 +lbl_8084A8CC = .data:0x8084A8CC; // type:object size:0xC +__RTTI__13DifficultyCmp = .data:0x8084A8D8; // type:object size:0x8 +lbl_8084A8E0 = .data:0x8084A8E0; // type:object size:0x8 +__vt__15SongSortByPlays = .data:0x8084A8E8; // type:object size:0x108 +lbl_8084A9F0 = .data:0x8084A9F0; // type:object size:0x10 data:string +lbl_8084AA00 = .data:0x8084AA00; // type:object size:0x30 +__RTTI__15SongSortByPlays = .data:0x8084AA30; // type:object size:0x8 +__vt__8PlaysCmp = .data:0x8084AA38; // type:object size:0x1C +lbl_8084AA54 = .data:0x8084AA54; // type:object size:0xC +lbl_8084AA60 = .data:0x8084AA60; // type:object size:0x10 +__RTTI__8PlaysCmp = .data:0x8084AA70; // type:object size:0x8 +lbl_8084AA78 = .data:0x8084AA78; // type:object size:0x8 +__vt__7RankCmp = .data:0x8084AA80; // type:object size:0x20 +lbl_8084AAA0 = .data:0x8084AAA0; // type:object size:0x8 data:string +lbl_8084AAA8 = .data:0x8084AAA8; // type:object size:0x10 +__RTTI__7RankCmp = .data:0x8084AAB8; // type:object size:0x8 +__vt__14SongSortByRank = .data:0x8084AAC0; // type:object size:0x108 +lbl_8084ABC8 = .data:0x8084ABC8; // type:object size:0x10 +lbl_8084ABD8 = .data:0x8084ABD8; // type:object size:0x30 +__RTTI__14SongSortByRank = .data:0x8084AC08; // type:object size:0x8 +lbl_8084AC10 = .data:0x8084AC10; // type:object size:0x20 +__vt__9RecentCmp = .data:0x8084AC30; // type:object size:0x1C +lbl_8084AC4C = .data:0x8084AC4C; // type:object size:0xC +lbl_8084AC58 = .data:0x8084AC58; // type:object size:0x10 +__RTTI__9RecentCmp = .data:0x8084AC68; // type:object size:0x8 +__vt__16SongSortByRecent = .data:0x8084AC70; // type:object size:0x104 +lbl_8084AD74 = .data:0x8084AD74; // type:object size:0x14 +lbl_8084AD88 = .data:0x8084AD88; // type:object size:0x30 +__RTTI__16SongSortByRecent = .data:0x8084ADB8; // type:object size:0x8 +__vt__16SongSortByReview = .data:0x8084ADC0; // type:object size:0x104 +lbl_8084AEC4 = .data:0x8084AEC4; // type:object size:0x14 +lbl_8084AED8 = .data:0x8084AED8; // type:object size:0x30 +__RTTI__16SongSortByReview = .data:0x8084AF08; // type:object size:0x8 +__vt__9ReviewCmp = .data:0x8084AF10; // type:object size:0x1C +lbl_8084AF2C = .data:0x8084AF2C; // type:object size:0xC +lbl_8084AF38 = .data:0x8084AF38; // type:object size:0x10 +__RTTI__9ReviewCmp = .data:0x8084AF48; // type:object size:0x8 +lbl_8084AF50 = .data:0x8084AF50; // type:object size:0x8 +__vt__14SongSortBySong = .data:0x8084AF58; // type:object size:0x104 +lbl_8084B05C = .data:0x8084B05C; // type:object size:0x10 +lbl_8084B06C = .data:0x8084B06C; // type:object size:0x2C +__RTTI__14SongSortBySong = .data:0x8084B098; // type:object size:0x8 +__vt__7SongCmp = .data:0x8084B0A0; // type:object size:0x20 +lbl_8084B0C0 = .data:0x8084B0C0; // type:object size:0x8 data:string +lbl_8084B0C8 = .data:0x8084B0C8; // type:object size:0x10 +__RTTI__7SongCmp = .data:0x8084B0D8; // type:object size:0x8 +__vt__15SongSortByStars = .data:0x8084B0E0; // type:object size:0x108 +lbl_8084B1E8 = .data:0x8084B1E8; // type:object size:0x10 data:string +lbl_8084B1F8 = .data:0x8084B1F8; // type:object size:0x30 +__RTTI__15SongSortByStars = .data:0x8084B228; // type:object size:0x8 +__vt__8StarsCmp = .data:0x8084B230; // type:object size:0x1C +lbl_8084B24C = .data:0x8084B24C; // type:object size:0xC +lbl_8084B258 = .data:0x8084B258; // type:object size:0x10 +__RTTI__8StarsCmp = .data:0x8084B268; // type:object size:0x8 +lbl_8084B270 = .data:0x8084B270; // type:object size:0x8 +jumptable_8084B278 = .data:0x8084B278; // type:object size:0x2C scope:local +jumptable_8084B2A4 = .data:0x8084B2A4; // type:object size:0x2C scope:local +__vt__20InternalSavedSetlist = .data:0x8084B2D0; // type:object size:0x34 +lbl_8084B304 = .data:0x8084B304; // type:object size:0x18 +lbl_8084B31C = .data:0x8084B31C; // type:object size:0xC +__RTTI__20InternalSavedSetlist = .data:0x8084B328; // type:object size:0x8 +__vt__11SongSortMgr = .data:0x8084B330; // type:object size:0xC +lbl_8084B33C = .data:0x8084B33C; // type:object size:0xC data:string +__RTTI__11SongSortMgr = .data:0x8084B348; // type:object size:0x8 +lbl_8084B350 = .data:0x8084B350; // type:object size:0x28 +__vt__15SetlistSortNode = .data:0x8084B378; // type:object size:0xA0 +__vt__17OwnedSongSortNode = .data:0x8084B418; // type:object size:0xB0 +__vt__12SongSortNode = .data:0x8084B4C8; // type:object size:0xB0 +__vt__16FunctionSortNode = .data:0x8084B578; // type:object size:0xA8 +__vt__17SubheaderSortNode = .data:0x8084B620; // type:object size:0xA8 +__vt__14HeaderSortNode = .data:0x8084B6C8; // type:object size:0xA0 +__vt__8SortNode = .data:0x8084B768; // type:object size:0xA0 +__vt__12ShortcutNode = .data:0x8084B808; // type:object size:0x70 +lbl_8084B878 = .data:0x8084B878; // type:object size:0x10 +lbl_8084B888 = .data:0x8084B888; // type:object size:0x20 +__RTTI__12ShortcutNode = .data:0x8084B8A8; // type:object size:0x8 +__vt__4Node = .data:0x8084B8B0; // type:object size:0x6C +lbl_8084B91C = .data:0x8084B91C; // type:object size:0x9C +__vt__13SongStatusMgr = .data:0x8084B9B8; // type:object size:0x78 +lbl_8084BA30 = .data:0x8084BA30; // type:object size:0x10 +lbl_8084BA40 = .data:0x8084BA40; // type:object size:0x20 +__RTTI__13SongStatusMgr = .data:0x8084BA60; // type:object size:0x8 +__vt__18SongStatusCacheMgr = .data:0x8084BA68; // type:object size:0x14 +lbl_8084BA7C = .data:0x8084BA7C; // type:object size:0x14 +lbl_8084BA90 = .data:0x8084BA90; // type:object size:0x10 +__RTTI__18SongStatusCacheMgr = .data:0x8084BAA0; // type:object size:0x8 +__vt__10SongStatus = .data:0x8084BAA8; // type:object size:0x14 +lbl_8084BABC = .data:0x8084BABC; // type:object size:0xC +lbl_8084BAC8 = .data:0x8084BAC8; // type:object size:0x10 +__RTTI__10SongStatus = .data:0x8084BAD8; // type:object size:0x8 +lbl_8084BAE0 = .data:0x8084BAE0; // type:object size:0x4 data:4byte +__vt__14SongUpgradeMgr = .data:0x8084BAE4; // type:object size:0x44 +lbl_8084BB28 = .data:0x8084BB28; // type:object size:0x10 +__RTTI__14SongUpgradeMgr = .data:0x8084BB38; // type:object size:0x8 +lbl_8084BB40 = .data:0x8084BB40; // type:object size:0x80 +__vt__7StandIn = .data:0x8084BBC0; // type:object size:0x18 +lbl_8084BBD8 = .data:0x8084BBD8; // type:object size:0x8 data:string +lbl_8084BBE0 = .data:0x8084BBE0; // type:object size:0x10 +__RTTI__7StandIn = .data:0x8084BBF0; // type:object size:0x8 +__vt__15StandInProvider = .data:0x8084BBF8; // type:object size:0xC0 +lbl_8084BCB8 = .data:0x8084BCB8; // type:object size:0x10 data:string +lbl_8084BCC8 = .data:0x8084BCC8; // type:object size:0x20 +__RTTI__15StandInProvider = .data:0x8084BCE8; // type:object size:0x8 +lbl_8084BCF0 = .data:0x8084BCF0; // type:object size:0x8 +lbl_8084BCF8 = .data:0x8084BCF8; // type:object size:0x8 data:4byte +__vt__14StoreInfoPanel = .data:0x8084BD00; // type:object size:0xC0 +lbl_8084BDC0 = .data:0x8084BDC0; // type:object size:0x18 +lbl_8084BDD8 = .data:0x8084BDD8; // type:object size:0x20 +lbl_8084BDF8 = .data:0x8084BDF8; // type:object size:0x10 +lbl_8084BE08 = .data:0x8084BE08; // type:object size:0x8 +lbl_8084BE10 = .data:0x8084BE10; // type:object size:0x8 +lbl_8084BE18 = .data:0x8084BE18; // type:object size:0x8 data:string +lbl_8084BE20 = .data:0x8084BE20; // type:object size:0xB data:string +lbl_8084BE2B = .data:0x8084BE2B; // type:object size:0x2D +__vt__14StoreMainPanel = .data:0x8084BE58; // type:object size:0xBC +lbl_8084BF14 = .data:0x8084BF14; // type:object size:0x10 +lbl_8084BF24 = .data:0x8084BF24; // type:object size:0x24 +__RTTI__14StoreMainPanel = .data:0x8084BF48; // type:object size:0x8 +lbl_8084BF50 = .data:0x8084BF50; // type:object size:0x8 +lbl_8084BF58 = .data:0x8084BF58; // type:object size:0x8 data:string +lbl_8084BF60 = .data:0x8084BF60; // type:object size:0x78 +__vt__14StoreMenuPanel = .data:0x8084BFD8; // type:object size:0xBC +lbl_8084C094 = .data:0x8084C094; // type:object size:0x10 +lbl_8084C0A4 = .data:0x8084C0A4; // type:object size:0x1C +__RTTI__14StoreMenuPanel = .data:0x8084C0C0; // type:object size:0x8 +lbl_8084C0C8 = .data:0x8084C0C8; // type:object size:0x8 +lbl_8084C0D0 = .data:0x8084C0D0; // type:object size:0x8 data:string +lbl_8084C0D8 = .data:0x8084C0D8; // type:object size:0x10 +__vt__17StoreMenuProvider = .data:0x8084C0E8; // type:object size:0xC0 +lbl_8084C1A8 = .data:0x8084C1A8; // type:object size:0x14 +lbl_8084C1BC = .data:0x8084C1BC; // type:object size:0x1C +__RTTI__17StoreMenuProvider = .data:0x8084C1D8; // type:object size:0x8 +lbl_8084C1E0 = .data:0x8084C1E0; // type:object size:0x28 +__vt__18StoreOfferProvider = .data:0x8084C208; // type:object size:0xD4 +lbl_8084C2DC = .data:0x8084C2DC; // type:object size:0x14 +lbl_8084C2F0 = .data:0x8084C2F0; // type:object size:0x20 +__RTTI__18StoreOfferProvider = .data:0x8084C310; // type:object size:0x8 +lbl_8084C318 = .data:0x8084C318; // type:object size:0x78 +__vt__14StoreRootPanel = .data:0x8084C390; // type:object size:0xBC +lbl_8084C44C = .data:0x8084C44C; // type:object size:0x10 +lbl_8084C45C = .data:0x8084C45C; // type:object size:0x1C +__RTTI__14StoreRootPanel = .data:0x8084C478; // type:object size:0x8 +lbl_8084C480 = .data:0x8084C480; // type:object size:0x8 +lbl_8084C488 = .data:0x8084C488; // type:object size:0x8 data:string +__vt__17StoreSongSortNode = .data:0x8084C490; // type:object size:0xB0 +lbl_8084C540 = .data:0x8084C540; // type:object size:0x14 +lbl_8084C554 = .data:0x8084C554; // type:object size:0x34 +__RTTI__17StoreSongSortNode = .data:0x8084C588; // type:object size:0x8 +lbl_8084C590 = .data:0x8084C590; // type:object size:0x28 +lbl_8084C5B8 = .data:0x8084C5B8; // type:object size:0xC +lbl_8084C5C4 = .data:0x8084C5C4; // type:object size:0x4C +__RTTI__10BandButton = .data:0x8084C610; // type:object size:0x8 +lbl_8084C618 = .data:0x8084C618; // type:object size:0xC +lbl_8084C624 = .data:0x8084C624; // type:object size:0x44 +__RTTI__8UIButton = .data:0x8084C668; // type:object size:0x8 +__vt__12TexLoadPanel = .data:0x8084C670; // type:object size:0x10C +lbl_8084C77C = .data:0x8084C77C; // type:object size:0x8 +lbl_8084C784 = .data:0x8084C784; // type:object size:0xC +lbl_8084C790 = .data:0x8084C790; // type:object size:0x8 +lbl_8084C798 = .data:0x8084C798; // type:object size:0xC +lbl_8084C7A4 = .data:0x8084C7A4; // type:object size:0xC +lbl_8084C7B0 = .data:0x8084C7B0; // type:object size:0x8 +lbl_8084C7B8 = .data:0x8084C7B8; // type:object size:0x8 +lbl_8084C7C0 = .data:0x8084C7C0; // type:object size:0x8 data:string +lbl_8084C7C8 = .data:0x8084C7C8; // type:object size:0x18 +__vt__20TokenRedemptionPanel = .data:0x8084C7E0; // type:object size:0x134 +lbl_8084C914 = .data:0x8084C914; // type:object size:0x18 +lbl_8084C92C = .data:0x8084C92C; // type:object size:0x24 +__RTTI__20TokenRedemptionPanel = .data:0x8084C950; // type:object size:0x8 +lbl_8084C958 = .data:0x8084C958; // type:object size:0x8 +lbl_8084C960 = .data:0x8084C960; // type:object size:0x8 data:string +lbl_8084C968 = .data:0x8084C968; // type:object size:0x50 +__vt__15TrainerProvider = .data:0x8084C9B8; // type:object size:0xC0 +lbl_8084CA78 = .data:0x8084CA78; // type:object size:0x10 data:string +lbl_8084CA88 = .data:0x8084CA88; // type:object size:0x20 +__RTTI__15TrainerProvider = .data:0x8084CAA8; // type:object size:0x8 +lbl_8084CAB0 = .data:0x8084CAB0; // type:object size:0x18 +__vt__11TrainingMgr = .data:0x8084CAC8; // type:object size:0x5C +lbl_8084CB24 = .data:0x8084CB24; // type:object size:0xC data:string +lbl_8084CB30 = .data:0x8084CB30; // type:object size:0x18 +__RTTI__11TrainingMgr = .data:0x8084CB48; // type:object size:0x8 +lbl_8084CB50 = .data:0x8084CB50; // type:object size:0x10 +lbl_8084CB60 = .data:0x8084CB60; // type:object size:0x18 +__vt__13TrainingPanel = .data:0x8084CB78; // type:object size:0xBC +lbl_8084CC34 = .data:0x8084CC34; // type:object size:0x10 +lbl_8084CC44 = .data:0x8084CC44; // type:object size:0x1C +__RTTI__13TrainingPanel = .data:0x8084CC60; // type:object size:0x8 +lbl_8084CC68 = .data:0x8084CC68; // type:object size:0x8 +lbl_8084CC70 = .data:0x8084CC70; // type:object size:0x8 data:string +lbl_8084CC78 = .data:0x8084CC78; // type:object size:0x10 +__vt__16UGCPurchasePanel = .data:0x8084CC88; // type:object size:0xC0 +lbl_8084CD48 = .data:0x8084CD48; // type:object size:0x14 +lbl_8084CD5C = .data:0x8084CD5C; // type:object size:0x1C +__RTTI__16UGCPurchasePanel = .data:0x8084CD78; // type:object size:0x8 +lbl_8084CD80 = .data:0x8084CD80; // type:object size:0x8 +lbl_8084CD88 = .data:0x8084CD88; // type:object size:0x8 data:string +lbl_8084CD90 = .data:0x8084CD90; // type:object size:0x20 +lbl_8084CDB0 = .data:0x8084CDB0; // type:object size:0x34 +lbl_8084CDE4 = .data:0x8084CDE4; // type:object size:0x20 +lbl_8084CE04 = .data:0x8084CE04; // type:object size:0x14 +lbl_8084CE18 = .data:0x8084CE18; // type:object size:0x8 +lbl_8084CE20 = .data:0x8084CE20; // type:object size:0x34 +lbl_8084CE54 = .data:0x8084CE54; // type:object size:0x1C +lbl_8084CE70 = .data:0x8084CE70; // type:object size:0x18 +lbl_8084CE88 = .data:0x8084CE88; // type:object size:0x8 +__vt__15TransitionEvent = .data:0x8084CE90; // type:object size:0x38 +lbl_8084CEC8 = .data:0x8084CEC8; // type:object size:0x10 data:string +lbl_8084CED8 = .data:0x8084CED8; // type:object size:0x10 +__RTTI__15TransitionEvent = .data:0x8084CEE8; // type:object size:0x8 +__vt__11DialogEvent = .data:0x8084CEF0; // type:object size:0x2C +lbl_8084CF1C = .data:0x8084CF1C; // type:object size:0xC data:string +lbl_8084CF28 = .data:0x8084CF28; // type:object size:0x10 +__RTTI__11DialogEvent = .data:0x8084CF38; // type:object size:0x8 +__vt__7UIEvent = .data:0x8084CF40; // type:object size:0x30 +lbl_8084CF70 = .data:0x8084CF70; // type:object size:0x8 data:string +__RTTI__7UIEvent = .data:0x8084CF78; // type:object size:0x8 +lbl_8084CF80 = .data:0x8084CF80; // type:object size:0x20 +__vt__10UIEventMgr = .data:0x8084CFA0; // type:object size:0x80 +lbl_8084D020 = .data:0x8084D020; // type:object size:0xC +lbl_8084D02C = .data:0x8084D02C; // type:object size:0x1C +__RTTI__10UIEventMgr = .data:0x8084D048; // type:object size:0x8 +lbl_8084D050 = .data:0x8084D050; // type:object size:0x10 +__vt__7UIStats = .data:0x8084D060; // type:object size:0x60 +lbl_8084D0C0 = .data:0x8084D0C0; // type:object size:0x8 data:string +lbl_8084D0C8 = .data:0x8084D0C8; // type:object size:0x18 +__RTTI__7UIStats = .data:0x8084D0E0; // type:object size:0x8 +lbl_8084D0E8 = .data:0x8084D0E8; // type:object size:0x88 +__vt__14UploadErrorMgr = .data:0x8084D170; // type:object size:0x5C +lbl_8084D1CC = .data:0x8084D1CC; // type:object size:0x10 +lbl_8084D1DC = .data:0x8084D1DC; // type:object size:0x14 +__RTTI__14UploadErrorMgr = .data:0x8084D1F0; // type:object size:0x8 +lbl_8084D1F8 = .data:0x8084D1F8; // type:object size:0x4 data:4byte +lbl_8084D1FC = .data:0x8084D1FC; // type:object size:0xEC +jumptable_8084D2E8 = .data:0x8084D2E8; // type:object size:0x24 scope:local +jumptable_8084D30C = .data:0x8084D30C; // type:object size:0x2C scope:local +jumptable_8084D338 = .data:0x8084D338; // type:object size:0x2C scope:local +__vt__20ViewSettingsProvider = .data:0x8084D368; // type:object size:0xC0 +__vt__17HeaderViewSetting = .data:0x8084D428; // type:object size:0x80 +lbl_8084D4A8 = .data:0x8084D4A8; // type:object size:0x14 +lbl_8084D4BC = .data:0x8084D4BC; // type:object size:0x14 +__RTTI__17HeaderViewSetting = .data:0x8084D4D0; // type:object size:0x8 +__vt__20ScoreTypeViewSetting = .data:0x8084D4D8; // type:object size:0x80 +lbl_8084D558 = .data:0x8084D558; // type:object size:0x18 +lbl_8084D570 = .data:0x8084D570; // type:object size:0x18 +__RTTI__20ScoreTypeViewSetting = .data:0x8084D588; // type:object size:0x8 +lbl_8084D590 = .data:0x8084D590; // type:object size:0x80 +lbl_8084D610 = .data:0x8084D610; // type:object size:0x14 +lbl_8084D624 = .data:0x8084D624; // type:object size:0x14 +lbl_8084D638 = .data:0x8084D638; // type:object size:0x8 +__vt__15SortViewSetting = .data:0x8084D640; // type:object size:0x80 +lbl_8084D6C0 = .data:0x8084D6C0; // type:object size:0x10 data:string +lbl_8084D6D0 = .data:0x8084D6D0; // type:object size:0x18 +__RTTI__15SortViewSetting = .data:0x8084D6E8; // type:object size:0x8 +__vt__11ViewSetting = .data:0x8084D6F0; // type:object size:0x80 +lbl_8084D770 = .data:0x8084D770; // type:object size:0xC data:string +lbl_8084D77C = .data:0x8084D77C; // type:object size:0xC +__RTTI__11ViewSetting = .data:0x8084D788; // type:object size:0x8 +lbl_8084D790 = .data:0x8084D790; // type:object size:0x10 +lbl_8084D7A0 = .data:0x8084D7A0; // type:object size:0x10 +lbl_8084D7B0 = .data:0x8084D7B0; // type:object size:0x48 +lbl_8084D7F8 = .data:0x8084D7F8; // type:object size:0xC +lbl_8084D804 = .data:0x8084D804; // type:object size:0x1C +__RTTI__8BinkClip = .data:0x8084D820; // type:object size:0x8 +__vt__14VoiceoverPanel = .data:0x8084D828; // type:object size:0x114 +lbl_8084D93C = .data:0x8084D93C; // type:object size:0xC +lbl_8084D948 = .data:0x8084D948; // type:object size:0x8 +lbl_8084D950 = .data:0x8084D950; // type:object size:0x8 data:string +lbl_8084D958 = .data:0x8084D958; // type:object size:0x30 +lbl_8084D988 = .data:0x8084D988; // type:object size:0x2C +lbl_8084D9B4 = .data:0x8084D9B4; // type:object size:0x34 +lbl_8084D9E8 = .data:0x8084D9E8; // type:object size:0x18 +lbl_8084DA00 = .data:0x8084DA00; // type:object size:0x8 +lbl_8084DA08 = .data:0x8084DA08; // type:object size:0x6C +lbl_8084DA74 = .data:0x8084DA74; // type:object size:0x2C data:string +lbl_8084DAA0 = .data:0x8084DAA0; // type:object size:0x20 +lbl_8084DAC0 = .data:0x8084DAC0; // type:object size:0x8 +__vt__12EnterFlowMsg = .data:0x8084DAC8; // type:object size:0x28 +lbl_8084DAF0 = .data:0x8084DAF0; // type:object size:0x10 +lbl_8084DB00 = .data:0x8084DB00; // type:object size:0x10 +__RTTI__12EnterFlowMsg = .data:0x8084DB10; // type:object size:0x8 +lbl_8084DB18 = .data:0x8084DB18; // type:object size:0x34 +lbl_8084DB4C = .data:0x8084DB4C; // type:object size:0x14 data:string +lbl_8084DB60 = .data:0x8084DB60; // type:object size:0x20 +lbl_8084DB80 = .data:0x8084DB80; // type:object size:0x8 +__vt__15WaitingUserGate = .data:0x8084DB88; // type:object size:0x60 +lbl_8084DBE8 = .data:0x8084DBE8; // type:object size:0x10 data:string +lbl_8084DBF8 = .data:0x8084DBF8; // type:object size:0x18 +__RTTI__15WaitingUserGate = .data:0x8084DC10; // type:object size:0x8 +lbl_8084DC18 = .data:0x8084DC18; // type:object size:0x10 +lbl_8084DC28 = .data:0x8084DC28; // type:object size:0x10 +lbl_8084DC38 = .data:0x8084DC38; // type:object size:0x10 +lbl_8084DC48 = .data:0x8084DC48; // type:object size:0x28 +__vt__24OvershellProfileProvider = .data:0x8084DC70; // type:object size:0xC0 +lbl_8084DD30 = .data:0x8084DD30; // type:object size:0x1C +lbl_8084DD4C = .data:0x8084DD4C; // type:object size:0x1C +__RTTI__24OvershellProfileProvider = .data:0x8084DD68; // type:object size:0x8 +lbl_8084DD70 = .data:0x8084DD70; // type:object size:0x10 +lbl_8084DD80 = .data:0x8084DD80; // type:object size:0x18 +lbl_8084DD98 = .data:0x8084DD98; // type:object size:0x14 +lbl_8084DDAC = .data:0x8084DDAC; // type:object size:0xC +lbl_8084DDB8 = .data:0x8084DDB8; // type:object size:0x8 +lbl_8084DDC0 = .data:0x8084DDC0; // type:object size:0x18 +lbl_8084DDD8 = .data:0x8084DDD8; // type:object size:0x14 +lbl_8084DDEC = .data:0x8084DDEC; // type:object size:0xC +lbl_8084DDF8 = .data:0x8084DDF8; // type:object size:0x8 +lbl_8084DE00 = .data:0x8084DE00; // type:object size:0x10 +lbl_8084DE10 = .data:0x8084DE10; // type:object size:0x8 +__vt__22WiiInvitationsProvider = .data:0x8084DE18; // type:object size:0xC0 +lbl_8084DED8 = .data:0x8084DED8; // type:object size:0x18 +lbl_8084DEF0 = .data:0x8084DEF0; // type:object size:0x20 +__RTTI__22WiiInvitationsProvider = .data:0x8084DF10; // type:object size:0x8 +__vt__25WiiFriendsDetailsProvider = .data:0x8084DF18; // type:object size:0xC8 +lbl_8084DFE0 = .data:0x8084DFE0; // type:object size:0x1C +lbl_8084DFFC = .data:0x8084DFFC; // type:object size:0x1C +__RTTI__25WiiFriendsDetailsProvider = .data:0x8084E018; // type:object size:0x8 +__vt__18WiiFriendsProvider = .data:0x8084E020; // type:object size:0xC0 +lbl_8084E0E0 = .data:0x8084E0E0; // type:object size:0x14 +lbl_8084E0F4 = .data:0x8084E0F4; // type:object size:0x1C +__RTTI__18WiiFriendsProvider = .data:0x8084E110; // type:object size:0x8 +lbl_8084E118 = .data:0x8084E118; // type:object size:0x8 +lbl_8084E120 = .data:0x8084E120; // type:object size:0x8 data:string +lbl_8084E128 = .data:0x8084E128; // type:object size:0xA0 +__vt__15WiiProfilePanel = .data:0x8084E1C8; // type:object size:0xC0 +lbl_8084E288 = .data:0x8084E288; // type:object size:0x10 data:string +lbl_8084E298 = .data:0x8084E298; // type:object size:0x20 +__RTTI__15WiiProfilePanel = .data:0x8084E2B8; // type:object size:0x8 +lbl_8084E2C0 = .data:0x8084E2C0; // type:object size:0x8 +lbl_8084E2C8 = .data:0x8084E2C8; // type:object size:0x8 data:string +lbl_8084E2D0 = .data:0x8084E2D0; // type:object size:0x18 +lbl_8084E2E8 = .data:0x8084E2E8; // type:object size:0x34 +lbl_8084E31C = .data:0x8084E31C; // type:object size:0x14 +lbl_8084E330 = .data:0x8084E330; // type:object size:0x20 +lbl_8084E350 = .data:0x8084E350; // type:object size:0x8 +lbl_8084E358 = .data:0x8084E358; // type:object size:0x28 +lbl_8084E380 = .data:0x8084E380; // type:object size:0x14 data:string +lbl_8084E394 = .data:0x8084E394; // type:object size:0xC +lbl_8084E3A0 = .data:0x8084E3A0; // type:object size:0x8 +lbl_8084E3A8 = .data:0x8084E3A8; // type:object size:0x90 +lbl_8084E438 = .data:0x8084E438; // type:object size:0x14 +lbl_8084E44C = .data:0x8084E44C; // type:object size:0x24 +lbl_8084E470 = .data:0x8084E470; // type:object size:0x8 +lbl_8084E478 = .data:0x8084E478; // type:object size:0x14 data:string +lbl_8084E48C = .data:0x8084E48C; // type:object size:0x14 data:string +lbl_8084E4A0 = .data:0x8084E4A0; // type:object size:0x14 data:string +lbl_8084E4B4 = .data:0x8084E4B4; // type:object size:0xC +lbl_8084E4C0 = .data:0x8084E4C0; // type:object size:0x8 data:string +lbl_8084E4C8 = .data:0x8084E4C8; // type:object size:0x28 +__vt__26StoreOfferContentsProvider = .data:0x8084E4F0; // type:object size:0xD8 +lbl_8084E5C8 = .data:0x8084E5C8; // type:object size:0x1C +lbl_8084E5E4 = .data:0x8084E5E4; // type:object size:0x1C +__RTTI__26StoreOfferContentsProvider = .data:0x8084E600; // type:object size:0x8 +lbl_8084E608 = .data:0x8084E608; // type:object size:0x18 +lbl_8084E620 = .data:0x8084E620; // type:object size:0xC +lbl_8084E62C = .data:0x8084E62C; // type:object size:0x14 +lbl_8084E640 = .data:0x8084E640; // type:object size:0x8 +lbl_8084E648 = .data:0x8084E648; // type:object size:0x8 +lbl_8084E650 = .data:0x8084E650; // type:object size:0xC +lbl_8084E65C = .data:0x8084E65C; // type:object size:0xC +lbl_8084E668 = .data:0x8084E668; // type:object size:0x8 +lbl_8084E670 = .data:0x8084E670; // type:object size:0x8 +lbl_8084E678 = .data:0x8084E678; // type:object size:0x10 +lbl_8084E688 = .data:0x8084E688; // type:object size:0x8 +lbl_8084E690 = .data:0x8084E690; // type:object size:0x8 +lbl_8084E698 = .data:0x8084E698; // type:object size:0x28 +__vt__12QuestJournal = .data:0x8084E6C0; // type:object size:0x14 +lbl_8084E6D4 = .data:0x8084E6D4; // type:object size:0x10 +lbl_8084E6E4 = .data:0x8084E6E4; // type:object size:0xC +__RTTI__12QuestJournal = .data:0x8084E6F0; // type:object size:0x8 +lbl_8084E6F8 = .data:0x8084E6F8; // type:object size:0xC +lbl_8084E704 = .data:0x8084E704; // type:object size:0x14 +lbl_8084E718 = .data:0x8084E718; // type:object size:0x8 +lbl_8084E720 = .data:0x8084E720; // type:object size:0x28 +__vt__19QuestFilterProvider = .data:0x8084E748; // type:object size:0xBC +lbl_8084E804 = .data:0x8084E804; // type:object size:0x14 data:string +lbl_8084E818 = .data:0x8084E818; // type:object size:0x20 +__RTTI__19QuestFilterProvider = .data:0x8084E838; // type:object size:0x8 +lbl_8084E840 = .data:0x8084E840; // type:object size:0x14 +lbl_8084E854 = .data:0x8084E854; // type:object size:0x24 +lbl_8084E878 = .data:0x8084E878; // type:object size:0x8 +lbl_8084E880 = .data:0x8084E880; // type:object size:0x14 +lbl_8084E894 = .data:0x8084E894; // type:object size:0x1C +lbl_8084E8B0 = .data:0x8084E8B0; // type:object size:0x8 +__vt__16QuestFilterPanel = .data:0x8084E8B8; // type:object size:0x10C +lbl_8084E9C4 = .data:0x8084E9C4; // type:object size:0x14 +lbl_8084E9D8 = .data:0x8084E9D8; // type:object size:0x30 +__RTTI__16QuestFilterPanel = .data:0x8084EA08; // type:object size:0x8 +lbl_8084EA10 = .data:0x8084EA10; // type:object size:0x8 +lbl_8084EA18 = .data:0x8084EA18; // type:object size:0x8 +lbl_8084EA20 = .data:0x8084EA20; // type:object size:0x8 +lbl_8084EA28 = .data:0x8084EA28; // type:object size:0x8 +lbl_8084EA30 = .data:0x8084EA30; // type:object size:0x10 +lbl_8084EA40 = .data:0x8084EA40; // type:object size:0x10 +lbl_8084EA50 = .data:0x8084EA50; // type:object size:0x10 +lbl_8084EA60 = .data:0x8084EA60; // type:object size:0x8 +lbl_8084EA68 = .data:0x8084EA68; // type:object size:0x8 +lbl_8084EA70 = .data:0x8084EA70; // type:object size:0x8 data:string +lbl_8084EA78 = .data:0x8084EA78; // type:object size:0x70 +lbl_8084EAE8 = .data:0x8084EAE8; // type:object size:0x14 data:string +lbl_8084EAFC = .data:0x8084EAFC; // type:object size:0x24 +lbl_8084EB20 = .data:0x8084EB20; // type:object size:0x8 +__vt__4Tour = .data:0x8084EB28; // type:object size:0x5C +lbl_8084EB84 = .data:0x8084EB84; // type:object size:0x8 +lbl_8084EB8C = .data:0x8084EB8C; // type:object size:0x14 +__RTTI__4Tour = .data:0x8084EBA0; // type:object size:0x8 +lbl_8084EBA8 = .data:0x8084EBA8; // type:object size:0x68 +__vt__8TourBand = .data:0x8084EC10; // type:object size:0x9C +lbl_8084ECAC = .data:0x8084ECAC; // type:object size:0xC +lbl_8084ECB8 = .data:0x8084ECB8; // type:object size:0x28 +__RTTI__8TourBand = .data:0x8084ECE0; // type:object size:0x8 +lbl_8084ECE8 = .data:0x8084ECE8; // type:object size:0x48 +__vt__25TourChallengeResultsPanel = .data:0x8084ED30; // type:object size:0xBC +lbl_8084EDEC = .data:0x8084EDEC; // type:object size:0x1C +lbl_8084EE08 = .data:0x8084EE08; // type:object size:0x20 +__RTTI__25TourChallengeResultsPanel = .data:0x8084EE28; // type:object size:0x8 +lbl_8084EE30 = .data:0x8084EE30; // type:object size:0x8 +lbl_8084EE38 = .data:0x8084EE38; // type:object size:0x8 data:string +__vt__8TourChar = .data:0x8084EE40; // type:object size:0xD0 +__vt__13TourCharLocal = .data:0x8084EF10; // type:object size:0xD0 +__vt__14TourCharRemote = .data:0x8084EFE0; // type:object size:0xCC +lbl_8084F0AC = .data:0x8084F0AC; // type:object size:0x10 +lbl_8084F0BC = .data:0x8084F0BC; // type:object size:0x34 +__RTTI__14TourCharRemote = .data:0x8084F0F0; // type:object size:0x8 +lbl_8084F0F8 = .data:0x8084F0F8; // type:object size:0xC +lbl_8084F104 = .data:0x8084F104; // type:object size:0x14 +lbl_8084F118 = .data:0x8084F118; // type:object size:0x8 +lbl_8084F120 = .data:0x8084F120; // type:object size:0x28 +lbl_8084F148 = .data:0x8084F148; // type:object size:0x10 +lbl_8084F158 = .data:0x8084F158; // type:object size:0x10 +lbl_8084F168 = .data:0x8084F168; // type:object size:0x8 +lbl_8084F170 = .data:0x8084F170; // type:object size:0xC +lbl_8084F17C = .data:0x8084F17C; // type:object size:0x14 +lbl_8084F190 = .data:0x8084F190; // type:object size:0x8 +lbl_8084F198 = .data:0x8084F198; // type:object size:0x48 +__vt__16TourDescProvider = .data:0x8084F1E0; // type:object size:0xBC +lbl_8084F29C = .data:0x8084F29C; // type:object size:0x14 +lbl_8084F2B0 = .data:0x8084F2B0; // type:object size:0x20 +__RTTI__16TourDescProvider = .data:0x8084F2D0; // type:object size:0x8 +__vt__13TourDescPanel = .data:0x8084F2D8; // type:object size:0x10C +lbl_8084F3E4 = .data:0x8084F3E4; // type:object size:0x10 +lbl_8084F3F4 = .data:0x8084F3F4; // type:object size:0x2C +__RTTI__13TourDescPanel = .data:0x8084F420; // type:object size:0x8 +lbl_8084F428 = .data:0x8084F428; // type:object size:0x14 data:string +lbl_8084F43C = .data:0x8084F43C; // type:object size:0x14 +lbl_8084F450 = .data:0x8084F450; // type:object size:0xC +lbl_8084F45C = .data:0x8084F45C; // type:object size:0x8 +lbl_8084F464 = .data:0x8084F464; // type:object size:0xC +lbl_8084F470 = .data:0x8084F470; // type:object size:0x8 +lbl_8084F478 = .data:0x8084F478; // type:object size:0x8 data:string +lbl_8084F480 = .data:0x8084F480; // type:object size:0x4 +lbl_8084F484 = .data:0x8084F484; // type:object size:0x10 +lbl_8084F494 = .data:0x8084F494; // type:object size:0x8 +lbl_8084F49C = .data:0x8084F49C; // type:object size:0x14 +lbl_8084F4B0 = .data:0x8084F4B0; // type:object size:0x8 +lbl_8084F4B8 = .data:0x8084F4B8; // type:object size:0x14 +lbl_8084F4CC = .data:0x8084F4CC; // type:object size:0x8 +lbl_8084F4D4 = .data:0x8084F4D4; // type:object size:0x14 data:string +lbl_8084F4E8 = .data:0x8084F4E8; // type:object size:0xC +lbl_8084F4F4 = .data:0x8084F4F4; // type:object size:0x10 +lbl_8084F504 = .data:0x8084F504; // type:object size:0x14 +lbl_8084F518 = .data:0x8084F518; // type:object size:0x10 data:string +lbl_8084F528 = .data:0x8084F528; // type:object size:0x10 data:string +lbl_8084F538 = .data:0x8084F538; // type:object size:0x8 data:string +lbl_8084F540 = .data:0x8084F540; // type:object size:0x10 +lbl_8084F550 = .data:0x8084F550; // type:object size:0x18 data:string +lbl_8084F568 = .data:0x8084F568; // type:object size:0x1C +lbl_8084F584 = .data:0x8084F584; // type:object size:0x1C +lbl_8084F5A0 = .data:0x8084F5A0; // type:object size:0x14 +lbl_8084F5B4 = .data:0x8084F5B4; // type:object size:0xC +lbl_8084F5C0 = .data:0x8084F5C0; // type:object size:0x14 data:string +lbl_8084F5D4 = .data:0x8084F5D4; // type:object size:0xC +lbl_8084F5E0 = .data:0x8084F5E0; // type:object size:0x14 data:string +lbl_8084F5F4 = .data:0x8084F5F4; // type:object size:0xC +lbl_8084F600 = .data:0x8084F600; // type:object size:0xC +lbl_8084F60C = .data:0x8084F60C; // type:object size:0xC +lbl_8084F618 = .data:0x8084F618; // type:object size:0x8 data:string +lbl_8084F620 = .data:0x8084F620; // type:object size:0x138 +lbl_8084F758 = .data:0x8084F758; // type:object size:0xC +lbl_8084F764 = .data:0x8084F764; // type:object size:0x14 +lbl_8084F778 = .data:0x8084F778; // type:object size:0x8 +lbl_8084F780 = .data:0x8084F780; // type:object size:0x10 +lbl_8084F790 = .data:0x8084F790; // type:object size:0x10 +lbl_8084F7A0 = .data:0x8084F7A0; // type:object size:0x8 +lbl_8084F7A8 = .data:0x8084F7A8; // type:object size:0x88 +lbl_8084F830 = .data:0x8084F830; // type:object size:0x8 +lbl_8084F838 = .data:0x8084F838; // type:object size:0x88 +lbl_8084F8C0 = .data:0x8084F8C0; // type:object size:0x28 +lbl_8084F8E8 = .data:0x8084F8E8; // type:object size:0x90 +__vt__12TourProgress = .data:0x8084F978; // type:object size:0x9C +lbl_8084FA14 = .data:0x8084FA14; // type:object size:0x10 +lbl_8084FA24 = .data:0x8084FA24; // type:object size:0x24 +__RTTI__12TourProgress = .data:0x8084FA48; // type:object size:0x8 +lbl_8084FA50 = .data:0x8084FA50; // type:object size:0x10 +lbl_8084FA60 = .data:0x8084FA60; // type:object size:0xC +lbl_8084FA6C = .data:0x8084FA6C; // type:object size:0x14 +lbl_8084FA80 = .data:0x8084FA80; // type:object size:0x8 +__vt__22TourPropertyCollection = .data:0x8084FA88; // type:object size:0x14 +lbl_8084FA9C = .data:0x8084FA9C; // type:object size:0x18 +lbl_8084FAB4 = .data:0x8084FAB4; // type:object size:0xC +__RTTI__22TourPropertyCollection = .data:0x8084FAC0; // type:object size:0x8 +lbl_8084FAC8 = .data:0x8084FAC8; // type:object size:0x10 +lbl_8084FAD8 = .data:0x8084FAD8; // type:object size:0x14 +lbl_8084FAEC = .data:0x8084FAEC; // type:object size:0xC +lbl_8084FAF8 = .data:0x8084FAF8; // type:object size:0x8 +lbl_8084FB00 = .data:0x8084FB00; // type:object size:0xC +lbl_8084FB0C = .data:0x8084FB0C; // type:object size:0xC +lbl_8084FB18 = .data:0x8084FB18; // type:object size:0x8 +lbl_8084FB20 = .data:0x8084FB20; // type:object size:0x18 +__vt__11TourSavable = .data:0x8084FB38; // type:object size:0x80 +lbl_8084FBB8 = .data:0x8084FBB8; // type:object size:0x10 +lbl_8084FBC8 = .data:0x8084FBC8; // type:object size:0x18 +lbl_8084FBE0 = .data:0x8084FBE0; // type:object size:0x8 +lbl_8084FBE8 = .data:0x8084FBE8; // type:object size:0x10 +lbl_8084FBF8 = .data:0x8084FBF8; // type:object size:0x8 +__vt__14DataResultList = .data:0x8084FC00; // type:object size:0x14 +lbl_8084FC14 = .data:0x8084FC14; // type:object size:0x10 +lbl_8084FC24 = .data:0x8084FC24; // type:object size:0xC +__RTTI__14DataResultList = .data:0x8084FC30; // type:object size:0x8 +__vt__10DataResult = .data:0x8084FC38; // type:object size:0xC +lbl_8084FC44 = .data:0x8084FC44; // type:object size:0xC +__RTTI__10DataResult = .data:0x8084FC50; // type:object size:0x8 +__vt__9Updatable = .data:0x8084FC58; // type:object size:0x14 +lbl_8084FC6C = .data:0x8084FC6C; // type:object size:0xC +__RTTI__9Updatable = .data:0x8084FC78; // type:object size:0x8 +lbl_8084FC80 = .data:0x8084FC80; // type:object size:0xC +lbl_8084FC8C = .data:0x8084FC8C; // type:object size:0x4 data:4byte +lbl_8084FC90 = .data:0x8084FC90; // type:object size:0x4 +__vt__16ArtFileConverter = .data:0x8084FC94; // type:object size:0x14 +lbl_8084FCA8 = .data:0x8084FCA8; // type:object size:0x14 +lbl_8084FCBC = .data:0x8084FCBC; // type:object size:0xC +__RTTI__16ArtFileConverter = .data:0x8084FCC8; // type:object size:0x8 +__vt__14SaveArtUpdater = .data:0x8084FCD0; // type:object size:0x14 +lbl_8084FCE4 = .data:0x8084FCE4; // type:object size:0x10 +lbl_8084FCF4 = .data:0x8084FCF4; // type:object size:0xC +__RTTI__14SaveArtUpdater = .data:0x8084FD00; // type:object size:0x8 +__vt__9IdUpdater = .data:0x8084FD08; // type:object size:0x14 +lbl_8084FD1C = .data:0x8084FD1C; // type:object size:0xC +lbl_8084FD28 = .data:0x8084FD28; // type:object size:0x10 +__RTTI__9IdUpdater = .data:0x8084FD38; // type:object size:0x8 +lbl_8084FD40 = .data:0x8084FD40; // type:object size:0xC +lbl_8084FD4C = .data:0x8084FD4C; // type:object size:0x18 +lbl_8084FD64 = .data:0x8084FD64; // type:object size:0x14 +lbl_8084FD78 = .data:0x8084FD78; // type:object size:0x8 +lbl_8084FD80 = .data:0x8084FD80; // type:object size:0xC +lbl_8084FD8C = .data:0x8084FD8C; // type:object size:0x1C data:string +lbl_8084FDA8 = .data:0x8084FDA8; // type:object size:0x10 +lbl_8084FDB8 = .data:0x8084FDB8; // type:object size:0x8 +__vt__11RockCentral = .data:0x8084FDC0; // type:object size:0x80 +lbl_8084FE40 = .data:0x8084FE40; // type:object size:0xC data:string +lbl_8084FE4C = .data:0x8084FE4C; // type:object size:0x1C +__RTTI__11RockCentral = .data:0x8084FE68; // type:object size:0x8 +__vt__21DeleteQueueUpdatedMsg = .data:0x8084FE70; // type:object size:0xC +lbl_8084FE7C = .data:0x8084FE7C; // type:object size:0x18 +lbl_8084FE94 = .data:0x8084FE94; // type:object size:0xC +__RTTI__21DeleteQueueUpdatedMsg = .data:0x8084FEA0; // type:object size:0x8 +lbl_8084FEA8 = .data:0x8084FEA8; // type:object size:0xC +lbl_8084FEB4 = .data:0x8084FEB4; // type:object size:0x1C +lbl_8084FED0 = .data:0x8084FED0; // type:object size:0x10 +lbl_8084FEE0 = .data:0x8084FEE0; // type:object size:0x8 +lbl_8084FEE8 = .data:0x8084FEE8; // type:object size:0x14 data:string +lbl_8084FEFC = .data:0x8084FEFC; // type:object size:0x1C +lbl_8084FF18 = .data:0x8084FF18; // type:object size:0x42 +lbl_8084FF5A = .data:0x8084FF5A; // type:object size:0x8 data:string +lbl_8084FF62 = .data:0x8084FF62; // type:object size:0x8 data:string +lbl_8084FF6A = .data:0x8084FF6A; // type:object size:0xF +lbl_8084FF79 = .data:0x8084FF79; // type:object size:0xB77 +__vt__33UpdateMasterProfileFriendsListJob = .data:0x80850AF0; // type:object size:0x7C +lbl_80850B6C = .data:0x80850B6C; // type:object size:0x24 +lbl_80850B90 = .data:0x80850B90; // type:object size:0x28 +__RTTI__33UpdateMasterProfileFriendsListJob = .data:0x80850BB8; // type:object size:0x8 +__vt__20UpdateFriendsListJob = .data:0x80850BC0; // type:object size:0x7C +lbl_80850C3C = .data:0x80850C3C; // type:object size:0x18 +lbl_80850C54 = .data:0x80850C54; // type:object size:0x24 +__RTTI__20UpdateFriendsListJob = .data:0x80850C78; // type:object size:0x8 +lbl_80850C80 = .data:0x80850C80; // type:object size:0x1C +lbl_80850C9C = .data:0x80850C9C; // type:object size:0x10 +lbl_80850CAC = .data:0x80850CAC; // type:object size:0xC +lbl_80850CB8 = .data:0x80850CB8; // type:object size:0x8 +lbl_80850CC0 = .data:0x80850CC0; // type:object size:0x8 +lbl_80850CC8 = .data:0x80850CC8; // type:object size:0xC +lbl_80850CD4 = .data:0x80850CD4; // type:object size:0xC +lbl_80850CE0 = .data:0x80850CE0; // type:object size:0x8 +__vt__14EntityUploader = .data:0x80850CE8; // type:object size:0x7C +lbl_80850D64 = .data:0x80850D64; // type:object size:0x10 +lbl_80850D74 = .data:0x80850D74; // type:object size:0x14 +__RTTI__14EntityUploader = .data:0x80850D88; // type:object size:0x8 +lbl_80850D90 = .data:0x80850D90; // type:object size:0x20 +lbl_80850DB0 = .data:0x80850DB0; // type:object size:0x7C +lbl_80850E2C = .data:0x80850E2C; // type:object size:0x14 +lbl_80850E40 = .data:0x80850E40; // type:object size:0x20 +lbl_80850E60 = .data:0x80850E60; // type:object size:0x8 +__vt__Q26Quazal23RockBandDDLDeclarations = .data:0x80850E68; // type:object size:0x10 +lbl_80850E78 = .data:0x80850E78; // type:object size:0x20 data:string +lbl_80850E98 = .data:0x80850E98; // type:object size:0x18 +__RTTI__Q26Quazal23RockBandDDLDeclarations = .data:0x80850EB0; // type:object size:0x8 +lbl_80850EB8 = .data:0x80850EB8; // type:object size:0x10 +lbl_80850EC8 = .data:0x80850EC8; // type:object size:0x4 +lbl_80850ECC = .data:0x80850ECC; // type:object size:0x64 +lbl_80850F30 = .data:0x80850F30; // type:object size:0x18 +lbl_80850F48 = .data:0x80850F48; // type:object size:0x30 +lbl_80850F78 = .data:0x80850F78; // type:object size:0x8 +lbl_80850F80 = .data:0x80850F80; // type:object size:0x4 +lbl_80850F84 = .data:0x80850F84; // type:object size:0x64 +lbl_80850FE8 = .data:0x80850FE8; // type:object size:0x18 +lbl_80851000 = .data:0x80851000; // type:object size:0x30 +lbl_80851030 = .data:0x80851030; // type:object size:0x8 +lbl_80851038 = .data:0x80851038; // type:object size:0x4 +lbl_8085103C = .data:0x8085103C; // type:object size:0x64 +lbl_808510A0 = .data:0x808510A0; // type:object size:0x1C +lbl_808510BC = .data:0x808510BC; // type:object size:0x2C +lbl_808510E8 = .data:0x808510E8; // type:object size:0x8 +lbl_808510F0 = .data:0x808510F0; // type:object size:0x30 +lbl_80851120 = .data:0x80851120; // type:object size:0x78 +gBSPPosTol = .data:0x80851198; // type:object size:0x4 data:float +gBSPDirTol = .data:0x8085119C; // type:object size:0x4 data:float +gBSPMaxDepth = .data:0x808511A0; // type:object size:0x4 +gBSPMaxCandidates = .data:0x808511A4; // type:object size:0x4 +gBSPCheckScale = .data:0x808511A8; // type:object size:0x4 data:float +lbl_808511AC = .data:0x808511AC; // type:object size:0x2C +lbl_808511D8 = .data:0x808511D8; // type:object size:0x30 +lbl_80851208 = .data:0x80851208; // type:object size:0x18 +lbl_80851220 = .data:0x80851220; // type:object size:0x140 +lbl_80851360 = .data:0x80851360; // type:object size:0x18 +__vt__16ATanInterpolator = .data:0x80851378; // type:object size:0x14 +lbl_8085138C = .data:0x8085138C; // type:object size:0x11 data:string +lbl_808513A0 = .data:0x808513A0; // type:object size:0xC +__RTTI__16ATanInterpolator = .data:0x808513B0; // type:object size:0x8 +__vt__18InvExpInterpolator = .data:0x808513B8; // type:object size:0x14 +lbl_808513CC = .data:0x808513CC; // type:object size:0x13 data:string +lbl_808513E0 = .data:0x808513E0; // type:object size:0xC +__RTTI__18InvExpInterpolator = .data:0x808513F0; // type:object size:0x8 +__vt__15ExpInterpolator = .data:0x808513F8; // type:object size:0x18 +lbl_80851410 = .data:0x80851410; // type:object size:0x10 data:string +lbl_80851420 = .data:0x80851420; // type:object size:0xC +__RTTI__15ExpInterpolator = .data:0x80851430; // type:object size:0x8 +__vt__18LinearInterpolator = .data:0x80851438; // type:object size:0x14 +lbl_8085144C = .data:0x8085144C; // type:object size:0x13 data:string +lbl_80851460 = .data:0x80851460; // type:object size:0xC +__RTTI__18LinearInterpolator = .data:0x80851470; // type:object size:0x8 +__vt__12Interpolator = .data:0x80851478; // type:object size:0x14 +lbl_8085148C = .data:0x8085148C; // type:object size:0xD data:string +__RTTI__12Interpolator = .data:0x808514A0; // type:object size:0x8 +lbl_808514A8 = .data:0x808514A8; // type:object size:0x18 +lbl_808514C0 = .data:0x808514C0; // type:object size:0xF8 +lbl_808515B8 = .data:0x808515B8; // type:object size:0x48 +@stringBase0 = .data:0x80851600; // type:object size:0x1B data:string_table +lbl_80851620 = .data:0x80851620; // type:object size:0x48 +lbl_80851668 = .data:0x80851668; // type:object size:0x4 +lbl_8085166C = .data:0x8085166C; // type:object size:0x4 +lbl_80851670 = .data:0x80851670; // type:object size:0x80 +__vt__7ArkFile = .data:0x808516F0; // type:object size:0x50 +lbl_80851740 = .data:0x80851740; // type:object size:0x8 data:string +lbl_80851748 = .data:0x80851748; // type:object size:0x10 +__RTTI__7ArkFile = .data:0x80851758; // type:object size:0x8 +__vt__4File = .data:0x80851760; // type:object size:0x4C +lbl_808517AC = .data:0x808517AC; // type:object size:0xC +__RTTI__4File = .data:0x808517B8; // type:object size:0x8 +lbl_808517C0 = .data:0x808517C0; // type:object size:0x8 +lbl_808517C8 = .data:0x808517C8; // type:object size:0x8 data:4byte +lbl_808517D0 = .data:0x808517D0; // type:object size:0x8 +__vt__9AsyncFile = .data:0x808517D8; // type:object size:0x6C +lbl_80851844 = .data:0x80851844; // type:object size:0xC +lbl_80851850 = .data:0x80851850; // type:object size:0x10 +lbl_80851860 = .data:0x80851860; // type:object size:0x8 +lbl_80851868 = .data:0x80851868; // type:object size:0x58 +__vt__12AsyncFileCNT = .data:0x808518C0; // type:object size:0x6C +lbl_8085192C = .data:0x8085192C; // type:object size:0x10 +lbl_8085193C = .data:0x8085193C; // type:object size:0x14 +lbl_80851950 = .data:0x80851950; // type:object size:0x8 +lbl_80851958 = .data:0x80851958; // type:object size:0x98 +lbl_808519F0 = .data:0x808519F0; // type:object size:0x4 data:4byte +__vt__12AsyncFileWii = .data:0x808519F4; // type:object size:0x6C +lbl_80851A60 = .data:0x80851A60; // type:object size:0x10 +lbl_80851A70 = .data:0x80851A70; // type:object size:0x18 +lbl_80851A88 = .data:0x80851A88; // type:object size:0x8 +lbl_80851A90 = .data:0x80851A90; // type:object size:0x4 data:4byte +lbl_80851A94 = .data:0x80851A94; // type:object size:0x4 data:4byte +lbl_80851A98 = .data:0x80851A98; // type:object size:0x10 +lbl_80851AA8 = .data:0x80851AA8; // type:object size:0x4 data:4byte +lbl_80851AAC = .data:0x80851AAC; // type:object size:0x4 data:4byte +lbl_80851AB0 = .data:0x80851AB0; // type:object size:0x4 +lbl_80851AB4 = .data:0x80851AB4; // type:object size:0x14 +lbl_80851AC8 = .data:0x80851AC8; // type:object size:0xB4 +lbl_80851B7C = .data:0x80851B7C; // type:object size:0x14 data:4byte +jumptable_80851B90 = .data:0x80851B90; // type:object size:0x3C scope:local +lbl_80851BCC = .data:0x80851BCC; // type:object size:0x4 +lbl_80851BD0 = .data:0x80851BD0; // type:object size:0x38 +__vt__14WiiCommerceMgr = .data:0x80851C08; // type:object size:0x80 +lbl_80851C88 = .data:0x80851C88; // type:object size:0x10 +lbl_80851C98 = .data:0x80851C98; // type:object size:0x20 +__RTTI__14WiiCommerceMgr = .data:0x80851CB8; // type:object size:0x8 +lbl_80851CC0 = .data:0x80851CC0; // type:object size:0xC +lbl_80851CCC = .data:0x80851CCC; // type:object size:0x1C +lbl_80851CE8 = .data:0x80851CE8; // type:object size:0x10 +lbl_80851CF8 = .data:0x80851CF8; // type:object size:0x8 +lbl_80851D00 = .data:0x80851D00; // type:object size:0xC +lbl_80851D0C = .data:0x80851D0C; // type:object size:0x20 +lbl_80851D2C = .data:0x80851D2C; // type:object size:0xC +lbl_80851D38 = .data:0x80851D38; // type:object size:0xA0 +lbl_80851DD8 = .data:0x80851DD8; // type:object size:0x1C +lbl_80851DF4 = .data:0x80851DF4; // type:object size:0x3C +lbl_80851E30 = .data:0x80851E30; // type:object size:0x8 data:string +lbl_80851E38 = .data:0x80851E38; // type:object size:0x12 data:string +lbl_80851E4A = .data:0x80851E4A; // type:object size:0x15 data:string +lbl_80851E5F = .data:0x80851E5F; // type:object size:0x11 data:string +lbl_80851E70 = .data:0x80851E70; // type:object size:0xE data:string +lbl_80851E7E = .data:0x80851E7E; // type:object size:0x18 data:string +lbl_80851E96 = .data:0x80851E96; // type:object size:0x12 data:string +lbl_80851EA8 = .data:0x80851EA8; // type:object size:0x7 data:string +lbl_80851EAF = .data:0x80851EAF; // type:object size:0x16 data:string +lbl_80851EC5 = .data:0x80851EC5; // type:object size:0xD data:string +lbl_80851ED2 = .data:0x80851ED2; // type:object size:0x19 data:string +lbl_80851EEB = .data:0x80851EEB; // type:object size:0xF data:string +lbl_80851EFA = .data:0x80851EFA; // type:object size:0x13 data:string +lbl_80851F0D = .data:0x80851F0D; // type:object size:0x1D data:string +lbl_80851F2A = .data:0x80851F2A; // type:object size:0x1F data:string +lbl_80851F49 = .data:0x80851F49; // type:object size:0xB data:string +lbl_80851F54 = .data:0x80851F54; // type:object size:0x5 data:string +lbl_80851F59 = .data:0x80851F59; // type:object size:0x5 data:string +lbl_80851F5E = .data:0x80851F5E; // type:object size:0x6 data:string +lbl_80851F64 = .data:0x80851F64; // type:object size:0xB7 +lbl_8085201B = .data:0x8085201B; // type:object size:0x24 +lbl_8085203F = .data:0x8085203F; // type:object size:0x1F +lbl_8085205E = .data:0x8085205E; // type:object size:0x1A +lbl_80852078 = .data:0x80852078; // type:object size:0xC +lbl_80852084 = .data:0x80852084; // type:object size:0x14 +lbl_80852098 = .data:0x80852098; // type:object size:0x8 +__vt__10ContentMgr = .data:0x808520A0; // type:object size:0xB0 +lbl_80852150 = .data:0x80852150; // type:object size:0xC +lbl_8085215C = .data:0x8085215C; // type:object size:0x14 +__RTTI__10ContentMgr = .data:0x80852170; // type:object size:0x8 +lbl_80852178 = .data:0x80852178; // type:object size:0x8 data:string +lbl_80852180 = .data:0x80852180; // type:object size:0x8 +lbl_80852188 = .data:0x80852188; // type:object size:0x10 +lbl_80852198 = .data:0x80852198; // type:object size:0x8 +lbl_808521A0 = .data:0x808521A0; // type:object size:0xD8 +lbl_80852278 = .data:0x80852278; // type:object size:0xD0 +jumptable_80852348 = .data:0x80852348; // type:object size:0x44 scope:local +lbl_8085238C = .data:0x8085238C; // type:object size:0x4 data:4byte +lbl_80852390 = .data:0x80852390; // type:object size:0x40 +lbl_808523D0 = .data:0x808523D0; // type:object size:0xC data:string +lbl_808523DC = .data:0x808523DC; // type:object size:0xC +lbl_808523E8 = .data:0x808523E8; // type:object size:0x8 +__vt__19ContentInstalledMsg = .data:0x808523F0; // type:object size:0xC +lbl_808523FC = .data:0x808523FC; // type:object size:0x14 data:string +lbl_80852410 = .data:0x80852410; // type:object size:0x10 +__RTTI__19ContentInstalledMsg = .data:0x80852420; // type:object size:0x8 +__vt__17StorageChangedMsg = .data:0x80852428; // type:object size:0xC +lbl_80852434 = .data:0x80852434; // type:object size:0x14 +lbl_80852448 = .data:0x80852448; // type:object size:0x10 +__RTTI__17StorageChangedMsg = .data:0x80852458; // type:object size:0x8 +__vt__13WiiContentMgr = .data:0x80852460; // type:object size:0xB0 +lbl_80852510 = .data:0x80852510; // type:object size:0x10 +lbl_80852520 = .data:0x80852520; // type:object size:0x20 +__RTTI__13WiiContentMgr = .data:0x80852540; // type:object size:0x8 +lbl_80852548 = .data:0x80852548; // type:object size:0x60 +lbl_808525A8 = .data:0x808525A8; // type:object size:0x40 +lbl_808525E8 = .data:0x808525E8; // type:object size:0x14 +@STRING@Type__19ContentInstalledMsgFv = .data:0x808525FC; // type:object size:0x14 +@STRING@Type__17StorageChangedMsgFv = .data:0x80852610; // type:object size:0x10 data:string +lbl_80852620 = .data:0x80852620; // type:object size:0xD data:string +lbl_8085262D = .data:0x8085262D; // type:object size:0x13 data:string +lbl_80852640 = .data:0x80852640; // type:object size:0x12 data:string +lbl_80852652 = .data:0x80852652; // type:object size:0x11 data:string +lbl_80852663 = .data:0x80852663; // type:object size:0x19 data:string +lbl_8085267C = .data:0x8085267C; // type:object size:0x13 data:string +lbl_8085268F = .data:0x8085268F; // type:object size:0x19 data:string +lbl_808526A8 = .data:0x808526A8; // type:object size:0x14 data:string +lbl_808526BC = .data:0x808526BC; // type:object size:0x1F data:string +lbl_808526DB = .data:0x808526DB; // type:object size:0x1F data:string +lbl_808526FA = .data:0x808526FA; // type:object size:0xF data:string +lbl_80852709 = .data:0x80852709; // type:object size:0x18 data:string +lbl_80852721 = .data:0x80852721; // type:object size:0x15 data:string +lbl_80852736 = .data:0x80852736; // type:object size:0xF data:string +lbl_80852745 = .data:0x80852745; // type:object size:0x15 data:string +lbl_8085275A = .data:0x8085275A; // type:object size:0x12 data:string +lbl_8085276C = .data:0x8085276C; // type:object size:0x19 data:string +lbl_80852785 = .data:0x80852785; // type:object size:0x17 data:string +lbl_8085279C = .data:0x8085279C; // type:object size:0x1D data:string +lbl_808527B9 = .data:0x808527B9; // type:object size:0x13 data:string +lbl_808527CC = .data:0x808527CC; // type:object size:0x13 data:string +lbl_808527DF = .data:0x808527DF; // type:object size:0x20 data:string +lbl_808527FF = .data:0x808527FF; // type:object size:0x11 data:string +lbl_80852810 = .data:0x80852810; // type:object size:0xB data:string +lbl_8085281B = .data:0x8085281B; // type:object size:0x16 data:string +lbl_80852831 = .data:0x80852831; // type:object size:0x66 +lbl_80852897 = .data:0x80852897; // type:object size:0x6 data:string +lbl_8085289D = .data:0x8085289D; // type:object size:0x5 data:string +lbl_808528A2 = .data:0x808528A2; // type:object size:0x4E +lbl_808528F0 = .data:0x808528F0; // type:object size:0xE0 +lbl_808529D0 = .data:0x808529D0; // type:object size:0x8 +__vt__5Debug = .data:0x808529D8; // type:object size:0x10 +lbl_808529E8 = .data:0x808529E8; // type:object size:0x8 +lbl_808529F0 = .data:0x808529F0; // type:object size:0x10 +__RTTI__5Debug = .data:0x80852A00; // type:object size:0x8 +lbl_80852A08 = .data:0x80852A08; // type:object size:0x58 +lbl_80852A60 = .data:0x80852A60; // type:object size:0x120 +lbl_80852B80 = .data:0x80852B80; // type:object size:0x10 +lbl_80852B90 = .data:0x80852B90; // type:object size:0x4 +__vt__13FileCacheFile = .data:0x80852B94; // type:object size:0x4C +lbl_80852BE0 = .data:0x80852BE0; // type:object size:0x10 +lbl_80852BF0 = .data:0x80852BF0; // type:object size:0x10 +lbl_80852C00 = .data:0x80852C00; // type:object size:0x8 +lbl_80852C08 = .data:0x80852C08; // type:object size:0x20 +lbl_80852C28 = .data:0x80852C28; // type:object size:0x20 +lbl_80852C48 = .data:0x80852C48; // type:object size:0x50 +__vt__8HomeMenu = .data:0x80852C98; // type:object size:0x14 +lbl_80852CAC = .data:0x80852CAC; // type:object size:0xC +lbl_80852CB8 = .data:0x80852CB8; // type:object size:0x10 +__RTTI__8HomeMenu = .data:0x80852CC8; // type:object size:0x8 +lbl_80852CD0 = .data:0x80852CD0; // type:object size:0xD data:string +lbl_80852CDD = .data:0x80852CDD; // type:object size:0xB data:string +lbl_80852CE8 = .data:0x80852CE8; // type:object size:0x12 data:string +lbl_80852CFA = .data:0x80852CFA; // type:object size:0xB data:string +lbl_80852D05 = .data:0x80852D05; // type:object size:0x16 data:string +lbl_80852D1B = .data:0x80852D1B; // type:object size:0xD data:string +lbl_80852D28 = .data:0x80852D28; // type:object size:0x12 data:string +lbl_80852D3A = .data:0x80852D3A; // type:object size:0xB data:string +lbl_80852D45 = .data:0x80852D45; // type:object size:0x14 data:string +lbl_80852D59 = .data:0x80852D59; // type:object size:0x237 +lbl_80852F90 = .data:0x80852F90; // type:object size:0x18 +lbl_80852FA8 = .data:0x80852FA8; // type:object size:0x18 +lbl_80852FC0 = .data:0x80852FC0; // type:object size:0x18 +lbl_80852FD8 = .data:0x80852FD8; // type:object size:0x24 data:string +lbl_80852FFC = .data:0x80852FFC; // type:object size:0x28 data:string +lbl_80853024 = .data:0x80853024; // type:object size:0x28 +lbl_8085304C = .data:0x8085304C; // type:object size:0x29 data:string +lbl_80853075 = .data:0x80853075; // type:object size:0x23 data:string +lbl_80853098 = .data:0x80853098; // type:object size:0x4C data:string +lbl_808530E4 = .data:0x808530E4; // type:object size:0x74 data:string +lbl_80853158 = .data:0x80853158; // type:object size:0x5F +lbl_808531B7 = .data:0x808531B7; // type:object size:0x6F +lbl_80853226 = .data:0x80853226; // type:object size:0xC2 +lbl_808532E8 = .data:0x808532E8; // type:object size:0x4 data:4byte +lbl_808532EC = .data:0x808532EC; // type:object size:0x1C4 +jumptable_808534B0 = .data:0x808534B0; // type:object size:0x40 scope:local +jumptable_808534F0 = .data:0x808534F0; // type:object size:0x70 scope:local +lbl_80853560 = .data:0x80853560; // type:object size:0x10 +lbl_80853570 = .data:0x80853570; // type:object size:0x4 data:float +lbl_80853574 = .data:0x80853574; // type:object size:0x4 data:float +__vt__12JoypadClient = .data:0x80853578; // type:object size:0x5C +lbl_808535D4 = .data:0x808535D4; // type:object size:0x10 +lbl_808535E4 = .data:0x808535E4; // type:object size:0x14 +__RTTI__12JoypadClient = .data:0x808535F8; // type:object size:0x8 +lbl_80853600 = .data:0x80853600; // type:object size:0x20 +__vt__14KeyboardKeyMsg = .data:0x80853620; // type:object size:0xC +lbl_8085362C = .data:0x8085362C; // type:object size:0x10 +lbl_8085363C = .data:0x8085363C; // type:object size:0xC +__RTTI__14KeyboardKeyMsg = .data:0x80853648; // type:object size:0x8 +__vt__32ObjPtr = .data:0x80853650; // type:object size:0x18 +lbl_80853668 = .data:0x80853668; // type:object size:0x20 +lbl_80853688 = .data:0x80853688; // type:object size:0x10 +__RTTI__32ObjPtr = .data:0x80853698; // type:object size:0x8 +lbl_808536A0 = .data:0x808536A0; // type:object size:0x8 +jumptable_808536A8 = .data:0x808536A8; // type:object size:0xB0 scope:local +__vt__11MCContainer = .data:0x80853758; // type:object size:0x44 +lbl_8085379C = .data:0x8085379C; // type:object size:0xC data:string +__RTTI__11MCContainer = .data:0x808537A8; // type:object size:0x8 +__vt__7Memcard = .data:0x808537B0; // type:object size:0x90 +lbl_80853840 = .data:0x80853840; // type:object size:0x8 data:string +lbl_80853848 = .data:0x80853848; // type:object size:0x18 +__RTTI__7Memcard = .data:0x80853860; // type:object size:0x8 +lbl_80853868 = .data:0x80853868; // type:object size:0x8 data:string +jumptable_80853870 = .data:0x80853870; // type:object size:0x104 scope:local +lbl_80853974 = .data:0x80853974; // type:object size:0xC +lbl_80853980 = .data:0x80853980; // type:object size:0x8 data:string +lbl_80853988 = .data:0x80853988; // type:object size:0x8 +lbl_80853990 = .data:0x80853990; // type:object size:0x8 +lbl_80853998 = .data:0x80853998; // type:object size:0x8 +lbl_808539A0 = .data:0x808539A0; // type:object size:0x8 +lbl_808539A8 = .data:0x808539A8; // type:object size:0x8 +lbl_808539B0 = .data:0x808539B0; // type:object size:0xC +lbl_808539BC = .data:0x808539BC; // type:object size:0xC +lbl_808539C8 = .data:0x808539C8; // type:object size:0x10 +lbl_808539D8 = .data:0x808539D8; // type:object size:0x10 data:string +lbl_808539E8 = .data:0x808539E8; // type:object size:0x10 +lbl_808539F8 = .data:0x808539F8; // type:object size:0x10 data:string +lbl_80853A08 = .data:0x80853A08; // type:object size:0x10 +__vt__9MCFileWii = .data:0x80853A18; // type:object size:0x24 +lbl_80853A3C = .data:0x80853A3C; // type:object size:0xC +lbl_80853A48 = .data:0x80853A48; // type:object size:0x10 +__RTTI__9MCFileWii = .data:0x80853A58; // type:object size:0x8 +__vt__14MCContainerWii = .data:0x80853A60; // type:object size:0x44 +lbl_80853AA4 = .data:0x80853AA4; // type:object size:0x10 +lbl_80853AB4 = .data:0x80853AB4; // type:object size:0xC +__RTTI__14MCContainerWii = .data:0x80853AC0; // type:object size:0x8 +__vt__10MemcardWii = .data:0x80853AC8; // type:object size:0x8C +lbl_80853B54 = .data:0x80853B54; // type:object size:0xC +lbl_80853B60 = .data:0x80853B60; // type:object size:0x20 +__RTTI__10MemcardWii = .data:0x80853B80; // type:object size:0x8 +__vt__6MCFile = .data:0x80853B88; // type:object size:0x24 +lbl_80853BAC = .data:0x80853BAC; // type:object size:0xC +__RTTI__6MCFile = .data:0x80853BB8; // type:object size:0x8 +__vt__9NetStream = .data:0x80853BC0; // type:object size:0x34 +__classname__9NetStream = .data:0x80853BF4; // type:object size:0xC +__superclasses__9NetStream = .data:0x80853C00; // type:object size:0x10 +__RTTI__9NetStream = .data:0x80853C10; // type:object size:0x8 +lbl_80853C18 = .data:0x80853C18; // type:object size:0x10 +__RTTI__9BinStream = .data:0x80853C28; // type:object size:0x8 +__vt__16WiiNetworkSocket = .data:0x80853C30; // type:object size:0x50 +lbl_80853C80 = .data:0x80853C80; // type:object size:0x14 +lbl_80853C94 = .data:0x80853C94; // type:object size:0xC +__RTTI__16WiiNetworkSocket = .data:0x80853CA0; // type:object size:0x8 +__vt__13NetworkSocket = .data:0x80853CA8; // type:object size:0x50 +lbl_80853CF8 = .data:0x80853CF8; // type:object size:0x10 +__RTTI__13NetworkSocket = .data:0x80853D08; // type:object size:0x8 +lbl_80853D10 = .data:0x80853D10; // type:object size:0x90 +lbl_80853DA0 = .data:0x80853DA0; // type:object size:0x8 +__vt__11PlatformMgr = .data:0x80853DA8; // type:object size:0xD0 +lbl_80853E78 = .data:0x80853E78; // type:object size:0xC data:string +lbl_80853E84 = .data:0x80853E84; // type:object size:0x24 +__RTTI__11PlatformMgr = .data:0x80853EA8; // type:object size:0x8 +lbl_80853EB0 = .data:0x80853EB0; // type:object size:0x28 +lbl_80853ED8 = .data:0x80853ED8; // type:object size:0x4 data:4byte +__vt__24WiiControllerOverflowMsg = .data:0x80853EDC; // type:object size:0xC +lbl_80853EE8 = .data:0x80853EE8; // type:object size:0x1C +lbl_80853F04 = .data:0x80853F04; // type:object size:0xC +__RTTI__24WiiControllerOverflowMsg = .data:0x80853F10; // type:object size:0x8 +lbl_80853F18 = .data:0x80853F18; // type:object size:0x10 +lbl_80853F28 = .data:0x80853F28; // type:object size:0x10 data:string +lbl_80853F38 = .data:0x80853F38; // type:object size:0x10 +lbl_80853F48 = .data:0x80853F48; // type:object size:0x8 +lbl_80853F50 = .data:0x80853F50; // type:object size:0xC +lbl_80853F5C = .data:0x80853F5C; // type:object size:0x14 +lbl_80853F70 = .data:0x80853F70; // type:object size:0x10 +lbl_80853F80 = .data:0x80853F80; // type:object size:0x8 +@STRING@Type__24WiiControllerOverflowMsgFv = .data:0x80853F88; // type:object size:0x18 data:string +lbl_80853FA0 = .data:0x80853FA0; // type:object size:0x10 +lbl_80853FB0 = .data:0x80853FB0; // type:object size:0x1C +lbl_80853FCC = .data:0x80853FCC; // type:object size:0xB4 +lbl_80854080 = .data:0x80854080; // type:object size:0xC +lbl_8085408C = .data:0x8085408C; // type:object size:0x1C +lbl_808540A8 = .data:0x808540A8; // type:object size:0x10 +lbl_808540B8 = .data:0x808540B8; // type:object size:0x8 +lbl_808540C0 = .data:0x808540C0; // type:object size:0x20 +gNullStr = .data:0x808540E0; // type:object size:0x4 data:4byte +lbl_808540E4 = .data:0x808540E4; // type:object size:0x10 data:string +lbl_808540F4 = .data:0x808540F4; // type:object size:0x17C +lbl_80854270 = .data:0x80854270; // type:object size:0x20 +lbl_80854290 = .data:0x80854290; // type:object size:0x10 +lbl_808542A0 = .data:0x808542A0; // type:object size:0x58 +__vt__10RemoteUser = .data:0x808542F8; // type:object size:0xA4 +__vt__9LocalUser = .data:0x8085439C; // type:object size:0xC4 +__vt__4User = .data:0x80854460; // type:object size:0x7C +lbl_808544DC = .data:0x808544DC; // type:object size:0x2C +__vt__7UserMgr = .data:0x80854508; // type:object size:0x6C +lbl_80854574 = .data:0x80854574; // type:object size:0xC +__vt__15VirtualKeyboard = .data:0x80854580; // type:object size:0x60 +lbl_808545E0 = .data:0x808545E0; // type:object size:0x10 data:string +lbl_808545F0 = .data:0x808545F0; // type:object size:0x18 +__RTTI__15VirtualKeyboard = .data:0x80854608; // type:object size:0x8 +lbl_80854610 = .data:0x80854610; // type:object size:0x18 +lbl_80854628 = .data:0x80854628; // type:object size:0x8 data:4byte +lbl_80854630 = .data:0x80854630; // type:object size:0x10 +lbl_80854640 = .data:0x80854640; // type:object size:0xA8 +lbl_808546E8 = .data:0x808546E8; // type:object size:0x8 data:4byte +__vt__17RGFretButtonUpMsg = .data:0x808546F0; // type:object size:0xC +lbl_808546FC = .data:0x808546FC; // type:object size:0x14 +lbl_80854710 = .data:0x80854710; // type:object size:0x10 +__RTTI__17RGFretButtonUpMsg = .data:0x80854720; // type:object size:0x8 +__vt__19RGFretButtonDownMsg = .data:0x80854728; // type:object size:0xC +lbl_80854734 = .data:0x80854734; // type:object size:0x14 data:string +lbl_80854748 = .data:0x80854748; // type:object size:0x10 +__RTTI__19RGFretButtonDownMsg = .data:0x80854758; // type:object size:0x8 +__vt__10RGSwingMsg = .data:0x80854760; // type:object size:0xC +lbl_8085476C = .data:0x8085476C; // type:object size:0xC +lbl_80854778 = .data:0x80854778; // type:object size:0x10 +__RTTI__10RGSwingMsg = .data:0x80854788; // type:object size:0x8 +__vt__18RGProgramChangeMsg = .data:0x80854790; // type:object size:0xC +lbl_8085479C = .data:0x8085479C; // type:object size:0x14 +lbl_808547B0 = .data:0x808547B0; // type:object size:0x10 +__RTTI__18RGProgramChangeMsg = .data:0x808547C0; // type:object size:0x8 +__vt__13RGStompBoxMsg = .data:0x808547C8; // type:object size:0xC +lbl_808547D4 = .data:0x808547D4; // type:object size:0x10 +lbl_808547E4 = .data:0x808547E4; // type:object size:0xC +__RTTI__13RGStompBoxMsg = .data:0x808547F0; // type:object size:0x8 +__vt__11RGMutingMsg = .data:0x808547F8; // type:object size:0xC +lbl_80854804 = .data:0x80854804; // type:object size:0xC data:string +lbl_80854810 = .data:0x80854810; // type:object size:0x10 +__RTTI__11RGMutingMsg = .data:0x80854820; // type:object size:0x8 +__vt__14RGPitchBendMsg = .data:0x80854828; // type:object size:0xC +lbl_80854834 = .data:0x80854834; // type:object size:0x10 +lbl_80854844 = .data:0x80854844; // type:object size:0xC +__RTTI__14RGPitchBendMsg = .data:0x80854850; // type:object size:0x8 +__vt__25RGConnectedAccessoriesMsg = .data:0x80854858; // type:object size:0xC +lbl_80854864 = .data:0x80854864; // type:object size:0x1C +lbl_80854880 = .data:0x80854880; // type:object size:0x10 +__RTTI__25RGConnectedAccessoriesMsg = .data:0x80854890; // type:object size:0x8 +__vt__18RGAccelerometerMsg = .data:0x80854898; // type:object size:0xC +lbl_808548A4 = .data:0x808548A4; // type:object size:0x14 +lbl_808548B8 = .data:0x808548B8; // type:object size:0x10 +__RTTI__18RGAccelerometerMsg = .data:0x808548C8; // type:object size:0x8 +__vt__16StringStoppedMsg = .data:0x808548D0; // type:object size:0xC +lbl_808548DC = .data:0x808548DC; // type:object size:0x14 +lbl_808548F0 = .data:0x808548F0; // type:object size:0x10 +__RTTI__16StringStoppedMsg = .data:0x80854900; // type:object size:0x8 +__vt__17StringStrummedMsg = .data:0x80854908; // type:object size:0xC +lbl_80854914 = .data:0x80854914; // type:object size:0x14 +lbl_80854928 = .data:0x80854928; // type:object size:0x10 +__RTTI__17StringStrummedMsg = .data:0x80854938; // type:object size:0x8 +@STRING@Type__17RGFretButtonUpMsgFv = .data:0x80854940; // type:object size:0x14 +@STRING@Type__19RGFretButtonDownMsgFv = .data:0x80854954; // type:object size:0x14 data:string +@STRING@Type__10RGSwingMsgFv = .data:0x80854968; // type:object size:0xC +@STRING@Type__18RGProgramChangeMsgFv = .data:0x80854974; // type:object size:0x14 +@STRING@Type__13RGStompBoxMsgFv = .data:0x80854988; // type:object size:0x10 +@STRING@Type__11RGMutingMsgFv = .data:0x80854998; // type:object size:0xC +@STRING@Type__14RGPitchBendMsgFv = .data:0x808549A4; // type:object size:0x10 +@STRING@Type__25RGConnectedAccessoriesMsgFv = .data:0x808549B4; // type:object size:0x1C +@STRING@Type__18RGAccelerometerMsgFv = .data:0x808549D0; // type:object size:0x14 +@STRING@Type__16StringStoppedMsgFv = .data:0x808549E4; // type:object size:0x14 data:string +@STRING@Type__17StringStrummedMsgFv = .data:0x808549F8; // type:object size:0x10 data:string +__vt__28KeyboardHighHandPlacementMsg = .data:0x80854A08; // type:object size:0xC +lbl_80854A14 = .data:0x80854A14; // type:object size:0x20 +lbl_80854A34 = .data:0x80854A34; // type:object size:0xC +__RTTI__28KeyboardHighHandPlacementMsg = .data:0x80854A40; // type:object size:0x8 +__vt__27KeyboardLowHandPlacementMsg = .data:0x80854A48; // type:object size:0xC +lbl_80854A54 = .data:0x80854A54; // type:object size:0x1C data:string +lbl_80854A70 = .data:0x80854A70; // type:object size:0x10 +__RTTI__27KeyboardLowHandPlacementMsg = .data:0x80854A80; // type:object size:0x8 +__vt__20KeysAccelerometerMsg = .data:0x80854A88; // type:object size:0xC +lbl_80854A94 = .data:0x80854A94; // type:object size:0x18 +lbl_80854AAC = .data:0x80854AAC; // type:object size:0xC +__RTTI__20KeysAccelerometerMsg = .data:0x80854AB8; // type:object size:0x8 +__vt__19KeyboardStompBoxMsg = .data:0x80854AC0; // type:object size:0xC +lbl_80854ACC = .data:0x80854ACC; // type:object size:0x14 data:string +lbl_80854AE0 = .data:0x80854AE0; // type:object size:0x10 +__RTTI__19KeyboardStompBoxMsg = .data:0x80854AF0; // type:object size:0x8 +__vt__18KeyboardSustainMsg = .data:0x80854AF8; // type:object size:0xC +lbl_80854B04 = .data:0x80854B04; // type:object size:0x14 +lbl_80854B18 = .data:0x80854B18; // type:object size:0x10 +__RTTI__18KeyboardSustainMsg = .data:0x80854B28; // type:object size:0x8 +__vt__31KeyboardConnectedAccessoriesMsg = .data:0x80854B30; // type:object size:0x10 +lbl_80854B40 = .data:0x80854B40; // type:object size:0x20 data:string +lbl_80854B60 = .data:0x80854B60; // type:object size:0x10 +__RTTI__31KeyboardConnectedAccessoriesMsg = .data:0x80854B70; // type:object size:0x8 +__vt__26KeyboardExpressionPedalMsg = .data:0x80854B78; // type:object size:0xC +lbl_80854B84 = .data:0x80854B84; // type:object size:0x1C +lbl_80854BA0 = .data:0x80854BA0; // type:object size:0x10 +__RTTI__26KeyboardExpressionPedalMsg = .data:0x80854BB0; // type:object size:0x8 +__vt__14KeyboardModMsg = .data:0x80854BB8; // type:object size:0xC +lbl_80854BC4 = .data:0x80854BC4; // type:object size:0x10 +lbl_80854BD4 = .data:0x80854BD4; // type:object size:0xC +__RTTI__14KeyboardModMsg = .data:0x80854BE0; // type:object size:0x8 +__vt__22KeyboardKeyReleasedMsg = .data:0x80854BE8; // type:object size:0xC scope:weak +lbl_80854BF4 = .data:0x80854BF4; // type:object size:0x18 +lbl_80854C0C = .data:0x80854C0C; // type:object size:0xC +__RTTI__22KeyboardKeyReleasedMsg = .data:0x80854C18; // type:object size:0x8 scope:weak +@STRING@Type__28KeyboardHighHandPlacementMsgFv = .data:0x80854C20; // type:object size:0x20 +@STRING@Type__27KeyboardLowHandPlacementMsgFv = .data:0x80854C40; // type:object size:0x1C data:string +@STRING@Type__20KeysAccelerometerMsgFv = .data:0x80854C5C; // type:object size:0x14 +@STRING@Type__19KeyboardStompBoxMsgFv = .data:0x80854C70; // type:object size:0x14 +@STRING@Type__18KeyboardSustainMsgFv = .data:0x80854C84; // type:object size:0x14 +@STRING@Type__31KeyboardConnectedAccessoriesMsgFv = .data:0x80854C98; // type:object size:0x20 +@STRING@Type__26KeyboardExpressionPedalMsgFv = .data:0x80854CB8; // type:object size:0x1C +@STRING@Type__14KeyboardModMsgFv = .data:0x80854CD4; // type:object size:0x10 +@STRING@Type__22KeyboardKeyReleasedMsgFv = .data:0x80854CE4; // type:object size:0x1C +gCallStackPtr = .data:0x80854D00; // type:object size:0x4 data:4byte +lbl_80854D04 = .data:0x80854D04; // type:object size:0x44 +jumptable_80854D48 = .data:0x80854D48; // type:object size:0x64 scope:local +lbl_80854DAC = .data:0x80854DAC; // type:object size:0xC data:4byte +lbl_80854DB8 = .data:0x80854DB8; // type:object size:0xC data:4byte +lbl_80854DC4 = .data:0x80854DC4; // type:object size:0xC data:4byte +lbl_80854DD0 = .data:0x80854DD0; // type:object size:0xC +lbl_80854DDC = .data:0x80854DDC; // type:object size:0xC data:4byte +lbl_80854DE8 = .data:0x80854DE8; // type:object size:0x14 +lbl_80854DFC = .data:0x80854DFC; // type:object size:0x14 data:string +lbl_80854E10 = .data:0x80854E10; // type:object size:0x10 +lbl_80854E20 = .data:0x80854E20; // type:object size:0x8 +lbl_80854E28 = .data:0x80854E28; // type:object size:0x20 +lbl_80854E48 = .data:0x80854E48; // type:object size:0x10 +lbl_80854E58 = .data:0x80854E58; // type:object size:0x30 +__vt__15DataMergeFilter = .data:0x80854E88; // type:object size:0x18 +lbl_80854EA0 = .data:0x80854EA0; // type:object size:0x10 data:string +lbl_80854EB0 = .data:0x80854EB0; // type:object size:0x10 +__RTTI__15DataMergeFilter = .data:0x80854EC0; // type:object size:0x8 +__vt__11DataFuncObj = .data:0x80854EC8; // type:object size:0x5C +lbl_80854F24 = .data:0x80854F24; // type:object size:0xC data:string +lbl_80854F30 = .data:0x80854F30; // type:object size:0x18 +__RTTI__11DataFuncObj = .data:0x80854F48; // type:object size:0x8 +__vt__11MergeFilter = .data:0x80854F50; // type:object size:0x18 +__vt__11DataThisPtr = .data:0x80854F68; // type:object size:0x18 +lbl_80854F80 = .data:0x80854F80; // type:object size:0xC data:string +lbl_80854F8C = .data:0x80854F8C; // type:object size:0x14 +__RTTI__11DataThisPtr = .data:0x80854FA0; // type:object size:0x8 +lbl_80854FA8 = .data:0x80854FA8; // type:object size:0x4A0 +jumptable_80855448 = .data:0x80855448; // type:object size:0x98 scope:local +jumptable_808554E0 = .data:0x808554E0; // type:object size:0x98 scope:local +jumptable_80855578 = .data:0x80855578; // type:object size:0x98 scope:local +lbl_80855610 = .data:0x80855610; // type:object size:0x8 +lbl_80855618 = .data:0x80855618; // type:object size:0x80 +gVarStackPtr = .data:0x80855698; // type:object size:0x4 data:4byte +sFile = .data:0x8085569C; // type:object size:0x8 +@stringBase0 = .data:0x808556A4; // type:object size:0x1C scope:local data:string_table +yy_init = .data:0x808556C0; // type:object size:0x4 data:4byte +jumptable_808556C4 = .data:0x808556C4; // type:object size:0x9C scope:local +lbl_80855760 = .data:0x80855760; // type:object size:0x168 +lbl_808558C8 = .data:0x808558C8; // type:object size:0x4 data:4byte +__vt__9ObjectDir = .data:0x808558CC; // type:object size:0xBC +lbl_80855988 = .data:0x80855988; // type:object size:0xC +lbl_80855994 = .data:0x80855994; // type:object size:0x14 +lbl_808559A8 = .data:0x808559A8; // type:object size:0x8 +lbl_808559B0 = .data:0x808559B0; // type:object size:0xC +lbl_808559BC = .data:0x808559BC; // type:object size:0xC +lbl_808559C8 = .data:0x808559C8; // type:object size:0x8 data:string +lbl_808559D0 = .data:0x808559D0; // type:object size:0x130 +lbl_80855B00 = .data:0x80855B00; // type:object size:0x78 +lbl_80855B78 = .data:0x80855B78; // type:object size:0x4 data:4byte +lbl_80855B7C = .data:0x80855B7C; // type:object size:0xC data:4byte +lbl_80855B88 = .data:0x80855B88; // type:object size:0x60 +lbl_80855BE8 = .data:0x80855BE8; // type:object size:0xC data:4byte +lbl_80855BF4 = .data:0x80855BF4; // type:object size:0xC data:4byte +lbl_80855C00 = .data:0x80855C00; // type:object size:0xC data:4byte +lbl_80855C0C = .data:0x80855C0C; // type:object size:0xC data:4byte +lbl_80855C18 = .data:0x80855C18; // type:object size:0xC data:4byte +lbl_80855C24 = .data:0x80855C24; // type:object size:0xC data:4byte +lbl_80855C30 = .data:0x80855C30; // type:object size:0xC data:4byte +lbl_80855C3C = .data:0x80855C3C; // type:object size:0xC data:4byte +lbl_80855C48 = .data:0x80855C48; // type:object size:0x38 data:4byte +lbl_80855C80 = .data:0x80855C80; // type:object size:0x180 +lbl_80855E00 = .data:0x80855E00; // type:object size:0x74 +lbl_80855E74 = .data:0x80855E74; // type:object size:0x164 +__vt__11DirUnloader = .data:0x80855FD8; // type:object size:0x78 +lbl_80856050 = .data:0x80856050; // type:object size:0xC data:string +lbl_8085605C = .data:0x8085605C; // type:object size:0x1C +__RTTI__11DirUnloader = .data:0x80856078; // type:object size:0x8 +lbl_80856080 = .data:0x80856080; // type:object size:0x8 data:string +lbl_80856088 = .data:0x80856088; // type:object size:0x18 +__vt__9MsgSource = .data:0x808560A0; // type:object size:0x80 +__vt__Q23Hmx6Object = .data:0x80856120; // type:object size:0x5C +lbl_8085617C = .data:0x8085617C; // type:object size:0xD4 +lbl_80856250 = .data:0x80856250; // type:object size:0x28 +lbl_80856278 = .data:0x80856278; // type:object size:0x18 +lbl_80856290 = .data:0x80856290; // type:object size:0x18 data:string +lbl_808562A8 = .data:0x808562A8; // type:object size:0x10 +lbl_808562B8 = .data:0x808562B8; // type:object size:0x8 +__vt__7TaskMgr = .data:0x808562C0; // type:object size:0x60 +lbl_80856320 = .data:0x80856320; // type:object size:0x8 data:string +lbl_80856328 = .data:0x80856328; // type:object size:0x18 +__RTTI__7TaskMgr = .data:0x80856340; // type:object size:0x8 +lbl_80856348 = .data:0x80856348; // type:object size:0x60 +lbl_808563A8 = .data:0x808563A8; // type:object size:0xC +lbl_808563B4 = .data:0x808563B4; // type:object size:0x24 +lbl_808563D8 = .data:0x808563D8; // type:object size:0x8 +lbl_808563E0 = .data:0x808563E0; // type:object size:0x60 +lbl_80856440 = .data:0x80856440; // type:object size:0xC +lbl_8085644C = .data:0x8085644C; // type:object size:0x1C +lbl_80856468 = .data:0x80856468; // type:object size:0x8 +lbl_80856470 = .data:0x80856470; // type:object size:0x60 +lbl_808564D0 = .data:0x808564D0; // type:object size:0xC data:string +lbl_808564DC = .data:0x808564DC; // type:object size:0x1C +lbl_808564F8 = .data:0x808564F8; // type:object size:0x8 +lbl_80856500 = .data:0x80856500; // type:object size:0x18 +lbl_80856518 = .data:0x80856518; // type:object size:0x24 data:string +lbl_8085653C = .data:0x8085653C; // type:object size:0xC +lbl_80856548 = .data:0x80856548; // type:object size:0x8 +__vt__4Task = .data:0x80856550; // type:object size:0x60 +lbl_808565B0 = .data:0x808565B0; // type:object size:0x60 +__vt__8TextFile = .data:0x80856610; // type:object size:0x70 +lbl_80856680 = .data:0x80856680; // type:object size:0xC +lbl_8085668C = .data:0x8085668C; // type:object size:0x1C +__RTTI__8TextFile = .data:0x808566A8; // type:object size:0x8 +lbl_808566B0 = .data:0x808566B0; // type:object size:0x8 +lbl_808566B8 = .data:0x808566B8; // type:object size:0x8 data:string +lbl_808566C0 = .data:0x808566C0; // type:object size:0x8 +lbl_808566C8 = .data:0x808566C8; // type:object size:0x98 +TheBeatMap = .data:0x80856760; // type:object size:0x8 data:4byte +lbl_80856768 = .data:0x80856768; // type:object size:0x20 +__vt__9BinStream = .data:0x80856788; // type:object size:0x34 +lbl_808567BC = .data:0x808567BC; // type:object size:0xA data:string +__vt__9BufStream = .data:0x808567C8; // type:object size:0x34 +lbl_808567FC = .data:0x808567FC; // type:object size:0xC +lbl_80856808 = .data:0x80856808; // type:object size:0x10 +__RTTI__9BufStream = .data:0x80856818; // type:object size:0x8 +lbl_80856820 = .data:0x80856820; // type:object size:0x8 +lbl_80856828 = .data:0x80856828; // type:object size:0x8 +lbl_80856830 = .data:0x80856830; // type:object size:0x8 +lbl_80856838 = .data:0x80856838; // type:object size:0x14 +lbl_8085684C = .data:0x8085684C; // type:object size:0x14 +__vt__13BufStreamNAND = .data:0x80856860; // type:object size:0x3C +lbl_8085689C = .data:0x8085689C; // type:object size:0x10 +lbl_808568AC = .data:0x808568AC; // type:object size:0x1C +lbl_808568C8 = .data:0x808568C8; // type:object size:0x8 +lbl_808568D0 = .data:0x808568D0; // type:object size:0x18 data:string +lbl_808568E8 = .data:0x808568E8; // type:object size:0x18 +__RTTI__23FixedSizeSaveableStream = .data:0x80856900; // type:object size:0x8 +lbl_80856908 = .data:0x80856908; // type:object size:0x38 +lbl_80856940 = .data:0x80856940; // type:object size:0x8 +lbl_80856948 = .data:0x80856948; // type:object size:0x8 +__vt__7CacheID = .data:0x80856950; // type:object size:0x18 +lbl_80856968 = .data:0x80856968; // type:object size:0x8 data:string +lbl_80856970 = .data:0x80856970; // type:object size:0x8 +lbl_80856978 = .data:0x80856978; // type:object size:0x54 +lbl_808569CC = .data:0x808569CC; // type:object size:0xC +lbl_808569D8 = .data:0x808569D8; // type:object size:0x18 +lbl_808569F0 = .data:0x808569F0; // type:object size:0x8 +__vt__10CacheIDWii = .data:0x808569F8; // type:object size:0x18 +lbl_80856A10 = .data:0x80856A10; // type:object size:0xC +lbl_80856A1C = .data:0x80856A1C; // type:object size:0xC +lbl_80856A28 = .data:0x80856A28; // type:object size:0x8 +lbl_80856A30 = .data:0x80856A30; // type:object size:0x38 +lbl_80856A68 = .data:0x80856A68; // type:object size:0x30 +lbl_80856A98 = .data:0x80856A98; // type:object size:0x10 +lbl_80856AA8 = .data:0x80856AA8; // type:object size:0x8 +lbl_80856AB0 = .data:0x80856AB0; // type:object size:0x4 data:4byte +lbl_80856AB4 = .data:0x80856AB4; // type:object size:0x4 data:4byte +lbl_80856AB8 = .data:0x80856AB8; // type:object size:0x30 +lbl_80856AE8 = .data:0x80856AE8; // type:object size:0xC data:string +lbl_80856AF4 = .data:0x80856AF4; // type:object size:0xC +lbl_80856B00 = .data:0x80856B00; // type:object size:0x8 +lbl_80856B08 = .data:0x80856B08; // type:object size:0xB data:string +lbl_80856B13 = .data:0x80856B13; // type:object size:0x3D +__vt__13CheatsManager = .data:0x80856B50; // type:object size:0x5C +lbl_80856BAC = .data:0x80856BAC; // type:object size:0x10 +lbl_80856BBC = .data:0x80856BBC; // type:object size:0x14 +__RTTI__13CheatsManager = .data:0x80856BD0; // type:object size:0x8 +lbl_80856BD8 = .data:0x80856BD8; // type:object size:0x90 +lbl_80856C68 = .data:0x80856C68; // type:object size:0x34 +lbl_80856C9C = .data:0x80856C9C; // type:object size:0xC +lbl_80856CA8 = .data:0x80856CA8; // type:object size:0x10 +lbl_80856CB8 = .data:0x80856CB8; // type:object size:0x8 +lbl_80856CC0 = .data:0x80856CC0; // type:object size:0x8 +lbl_80856CC8 = .data:0x80856CC8; // type:object size:0x50 +lbl_80856D18 = .data:0x80856D18; // type:object size:0x34 +lbl_80856D4C = .data:0x80856D4C; // type:object size:0xC data:string +lbl_80856D58 = .data:0x80856D58; // type:object size:0x10 +lbl_80856D68 = .data:0x80856D68; // type:object size:0x8 +lbl_80856D70 = .data:0x80856D70; // type:object size:0x50 +lbl_80856DC0 = .data:0x80856DC0; // type:object size:0x20 +lbl_80856DE0 = .data:0x80856DE0; // type:object size:0x8 +lbl_80856DE8 = .data:0x80856DE8; // type:object size:0x90 +lbl_80856E78 = .data:0x80856E78; // type:object size:0x8 +__vt__10FileStream = .data:0x80856E80; // type:object size:0x34 +lbl_80856EB4 = .data:0x80856EB4; // type:object size:0xC +lbl_80856EC0 = .data:0x80856EC0; // type:object size:0x10 +__RTTI__10FileStream = .data:0x80856ED0; // type:object size:0x8 +lbl_80856ED8 = .data:0x80856ED8; // type:object size:0x38 +lbl_80856F10 = .data:0x80856F10; // type:object size:0x18 +lbl_80856F28 = .data:0x80856F28; // type:object size:0x20 +lbl_80856F48 = .data:0x80856F48; // type:object size:0x10 data:string +lbl_80856F58 = .data:0x80856F58; // type:object size:0x10 +lbl_80856F68 = .data:0x80856F68; // type:object size:0xC data:4byte +lbl_80856F74 = .data:0x80856F74; // type:object size:0xC data:4byte +lbl_80856F80 = .data:0x80856F80; // type:object size:0xC data:4byte +lbl_80856F8C = .data:0x80856F8C; // type:object size:0xC data:4byte +lbl_80856F98 = .data:0x80856F98; // type:object size:0xC data:4byte +lbl_80856FA4 = .data:0x80856FA4; // type:object size:0xC +lbl_80856FB0 = .data:0x80856FB0; // type:object size:0xC data:4byte +__vt__10FileLoader = .data:0x80856FBC; // type:object size:0x1C +__vt__6Loader = .data:0x80856FD8; // type:object size:0x20 +lbl_80856FF8 = .data:0x80856FF8; // type:object size:0xD8 +lbl_808570D0 = .data:0x808570D0; // type:object size:0x48 +lbl_80857118 = .data:0x80857118; // type:object size:0x28 +__vt__7LogFile = .data:0x80857140; // type:object size:0x10 +lbl_80857150 = .data:0x80857150; // type:object size:0x8 data:string +lbl_80857158 = .data:0x80857158; // type:object size:0x10 +lbl_80857168 = .data:0x80857168; // type:object size:0x8 +lbl_80857170 = .data:0x80857170; // type:object size:0x28 +lbl_80857198 = .data:0x80857198; // type:object size:0x8 data:4byte +lbl_808571A0 = .data:0x808571A0; // type:object size:0x60 +lbl_80857200 = .data:0x80857200; // type:object size:0x20 +lbl_80857220 = .data:0x80857220; // type:object size:0x2F +lbl_8085724F = .data:0x8085724F; // type:object size:0x5 data:string +lbl_80857254 = .data:0x80857254; // type:object size:0x5 data:string +lbl_80857259 = .data:0x80857259; // type:object size:0x5 data:string +lbl_8085725E = .data:0x8085725E; // type:object size:0x12 +__vt__9MemStream = .data:0x80857270; // type:object size:0x34 +lbl_808572A4 = .data:0x808572A4; // type:object size:0xC +lbl_808572B0 = .data:0x808572B0; // type:object size:0x10 +lbl_808572C0 = .data:0x808572C0; // type:object size:0x8 +lbl_808572C8 = .data:0x808572C8; // type:object size:0x4FA +lbl_808577C8 = .data:0x808577C8; // type:object size:0x4A0 +lbl_80857C68 = .data:0x80857C68; // type:object size:0x418 +lbl_80858080 = .data:0x80858080; // type:object size:0x3F0 +__vt__18MultiTempoTempoMap = .data:0x80858470; // type:object size:0x40 +lbl_808584B0 = .data:0x808584B0; // type:object size:0x14 +lbl_808584C4 = .data:0x808584C4; // type:object size:0xC +lbl_808584D0 = .data:0x808584D0; // type:object size:0x8 +__vt__8TempoMap = .data:0x808584D8; // type:object size:0x40 +lbl_80858518 = .data:0x80858518; // type:object size:0x10 +lbl_80858528 = .data:0x80858528; // type:object size:0x8 +lbl_80858530 = .data:0x80858530; // type:object size:0x18 +lbl_80858548 = .data:0x80858548; // type:object size:0x10 +lbl_80858558 = .data:0x80858558; // type:object size:0x10 +lbl_80858568 = .data:0x80858568; // type:object size:0x8 +lbl_80858570 = .data:0x80858570; // type:object size:0x18 +lbl_80858588 = .data:0x80858588; // type:object size:0x10 +lbl_80858598 = .data:0x80858598; // type:object size:0x8 +lbl_808585A0 = .data:0x808585A0; // type:object size:0x10 +lbl_808585B0 = .data:0x808585B0; // type:object size:0x18 +lbl_808585C8 = .data:0x808585C8; // type:object size:0x10 +lbl_808585D8 = .data:0x808585D8; // type:object size:0x10 +lbl_808585E8 = .data:0x808585E8; // type:object size:0x8 +lbl_808585F0 = .data:0x808585F0; // type:object size:0x80 +lbl_80858670 = .data:0x80858670; // type:object size:0x74 +lbl_808586E4 = .data:0x808586E4; // type:object size:0x10 +lbl_808586F4 = .data:0x808586F4; // type:object size:0x1C +lbl_80858710 = .data:0x80858710; // type:object size:0x8 +__vt__11NetCacheMgr = .data:0x80858718; // type:object size:0x74 +lbl_8085878C = .data:0x8085878C; // type:object size:0xC data:string +lbl_80858798 = .data:0x80858798; // type:object size:0x18 +__RTTI__11NetCacheMgr = .data:0x808587B0; // type:object size:0x8 +lbl_808587B8 = .data:0x808587B8; // type:object size:0x48 +@stringBase0 = .data:0x80858800; // type:object size:0x27 data:string_table +lbl_80858828 = .data:0x80858828; // type:object size:0x10 +lbl_80858838 = .data:0x80858838; // type:object size:0x10 +lbl_80858848 = .data:0x80858848; // type:object size:0x8 +lbl_80858850 = .data:0x80858850; // type:object size:0x8 +lbl_80858858 = .data:0x80858858; // type:object size:0xB8 +lbl_80858910 = .data:0x80858910; // type:object size:0x78 +__vt__4Song = .data:0x80858988; // type:object size:0x108 +lbl_80858A90 = .data:0x80858A90; // type:object size:0x8 +lbl_80858A98 = .data:0x80858A98; // type:object size:0x30 +__RTTI__4Song = .data:0x80858AC8; // type:object size:0x8 +lbl_80858AD0 = .data:0x80858AD0; // type:object size:0x8 +lbl_80858AD8 = .data:0x80858AD8; // type:object size:0x8 +lbl_80858AE0 = .data:0x80858AE0; // type:object size:0x8 data:string +lbl_80858AE8 = .data:0x80858AE8; // type:object size:0x60 +__vt__12SongInfoCopy = .data:0x80858B48; // type:object size:0x5C +lbl_80858BA4 = .data:0x80858BA4; // type:object size:0x10 +lbl_80858BB4 = .data:0x80858BB4; // type:object size:0xC +__RTTI__12SongInfoCopy = .data:0x80858BC0; // type:object size:0x8 +__vt__8SongInfo = .data:0x80858BC8; // type:object size:0x5C +lbl_80858C24 = .data:0x80858C24; // type:object size:0xC +__RTTI__8SongInfo = .data:0x80858C30; // type:object size:0x8 +lbl_80858C38 = .data:0x80858C38; // type:object size:0x58 +__vt__6String = .data:0x80858C90; // type:object size:0x10 +lbl_80858CA0 = .data:0x80858CA0; // type:object size:0x8 +lbl_80858CA8 = .data:0x80858CA8; // type:object size:0x48 +lbl_80858CF0 = .data:0x80858CF0; // type:object size:0x38 +lbl_80858D28 = .data:0x80858D28; // type:object size:0x854E +lbl_80861278 = .data:0x80861278; // type:object size:0x6303 +lbl_80867580 = .data:0x80867580; // type:object size:0x68CF +lbl_8086DE50 = .data:0x8086DE50; // type:object size:0x6615 +TheTempoMap = .data:0x80874468; // type:object size:0x8 data:4byte +__vt__14SimpleTempoMap = .data:0x80874470; // type:object size:0x40 +lbl_808744B0 = .data:0x808744B0; // type:object size:0x10 +lbl_808744C0 = .data:0x808744C0; // type:object size:0x10 +lbl_808744D0 = .data:0x808744D0; // type:object size:0x8 +__vt__14TextFileStream = .data:0x808744D8; // type:object size:0x10 +lbl_808744E8 = .data:0x808744E8; // type:object size:0x10 +lbl_808744F8 = .data:0x808744F8; // type:object size:0x10 +lbl_80874508 = .data:0x80874508; // type:object size:0x8 +__vt__10TextStream = .data:0x80874510; // type:object size:0x10 +gCStrModifiers = .data:0x80874520; // type:object size:0x30 +lbl_80874550 = .data:0x80874550; // type:object size:0x38 +lbl_80874588 = .data:0x80874588; // type:object size:0x8 +lbl_80874590 = .data:0x80874590; // type:object size:0x88 +lbl_80874618 = .data:0x80874618; // type:object size:0x5 data:string +lbl_8087461D = .data:0x8087461D; // type:object size:0x5 data:string +lbl_80874622 = .data:0x80874622; // type:object size:0x5 data:string +lbl_80874627 = .data:0x80874627; // type:object size:0x9 +lbl_80874630 = .data:0x80874630; // type:object size:0x34 +lbl_80874664 = .data:0x80874664; // type:object size:0x10 +lbl_80874674 = .data:0x80874674; // type:object size:0x14 +lbl_80874688 = .data:0x80874688; // type:object size:0x8 +static_l_desc = .data:0x80874690; // type:object size:0x14 +static_d_desc = .data:0x808746A4; // type:object size:0x14 +static_ld_desc = .data:0x808746B8; // type:object size:0x14 +@stringBase0 = .data:0x808746D0; // type:object size:0x7B data:string_table +jumptable_80874750 = .data:0x80874750; // type:object size:0x74 scope:local +@stringBase0 = .data:0x808747C4; // type:object size:0x1AE data:string_table +@stringBase0 = .data:0x80874978; // type:object size:0x50 data:string_table +lbl_808749C8 = .data:0x808749C8; // type:object size:0x4 data:float +lbl_808749CC = .data:0x808749CC; // type:object size:0xC +lbl_808749D8 = .data:0x808749D8; // type:object size:0x20 +__RTTI__10RndMatAnim = .data:0x808749F8; // type:object size:0x8 +lbl_80874A00 = .data:0x80874A00; // type:object size:0x18 +lbl_80874A18 = .data:0x80874A18; // type:object size:0x24 +lbl_80874A3C = .data:0x80874A3C; // type:object size:0xC +lbl_80874A48 = .data:0x80874A48; // type:object size:0x8 +lbl_80874A50 = .data:0x80874A50; // type:object size:0x8 data:string +lbl_80874A58 = .data:0x80874A58; // type:object size:0x8 +lbl_80874A60 = .data:0x80874A60; // type:object size:0x58 +lbl_80874AB8 = .data:0x80874AB8; // type:object size:0x10 +lbl_80874AC8 = .data:0x80874AC8; // type:object size:0x28 +__RTTI__12OutfitConfig = .data:0x80874AF0; // type:object size:0x8 +lbl_80874AF8 = .data:0x80874AF8; // type:object size:0xC +lbl_80874B04 = .data:0x80874B04; // type:object size:0x64 +__RTTI__10BandSwatch = .data:0x80874B68; // type:object size:0x8 +lbl_80874B70 = .data:0x80874B70; // type:object size:0x10 +lbl_80874B80 = .data:0x80874B80; // type:object size:0x18 +__RTTI__12ColorPalette = .data:0x80874B98; // type:object size:0x8 +lbl_80874BA0 = .data:0x80874BA0; // type:object size:0x18 +lbl_80874BB8 = .data:0x80874BB8; // type:object size:0x10 +lbl_80874BC8 = .data:0x80874BC8; // type:object size:0x10 +lbl_80874BD8 = .data:0x80874BD8; // type:object size:0x10 +lbl_80874BE8 = .data:0x80874BE8; // type:object size:0x10 +lbl_80874BF8 = .data:0x80874BF8; // type:object size:0xC data:string +lbl_80874C04 = .data:0x80874C04; // type:object size:0x14 data:string +lbl_80874C18 = .data:0x80874C18; // type:object size:0x14 +lbl_80874C2C = .data:0x80874C2C; // type:object size:0x10 +lbl_80874C3C = .data:0x80874C3C; // type:object size:0x10 +lbl_80874C4C = .data:0x80874C4C; // type:object size:0xC +lbl_80874C58 = .data:0x80874C58; // type:object size:0x10 data:string +lbl_80874C68 = .data:0x80874C68; // type:object size:0x8 +lbl_80874C70 = .data:0x80874C70; // type:object size:0x10 +lbl_80874C80 = .data:0x80874C80; // type:object size:0x10 data:string +lbl_80874C90 = .data:0x80874C90; // type:object size:0x10 +lbl_80874CA0 = .data:0x80874CA0; // type:object size:0x10 +lbl_80874CB0 = .data:0x80874CB0; // type:object size:0x18 +lbl_80874CC8 = .data:0x80874CC8; // type:object size:0x10 +lbl_80874CD8 = .data:0x80874CD8; // type:object size:0x10 +lbl_80874CE8 = .data:0x80874CE8; // type:object size:0x14 +lbl_80874CFC = .data:0x80874CFC; // type:object size:0x10 +lbl_80874D0C = .data:0x80874D0C; // type:object size:0x14 +lbl_80874D20 = .data:0x80874D20; // type:object size:0xC data:string +lbl_80874D2C = .data:0x80874D2C; // type:object size:0x34 +__vt__27ObjPtr<7RndMesh,9ObjectDir> = .data:0x80874D60; // type:object size:0x18 +lbl_80874D78 = .data:0x80874D78; // type:object size:0x1C +lbl_80874D94 = .data:0x80874D94; // type:object size:0xC +__RTTI__27ObjPtr<7RndMesh,9ObjectDir> = .data:0x80874DA0; // type:object size:0x8 +__vt__10BandButton = .data:0x80874DA8; // type:object size:0x170 +lbl_80874F18 = .data:0x80874F18; // type:object size:0xC +lbl_80874F24 = .data:0x80874F24; // type:object size:0xC +lbl_80874F30 = .data:0x80874F30; // type:object size:0x8 +lbl_80874F38 = .data:0x80874F38; // type:object size:0x8 data:string +lbl_80874F40 = .data:0x80874F40; // type:object size:0x10 +lbl_80874F50 = .data:0x80874F50; // type:object size:0xC +lbl_80874F5C = .data:0x80874F5C; // type:object size:0x1C +__RTTI__9EventAnim = .data:0x80874F78; // type:object size:0x8 +__vt__11BandCamShot = .data:0x80874F80; // type:object size:0xBC +lbl_8087503C = .data:0x8087503C; // type:object size:0xC data:string +lbl_80875048 = .data:0x80875048; // type:object size:0x28 +__RTTI__11BandCamShot = .data:0x80875070; // type:object size:0x8 +lbl_80875078 = .data:0x80875078; // type:object size:0x18 +lbl_80875090 = .data:0x80875090; // type:object size:0x20 +lbl_808750B0 = .data:0x808750B0; // type:object size:0x10 +lbl_808750C0 = .data:0x808750C0; // type:object size:0x8 +lbl_808750C8 = .data:0x808750C8; // type:object size:0x18 +lbl_808750E0 = .data:0x808750E0; // type:object size:0x24 +lbl_80875104 = .data:0x80875104; // type:object size:0xC +lbl_80875110 = .data:0x80875110; // type:object size:0x8 +__vt__33ObjPtr<12EventTrigger,9ObjectDir> = .data:0x80875118; // type:object size:0x18 +lbl_80875130 = .data:0x80875130; // type:object size:0x20 data:string +lbl_80875150 = .data:0x80875150; // type:object size:0x10 +__RTTI__33ObjPtr<12EventTrigger,9ObjectDir> = .data:0x80875160; // type:object size:0x8 +__vt__29ObjPtr<9ObjectDir,9ObjectDir> = .data:0x80875168; // type:object size:0x18 +lbl_80875180 = .data:0x80875180; // type:object size:0x20 +lbl_808751A0 = .data:0x808751A0; // type:object size:0x10 +__RTTI__29ObjPtr<9ObjectDir,9ObjectDir> = .data:0x808751B0; // type:object size:0x8 +lbl_808751B8 = .data:0x808751B8; // type:object size:0xC +lbl_808751C4 = .data:0x808751C4; // type:object size:0xC +lbl_808751D0 = .data:0x808751D0; // type:object size:0x8 data:string +lbl_808751D8 = .data:0x808751D8; // type:object size:0x98 +__vt__17BandConfiguration = .data:0x80875270; // type:object size:0x5C +lbl_808752CC = .data:0x808752CC; // type:object size:0x14 +lbl_808752E0 = .data:0x808752E0; // type:object size:0x18 +__RTTI__17BandConfiguration = .data:0x808752F8; // type:object size:0x8 +lbl_80875300 = .data:0x80875300; // type:object size:0xC +lbl_8087530C = .data:0x8087530C; // type:object size:0x24 +__RTTI__8Waypoint = .data:0x80875330; // type:object size:0x8 +lbl_80875338 = .data:0x80875338; // type:object size:0x8 +lbl_80875340 = .data:0x80875340; // type:object size:0x8 data:string +lbl_80875348 = .data:0x80875348; // type:object size:0xC +lbl_80875354 = .data:0x80875354; // type:object size:0x14 +lbl_80875368 = .data:0x80875368; // type:object size:0x18 +lbl_80875380 = .data:0x80875380; // type:object size:0xC +lbl_8087538C = .data:0x8087538C; // type:object size:0x4 +lbl_80875390 = .data:0x80875390; // type:object size:0x10 +lbl_808753A0 = .data:0x808753A0; // type:object size:0x4 +lbl_808753A4 = .data:0x808753A4; // type:object size:0x4 +lbl_808753A8 = .data:0x808753A8; // type:object size:0xC data:string +lbl_808753B4 = .data:0x808753B4; // type:object size:0x14 +__RTTI__11CharLipSync = .data:0x808753C8; // type:object size:0x8 +__vt__12BandDirector = .data:0x808753D0; // type:object size:0x118 +lbl_808754E8 = .data:0x808754E8; // type:object size:0x10 +lbl_808754F8 = .data:0x808754F8; // type:object size:0x30 +__RTTI__12BandDirector = .data:0x80875528; // type:object size:0x8 +lbl_80875530 = .data:0x80875530; // type:object size:0x18 +lbl_80875548 = .data:0x80875548; // type:object size:0x1C data:string +lbl_80875564 = .data:0x80875564; // type:object size:0xC +lbl_80875570 = .data:0x80875570; // type:object size:0x8 +lbl_80875578 = .data:0x80875578; // type:object size:0x18 +lbl_80875590 = .data:0x80875590; // type:object size:0x20 +lbl_808755B0 = .data:0x808755B0; // type:object size:0x10 +lbl_808755C0 = .data:0x808755C0; // type:object size:0x8 +lbl_808755C8 = .data:0x808755C8; // type:object size:0x18 +lbl_808755E0 = .data:0x808755E0; // type:object size:0x14 +lbl_808755F4 = .data:0x808755F4; // type:object size:0xC +lbl_80875600 = .data:0x80875600; // type:object size:0x8 +lbl_80875608 = .data:0x80875608; // type:object size:0x18 +lbl_80875620 = .data:0x80875620; // type:object size:0x1C +lbl_8087563C = .data:0x8087563C; // type:object size:0xC +lbl_80875648 = .data:0x80875648; // type:object size:0x8 +lbl_80875650 = .data:0x80875650; // type:object size:0x10 +lbl_80875660 = .data:0x80875660; // type:object size:0x18 +__RTTI__12BandSongPref = .data:0x80875678; // type:object size:0x8 +lbl_80875680 = .data:0x80875680; // type:object size:0xC data:string +lbl_8087568C = .data:0x8087568C; // type:object size:0x1C +__RTTI__11LightPreset = .data:0x808756A8; // type:object size:0x8 +lbl_808756B0 = .data:0x808756B0; // type:object size:0x18 +lbl_808756C8 = .data:0x808756C8; // type:object size:0x20 +lbl_808756E8 = .data:0x808756E8; // type:object size:0x10 +lbl_808756F8 = .data:0x808756F8; // type:object size:0x8 +lbl_80875700 = .data:0x80875700; // type:object size:0xC +lbl_8087570C = .data:0x8087570C; // type:object size:0x24 +lbl_80875730 = .data:0x80875730; // type:object size:0x8 +lbl_80875738 = .data:0x80875738; // type:object size:0x18 +lbl_80875750 = .data:0x80875750; // type:object size:0x10 +lbl_80875760 = .data:0x80875760; // type:object size:0x8 +lbl_80875768 = .data:0x80875768; // type:object size:0x60 +lbl_808757C8 = .data:0x808757C8; // type:object size:0x8 +lbl_808757D0 = .data:0x808757D0; // type:object size:0xC +lbl_808757DC = .data:0x808757DC; // type:object size:0x2C +lbl_80875808 = .data:0x80875808; // type:object size:0x8 +lbl_80875810 = .data:0x80875810; // type:object size:0xC +lbl_8087581C = .data:0x8087581C; // type:object size:0xC +__RTTI__8PropKeys = .data:0x80875828; // type:object size:0x8 +lbl_80875830 = .data:0x80875830; // type:object size:0x8 data:string +lbl_80875838 = .data:0x80875838; // type:object size:0x18 +lbl_80875850 = .data:0x80875850; // type:object size:0x8 +lbl_80875858 = .data:0x80875858; // type:object size:0x24 +lbl_8087587C = .data:0x8087587C; // type:object size:0xC +lbl_80875888 = .data:0x80875888; // type:object size:0x8 +lbl_80875890 = .data:0x80875890; // type:object size:0x68 +lbl_808758F8 = .data:0x808758F8; // type:object size:0x8 +lbl_80875900 = .data:0x80875900; // type:object size:0x18 +lbl_80875918 = .data:0x80875918; // type:object size:0xC data:string +lbl_80875924 = .data:0x80875924; // type:object size:0x14 +lbl_80875938 = .data:0x80875938; // type:object size:0x8 +lbl_80875940 = .data:0x80875940; // type:object size:0x18 +lbl_80875958 = .data:0x80875958; // type:object size:0x20 +lbl_80875978 = .data:0x80875978; // type:object size:0x10 +lbl_80875988 = .data:0x80875988; // type:object size:0x8 +lbl_80875990 = .data:0x80875990; // type:object size:0xC +lbl_8087599C = .data:0x8087599C; // type:object size:0x2C +__RTTI__10FileMerger = .data:0x808759C8; // type:object size:0x8 +lbl_808759D0 = .data:0x808759D0; // type:object size:0x18 +lbl_808759E8 = .data:0x808759E8; // type:object size:0x8 +lbl_808759F0 = .data:0x808759F0; // type:object size:0xC +lbl_808759FC = .data:0x808759FC; // type:object size:0x14 +__RTTI__8CharClip = .data:0x80875A10; // type:object size:0x8 +lbl_80875A18 = .data:0x80875A18; // type:object size:0x14 +lbl_80875A2C = .data:0x80875A2C; // type:object size:0x14 +lbl_80875A40 = .data:0x80875A40; // type:object size:0x8 +lbl_80875A48 = .data:0x80875A48; // type:object size:0x14 +lbl_80875A5C = .data:0x80875A5C; // type:object size:0x10 +lbl_80875A6C = .data:0x80875A6C; // type:object size:0xC +lbl_80875A78 = .data:0x80875A78; // type:object size:0x8 data:string +lbl_80875A80 = .data:0x80875A80; // type:object size:0xC data:string +lbl_80875A8C = .data:0x80875A8C; // type:object size:0xC +lbl_80875A98 = .data:0x80875A98; // type:object size:0x8 data:string +lbl_80875AA0 = .data:0x80875AA0; // type:object size:0x6 data:string +lbl_80875AA6 = .data:0x80875AA6; // type:object size:0x9 data:string +lbl_80875AAF = .data:0x80875AAF; // type:object size:0x9 data:string +lbl_80875AB8 = .data:0x80875AB8; // type:object size:0xB data:string +lbl_80875AC3 = .data:0x80875AC3; // type:object size:0x26 +lbl_80875AE9 = .data:0x80875AE9; // type:object size:0x9 data:string +lbl_80875AF2 = .data:0x80875AF2; // type:object size:0x7 data:string +lbl_80875AF9 = .data:0x80875AF9; // type:object size:0xEE +lbl_80875BE7 = .data:0x80875BE7; // type:object size:0x8 data:string +lbl_80875BEF = .data:0x80875BEF; // type:object size:0x5 data:string +lbl_80875BF4 = .data:0x80875BF4; // type:object size:0x4 data:string +lbl_80875BF8 = .data:0x80875BF8; // type:object size:0x53 +lbl_80875C4B = .data:0x80875C4B; // type:object size:0xE data:string +lbl_80875C59 = .data:0x80875C59; // type:object size:0xF data:string +lbl_80875C68 = .data:0x80875C68; // type:object size:0xF data:string +lbl_80875C77 = .data:0x80875C77; // type:object size:0x11 data:string +lbl_80875C88 = .data:0x80875C88; // type:object size:0x230 +lbl_80875EB8 = .data:0x80875EB8; // type:object size:0x4 +lbl_80875EBC = .data:0x80875EBC; // type:object size:0x4 +__vt__14BandCrowdMeter = .data:0x80875EC0; // type:object size:0x24C +lbl_8087610C = .data:0x8087610C; // type:object size:0x10 +lbl_8087611C = .data:0x8087611C; // type:object size:0x54 +__RTTI__14BandCrowdMeter = .data:0x80876170; // type:object size:0x8 +lbl_80876178 = .data:0x80876178; // type:object size:0x18 +lbl_80876190 = .data:0x80876190; // type:object size:0x20 +lbl_808761B0 = .data:0x808761B0; // type:object size:0x10 +lbl_808761C0 = .data:0x808761C0; // type:object size:0x8 +lbl_808761C8 = .data:0x808761C8; // type:object size:0x18 +lbl_808761E0 = .data:0x808761E0; // type:object size:0x20 data:string +lbl_80876200 = .data:0x80876200; // type:object size:0x10 +lbl_80876210 = .data:0x80876210; // type:object size:0x8 +lbl_80876218 = .data:0x80876218; // type:object size:0x18 +lbl_80876230 = .data:0x80876230; // type:object size:0x24 +lbl_80876254 = .data:0x80876254; // type:object size:0xC +lbl_80876260 = .data:0x80876260; // type:object size:0x8 +lbl_80876268 = .data:0x80876268; // type:object size:0x10 +lbl_80876278 = .data:0x80876278; // type:object size:0x58 +__RTTI__14CrowdMeterIcon = .data:0x808762D0; // type:object size:0x8 +lbl_808762D8 = .data:0x808762D8; // type:object size:0x8 +lbl_808762E0 = .data:0x808762E0; // type:object size:0x8 data:string +lbl_808762E8 = .data:0x808762E8; // type:object size:0x140 +lbl_80876428 = .data:0x80876428; // type:object size:0x4 +lbl_8087642C = .data:0x8087642C; // type:object size:0x4 +__vt__13BandHighlight = .data:0x80876430; // type:object size:0x168 +lbl_80876598 = .data:0x80876598; // type:object size:0x10 +lbl_808765A8 = .data:0x808765A8; // type:object size:0x40 +__RTTI__13BandHighlight = .data:0x808765E8; // type:object size:0x8 +lbl_808765F0 = .data:0x808765F0; // type:object size:0x10 +lbl_80876600 = .data:0x80876600; // type:object size:0x8 +lbl_80876608 = .data:0x80876608; // type:object size:0x8 data:string +lbl_80876610 = .data:0x80876610; // type:object size:0x50 +lbl_80876660 = .data:0x80876660; // type:object size:0xC data:string +lbl_8087666C = .data:0x8087666C; // type:object size:0x1C +__RTTI__11RndMeshAnim = .data:0x80876688; // type:object size:0x8 +__vt__14BandFaceDeform = .data:0x80876690; // type:object size:0x5C +lbl_808766EC = .data:0x808766EC; // type:object size:0x10 +lbl_808766FC = .data:0x808766FC; // type:object size:0x14 +__RTTI__14BandFaceDeform = .data:0x80876710; // type:object size:0x8 +lbl_80876718 = .data:0x80876718; // type:object size:0x8 +lbl_80876720 = .data:0x80876720; // type:object size:0x8 data:string +lbl_80876728 = .data:0x80876728; // type:object size:0x10 +lbl_80876738 = .data:0x80876738; // type:object size:0xD8 +lbl_80876810 = .data:0x80876810; // type:object size:0x4 +lbl_80876814 = .data:0x80876814; // type:object size:0x284 +__vt__14BandIKEffector = .data:0x80876A98; // type:object size:0xF0 +lbl_80876B88 = .data:0x80876B88; // type:object size:0x10 +lbl_80876B98 = .data:0x80876B98; // type:object size:0x38 +__RTTI__14BandIKEffector = .data:0x80876BD0; // type:object size:0x8 +lbl_80876BD8 = .data:0x80876BD8; // type:object size:0x18 +lbl_80876BF0 = .data:0x80876BF0; // type:object size:0x24 +lbl_80876C14 = .data:0x80876C14; // type:object size:0xC +lbl_80876C20 = .data:0x80876C20; // type:object size:0x8 +lbl_80876C28 = .data:0x80876C28; // type:object size:0x18 +lbl_80876C40 = .data:0x80876C40; // type:object size:0x24 +lbl_80876C64 = .data:0x80876C64; // type:object size:0xC +lbl_80876C70 = .data:0x80876C70; // type:object size:0x40 +__vt__37ObjPtr<16RndTransformable,9ObjectDir> = .data:0x80876CB0; // type:object size:0x18 +lbl_80876CC8 = .data:0x80876CC8; // type:object size:0x24 data:string +lbl_80876CEC = .data:0x80876CEC; // type:object size:0xC +__RTTI__37ObjPtr<16RndTransformable,9ObjectDir> = .data:0x80876CF8; // type:object size:0xA8 +lbl_80876DA0 = .data:0x80876DA0; // type:object size:0x10 +lbl_80876DB0 = .data:0x80876DB0; // type:object size:0x18 +__RTTI__14CharWeightable = .data:0x80876DC8; // type:object size:0x8 +lbl_80876DD0 = .data:0x80876DD0; // type:object size:0x18 +lbl_80876DE8 = .data:0x80876DE8; // type:object size:0x28 +lbl_80876E10 = .data:0x80876E10; // type:object size:0x10 +lbl_80876E20 = .data:0x80876E20; // type:object size:0x30 +__vt__12CharPollable = .data:0x80876E50; // type:object size:0x88 +lbl_80876ED8 = .data:0x80876ED8; // type:object size:0x10 +lbl_80876EE8 = .data:0x80876EE8; // type:object size:0x20 +__RTTI__12CharPollable = .data:0x80876F08; // type:object size:0x78 +lbl_80876F80 = .data:0x80876F80; // type:object size:0x38 +lbl_80876FB8 = .data:0x80876FB8; // type:object size:0x8 +lbl_80876FC0 = .data:0x80876FC0; // type:object size:0x8 data:string +lbl_80876FC8 = .data:0x80876FC8; // type:object size:0x8 +lbl_80876FD0 = .data:0x80876FD0; // type:object size:0x8 +lbl_80876FD8 = .data:0x80876FD8; // type:object size:0x20 +lbl_80876FF8 = .data:0x80876FF8; // type:object size:0x98 +__vt__9BandLabel = .data:0x80877090; // type:object size:0x198 +lbl_80877228 = .data:0x80877228; // type:object size:0xC +lbl_80877234 = .data:0x80877234; // type:object size:0x18 +lbl_8087724C = .data:0x8087724C; // type:object size:0xC +lbl_80877258 = .data:0x80877258; // type:object size:0x8 +lbl_80877260 = .data:0x80877260; // type:object size:0xC +lbl_8087726C = .data:0x8087726C; // type:object size:0xC +lbl_80877278 = .data:0x80877278; // type:object size:0x8 data:string +lbl_80877280 = .data:0x80877280; // type:object size:0xC +lbl_8087728C = .data:0x8087728C; // type:object size:0xC +__vt__13BandLeadMeter = .data:0x80877298; // type:object size:0x24C +lbl_808774E4 = .data:0x808774E4; // type:object size:0x10 +lbl_808774F4 = .data:0x808774F4; // type:object size:0x54 +__RTTI__13BandLeadMeter = .data:0x80877548; // type:object size:0x8 +lbl_80877550 = .data:0x80877550; // type:object size:0x8 +lbl_80877558 = .data:0x80877558; // type:object size:0x8 data:string +lbl_80877560 = .data:0x80877560; // type:object size:0x4 +lbl_80877564 = .data:0x80877564; // type:object size:0x4 +__vt__8BandList = .data:0x80877568; // type:object size:0x238 +lbl_808777A0 = .data:0x808777A0; // type:object size:0x18 +lbl_808777B8 = .data:0x808777B8; // type:object size:0x1C data:string +lbl_808777D4 = .data:0x808777D4; // type:object size:0xC +lbl_808777E0 = .data:0x808777E0; // type:object size:0x8 +__vt__33ObjPtr<12RndTransAnim,9ObjectDir> = .data:0x808777E8; // type:object size:0x18 +lbl_80877800 = .data:0x80877800; // type:object size:0x20 data:string +lbl_80877820 = .data:0x80877820; // type:object size:0x10 +__RTTI__33ObjPtr<12RndTransAnim,9ObjectDir> = .data:0x80877830; // type:object size:0x8 +lbl_80877838 = .data:0x80877838; // type:object size:0xC +lbl_80877844 = .data:0x80877844; // type:object size:0xC +lbl_80877850 = .data:0x80877850; // type:object size:0x8 data:string +lbl_80877858 = .data:0x80877858; // type:object size:0x10 +lbl_80877868 = .data:0x80877868; // type:object size:0x4 +lbl_8087786C = .data:0x8087786C; // type:object size:0x4 +lbl_80877870 = .data:0x80877870; // type:object size:0x10 +lbl_80877880 = .data:0x80877880; // type:object size:0x18 +__RTTI__13RndMeshDeform = .data:0x80877898; // type:object size:0x8 +lbl_808778A0 = .data:0x808778A0; // type:object size:0xC +lbl_808778AC = .data:0x808778AC; // type:object size:0x54 +__vt__14BandScoreboard = .data:0x80877900; // type:object size:0x248 +lbl_80877B48 = .data:0x80877B48; // type:object size:0x8 +lbl_80877B50 = .data:0x80877B50; // type:object size:0x18 +lbl_80877B68 = .data:0x80877B68; // type:object size:0x24 +lbl_80877B8C = .data:0x80877B8C; // type:object size:0xC +lbl_80877B98 = .data:0x80877B98; // type:object size:0x8 +lbl_80877BA0 = .data:0x80877BA0; // type:object size:0x10 data:string +lbl_80877BB0 = .data:0x80877BB0; // type:object size:0x58 +__RTTI__15BandStarDisplay = .data:0x80877C08; // type:object size:0x8 +lbl_80877C10 = .data:0x80877C10; // type:object size:0x8 +lbl_80877C18 = .data:0x80877C18; // type:object size:0x8 data:string +lbl_80877C20 = .data:0x80877C20; // type:object size:0x58 +__vt__8BandSong = .data:0x80877C78; // type:object size:0x108 +lbl_80877D80 = .data:0x80877D80; // type:object size:0xC +lbl_80877D8C = .data:0x80877D8C; // type:object size:0x34 +__RTTI__8BandSong = .data:0x80877DC0; // type:object size:0x8 +lbl_80877DC8 = .data:0x80877DC8; // type:object size:0x8 +lbl_80877DD0 = .data:0x80877DD0; // type:object size:0x8 data:string +lbl_80877DD8 = .data:0x80877DD8; // type:object size:0x18 +lbl_80877DF0 = .data:0x80877DF0; // type:object size:0x1C +lbl_80877E0C = .data:0x80877E0C; // type:object size:0xC +lbl_80877E18 = .data:0x80877E18; // type:object size:0x8 +__vt__15BandStarDisplay = .data:0x80877E20; // type:object size:0x24C +lbl_8087806C = .data:0x8087806C; // type:object size:0xC +lbl_80878078 = .data:0x80878078; // type:object size:0x8 data:string +lbl_80878080 = .data:0x80878080; // type:object size:0x90 +__vt__10BandSwatch = .data:0x80878110; // type:object size:0x240 +lbl_80878350 = .data:0x80878350; // type:object size:0x18 +lbl_80878368 = .data:0x80878368; // type:object size:0x20 data:string +lbl_80878388 = .data:0x80878388; // type:object size:0x10 +lbl_80878398 = .data:0x80878398; // type:object size:0x8 +lbl_808783A0 = .data:0x808783A0; // type:object size:0x10 +lbl_808783B0 = .data:0x808783B0; // type:object size:0xC +lbl_808783BC = .data:0x808783BC; // type:object size:0xC +lbl_808783C8 = .data:0x808783C8; // type:object size:0x8 data:string +lbl_808783D0 = .data:0x808783D0; // type:object size:0x8 data:string +lbl_808783D8 = .data:0x808783D8; // type:object size:0x18 +lbl_808783F0 = .data:0x808783F0; // type:object size:0x38 data:4byte +lbl_80878428 = .data:0x80878428; // type:object size:0x24 +lbl_8087844C = .data:0x8087844C; // type:object size:0x4 data:float +__vt__16BandCharDescTest = .data:0x80878450; // type:object size:0xA8 +lbl_808784F8 = .data:0x808784F8; // type:object size:0x14 +lbl_8087850C = .data:0x8087850C; // type:object size:0x24 +__RTTI__16BandCharDescTest = .data:0x80878530; // type:object size:0x8 +lbl_80878538 = .data:0x80878538; // type:object size:0x14 +lbl_8087854C = .data:0x8087854C; // type:object size:0x34 +__RTTI__17CharLipSyncDriver = .data:0x80878580; // type:object size:0x8 +__vt__13BandCharacter = .data:0x80878588; // type:object size:0x310 +__vt__40ObjPtrList<15CharKeyHandMidi,9ObjectDir> = .data:0x80878898; // type:object size:0x18 +lbl_808788B0 = .data:0x808788B0; // type:object size:0x28 +lbl_808788D8 = .data:0x808788D8; // type:object size:0x10 +__RTTI__40ObjPtrList<15CharKeyHandMidi,9ObjectDir> = .data:0x808788E8; // type:object size:0x8 +__vt__39ObjPtrList<14CharDriverMidi,9ObjectDir> = .data:0x808788F0; // type:object size:0x18 +lbl_80878908 = .data:0x80878908; // type:object size:0x28 +lbl_80878930 = .data:0x80878930; // type:object size:0x10 +__RTTI__39ObjPtrList<14CharDriverMidi,9ObjectDir> = .data:0x80878940; // type:object size:0x8 +__vt__35ObjPtrList<10CharIKMidi,9ObjectDir> = .data:0x80878948; // type:object size:0x18 +lbl_80878960 = .data:0x80878960; // type:object size:0x24 +lbl_80878984 = .data:0x80878984; // type:object size:0xC +__RTTI__35ObjPtrList<10CharIKMidi,9ObjectDir> = .data:0x80878990; // type:object size:0x8 +__vt__39ObjPtrList<14CharBoneOffset,9ObjectDir> = .data:0x80878998; // type:object size:0x18 +lbl_808789B0 = .data:0x808789B0; // type:object size:0x28 +lbl_808789D8 = .data:0x808789D8; // type:object size:0x10 +__RTTI__39ObjPtrList<14CharBoneOffset,9ObjectDir> = .data:0x808789E8; // type:object size:0x8 +__vt__37ObjPtrList<12OutfitConfig,9ObjectDir> = .data:0x808789F0; // type:object size:0x18 +lbl_80878A08 = .data:0x80878A08; // type:object size:0x24 data:string +lbl_80878A2C = .data:0x80878A2C; // type:object size:0xC +__RTTI__37ObjPtrList<12OutfitConfig,9ObjectDir> = .data:0x80878A38; // type:object size:0x8 +__vt__38ObjPtrList<13RndMeshDeform,9ObjectDir> = .data:0x80878A40; // type:object size:0x18 +lbl_80878A58 = .data:0x80878A58; // type:object size:0x28 +lbl_80878A80 = .data:0x80878A80; // type:object size:0x10 +__RTTI__38ObjPtrList<13RndMeshDeform,9ObjectDir> = .data:0x80878A90; // type:object size:0x8 +__vt__32ObjPtrList<8CharCuff,9ObjectDir> = .data:0x80878A98; // type:object size:0x18 +lbl_80878AB0 = .data:0x80878AB0; // type:object size:0x20 data:string +lbl_80878AD0 = .data:0x80878AD0; // type:object size:0x10 +__RTTI__32ObjPtrList<8CharCuff,9ObjectDir> = .data:0x80878AE0; // type:object size:0x8 +__vt__32ObjPtrList<8CharHair,9ObjectDir> = .data:0x80878AE8; // type:object size:0x18 +lbl_80878B00 = .data:0x80878B00; // type:object size:0x20 data:string +lbl_80878B20 = .data:0x80878B20; // type:object size:0x10 +__RTTI__32ObjPtrList<8CharHair,9ObjectDir> = .data:0x80878B30; // type:object size:0x8 +lbl_80878B38 = .data:0x80878B38; // type:object size:0x18 +lbl_80878B50 = .data:0x80878B50; // type:object size:0x24 +lbl_80878B74 = .data:0x80878B74; // type:object size:0xC +lbl_80878B80 = .data:0x80878B80; // type:object size:0x8 +lbl_80878B88 = .data:0x80878B88; // type:object size:0x18 +lbl_80878BA0 = .data:0x80878BA0; // type:object size:0x24 +lbl_80878BC4 = .data:0x80878BC4; // type:object size:0xC +lbl_80878BD0 = .data:0x80878BD0; // type:object size:0x8 +lbl_80878BD8 = .data:0x80878BD8; // type:object size:0x18 +lbl_80878BF0 = .data:0x80878BF0; // type:object size:0x24 data:string +lbl_80878C14 = .data:0x80878C14; // type:object size:0xC +lbl_80878C20 = .data:0x80878C20; // type:object size:0x8 +lbl_80878C28 = .data:0x80878C28; // type:object size:0x18 +lbl_80878C40 = .data:0x80878C40; // type:object size:0x28 +lbl_80878C68 = .data:0x80878C68; // type:object size:0x10 +lbl_80878C78 = .data:0x80878C78; // type:object size:0x8 +lbl_80878C80 = .data:0x80878C80; // type:object size:0x18 +lbl_80878C98 = .data:0x80878C98; // type:object size:0x1C data:string +lbl_80878CB4 = .data:0x80878CB4; // type:object size:0xC +lbl_80878CC0 = .data:0x80878CC0; // type:object size:0x8 +lbl_80878CC8 = .data:0x80878CC8; // type:object size:0x18 +lbl_80878CE0 = .data:0x80878CE0; // type:object size:0x1C data:string +lbl_80878CFC = .data:0x80878CFC; // type:object size:0xC +lbl_80878D08 = .data:0x80878D08; // type:object size:0x8 +lbl_80878D10 = .data:0x80878D10; // type:object size:0x10 +lbl_80878D20 = .data:0x80878D20; // type:object size:0x40 +__RTTI__14CharDriverMidi = .data:0x80878D60; // type:object size:0x8 +lbl_80878D68 = .data:0x80878D68; // type:object size:0xC +lbl_80878D74 = .data:0x80878D74; // type:object size:0x2C +__RTTI__10CharIKMidi = .data:0x80878DA0; // type:object size:0x8 +lbl_80878DA8 = .data:0x80878DA8; // type:object size:0xC data:string +lbl_80878DB4 = .data:0x80878DB4; // type:object size:0x2C +__RTTI__11CharIKScale = .data:0x80878DE0; // type:object size:0x8 +lbl_80878DE8 = .data:0x80878DE8; // type:object size:0xC +lbl_80878DF4 = .data:0x80878DF4; // type:object size:0x34 +__RTTI__10CharIKHand = .data:0x80878E28; // type:object size:0x8 +lbl_80878E30 = .data:0x80878E30; // type:object size:0xC +lbl_80878E3C = .data:0x80878E3C; // type:object size:0x2C +__RTTI__8CharHair = .data:0x80878E68; // type:object size:0x8 +__vt__36ObjPtrList<11CharCollide,9ObjectDir> = .data:0x80878E70; // type:object size:0x18 +lbl_80878E88 = .data:0x80878E88; // type:object size:0x24 +lbl_80878EAC = .data:0x80878EAC; // type:object size:0xC +__RTTI__36ObjPtrList<11CharCollide,9ObjectDir> = .data:0x80878EB8; // type:object size:0x8 +lbl_80878EC0 = .data:0x80878EC0; // type:object size:0xC +lbl_80878ECC = .data:0x80878ECC; // type:object size:0x34 +__RTTI__8CharEyes = .data:0x80878F00; // type:object size:0x8 +lbl_80878F08 = .data:0x80878F08; // type:object size:0x18 +lbl_80878F20 = .data:0x80878F20; // type:object size:0x20 +lbl_80878F40 = .data:0x80878F40; // type:object size:0x10 +lbl_80878F50 = .data:0x80878F50; // type:object size:0x8 +lbl_80878F58 = .data:0x80878F58; // type:object size:0x18 +lbl_80878F70 = .data:0x80878F70; // type:object size:0x24 data:string +lbl_80878F94 = .data:0x80878F94; // type:object size:0xC +lbl_80878FA0 = .data:0x80878FA0; // type:object size:0x8 +lbl_80878FA8 = .data:0x80878FA8; // type:object size:0xC +lbl_80878FB4 = .data:0x80878FB4; // type:object size:0x24 +__RTTI__8CharCuff = .data:0x80878FD8; // type:object size:0x8 +__vt__31ObjPtrList<7RndMesh,9ObjectDir> = .data:0x80878FE0; // type:object size:0x18 +lbl_80878FF8 = .data:0x80878FF8; // type:object size:0x20 +lbl_80879018 = .data:0x80879018; // type:object size:0x10 +__RTTI__31ObjPtrList<7RndMesh,9ObjectDir> = .data:0x80879028; // type:object size:0x8 +lbl_80879030 = .data:0x80879030; // type:object size:0xC data:string +lbl_8087903C = .data:0x8087903C; // type:object size:0x24 +__RTTI__11CharCollide = .data:0x80879060; // type:object size:0x8 +lbl_80879068 = .data:0x80879068; // type:object size:0x10 +lbl_80879078 = .data:0x80879078; // type:object size:0x18 +__RTTI__13CharClipGroup = .data:0x80879090; // type:object size:0x8 +lbl_80879098 = .data:0x80879098; // type:object size:0x10 +lbl_808790A8 = .data:0x808790A8; // type:object size:0x30 +__RTTI__14CharBoneOffset = .data:0x808790D8; // type:object size:0x8 +lbl_808790E0 = .data:0x808790E0; // type:object size:0x10 +lbl_808790F0 = .data:0x808790F0; // type:object size:0x48 +__RTTI__13CharFaceServo = .data:0x80879138; // type:object size:0x8 +lbl_80879140 = .data:0x80879140; // type:object size:0x10 data:string +lbl_80879150 = .data:0x80879150; // type:object size:0x30 +__RTTI__15CharBonesMeshes = .data:0x80879180; // type:object size:0x8 +lbl_80879188 = .data:0x80879188; // type:object size:0xC +lbl_80879194 = .data:0x80879194; // type:object size:0x34 +__RTTI__10CharLookAt = .data:0x808791C8; // type:object size:0x8 +lbl_808791D0 = .data:0x808791D0; // type:object size:0x14 +lbl_808791E4 = .data:0x808791E4; // type:object size:0x2C +__RTTI__16CharWeightSetter = .data:0x80879210; // type:object size:0x8 +lbl_80879218 = .data:0x80879218; // type:object size:0x18 +lbl_80879230 = .data:0x80879230; // type:object size:0x20 +lbl_80879250 = .data:0x80879250; // type:object size:0x10 +lbl_80879260 = .data:0x80879260; // type:object size:0x8 +__vt__35ObjPtr<14CharWeightable,9ObjectDir> = .data:0x80879268; // type:object size:0x18 +lbl_80879280 = .data:0x80879280; // type:object size:0x24 +lbl_808792A4 = .data:0x808792A4; // type:object size:0xC +__RTTI__35ObjPtr<14CharWeightable,9ObjectDir> = .data:0x808792B0; // type:object size:0x8 +lbl_808792B8 = .data:0x808792B8; // type:object size:0xC +lbl_808792C4 = .data:0x808792C4; // type:object size:0x34 +__RTTI__10CharDriver = .data:0x808792F8; // type:object size:0x8 +lbl_80879300 = .data:0x80879300; // type:object size:0x10 +lbl_80879310 = .data:0x80879310; // type:object size:0x28 +__RTTI__14CharBonesAlloc = .data:0x80879338; // type:object size:0x8 +lbl_80879340 = .data:0x80879340; // type:object size:0x10 data:string +lbl_80879350 = .data:0x80879350; // type:object size:0x20 +__RTTI__15CharBonesObject = .data:0x80879370; // type:object size:0x8 +lbl_80879378 = .data:0x80879378; // type:object size:0x10 +lbl_80879388 = .data:0x80879388; // type:object size:0x8 +lbl_80879390 = .data:0x80879390; // type:object size:0x10 data:string +lbl_808793A0 = .data:0x808793A0; // type:object size:0x38 +__RTTI__15CharKeyHandMidi = .data:0x808793D8; // type:object size:0x8 +lbl_808793E0 = .data:0x808793E0; // type:object size:0x18 +lbl_808793F8 = .data:0x808793F8; // type:object size:0x20 +lbl_80879418 = .data:0x80879418; // type:object size:0x10 +lbl_80879428 = .data:0x80879428; // type:object size:0x8 +lbl_80879430 = .data:0x80879430; // type:object size:0x10 +lbl_80879440 = .data:0x80879440; // type:object size:0x10 +lbl_80879450 = .data:0x80879450; // type:object size:0x18 +__RTTI__12CharMeshHide = .data:0x80879468; // type:object size:0x8 +lbl_80879470 = .data:0x80879470; // type:object size:0x10 +lbl_80879480 = .data:0x80879480; // type:object size:0x8 +lbl_80879488 = .data:0x80879488; // type:object size:0x8 data:string +lbl_80879490 = .data:0x80879490; // type:object size:0xC +lbl_8087949C = .data:0x8087949C; // type:object size:0xC +lbl_808794A8 = .data:0x808794A8; // type:object size:0x8 data:string +lbl_808794B0 = .data:0x808794B0; // type:object size:0x13B +lbl_808795EB = .data:0x808795EB; // type:object size:0x4 data:string +lbl_808795EF = .data:0x808795EF; // type:object size:0x3 data:string +lbl_808795F2 = .data:0x808795F2; // type:object size:0x4 data:string +lbl_808795F6 = .data:0x808795F6; // type:object size:0x4 data:string +lbl_808795FA = .data:0x808795FA; // type:object size:0x3 data:string +lbl_808795FD = .data:0x808795FD; // type:object size:0x4 data:string +lbl_80879601 = .data:0x80879601; // type:object size:0x20 +lbl_80879621 = .data:0x80879621; // type:object size:0x11 data:string +lbl_80879632 = .data:0x80879632; // type:object size:0x10 data:string +lbl_80879642 = .data:0x80879642; // type:object size:0x10 data:string +lbl_80879652 = .data:0x80879652; // type:object size:0x10 data:string +lbl_80879662 = .data:0x80879662; // type:object size:0x10 data:string +lbl_80879672 = .data:0x80879672; // type:object size:0xF data:string +lbl_80879681 = .data:0x80879681; // type:object size:0x10 data:string +lbl_80879691 = .data:0x80879691; // type:object size:0x167 +lbl_808797F8 = .data:0x808797F8; // type:object size:0x1BB +lbl_808799B3 = .data:0x808799B3; // type:object size:0x5 data:string +lbl_808799B8 = .data:0x808799B8; // type:object size:0x8 data:string +lbl_808799C0 = .data:0x808799C0; // type:object size:0x9 data:string +lbl_808799C9 = .data:0x808799C9; // type:object size:0x9 data:string +lbl_808799D2 = .data:0x808799D2; // type:object size:0xA data:string +lbl_808799DC = .data:0x808799DC; // type:object size:0x9 data:string +lbl_808799E5 = .data:0x808799E5; // type:object size:0x6 data:string +lbl_808799EB = .data:0x808799EB; // type:object size:0x6 data:string +lbl_808799F1 = .data:0x808799F1; // type:object size:0x5 data:string +lbl_808799F6 = .data:0x808799F6; // type:object size:0x5 data:string +lbl_808799FB = .data:0x808799FB; // type:object size:0x6 data:string +lbl_80879A01 = .data:0x80879A01; // type:object size:0x42F +lbl_80879E30 = .data:0x80879E30; // type:object size:0x78 +lbl_80879EA8 = .data:0x80879EA8; // type:object size:0x98 data:4byte +__vt__12BandCharDesc = .data:0x80879F40; // type:object size:0xE0 +lbl_8087A020 = .data:0x8087A020; // type:object size:0x14 +lbl_8087A034 = .data:0x8087A034; // type:object size:0x14 data:string +lbl_8087A048 = .data:0x8087A048; // type:object size:0x10 +lbl_8087A058 = .data:0x8087A058; // type:object size:0x8 +lbl_8087A060 = .data:0x8087A060; // type:object size:0x14 +lbl_8087A074 = .data:0x8087A074; // type:object size:0x14 +lbl_8087A088 = .data:0x8087A088; // type:object size:0x10 +lbl_8087A098 = .data:0x8087A098; // type:object size:0x8 +lbl_8087A0A0 = .data:0x8087A0A0; // type:object size:0x14 +lbl_8087A0B4 = .data:0x8087A0B4; // type:object size:0x18 +lbl_8087A0CC = .data:0x8087A0CC; // type:object size:0xC +lbl_8087A0D8 = .data:0x8087A0D8; // type:object size:0x8 +lbl_8087A0E0 = .data:0x8087A0E0; // type:object size:0x14 +lbl_8087A0F4 = .data:0x8087A0F4; // type:object size:0x20 +lbl_8087A114 = .data:0x8087A114; // type:object size:0xC +lbl_8087A120 = .data:0x8087A120; // type:object size:0x8 +lbl_8087A128 = .data:0x8087A128; // type:object size:0x14 +lbl_8087A13C = .data:0x8087A13C; // type:object size:0x1C +lbl_8087A158 = .data:0x8087A158; // type:object size:0x10 +lbl_8087A168 = .data:0x8087A168; // type:object size:0x130 +lbl_8087A298 = .data:0x8087A298; // type:object size:0xB data:string +lbl_8087A2A3 = .data:0x8087A2A3; // type:object size:0x6 data:string +lbl_8087A2A9 = .data:0x8087A2A9; // type:object size:0x9 data:string +lbl_8087A2B2 = .data:0x8087A2B2; // type:object size:0x9 data:string +lbl_8087A2BB = .data:0x8087A2BB; // type:object size:0x6 data:string +lbl_8087A2C1 = .data:0x8087A2C1; // type:object size:0x5 data:string +lbl_8087A2C6 = .data:0x8087A2C6; // type:object size:0x155 +lbl_8087A41B = .data:0x8087A41B; // type:object size:0x6 data:string +lbl_8087A421 = .data:0x8087A421; // type:object size:0x9 data:string +lbl_8087A42A = .data:0x8087A42A; // type:object size:0x7 data:string +lbl_8087A431 = .data:0x8087A431; // type:object size:0xA data:string +lbl_8087A43B = .data:0x8087A43B; // type:object size:0x5 data:string +lbl_8087A440 = .data:0x8087A440; // type:object size:0x40 +lbl_8087A480 = .data:0x8087A480; // type:object size:0x4 +lbl_8087A484 = .data:0x8087A484; // type:object size:0xCC +lbl_8087A550 = .data:0x8087A550; // type:object size:0x34 +lbl_8087A584 = .data:0x8087A584; // type:object size:0x10 +lbl_8087A594 = .data:0x8087A594; // type:object size:0x2C +__RTTI__13CharPollGroup = .data:0x8087A5C0; // type:object size:0x8 +__vt__20BandRetargetVignette = .data:0x8087A5C8; // type:object size:0x94 +lbl_8087A65C = .data:0x8087A65C; // type:object size:0x18 +lbl_8087A674 = .data:0x8087A674; // type:object size:0x1C +__RTTI__20BandRetargetVignette = .data:0x8087A690; // type:object size:0x8 +lbl_8087A698 = .data:0x8087A698; // type:object size:0x8 +lbl_8087A6A0 = .data:0x8087A6A0; // type:object size:0x8 data:string +lbl_8087A6A8 = .data:0x8087A6A8; // type:object size:0x10 data:string +lbl_8087A6B8 = .data:0x8087A6B8; // type:object size:0x11 data:string +lbl_8087A6C9 = .data:0x8087A6C9; // type:object size:0x11 data:string +lbl_8087A6DA = .data:0x8087A6DA; // type:object size:0x13 data:string +lbl_8087A6ED = .data:0x8087A6ED; // type:object size:0x10 data:string +lbl_8087A6FD = .data:0x8087A6FD; // type:object size:0x13 data:string +lbl_8087A710 = .data:0x8087A710; // type:object size:0x10 data:string +lbl_8087A720 = .data:0x8087A720; // type:object size:0xF data:string +lbl_8087A72F = .data:0x8087A72F; // type:object size:0xF data:string +lbl_8087A73E = .data:0x8087A73E; // type:object size:0xF data:string +lbl_8087A74D = .data:0x8087A74D; // type:object size:0xF data:string +lbl_8087A75C = .data:0x8087A75C; // type:object size:0x44 +__vt__12BandSongPref = .data:0x8087A7A0; // type:object size:0x5C +lbl_8087A7FC = .data:0x8087A7FC; // type:object size:0xC +lbl_8087A808 = .data:0x8087A808; // type:object size:0x8 data:string +lbl_8087A810 = .data:0x8087A810; // type:object size:0x18 +lbl_8087A828 = .data:0x8087A828; // type:object size:0x10 data:4byte +lbl_8087A838 = .data:0x8087A838; // type:object size:0x10 +lbl_8087A848 = .data:0x8087A848; // type:object size:0x8 +lbl_8087A850 = .data:0x8087A850; // type:object size:0x68 +lbl_8087A8B8 = .data:0x8087A8B8; // type:object size:0x10 +lbl_8087A8C8 = .data:0x8087A8C8; // type:object size:0x18 +lbl_8087A8E0 = .data:0x8087A8E0; // type:object size:0x24 data:string +lbl_8087A904 = .data:0x8087A904; // type:object size:0xC +lbl_8087A910 = .data:0x8087A910; // type:object size:0x8 +lbl_8087A918 = .data:0x8087A918; // type:object size:0x10 +lbl_8087A928 = .data:0x8087A928; // type:object size:0x28 +__RTTI__12CharInterest = .data:0x8087A950; // type:object size:0x8 +__vt__12BandWardrobe = .data:0x8087A958; // type:object size:0x84 +lbl_8087A9DC = .data:0x8087A9DC; // type:object size:0x10 +lbl_8087A9EC = .data:0x8087A9EC; // type:object size:0x14 +__RTTI__12BandWardrobe = .data:0x8087AA00; // type:object size:0x8 +lbl_8087AA08 = .data:0x8087AA08; // type:object size:0x8 data:string +lbl_8087AA10 = .data:0x8087AA10; // type:object size:0x18 +lbl_8087AA28 = .data:0x8087AA28; // type:object size:0x8 +lbl_8087AA30 = .data:0x8087AA30; // type:object size:0x10 +lbl_8087AA40 = .data:0x8087AA40; // type:object size:0x28 +__RTTI__13RndTransProxy = .data:0x8087AA68; // type:object size:0x8 +lbl_8087AA70 = .data:0x8087AA70; // type:object size:0x18 +lbl_8087AA88 = .data:0x8087AA88; // type:object size:0x24 +lbl_8087AAAC = .data:0x8087AAAC; // type:object size:0xC +lbl_8087AAB8 = .data:0x8087AAB8; // type:object size:0x8 +lbl_8087AAC0 = .data:0x8087AAC0; // type:object size:0x10 +lbl_8087AAD0 = .data:0x8087AAD0; // type:object size:0x8 +lbl_8087AAD8 = .data:0x8087AAD8; // type:object size:0x8 data:string +lbl_8087AAE0 = .data:0x8087AAE0; // type:object size:0x3 data:string +lbl_8087AAE3 = .data:0x8087AAE3; // type:object size:0x3 data:string +lbl_8087AAE6 = .data:0x8087AAE6; // type:object size:0x3 data:string +lbl_8087AAE9 = .data:0x8087AAE9; // type:object size:0x3 data:string +lbl_8087AAEC = .data:0x8087AAEC; // type:object size:0x3 data:string +lbl_8087AAEF = .data:0x8087AAEF; // type:object size:0x3 data:string +lbl_8087AAF2 = .data:0x8087AAF2; // type:object size:0x3 data:string +lbl_8087AAF5 = .data:0x8087AAF5; // type:object size:0x3 data:string +lbl_8087AAF8 = .data:0x8087AAF8; // type:object size:0x9 data:string +lbl_8087AB01 = .data:0x8087AB01; // type:object size:0x7 data:string +lbl_8087AB08 = .data:0x8087AB08; // type:object size:0x6 data:string +lbl_8087AB0E = .data:0x8087AB0E; // type:object size:0xC data:string +lbl_8087AB1A = .data:0x8087AB1A; // type:object size:0xE data:string +lbl_8087AB28 = .data:0x8087AB28; // type:object size:0xF data:string +lbl_8087AB37 = .data:0x8087AB37; // type:object size:0x11 data:string +lbl_8087AB48 = .data:0x8087AB48; // type:object size:0x59 +lbl_8087ABA1 = .data:0x8087ABA1; // type:object size:0x7 data:string +lbl_8087ABA8 = .data:0x8087ABA8; // type:object size:0x9 data:string +lbl_8087ABB1 = .data:0x8087ABB1; // type:object size:0x7 data:string +lbl_8087ABB8 = .data:0x8087ABB8; // type:object size:0x6 data:string +lbl_8087ABBE = .data:0x8087ABBE; // type:object size:0x7 data:string +lbl_8087ABC5 = .data:0x8087ABC5; // type:object size:0x8 data:string +lbl_8087ABCD = .data:0x8087ABCD; // type:object size:0x8 data:string +lbl_8087ABD5 = .data:0x8087ABD5; // type:object size:0x72 +lbl_8087AC47 = .data:0x8087AC47; // type:object size:0x17C +lbl_8087ADC3 = .data:0x8087ADC3; // type:object size:0x8 data:string +lbl_8087ADCB = .data:0x8087ADCB; // type:object size:0x8 data:string +lbl_8087ADD3 = .data:0x8087ADD3; // type:object size:0x8 data:string +lbl_8087ADDB = .data:0x8087ADDB; // type:object size:0xBD +lbl_8087AE98 = .data:0x8087AE98; // type:object size:0x4 +jumptable_8087AE9C = .data:0x8087AE9C; // type:object size:0x60 scope:local +__vt__15CharKeyHandMidi = .data:0x8087AEFC; // type:object size:0xF4 +lbl_8087AFF0 = .data:0x8087AFF0; // type:object size:0x18 +lbl_8087B008 = .data:0x8087B008; // type:object size:0x24 +lbl_8087B02C = .data:0x8087B02C; // type:object size:0xC +lbl_8087B038 = .data:0x8087B038; // type:object size:0x8 +lbl_8087B040 = .data:0x8087B040; // type:object size:0x10 +lbl_8087B050 = .data:0x8087B050; // type:object size:0x38 +__RTTI__13CharIKFingers = .data:0x8087B088; // type:object size:0x8 +lbl_8087B090 = .data:0x8087B090; // type:object size:0x8 +lbl_8087B098 = .data:0x8087B098; // type:object size:0x8 data:string +lbl_8087B0A0 = .data:0x8087B0A0; // type:object size:0x84 +lbl_8087B124 = .data:0x8087B124; // type:object size:0xC +lbl_8087B130 = .data:0x8087B130; // type:object size:0x4 data:4byte +lbl_8087B134 = .data:0x8087B134; // type:object size:0x3C data:4byte +__vt__19ChordShapeGenerator = .data:0x8087B170; // type:object size:0x5C +lbl_8087B1CC = .data:0x8087B1CC; // type:object size:0x14 data:string +lbl_8087B1E0 = .data:0x8087B1E0; // type:object size:0x18 +__RTTI__19ChordShapeGenerator = .data:0x8087B1F8; // type:object size:0x1C0 +lbl_8087B3B8 = .data:0x8087B3B8; // type:object size:0x58 +lbl_8087B410 = .data:0x8087B410; // type:object size:0x60 +lbl_8087B470 = .data:0x8087B470; // type:object size:0x58 +lbl_8087B4C8 = .data:0x8087B4C8; // type:object size:0x8 +lbl_8087B4D0 = .data:0x8087B4D0; // type:object size:0x10 +lbl_8087B4E0 = .data:0x8087B4E0; // type:object size:0x38 +__vt__13DialogDisplay = .data:0x8087B518; // type:object size:0x94 +lbl_8087B5AC = .data:0x8087B5AC; // type:object size:0x10 +lbl_8087B5BC = .data:0x8087B5BC; // type:object size:0x1C +__RTTI__13DialogDisplay = .data:0x8087B5D8; // type:object size:0x8 +lbl_8087B5E0 = .data:0x8087B5E0; // type:object size:0x18 +lbl_8087B5F8 = .data:0x8087B5F8; // type:object size:0x1C +lbl_8087B614 = .data:0x8087B614; // type:object size:0xC +lbl_8087B620 = .data:0x8087B620; // type:object size:0x8 +lbl_8087B628 = .data:0x8087B628; // type:object size:0x10 +lbl_8087B638 = .data:0x8087B638; // type:object size:0x8 +lbl_8087B640 = .data:0x8087B640; // type:object size:0x8 data:string +lbl_8087B648 = .data:0x8087B648; // type:object size:0x10 +__vt__11EndingBonus = .data:0x8087B658; // type:object size:0x24C +lbl_8087B8A4 = .data:0x8087B8A4; // type:object size:0xC data:string +lbl_8087B8B0 = .data:0x8087B8B0; // type:object size:0x58 +__RTTI__11EndingBonus = .data:0x8087B908; // type:object size:0x8 +__vt__29ObjPtr<9BandLabel,9ObjectDir> = .data:0x8087B910; // type:object size:0x18 +lbl_8087B928 = .data:0x8087B928; // type:object size:0x20 +lbl_8087B948 = .data:0x8087B948; // type:object size:0x10 +__RTTI__29ObjPtr<9BandLabel,9ObjectDir> = .data:0x8087B958; // type:object size:0x8 +lbl_8087B960 = .data:0x8087B960; // type:object size:0x18 +lbl_8087B978 = .data:0x8087B978; // type:object size:0x20 +lbl_8087B998 = .data:0x8087B998; // type:object size:0x10 +lbl_8087B9A8 = .data:0x8087B9A8; // type:object size:0x8 +lbl_8087B9B0 = .data:0x8087B9B0; // type:object size:0xC +lbl_8087B9BC = .data:0x8087B9BC; // type:object size:0x54 +__RTTI__10UnisonIcon = .data:0x8087BA10; // type:object size:0x8 +lbl_8087BA18 = .data:0x8087BA18; // type:object size:0x8 +lbl_8087BA20 = .data:0x8087BA20; // type:object size:0x8 data:string +lbl_8087BA28 = .data:0x8087BA28; // type:object size:0x88 +lbl_8087BAB0 = .data:0x8087BAB0; // type:object size:0x1E0 +__vt__8LayerDir = .data:0x8087BC90; // type:object size:0x250 +lbl_8087BEE0 = .data:0x8087BEE0; // type:object size:0xC +lbl_8087BEEC = .data:0x8087BEEC; // type:object size:0x54 +__RTTI__8LayerDir = .data:0x8087BF40; // type:object size:0x8 +lbl_8087BF48 = .data:0x8087BF48; // type:object size:0x8 +lbl_8087BF50 = .data:0x8087BF50; // type:object size:0x28 +__RTTI__6RndCam = .data:0x8087BF78; // type:object size:0x8 +lbl_8087BF80 = .data:0x8087BF80; // type:object size:0xC +lbl_8087BF8C = .data:0x8087BF8C; // type:object size:0xC +lbl_8087BF98 = .data:0x8087BF98; // type:object size:0x8 data:string +lbl_8087BFA0 = .data:0x8087BFA0; // type:object size:0x4 data:string +lbl_8087BFA4 = .data:0x8087BFA4; // type:object size:0x5C +lbl_8087C000 = .data:0x8087C000; // type:object size:0x4 data:float +__vt__8NoteTube = .data:0x8087C004; // type:object size:0x5C +lbl_8087C060 = .data:0x8087C060; // type:object size:0xC +lbl_8087C06C = .data:0x8087C06C; // type:object size:0x14 +__RTTI__8NoteTube = .data:0x8087C080; // type:object size:0x8 +lbl_8087C088 = .data:0x8087C088; // type:object size:0x10 +lbl_8087C098 = .data:0x8087C098; // type:object size:0x28 data:4byte +__vt__12OutfitConfig = .data:0x8087C0C0; // type:object size:0xD8 +lbl_8087C198 = .data:0x8087C198; // type:object size:0x18 +lbl_8087C1B0 = .data:0x8087C1B0; // type:object size:0x24 +lbl_8087C1D4 = .data:0x8087C1D4; // type:object size:0xC +lbl_8087C1E0 = .data:0x8087C1E0; // type:object size:0x8 +lbl_8087C1E8 = .data:0x8087C1E8; // type:object size:0x10 +lbl_8087C1F8 = .data:0x8087C1F8; // type:object size:0x28 +__RTTI__13RndTexBlender = .data:0x8087C220; // type:object size:0x8 +lbl_8087C228 = .data:0x8087C228; // type:object size:0x18 +lbl_8087C240 = .data:0x8087C240; // type:object size:0x18 +__RTTI__21RndTexBlendController = .data:0x8087C258; // type:object size:0x8 +lbl_8087C260 = .data:0x8087C260; // type:object size:0x10 +lbl_8087C270 = .data:0x8087C270; // type:object size:0x8 +lbl_8087C278 = .data:0x8087C278; // type:object size:0x8 data:string +lbl_8087C280 = .data:0x8087C280; // type:object size:0x5 data:string +lbl_8087C285 = .data:0x8087C285; // type:object size:0x6 data:string +lbl_8087C28B = .data:0x8087C28B; // type:object size:0x4E +lbl_8087C2D9 = .data:0x8087C2D9; // type:object size:0x10 data:string +lbl_8087C2E9 = .data:0x8087C2E9; // type:object size:0xE data:string +lbl_8087C2F7 = .data:0x8087C2F7; // type:object size:0xE data:string +lbl_8087C305 = .data:0x8087C305; // type:object size:0x14 data:string +lbl_8087C319 = .data:0x8087C319; // type:object size:0xD7 +lbl_8087C3F0 = .data:0x8087C3F0; // type:object size:0x4 data:float +lbl_8087C3F4 = .data:0x8087C3F4; // type:object size:0xC data:4byte +__vt__8PatchDir = .data:0x8087C400; // type:object size:0x27C +__vt__10PatchLayer = .data:0x8087C67C; // type:object size:0x5C +lbl_8087C6D8 = .data:0x8087C6D8; // type:object size:0xC +lbl_8087C6E4 = .data:0x8087C6E4; // type:object size:0x14 +__RTTI__10PatchLayer = .data:0x8087C6F8; // type:object size:0x8 +lbl_8087C700 = .data:0x8087C700; // type:object size:0x8 +lbl_8087C708 = .data:0x8087C708; // type:object size:0x8 +lbl_8087C710 = .data:0x8087C710; // type:object size:0x8 data:string +lbl_8087C718 = .data:0x8087C718; // type:object size:0xA8 +__vt__13PatchRenderer = .data:0x8087C7C0; // type:object size:0x164 +lbl_8087C924 = .data:0x8087C924; // type:object size:0x10 +lbl_8087C934 = .data:0x8087C934; // type:object size:0x3C +__RTTI__13PatchRenderer = .data:0x8087C970; // type:object size:0x8 +lbl_8087C978 = .data:0x8087C978; // type:object size:0x10 +lbl_8087C988 = .data:0x8087C988; // type:object size:0x8 +lbl_8087C990 = .data:0x8087C990; // type:object size:0x8 data:string +lbl_8087C998 = .data:0x8087C998; // type:object size:0x28 +__vt__10PitchArrow = .data:0x8087C9C0; // type:object size:0x24C +lbl_8087CC0C = .data:0x8087CC0C; // type:object size:0xC +lbl_8087CC18 = .data:0x8087CC18; // type:object size:0x58 +__RTTI__10PitchArrow = .data:0x8087CC70; // type:object size:0x8 +lbl_8087CC78 = .data:0x8087CC78; // type:object size:0x10 +lbl_8087CC88 = .data:0x8087CC88; // type:object size:0x40 +__RTTI__14RndParticleSys = .data:0x8087CCC8; // type:object size:0x8 +lbl_8087CCD0 = .data:0x8087CCD0; // type:object size:0x8 +lbl_8087CCD8 = .data:0x8087CCD8; // type:object size:0x8 data:string +lbl_8087CCE0 = .data:0x8087CCE0; // type:object size:0x118 +__vt__14PlayerDiffIcon = .data:0x8087CDF8; // type:object size:0x184 +lbl_8087CF7C = .data:0x8087CF7C; // type:object size:0x10 +lbl_8087CF8C = .data:0x8087CF8C; // type:object size:0x44 +__RTTI__14PlayerDiffIcon = .data:0x8087CFD0; // type:object size:0x8 +__vt__20UIListCustomTemplate = .data:0x8087CFD8; // type:object size:0x14 +lbl_8087CFEC = .data:0x8087CFEC; // type:object size:0x10 +lbl_8087CFFC = .data:0x8087CFFC; // type:object size:0xC +lbl_8087D008 = .data:0x8087D008; // type:object size:0x8 data:string +lbl_8087D010 = .data:0x8087D010; // type:object size:0x10 +__vt__27InstrumentDifficultyDisplay = .data:0x8087D020; // type:object size:0x168 +lbl_8087D188 = .data:0x8087D188; // type:object size:0x1C data:string +lbl_8087D1A4 = .data:0x8087D1A4; // type:object size:0x3C +__RTTI__27InstrumentDifficultyDisplay = .data:0x8087D1E0; // type:object size:0x8 +__vt__27ObjPtr<7UIColor,9ObjectDir> = .data:0x8087D1E8; // type:object size:0x18 +lbl_8087D200 = .data:0x8087D200; // type:object size:0x1C +lbl_8087D21C = .data:0x8087D21C; // type:object size:0xC +__RTTI__27ObjPtr<7UIColor,9ObjectDir> = .data:0x8087D228; // type:object size:0x8 +lbl_8087D230 = .data:0x8087D230; // type:object size:0x1C data:string +lbl_8087D24C = .data:0x8087D24C; // type:object size:0xC +lbl_8087D258 = .data:0x8087D258; // type:object size:0x8 data:string +lbl_8087D260 = .data:0x8087D260; // type:object size:0x30 +__vt__16ScrollbarDisplay = .data:0x8087D290; // type:object size:0x168 +lbl_8087D3F8 = .data:0x8087D3F8; // type:object size:0x14 +lbl_8087D40C = .data:0x8087D40C; // type:object size:0x3C +__RTTI__16ScrollbarDisplay = .data:0x8087D448; // type:object size:0x8 +lbl_8087D450 = .data:0x8087D450; // type:object size:0x18 +lbl_8087D468 = .data:0x8087D468; // type:object size:0x1C data:string +lbl_8087D484 = .data:0x8087D484; // type:object size:0xC +lbl_8087D490 = .data:0x8087D490; // type:object size:0x8 +lbl_8087D498 = .data:0x8087D498; // type:object size:0x14 +lbl_8087D4AC = .data:0x8087D4AC; // type:object size:0xC +lbl_8087D4B8 = .data:0x8087D4B8; // type:object size:0x8 data:string +lbl_8087D4C0 = .data:0x8087D4C0; // type:object size:0x18 +__vt__15CheckboxDisplay = .data:0x8087D4D8; // type:object size:0x168 +lbl_8087D640 = .data:0x8087D640; // type:object size:0x10 data:string +lbl_8087D650 = .data:0x8087D650; // type:object size:0x8 +lbl_8087D658 = .data:0x8087D658; // type:object size:0x8 data:string +lbl_8087D660 = .data:0x8087D660; // type:object size:0x10 data:string +__vt__12ScoreDisplay = .data:0x8087D670; // type:object size:0x188 +lbl_8087D7F8 = .data:0x8087D7F8; // type:object size:0x10 +lbl_8087D808 = .data:0x8087D808; // type:object size:0x8 +lbl_8087D810 = .data:0x8087D810; // type:object size:0x8 data:string +lbl_8087D818 = .data:0x8087D818; // type:object size:0x10 +__vt__13ReviewDisplay = .data:0x8087D828; // type:object size:0x16C +lbl_8087D994 = .data:0x8087D994; // type:object size:0x10 +lbl_8087D9A4 = .data:0x8087D9A4; // type:object size:0xC +lbl_8087D9B0 = .data:0x8087D9B0; // type:object size:0x8 data:string +lbl_8087D9B8 = .data:0x8087D9B8; // type:object size:0x10 +__vt__11StarDisplay = .data:0x8087D9C8; // type:object size:0x168 +lbl_8087DB30 = .data:0x8087DB30; // type:object size:0xC data:string +lbl_8087DB3C = .data:0x8087DB3C; // type:object size:0xC +lbl_8087DB48 = .data:0x8087DB48; // type:object size:0x8 data:string +lbl_8087DB50 = .data:0x8087DB50; // type:object size:0x18 +lbl_8087DB68 = .data:0x8087DB68; // type:object size:0x4 +lbl_8087DB6C = .data:0x8087DB6C; // type:object size:0x4 +__vt__12MeterDisplay = .data:0x8087DB70; // type:object size:0x168 +lbl_8087DCD8 = .data:0x8087DCD8; // type:object size:0x10 +lbl_8087DCE8 = .data:0x8087DCE8; // type:object size:0x8 +lbl_8087DCF0 = .data:0x8087DCF0; // type:object size:0x8 data:string +lbl_8087DCF8 = .data:0x8087DCF8; // type:object size:0x10 +__vt__13MicInputArrow = .data:0x8087DD08; // type:object size:0x168 +lbl_8087DE70 = .data:0x8087DE70; // type:object size:0x10 +lbl_8087DE80 = .data:0x8087DE80; // type:object size:0x40 +__RTTI__13MicInputArrow = .data:0x8087DEC0; // type:object size:0x8 +lbl_8087DEC8 = .data:0x8087DEC8; // type:object size:0x10 +lbl_8087DED8 = .data:0x8087DED8; // type:object size:0x8 +lbl_8087DEE0 = .data:0x8087DEE0; // type:object size:0x8 data:string +lbl_8087DEE8 = .data:0x8087DEE8; // type:object size:0x10 +__vt__22MiniLeaderboardDisplay = .data:0x8087DEF8; // type:object size:0x168 +lbl_8087E060 = .data:0x8087E060; // type:object size:0x18 +lbl_8087E078 = .data:0x8087E078; // type:object size:0x8 +lbl_8087E080 = .data:0x8087E080; // type:object size:0x8 data:string +lbl_8087E088 = .data:0x8087E088; // type:object size:0x18 +lbl_8087E0A0 = .data:0x8087E0A0; // type:object size:0x18 +lbl_8087E0B8 = .data:0x8087E0B8; // type:object size:0x1C +lbl_8087E0D4 = .data:0x8087E0D4; // type:object size:0xC +lbl_8087E0E0 = .data:0x8087E0E0; // type:object size:0x8 +lbl_8087E0E8 = .data:0x8087E0E8; // type:object size:0x18 +lbl_8087E100 = .data:0x8087E100; // type:object size:0x24 +lbl_8087E124 = .data:0x8087E124; // type:object size:0xC +lbl_8087E130 = .data:0x8087E130; // type:object size:0x8 +__vt__11StreakMeter = .data:0x8087E138; // type:object size:0x24C +lbl_8087E384 = .data:0x8087E384; // type:object size:0xC data:string +lbl_8087E390 = .data:0x8087E390; // type:object size:0x58 +__RTTI__11StreakMeter = .data:0x8087E3E8; // type:object size:0x8 +lbl_8087E3F0 = .data:0x8087E3F0; // type:object size:0x10 data:string +lbl_8087E400 = .data:0x8087E400; // type:object size:0x20 +__RTTI__15RndPartLauncher = .data:0x8087E420; // type:object size:0x8 +lbl_8087E428 = .data:0x8087E428; // type:object size:0x8 +lbl_8087E430 = .data:0x8087E430; // type:object size:0x8 data:string +lbl_8087E438 = .data:0x8087E438; // type:object size:0x1D0 +__vt__14OverdriveMeter = .data:0x8087E608; // type:object size:0x24C +lbl_8087E854 = .data:0x8087E854; // type:object size:0x10 +lbl_8087E864 = .data:0x8087E864; // type:object size:0x54 +__RTTI__14OverdriveMeter = .data:0x8087E8B8; // type:object size:0x8 +lbl_8087E8C0 = .data:0x8087E8C0; // type:object size:0x8 +lbl_8087E8C8 = .data:0x8087E8C8; // type:object size:0x8 data:string +lbl_8087E8D0 = .data:0x8087E8D0; // type:object size:0xB8 +lbl_8087E988 = .data:0x8087E988; // type:object size:0x4 +lbl_8087E98C = .data:0x8087E98C; // type:object size:0x4 +lbl_8087E990 = .data:0x8087E990; // type:object size:0x4 +lbl_8087E994 = .data:0x8087E994; // type:object size:0x4 +lbl_8087E998 = .data:0x8087E998; // type:object size:0x8 +lbl_8087E9A0 = .data:0x8087E9A0; // type:object size:0x8 data:string +lbl_8087E9A8 = .data:0x8087E9A8; // type:object size:0x38 +__RTTI__7WiiMesh = .data:0x8087E9E0; // type:object size:0x8 +__vt__11GemTrackDir = .data:0x8087E9E8; // type:object size:0x3D0 +lbl_8087EDB8 = .data:0x8087EDB8; // type:object size:0x18 +lbl_8087EDD0 = .data:0x8087EDD0; // type:object size:0x28 +lbl_8087EDF8 = .data:0x8087EDF8; // type:object size:0x10 +lbl_8087EE08 = .data:0x8087EE08; // type:object size:0x8 +lbl_8087EE10 = .data:0x8087EE10; // type:object size:0x18 +lbl_8087EE28 = .data:0x8087EE28; // type:object size:0x24 +lbl_8087EE4C = .data:0x8087EE4C; // type:object size:0xC +lbl_8087EE58 = .data:0x8087EE58; // type:object size:0x8 +lbl_8087EE60 = .data:0x8087EE60; // type:object size:0x18 +lbl_8087EE78 = .data:0x8087EE78; // type:object size:0x1C +lbl_8087EE94 = .data:0x8087EE94; // type:object size:0xC +lbl_8087EEA0 = .data:0x8087EEA0; // type:object size:0x8 +lbl_8087EEA8 = .data:0x8087EEA8; // type:object size:0x18 +lbl_8087EEC0 = .data:0x8087EEC0; // type:object size:0x24 +lbl_8087EEE4 = .data:0x8087EEE4; // type:object size:0xC +lbl_8087EEF0 = .data:0x8087EEF0; // type:object size:0x8 +lbl_8087EEF8 = .data:0x8087EEF8; // type:object size:0x18 +lbl_8087EF10 = .data:0x8087EF10; // type:object size:0x20 +lbl_8087EF30 = .data:0x8087EF30; // type:object size:0x10 +lbl_8087EF40 = .data:0x8087EF40; // type:object size:0x8 +lbl_8087EF48 = .data:0x8087EF48; // type:object size:0x18 +lbl_8087EF60 = .data:0x8087EF60; // type:object size:0x24 +lbl_8087EF84 = .data:0x8087EF84; // type:object size:0xC +lbl_8087EF90 = .data:0x8087EF90; // type:object size:0x8 +lbl_8087EF98 = .data:0x8087EF98; // type:object size:0x8 +lbl_8087EFA0 = .data:0x8087EFA0; // type:object size:0x8 data:string +lbl_8087EFA8 = .data:0x8087EFA8; // type:object size:0x580 +__vt__23GemTrackResourceManager = .data:0x8087F528; // type:object size:0x60 +lbl_8087F588 = .data:0x8087F588; // type:object size:0x18 data:string +lbl_8087F5A0 = .data:0x8087F5A0; // type:object size:0x18 +__RTTI__23GemTrackResourceManager = .data:0x8087F5B8; // type:object size:0x8 +lbl_8087F5C0 = .data:0x8087F5C0; // type:object size:0xB0 +lbl_8087F670 = .data:0x8087F670; // type:object size:0xA0 +jumptable_8087F710 = .data:0x8087F710; // type:object size:0x54 scope:local +jumptable_8087F764 = .data:0x8087F764; // type:object size:0x54 scope:local +__vt__13VocalTrackDir = .data:0x8087F8F8; // type:object size:0x400 +lbl_8087FCF8 = .data:0x8087FCF8; // type:object size:0x18 +lbl_8087FD10 = .data:0x8087FD10; // type:object size:0x20 +lbl_8087FD30 = .data:0x8087FD30; // type:object size:0x10 +lbl_8087FD40 = .data:0x8087FD40; // type:object size:0x8 +lbl_8087FD48 = .data:0x8087FD48; // type:object size:0x18 +lbl_8087FD60 = .data:0x8087FD60; // type:object size:0x28 data:string +lbl_8087FD88 = .data:0x8087FD88; // type:object size:0x10 +lbl_8087FD98 = .data:0x8087FD98; // type:object size:0xD08 +lbl_80880AA0 = .data:0x80880AA0; // type:object size:0x158 +lbl_80880BF8 = .data:0x80880BF8; // type:object size:0x8 +lbl_80880C00 = .data:0x80880C00; // type:object size:0x20 +lbl_80880C20 = .data:0x80880C20; // type:object size:0x570 +jumptable_80881190 = .data:0x80881190; // type:object size:0x28 scope:local +__vt__9BandTrack = .data:0x808811B8; // type:object size:0x110 +lbl_808812C8 = .data:0x808812C8; // type:object size:0xC +lbl_808812D4 = .data:0x808812D4; // type:object size:0xC +lbl_808812E0 = .data:0x808812E0; // type:object size:0x8 data:string +lbl_808812E8 = .data:0x808812E8; // type:object size:0x2A8 +lbl_80881590 = .data:0x80881590; // type:object size:0x18 +lbl_808815A8 = .data:0x808815A8; // type:object size:0x20 +lbl_808815C8 = .data:0x808815C8; // type:object size:0x10 +lbl_808815D8 = .data:0x808815D8; // type:object size:0x8 +__vt__17TrackPanelDirBase = .data:0x808815E0; // type:object size:0x2F8 +lbl_808818D8 = .data:0x808818D8; // type:object size:0xC +lbl_808818E4 = .data:0x808818E4; // type:object size:0xC +lbl_808818F0 = .data:0x808818F0; // type:object size:0x8 data:string +lbl_808818F8 = .data:0x808818F8; // type:object size:0x98 +lbl_80881990 = .data:0x80881990; // type:object size:0x4 +lbl_80881994 = .data:0x80881994; // type:object size:0x4 +lbl_80881998 = .data:0x80881998; // type:object size:0x8 +__vt__13TrackPanelDir = .data:0x808819A0; // type:object size:0x2F8 +lbl_80881C98 = .data:0x80881C98; // type:object size:0x10 +lbl_80881CA8 = .data:0x80881CA8; // type:object size:0x68 +__RTTI__13TrackPanelDir = .data:0x80881D10; // type:object size:0x8 +lbl_80881D18 = .data:0x80881D18; // type:object size:0x18 +lbl_80881D30 = .data:0x80881D30; // type:object size:0x2C +lbl_80881D5C = .data:0x80881D5C; // type:object size:0xC +lbl_80881D68 = .data:0x80881D68; // type:object size:0x8 +lbl_80881D70 = .data:0x80881D70; // type:object size:0x18 +lbl_80881D88 = .data:0x80881D88; // type:object size:0x20 +lbl_80881DA8 = .data:0x80881DA8; // type:object size:0x10 +lbl_80881DB8 = .data:0x80881DB8; // type:object size:0x8 +lbl_80881DC0 = .data:0x80881DC0; // type:object size:0x18 +lbl_80881DD8 = .data:0x80881DD8; // type:object size:0x24 +lbl_80881DFC = .data:0x80881DFC; // type:object size:0xC +lbl_80881E08 = .data:0x80881E08; // type:object size:0x8 +lbl_80881E10 = .data:0x80881E10; // type:object size:0x8 +lbl_80881E18 = .data:0x80881E18; // type:object size:0x8 data:string +lbl_80881E20 = .data:0x80881E20; // type:object size:0x318 +__vt__14CrowdMeterIcon = .data:0x80882138; // type:object size:0x24C +lbl_80882384 = .data:0x80882384; // type:object size:0xC +lbl_80882390 = .data:0x80882390; // type:object size:0x8 data:string +lbl_80882398 = .data:0x80882398; // type:object size:0xF8 +lbl_80882490 = .data:0x80882490; // type:object size:0x14 +lbl_808824A4 = .data:0x808824A4; // type:object size:0x14 +__vt__10CrowdAudio = .data:0x808824B8; // type:object size:0x98 +lbl_80882550 = .data:0x80882550; // type:object size:0xC +lbl_8088255C = .data:0x8088255C; // type:object size:0x1C +__RTTI__10CrowdAudio = .data:0x80882578; // type:object size:0x8 +__vt__28ObjPtr<8BinkClip,9ObjectDir> = .data:0x80882580; // type:object size:0x18 +lbl_80882598 = .data:0x80882598; // type:object size:0x1C data:string +lbl_808825B4 = .data:0x808825B4; // type:object size:0xC +__RTTI__28ObjPtr<8BinkClip,9ObjectDir> = .data:0x808825C0; // type:object size:0x8 +lbl_808825C8 = .data:0x808825C8; // type:object size:0xC +lbl_808825D4 = .data:0x808825D4; // type:object size:0xC +lbl_808825E0 = .data:0x808825E0; // type:object size:0x8 data:string +lbl_808825E8 = .data:0x808825E8; // type:object size:0x3B +lbl_80882623 = .data:0x80882623; // type:object size:0x10 data:string +lbl_80882633 = .data:0x80882633; // type:object size:0x10 data:string +lbl_80882643 = .data:0x80882643; // type:object size:0x10 data:string +lbl_80882653 = .data:0x80882653; // type:object size:0x10 data:string +lbl_80882663 = .data:0x80882663; // type:object size:0x12 data:string +lbl_80882675 = .data:0x80882675; // type:object size:0x10 data:string +lbl_80882685 = .data:0x80882685; // type:object size:0x10 data:string +lbl_80882695 = .data:0x80882695; // type:object size:0x103 +__vt__10InlineHelp = .data:0x80882798; // type:object size:0x174 +lbl_8088290C = .data:0x8088290C; // type:object size:0xC +lbl_80882918 = .data:0x80882918; // type:object size:0x8 +lbl_80882920 = .data:0x80882920; // type:object size:0x8 data:string +lbl_80882928 = .data:0x80882928; // type:object size:0x10 +lbl_80882938 = .data:0x80882938; // type:object size:0x4 +lbl_8088293C = .data:0x8088293C; // type:object size:0x4 +__vt__10UnisonIcon = .data:0x80882940; // type:object size:0x24C +lbl_80882B8C = .data:0x80882B8C; // type:object size:0xC +lbl_80882B98 = .data:0x80882B98; // type:object size:0x8 data:string +lbl_80882BA0 = .data:0x80882BA0; // type:object size:0x50 +__vt__21SongSectionController = .data:0x80882BF0; // type:object size:0x94 +lbl_80882C84 = .data:0x80882C84; // type:object size:0x18 +lbl_80882C9C = .data:0x80882C9C; // type:object size:0x1C +__RTTI__21SongSectionController = .data:0x80882CB8; // type:object size:0x8 +lbl_80882CC0 = .data:0x80882CC0; // type:object size:0x18 +lbl_80882CD8 = .data:0x80882CD8; // type:object size:0x2C +lbl_80882D04 = .data:0x80882D04; // type:object size:0xC +lbl_80882D10 = .data:0x80882D10; // type:object size:0x8 +lbl_80882D18 = .data:0x80882D18; // type:object size:0x18 +lbl_80882D30 = .data:0x80882D30; // type:object size:0x24 data:string +lbl_80882D54 = .data:0x80882D54; // type:object size:0xC +lbl_80882D60 = .data:0x80882D60; // type:object size:0x8 +lbl_80882D68 = .data:0x80882D68; // type:object size:0x8 +lbl_80882D70 = .data:0x80882D70; // type:object size:0x8 data:string +lbl_80882D78 = .data:0x80882D78; // type:object size:0x160 +__vt__12OvershellDir = .data:0x80882ED8; // type:object size:0x264 +lbl_8088313C = .data:0x8088313C; // type:object size:0xC +lbl_80883148 = .data:0x80883148; // type:object size:0x8 data:string +lbl_80883150 = .data:0x80883150; // type:object size:0x28 +__vt__26BaseGuitarTrackWatcherImpl = .data:0x80883178; // type:object size:0xE4 +lbl_8088325C = .data:0x8088325C; // type:object size:0x1C +lbl_80883278 = .data:0x80883278; // type:object size:0x10 +__RTTI__26BaseGuitarTrackWatcherImpl = .data:0x80883288; // type:object size:0x8 +lbl_80883290 = .data:0x80883290; // type:object size:0x18 +__RTTI__16TrackWatcherImpl = .data:0x808832A8; // type:object size:0x8 +lbl_808832B0 = .data:0x808832B0; // type:object size:0x28 +lbl_808832D8 = .data:0x808832D8; // type:object size:0x4 +lbl_808832DC = .data:0x808832DC; // type:object size:0x1C +lbl_808832F8 = .data:0x808832F8; // type:object size:0x14 +lbl_8088330C = .data:0x8088330C; // type:object size:0xC +lbl_80883318 = .data:0x80883318; // type:object size:0x8 +__vt__10BeatMaster = .data:0x80883320; // type:object size:0x50 +lbl_80883370 = .data:0x80883370; // type:object size:0xC +lbl_8088337C = .data:0x8088337C; // type:object size:0x14 +__RTTI__10BeatMaster = .data:0x80883390; // type:object size:0x8 +__vt__8HxMaster = .data:0x80883398; // type:object size:0x20 +lbl_808833B8 = .data:0x808833B8; // type:object size:0x10 +__RTTI__8HxMaster = .data:0x808833C8; // type:object size:0x8 +lbl_808833D0 = .data:0x808833D0; // type:object size:0x14 +lbl_808833E4 = .data:0x808833E4; // type:object size:0x6C +__vt__19BeatMatchController = .data:0x80883450; // type:object size:0xA8 +lbl_808834F8 = .data:0x808834F8; // type:object size:0x14 data:string +lbl_8088350C = .data:0x8088350C; // type:object size:0x14 +__RTTI__19BeatMatchController = .data:0x80883520; // type:object size:0x8 +lbl_80883528 = .data:0x80883528; // type:object size:0x90 +lbl_808835B8 = .data:0x808835B8; // type:object size:0x80 +jumptable_80883638 = .data:0x80883638; // type:object size:0x28 scope:local +lbl_80883660 = .data:0x80883660; // type:object size:0x40 +lbl_808836A0 = .data:0x808836A0; // type:object size:0x8 +__vt__11BeatMatcher = .data:0x808836A8; // type:object size:0xD0 +lbl_80883778 = .data:0x80883778; // type:object size:0xC data:string +lbl_80883784 = .data:0x80883784; // type:object size:0x14 +__RTTI__11BeatMatcher = .data:0x80883798; // type:object size:0x8 +__vt__18TrackWatcherParent = .data:0x808837A0; // type:object size:0x50 +lbl_808837F0 = .data:0x808837F0; // type:object size:0x18 +__RTTI__18TrackWatcherParent = .data:0x80883808; // type:object size:0x8 +lbl_80883810 = .data:0x80883810; // type:object size:0xE0 +__vt__22ButtonGuitarController = .data:0x808838F0; // type:object size:0xA8 +lbl_80883998 = .data:0x80883998; // type:object size:0x18 +lbl_808839B0 = .data:0x808839B0; // type:object size:0x20 +__RTTI__22ButtonGuitarController = .data:0x808839D0; // type:object size:0x8 +lbl_808839D8 = .data:0x808839D8; // type:object size:0xB4 +lbl_80883A8C = .data:0x80883A8C; // type:object size:0x1C +lbl_80883AA8 = .data:0x80883AA8; // type:object size:0x18 +lbl_80883AC0 = .data:0x80883AC0; // type:object size:0x8 +lbl_80883AC8 = .data:0x80883AC8; // type:object size:0x18 +lbl_80883AE0 = .data:0x80883AE0; // type:object size:0x10 +lbl_80883AF0 = .data:0x80883AF0; // type:object size:0x8 +lbl_80883AF8 = .data:0x80883AF8; // type:object size:0x10 +lbl_80883B08 = .data:0x80883B08; // type:object size:0x8 data:string +lbl_80883B10 = .data:0x80883B10; // type:object size:0x18 +lbl_80883B28 = .data:0x80883B28; // type:object size:0x8 +lbl_80883B30 = .data:0x80883B30; // type:object size:0xC +lbl_80883B3C = .data:0x80883B3C; // type:object size:0x10 +lbl_80883B4C = .data:0x80883B4C; // type:object size:0xC +lbl_80883B58 = .data:0x80883B58; // type:object size:0x8 +lbl_80883B60 = .data:0x80883B60; // type:object size:0xC +lbl_80883B6C = .data:0x80883B6C; // type:object size:0xC +lbl_80883B78 = .data:0x80883B78; // type:object size:0x8 +lbl_80883B80 = .data:0x80883B80; // type:object size:0x8 +lbl_80883B88 = .data:0x80883B88; // type:object size:0x24 +lbl_80883BAC = .data:0x80883BAC; // type:object size:0x2A +lbl_80883BD6 = .data:0x80883BD6; // type:object size:0x9 data:string +lbl_80883BDF = .data:0x80883BDF; // type:object size:0xA data:string +lbl_80883BE9 = .data:0x80883BE9; // type:object size:0x9 data:string +lbl_80883BF2 = .data:0x80883BF2; // type:object size:0x9 data:string +lbl_80883BFB = .data:0x80883BFB; // type:object size:0xA data:string +lbl_80883C05 = .data:0x80883C05; // type:object size:0x8 data:string +lbl_80883C0D = .data:0x80883C0D; // type:object size:0xC data:string +lbl_80883C19 = .data:0x80883C19; // type:object size:0x9 data:string +lbl_80883C22 = .data:0x80883C22; // type:object size:0xE +lbl_80883C30 = .data:0x80883C30; // type:object size:0xB8 +lbl_80883CE8 = .data:0x80883CE8; // type:object size:0x8 +lbl_80883CF0 = .data:0x80883CF0; // type:object size:0x88 +lbl_80883D78 = .data:0x80883D78; // type:object size:0x8 +__vt__16GuitarController = .data:0x80883D80; // type:object size:0xA8 +lbl_80883E28 = .data:0x80883E28; // type:object size:0x14 +lbl_80883E3C = .data:0x80883E3C; // type:object size:0x1C +__RTTI__16GuitarController = .data:0x80883E58; // type:object size:0x128 +lbl_80883F80 = .data:0x80883F80; // type:object size:0xD0 +__vt__22GuitarTrackWatcherImpl = .data:0x80884050; // type:object size:0xE4 +lbl_80884134 = .data:0x80884134; // type:object size:0x18 +lbl_8088414C = .data:0x8088414C; // type:object size:0x14 +__RTTI__22GuitarTrackWatcherImpl = .data:0x80884160; // type:object size:0x8 +lbl_80884168 = .data:0x80884168; // type:object size:0x8 +__vt__16JoypadController = .data:0x80884170; // type:object size:0xA8 +lbl_80884218 = .data:0x80884218; // type:object size:0x14 +lbl_8088422C = .data:0x8088422C; // type:object size:0x1C +__RTTI__16JoypadController = .data:0x80884248; // type:object size:0x8 +lbl_80884250 = .data:0x80884250; // type:object size:0x28 +lbl_80884278 = .data:0x80884278; // type:object size:0x8 +__vt__22JoypadGuitarController = .data:0x80884280; // type:object size:0xA8 +lbl_80884328 = .data:0x80884328; // type:object size:0x18 +lbl_80884340 = .data:0x80884340; // type:object size:0x20 +__RTTI__22JoypadGuitarController = .data:0x80884360; // type:object size:0x8 +lbl_80884368 = .data:0x80884368; // type:object size:0x18 +__vt__20JoypadMidiController = .data:0x80884380; // type:object size:0xA8 +lbl_80884428 = .data:0x80884428; // type:object size:0x18 +lbl_80884440 = .data:0x80884440; // type:object size:0x28 +__RTTI__20JoypadMidiController = .data:0x80884468; // type:object size:0x8 +lbl_80884470 = .data:0x80884470; // type:object size:0x18 +__vt__22JoypadTrackWatcherImpl = .data:0x80884488; // type:object size:0xBC +lbl_80884544 = .data:0x80884544; // type:object size:0x18 +lbl_8088455C = .data:0x8088455C; // type:object size:0xC +__RTTI__22JoypadTrackWatcherImpl = .data:0x80884568; // type:object size:0x8 +__vt__18KeyboardController = .data:0x80884570; // type:object size:0xA8 +lbl_80884618 = .data:0x80884618; // type:object size:0x14 +lbl_8088462C = .data:0x8088462C; // type:object size:0x1C +__RTTI__18KeyboardController = .data:0x80884648; // type:object size:0x8 +__vt__24KeyboardTrackWatcherImpl = .data:0x80884650; // type:object size:0xBC +lbl_8088470C = .data:0x8088470C; // type:object size:0x1C +lbl_80884728 = .data:0x80884728; // type:object size:0x18 +__RTTI__24KeyboardTrackWatcherImpl = .data:0x80884740; // type:object size:0x8 +lbl_80884748 = .data:0x80884748; // type:object size:0x38 +lbl_80884780 = .data:0x80884780; // type:object size:0x4 data:4byte +lbl_80884784 = .data:0x80884784; // type:object size:0xC data:4byte +lbl_80884790 = .data:0x80884790; // type:object size:0xC data:4byte +lbl_8088479C = .data:0x8088479C; // type:object size:0x4 +__vt__11MasterAudio = .data:0x808847A0; // type:object size:0x184 +lbl_80884924 = .data:0x80884924; // type:object size:0xC data:string +lbl_80884930 = .data:0x80884930; // type:object size:0x30 +__RTTI__11MasterAudio = .data:0x80884960; // type:object size:0x8 +__vt__7HxAudio = .data:0x80884968; // type:object size:0x28 +lbl_80884990 = .data:0x80884990; // type:object size:0x8 data:string +__RTTI__7HxAudio = .data:0x80884998; // type:object size:0x8 +lbl_808849A0 = .data:0x808849A0; // type:object size:0x1F0 +lbl_80884B90 = .data:0x80884B90; // type:object size:0x84 +lbl_80884C14 = .data:0x80884C14; // type:object size:0x14 +lbl_80884C28 = .data:0x80884C28; // type:object size:0x1C +lbl_80884C44 = .data:0x80884C44; // type:object size:0xC +lbl_80884C50 = .data:0x80884C50; // type:object size:0x8 +lbl_80884C58 = .data:0x80884C58; // type:object size:0x14 +lbl_80884C6C = .data:0x80884C6C; // type:object size:0x1C +lbl_80884C88 = .data:0x80884C88; // type:object size:0x10 +lbl_80884C98 = .data:0x80884C98; // type:object size:0x8 +lbl_80884CA0 = .data:0x80884CA0; // type:object size:0x14 +lbl_80884CB4 = .data:0x80884CB4; // type:object size:0x14 data:string +lbl_80884CC8 = .data:0x80884CC8; // type:object size:0x8 +lbl_80884CD0 = .data:0x80884CD0; // type:object size:0xC +lbl_80884CDC = .data:0x80884CDC; // type:object size:0xC +lbl_80884CE8 = .data:0x80884CE8; // type:object size:0x8 +lbl_80884CF0 = .data:0x80884CF0; // type:object size:0x10 +lbl_80884D00 = .data:0x80884D00; // type:object size:0x10 +lbl_80884D10 = .data:0x80884D10; // type:object size:0xC data:string +lbl_80884D1C = .data:0x80884D1C; // type:object size:0x2C +lbl_80884D48 = .data:0x80884D48; // type:object size:0x18 +lbl_80884D60 = .data:0x80884D60; // type:object size:0x18 +lbl_80884D78 = .data:0x80884D78; // type:object size:0xC +lbl_80884D84 = .data:0x80884D84; // type:object size:0xC +lbl_80884D90 = .data:0x80884D90; // type:object size:0x8 +lbl_80884D98 = .data:0x80884D98; // type:object size:0x4 +lbl_80884D9C = .data:0x80884D9C; // type:object size:0xC +__vt__20RealGuitarController = .data:0x80884DA8; // type:object size:0xA8 +lbl_80884E50 = .data:0x80884E50; // type:object size:0x18 +lbl_80884E68 = .data:0x80884E68; // type:object size:0x20 +__RTTI__20RealGuitarController = .data:0x80884E88; // type:object size:0x8 +__vt__26RealGuitarTrackWatcherImpl = .data:0x80884E90; // type:object size:0xE4 +lbl_80884F74 = .data:0x80884F74; // type:object size:0x1C +lbl_80884F90 = .data:0x80884F90; // type:object size:0x18 +__RTTI__26RealGuitarTrackWatcherImpl = .data:0x80884FA8; // type:object size:0x8 +lbl_80884FB0 = .data:0x80884FB0; // type:object size:0x30 +lbl_80884FE0 = .data:0x80884FE0; // type:object size:0x38 +lbl_80885018 = .data:0x80885018; // type:object size:0x78 +lbl_80885090 = .data:0x80885090; // type:object size:0x30 +lbl_808850C0 = .data:0x808850C0; // type:object size:0x30 +lbl_808850F0 = .data:0x808850F0; // type:object size:0x8 data:byte +lbl_808850F8 = .data:0x808850F8; // type:object size:0x8 data:byte +lbl_80885100 = .data:0x80885100; // type:object size:0x30 data:4byte +lbl_80885130 = .data:0x80885130; // type:object size:0x2 data:string +lbl_80885132 = .data:0x80885132; // type:object size:0x3 data:string +lbl_80885135 = .data:0x80885135; // type:object size:0x2 data:string +lbl_80885137 = .data:0x80885137; // type:object size:0x3 data:string +lbl_8088513A = .data:0x8088513A; // type:object size:0x2 data:string +lbl_8088513C = .data:0x8088513C; // type:object size:0x2 data:string +lbl_8088513E = .data:0x8088513E; // type:object size:0x3 data:string +lbl_80885141 = .data:0x80885141; // type:object size:0x2 data:string +lbl_80885143 = .data:0x80885143; // type:object size:0x3 data:string +lbl_80885146 = .data:0x80885146; // type:object size:0x2 data:string +lbl_80885148 = .data:0x80885148; // type:object size:0x3 data:string +lbl_8088514B = .data:0x8088514B; // type:object size:0x2 data:string +lbl_8088514D = .data:0x8088514D; // type:object size:0x3 data:string +lbl_80885150 = .data:0x80885150; // type:object size:0x3 data:string +lbl_80885153 = .data:0x80885153; // type:object size:0x3 data:string +lbl_80885156 = .data:0x80885156; // type:object size:0x3 data:string +lbl_80885159 = .data:0x80885159; // type:object size:0x8F +lbl_808851E8 = .data:0x808851E8; // type:object size:0x1C +lbl_80885204 = .data:0x80885204; // type:object size:0x14 data:string +lbl_80885218 = .data:0x80885218; // type:object size:0x10 +lbl_80885228 = .data:0x80885228; // type:object size:0x8 +lbl_80885230 = .data:0x80885230; // type:object size:0x1C +lbl_8088524C = .data:0x8088524C; // type:object size:0x14 +lbl_80885260 = .data:0x80885260; // type:object size:0x10 +lbl_80885270 = .data:0x80885270; // type:object size:0x8 +lbl_80885278 = .data:0x80885278; // type:object size:0x1C +lbl_80885294 = .data:0x80885294; // type:object size:0x1C +lbl_808852B0 = .data:0x808852B0; // type:object size:0x10 +lbl_808852C0 = .data:0x808852C0; // type:object size:0x8 +lbl_808852C8 = .data:0x808852C8; // type:object size:0x1C +lbl_808852E4 = .data:0x808852E4; // type:object size:0x14 +lbl_808852F8 = .data:0x808852F8; // type:object size:0x8 +__vt__8SongData = .data:0x80885300; // type:object size:0xB4 +lbl_808853B4 = .data:0x808853B4; // type:object size:0xC +lbl_808853C0 = .data:0x808853C0; // type:object size:0x20 +__RTTI__8SongData = .data:0x808853E0; // type:object size:0x8 +__vt__22InternalSongParserSink = .data:0x808853E8; // type:object size:0x6C +lbl_80885454 = .data:0x80885454; // type:object size:0x1C +__RTTI__22InternalSongParserSink = .data:0x80885470; // type:object size:0x8 +__vt__10HxSongData = .data:0x80885478; // type:object size:0x1C +lbl_80885494 = .data:0x80885494; // type:object size:0xC +__RTTI__10HxSongData = .data:0x808854A0; // type:object size:0x8 +__vt__16GemListInterface = .data:0x808854A8; // type:object size:0x14 +lbl_808854BC = .data:0x808854BC; // type:object size:0x14 +__RTTI__16GemListInterface = .data:0x808854D0; // type:object size:0x8 +lbl_808854D8 = .data:0x808854D8; // type:object size:0x70 +lbl_80885548 = .data:0x80885548; // type:object size:0x4 +lbl_8088554C = .data:0x8088554C; // type:object size:0x4 +__vt__15MidiTrackLister = .data:0x80885550; // type:object size:0x30 +lbl_80885580 = .data:0x80885580; // type:object size:0x10 data:string +lbl_80885590 = .data:0x80885590; // type:object size:0x10 +__RTTI__15MidiTrackLister = .data:0x808855A0; // type:object size:0x8 +__vt__10SongParser = .data:0x808855A8; // type:object size:0x30 +lbl_808855D8 = .data:0x808855D8; // type:object size:0xC +lbl_808855E4 = .data:0x808855E4; // type:object size:0xC +__RTTI__10SongParser = .data:0x808855F0; // type:object size:0x8 +lbl_808855F8 = .data:0x808855F8; // type:object size:0x1128 +lbl_80886720 = .data:0x80886720; // type:object size:0x10 +lbl_80886730 = .data:0x80886730; // type:object size:0x38 +lbl_80886768 = .data:0x80886768; // type:object size:0x4 +lbl_8088676C = .data:0x8088676C; // type:object size:0x4 +__vt__16TrackWatcherImpl = .data:0x80886770; // type:object size:0xB4 +lbl_80886824 = .data:0x80886824; // type:object size:0x10C +lbl_80886930 = .data:0x80886930; // type:object size:0x4 +lbl_80886934 = .data:0x80886934; // type:object size:0x4 +lbl_80886938 = .data:0x80886938; // type:object size:0x38 +lbl_80886970 = .data:0x80886970; // type:object size:0xC +lbl_8088697C = .data:0x8088697C; // type:object size:0x14 +lbl_80886990 = .data:0x80886990; // type:object size:0x14 +lbl_808869A4 = .data:0x808869A4; // type:object size:0xC data:string +lbl_808869B0 = .data:0x808869B0; // type:object size:0xC data:string +lbl_808869BC = .data:0x808869BC; // type:object size:0xC +lbl_808869C8 = .data:0x808869C8; // type:object size:0x10 +lbl_808869D8 = .data:0x808869D8; // type:object size:0x10 +lbl_808869E8 = .data:0x808869E8; // type:object size:0x10 +lbl_808869F8 = .data:0x808869F8; // type:object size:0xC +lbl_80886A04 = .data:0x80886A04; // type:object size:0x10 +lbl_80886A14 = .data:0x80886A14; // type:object size:0x14 +lbl_80886A28 = .data:0x80886A28; // type:object size:0xC +lbl_80886A34 = .data:0x80886A34; // type:object size:0x10 +lbl_80886A44 = .data:0x80886A44; // type:object size:0x10 +lbl_80886A54 = .data:0x80886A54; // type:object size:0x10 +lbl_80886A64 = .data:0x80886A64; // type:object size:0x10 +lbl_80886A74 = .data:0x80886A74; // type:object size:0xC data:string +lbl_80886A80 = .data:0x80886A80; // type:object size:0xC +lbl_80886A8C = .data:0x80886A8C; // type:object size:0xC +lbl_80886A98 = .data:0x80886A98; // type:object size:0xC +lbl_80886AA4 = .data:0x80886AA4; // type:object size:0x10 +lbl_80886AB4 = .data:0x80886AB4; // type:object size:0x14 +lbl_80886AC8 = .data:0x80886AC8; // type:object size:0xC +lbl_80886AD4 = .data:0x80886AD4; // type:object size:0xC +lbl_80886AE0 = .data:0x80886AE0; // type:object size:0xC +lbl_80886AEC = .data:0x80886AEC; // type:object size:0x10 +lbl_80886AFC = .data:0x80886AFC; // type:object size:0x10 +lbl_80886B0C = .data:0x80886B0C; // type:object size:0xC data:string +lbl_80886B18 = .data:0x80886B18; // type:object size:0xC +lbl_80886B24 = .data:0x80886B24; // type:object size:0x10 +lbl_80886B34 = .data:0x80886B34; // type:object size:0x14 +lbl_80886B48 = .data:0x80886B48; // type:object size:0x10 +lbl_80886B58 = .data:0x80886B58; // type:object size:0xC +lbl_80886B64 = .data:0x80886B64; // type:object size:0x14 +lbl_80886B78 = .data:0x80886B78; // type:object size:0x10 +lbl_80886B88 = .data:0x80886B88; // type:object size:0x10 +lbl_80886B98 = .data:0x80886B98; // type:object size:0x10 +lbl_80886BA8 = .data:0x80886BA8; // type:object size:0xC data:string +lbl_80886BB4 = .data:0x80886BB4; // type:object size:0x14 +lbl_80886BC8 = .data:0x80886BC8; // type:object size:0x10 +lbl_80886BD8 = .data:0x80886BD8; // type:object size:0x10 data:string +lbl_80886BE8 = .data:0x80886BE8; // type:object size:0x8 +lbl_80886BF0 = .data:0x80886BF0; // type:object size:0x14 +__vt__10ShadowBone = .data:0x80886C04; // type:object size:0xA4 +lbl_80886CA8 = .data:0x80886CA8; // type:object size:0xC +lbl_80886CB4 = .data:0x80886CB4; // type:object size:0x24 +__RTTI__10ShadowBone = .data:0x80886CD8; // type:object size:0x8 +lbl_80886CE0 = .data:0x80886CE0; // type:object size:0x10 +lbl_80886CF0 = .data:0x80886CF0; // type:object size:0x50 +__RTTI__13CharServoBone = .data:0x80886D40; // type:object size:0x8 +lbl_80886D48 = .data:0x80886D48; // type:object size:0x18 +lbl_80886D60 = .data:0x80886D60; // type:object size:0x28 +lbl_80886D88 = .data:0x80886D88; // type:object size:0x10 +lbl_80886D98 = .data:0x80886D98; // type:object size:0x8 +__vt__9Character = .data:0x80886DA0; // type:object size:0x278 +lbl_80887018 = .data:0x80887018; // type:object size:0x18 +lbl_80887030 = .data:0x80887030; // type:object size:0x24 +lbl_80887054 = .data:0x80887054; // type:object size:0xC +lbl_80887060 = .data:0x80887060; // type:object size:0x8 +lbl_80887068 = .data:0x80887068; // type:object size:0x18 +lbl_80887080 = .data:0x80887080; // type:object size:0x2C +lbl_808870AC = .data:0x808870AC; // type:object size:0xC +lbl_808870B8 = .data:0x808870B8; // type:object size:0x8 +lbl_808870C0 = .data:0x808870C0; // type:object size:0xC +lbl_808870CC = .data:0x808870CC; // type:object size:0xC +lbl_808870D8 = .data:0x808870D8; // type:object size:0x8 data:string +lbl_808870E0 = .data:0x808870E0; // type:object size:0x8 +lbl_808870E8 = .data:0x808870E8; // type:object size:0x8 data:string +lbl_808870F0 = .data:0x808870F0; // type:object size:0x17 +lbl_80887107 = .data:0x80887107; // type:object size:0xF data:string +lbl_80887116 = .data:0x80887116; // type:object size:0x12 data:string +lbl_80887128 = .data:0x80887128; // type:object size:0x12 data:string +lbl_8088713A = .data:0x8088713A; // type:object size:0x10 data:string +lbl_8088714A = .data:0x8088714A; // type:object size:0x86 +__vt__13CharBlendBone = .data:0x808871D0; // type:object size:0x98 +lbl_80887268 = .data:0x80887268; // type:object size:0x10 +lbl_80887278 = .data:0x80887278; // type:object size:0x28 +__RTTI__13CharBlendBone = .data:0x808872A0; // type:object size:0x8 +lbl_808872A8 = .data:0x808872A8; // type:object size:0x8 +lbl_808872B0 = .data:0x808872B0; // type:object size:0x8 data:string +__vt__23RndTransformableRemover = .data:0x808872B8; // type:object size:0xA8 +lbl_80887360 = .data:0x80887360; // type:object size:0x18 data:string +lbl_80887378 = .data:0x80887378; // type:object size:0x28 +__RTTI__23RndTransformableRemover = .data:0x808873A0; // type:object size:0x8 +lbl_808873A8 = .data:0x808873A8; // type:object size:0xC data:string +lbl_808873B4 = .data:0x808873B4; // type:object size:0x1C +__RTTI__11CharBoneDir = .data:0x808873D0; // type:object size:0x8 +__vt__8CharBone = .data:0x808873D8; // type:object size:0x5C +lbl_80887434 = .data:0x80887434; // type:object size:0xC +lbl_80887440 = .data:0x80887440; // type:object size:0x18 +__RTTI__8CharBone = .data:0x80887458; // type:object size:0x8 +lbl_80887460 = .data:0x80887460; // type:object size:0x18 +lbl_80887478 = .data:0x80887478; // type:object size:0x1C data:string +lbl_80887494 = .data:0x80887494; // type:object size:0xC +lbl_808874A0 = .data:0x808874A0; // type:object size:0x8 +lbl_808874A8 = .data:0x808874A8; // type:object size:0x8 +lbl_808874B0 = .data:0x808874B0; // type:object size:0x8 data:string +__vt__11CharBoneDir = .data:0x808874B8; // type:object size:0xC0 +lbl_80887578 = .data:0x80887578; // type:object size:0x18 +lbl_80887590 = .data:0x80887590; // type:object size:0x20 data:string +lbl_808875B0 = .data:0x808875B0; // type:object size:0x10 +lbl_808875C0 = .data:0x808875C0; // type:object size:0x8 +lbl_808875C8 = .data:0x808875C8; // type:object size:0x8 +lbl_808875D0 = .data:0x808875D0; // type:object size:0x8 data:string +lbl_808875D8 = .data:0x808875D8; // type:object size:0xE0 +lbl_808876B8 = .data:0x808876B8; // type:object size:0x20 +__vt__14CharBonesAlloc = .data:0x808876D8; // type:object size:0x80 +__vt__15CharBonesObject = .data:0x80887758; // type:object size:0x80 +lbl_808877D8 = .data:0x808877D8; // type:object size:0x18 +lbl_808877F0 = .data:0x808877F0; // type:object size:0x8 +lbl_808877F8 = .data:0x808877F8; // type:object size:0x8 data:string +lbl_80887800 = .data:0x80887800; // type:object size:0x4 data:string +lbl_80887804 = .data:0x80887804; // type:object size:0x6 data:string +lbl_8088780A = .data:0x8088780A; // type:object size:0x5 data:string +lbl_8088780F = .data:0x8088780F; // type:object size:0x5 data:string +lbl_80887814 = .data:0x80887814; // type:object size:0x5 data:string +lbl_80887819 = .data:0x80887819; // type:object size:0x87 +__vt__14CharBoneOffset = .data:0x808878A0; // type:object size:0xAC +lbl_8088794C = .data:0x8088794C; // type:object size:0xC +lbl_80887958 = .data:0x80887958; // type:object size:0x8 data:string +__vt__15CharBonesMeshes = .data:0x80887960; // type:object size:0x88 +lbl_808879E8 = .data:0x808879E8; // type:object size:0x4 +lbl_808879EC = .data:0x808879EC; // type:object size:0x4 +lbl_808879F0 = .data:0x808879F0; // type:object size:0x1C +lbl_80887A0C = .data:0x80887A0C; // type:object size:0x14 +lbl_80887A20 = .data:0x80887A20; // type:object size:0x10 +lbl_80887A30 = .data:0x80887A30; // type:object size:0x8 +lbl_80887A38 = .data:0x80887A38; // type:object size:0x48 +__vt__16CharBonesBlender = .data:0x80887A80; // type:object size:0xC0 +lbl_80887B40 = .data:0x80887B40; // type:object size:0x14 +lbl_80887B54 = .data:0x80887B54; // type:object size:0x3C +__RTTI__16CharBonesBlender = .data:0x80887B90; // type:object size:0x8 +lbl_80887B98 = .data:0x80887B98; // type:object size:0x18 +lbl_80887BB0 = .data:0x80887BB0; // type:object size:0x24 +lbl_80887BD4 = .data:0x80887BD4; // type:object size:0xC +lbl_80887BE0 = .data:0x80887BE0; // type:object size:0x8 +lbl_80887BE8 = .data:0x80887BE8; // type:object size:0x8 +lbl_80887BF0 = .data:0x80887BF0; // type:object size:0x8 data:string +lbl_80887BF8 = .data:0x80887BF8; // type:object size:0x8 +__vt__13CharBoneTwist = .data:0x80887C00; // type:object size:0xC8 +lbl_80887CC8 = .data:0x80887CC8; // type:object size:0x10 +lbl_80887CD8 = .data:0x80887CD8; // type:object size:0x30 +__RTTI__13CharBoneTwist = .data:0x80887D08; // type:object size:0x8 +lbl_80887D10 = .data:0x80887D10; // type:object size:0x8 +lbl_80887D18 = .data:0x80887D18; // type:object size:0x8 data:string +__vt__8CharClip = .data:0x80887D20; // type:object size:0x60 +lbl_80887D80 = .data:0x80887D80; // type:object size:0x18 +lbl_80887D98 = .data:0x80887D98; // type:object size:0x24 +lbl_80887DBC = .data:0x80887DBC; // type:object size:0xC +lbl_80887DC8 = .data:0x80887DC8; // type:object size:0x8 +lbl_80887DD0 = .data:0x80887DD0; // type:object size:0x18 +lbl_80887DE8 = .data:0x80887DE8; // type:object size:0x1C data:string +lbl_80887E04 = .data:0x80887E04; // type:object size:0xC +lbl_80887E10 = .data:0x80887E10; // type:object size:0x8 +lbl_80887E18 = .data:0x80887E18; // type:object size:0xC +lbl_80887E24 = .data:0x80887E24; // type:object size:0xC +lbl_80887E30 = .data:0x80887E30; // type:object size:0x8 data:string +lbl_80887E38 = .data:0x80887E38; // type:object size:0x168 +lbl_80887FA0 = .data:0x80887FA0; // type:object size:0xC +lbl_80887FAC = .data:0x80887FAC; // type:object size:0x3C +__RTTI__10CharIKFoot = .data:0x80887FE8; // type:object size:0x8 +lbl_80887FF0 = .data:0x80887FF0; // type:object size:0x8 +lbl_80887FF8 = .data:0x80887FF8; // type:object size:0x18 +lbl_80888010 = .data:0x80888010; // type:object size:0x24 +lbl_80888034 = .data:0x80888034; // type:object size:0xC +lbl_80888040 = .data:0x80888040; // type:object size:0x8 +lbl_80888048 = .data:0x80888048; // type:object size:0x20 +__vt__13CharClipGroup = .data:0x80888068; // type:object size:0x88 +lbl_808880F0 = .data:0x808880F0; // type:object size:0x8 +lbl_808880F8 = .data:0x808880F8; // type:object size:0x8 data:string +lbl_80888100 = .data:0x80888100; // type:object size:0x4 data:4byte +lbl_80888104 = .data:0x80888104; // type:object size:0x14 +lbl_80888118 = .data:0x80888118; // type:object size:0x10 +lbl_80888128 = .data:0x80888128; // type:object size:0x28 +__RTTI__13CharNeckTwist = .data:0x80888150; // type:object size:0x8 +lbl_80888158 = .data:0x80888158; // type:object size:0x10 +lbl_80888168 = .data:0x80888168; // type:object size:0x28 +__RTTI__14CharUpperTwist = .data:0x80888190; // type:object size:0x8 +lbl_80888198 = .data:0x80888198; // type:object size:0x10 +lbl_808881A8 = .data:0x808881A8; // type:object size:0x30 +__RTTI__13CharForeTwist = .data:0x808881D8; // type:object size:0x8 +__vt__11CharClipSet = .data:0x808881E0; // type:object size:0x194 +lbl_80888374 = .data:0x80888374; // type:object size:0xC data:string +lbl_80888380 = .data:0x80888380; // type:object size:0x38 +__RTTI__11CharClipSet = .data:0x808883B8; // type:object size:0x8 +lbl_808883C0 = .data:0x808883C0; // type:object size:0x8 +lbl_808883C8 = .data:0x808883C8; // type:object size:0x8 data:string +lbl_808883D0 = .data:0x808883D0; // type:object size:0x71 +lbl_80888441 = .data:0x80888441; // type:object size:0x6 data:string +lbl_80888447 = .data:0x80888447; // type:object size:0x5 data:string +lbl_8088844C = .data:0x8088844C; // type:object size:0x7 data:string +lbl_80888453 = .data:0x80888453; // type:object size:0x7 data:string +lbl_8088845A = .data:0x8088845A; // type:object size:0x5 data:string +lbl_8088845F = .data:0x8088845F; // type:object size:0x11 +__vt__11CharCollide = .data:0x80888470; // type:object size:0xA4 +lbl_80888514 = .data:0x80888514; // type:object size:0xC +lbl_80888520 = .data:0x80888520; // type:object size:0x8 data:string +__vt__8CharCuff = .data:0x80888528; // type:object size:0xA4 +lbl_808885CC = .data:0x808885CC; // type:object size:0xC +lbl_808885D8 = .data:0x808885D8; // type:object size:0x8 data:string +lbl_808885E0 = .data:0x808885E0; // type:object size:0x8 +__vt__10CharDriver = .data:0x808885E8; // type:object size:0xF8 +lbl_808886E0 = .data:0x808886E0; // type:object size:0x8 +lbl_808886E8 = .data:0x808886E8; // type:object size:0x8 data:string +lbl_808886F0 = .data:0x808886F0; // type:object size:0x50 +lbl_80888740 = .data:0x80888740; // type:object size:0x4 +lbl_80888744 = .data:0x80888744; // type:object size:0x4 +__vt__14CharDriverMidi = .data:0x80888748; // type:object size:0xF8 +lbl_80888840 = .data:0x80888840; // type:object size:0x8 +lbl_80888848 = .data:0x80888848; // type:object size:0x8 data:string +lbl_80888850 = .data:0x80888850; // type:object size:0x18 +lbl_80888868 = .data:0x80888868; // type:object size:0x24 +lbl_8088888C = .data:0x8088888C; // type:object size:0xC +lbl_80888898 = .data:0x80888898; // type:object size:0x8 +__vt__8CharEyes = .data:0x808888A0; // type:object size:0x100 +lbl_808889A0 = .data:0x808889A0; // type:object size:0x18 +lbl_808889B8 = .data:0x808889B8; // type:object size:0x20 data:string +lbl_808889D8 = .data:0x808889D8; // type:object size:0x10 +lbl_808889E8 = .data:0x808889E8; // type:object size:0x8 +lbl_808889F0 = .data:0x808889F0; // type:object size:0x18 +lbl_80888A08 = .data:0x80888A08; // type:object size:0x24 +lbl_80888A2C = .data:0x80888A2C; // type:object size:0xC +lbl_80888A38 = .data:0x80888A38; // type:object size:0x8 +lbl_80888A40 = .data:0x80888A40; // type:object size:0x18 +lbl_80888A58 = .data:0x80888A58; // type:object size:0x24 +lbl_80888A7C = .data:0x80888A7C; // type:object size:0xC +lbl_80888A88 = .data:0x80888A88; // type:object size:0x8 +lbl_80888A90 = .data:0x80888A90; // type:object size:0x8 +lbl_80888A98 = .data:0x80888A98; // type:object size:0x8 data:string +lbl_80888AA0 = .data:0x80888AA0; // type:object size:0xA0 +__vt__12CharInterest = .data:0x80888B40; // type:object size:0xA8 +lbl_80888BE8 = .data:0x80888BE8; // type:object size:0x18 +lbl_80888C00 = .data:0x80888C00; // type:object size:0x28 +lbl_80888C28 = .data:0x80888C28; // type:object size:0x10 +lbl_80888C38 = .data:0x80888C38; // type:object size:0x8 +lbl_80888C40 = .data:0x80888C40; // type:object size:0x14 +lbl_80888C54 = .data:0x80888C54; // type:object size:0x14 +__RTTI__18CharEyeDartRuleset = .data:0x80888C68; // type:object size:0x8 +lbl_80888C70 = .data:0x80888C70; // type:object size:0x8 +lbl_80888C78 = .data:0x80888C78; // type:object size:0x8 data:string +lbl_80888C80 = .data:0x80888C80; // type:object size:0x30 +__vt__18CharEyeDartRuleset = .data:0x80888CB0; // type:object size:0x5C +lbl_80888D0C = .data:0x80888D0C; // type:object size:0xC +lbl_80888D18 = .data:0x80888D18; // type:object size:0x8 data:string +__vt__13CharFaceServo = .data:0x80888D20; // type:object size:0xC8 +lbl_80888DE8 = .data:0x80888DE8; // type:object size:0x8 +lbl_80888DF0 = .data:0x80888DF0; // type:object size:0x8 data:string +lbl_80888DF8 = .data:0x80888DF8; // type:object size:0x8 +__vt__13CharForeTwist = .data:0x80888E00; // type:object size:0xAC +lbl_80888EAC = .data:0x80888EAC; // type:object size:0xC +lbl_80888EB8 = .data:0x80888EB8; // type:object size:0x8 data:string +__vt__8CharHair = .data:0x80888EC0; // type:object size:0xC8 +lbl_80888F88 = .data:0x80888F88; // type:object size:0x18 +lbl_80888FA0 = .data:0x80888FA0; // type:object size:0x1C +lbl_80888FBC = .data:0x80888FBC; // type:object size:0xC +lbl_80888FC8 = .data:0x80888FC8; // type:object size:0x8 +lbl_80888FD0 = .data:0x80888FD0; // type:object size:0x8 +lbl_80888FD8 = .data:0x80888FD8; // type:object size:0x8 data:string +__vt__13CharIKFingers = .data:0x80888FE0; // type:object size:0xF0 +lbl_808890D0 = .data:0x808890D0; // type:object size:0x8 +lbl_808890D8 = .data:0x808890D8; // type:object size:0x8 data:string +lbl_808890E0 = .data:0x808890E0; // type:object size:0x408 +__vt__10CharIKFoot = .data:0x808894E8; // type:object size:0xF4 +lbl_808895DC = .data:0x808895DC; // type:object size:0xC +lbl_808895E8 = .data:0x808895E8; // type:object size:0x8 data:string +lbl_808895F0 = .data:0x808895F0; // type:object size:0x4 +lbl_808895F4 = .data:0x808895F4; // type:object size:0x4 +__vt__10CharIKHand = .data:0x808895F8; // type:object size:0xF0 +lbl_808896E8 = .data:0x808896E8; // type:object size:0x18 +lbl_80889700 = .data:0x80889700; // type:object size:0x20 +lbl_80889720 = .data:0x80889720; // type:object size:0x10 +lbl_80889730 = .data:0x80889730; // type:object size:0x8 +lbl_80889738 = .data:0x80889738; // type:object size:0x8 +lbl_80889740 = .data:0x80889740; // type:object size:0x8 data:string +__vt__10CharIKHead = .data:0x80889748; // type:object size:0xF0 +lbl_80889838 = .data:0x80889838; // type:object size:0xC +lbl_80889844 = .data:0x80889844; // type:object size:0x34 +__RTTI__10CharIKHead = .data:0x80889878; // type:object size:0x8 +lbl_80889880 = .data:0x80889880; // type:object size:0x8 +lbl_80889888 = .data:0x80889888; // type:object size:0x8 data:string +lbl_80889890 = .data:0x80889890; // type:object size:0x78 +lbl_80889908 = .data:0x80889908; // type:object size:0x10 +__vt__10CharIKMidi = .data:0x80889918; // type:object size:0x3D8 +lbl_80889CF0 = .data:0x80889CF0; // type:object size:0x48 +lbl_80889D38 = .data:0x80889D38; // type:object size:0x8 +lbl_80889D40 = .data:0x80889D40; // type:object size:0x38 +__vt__9CharIKRod = .data:0x80889D78; // type:object size:0x98 +lbl_80889E10 = .data:0x80889E10; // type:object size:0xC +lbl_80889E1C = .data:0x80889E1C; // type:object size:0x24 +__RTTI__9CharIKRod = .data:0x80889E40; // type:object size:0x8 +lbl_80889E48 = .data:0x80889E48; // type:object size:0x8 +lbl_80889E50 = .data:0x80889E50; // type:object size:0x8 data:string +__vt__11CharIKScale = .data:0x80889E58; // type:object size:0xC0 +lbl_80889F18 = .data:0x80889F18; // type:object size:0x8 +lbl_80889F20 = .data:0x80889F20; // type:object size:0x8 data:string +lbl_80889F28 = .data:0x80889F28; // type:object size:0x4 +lbl_80889F2C = .data:0x80889F2C; // type:object size:0x4 +lbl_80889F30 = .data:0x80889F30; // type:object size:0x4 +__vt__16CharIKSliderMidi = .data:0x80889F34; // type:object size:0xF4 +lbl_8088A028 = .data:0x8088A028; // type:object size:0x14 +lbl_8088A03C = .data:0x8088A03C; // type:object size:0x34 +__RTTI__16CharIKSliderMidi = .data:0x8088A070; // type:object size:0x8 +lbl_8088A078 = .data:0x8088A078; // type:object size:0x8 +lbl_8088A080 = .data:0x8088A080; // type:object size:0x8 data:string +__vt__11CharLipSync = .data:0x8088A088; // type:object size:0x5C +lbl_8088A0E4 = .data:0x8088A0E4; // type:object size:0xC +lbl_8088A0F0 = .data:0x8088A0F0; // type:object size:0x8 data:string +lbl_8088A0F8 = .data:0x8088A0F8; // type:object size:0x48 +__vt__17CharLipSyncDriver = .data:0x8088A140; // type:object size:0xF0 +lbl_8088A230 = .data:0x8088A230; // type:object size:0x18 +lbl_8088A248 = .data:0x8088A248; // type:object size:0x28 +lbl_8088A270 = .data:0x8088A270; // type:object size:0x10 +lbl_8088A280 = .data:0x8088A280; // type:object size:0x8 +lbl_8088A288 = .data:0x8088A288; // type:object size:0x18 +lbl_8088A2A0 = .data:0x8088A2A0; // type:object size:0x20 +lbl_8088A2C0 = .data:0x8088A2C0; // type:object size:0x10 +lbl_8088A2D0 = .data:0x8088A2D0; // type:object size:0x8 +lbl_8088A2D8 = .data:0x8088A2D8; // type:object size:0x8 +lbl_8088A2E0 = .data:0x8088A2E0; // type:object size:0x8 data:string +lbl_8088A2E8 = .data:0x8088A2E8; // type:object size:0x28 +__vt__10CharLookAt = .data:0x8088A310; // type:object size:0xF0 +lbl_8088A400 = .data:0x8088A400; // type:object size:0x8 +lbl_8088A408 = .data:0x8088A408; // type:object size:0x8 data:string +__vt__12CharMeshHide = .data:0x8088A410; // type:object size:0x5C +lbl_8088A46C = .data:0x8088A46C; // type:object size:0x10 +lbl_8088A47C = .data:0x8088A47C; // type:object size:0xC +lbl_8088A488 = .data:0x8088A488; // type:object size:0x8 data:string +lbl_8088A490 = .data:0x8088A490; // type:object size:0x18 +lbl_8088A4A8 = .data:0x8088A4A8; // type:object size:0x14 +lbl_8088A4BC = .data:0x8088A4BC; // type:object size:0xC +lbl_8088A4C8 = .data:0x8088A4C8; // type:object size:0x8 +lbl_8088A4D0 = .data:0x8088A4D0; // type:object size:0x18 +lbl_8088A4E8 = .data:0x8088A4E8; // type:object size:0x10 +lbl_8088A4F8 = .data:0x8088A4F8; // type:object size:0x8 +__vt__10CharMirror = .data:0x8088A500; // type:object size:0xC0 +lbl_8088A5C0 = .data:0x8088A5C0; // type:object size:0xC +lbl_8088A5CC = .data:0x8088A5CC; // type:object size:0x2C +__RTTI__10CharMirror = .data:0x8088A5F8; // type:object size:0x8 +lbl_8088A600 = .data:0x8088A600; // type:object size:0x18 +lbl_8088A618 = .data:0x8088A618; // type:object size:0x24 +lbl_8088A63C = .data:0x8088A63C; // type:object size:0xC +lbl_8088A648 = .data:0x8088A648; // type:object size:0x8 +lbl_8088A650 = .data:0x8088A650; // type:object size:0x8 +lbl_8088A658 = .data:0x8088A658; // type:object size:0x8 data:string +lbl_8088A660 = .data:0x8088A660; // type:object size:0x10 +__vt__13CharNeckTwist = .data:0x8088A670; // type:object size:0x98 +lbl_8088A708 = .data:0x8088A708; // type:object size:0x8 +lbl_8088A710 = .data:0x8088A710; // type:object size:0x8 data:string +__vt__17CharPosConstraint = .data:0x8088A718; // type:object size:0x98 +lbl_8088A7B0 = .data:0x8088A7B0; // type:object size:0x14 +lbl_8088A7C4 = .data:0x8088A7C4; // type:object size:0x24 +__RTTI__17CharPosConstraint = .data:0x8088A7E8; // type:object size:0x8 +lbl_8088A7F0 = .data:0x8088A7F0; // type:object size:0x8 +lbl_8088A7F8 = .data:0x8088A7F8; // type:object size:0x8 data:string +__vt__13CharPollGroup = .data:0x8088A800; // type:object size:0xC8 +lbl_8088A8C8 = .data:0x8088A8C8; // type:object size:0x18 +lbl_8088A8E0 = .data:0x8088A8E0; // type:object size:0x20 data:string +lbl_8088A900 = .data:0x8088A900; // type:object size:0x10 +lbl_8088A910 = .data:0x8088A910; // type:object size:0x8 +lbl_8088A918 = .data:0x8088A918; // type:object size:0x18 +lbl_8088A930 = .data:0x8088A930; // type:object size:0x24 data:string +lbl_8088A954 = .data:0x8088A954; // type:object size:0xC +lbl_8088A960 = .data:0x8088A960; // type:object size:0x8 +lbl_8088A968 = .data:0x8088A968; // type:object size:0x8 +lbl_8088A970 = .data:0x8088A970; // type:object size:0x8 data:string +__vt__13CharServoBone = .data:0x8088A978; // type:object size:0xF0 +lbl_8088AA68 = .data:0x8088AA68; // type:object size:0x8 +lbl_8088AA70 = .data:0x8088AA70; // type:object size:0x8 data:string +lbl_8088AA78 = .data:0x8088AA78; // type:object size:0x60 +__vt__10CharSleeve = .data:0x8088AAD8; // type:object size:0xC0 +lbl_8088AB98 = .data:0x8088AB98; // type:object size:0xC +lbl_8088ABA4 = .data:0x8088ABA4; // type:object size:0x2C +__RTTI__10CharSleeve = .data:0x8088ABD0; // type:object size:0x8 +lbl_8088ABD8 = .data:0x8088ABD8; // type:object size:0x8 +lbl_8088ABE0 = .data:0x8088ABE0; // type:object size:0x8 data:string +__vt__13CharTransCopy = .data:0x8088ABE8; // type:object size:0x98 +lbl_8088AC80 = .data:0x8088AC80; // type:object size:0x10 +lbl_8088AC90 = .data:0x8088AC90; // type:object size:0x28 +__RTTI__13CharTransCopy = .data:0x8088ACB8; // type:object size:0x8 +lbl_8088ACC0 = .data:0x8088ACC0; // type:object size:0x8 +lbl_8088ACC8 = .data:0x8088ACC8; // type:object size:0x8 data:string +__vt__13CharTransDraw = .data:0x8088ACD0; // type:object size:0xD0 +lbl_8088ADA0 = .data:0x8088ADA0; // type:object size:0x10 +lbl_8088ADB0 = .data:0x8088ADB0; // type:object size:0x28 +__RTTI__13CharTransDraw = .data:0x8088ADD8; // type:object size:0x8 +lbl_8088ADE0 = .data:0x8088ADE0; // type:object size:0x18 +lbl_8088ADF8 = .data:0x8088ADF8; // type:object size:0x24 +lbl_8088AE1C = .data:0x8088AE1C; // type:object size:0xC +lbl_8088AE28 = .data:0x8088AE28; // type:object size:0x8 +lbl_8088AE30 = .data:0x8088AE30; // type:object size:0x8 +lbl_8088AE38 = .data:0x8088AE38; // type:object size:0x8 data:string +lbl_8088AE40 = .data:0x8088AE40; // type:object size:0x14 +lbl_8088AE54 = .data:0x8088AE54; // type:object size:0x10 +lbl_8088AE64 = .data:0x8088AE64; // type:object size:0xC +lbl_8088AE70 = .data:0x8088AE70; // type:object size:0x8 +lbl_8088AE78 = .data:0x8088AE78; // type:object size:0x18 +lbl_8088AE90 = .data:0x8088AE90; // type:object size:0x20 data:string +lbl_8088AEB0 = .data:0x8088AEB0; // type:object size:0x10 +lbl_8088AEC0 = .data:0x8088AEC0; // type:object size:0x8 +lbl_8088AEC8 = .data:0x8088AEC8; // type:object size:0x18 +lbl_8088AEE0 = .data:0x8088AEE0; // type:object size:0x24 +lbl_8088AF04 = .data:0x8088AF04; // type:object size:0xC +lbl_8088AF10 = .data:0x8088AF10; // type:object size:0x8 +lbl_8088AF18 = .data:0x8088AF18; // type:object size:0x18 +__vt__14CharUpperTwist = .data:0x8088AF30; // type:object size:0x98 +lbl_8088AFC8 = .data:0x8088AFC8; // type:object size:0x8 +lbl_8088AFD0 = .data:0x8088AFD0; // type:object size:0x8 data:string +lbl_8088AFD8 = .data:0x8088AFD8; // type:object size:0x70 +__vt__14CharWeightable = .data:0x8088B048; // type:object size:0x8C +lbl_8088B0D4 = .data:0x8088B0D4; // type:object size:0xC +lbl_8088B0E0 = .data:0x8088B0E0; // type:object size:0x8 data:string +lbl_8088B0E8 = .data:0x8088B0E8; // type:object size:0x18 +lbl_8088B100 = .data:0x8088B100; // type:object size:0x28 +lbl_8088B128 = .data:0x8088B128; // type:object size:0x10 +lbl_8088B138 = .data:0x8088B138; // type:object size:0x8 +__vt__16CharWeightSetter = .data:0x8088B140; // type:object size:0xC0 +lbl_8088B200 = .data:0x8088B200; // type:object size:0x18 +lbl_8088B218 = .data:0x8088B218; // type:object size:0x28 data:string +lbl_8088B240 = .data:0x8088B240; // type:object size:0x10 +lbl_8088B250 = .data:0x8088B250; // type:object size:0x8 +lbl_8088B258 = .data:0x8088B258; // type:object size:0x8 +lbl_8088B260 = .data:0x8088B260; // type:object size:0x8 data:string +lbl_8088B268 = .data:0x8088B268; // type:object size:0x1C +lbl_8088B284 = .data:0x8088B284; // type:object size:0xC +lbl_8088B290 = .data:0x8088B290; // type:object size:0x10 +lbl_8088B2A0 = .data:0x8088B2A0; // type:object size:0x8 +__vt__10FileMerger = .data:0x8088B2A8; // type:object size:0xA8 +lbl_8088B350 = .data:0x8088B350; // type:object size:0x10 +lbl_8088B360 = .data:0x8088B360; // type:object size:0x10 +lbl_8088B370 = .data:0x8088B370; // type:object size:0xC +lbl_8088B37C = .data:0x8088B37C; // type:object size:0xC +lbl_8088B388 = .data:0x8088B388; // type:object size:0x8 data:string +lbl_8088B390 = .data:0x8088B390; // type:object size:0x70 +lbl_8088B400 = .data:0x8088B400; // type:object size:0x4 data:4byte +lbl_8088B404 = .data:0x8088B404; // type:object size:0x1C +lbl_8088B420 = .data:0x8088B420; // type:object size:0x1C +lbl_8088B43C = .data:0x8088B43C; // type:object size:0xC +lbl_8088B448 = .data:0x8088B448; // type:object size:0x8 +__vt__19FileMergerOrganizer = .data:0x8088B450; // type:object size:0x78 +lbl_8088B4C8 = .data:0x8088B4C8; // type:object size:0x14 data:string +lbl_8088B4DC = .data:0x8088B4DC; // type:object size:0x1C +__RTTI__19FileMergerOrganizer = .data:0x8088B4F8; // type:object size:0x8 +lbl_8088B500 = .data:0x8088B500; // type:object size:0x1C +lbl_8088B51C = .data:0x8088B51C; // type:object size:0x14 data:string +lbl_8088B530 = .data:0x8088B530; // type:object size:0x8 +lbl_8088B538 = .data:0x8088B538; // type:object size:0x8 data:string +lbl_8088B540 = .data:0x8088B540; // type:object size:0x40 +lbl_8088B580 = .data:0x8088B580; // type:object size:0x18 +lbl_8088B598 = .data:0x8088B598; // type:object size:0x24 +lbl_8088B5BC = .data:0x8088B5BC; // type:object size:0xC +lbl_8088B5C8 = .data:0x8088B5C8; // type:object size:0x8 +__vt__8Waypoint = .data:0x8088B5D0; // type:object size:0xA4 +lbl_8088B674 = .data:0x8088B674; // type:object size:0xC +lbl_8088B680 = .data:0x8088B680; // type:object size:0x8 data:string +lbl_8088B688 = .data:0x8088B688; // type:object size:0x38 +__vt__16CharGuitarString = .data:0x8088B6C0; // type:object size:0x98 +lbl_8088B758 = .data:0x8088B758; // type:object size:0x14 +lbl_8088B76C = .data:0x8088B76C; // type:object size:0x24 +__RTTI__16CharGuitarString = .data:0x8088B790; // type:object size:0x8 +lbl_8088B798 = .data:0x8088B798; // type:object size:0x8 +lbl_8088B7A0 = .data:0x8088B7A0; // type:object size:0x8 data:string +lbl_8088B7A8 = .data:0x8088B7A8; // type:object size:0x28 +lbl_8088B7D0 = .data:0x8088B7D0; // type:object size:0x4 data:float +lbl_8088B7D4 = .data:0x8088B7D4; // type:object size:0x5C +__vt__12Achievements = .data:0x8088B830; // type:object size:0x5C +lbl_8088B88C = .data:0x8088B88C; // type:object size:0x10 +lbl_8088B89C = .data:0x8088B89C; // type:object size:0x14 +__RTTI__12Achievements = .data:0x8088B8B0; // type:object size:0x8 +lbl_8088B8B8 = .data:0x8088B8B8; // type:object size:0x10 +__vt__12ButtonHolder = .data:0x8088B8C8; // type:object size:0x5C +lbl_8088B924 = .data:0x8088B924; // type:object size:0x10 +lbl_8088B934 = .data:0x8088B934; // type:object size:0x14 +__RTTI__12ButtonHolder = .data:0x8088B948; // type:object size:0x8 +__vt__22ProcessedButtonDownMsg = .data:0x8088B950; // type:object size:0xC +lbl_8088B95C = .data:0x8088B95C; // type:object size:0x18 +lbl_8088B974 = .data:0x8088B974; // type:object size:0xC +__RTTI__22ProcessedButtonDownMsg = .data:0x8088B980; // type:object size:0x8 +lbl_8088B988 = .data:0x8088B988; // type:object size:0x18 +__vt__12CreditsPanel = .data:0x8088B9A0; // type:object size:0x148 +lbl_8088BAE8 = .data:0x8088BAE8; // type:object size:0x10 +lbl_8088BAF8 = .data:0x8088BAF8; // type:object size:0x28 +__RTTI__12CreditsPanel = .data:0x8088BB20; // type:object size:0x8 +lbl_8088BB28 = .data:0x8088BB28; // type:object size:0x8 +lbl_8088BB30 = .data:0x8088BB30; // type:object size:0x8 data:string +lbl_8088BB38 = .data:0x8088BB38; // type:object size:0x38 +__vt__21ConnectionStatusPanel = .data:0x8088BB70; // type:object size:0xBC +lbl_8088BC2C = .data:0x8088BC2C; // type:object size:0x18 +lbl_8088BC44 = .data:0x8088BC44; // type:object size:0x1C +__RTTI__21ConnectionStatusPanel = .data:0x8088BC60; // type:object size:0x8 +lbl_8088BC68 = .data:0x8088BC68; // type:object size:0x18 +lbl_8088BC80 = .data:0x8088BC80; // type:object size:0x8 +lbl_8088BC88 = .data:0x8088BC88; // type:object size:0x8 data:string +lbl_8088BC90 = .data:0x8088BC90; // type:object size:0x4 data:4byte +__vt__17DataArraySongInfo = .data:0x8088BC94; // type:object size:0x6C +lbl_8088BD00 = .data:0x8088BD00; // type:object size:0x14 +lbl_8088BD14 = .data:0x8088BD14; // type:object size:0x14 +__RTTI__17DataArraySongInfo = .data:0x8088BD28; // type:object size:0x8 +lbl_8088BD30 = .data:0x8088BD30; // type:object size:0x10 +__vt__13DeJitterPanel = .data:0x8088BD40; // type:object size:0xBC +lbl_8088BDFC = .data:0x8088BDFC; // type:object size:0x10 +lbl_8088BE0C = .data:0x8088BE0C; // type:object size:0xC +lbl_8088BE18 = .data:0x8088BE18; // type:object size:0x8 data:string +lbl_8088BE20 = .data:0x8088BE20; // type:object size:0x4 data:4byte +lbl_8088BE24 = .data:0x8088BE24; // type:object size:0x4 data:4byte +lbl_8088BE28 = .data:0x8088BE28; // type:object size:0x4 data:4byte +__vt__17FixedSizeSaveable = .data:0x8088BE2C; // type:object size:0x14 +__vt__23FixedSizeSaveableStream = .data:0x8088BE40; // type:object size:0x3C +lbl_8088BE7C = .data:0x8088BE7C; // type:object size:0x4 +__vt__15HeldButtonPanel = .data:0x8088BE80; // type:object size:0xBC +lbl_8088BF3C = .data:0x8088BF3C; // type:object size:0xC +lbl_8088BF48 = .data:0x8088BF48; // type:object size:0x8 data:string +lbl_8088BF50 = .data:0x8088BF50; // type:object size:0x18 +lbl_8088BF68 = .data:0x8088BF68; // type:object size:0x10 +lbl_8088BF78 = .data:0x8088BF78; // type:object size:0xC +lbl_8088BF84 = .data:0x8088BF84; // type:object size:0x14 +lbl_8088BF98 = .data:0x8088BF98; // type:object size:0x8 +lbl_8088BFA0 = .data:0x8088BFA0; // type:object size:0x8 +__vt__16MetaMusicManager = .data:0x8088BFA8; // type:object size:0x5C +lbl_8088C004 = .data:0x8088C004; // type:object size:0x14 +lbl_8088C018 = .data:0x8088C018; // type:object size:0x18 +__RTTI__16MetaMusicManager = .data:0x8088C030; // type:object size:0x8 +lbl_8088C038 = .data:0x8088C038; // type:object size:0x18 +lbl_8088C050 = .data:0x8088C050; // type:object size:0x8 data:float +__vt__10MoviePanel = .data:0x8088C058; // type:object size:0x100 +lbl_8088C158 = .data:0x8088C158; // type:object size:0xC +lbl_8088C164 = .data:0x8088C164; // type:object size:0x2C +__RTTI__10MoviePanel = .data:0x8088C190; // type:object size:0x8 +__vt__Q28HomeMenu8Callback = .data:0x8088C198; // type:object size:0x1C +lbl_8088C1B4 = .data:0x8088C1B4; // type:object size:0x14 +__RTTI__Q28HomeMenu8Callback = .data:0x8088C1C8; // type:object size:0x8 +lbl_8088C1D0 = .data:0x8088C1D0; // type:object size:0x8 +lbl_8088C1D8 = .data:0x8088C1D8; // type:object size:0x8 data:string +lbl_8088C1E0 = .data:0x8088C1E0; // type:object size:0x90 +__vt__12PreloadPanel = .data:0x8088C270; // type:object size:0x10C +lbl_8088C37C = .data:0x8088C37C; // type:object size:0xC +lbl_8088C388 = .data:0x8088C388; // type:object size:0x8 data:string +lbl_8088C390 = .data:0x8088C390; // type:object size:0x8 +__vt__7Profile = .data:0x8088C398; // type:object size:0x90 +lbl_8088C428 = .data:0x8088C428; // type:object size:0x8 data:4byte +__vt__12SongMetadata = .data:0x8088C430; // type:object size:0x60 +lbl_8088C490 = .data:0x8088C490; // type:object size:0x4 data:4byte +lbl_8088C494 = .data:0x8088C494; // type:object size:0x4 data:4byte +lbl_8088C498 = .data:0x8088C498; // type:object size:0x8 data:4byte +__vt__7SongMgr = .data:0x8088C4A0; // type:object size:0x128 +lbl_8088C5C8 = .data:0x8088C5C8; // type:object size:0x88 +__vt__11SongPreview = .data:0x8088C650; // type:object size:0xA4 +lbl_8088C6F4 = .data:0x8088C6F4; // type:object size:0xC data:string +lbl_8088C700 = .data:0x8088C700; // type:object size:0x20 +__RTTI__11SongPreview = .data:0x8088C720; // type:object size:0x8 +lbl_8088C728 = .data:0x8088C728; // type:object size:0x60 +lbl_8088C788 = .data:0x8088C788; // type:object size:0x8 +__vt__14WiiEnumeration = .data:0x8088C790; // type:object size:0x1C +lbl_8088C7AC = .data:0x8088C7AC; // type:object size:0x10 +lbl_8088C7BC = .data:0x8088C7BC; // type:object size:0xC +__RTTI__14WiiEnumeration = .data:0x8088C7C8; // type:object size:0x8 +__vt__16StoreEnumeration = .data:0x8088C7D0; // type:object size:0x1C +lbl_8088C7EC = .data:0x8088C7EC; // type:object size:0x14 +__RTTI__16StoreEnumeration = .data:0x8088C800; // type:object size:0x8 +__vt__19StoreArtLoaderPanel = .data:0x8088C808; // type:object size:0xBC +lbl_8088C8C4 = .data:0x8088C8C4; // type:object size:0x14 data:string +lbl_8088C8D8 = .data:0x8088C8D8; // type:object size:0x8 +lbl_8088C8E0 = .data:0x8088C8E0; // type:object size:0x8 data:string +lbl_8088C8E8 = .data:0x8088C8E8; // type:object size:0xA0 +lbl_8088C988 = .data:0x8088C988; // type:object size:0x78 +lbl_8088CA00 = .data:0x8088CA00; // type:object size:0x2D0 +lbl_8088CCD0 = .data:0x8088CCD0; // type:object size:0x90 +__vt__17StorePurchaseable = .data:0x8088CD60; // type:object size:0xF8 +lbl_8088CE58 = .data:0x8088CE58; // type:object size:0xC +lbl_8088CE64 = .data:0x8088CE64; // type:object size:0x2 data:string +lbl_8088CE66 = .data:0x8088CE66; // type:object size:0x3 data:string +lbl_8088CE69 = .data:0x8088CE69; // type:object size:0x3 data:string +lbl_8088CE6C = .data:0x8088CE6C; // type:object size:0x3 data:string +lbl_8088CE6F = .data:0x8088CE6F; // type:object size:0x4 data:string +lbl_8088CE73 = .data:0x8088CE73; // type:object size:0x1E data:string +lbl_8088CE91 = .data:0x8088CE91; // type:object size:0x9 data:string +lbl_8088CE9A = .data:0x8088CE9A; // type:object size:0x218 +lbl_8088D0B2 = .data:0x8088D0B2; // type:object size:0xC data:string +lbl_8088D0BE = .data:0x8088D0BE; // type:object size:0x6 data:string +lbl_8088D0C4 = .data:0x8088D0C4; // type:object size:0xC data:string +lbl_8088D0D0 = .data:0x8088D0D0; // type:object size:0x8 data:string +lbl_8088D0D8 = .data:0x8088D0D8; // type:object size:0x4 data:string +lbl_8088D0DC = .data:0x8088D0DC; // type:object size:0x7 data:string +lbl_8088D0E3 = .data:0x8088D0E3; // type:object size:0x5 data:string +lbl_8088D0E8 = .data:0x8088D0E8; // type:object size:0x7 data:string +lbl_8088D0EF = .data:0x8088D0EF; // type:object size:0xA data:string +lbl_8088D0F9 = .data:0x8088D0F9; // type:object size:0x5 data:string +lbl_8088D0FE = .data:0x8088D0FE; // type:object size:0x6 data:string +lbl_8088D104 = .data:0x8088D104; // type:object size:0x9 data:string +lbl_8088D10D = .data:0x8088D10D; // type:object size:0x8 data:string +lbl_8088D115 = .data:0x8088D115; // type:object size:0x8 data:string +lbl_8088D11D = .data:0x8088D11D; // type:object size:0x6 data:string +lbl_8088D123 = .data:0x8088D123; // type:object size:0x8 data:string +lbl_8088D12B = .data:0x8088D12B; // type:object size:0x5 data:string +lbl_8088D130 = .data:0x8088D130; // type:object size:0x5 data:string +lbl_8088D135 = .data:0x8088D135; // type:object size:0x5 data:string +lbl_8088D13A = .data:0x8088D13A; // type:object size:0xD data:string +lbl_8088D147 = .data:0x8088D147; // type:object size:0x6 data:string +lbl_8088D14D = .data:0x8088D14D; // type:object size:0xA data:string +lbl_8088D157 = .data:0x8088D157; // type:object size:0xA data:string +lbl_8088D161 = .data:0x8088D161; // type:object size:0xE data:string +lbl_8088D16F = .data:0x8088D16F; // type:object size:0x6 data:string +lbl_8088D175 = .data:0x8088D175; // type:object size:0x6 data:string +lbl_8088D17B = .data:0x8088D17B; // type:object size:0x13 data:string +lbl_8088D18E = .data:0x8088D18E; // type:object size:0xB data:string +lbl_8088D199 = .data:0x8088D199; // type:object size:0xA data:string +lbl_8088D1A3 = .data:0x8088D1A3; // type:object size:0x6 data:string +lbl_8088D1A9 = .data:0x8088D1A9; // type:object size:0x12 data:string +lbl_8088D1BB = .data:0x8088D1BB; // type:object size:0x12 data:string +lbl_8088D1CD = .data:0x8088D1CD; // type:object size:0x12 data:string +lbl_8088D1DF = .data:0x8088D1DF; // type:object size:0x15 data:string +lbl_8088D1F4 = .data:0x8088D1F4; // type:object size:0x18 data:string +lbl_8088D20C = .data:0x8088D20C; // type:object size:0x11 data:string +lbl_8088D21D = .data:0x8088D21D; // type:object size:0xF data:string +lbl_8088D22C = .data:0x8088D22C; // type:object size:0xF data:string +lbl_8088D23B = .data:0x8088D23B; // type:object size:0x13 data:string +lbl_8088D24E = .data:0x8088D24E; // type:object size:0xF data:string +lbl_8088D25D = .data:0x8088D25D; // type:object size:0x13 data:string +lbl_8088D270 = .data:0x8088D270; // type:object size:0x11 data:string +lbl_8088D281 = .data:0x8088D281; // type:object size:0x12 data:string +lbl_8088D293 = .data:0x8088D293; // type:object size:0x11 data:string +lbl_8088D2A4 = .data:0x8088D2A4; // type:object size:0x15 data:string +lbl_8088D2B9 = .data:0x8088D2B9; // type:object size:0x13 data:string +lbl_8088D2CC = .data:0x8088D2CC; // type:object size:0x11 data:string +lbl_8088D2DD = .data:0x8088D2DD; // type:object size:0x16 data:string +lbl_8088D2F3 = .data:0x8088D2F3; // type:object size:0x1A data:string +lbl_8088D30D = .data:0x8088D30D; // type:object size:0xE data:string +lbl_8088D31B = .data:0x8088D31B; // type:object size:0x11 data:string +lbl_8088D32C = .data:0x8088D32C; // type:object size:0xF data:string +lbl_8088D33B = .data:0x8088D33B; // type:object size:0x13 data:string +lbl_8088D34E = .data:0x8088D34E; // type:object size:0x12 data:string +lbl_8088D360 = .data:0x8088D360; // type:object size:0xF data:string +lbl_8088D36F = .data:0x8088D36F; // type:object size:0xF data:string +lbl_8088D37E = .data:0x8088D37E; // type:object size:0xF data:string +lbl_8088D38D = .data:0x8088D38D; // type:object size:0x13 data:string +lbl_8088D3A0 = .data:0x8088D3A0; // type:object size:0x15 data:string +lbl_8088D3B5 = .data:0x8088D3B5; // type:object size:0xD data:string +lbl_8088D3C2 = .data:0x8088D3C2; // type:object size:0x12 data:string +lbl_8088D3D4 = .data:0x8088D3D4; // type:object size:0x15 data:string +lbl_8088D3E9 = .data:0x8088D3E9; // type:object size:0x16 data:string +lbl_8088D3FF = .data:0x8088D3FF; // type:object size:0xD data:string +lbl_8088D40C = .data:0x8088D40C; // type:object size:0x16 data:string +lbl_8088D422 = .data:0x8088D422; // type:object size:0x12 data:string +lbl_8088D434 = .data:0x8088D434; // type:object size:0xE data:string +lbl_8088D442 = .data:0x8088D442; // type:object size:0x10 data:string +lbl_8088D452 = .data:0x8088D452; // type:object size:0x11 data:string +lbl_8088D463 = .data:0x8088D463; // type:object size:0x10 data:string +lbl_8088D473 = .data:0x8088D473; // type:object size:0xE data:string +lbl_8088D481 = .data:0x8088D481; // type:object size:0xE data:string +lbl_8088D48F = .data:0x8088D48F; // type:object size:0x10 data:string +lbl_8088D49F = .data:0x8088D49F; // type:object size:0xE data:string +lbl_8088D4AD = .data:0x8088D4AD; // type:object size:0x12 data:string +lbl_8088D4BF = .data:0x8088D4BF; // type:object size:0x12 data:string +lbl_8088D4D1 = .data:0x8088D4D1; // type:object size:0x17 data:string +lbl_8088D4E8 = .data:0x8088D4E8; // type:object size:0x15 data:string +lbl_8088D4FD = .data:0x8088D4FD; // type:object size:0x10 data:string +lbl_8088D50D = .data:0x8088D50D; // type:object size:0x13 data:string +lbl_8088D520 = .data:0x8088D520; // type:object size:0xF data:string +lbl_8088D52F = .data:0x8088D52F; // type:object size:0x13 data:string +lbl_8088D542 = .data:0x8088D542; // type:object size:0x14 data:string +lbl_8088D556 = .data:0x8088D556; // type:object size:0xE data:string +lbl_8088D564 = .data:0x8088D564; // type:object size:0x12 data:string +lbl_8088D576 = .data:0x8088D576; // type:object size:0xF data:string +lbl_8088D585 = .data:0x8088D585; // type:object size:0x10 data:string +lbl_8088D595 = .data:0x8088D595; // type:object size:0x12 data:string +lbl_8088D5A7 = .data:0x8088D5A7; // type:object size:0xF data:string +lbl_8088D5B6 = .data:0x8088D5B6; // type:object size:0x11 data:string +lbl_8088D5C7 = .data:0x8088D5C7; // type:object size:0x11 data:string +lbl_8088D5D8 = .data:0x8088D5D8; // type:object size:0x19 data:string +lbl_8088D5F1 = .data:0x8088D5F1; // type:object size:0x10 data:string +lbl_8088D601 = .data:0x8088D601; // type:object size:0xF data:string +lbl_8088D610 = .data:0x8088D610; // type:object size:0x10 data:string +lbl_8088D620 = .data:0x8088D620; // type:object size:0xD data:string +lbl_8088D62D = .data:0x8088D62D; // type:object size:0x12 data:string +lbl_8088D63F = .data:0x8088D63F; // type:object size:0xF data:string +lbl_8088D64E = .data:0x8088D64E; // type:object size:0xE data:string +lbl_8088D65C = .data:0x8088D65C; // type:object size:0x12 data:string +lbl_8088D66E = .data:0x8088D66E; // type:object size:0x15 data:string +lbl_8088D683 = .data:0x8088D683; // type:object size:0x10 data:string +lbl_8088D693 = .data:0x8088D693; // type:object size:0x11 data:string +lbl_8088D6A4 = .data:0x8088D6A4; // type:object size:0xD data:string +lbl_8088D6B1 = .data:0x8088D6B1; // type:object size:0x18 data:string +lbl_8088D6C9 = .data:0x8088D6C9; // type:object size:0xE data:string +lbl_8088D6D7 = .data:0x8088D6D7; // type:object size:0x15 data:string +lbl_8088D6EC = .data:0x8088D6EC; // type:object size:0x14 data:string +lbl_8088D700 = .data:0x8088D700; // type:object size:0x14 data:string +lbl_8088D714 = .data:0x8088D714; // type:object size:0xD data:string +lbl_8088D721 = .data:0x8088D721; // type:object size:0x10 data:string +lbl_8088D731 = .data:0x8088D731; // type:object size:0x12 data:string +lbl_8088D743 = .data:0x8088D743; // type:object size:0xE data:string +lbl_8088D751 = .data:0x8088D751; // type:object size:0x16 data:string +lbl_8088D767 = .data:0x8088D767; // type:object size:0xF data:string +lbl_8088D776 = .data:0x8088D776; // type:object size:0xE data:string +lbl_8088D784 = .data:0x8088D784; // type:object size:0xF data:string +lbl_8088D793 = .data:0x8088D793; // type:object size:0x10 data:string +lbl_8088D7A3 = .data:0x8088D7A3; // type:object size:0xE data:string +lbl_8088D7B1 = .data:0x8088D7B1; // type:object size:0x10 data:string +lbl_8088D7C1 = .data:0x8088D7C1; // type:object size:0x19 data:string +lbl_8088D7DA = .data:0x8088D7DA; // type:object size:0x10 data:string +lbl_8088D7EA = .data:0x8088D7EA; // type:object size:0x11 data:string +lbl_8088D7FB = .data:0x8088D7FB; // type:object size:0x3D +jumptable_8088D838 = .data:0x8088D838; // type:object size:0x2C scope:local +jumptable_8088D864 = .data:0x8088D864; // type:object size:0x30 scope:local +lbl_8088D894 = .data:0x8088D894; // type:object size:0x4C +lbl_8088D8E0 = .data:0x8088D8E0; // type:object size:0x18 +lbl_8088D8F8 = .data:0x8088D8F8; // type:object size:0x10 +lbl_8088D908 = .data:0x8088D908; // type:object size:0x8 +__vt__20StoreMetadataManager = .data:0x8088D910; // type:object size:0x5C +lbl_8088D96C = .data:0x8088D96C; // type:object size:0x18 +lbl_8088D984 = .data:0x8088D984; // type:object size:0x14 +__RTTI__20StoreMetadataManager = .data:0x8088D998; // type:object size:0x8 +lbl_8088D9A0 = .data:0x8088D9A0; // type:object size:0x8 data:string +lbl_8088D9A8 = .data:0x8088D9A8; // type:object size:0x278 +__vt__15StorePreviewMgr = .data:0x8088DC20; // type:object size:0x80 +lbl_8088DCA0 = .data:0x8088DCA0; // type:object size:0x10 data:string +lbl_8088DCB0 = .data:0x8088DCB0; // type:object size:0x20 +__RTTI__15StorePreviewMgr = .data:0x8088DCD0; // type:object size:0x8 +lbl_8088DCD8 = .data:0x8088DCD8; // type:object size:0xC +lbl_8088DCE4 = .data:0x8088DCE4; // type:object size:0x1C +lbl_8088DD00 = .data:0x8088DD00; // type:object size:0x10 +lbl_8088DD10 = .data:0x8088DD10; // type:object size:0x8 +lbl_8088DD18 = .data:0x8088DD18; // type:object size:0x20 +lbl_8088DD38 = .data:0x8088DD38; // type:object size:0x20 +__vt__12StreamPlayer = .data:0x8088DD58; // type:object size:0x5C +lbl_8088DDB4 = .data:0x8088DDB4; // type:object size:0x10 +lbl_8088DDC4 = .data:0x8088DDC4; // type:object size:0x14 +__RTTI__12StreamPlayer = .data:0x8088DDD8; // type:object size:0x8 +lbl_8088DDE0 = .data:0x8088DDE0; // type:object size:0x78 +lbl_8088DE58 = .data:0x8088DE58; // type:object size:0x4 data:4byte +lbl_8088DE5C = .data:0x8088DE5C; // type:object size:0xC data:4byte +lbl_8088DE68 = .data:0x8088DE68; // type:object size:0x1C +__vt__10MemcardMgr = .data:0x8088DE84; // type:object size:0x9C +lbl_8088DF20 = .data:0x8088DF20; // type:object size:0xC +lbl_8088DF2C = .data:0x8088DF2C; // type:object size:0x24 +__RTTI__10MemcardMgr = .data:0x8088DF50; // type:object size:0x8 +lbl_8088DF58 = .data:0x8088DF58; // type:object size:0xC +lbl_8088DF64 = .data:0x8088DF64; // type:object size:0x18 +lbl_8088DF7C = .data:0x8088DF7C; // type:object size:0xC +lbl_8088DF88 = .data:0x8088DF88; // type:object size:0x148 +lbl_8088E0D0 = .data:0x8088E0D0; // type:object size:0x70 +lbl_8088E140 = .data:0x8088E140; // type:object size:0xA data:string +lbl_8088E14A = .data:0x8088E14A; // type:object size:0xB data:string +lbl_8088E155 = .data:0x8088E155; // type:object size:0x11 data:string +lbl_8088E166 = .data:0x8088E166; // type:object size:0x36 +lbl_8088E19C = .data:0x8088E19C; // type:object size:0x94 +__vt__10StorePanel = .data:0x8088E230; // type:object size:0xF8 +lbl_8088E328 = .data:0x8088E328; // type:object size:0x48 +lbl_8088E370 = .data:0x8088E370; // type:object size:0x4 data:4byte +lbl_8088E374 = .data:0x8088E374; // type:object size:0x4 data:4byte +__vt__13WiiProfileMgr = .data:0x8088E378; // type:object size:0x94 +lbl_8088E40C = .data:0x8088E40C; // type:object size:0x10 +lbl_8088E41C = .data:0x8088E41C; // type:object size:0x24 +__RTTI__13WiiProfileMgr = .data:0x8088E440; // type:object size:0x8 +__vt__10WiiProfile = .data:0x8088E448; // type:object size:0x5C +lbl_8088E4A4 = .data:0x8088E4A4; // type:object size:0xC +lbl_8088E4B0 = .data:0x8088E4B0; // type:object size:0x18 +__RTTI__10WiiProfile = .data:0x8088E4C8; // type:object size:0x8 +lbl_8088E4D0 = .data:0x8088E4D0; // type:object size:0x10 +lbl_8088E4E0 = .data:0x8088E4E0; // type:object size:0x10 +lbl_8088E4F0 = .data:0x8088E4F0; // type:object size:0x4 +lbl_8088E4F4 = .data:0x8088E4F4; // type:object size:0xC +__vt__10MidiParser = .data:0x8088E500; // type:object size:0x84 +lbl_8088E584 = .data:0x8088E584; // type:object size:0xC +lbl_8088E590 = .data:0x8088E590; // type:object size:0x8 +lbl_8088E598 = .data:0x8088E598; // type:object size:0x8 data:string +lbl_8088E5A0 = .data:0x8088E5A0; // type:object size:0x158 +lbl_8088E6F8 = .data:0x8088E6F8; // type:object size:0x8 +__vt__13MidiParserMgr = .data:0x8088E700; // type:object size:0x90 +lbl_8088E790 = .data:0x8088E790; // type:object size:0x10 +lbl_8088E7A0 = .data:0x8088E7A0; // type:object size:0x20 +__RTTI__13MidiParserMgr = .data:0x8088E7C0; // type:object size:0x8 +lbl_8088E7C8 = .data:0x8088E7C8; // type:object size:0x80 +lbl_8088E848 = .data:0x8088E848; // type:object size:0x10 +__vt__12MidiReceiver = .data:0x8088E858; // type:object size:0x30 +lbl_8088E888 = .data:0x8088E888; // type:object size:0xC +lbl_8088E894 = .data:0x8088E894; // type:object size:0x4 +lbl_8088E898 = .data:0x8088E898; // type:object size:0x4 +lbl_8088E89C = .data:0x8088E89C; // type:object size:0xC +lbl_8088E8A8 = .data:0x8088E8A8; // type:object size:0xC data:4byte +lbl_8088E8B4 = .data:0x8088E8B4; // type:object size:0xC data:4byte +lbl_8088E8C0 = .data:0x8088E8C0; // type:object size:0xC data:4byte +lbl_8088E8CC = .data:0x8088E8CC; // type:object size:0xC data:4byte +lbl_8088E8D8 = .data:0x8088E8D8; // type:object size:0x1C +lbl_8088E8F4 = .data:0x8088E8F4; // type:object size:0x1C +lbl_8088E910 = .data:0x8088E910; // type:object size:0x10 +lbl_8088E920 = .data:0x8088E920; // type:object size:0x8 +lbl_8088E928 = .data:0x8088E928; // type:object size:0xC data:string +lbl_8088E934 = .data:0x8088E934; // type:object size:0xC +lbl_8088E940 = .data:0x8088E940; // type:object size:0xC8 +lbl_8088EA08 = .data:0x8088EA08; // type:object size:0x4 data:4byte +lbl_8088EA0C = .data:0x8088EA0C; // type:object size:0x4 data:4byte +lbl_8088EA10 = .data:0x8088EA10; // type:object size:0xC +lbl_8088EA1C = .data:0x8088EA1C; // type:object size:0x2C +__RTTI__8TexMovie = .data:0x8088EA48; // type:object size:0x8 +lbl_8088EA50 = .data:0x8088EA50; // type:object size:0x10 +lbl_8088EA60 = .data:0x8088EA60; // type:object size:0x8 +lbl_8088EA68 = .data:0x8088EA68; // type:object size:0x8 +lbl_8088EA70 = .data:0x8088EA70; // type:object size:0xC data:string +lbl_8088EA7C = .data:0x8088EA7C; // type:object size:0x44 +__vt__8TexMovie = .data:0x8088EAC0; // type:object size:0x108 +lbl_8088EBC8 = .data:0x8088EBC8; // type:object size:0x18 +lbl_8088EBE0 = .data:0x8088EBE0; // type:object size:0x20 +lbl_8088EC00 = .data:0x8088EC00; // type:object size:0x10 +lbl_8088EC10 = .data:0x8088EC10; // type:object size:0x8 +lbl_8088EC18 = .data:0x8088EC18; // type:object size:0x8 +lbl_8088EC20 = .data:0x8088EC20; // type:object size:0x8 data:string +lbl_8088EC28 = .data:0x8088EC28; // type:object size:0x8 +lbl_8088EC30 = .data:0x8088EC30; // type:object size:0x8 +lbl_8088EC38 = .data:0x8088EC38; // type:object size:0x158 +lbl_8088ED90 = .data:0x8088ED90; // type:object size:0xC data:string +lbl_8088ED9C = .data:0x8088ED9C; // type:object size:0xC +__vt__8TrackDir = .data:0x8088EDA8; // type:object size:0x2B4 +lbl_8088F05C = .data:0x8088F05C; // type:object size:0xC +lbl_8088F068 = .data:0x8088F068; // type:object size:0x8 data:string +lbl_8088F070 = .data:0x8088F070; // type:object size:0x1B0 +lbl_8088F220 = .data:0x8088F220; // type:object size:0x58 +lbl_8088F278 = .data:0x8088F278; // type:object size:0x20 +lbl_8088F298 = .data:0x8088F298; // type:object size:0x10 +lbl_8088F2A8 = .data:0x8088F2A8; // type:object size:0x8 +lbl_8088F2B0 = .data:0x8088F2B0; // type:object size:0x58 +lbl_8088F308 = .data:0x8088F308; // type:object size:0x28 +lbl_8088F330 = .data:0x8088F330; // type:object size:0x10 +lbl_8088F340 = .data:0x8088F340; // type:object size:0x8 +lbl_8088F348 = .data:0x8088F348; // type:object size:0x4C +lbl_8088F394 = .data:0x8088F394; // type:object size:0x14 +lbl_8088F3A8 = .data:0x8088F3A8; // type:object size:0x8 +__vt__11TrackWidget = .data:0x8088F3B0; // type:object size:0xD0 +lbl_8088F480 = .data:0x8088F480; // type:object size:0x8 data:string +lbl_8088F488 = .data:0x8088F488; // type:object size:0x18 +__RTTI__7RndFont = .data:0x8088F4A0; // type:object size:0x8 +lbl_8088F4A8 = .data:0x8088F4A8; // type:object size:0x18 +lbl_8088F4C0 = .data:0x8088F4C0; // type:object size:0x1C +lbl_8088F4DC = .data:0x8088F4DC; // type:object size:0xC +lbl_8088F4E8 = .data:0x8088F4E8; // type:object size:0x8 +lbl_8088F4F0 = .data:0x8088F4F0; // type:object size:0x8 +lbl_8088F4F8 = .data:0x8088F4F8; // type:object size:0x8 data:string +lbl_8088F500 = .data:0x8088F500; // type:object size:0x98 +lbl_8088F598 = .data:0x8088F598; // type:object size:0x10 +lbl_8088F5A8 = .data:0x8088F5A8; // type:object size:0x30 +__RTTI__12WiiMultiMesh = .data:0x8088F5D8; // type:object size:0x8 +lbl_8088F5E0 = .data:0x8088F5E0; // type:object size:0x58 +lbl_8088F638 = .data:0x8088F638; // type:object size:0x10 +lbl_8088F648 = .data:0x8088F648; // type:object size:0x18 +lbl_8088F660 = .data:0x8088F660; // type:object size:0x8 +lbl_8088F668 = .data:0x8088F668; // type:object size:0x58 +lbl_8088F6C0 = .data:0x8088F6C0; // type:object size:0x10 +lbl_8088F6D0 = .data:0x8088F6D0; // type:object size:0x18 +lbl_8088F6E8 = .data:0x8088F6E8; // type:object size:0x8 +lbl_8088F6F0 = .data:0x8088F6F0; // type:object size:0x58 +lbl_8088F748 = .data:0x8088F748; // type:object size:0x20 +lbl_8088F768 = .data:0x8088F768; // type:object size:0x10 +lbl_8088F778 = .data:0x8088F778; // type:object size:0x8 +lbl_8088F780 = .data:0x8088F780; // type:object size:0x58 +lbl_8088F7D8 = .data:0x8088F7D8; // type:object size:0x14 +lbl_8088F7EC = .data:0x8088F7EC; // type:object size:0x14 +lbl_8088F800 = .data:0x8088F800; // type:object size:0x8 +lbl_8088F808 = .data:0x8088F808; // type:object size:0x58 +lbl_8088F860 = .data:0x8088F860; // type:object size:0x14 +lbl_8088F874 = .data:0x8088F874; // type:object size:0x14 +lbl_8088F888 = .data:0x8088F888; // type:object size:0x8 +lbl_8088F890 = .data:0x8088F890; // type:object size:0xC +lbl_8088F89C = .data:0x8088F89C; // type:object size:0x14 +__vt__17LabelNumberTicker = .data:0x8088F8B0; // type:object size:0x168 +lbl_8088FA18 = .data:0x8088FA18; // type:object size:0x14 +lbl_8088FA2C = .data:0x8088FA2C; // type:object size:0x3C +__RTTI__17LabelNumberTicker = .data:0x8088FA68; // type:object size:0x8 +lbl_8088FA70 = .data:0x8088FA70; // type:object size:0x14 +lbl_8088FA84 = .data:0x8088FA84; // type:object size:0xC +lbl_8088FA90 = .data:0x8088FA90; // type:object size:0x8 data:string +lbl_8088FA98 = .data:0x8088FA98; // type:object size:0x18 +__vt__18LabelShrinkWrapper = .data:0x8088FAB0; // type:object size:0x168 +lbl_8088FC18 = .data:0x8088FC18; // type:object size:0x14 +lbl_8088FC2C = .data:0x8088FC2C; // type:object size:0x3C +__RTTI__18LabelShrinkWrapper = .data:0x8088FC68; // type:object size:0x8 +lbl_8088FC70 = .data:0x8088FC70; // type:object size:0x14 +lbl_8088FC84 = .data:0x8088FC84; // type:object size:0xC +lbl_8088FC90 = .data:0x8088FC90; // type:object size:0x8 data:string +lbl_8088FC98 = .data:0x8088FC98; // type:object size:0x18 +lbl_8088FCB0 = .data:0x8088FCB0; // type:object size:0xC data:string +lbl_8088FCBC = .data:0x8088FCBC; // type:object size:0x24 +lbl_8088FCE0 = .data:0x8088FCE0; // type:object size:0x8 +lbl_8088FCE8 = .data:0x8088FCE8; // type:object size:0xC +lbl_8088FCF4 = .data:0x8088FCF4; // type:object size:0x1C +lbl_8088FD10 = .data:0x8088FD10; // type:object size:0x8 +lbl_8088FD18 = .data:0x8088FD18; // type:object size:0x10 +lbl_8088FD28 = .data:0x8088FD28; // type:object size:0x18 +__RTTI__12UIListWidget = .data:0x8088FD40; // type:object size:0x8 +lbl_8088FD48 = .data:0x8088FD48; // type:object size:0x8 +__vt__8PanelDir = .data:0x8088FD50; // type:object size:0x264 +lbl_8088FFB4 = .data:0x8088FFB4; // type:object size:0x3C +__vt__10Screenshot = .data:0x8088FFF0; // type:object size:0xD0 +lbl_808900C0 = .data:0x808900C0; // type:object size:0xC +lbl_808900CC = .data:0x808900CC; // type:object size:0x24 +__RTTI__10Screenshot = .data:0x808900F0; // type:object size:0x8 +lbl_808900F8 = .data:0x808900F8; // type:object size:0xC +lbl_80890104 = .data:0x80890104; // type:object size:0xC +lbl_80890110 = .data:0x80890110; // type:object size:0x8 data:string +lbl_80890118 = .data:0x80890118; // type:object size:0xC +lbl_80890124 = .data:0x80890124; // type:object size:0x1C +lbl_80890140 = .data:0x80890140; // type:object size:0x10 +lbl_80890150 = .data:0x80890150; // type:object size:0x8 +__vt__12ScrollSelect = .data:0x80890158; // type:object size:0x20 +lbl_80890178 = .data:0x80890178; // type:object size:0x18 data:string +__vt__9UIManager = .data:0x80890190; // type:object size:0xA0 +lbl_80890230 = .data:0x80890230; // type:object size:0x10 +lbl_80890240 = .data:0x80890240; // type:object size:0x8 data:string +lbl_80890248 = .data:0x80890248; // type:object size:0x10 +lbl_80890258 = .data:0x80890258; // type:object size:0x8 data:string +lbl_80890260 = .data:0x80890260; // type:object size:0xC +lbl_8089026C = .data:0x8089026C; // type:object size:0xC +lbl_80890278 = .data:0x80890278; // type:object size:0x8 data:string +lbl_80890280 = .data:0x80890280; // type:object size:0xF0 +__vt__8UIButton = .data:0x80890370; // type:object size:0x170 +lbl_808904E0 = .data:0x808904E0; // type:object size:0xC +lbl_808904EC = .data:0x808904EC; // type:object size:0xC +lbl_808904F8 = .data:0x808904F8; // type:object size:0x8 data:string +lbl_80890500 = .data:0x80890500; // type:object size:0x10 +__vt__7UIColor = .data:0x80890510; // type:object size:0x5C +lbl_8089056C = .data:0x8089056C; // type:object size:0xC +lbl_80890578 = .data:0x80890578; // type:object size:0x8 data:string +__vt__11UIComponent = .data:0x80890580; // type:object size:0x168 +lbl_808906E8 = .data:0x808906E8; // type:object size:0x18 +lbl_80890700 = .data:0x80890700; // type:object size:0x20 +lbl_80890720 = .data:0x80890720; // type:object size:0x10 +lbl_80890730 = .data:0x80890730; // type:object size:0x8 +lbl_80890738 = .data:0x80890738; // type:object size:0xC data:string +lbl_80890744 = .data:0x80890744; // type:object size:0xC +lbl_80890750 = .data:0x80890750; // type:object size:0x8 data:string +lbl_80890758 = .data:0x80890758; // type:object size:0x98 +lbl_808907F0 = .data:0x808907F0; // type:object size:0xC +lbl_808907FC = .data:0x808907FC; // type:object size:0x5C +__RTTI__10UILabelDir = .data:0x80890858; // type:object size:0x8 +lbl_80890860 = .data:0x80890860; // type:object size:0x10 +lbl_80890870 = .data:0x80890870; // type:object size:0x18 +__RTTI__14UIFontImporter = .data:0x80890888; // type:object size:0x8 +__vt__7UILabel = .data:0x80890890; // type:object size:0x170 +lbl_80890A00 = .data:0x80890A00; // type:object size:0x10 +lbl_80890A10 = .data:0x80890A10; // type:object size:0x8 data:string +lbl_80890A18 = .data:0x80890A18; // type:object size:0x8 +lbl_80890A20 = .data:0x80890A20; // type:object size:0x8 data:string +lbl_80890A28 = .data:0x80890A28; // type:object size:0x98 +lbl_80890AC0 = .data:0x80890AC0; // type:object size:0x18 +lbl_80890AD8 = .data:0x80890AD8; // type:object size:0x18 +lbl_80890AF0 = .data:0x80890AF0; // type:object size:0x10 +lbl_80890B00 = .data:0x80890B00; // type:object size:0x8 +__vt__14UIFontImporter = .data:0x80890B08; // type:object size:0x88 +lbl_80890B90 = .data:0x80890B90; // type:object size:0x18 +lbl_80890BA8 = .data:0x80890BA8; // type:object size:0x20 +lbl_80890BC8 = .data:0x80890BC8; // type:object size:0x10 +lbl_80890BD8 = .data:0x80890BD8; // type:object size:0x8 +lbl_80890BE0 = .data:0x80890BE0; // type:object size:0x18 +lbl_80890BF8 = .data:0x80890BF8; // type:object size:0x20 +lbl_80890C18 = .data:0x80890C18; // type:object size:0x10 +lbl_80890C28 = .data:0x80890C28; // type:object size:0x8 +lbl_80890C30 = .data:0x80890C30; // type:object size:0x14 +lbl_80890C44 = .data:0x80890C44; // type:object size:0xC +lbl_80890C50 = .data:0x80890C50; // type:object size:0x8 data:string +lbl_80890C58 = .data:0x80890C58; // type:object size:0x100 +lbl_80890D58 = .data:0x80890D58; // type:object size:0x60 +lbl_80890DB8 = .data:0x80890DB8; // type:object size:0x14 +lbl_80890DCC = .data:0x80890DCC; // type:object size:0xC +lbl_80890DD8 = .data:0x80890DD8; // type:object size:0x8 +lbl_80890DE0 = .data:0x80890DE0; // type:object size:0x60 +lbl_80890E40 = .data:0x80890E40; // type:object size:0x10 +lbl_80890E50 = .data:0x80890E50; // type:object size:0x10 +lbl_80890E60 = .data:0x80890E60; // type:object size:0x8 +__vt__10UILabelDir = .data:0x80890E68; // type:object size:0x274 +lbl_808910DC = .data:0x808910DC; // type:object size:0xC +lbl_808910E8 = .data:0x808910E8; // type:object size:0x8 data:string +lbl_808910F0 = .data:0x808910F0; // type:object size:0xC +lbl_808910FC = .data:0x808910FC; // type:object size:0x64 +__RTTI__9UIListDir = .data:0x80891160; // type:object size:0x8 +lbl_80891168 = .data:0x80891168; // type:object size:0xC +lbl_80891174 = .data:0x80891174; // type:object size:0x1C +lbl_80891190 = .data:0x80891190; // type:object size:0x10 +lbl_808911A0 = .data:0x808911A0; // type:object size:0x8 +__vt__6UIList = .data:0x808911A8; // type:object size:0x238 +lbl_808913E0 = .data:0x808913E0; // type:object size:0x18 +lbl_808913F8 = .data:0x808913F8; // type:object size:0x20 +lbl_80891418 = .data:0x80891418; // type:object size:0x10 +lbl_80891428 = .data:0x80891428; // type:object size:0x8 +__vt__19UIListStateCallback = .data:0x80891430; // type:object size:0x14 +lbl_80891444 = .data:0x80891444; // type:object size:0x10 +lbl_80891454 = .data:0x80891454; // type:object size:0xC data:string +lbl_80891460 = .data:0x80891460; // type:object size:0x10 data:string +lbl_80891470 = .data:0x80891470; // type:object size:0xC +lbl_8089147C = .data:0x8089147C; // type:object size:0x10 +lbl_8089148C = .data:0x8089148C; // type:object size:0xC data:string +lbl_80891498 = .data:0x80891498; // type:object size:0x18 +lbl_808914B0 = .data:0x808914B0; // type:object size:0x8 +lbl_808914B8 = .data:0x808914B8; // type:object size:0x8 data:string +lbl_808914C0 = .data:0x808914C0; // type:object size:0xC +lbl_808914CC = .data:0x808914CC; // type:object size:0xC +lbl_808914D8 = .data:0x808914D8; // type:object size:0x10 +lbl_808914E8 = .data:0x808914E8; // type:object size:0x48 +lbl_80891530 = .data:0x80891530; // type:object size:0x7C +lbl_808915AC = .data:0x808915AC; // type:object size:0xC data:string +lbl_808915B8 = .data:0x808915B8; // type:object size:0x20 +lbl_808915D8 = .data:0x808915D8; // type:object size:0x8 +lbl_808915E0 = .data:0x808915E0; // type:object size:0x8 +lbl_808915E8 = .data:0x808915E8; // type:object size:0x8 data:string +lbl_808915F0 = .data:0x808915F0; // type:object size:0x18 +lbl_80891608 = .data:0x80891608; // type:object size:0x14 data:string +lbl_8089161C = .data:0x8089161C; // type:object size:0xC +lbl_80891628 = .data:0x80891628; // type:object size:0x8 +lbl_80891630 = .data:0x80891630; // type:object size:0x84 +lbl_808916B4 = .data:0x808916B4; // type:object size:0x10 +lbl_808916C4 = .data:0x808916C4; // type:object size:0x24 +lbl_808916E8 = .data:0x808916E8; // type:object size:0x8 +lbl_808916F0 = .data:0x808916F0; // type:object size:0x18 +lbl_80891708 = .data:0x80891708; // type:object size:0x18 +lbl_80891720 = .data:0x80891720; // type:object size:0x8 +lbl_80891728 = .data:0x80891728; // type:object size:0x8 +lbl_80891730 = .data:0x80891730; // type:object size:0x8 data:string +lbl_80891738 = .data:0x80891738; // type:object size:0x4 +lbl_8089173C = .data:0x8089173C; // type:object size:0x4 +__vt__9UIListDir = .data:0x80891740; // type:object size:0x2D4 +lbl_80891A14 = .data:0x80891A14; // type:object size:0xC +lbl_80891A20 = .data:0x80891A20; // type:object size:0x8 data:string +lbl_80891A28 = .data:0x80891A28; // type:object size:0x8 +lbl_80891A30 = .data:0x80891A30; // type:object size:0x80 +lbl_80891AB0 = .data:0x80891AB0; // type:object size:0x10 data:string +lbl_80891AC0 = .data:0x80891AC0; // type:object size:0x20 +lbl_80891AE0 = .data:0x80891AE0; // type:object size:0x8 +lbl_80891AE8 = .data:0x80891AE8; // type:object size:0x8 +lbl_80891AF0 = .data:0x80891AF0; // type:object size:0x8 data:string +lbl_80891AF8 = .data:0x80891AF8; // type:object size:0x18 +lbl_80891B10 = .data:0x80891B10; // type:object size:0x14 +lbl_80891B24 = .data:0x80891B24; // type:object size:0xC +lbl_80891B30 = .data:0x80891B30; // type:object size:0x8 +lbl_80891B38 = .data:0x80891B38; // type:object size:0x84 +lbl_80891BBC = .data:0x80891BBC; // type:object size:0xC +lbl_80891BC8 = .data:0x80891BC8; // type:object size:0x8 data:string +lbl_80891BD0 = .data:0x80891BD0; // type:object size:0x18 +lbl_80891BE8 = .data:0x80891BE8; // type:object size:0x14 +lbl_80891BFC = .data:0x80891BFC; // type:object size:0xC +lbl_80891C08 = .data:0x80891C08; // type:object size:0x8 +lbl_80891C10 = .data:0x80891C10; // type:object size:0x84 +lbl_80891C94 = .data:0x80891C94; // type:object size:0xC +lbl_80891CA0 = .data:0x80891CA0; // type:object size:0x28 +lbl_80891CC8 = .data:0x80891CC8; // type:object size:0x8 +lbl_80891CD0 = .data:0x80891CD0; // type:object size:0x8 +lbl_80891CD8 = .data:0x80891CD8; // type:object size:0x8 data:string +lbl_80891CE0 = .data:0x80891CE0; // type:object size:0x8 +lbl_80891CE8 = .data:0x80891CE8; // type:object size:0x60 +__vt__14UIListProvider = .data:0x80891D48; // type:object size:0x60 +lbl_80891DA8 = .data:0x80891DA8; // type:object size:0x18 +lbl_80891DC0 = .data:0x80891DC0; // type:object size:0x84 +lbl_80891E44 = .data:0x80891E44; // type:object size:0xC +lbl_80891E50 = .data:0x80891E50; // type:object size:0x8 data:string +lbl_80891E58 = .data:0x80891E58; // type:object size:0x4 +lbl_80891E5C = .data:0x80891E5C; // type:object size:0x4 +lbl_80891E60 = .data:0x80891E60; // type:object size:0x4 data:4byte +lbl_80891E64 = .data:0x80891E64; // type:object size:0x1C +lbl_80891E80 = .data:0x80891E80; // type:object size:0x18 +lbl_80891E98 = .data:0x80891E98; // type:object size:0x10 +lbl_80891EA8 = .data:0x80891EA8; // type:object size:0x8 +lbl_80891EB0 = .data:0x80891EB0; // type:object size:0x84 +lbl_80891F34 = .data:0x80891F34; // type:object size:0x10 +lbl_80891F44 = .data:0x80891F44; // type:object size:0x24 +lbl_80891F68 = .data:0x80891F68; // type:object size:0x8 +lbl_80891F70 = .data:0x80891F70; // type:object size:0x18 +lbl_80891F88 = .data:0x80891F88; // type:object size:0x1C +lbl_80891FA4 = .data:0x80891FA4; // type:object size:0xC +lbl_80891FB0 = .data:0x80891FB0; // type:object size:0x8 +lbl_80891FB8 = .data:0x80891FB8; // type:object size:0x8 +lbl_80891FC0 = .data:0x80891FC0; // type:object size:0x8 data:string +__vt__12UIListWidget = .data:0x80891FC8; // type:object size:0x7C +lbl_80892044 = .data:0x80892044; // type:object size:0xC +lbl_80892050 = .data:0x80892050; // type:object size:0x8 data:string +__vt__7UIPanel = .data:0x80892058; // type:object size:0xBC +lbl_80892114 = .data:0x80892114; // type:object size:0x1C +__vt__9UIPicture = .data:0x80892130; // type:object size:0x188 +lbl_808922B8 = .data:0x808922B8; // type:object size:0x8 +lbl_808922C0 = .data:0x808922C0; // type:object size:0x8 data:string +lbl_808922C8 = .data:0x808922C8; // type:object size:0x38 +__vt__7UIProxy = .data:0x80892300; // type:object size:0x168 +lbl_80892468 = .data:0x80892468; // type:object size:0x8 data:string +lbl_80892470 = .data:0x80892470; // type:object size:0x40 +__RTTI__7UIProxy = .data:0x808924B0; // type:object size:0x8 +lbl_808924B8 = .data:0x808924B8; // type:object size:0x8 +lbl_808924C0 = .data:0x808924C0; // type:object size:0x8 data:string +lbl_808924C8 = .data:0x808924C8; // type:object size:0x30 +__vt__8UIScreen = .data:0x808924F8; // type:object size:0x90 +lbl_80892588 = .data:0x80892588; // type:object size:0x8 +lbl_80892590 = .data:0x80892590; // type:object size:0x8 data:string +lbl_80892598 = .data:0x80892598; // type:object size:0x68 +__vt__8UISlider = .data:0x80892600; // type:object size:0x190 +lbl_80892790 = .data:0x80892790; // type:object size:0xC +lbl_8089279C = .data:0x8089279C; // type:object size:0xC +lbl_808927A8 = .data:0x808927A8; // type:object size:0x8 data:string +lbl_808927B0 = .data:0x808927B0; // type:object size:0x18 +lbl_808927C8 = .data:0x808927C8; // type:object size:0x18 +lbl_808927E0 = .data:0x808927E0; // type:object size:0xC +lbl_808927EC = .data:0x808927EC; // type:object size:0x18 +lbl_80892804 = .data:0x80892804; // type:object size:0xC +lbl_80892810 = .data:0x80892810; // type:object size:0x8 +__vt__9UITrigger = .data:0x80892818; // type:object size:0xF0 +lbl_80892908 = .data:0x80892908; // type:object size:0x18 +lbl_80892920 = .data:0x80892920; // type:object size:0x28 +lbl_80892948 = .data:0x80892948; // type:object size:0x10 +lbl_80892958 = .data:0x80892958; // type:object size:0x8 +lbl_80892960 = .data:0x80892960; // type:object size:0x18 +lbl_80892978 = .data:0x80892978; // type:object size:0x24 data:string +lbl_8089299C = .data:0x8089299C; // type:object size:0xC +lbl_808929A8 = .data:0x808929A8; // type:object size:0x8 +lbl_808929B0 = .data:0x808929B0; // type:object size:0x18 +lbl_808929C8 = .data:0x808929C8; // type:object size:0x28 +lbl_808929F0 = .data:0x808929F0; // type:object size:0x10 +lbl_80892A00 = .data:0x80892A00; // type:object size:0x8 +lbl_80892A08 = .data:0x80892A08; // type:object size:0x18 +lbl_80892A20 = .data:0x80892A20; // type:object size:0x24 +lbl_80892A44 = .data:0x80892A44; // type:object size:0xC +lbl_80892A50 = .data:0x80892A50; // type:object size:0x8 +lbl_80892A58 = .data:0x80892A58; // type:object size:0x18 +lbl_80892A70 = .data:0x80892A70; // type:object size:0x28 +lbl_80892A98 = .data:0x80892A98; // type:object size:0x10 +lbl_80892AA8 = .data:0x80892AA8; // type:object size:0x8 +lbl_80892AB0 = .data:0x80892AB0; // type:object size:0x18 +lbl_80892AC8 = .data:0x80892AC8; // type:object size:0x20 data:string +lbl_80892AE8 = .data:0x80892AE8; // type:object size:0x10 +lbl_80892AF8 = .data:0x80892AF8; // type:object size:0x8 +lbl_80892B00 = .data:0x80892B00; // type:object size:0x14 data:string +lbl_80892B14 = .data:0x80892B14; // type:object size:0xC +lbl_80892B20 = .data:0x80892B20; // type:object size:0x8 data:string +lbl_80892B28 = .data:0x80892B28; // type:object size:0x28 +__vt__7UIGuide = .data:0x80892B50; // type:object size:0x60 +lbl_80892BB0 = .data:0x80892BB0; // type:object size:0x8 data:string +lbl_80892BB8 = .data:0x80892BB8; // type:object size:0x18 +__RTTI__7UIGuide = .data:0x80892BD0; // type:object size:0x8 +lbl_80892BD8 = .data:0x80892BD8; // type:object size:0x8 +lbl_80892BE0 = .data:0x80892BE0; // type:object size:0x8 data:string +__vt__31ObjPtrList<7CamShot,9ObjectDir> = .data:0x80892BE8; // type:object size:0x18 +lbl_80892C00 = .data:0x80892C00; // type:object size:0x20 +lbl_80892C20 = .data:0x80892C20; // type:object size:0x10 +__RTTI__31ObjPtrList<7CamShot,9ObjectDir> = .data:0x80892C30; // type:object size:0x8 +__vt__13CameraManager = .data:0x80892C38; // type:object size:0x10 +lbl_80892C48 = .data:0x80892C48; // type:object size:0x10 +__RTTI__13CameraManager = .data:0x80892C58; // type:object size:0x8 +__vt__27ObjPtr<7CamShot,9ObjectDir> = .data:0x80892C60; // type:object size:0x18 +lbl_80892C78 = .data:0x80892C78; // type:object size:0x1C +lbl_80892C94 = .data:0x80892C94; // type:object size:0xC +__RTTI__27ObjPtr<7CamShot,9ObjectDir> = .data:0x80892CA0; // type:object size:0x8 +lbl_80892CA8 = .data:0x80892CA8; // type:object size:0x28 +__vt__7CamShot = .data:0x80892CD0; // type:object size:0xB8 +lbl_80892D88 = .data:0x80892D88; // type:object size:0x18 +lbl_80892DA0 = .data:0x80892DA0; // type:object size:0x20 +lbl_80892DC0 = .data:0x80892DC0; // type:object size:0x10 +lbl_80892DD0 = .data:0x80892DD0; // type:object size:0x8 +lbl_80892DD8 = .data:0x80892DD8; // type:object size:0x18 +lbl_80892DF0 = .data:0x80892DF0; // type:object size:0x28 +lbl_80892E18 = .data:0x80892E18; // type:object size:0x10 +lbl_80892E28 = .data:0x80892E28; // type:object size:0x8 +lbl_80892E30 = .data:0x80892E30; // type:object size:0x18 +lbl_80892E48 = .data:0x80892E48; // type:object size:0x20 +lbl_80892E68 = .data:0x80892E68; // type:object size:0x10 +lbl_80892E78 = .data:0x80892E78; // type:object size:0x8 +lbl_80892E80 = .data:0x80892E80; // type:object size:0xC +lbl_80892E8C = .data:0x80892E8C; // type:object size:0x34 +__RTTI__9Spotlight = .data:0x80892EC0; // type:object size:0x8 +lbl_80892EC8 = .data:0x80892EC8; // type:object size:0xC +lbl_80892ED4 = .data:0x80892ED4; // type:object size:0x2C +__RTTI__10WorldCrowd = .data:0x80892F00; // type:object size:0x8 +lbl_80892F08 = .data:0x80892F08; // type:object size:0x10 +lbl_80892F18 = .data:0x80892F18; // type:object size:0x8 data:string +lbl_80892F20 = .data:0x80892F20; // type:object size:0x8 +lbl_80892F28 = .data:0x80892F28; // type:object size:0x8 data:string +lbl_80892F30 = .data:0x80892F30; // type:object size:0xD8 +__vt__10WorldCrowd = .data:0x80893008; // type:object size:0x108 +lbl_80893110 = .data:0x80893110; // type:object size:0xC +lbl_8089311C = .data:0x8089311C; // type:object size:0xC +lbl_80893128 = .data:0x80893128; // type:object size:0x8 data:string +lbl_80893130 = .data:0x80893130; // type:object size:0xA8 +__vt__12ColorPalette = .data:0x808931D8; // type:object size:0x5C +lbl_80893234 = .data:0x80893234; // type:object size:0xC +lbl_80893240 = .data:0x80893240; // type:object size:0x8 data:string +__vt__8WorldDir = .data:0x80893248; // type:object size:0x268 +lbl_808934B0 = .data:0x808934B0; // type:object size:0x18 +lbl_808934C8 = .data:0x808934C8; // type:object size:0x24 +lbl_808934EC = .data:0x808934EC; // type:object size:0xC +lbl_808934F8 = .data:0x808934F8; // type:object size:0x8 +lbl_80893500 = .data:0x80893500; // type:object size:0x18 +lbl_80893518 = .data:0x80893518; // type:object size:0x1C data:string +lbl_80893534 = .data:0x80893534; // type:object size:0xC +lbl_80893540 = .data:0x80893540; // type:object size:0x8 +lbl_80893548 = .data:0x80893548; // type:object size:0x18 +lbl_80893560 = .data:0x80893560; // type:object size:0x20 +lbl_80893580 = .data:0x80893580; // type:object size:0x10 +lbl_80893590 = .data:0x80893590; // type:object size:0x8 +lbl_80893598 = .data:0x80893598; // type:object size:0xC +lbl_808935A4 = .data:0x808935A4; // type:object size:0x14 +__RTTI__8LightHue = .data:0x808935B8; // type:object size:0x8 +lbl_808935C0 = .data:0x808935C0; // type:object size:0xC +lbl_808935CC = .data:0x808935CC; // type:object size:0xC +lbl_808935D8 = .data:0x808935D8; // type:object size:0x8 data:string +lbl_808935E0 = .data:0x808935E0; // type:object size:0x80 +__vt__10FreeCamera = .data:0x80893660; // type:object size:0x5C +lbl_808936BC = .data:0x808936BC; // type:object size:0xC +lbl_808936C8 = .data:0x808936C8; // type:object size:0x18 +__RTTI__10FreeCamera = .data:0x808936E0; // type:object size:0x8 +lbl_808936E8 = .data:0x808936E8; // type:object size:0x10 data:string +lbl_808936F8 = .data:0x808936F8; // type:object size:0x30 +__RTTI__15SpotlightDrawer = .data:0x80893728; // type:object size:0x8 +__vt__11LightPreset = .data:0x80893730; // type:object size:0xAC +lbl_808937DC = .data:0x808937DC; // type:object size:0xC +lbl_808937E8 = .data:0x808937E8; // type:object size:0x28 +__RTTI__8RndLight = .data:0x80893810; // type:object size:0x8 +lbl_80893818 = .data:0x80893818; // type:object size:0x4 +lbl_8089381C = .data:0x8089381C; // type:object size:0xC data:string +lbl_80893828 = .data:0x80893828; // type:object size:0x8 +lbl_80893830 = .data:0x80893830; // type:object size:0x8 data:string +lbl_80893838 = .data:0x80893838; // type:object size:0x78 +__vt__8LightHue = .data:0x808938B0; // type:object size:0x5C +lbl_8089390C = .data:0x8089390C; // type:object size:0xC +lbl_80893918 = .data:0x80893918; // type:object size:0x8 +lbl_80893920 = .data:0x80893920; // type:object size:0x8 data:string +lbl_80893928 = .data:0x80893928; // type:object size:0x10 +lbl_80893938 = .data:0x80893938; // type:object size:0x18 +lbl_80893950 = .data:0x80893950; // type:object size:0x8 +lbl_80893958 = .data:0x80893958; // type:object size:0x10 +__vt__15WorldReflection = .data:0x80893968; // type:object size:0x108 +lbl_80893A70 = .data:0x80893A70; // type:object size:0x10 data:string +lbl_80893A80 = .data:0x80893A80; // type:object size:0x30 +__RTTI__15WorldReflection = .data:0x80893AB0; // type:object size:0x8 +lbl_80893AB8 = .data:0x80893AB8; // type:object size:0x10 data:string +lbl_80893AC8 = .data:0x80893AC8; // type:object size:0x8 +lbl_80893AD0 = .data:0x80893AD0; // type:object size:0x8 data:string +lbl_80893AD8 = .data:0x80893AD8; // type:object size:0x8 +lbl_80893AE0 = .data:0x80893AE0; // type:object size:0x10 +lbl_80893AF0 = .data:0x80893AF0; // type:object size:0x10 +lbl_80893B00 = .data:0x80893B00; // type:object size:0x8 +lbl_80893B08 = .data:0x80893B08; // type:object size:0x4 data:float +__vt__9Spotlight = .data:0x80893B0C; // type:object size:0x13C +lbl_80893C48 = .data:0x80893C48; // type:object size:0x18 +lbl_80893C60 = .data:0x80893C60; // type:object size:0x20 data:string +lbl_80893C80 = .data:0x80893C80; // type:object size:0x10 +lbl_80893C90 = .data:0x80893C90; // type:object size:0x8 +lbl_80893C98 = .data:0x80893C98; // type:object size:0x18 +lbl_80893CB0 = .data:0x80893CB0; // type:object size:0x24 +lbl_80893CD4 = .data:0x80893CD4; // type:object size:0xC +lbl_80893CE0 = .data:0x80893CE0; // type:object size:0x8 +lbl_80893CE8 = .data:0x80893CE8; // type:object size:0xC +lbl_80893CF4 = .data:0x80893CF4; // type:object size:0x2C +__RTTI__8RndFlare = .data:0x80893D20; // type:object size:0x8 +lbl_80893D28 = .data:0x80893D28; // type:object size:0xC +lbl_80893D34 = .data:0x80893D34; // type:object size:0xC +lbl_80893D40 = .data:0x80893D40; // type:object size:0x8 data:string +lbl_80893D48 = .data:0x80893D48; // type:object size:0x8 +lbl_80893D50 = .data:0x80893D50; // type:object size:0x4 data:4byte +__vt__15SpotlightDrawer = .data:0x80893D54; // type:object size:0x12C +__vt__13PostProcessor = .data:0x80893E80; // type:object size:0x20 +lbl_80893EA0 = .data:0x80893EA0; // type:object size:0x10 data:string +lbl_80893EB0 = .data:0x80893EB0; // type:object size:0x8 +lbl_80893EB8 = .data:0x80893EB8; // type:object size:0x8 data:string +__vt__14SpotlightEnder = .data:0x80893EC0; // type:object size:0xD0 +lbl_80893F90 = .data:0x80893F90; // type:object size:0x10 +lbl_80893FA0 = .data:0x80893FA0; // type:object size:0x28 +__RTTI__14SpotlightEnder = .data:0x80893FC8; // type:object size:0x8 +lbl_80893FD0 = .data:0x80893FD0; // type:object size:0x8 +lbl_80893FD8 = .data:0x80893FD8; // type:object size:0x8 data:string +__vt__13WorldInstance = .data:0x80893FE0; // type:object size:0x250 +lbl_80894230 = .data:0x80894230; // type:object size:0x10 +lbl_80894240 = .data:0x80894240; // type:object size:0x58 +__RTTI__13WorldInstance = .data:0x80894298; // type:object size:0x8 +lbl_808942A0 = .data:0x808942A0; // type:object size:0x18 +lbl_808942B8 = .data:0x808942B8; // type:object size:0x1C +lbl_808942D4 = .data:0x808942D4; // type:object size:0xC +lbl_808942E0 = .data:0x808942E0; // type:object size:0x8 +__vt__11SharedGroup = .data:0x808942E8; // type:object size:0x84 +lbl_8089436C = .data:0x8089436C; // type:object size:0xC data:string +lbl_80894378 = .data:0x80894378; // type:object size:0x20 +__RTTI__11SharedGroup = .data:0x80894398; // type:object size:0x8 +lbl_808943A0 = .data:0x808943A0; // type:object size:0x18 +lbl_808943B8 = .data:0x808943B8; // type:object size:0x24 +lbl_808943DC = .data:0x808943DC; // type:object size:0xC +lbl_808943E8 = .data:0x808943E8; // type:object size:0x8 +lbl_808943F0 = .data:0x808943F0; // type:object size:0x14 +lbl_80894404 = .data:0x80894404; // type:object size:0xC +lbl_80894410 = .data:0x80894410; // type:object size:0x8 data:string +lbl_80894418 = .data:0x80894418; // type:object size:0x10 +__vt__9EventAnim = .data:0x80894428; // type:object size:0xA8 +lbl_808944D0 = .data:0x808944D0; // type:object size:0x8 +lbl_808944D8 = .data:0x808944D8; // type:object size:0x8 data:string +lbl_808944E0 = .data:0x808944E0; // type:object size:0x14 +lbl_808944F4 = .data:0x808944F4; // type:object size:0x14 +lbl_80894508 = .data:0x80894508; // type:object size:0x60 +lbl_80894568 = .data:0x80894568; // type:object size:0xC +lbl_80894574 = .data:0x80894574; // type:object size:0x1C +lbl_80894590 = .data:0x80894590; // type:object size:0x8 +lbl_80894598 = .data:0x80894598; // type:object size:0x18 +lbl_808945B0 = .data:0x808945B0; // type:object size:0x1C data:string +lbl_808945CC = .data:0x808945CC; // type:object size:0xC +lbl_808945D8 = .data:0x808945D8; // type:object size:0x8 +lbl_808945E0 = .data:0x808945E0; // type:object size:0x10 +lbl_808945F0 = .data:0x808945F0; // type:object size:0x20 +__RTTI__13RndAnimFilter = .data:0x80894610; // type:object size:0x8 +__vt__13RndAnimatable = .data:0x80894618; // type:object size:0xA8 +lbl_808946C0 = .data:0x808946C0; // type:object size:0xC +lbl_808946CC = .data:0x808946CC; // type:object size:0xC +lbl_808946D8 = .data:0x808946D8; // type:object size:0x8 +lbl_808946E0 = .data:0x808946E0; // type:object size:0x8 +lbl_808946E8 = .data:0x808946E8; // type:object size:0x8 data:string +lbl_808946F0 = .data:0x808946F0; // type:object size:0x48 +__vt__13RndAnimFilter = .data:0x80894738; // type:object size:0xA8 +lbl_808947E0 = .data:0x808947E0; // type:object size:0x8 +lbl_808947E8 = .data:0x808947E8; // type:object size:0x8 data:string +lbl_808947F0 = .data:0x808947F0; // type:object size:0x228 +__vt__6RndCam = .data:0x80894A18; // type:object size:0xAC +lbl_80894AC4 = .data:0x80894AC4; // type:object size:0xC +lbl_80894AD0 = .data:0x80894AD0; // type:object size:0x8 data:string +__vt__10RndCamAnim = .data:0x80894AD8; // type:object size:0xB0 +lbl_80894B88 = .data:0x80894B88; // type:object size:0xC +lbl_80894B94 = .data:0x80894B94; // type:object size:0x1C +__RTTI__10RndCamAnim = .data:0x80894BB0; // type:object size:0x8 +lbl_80894BB8 = .data:0x80894BB8; // type:object size:0x18 +lbl_80894BD0 = .data:0x80894BD0; // type:object size:0x24 +lbl_80894BF4 = .data:0x80894BF4; // type:object size:0xC +lbl_80894C00 = .data:0x80894C00; // type:object size:0x8 +lbl_80894C08 = .data:0x80894C08; // type:object size:0x8 data:string +lbl_80894C10 = .data:0x80894C10; // type:object size:0x8 +lbl_80894C18 = .data:0x80894C18; // type:object size:0x8 data:string +lbl_80894C20 = .data:0x80894C20; // type:object size:0x48 +lbl_80894C68 = .data:0x80894C68; // type:object size:0x4 +__vt__10RndConsole = .data:0x80894C6C; // type:object size:0x5C +lbl_80894CC8 = .data:0x80894CC8; // type:object size:0xC +lbl_80894CD4 = .data:0x80894CD4; // type:object size:0x14 +__RTTI__10RndConsole = .data:0x80894CE8; // type:object size:0x8 +lbl_80894CF0 = .data:0x80894CF0; // type:object size:0x4C0 +__vt__6RndDir = .data:0x808951B0; // type:object size:0x24C +lbl_808953FC = .data:0x808953FC; // type:object size:0xC +lbl_80895408 = .data:0x80895408; // type:object size:0x8 data:string +__vt__7DOFProc = .data:0x80895410; // type:object size:0x80 +lbl_80895490 = .data:0x80895490; // type:object size:0x8 data:string +lbl_80895498 = .data:0x80895498; // type:object size:0x18 +__RTTI__7DOFProc = .data:0x808954B0; // type:object size:0x8 +lbl_808954B8 = .data:0x808954B8; // type:object size:0x8 data:string +lbl_808954C0 = .data:0x808954C0; // type:object size:0x8 +lbl_808954C8 = .data:0x808954C8; // type:object size:0x8 data:string +lbl_808954D0 = .data:0x808954D0; // type:object size:0x8 data:float +__vt__11RndDrawable = .data:0x808954D8; // type:object size:0xD0 +lbl_808955A8 = .data:0x808955A8; // type:object size:0x8 +lbl_808955B0 = .data:0x808955B0; // type:object size:0x8 +lbl_808955B8 = .data:0x808955B8; // type:object size:0x8 data:string +lbl_808955C0 = .data:0x808955C0; // type:object size:0x8 data:string +__vt__10RndEnviron = .data:0x808955C8; // type:object size:0x70 +lbl_80895638 = .data:0x80895638; // type:object size:0x18 +lbl_80895650 = .data:0x80895650; // type:object size:0x24 +lbl_80895674 = .data:0x80895674; // type:object size:0xC +lbl_80895680 = .data:0x80895680; // type:object size:0x8 +lbl_80895688 = .data:0x80895688; // type:object size:0x8 +lbl_80895690 = .data:0x80895690; // type:object size:0x8 data:string +lbl_80895698 = .data:0x80895698; // type:object size:0x10 +__vt__10RndEnvAnim = .data:0x808956A8; // type:object size:0xB0 +lbl_80895758 = .data:0x80895758; // type:object size:0xC +lbl_80895764 = .data:0x80895764; // type:object size:0x1C +__RTTI__10RndEnvAnim = .data:0x80895780; // type:object size:0x8 +lbl_80895788 = .data:0x80895788; // type:object size:0x18 +lbl_808957A0 = .data:0x808957A0; // type:object size:0x24 +lbl_808957C4 = .data:0x808957C4; // type:object size:0xC +lbl_808957D0 = .data:0x808957D0; // type:object size:0x8 +lbl_808957D8 = .data:0x808957D8; // type:object size:0x8 data:string +lbl_808957E0 = .data:0x808957E0; // type:object size:0x8 +lbl_808957E8 = .data:0x808957E8; // type:object size:0x8 data:string +lbl_808957F0 = .data:0x808957F0; // type:object size:0x78 +__vt__12EventTrigger = .data:0x80895868; // type:object size:0xC0 +lbl_80895928 = .data:0x80895928; // type:object size:0x10 +lbl_80895938 = .data:0x80895938; // type:object size:0x8 +lbl_80895940 = .data:0x80895940; // type:object size:0x8 data:string +lbl_80895948 = .data:0x80895948; // type:object size:0x100 +__vt__8RndFlare = .data:0x80895A48; // type:object size:0x110 +lbl_80895B58 = .data:0x80895B58; // type:object size:0x8 +lbl_80895B60 = .data:0x80895B60; // type:object size:0x8 data:string +lbl_80895B68 = .data:0x80895B68; // type:object size:0x48 +lbl_80895BB0 = .data:0x80895BB0; // type:object size:0x4 +__vt__7RndFont = .data:0x80895BB4; // type:object size:0x5C +lbl_80895C10 = .data:0x80895C10; // type:object size:0x18 +lbl_80895C28 = .data:0x80895C28; // type:object size:0x20 data:string +lbl_80895C48 = .data:0x80895C48; // type:object size:0x10 +lbl_80895C58 = .data:0x80895C58; // type:object size:0x8 +lbl_80895C60 = .data:0x80895C60; // type:object size:0x8 +lbl_80895C68 = .data:0x80895C68; // type:object size:0x8 +lbl_80895C70 = .data:0x80895C70; // type:object size:0x8 data:string +lbl_80895C78 = .data:0x80895C78; // type:object size:0x130 +lbl_80895DA8 = .data:0x80895DA8; // type:object size:0x7C +lbl_80895E24 = .data:0x80895E24; // type:object size:0xE4 +__vt__12RndGenerator = .data:0x80895F08; // type:object size:0x16C +lbl_80896074 = .data:0x80896074; // type:object size:0x10 +lbl_80896084 = .data:0x80896084; // type:object size:0x34 +__RTTI__12RndGenerator = .data:0x808960B8; // type:object size:0x8 +lbl_808960C0 = .data:0x808960C0; // type:object size:0x18 +lbl_808960D8 = .data:0x808960D8; // type:object size:0x24 +lbl_808960FC = .data:0x808960FC; // type:object size:0xC +lbl_80896108 = .data:0x80896108; // type:object size:0x8 +lbl_80896110 = .data:0x80896110; // type:object size:0x18 +lbl_80896128 = .data:0x80896128; // type:object size:0x20 data:string +lbl_80896148 = .data:0x80896148; // type:object size:0x10 +lbl_80896158 = .data:0x80896158; // type:object size:0x3E8 +lbl_80896540 = .data:0x80896540; // type:object size:0xC +lbl_8089654C = .data:0x8089654C; // type:object size:0xC +lbl_80896558 = .data:0x80896558; // type:object size:0x28 +lbl_80896580 = .data:0x80896580; // type:object size:0x90 +lbl_80896610 = .data:0x80896610; // type:object size:0x14 +lbl_80896624 = .data:0x80896624; // type:object size:0xC +lbl_80896630 = .data:0x80896630; // type:object size:0x10 +lbl_80896640 = .data:0x80896640; // type:object size:0x8 +lbl_80896648 = .data:0x80896648; // type:object size:0x14 +lbl_8089665C = .data:0x8089665C; // type:object size:0xC +lbl_80896668 = .data:0x80896668; // type:object size:0x10 +lbl_80896678 = .data:0x80896678; // type:object size:0x8 +lbl_80896680 = .data:0x80896680; // type:object size:0x14 +lbl_80896694 = .data:0x80896694; // type:object size:0xC +lbl_808966A0 = .data:0x808966A0; // type:object size:0x8 +lbl_808966A8 = .data:0x808966A8; // type:object size:0x10 +__vt__8RndGroup = .data:0x808966B8; // type:object size:0x180 +lbl_80896838 = .data:0x80896838; // type:object size:0x8 +lbl_80896840 = .data:0x80896840; // type:object size:0x8 data:string +lbl_80896848 = .data:0x80896848; // type:object size:0x18 +__vt__11HiResScreen = .data:0x80896860; // type:object size:0xC +lbl_8089686C = .data:0x8089686C; // type:object size:0xC data:string +__RTTI__11HiResScreen = .data:0x80896878; // type:object size:0x8 +lbl_80896880 = .data:0x80896880; // type:object size:0x20 +__vt__7RndLine = .data:0x808968A0; // type:object size:0x110 +lbl_808969B0 = .data:0x808969B0; // type:object size:0x8 data:string +lbl_808969B8 = .data:0x808969B8; // type:object size:0x30 +__RTTI__7RndLine = .data:0x808969E8; // type:object size:0x8 +lbl_808969F0 = .data:0x808969F0; // type:object size:0x8 +lbl_808969F8 = .data:0x808969F8; // type:object size:0x8 +lbl_80896A00 = .data:0x80896A00; // type:object size:0x8 data:string +lbl_80896A08 = .data:0x80896A08; // type:object size:0x58 +__vt__8RndLight = .data:0x80896A60; // type:object size:0xB8 +lbl_80896B18 = .data:0x80896B18; // type:object size:0x18 +lbl_80896B30 = .data:0x80896B30; // type:object size:0x24 +lbl_80896B54 = .data:0x80896B54; // type:object size:0xC +lbl_80896B60 = .data:0x80896B60; // type:object size:0x8 +lbl_80896B68 = .data:0x80896B68; // type:object size:0x8 +lbl_80896B70 = .data:0x80896B70; // type:object size:0x8 +lbl_80896B78 = .data:0x80896B78; // type:object size:0x8 data:string +lbl_80896B80 = .data:0x80896B80; // type:object size:0x6 data:string +lbl_80896B86 = .data:0x80896B86; // type:object size:0xC data:string +lbl_80896B92 = .data:0x80896B92; // type:object size:0xA data:string +lbl_80896B9C = .data:0x80896B9C; // type:object size:0xC +__vt__12RndLightAnim = .data:0x80896BA8; // type:object size:0xB0 +lbl_80896C58 = .data:0x80896C58; // type:object size:0x10 +lbl_80896C68 = .data:0x80896C68; // type:object size:0x20 +__RTTI__12RndLightAnim = .data:0x80896C88; // type:object size:0x8 +lbl_80896C90 = .data:0x80896C90; // type:object size:0x18 +lbl_80896CA8 = .data:0x80896CA8; // type:object size:0x28 +lbl_80896CD0 = .data:0x80896CD0; // type:object size:0x10 +lbl_80896CE0 = .data:0x80896CE0; // type:object size:0x8 +lbl_80896CE8 = .data:0x80896CE8; // type:object size:0x18 +lbl_80896D00 = .data:0x80896D00; // type:object size:0x1C data:string +lbl_80896D1C = .data:0x80896D1C; // type:object size:0xC +lbl_80896D28 = .data:0x80896D28; // type:object size:0x8 +lbl_80896D30 = .data:0x80896D30; // type:object size:0xC +lbl_80896D3C = .data:0x80896D3C; // type:object size:0xC +lbl_80896D48 = .data:0x80896D48; // type:object size:0x8 data:string +lbl_80896D50 = .data:0x80896D50; // type:object size:0x48 +__vt__6RndMat = .data:0x80896D98; // type:object size:0x5C +lbl_80896DF4 = .data:0x80896DF4; // type:object size:0xC +lbl_80896E00 = .data:0x80896E00; // type:object size:0x8 data:string +lbl_80896E08 = .data:0x80896E08; // type:object size:0xD0 +__vt__10RndMatAnim = .data:0x80896ED8; // type:object size:0xB0 +lbl_80896F88 = .data:0x80896F88; // type:object size:0x18 +lbl_80896FA0 = .data:0x80896FA0; // type:object size:0x14 +lbl_80896FB4 = .data:0x80896FB4; // type:object size:0x14 +lbl_80896FC8 = .data:0x80896FC8; // type:object size:0x8 +lbl_80896FD0 = .data:0x80896FD0; // type:object size:0x8 +lbl_80896FD8 = .data:0x80896FD8; // type:object size:0x8 data:string +lbl_80896FE0 = .data:0x80896FE0; // type:object size:0xA0 +lbl_80897080 = .data:0x80897080; // type:object size:0x4 data:4byte +lbl_80897084 = .data:0x80897084; // type:object size:0x4 data:4byte +__vt__7RndMesh = .data:0x80897088; // type:object size:0x120 +lbl_808971A8 = .data:0x808971A8; // type:object size:0x18 +lbl_808971C0 = .data:0x808971C0; // type:object size:0x20 data:string +lbl_808971E0 = .data:0x808971E0; // type:object size:0x10 +lbl_808971F0 = .data:0x808971F0; // type:object size:0x8 +lbl_808971F8 = .data:0x808971F8; // type:object size:0x8 +lbl_80897200 = .data:0x80897200; // type:object size:0x8 data:string +lbl_80897208 = .data:0x80897208; // type:object size:0xD0 +__vt__11RndMeshAnim = .data:0x808972D8; // type:object size:0xB0 +lbl_80897388 = .data:0x80897388; // type:object size:0x18 +lbl_808973A0 = .data:0x808973A0; // type:object size:0x24 data:string +lbl_808973C4 = .data:0x808973C4; // type:object size:0xC +lbl_808973D0 = .data:0x808973D0; // type:object size:0x8 +lbl_808973D8 = .data:0x808973D8; // type:object size:0xC +lbl_808973E4 = .data:0x808973E4; // type:object size:0xC +lbl_808973F0 = .data:0x808973F0; // type:object size:0x8 data:string +lbl_808973F8 = .data:0x808973F8; // type:object size:0x88 +__vt__13RndMeshDeform = .data:0x80897480; // type:object size:0x5C +lbl_808974DC = .data:0x808974DC; // type:object size:0xC +lbl_808974E8 = .data:0x808974E8; // type:object size:0x8 data:string +lbl_808974F0 = .data:0x808974F0; // type:object size:0x68 +__vt__8RndMorph = .data:0x80897558; // type:object size:0xAC +lbl_80897604 = .data:0x80897604; // type:object size:0xC +lbl_80897610 = .data:0x80897610; // type:object size:0x20 +__RTTI__8RndMorph = .data:0x80897630; // type:object size:0x8 +lbl_80897638 = .data:0x80897638; // type:object size:0x8 +lbl_80897640 = .data:0x80897640; // type:object size:0x8 +lbl_80897648 = .data:0x80897648; // type:object size:0x8 data:string +lbl_80897650 = .data:0x80897650; // type:object size:0x70 +__vt__13RndMotionBlur = .data:0x808976C0; // type:object size:0xD0 +lbl_80897790 = .data:0x80897790; // type:object size:0x10 +lbl_808977A0 = .data:0x808977A0; // type:object size:0x28 +__RTTI__13RndMotionBlur = .data:0x808977C8; // type:object size:0x8 +lbl_808977D0 = .data:0x808977D0; // type:object size:0xC +lbl_808977DC = .data:0x808977DC; // type:object size:0xC +lbl_808977E8 = .data:0x808977E8; // type:object size:0x8 data:string +__vt__8RndMovie = .data:0x808977F0; // type:object size:0xBC +lbl_808978AC = .data:0x808978AC; // type:object size:0xC +lbl_808978B8 = .data:0x808978B8; // type:object size:0x20 +__RTTI__8RndMovie = .data:0x808978D8; // type:object size:0x8 +lbl_808978E0 = .data:0x808978E0; // type:object size:0x8 +lbl_808978E8 = .data:0x808978E8; // type:object size:0x8 +lbl_808978F0 = .data:0x808978F0; // type:object size:0x8 data:string +lbl_808978F8 = .data:0x808978F8; // type:object size:0x14 +lbl_8089790C = .data:0x8089790C; // type:object size:0x2C +__RTTI__17RndMultiMeshProxy = .data:0x80897938; // type:object size:0x8 +__vt__12RndMultiMesh = .data:0x80897940; // type:object size:0xD8 +lbl_80897A18 = .data:0x80897A18; // type:object size:0x14 +lbl_80897A2C = .data:0x80897A2C; // type:object size:0xC +lbl_80897A38 = .data:0x80897A38; // type:object size:0x8 data:string +lbl_80897A40 = .data:0x80897A40; // type:object size:0x28 +__vt__17RndMultiMeshProxy = .data:0x80897A68; // type:object size:0x10C +lbl_80897B74 = .data:0x80897B74; // type:object size:0xC +lbl_80897B80 = .data:0x80897B80; // type:object size:0x8 data:string +lbl_80897B88 = .data:0x80897B88; // type:object size:0x10 +lbl_80897B98 = .data:0x80897B98; // type:object size:0xC +lbl_80897BA4 = .data:0x80897BA4; // type:object size:0xC +lbl_80897BB0 = .data:0x80897BB0; // type:object size:0x8 +lbl_80897BB8 = .data:0x80897BB8; // type:object size:0x38 +__vt__14RndParticleSys = .data:0x80897BF0; // type:object size:0x1A8 +lbl_80897D98 = .data:0x80897D98; // type:object size:0xC data:string +lbl_80897DA4 = .data:0x80897DA4; // type:object size:0xC +lbl_80897DB0 = .data:0x80897DB0; // type:object size:0x8 data:string +lbl_80897DB8 = .data:0x80897DB8; // type:object size:0xC8 +__vt__18RndParticleSysAnim = .data:0x80897E80; // type:object size:0xB0 +lbl_80897F30 = .data:0x80897F30; // type:object size:0x14 +lbl_80897F44 = .data:0x80897F44; // type:object size:0x1C +__RTTI__18RndParticleSysAnim = .data:0x80897F60; // type:object size:0x8 +lbl_80897F68 = .data:0x80897F68; // type:object size:0x18 +lbl_80897F80 = .data:0x80897F80; // type:object size:0x2C +lbl_80897FAC = .data:0x80897FAC; // type:object size:0xC +lbl_80897FB8 = .data:0x80897FB8; // type:object size:0x8 +lbl_80897FC0 = .data:0x80897FC0; // type:object size:0x10 data:string +lbl_80897FD0 = .data:0x80897FD0; // type:object size:0x8 +lbl_80897FD8 = .data:0x80897FD8; // type:object size:0x8 data:string +lbl_80897FE0 = .data:0x80897FE0; // type:object size:0xB0 +__vt__15RndPartLauncher = .data:0x80898090; // type:object size:0x94 +lbl_80898124 = .data:0x80898124; // type:object size:0x10 +lbl_80898134 = .data:0x80898134; // type:object size:0xC +lbl_80898140 = .data:0x80898140; // type:object size:0x8 data:string +__vt__11RndPollable = .data:0x80898148; // type:object size:0x84 +lbl_808981CC = .data:0x808981CC; // type:object size:0xC +__vt__11RndPollAnim = .data:0x808981D8; // type:object size:0x118 +lbl_808982F0 = .data:0x808982F0; // type:object size:0xC data:string +lbl_808982FC = .data:0x808982FC; // type:object size:0x24 +__RTTI__11RndPollAnim = .data:0x80898320; // type:object size:0x8 +lbl_80898328 = .data:0x80898328; // type:object size:0xC +lbl_80898334 = .data:0x80898334; // type:object size:0xC +lbl_80898340 = .data:0x80898340; // type:object size:0x8 data:string +__vt__11RndPostProc = .data:0x80898348; // type:object size:0xA8 +lbl_808983F0 = .data:0x808983F0; // type:object size:0x8 +lbl_808983F8 = .data:0x808983F8; // type:object size:0x8 data:string +lbl_80898400 = .data:0x80898400; // type:object size:0x4 +lbl_80898404 = .data:0x80898404; // type:object size:0x84 +lbl_80898488 = .data:0x80898488; // type:object size:0x84 +lbl_8089850C = .data:0x8089850C; // type:object size:0xC data:string +lbl_80898518 = .data:0x80898518; // type:object size:0x28 +lbl_80898540 = .data:0x80898540; // type:object size:0x8 +lbl_80898548 = .data:0x80898548; // type:object size:0x18 +lbl_80898560 = .data:0x80898560; // type:object size:0x10 +lbl_80898570 = .data:0x80898570; // type:object size:0x8 +lbl_80898578 = .data:0x80898578; // type:object size:0x60 +lbl_808985D8 = .data:0x808985D8; // type:object size:0x8 +lbl_808985E0 = .data:0x808985E0; // type:object size:0x84 +lbl_80898664 = .data:0x80898664; // type:object size:0xC +lbl_80898670 = .data:0x80898670; // type:object size:0x28 +lbl_80898698 = .data:0x80898698; // type:object size:0x8 +lbl_808986A0 = .data:0x808986A0; // type:object size:0x1C +lbl_808986BC = .data:0x808986BC; // type:object size:0xC +lbl_808986C8 = .data:0x808986C8; // type:object size:0x8 +lbl_808986D0 = .data:0x808986D0; // type:object size:0x60 +lbl_80898730 = .data:0x80898730; // type:object size:0x8 +lbl_80898738 = .data:0x80898738; // type:object size:0x84 +lbl_808987BC = .data:0x808987BC; // type:object size:0xC +lbl_808987C8 = .data:0x808987C8; // type:object size:0x28 +lbl_808987F0 = .data:0x808987F0; // type:object size:0x8 +lbl_808987F8 = .data:0x808987F8; // type:object size:0x14 +lbl_8089880C = .data:0x8089880C; // type:object size:0xC +lbl_80898818 = .data:0x80898818; // type:object size:0x8 +lbl_80898820 = .data:0x80898820; // type:object size:0x58 +lbl_80898878 = .data:0x80898878; // type:object size:0x8 +lbl_80898880 = .data:0x80898880; // type:object size:0x84 +lbl_80898904 = .data:0x80898904; // type:object size:0x5 +lbl_80898909 = .data:0x80898909; // type:object size:0x7F +lbl_80898988 = .data:0x80898988; // type:object size:0xC +lbl_80898994 = .data:0x80898994; // type:object size:0x24 +lbl_808989B8 = .data:0x808989B8; // type:object size:0x8 +lbl_808989C0 = .data:0x808989C0; // type:object size:0x20 +lbl_808989E0 = .data:0x808989E0; // type:object size:0x10 +lbl_808989F0 = .data:0x808989F0; // type:object size:0x8 +lbl_808989F8 = .data:0x808989F8; // type:object size:0x68 +lbl_80898A60 = .data:0x80898A60; // type:object size:0x8 +lbl_80898A68 = .data:0x80898A68; // type:object size:0x84 +lbl_80898AEC = .data:0x80898AEC; // type:object size:0xC +lbl_80898AF8 = .data:0x80898AF8; // type:object size:0x28 +lbl_80898B20 = .data:0x80898B20; // type:object size:0x8 +lbl_80898B28 = .data:0x80898B28; // type:object size:0x14 +lbl_80898B3C = .data:0x80898B3C; // type:object size:0xC +lbl_80898B48 = .data:0x80898B48; // type:object size:0x8 +lbl_80898B50 = .data:0x80898B50; // type:object size:0x58 +lbl_80898BA8 = .data:0x80898BA8; // type:object size:0x8 +__vt__8PropKeys = .data:0x80898BB0; // type:object size:0x84 +lbl_80898C34 = .data:0x80898C34; // type:object size:0x7C +__vt__11RndPropAnim = .data:0x80898CB0; // type:object size:0xB0 +lbl_80898D60 = .data:0x80898D60; // type:object size:0x38 +lbl_80898D98 = .data:0x80898D98; // type:object size:0x4 data:4byte +lbl_80898D9C = .data:0x80898D9C; // type:object size:0x8 +__vt__16ModalKeyListener = .data:0x80898DA4; // type:object size:0x5C +lbl_80898E00 = .data:0x80898E00; // type:object size:0x14 +lbl_80898E14 = .data:0x80898E14; // type:object size:0x14 +__RTTI__16ModalKeyListener = .data:0x80898E28; // type:object size:0x8 +__vt__3Rnd = .data:0x80898E30; // type:object size:0x114 +lbl_80898F44 = .data:0x80898F44; // type:object size:0x4 data:string +lbl_80898F48 = .data:0x80898F48; // type:object size:0x20 +__RTTI__3Rnd = .data:0x80898F68; // type:object size:0x8 +lbl_80898F70 = .data:0x80898F70; // type:object size:0xC +lbl_80898F7C = .data:0x80898F7C; // type:object size:0x14 +lbl_80898F90 = .data:0x80898F90; // type:object size:0xC data:string +lbl_80898F9C = .data:0x80898F9C; // type:object size:0x4 data:string +lbl_80898FA0 = .data:0x80898FA0; // type:object size:0xC +lbl_80898FAC = .data:0x80898FAC; // type:object size:0xC +lbl_80898FB8 = .data:0x80898FB8; // type:object size:0x14 +lbl_80898FCC = .data:0x80898FCC; // type:object size:0x10 +lbl_80898FDC = .data:0x80898FDC; // type:object size:0x4 data:string +lbl_80898FE0 = .data:0x80898FE0; // type:object size:0x8 data:string +lbl_80898FE8 = .data:0x80898FE8; // type:object size:0x1B0 +__vt__13RndScreenMask = .data:0x80899198; // type:object size:0xD0 +lbl_80899268 = .data:0x80899268; // type:object size:0x10 +lbl_80899278 = .data:0x80899278; // type:object size:0x28 +__RTTI__13RndScreenMask = .data:0x808992A0; // type:object size:0x8 +lbl_808992A8 = .data:0x808992A8; // type:object size:0x8 +lbl_808992B0 = .data:0x808992B0; // type:object size:0x8 data:string +lbl_808992B8 = .data:0x808992B8; // type:object size:0x10 +__vt__6RndSet = .data:0x808992C8; // type:object size:0x5C +lbl_80899324 = .data:0x80899324; // type:object size:0x8 +lbl_8089932C = .data:0x8089932C; // type:object size:0x14 +__RTTI__6RndSet = .data:0x80899340; // type:object size:0x8 +lbl_80899348 = .data:0x80899348; // type:object size:0x8 +lbl_80899350 = .data:0x80899350; // type:object size:0x8 data:string +lbl_80899358 = .data:0x80899358; // type:object size:0x8 +lbl_80899360 = .data:0x80899360; // type:object size:0x500 +__vt__6RndTex = .data:0x80899860; // type:object size:0x8C +lbl_808998EC = .data:0x808998EC; // type:object size:0xC +lbl_808998F8 = .data:0x808998F8; // type:object size:0x8 data:string +lbl_80899900 = .data:0x80899900; // type:object size:0x230 +__vt__21RndTexBlendController = .data:0x80899B30; // type:object size:0x5C +lbl_80899B8C = .data:0x80899B8C; // type:object size:0xC +lbl_80899B98 = .data:0x80899B98; // type:object size:0x8 data:string +__vt__13RndTexBlender = .data:0x80899BA0; // type:object size:0xD0 +lbl_80899C70 = .data:0x80899C70; // type:object size:0x18 +lbl_80899C88 = .data:0x80899C88; // type:object size:0x30 +lbl_80899CB8 = .data:0x80899CB8; // type:object size:0x10 +lbl_80899CC8 = .data:0x80899CC8; // type:object size:0x8 +lbl_80899CD0 = .data:0x80899CD0; // type:object size:0x8 +lbl_80899CD8 = .data:0x80899CD8; // type:object size:0x8 data:string +__vt__14RndTexRenderer = .data:0x80899CE0; // type:object size:0x164 +lbl_80899E44 = .data:0x80899E44; // type:object size:0xC +lbl_80899E50 = .data:0x80899E50; // type:object size:0x8 data:string +lbl_80899E58 = .data:0x80899E58; // type:object size:0x38 +lbl_80899E90 = .data:0x80899E90; // type:object size:0x84 +__vt__7RndText = .data:0x80899F14; // type:object size:0x3BC +lbl_8089A2D0 = .data:0x8089A2D0; // type:object size:0x30 +lbl_8089A300 = .data:0x8089A300; // type:object size:0x60 +lbl_8089A360 = .data:0x8089A360; // type:object size:0x38 +lbl_8089A398 = .data:0x8089A398; // type:object size:0x8 +lbl_8089A3A0 = .data:0x8089A3A0; // type:object size:0x30 +lbl_8089A3D0 = .data:0x8089A3D0; // type:object size:0x118 +__vt__16RndTransformable = .data:0x8089A4E8; // type:object size:0xA4 +lbl_8089A58C = .data:0x8089A58C; // type:object size:0xCC +__vt__13RndTransProxy = .data:0x8089A658; // type:object size:0xAC +lbl_8089A704 = .data:0x8089A704; // type:object size:0xC +lbl_8089A710 = .data:0x8089A710; // type:object size:0x8 data:string +__vt__12RndTransAnim = .data:0x8089A718; // type:object size:0xB0 +lbl_8089A7C8 = .data:0x8089A7C8; // type:object size:0x18 +lbl_8089A7E0 = .data:0x8089A7E0; // type:object size:0x28 +lbl_8089A808 = .data:0x8089A808; // type:object size:0x10 +lbl_8089A818 = .data:0x8089A818; // type:object size:0x8 +lbl_8089A820 = .data:0x8089A820; // type:object size:0x8 +lbl_8089A828 = .data:0x8089A828; // type:object size:0x8 data:string +lbl_8089A830 = .data:0x8089A830; // type:object size:0xC8 +lbl_8089A8F8 = .data:0x8089A8F8; // type:object size:0xE8 +__vt__7RndWind = .data:0x8089A9E0; // type:object size:0x60 +lbl_8089AA40 = .data:0x8089AA40; // type:object size:0x18 +lbl_8089AA58 = .data:0x8089AA58; // type:object size:0x20 data:string +lbl_8089AA78 = .data:0x8089AA78; // type:object size:0x10 +lbl_8089AA88 = .data:0x8089AA88; // type:object size:0x8 +lbl_8089AA90 = .data:0x8089AA90; // type:object size:0x8 +lbl_8089AA98 = .data:0x8089AA98; // type:object size:0x8 +lbl_8089AAA0 = .data:0x8089AAA0; // type:object size:0x8 data:string +__vt__16RndSoftParticles = .data:0x8089AAA8; // type:object size:0xD0 +lbl_8089AB78 = .data:0x8089AB78; // type:object size:0x14 +lbl_8089AB8C = .data:0x8089AB8C; // type:object size:0x24 +__RTTI__16RndSoftParticles = .data:0x8089ABB0; // type:object size:0x8 +lbl_8089ABB8 = .data:0x8089ABB8; // type:object size:0x8 +lbl_8089ABC0 = .data:0x8089ABC0; // type:object size:0x8 data:string +__vt__10RndCubeTex = .data:0x8089ABC8; // type:object size:0x68 +lbl_8089AC30 = .data:0x8089AC30; // type:object size:0xC +lbl_8089AC3C = .data:0x8089AC3C; // type:object size:0x14 +__RTTI__10RndCubeTex = .data:0x8089AC50; // type:object size:0x8 +lbl_8089AC58 = .data:0x8089AC58; // type:object size:0x8 +lbl_8089AC60 = .data:0x8089AC60; // type:object size:0x8 data:string +__vt__6RndFur = .data:0x8089AC68; // type:object size:0x5C +lbl_8089ACC4 = .data:0x8089ACC4; // type:object size:0x8 +lbl_8089ACCC = .data:0x8089ACCC; // type:object size:0x14 +__RTTI__6RndFur = .data:0x8089ACE0; // type:object size:0x8 +lbl_8089ACE8 = .data:0x8089ACE8; // type:object size:0x8 +lbl_8089ACF0 = .data:0x8089ACF0; // type:object size:0x8 data:string +__vt__19RndAmbientOcclusion = .data:0x8089ACF8; // type:object size:0x5C +lbl_8089AD54 = .data:0x8089AD54; // type:object size:0x14 data:string +lbl_8089AD68 = .data:0x8089AD68; // type:object size:0x18 +__RTTI__19RndAmbientOcclusion = .data:0x8089AD80; // type:object size:0x8 +lbl_8089AD88 = .data:0x8089AD88; // type:object size:0x8 +lbl_8089AD90 = .data:0x8089AD90; // type:object size:0x8 data:string +__vt__10WiiDOFProc = .data:0x8089AD98; // type:object size:0xB0 +lbl_8089AE48 = .data:0x8089AE48; // type:object size:0xC +lbl_8089AE54 = .data:0x8089AE54; // type:object size:0x24 +__RTTI__10WiiDOFProc = .data:0x8089AE78; // type:object size:0x8 +lbl_8089AE80 = .data:0x8089AE80; // type:object size:0x8 data:string +lbl_8089AE88 = .data:0x8089AE88; // type:object size:0x8 +lbl_8089AE90 = .data:0x8089AE90; // type:object size:0x8 data:string +lbl_8089AE98 = .data:0x8089AE98; // type:object size:0x70 +lbl_8089AF08 = .data:0x8089AF08; // type:object size:0x4 data:float +lbl_8089AF0C = .data:0x8089AF0C; // type:object size:0xC +lbl_8089AF18 = .data:0x8089AF18; // type:object size:0x18 +lbl_8089AF30 = .data:0x8089AF30; // type:object size:0x10 +lbl_8089AF40 = .data:0x8089AF40; // type:object size:0x8 +__vt__6MicWii = .data:0x8089AF48; // type:object size:0xB0 +lbl_8089AFF8 = .data:0x8089AFF8; // type:object size:0x8 +lbl_8089B000 = .data:0x8089B000; // type:object size:0x10 +__RTTI__6MicWii = .data:0x8089B010; // type:object size:0x8 +lbl_8089B018 = .data:0x8089B018; // type:object size:0x8 +__RTTI__3Mic = .data:0x8089B020; // type:object size:0x8 +lbl_8089B028 = .data:0x8089B028; // type:object size:0x14 data:string +lbl_8089B03C = .data:0x8089B03C; // type:object size:0xC +lbl_8089B048 = .data:0x8089B048; // type:object size:0x4 +lbl_8089B04C = .data:0x8089B04C; // type:object size:0x4 +lbl_8089B050 = .data:0x8089B050; // type:object size:0x50 +lbl_8089B0A0 = .data:0x8089B0A0; // type:object size:0x8 data:string +lbl_8089B0A8 = .data:0x8089B0A8; // type:object size:0x10 +lbl_8089B0B8 = .data:0x8089B0B8; // type:object size:0x8 +__vt__8SynthWii = .data:0x8089B0C0; // type:object size:0x188 +lbl_8089B248 = .data:0x8089B248; // type:object size:0xC +lbl_8089B254 = .data:0x8089B254; // type:object size:0x3C +__RTTI__8SynthWii = .data:0x8089B290; // type:object size:0x8 +lbl_8089B298 = .data:0x8089B298; // type:object size:0x10 +lbl_8089B2A8 = .data:0x8089B2A8; // type:object size:0x20 +lbl_8089B2C8 = .data:0x8089B2C8; // type:object size:0x8 +lbl_8089B2D0 = .data:0x8089B2D0; // type:object size:0x8 +lbl_8089B2D8 = .data:0x8089B2D8; // type:object size:0x20 +__RTTI__5Synth = .data:0x8089B2F8; // type:object size:0x8 +lbl_8089B300 = .data:0x8089B300; // type:object size:0x18 +lbl_8089B318 = .data:0x8089B318; // type:object size:0x38 +lbl_8089B350 = .data:0x8089B350; // type:object size:0x4 +lbl_8089B354 = .data:0x8089B354; // type:object size:0x94 +lbl_8089B3E8 = .data:0x8089B3E8; // type:object size:0x10 +lbl_8089B3F8 = .data:0x8089B3F8; // type:object size:0x20 +lbl_8089B418 = .data:0x8089B418; // type:object size:0x8 +lbl_8089B420 = .data:0x8089B420; // type:object size:0xC +lbl_8089B42C = .data:0x8089B42C; // type:object size:0x14 +__RTTI__10SampleInst = .data:0x8089B440; // type:object size:0x8 +lbl_8089B448 = .data:0x8089B448; // type:object size:0x68 +lbl_8089B4B0 = .data:0x8089B4B0; // type:object size:0x10 +lbl_8089B4C0 = .data:0x8089B4C0; // type:object size:0x20 +lbl_8089B4E0 = .data:0x8089B4E0; // type:object size:0x8 +lbl_8089B4E8 = .data:0x8089B4E8; // type:object size:0xC data:string +lbl_8089B4F4 = .data:0x8089B4F4; // type:object size:0x14 +__RTTI__11SynthSample = .data:0x8089B508; // type:object size:0x8 +lbl_8089B510 = .data:0x8089B510; // type:object size:0xC data:string +lbl_8089B51C = .data:0x8089B51C; // type:object size:0xC +lbl_8089B528 = .data:0x8089B528; // type:object size:0x8 data:string +lbl_8089B530 = .data:0x8089B530; // type:object size:0x8 +lbl_8089B538 = .data:0x8089B538; // type:object size:0x64 +lbl_8089B59C = .data:0x8089B59C; // type:object size:0x14 +lbl_8089B5B0 = .data:0x8089B5B0; // type:object size:0x10 +lbl_8089B5C0 = .data:0x8089B5C0; // type:object size:0x8 +lbl_8089B5C8 = .data:0x8089B5C8; // type:object size:0x10 +lbl_8089B5D8 = .data:0x8089B5D8; // type:object size:0x8 +lbl_8089B5E0 = .data:0x8089B5E0; // type:object size:0x8 +__vt__Q210soundtouch16FIFOSampleBuffer = .data:0x8089B5E8; // type:object size:0x28 +lbl_8089B610 = .data:0x8089B610; // type:object size:0x20 +lbl_8089B630 = .data:0x8089B630; // type:object size:0x10 +__RTTI__Q210soundtouch16FIFOSampleBuffer = .data:0x8089B640; // type:object size:0x8 +__vt__Q210soundtouch14FIFOSamplePipe = .data:0x8089B648; // type:object size:0x24 +lbl_8089B66C = .data:0x8089B66C; // type:object size:0x1C +__RTTI__Q210soundtouch14FIFOSamplePipe = .data:0x8089B688; // type:object size:0x8 +lbl_8089B690 = .data:0x8089B690; // type:object size:0x8 +lbl_8089B698 = .data:0x8089B698; // type:object size:0x18 +lbl_8089B6B0 = .data:0x8089B6B0; // type:object size:0x18 +lbl_8089B6C8 = .data:0x8089B6C8; // type:object size:0x8 +__vt__Q210soundtouch19RateTransposerFloat = .data:0x8089B6D0; // type:object size:0x38 +lbl_8089B708 = .data:0x8089B708; // type:object size:0x20 data:string +lbl_8089B728 = .data:0x8089B728; // type:object size:0x20 +__RTTI__Q210soundtouch19RateTransposerFloat = .data:0x8089B748; // type:object size:0x8 +__vt__Q210soundtouch14RateTransposer = .data:0x8089B750; // type:object size:0x38 +lbl_8089B788 = .data:0x8089B788; // type:object size:0x1C +lbl_8089B7A4 = .data:0x8089B7A4; // type:object size:0x14 +__RTTI__Q210soundtouch14RateTransposer = .data:0x8089B7B8; // type:object size:0x8 +__vt__Q210soundtouch13FIFOProcessor = .data:0x8089B7C0; // type:object size:0x28 +lbl_8089B7E8 = .data:0x8089B7E8; // type:object size:0x1C +lbl_8089B804 = .data:0x8089B804; // type:object size:0xC +__RTTI__Q210soundtouch13FIFOProcessor = .data:0x8089B810; // type:object size:0x8 +__vt__Q210soundtouch10SoundTouch = .data:0x8089B818; // type:object size:0x2C +lbl_8089B844 = .data:0x8089B844; // type:object size:0x18 +lbl_8089B85C = .data:0x8089B85C; // type:object size:0x14 +__RTTI__Q210soundtouch10SoundTouch = .data:0x8089B870; // type:object size:0x8 +lbl_8089B878 = .data:0x8089B878; // type:object size:0x180 +__vt__Q210soundtouch9TDStretch = .data:0x8089B9F8; // type:object size:0x4C +lbl_8089BA44 = .data:0x8089BA44; // type:object size:0x18 +lbl_8089BA5C = .data:0x8089BA5C; // type:object size:0x14 +__RTTI__Q210soundtouch9TDStretch = .data:0x8089BA70; // type:object size:0x8 +__vt__8BinkClip = .data:0x8089BA78; // type:object size:0x74 +lbl_8089BAEC = .data:0x8089BAEC; // type:object size:0xC +lbl_8089BAF8 = .data:0x8089BAF8; // type:object size:0x8 data:string +lbl_8089BB00 = .data:0x8089BB00; // type:object size:0x8 +sHeap__10BinkReader = .data:0x8089BB08; // type:object size:0x4 data:4byte +lbl_8089BB0C = .data:0x8089BB0C; // type:object size:0x4 data:4byte +lbl_8089BB10 = .data:0x8089BB10; // type:object size:0x4 data:4byte +__vt__10BinkReader = .data:0x8089BB14; // type:object size:0x24 +lbl_8089BB38 = .data:0x8089BB38; // type:object size:0xC +lbl_8089BB44 = .data:0x8089BB44; // type:object size:0xC +__RTTI__10BinkReader = .data:0x8089BB50; // type:object size:0x8 +__vt__12StreamReader = .data:0x8089BB58; // type:object size:0x20 +lbl_8089BB78 = .data:0x8089BB78; // type:object size:0x10 +__RTTI__12StreamReader = .data:0x8089BB88; // type:object size:0x8 +@LOCAL@getRandomSequence32A__FP9DataArray@seed = .data:0x8089BB90; // type:object size:0x4 data:4byte +@LOCAL@getRandomSequence32B__FP9DataArray@seed = .data:0x8089BB94; // type:object size:0x4 data:4byte +@LOCAL@getRandomLong__FP9DataArray@seed = .data:0x8089BB98; // type:object size:0x8 data:4byte +gHvKeyGreen = .data:0x8089BBA0; // type:object size:0x40 +lbl_8089BBE0 = .data:0x8089BBE0; // type:object size:0x100 +__vt__12SynthEmitter = .data:0x8089BCE0; // type:object size:0x140 +lbl_8089BE20 = .data:0x8089BE20; // type:object size:0x10 +lbl_8089BE30 = .data:0x8089BE30; // type:object size:0x38 +__RTTI__12SynthEmitter = .data:0x8089BE68; // type:object size:0x8 +lbl_8089BE70 = .data:0x8089BE70; // type:object size:0x18 +lbl_8089BE88 = .data:0x8089BE88; // type:object size:0x1C +lbl_8089BEA4 = .data:0x8089BEA4; // type:object size:0xC +lbl_8089BEB0 = .data:0x8089BEB0; // type:object size:0x8 +lbl_8089BEB8 = .data:0x8089BEB8; // type:object size:0x18 +lbl_8089BED0 = .data:0x8089BED0; // type:object size:0x18 +lbl_8089BEE8 = .data:0x8089BEE8; // type:object size:0x10 +lbl_8089BEF8 = .data:0x8089BEF8; // type:object size:0x8 +lbl_8089BF00 = .data:0x8089BF00; // type:object size:0x8 data:string +lbl_8089BF08 = .data:0x8089BF08; // type:object size:0x20 +lbl_8089BF28 = .data:0x8089BF28; // type:object size:0x8 +lbl_8089BF30 = .data:0x8089BF30; // type:object size:0x8 data:string +lbl_8089BF38 = .data:0x8089BF38; // type:object size:0x18 +__RTTI__7SeqInst = .data:0x8089BF50; // type:object size:0x8 +lbl_8089BF58 = .data:0x8089BF58; // type:object size:0x10 +lbl_8089BF68 = .data:0x8089BF68; // type:object size:0x8 +lbl_8089BF70 = .data:0x8089BF70; // type:object size:0x8 data:string +lbl_8089BF78 = .data:0x8089BF78; // type:object size:0x20 +lbl_8089BF98 = .data:0x8089BF98; // type:object size:0x10 data:4byte +__vt__29ObjPtrList<5Fader,9ObjectDir> = .data:0x8089BFA8; // type:object size:0x18 +lbl_8089BFC0 = .data:0x8089BFC0; // type:object size:0x20 +lbl_8089BFE0 = .data:0x8089BFE0; // type:object size:0x10 +__RTTI__29ObjPtrList<5Fader,9ObjectDir> = .data:0x8089BFF0; // type:object size:0x8 +__vt__5Fader = .data:0x8089BFF8; // type:object size:0x5C +lbl_8089C054 = .data:0x8089C054; // type:object size:0xC +lbl_8089C060 = .data:0x8089C060; // type:object size:0x8 data:string +lbl_8089C068 = .data:0x8089C068; // type:object size:0x30 +__vt__6FxSend = .data:0x8089C098; // type:object size:0x78 +__vt__31ObjOwnerPtr<6FxSend,9ObjectDir> = .data:0x8089C110; // type:object size:0x18 +lbl_8089C128 = .data:0x8089C128; // type:object size:0x20 +lbl_8089C148 = .data:0x8089C148; // type:object size:0x10 +__RTTI__31ObjOwnerPtr<6FxSend,9ObjectDir> = .data:0x8089C158; // type:object size:0x8 +lbl_8089C160 = .data:0x8089C160; // type:object size:0x8 +lbl_8089C168 = .data:0x8089C168; // type:object size:0x8 data:string +__vt__12FxSendChorus = .data:0x8089C170; // type:object size:0x78 +lbl_8089C1E8 = .data:0x8089C1E8; // type:object size:0x10 +lbl_8089C1F8 = .data:0x8089C1F8; // type:object size:0x20 +__RTTI__12FxSendChorus = .data:0x8089C218; // type:object size:0x8 +lbl_8089C220 = .data:0x8089C220; // type:object size:0x10 +lbl_8089C230 = .data:0x8089C230; // type:object size:0x8 +lbl_8089C238 = .data:0x8089C238; // type:object size:0x8 data:string +__vt__13FxSendFlanger = .data:0x8089C240; // type:object size:0x78 +lbl_8089C2B8 = .data:0x8089C2B8; // type:object size:0x10 +lbl_8089C2C8 = .data:0x8089C2C8; // type:object size:0x20 +__RTTI__13FxSendFlanger = .data:0x8089C2E8; // type:object size:0x8 +lbl_8089C2F0 = .data:0x8089C2F0; // type:object size:0x10 +lbl_8089C300 = .data:0x8089C300; // type:object size:0x8 +lbl_8089C308 = .data:0x8089C308; // type:object size:0x8 data:string +__vt__12FxSendReverb = .data:0x8089C310; // type:object size:0x78 +lbl_8089C388 = .data:0x8089C388; // type:object size:0x10 +lbl_8089C398 = .data:0x8089C398; // type:object size:0x20 +__RTTI__12FxSendReverb = .data:0x8089C3B8; // type:object size:0x8 +lbl_8089C3C0 = .data:0x8089C3C0; // type:object size:0x10 +lbl_8089C3D0 = .data:0x8089C3D0; // type:object size:0x8 +lbl_8089C3D8 = .data:0x8089C3D8; // type:object size:0x8 data:string +__vt__11FxSendDelay = .data:0x8089C3E0; // type:object size:0x78 +lbl_8089C458 = .data:0x8089C458; // type:object size:0xC data:string +lbl_8089C464 = .data:0x8089C464; // type:object size:0xC +lbl_8089C470 = .data:0x8089C470; // type:object size:0x8 data:string +__vt__16FxSendDistortion = .data:0x8089C478; // type:object size:0x78 +lbl_8089C4F0 = .data:0x8089C4F0; // type:object size:0x14 +lbl_8089C504 = .data:0x8089C504; // type:object size:0x1C +__RTTI__16FxSendDistortion = .data:0x8089C520; // type:object size:0x8 +lbl_8089C528 = .data:0x8089C528; // type:object size:0x14 +lbl_8089C53C = .data:0x8089C53C; // type:object size:0xC +lbl_8089C548 = .data:0x8089C548; // type:object size:0x8 data:string +__vt__14FxSendCompress = .data:0x8089C550; // type:object size:0x78 +lbl_8089C5C8 = .data:0x8089C5C8; // type:object size:0x10 +lbl_8089C5D8 = .data:0x8089C5D8; // type:object size:0x20 +__RTTI__14FxSendCompress = .data:0x8089C5F8; // type:object size:0x8 +lbl_8089C600 = .data:0x8089C600; // type:object size:0x10 +lbl_8089C610 = .data:0x8089C610; // type:object size:0x8 +lbl_8089C618 = .data:0x8089C618; // type:object size:0x8 data:string +__vt__8FxSendEQ = .data:0x8089C620; // type:object size:0x78 +lbl_8089C698 = .data:0x8089C698; // type:object size:0xC +lbl_8089C6A4 = .data:0x8089C6A4; // type:object size:0x1C +__RTTI__8FxSendEQ = .data:0x8089C6C0; // type:object size:0x8 +lbl_8089C6C8 = .data:0x8089C6C8; // type:object size:0xC +lbl_8089C6D4 = .data:0x8089C6D4; // type:object size:0xC +lbl_8089C6E0 = .data:0x8089C6E0; // type:object size:0x8 data:string +__vt__17FxSendMeterEffect = .data:0x8089C6E8; // type:object size:0x78 +lbl_8089C760 = .data:0x8089C760; // type:object size:0x14 +lbl_8089C774 = .data:0x8089C774; // type:object size:0x1C +__RTTI__17FxSendMeterEffect = .data:0x8089C790; // type:object size:0x8 +lbl_8089C798 = .data:0x8089C798; // type:object size:0x14 +lbl_8089C7AC = .data:0x8089C7AC; // type:object size:0xC +lbl_8089C7B8 = .data:0x8089C7B8; // type:object size:0x8 data:string +__vt__16FxSendPitchShift = .data:0x8089C7C0; // type:object size:0x78 +lbl_8089C838 = .data:0x8089C838; // type:object size:0x14 +lbl_8089C84C = .data:0x8089C84C; // type:object size:0x1C +__RTTI__16FxSendPitchShift = .data:0x8089C868; // type:object size:0x8 +lbl_8089C870 = .data:0x8089C870; // type:object size:0x14 +lbl_8089C884 = .data:0x8089C884; // type:object size:0xC +lbl_8089C890 = .data:0x8089C890; // type:object size:0x8 data:string +__vt__13FxSendSynapse = .data:0x8089C898; // type:object size:0x78 +lbl_8089C910 = .data:0x8089C910; // type:object size:0x10 +lbl_8089C920 = .data:0x8089C920; // type:object size:0x8 +lbl_8089C928 = .data:0x8089C928; // type:object size:0x8 data:string +__vt__9FxSendWah = .data:0x8089C930; // type:object size:0x78 +lbl_8089C9A8 = .data:0x8089C9A8; // type:object size:0xC +lbl_8089C9B4 = .data:0x8089C9B4; // type:object size:0x1C +__RTTI__9FxSendWah = .data:0x8089C9D0; // type:object size:0x8 +lbl_8089C9D8 = .data:0x8089C9D8; // type:object size:0xC +lbl_8089C9E4 = .data:0x8089C9E4; // type:object size:0xC +lbl_8089C9F0 = .data:0x8089C9F0; // type:object size:0x8 data:string +lbl_8089C9F8 = .data:0x8089C9F8; // type:object size:0x8 data:string +lbl_8089CA00 = .data:0x8089CA00; // type:object size:0xC +lbl_8089CA0C = .data:0x8089CA0C; // type:object size:0xC data:4byte +lbl_8089CA18 = .data:0x8089CA18; // type:object size:0xC data:4byte +lbl_8089CA24 = .data:0x8089CA24; // type:object size:0xC data:4byte +__vt__15MetaMusicLoader = .data:0x8089CA30; // type:object size:0x20 +lbl_8089CA50 = .data:0x8089CA50; // type:object size:0x10 data:string +lbl_8089CA60 = .data:0x8089CA60; // type:object size:0x10 +__RTTI__15MetaMusicLoader = .data:0x8089CA70; // type:object size:0x8 +__vt__9MetaMusic = .data:0x8089CA78; // type:object size:0x5C +lbl_8089CAD4 = .data:0x8089CAD4; // type:object size:0xC +lbl_8089CAE0 = .data:0x8089CAE0; // type:object size:0x18 +__RTTI__9MetaMusic = .data:0x8089CAF8; // type:object size:0x8 +lbl_8089CB00 = .data:0x8089CB00; // type:object size:0x10 data:string +lbl_8089CB10 = .data:0x8089CB10; // type:object size:0x10 data:string +lbl_8089CB20 = .data:0x8089CB20; // type:object size:0x68 +__vt__3Mic = .data:0x8089CB88; // type:object size:0x9C +lbl_8089CC24 = .data:0x8089CC24; // type:object size:0x14 +lbl_8089CC38 = .data:0x8089CC38; // type:object size:0x18 +lbl_8089CC50 = .data:0x8089CC50; // type:object size:0x24 +lbl_8089CC74 = .data:0x8089CC74; // type:object size:0xC +lbl_8089CC80 = .data:0x8089CC80; // type:object size:0x8 +lbl_8089CC88 = .data:0x8089CC88; // type:object size:0x4 +__vt__14MidiInstrument = .data:0x8089CC8C; // type:object size:0x5C +__vt__38ObjPtrList<13NoteVoiceInst,9ObjectDir> = .data:0x8089CCE8; // type:object size:0x18 +lbl_8089CD00 = .data:0x8089CD00; // type:object size:0x28 +lbl_8089CD28 = .data:0x8089CD28; // type:object size:0x10 +__RTTI__38ObjPtrList<13NoteVoiceInst,9ObjectDir> = .data:0x8089CD38; // type:object size:0x8 +__vt__26ObjPtr<6FxSend,9ObjectDir> = .data:0x8089CD40; // type:object size:0x18 +lbl_8089CD58 = .data:0x8089CD58; // type:object size:0x1C +lbl_8089CD74 = .data:0x8089CD74; // type:object size:0xC +__RTTI__26ObjPtr<6FxSend,9ObjectDir> = .data:0x8089CD80; // type:object size:0x8 +__vt__13NoteVoiceInst = .data:0x8089CD88; // type:object size:0x80 +lbl_8089CE08 = .data:0x8089CE08; // type:object size:0x10 +lbl_8089CE18 = .data:0x8089CE18; // type:object size:0x18 +__RTTI__13NoteVoiceInst = .data:0x8089CE30; // type:object size:0x8 +lbl_8089CE38 = .data:0x8089CE38; // type:object size:0x18 +lbl_8089CE50 = .data:0x8089CE50; // type:object size:0x20 +lbl_8089CE70 = .data:0x8089CE70; // type:object size:0x10 +lbl_8089CE80 = .data:0x8089CE80; // type:object size:0x8 +lbl_8089CE88 = .data:0x8089CE88; // type:object size:0x10 +lbl_8089CE98 = .data:0x8089CE98; // type:object size:0x8 +lbl_8089CEA0 = .data:0x8089CEA0; // type:object size:0x8 data:string +lbl_8089CEA8 = .data:0x8089CEA8; // type:object size:0x4 +lbl_8089CEAC = .data:0x8089CEAC; // type:object size:0xA4 +lbl_8089CF50 = .data:0x8089CF50; // type:object size:0x8 data:string +lbl_8089CF58 = .data:0x8089CF58; // type:object size:0x10 +lbl_8089CF68 = .data:0x8089CF68; // type:object size:0x8 +__vt__8MoggClip = .data:0x8089CF70; // type:object size:0x78 +lbl_8089CFE8 = .data:0x8089CFE8; // type:object size:0xC +lbl_8089CFF4 = .data:0x8089CFF4; // type:object size:0x1C +__RTTI__8MoggClip = .data:0x8089D010; // type:object size:0x8 +lbl_8089D018 = .data:0x8089D018; // type:object size:0xC +lbl_8089D024 = .data:0x8089D024; // type:object size:0xC +lbl_8089D030 = .data:0x8089D030; // type:object size:0x8 data:string +lbl_8089D038 = .data:0x8089D038; // type:object size:0x18 +__vt__Q26Quazal11MoggClipMap = .data:0x8089D050; // type:object size:0x5C +lbl_8089D0AC = .data:0x8089D0AC; // type:object size:0xC data:string +lbl_8089D0B8 = .data:0x8089D0B8; // type:object size:0x18 +__RTTI__Q26Quazal11MoggClipMap = .data:0x8089D0D0; // type:object size:0x8 +lbl_8089D0D8 = .data:0x8089D0D8; // type:object size:0x18 +lbl_8089D0F0 = .data:0x8089D0F0; // type:object size:0x1C data:string +lbl_8089D10C = .data:0x8089D10C; // type:object size:0xC +lbl_8089D118 = .data:0x8089D118; // type:object size:0x8 +lbl_8089D120 = .data:0x8089D120; // type:object size:0x4 +lbl_8089D124 = .data:0x8089D124; // type:object size:0x4 +lbl_8089D128 = .data:0x8089D128; // type:object size:0x4 +__vt__6OggMap = .data:0x8089D12C; // type:object size:0xC +lbl_8089D138 = .data:0x8089D138; // type:object size:0x8 +__RTTI__6OggMap = .data:0x8089D140; // type:object size:0x8 +__vt__13SynthPollable = .data:0x8089D148; // type:object size:0x18 +lbl_8089D160 = .data:0x8089D160; // type:object size:0x98 +__vt__10SampleInst = .data:0x8089D1F8; // type:object size:0x98 +lbl_8089D290 = .data:0x8089D290; // type:object size:0xC data:4byte +lbl_8089D29C = .data:0x8089D29C; // type:object size:0x4 +lbl_8089D2A0 = .data:0x8089D2A0; // type:object size:0x18 +lbl_8089D2B8 = .data:0x8089D2B8; // type:object size:0x1C +lbl_8089D2D4 = .data:0x8089D2D4; // type:object size:0xC +lbl_8089D2E0 = .data:0x8089D2E0; // type:object size:0x8 +lbl_8089D2E8 = .data:0x8089D2E8; // type:object size:0x78 +lbl_8089D360 = .data:0x8089D360; // type:object size:0x1C +lbl_8089D37C = .data:0x8089D37C; // type:object size:0x24 +lbl_8089D3A0 = .data:0x8089D3A0; // type:object size:0x8 +lbl_8089D3A8 = .data:0x8089D3A8; // type:object size:0x78 +lbl_8089D420 = .data:0x8089D420; // type:object size:0x14 +lbl_8089D434 = .data:0x8089D434; // type:object size:0x24 +lbl_8089D458 = .data:0x8089D458; // type:object size:0x8 +lbl_8089D460 = .data:0x8089D460; // type:object size:0x78 +lbl_8089D4D8 = .data:0x8089D4D8; // type:object size:0x18 +lbl_8089D4F0 = .data:0x8089D4F0; // type:object size:0x28 +lbl_8089D518 = .data:0x8089D518; // type:object size:0x8 +lbl_8089D520 = .data:0x8089D520; // type:object size:0x78 +lbl_8089D598 = .data:0x8089D598; // type:object size:0x14 +lbl_8089D5AC = .data:0x8089D5AC; // type:object size:0x24 +lbl_8089D5D0 = .data:0x8089D5D0; // type:object size:0x8 +lbl_8089D5D8 = .data:0x8089D5D8; // type:object size:0x78 +lbl_8089D650 = .data:0x8089D650; // type:object size:0x10 +lbl_8089D660 = .data:0x8089D660; // type:object size:0x20 +lbl_8089D680 = .data:0x8089D680; // type:object size:0x8 +lbl_8089D688 = .data:0x8089D688; // type:object size:0x78 +lbl_8089D700 = .data:0x8089D700; // type:object size:0xC data:string +lbl_8089D70C = .data:0x8089D70C; // type:object size:0x1C +lbl_8089D728 = .data:0x8089D728; // type:object size:0x8 +lbl_8089D730 = .data:0x8089D730; // type:object size:0x7C +lbl_8089D7AC = .data:0x8089D7AC; // type:object size:0x8 +lbl_8089D7B4 = .data:0x8089D7B4; // type:object size:0x34 +lbl_8089D7E8 = .data:0x8089D7E8; // type:object size:0x8 +__vt__7SeqInst = .data:0x8089D7F0; // type:object size:0x78 +lbl_8089D868 = .data:0x8089D868; // type:object size:0x7C +lbl_8089D8E4 = .data:0x8089D8E4; // type:object size:0x14 +lbl_8089D8F8 = .data:0x8089D8F8; // type:object size:0x30 +lbl_8089D928 = .data:0x8089D928; // type:object size:0x8 +lbl_8089D930 = .data:0x8089D930; // type:object size:0x7C +lbl_8089D9AC = .data:0x8089D9AC; // type:object size:0x10 +lbl_8089D9BC = .data:0x8089D9BC; // type:object size:0x2C +lbl_8089D9E8 = .data:0x8089D9E8; // type:object size:0x8 +lbl_8089D9F0 = .data:0x8089D9F0; // type:object size:0x7C +lbl_8089DA6C = .data:0x8089DA6C; // type:object size:0x18 +lbl_8089DA84 = .data:0x8089DA84; // type:object size:0x2C +lbl_8089DAB0 = .data:0x8089DAB0; // type:object size:0x8 +lbl_8089DAB8 = .data:0x8089DAB8; // type:object size:0x7C +lbl_8089DB34 = .data:0x8089DB34; // type:object size:0x10 +lbl_8089DB44 = .data:0x8089DB44; // type:object size:0x2C +lbl_8089DB70 = .data:0x8089DB70; // type:object size:0x8 +lbl_8089DB78 = .data:0x8089DB78; // type:object size:0x7C +lbl_8089DBF4 = .data:0x8089DBF4; // type:object size:0xC +lbl_8089DC00 = .data:0x8089DC00; // type:object size:0x28 +lbl_8089DC28 = .data:0x8089DC28; // type:object size:0x8 +lbl_8089DC30 = .data:0x8089DC30; // type:object size:0x80 +lbl_8089DCB0 = .data:0x8089DCB0; // type:object size:0x8 data:string +lbl_8089DCB8 = .data:0x8089DCB8; // type:object size:0x28 +lbl_8089DCE0 = .data:0x8089DCE0; // type:object size:0x8 +__vt__8Sequence = .data:0x8089DCE8; // type:object size:0x80 +__vt__31ObjPtrList<7SeqInst,9ObjectDir> = .data:0x8089DD68; // type:object size:0x18 +lbl_8089DD80 = .data:0x8089DD80; // type:object size:0x20 +lbl_8089DDA0 = .data:0x8089DDA0; // type:object size:0x10 +__RTTI__31ObjPtrList<7SeqInst,9ObjectDir> = .data:0x8089DDB0; // type:object size:0x8 +lbl_8089DDB8 = .data:0x8089DDB8; // type:object size:0x8 +lbl_8089DDC0 = .data:0x8089DDC0; // type:object size:0x8 +lbl_8089DDC8 = .data:0x8089DDC8; // type:object size:0x8 data:string +lbl_8089DDD0 = .data:0x8089DDD0; // type:object size:0x14 +lbl_8089DDE4 = .data:0x8089DDE4; // type:object size:0xC +lbl_8089DDF0 = .data:0x8089DDF0; // type:object size:0x8 data:string +lbl_8089DDF8 = .data:0x8089DDF8; // type:object size:0x10 +lbl_8089DE08 = .data:0x8089DE08; // type:object size:0x8 +lbl_8089DE10 = .data:0x8089DE10; // type:object size:0x8 data:string +lbl_8089DE18 = .data:0x8089DE18; // type:object size:0x18 +lbl_8089DE30 = .data:0x8089DE30; // type:object size:0x8 +lbl_8089DE38 = .data:0x8089DE38; // type:object size:0x8 data:string +lbl_8089DE40 = .data:0x8089DE40; // type:object size:0x10 +lbl_8089DE50 = .data:0x8089DE50; // type:object size:0x8 +lbl_8089DE58 = .data:0x8089DE58; // type:object size:0x8 data:string +lbl_8089DE60 = .data:0x8089DE60; // type:object size:0x8 data:string +lbl_8089DE68 = .data:0x8089DE68; // type:object size:0x8 +lbl_8089DE70 = .data:0x8089DE70; // type:object size:0x8 data:string +lbl_8089DE78 = .data:0x8089DE78; // type:object size:0x10 +lbl_8089DE88 = .data:0x8089DE88; // type:object size:0x30 +lbl_8089DEB8 = .data:0x8089DEB8; // type:object size:0x78 +lbl_8089DF30 = .data:0x8089DF30; // type:object size:0x18 +lbl_8089DF48 = .data:0x8089DF48; // type:object size:0x24 +lbl_8089DF6C = .data:0x8089DF6C; // type:object size:0xC +lbl_8089DF78 = .data:0x8089DF78; // type:object size:0x8 +lbl_8089DF80 = .data:0x8089DF80; // type:object size:0x80 +lbl_8089E000 = .data:0x8089E000; // type:object size:0x18 +lbl_8089E018 = .data:0x8089E018; // type:object size:0x20 +lbl_8089E038 = .data:0x8089E038; // type:object size:0x10 +lbl_8089E048 = .data:0x8089E048; // type:object size:0x8 +lbl_8089E050 = .data:0x8089E050; // type:object size:0x8 +lbl_8089E058 = .data:0x8089E058; // type:object size:0x8 data:string +lbl_8089E060 = .data:0x8089E060; // type:object size:0x18 +lbl_8089E078 = .data:0x8089E078; // type:object size:0xC data:4byte +lbl_8089E084 = .data:0x8089E084; // type:object size:0xC data:4byte +lbl_8089E090 = .data:0x8089E090; // type:object size:0xC data:4byte +lbl_8089E09C = .data:0x8089E09C; // type:object size:0xC data:4byte +lbl_8089E0A8 = .data:0x8089E0A8; // type:object size:0x4 +lbl_8089E0AC = .data:0x8089E0AC; // type:object size:0x4 +lbl_8089E0B0 = .data:0x8089E0B0; // type:object size:0x104 +lbl_8089E1B4 = .data:0x8089E1B4; // type:object size:0x114 +lbl_8089E2C8 = .data:0x8089E2C8; // type:object size:0xD8 +lbl_8089E3A0 = .data:0x8089E3A0; // type:object size:0xD8 +lbl_8089E478 = .data:0x8089E478; // type:object size:0xC +lbl_8089E484 = .data:0x8089E484; // type:object size:0xC +lbl_8089E490 = .data:0x8089E490; // type:object size:0x8 +lbl_8089E498 = .data:0x8089E498; // type:object size:0x68 +lbl_8089E500 = .data:0x8089E500; // type:object size:0xA0 +lbl_8089E5A0 = .data:0x8089E5A0; // type:object size:0x338 +__vt__5Synth = .data:0x8089E8D8; // type:object size:0x180 +__vt__11ByteGrinder = .data:0x8089EA58; // type:object size:0xC +lbl_8089EA64 = .data:0x8089EA64; // type:object size:0xC data:string +__RTTI__11ByteGrinder = .data:0x8089EA70; // type:object size:0x1C0 +lbl_8089EC30 = .data:0x8089EC30; // type:object size:0x1A8 +lbl_8089EDD8 = .data:0x8089EDD8; // type:object size:0x60 +lbl_8089EE38 = .data:0x8089EE38; // type:object size:0x188 +__vt__11SynthSample = .data:0x8089EFC0; // type:object size:0x68 +lbl_8089F028 = .data:0x8089F028; // type:object size:0x8 +lbl_8089F030 = .data:0x8089F030; // type:object size:0x8 data:string +lbl_8089F038 = .data:0x8089F038; // type:object size:0x58 +lbl_8089F090 = .data:0x8089F090; // type:object size:0x8 +lbl_8089F098 = .data:0x8089F098; // type:object size:0x4 +lbl_8089F09C = .data:0x8089F09C; // type:object size:0x4 +lbl_8089F0A0 = .data:0x8089F0A0; // type:object size:0x8 +lbl_8089F0A8 = .data:0x8089F0A8; // type:object size:0x78 +gCipher__26@unnamed@VorbisReader_cpp@ = .data:0x8089F120; // type:object size:0x4 data:4byte +lbl_8089F124 = .data:0x8089F124; // type:object size:0x14 data:4byte +__vt__12VorbisReader = .data:0x8089F138; // type:object size:0x2C +lbl_8089F164 = .data:0x8089F164; // type:object size:0x10 +lbl_8089F174 = .data:0x8089F174; // type:object size:0x14 +__RTTI__12VorbisReader = .data:0x8089F188; // type:object size:0x8 +lbl_8089F190 = .data:0x8089F190; // type:object size:0x10 data:string +lbl_8089F1A0 = .data:0x8089F1A0; // type:object size:0x40 +lbl_8089F1E0 = .data:0x8089F1E0; // type:object size:0x30 +__vt__9WavReader = .data:0x8089F210; // type:object size:0x2C +lbl_8089F23C = .data:0x8089F23C; // type:object size:0xC +lbl_8089F248 = .data:0x8089F248; // type:object size:0x10 +__RTTI__9WavReader = .data:0x8089F258; // type:object size:0x8 +lbl_8089F260 = .data:0x8089F260; // type:object size:0x148 +@stringBase0 = .data:0x8089F3A8; // type:object size:0x23A data:string_table +lbl_8089F5E8 = .data:0x8089F5E8; // type:object size:0x150 +lbl_8089F738 = .data:0x8089F738; // type:object size:0x10 +jumptable_8089F748 = .data:0x8089F748; // type:object size:0x1A0 scope:local +jumptable_8089F8E8 = .data:0x8089F8E8; // type:object size:0x1AC scope:local +lbl_8089FA94 = .data:0x8089FA94; // type:object size:0x1CC +lbl_8089FC60 = .data:0x8089FC60; // type:object size:0x58 +__vt__6WiiCam = .data:0x8089FCB8; // type:object size:0xAC +lbl_8089FD64 = .data:0x8089FD64; // type:object size:0x8 +lbl_8089FD6C = .data:0x8089FD6C; // type:object size:0x2C +__RTTI__6WiiCam = .data:0x8089FD98; // type:object size:0x8 +lbl_8089FDA0 = .data:0x8089FDA0; // type:object size:0x4 data:string +lbl_8089FDA4 = .data:0x8089FDA4; // type:object size:0xC +lbl_8089FDB0 = .data:0x8089FDB0; // type:object size:0x8 data:string +lbl_8089FDB8 = .data:0x8089FDB8; // type:object size:0x70 +lbl_8089FE28 = .data:0x8089FE28; // type:object size:0xC +lbl_8089FE34 = .data:0x8089FE34; // type:object size:0x1C +lbl_8089FE50 = .data:0x8089FE50; // type:object size:0x8 +lbl_8089FE58 = .data:0x8089FE58; // type:object size:0x18 +lbl_8089FE70 = .data:0x8089FE70; // type:object size:0x28 +lbl_8089FE98 = .data:0x8089FE98; // type:object size:0x10 +lbl_8089FEA8 = .data:0x8089FEA8; // type:object size:0x8 +lbl_8089FEB0 = .data:0x8089FEB0; // type:object size:0x8 data:string +lbl_8089FEB8 = .data:0x8089FEB8; // type:object size:0x8 +lbl_8089FEC0 = .data:0x8089FEC0; // type:object size:0x8 data:string +jumptable_8089FEC8 = .data:0x8089FEC8; // type:object size:0x20 scope:local +lbl_8089FEE8 = .data:0x8089FEE8; // type:object size:0x5C +lbl_8089FF44 = .data:0x8089FF44; // type:object size:0x8 +lbl_8089FF4C = .data:0x8089FF4C; // type:object size:0x1C +lbl_8089FF68 = .data:0x8089FF68; // type:object size:0x8 +lbl_8089FF70 = .data:0x8089FF70; // type:object size:0x4 data:string +lbl_8089FF74 = .data:0x8089FF74; // type:object size:0xC +lbl_8089FF80 = .data:0x8089FF80; // type:object size:0x8 data:string +lbl_8089FF88 = .data:0x8089FF88; // type:object size:0x20 data:string +lbl_8089FFA8 = .data:0x8089FFA8; // type:object size:0x8 data:4byte +__vt__7WiiMesh = .data:0x8089FFB0; // type:object size:0x120 +lbl_808A00D0 = .data:0x808A00D0; // type:object size:0x8 +lbl_808A00D8 = .data:0x808A00D8; // type:object size:0x8 +lbl_808A00E0 = .data:0x808A00E0; // type:object size:0x8 data:string +lbl_808A00E8 = .data:0x808A00E8; // type:object size:0x78 +__vt__8WiiMovie = .data:0x808A0160; // type:object size:0xBC +lbl_808A021C = .data:0x808A021C; // type:object size:0xC +lbl_808A0228 = .data:0x808A0228; // type:object size:0x28 +__RTTI__8WiiMovie = .data:0x808A0250; // type:object size:0x8 +lbl_808A0258 = .data:0x808A0258; // type:object size:0x8 +lbl_808A0260 = .data:0x808A0260; // type:object size:0x8 +lbl_808A0268 = .data:0x808A0268; // type:object size:0x8 data:string +lbl_808A0270 = .data:0x808A0270; // type:object size:0x18 +__vt__12WiiMultiMesh = .data:0x808A0288; // type:object size:0xD8 +lbl_808A0360 = .data:0x808A0360; // type:object size:0xC +lbl_808A036C = .data:0x808A036C; // type:object size:0xC +lbl_808A0378 = .data:0x808A0378; // type:object size:0x8 data:string +lbl_808A0380 = .data:0x808A0380; // type:object size:0x8 data:float +__vt__14WiiParticleSys = .data:0x808A0388; // type:object size:0x1A8 +lbl_808A0530 = .data:0x808A0530; // type:object size:0x10 +lbl_808A0540 = .data:0x808A0540; // type:object size:0x48 +__RTTI__14WiiParticleSys = .data:0x808A0588; // type:object size:0x8 +lbl_808A0590 = .data:0x808A0590; // type:object size:0xC data:string +lbl_808A059C = .data:0x808A059C; // type:object size:0xC +lbl_808A05A8 = .data:0x808A05A8; // type:object size:0x8 data:string +lbl_808A05B0 = .data:0x808A05B0; // type:object size:0xAC +lbl_808A065C = .data:0x808A065C; // type:object size:0xC data:string +lbl_808A0668 = .data:0x808A0668; // type:object size:0x28 +lbl_808A0690 = .data:0x808A0690; // type:object size:0x8 +lbl_808A0698 = .data:0x808A0698; // type:object size:0xC +lbl_808A06A4 = .data:0x808A06A4; // type:object size:0xC +lbl_808A06B0 = .data:0x808A06B0; // type:object size:0x8 data:string +lbl_808A06B8 = .data:0x808A06B8; // type:object size:0x4A0 +lbl_808A0B58 = .data:0x808A0B58; // type:object size:0x4 data:4byte +lbl_808A0B5C = .data:0x808A0B5C; // type:object size:0x4 data:4byte +lbl_808A0B60 = .data:0x808A0B60; // type:object size:0x10 +lbl_808A0B70 = .data:0x808A0B70; // type:object size:0x10 +lbl_808A0B80 = .data:0x808A0B80; // type:object size:0x10 +lbl_808A0B90 = .data:0x808A0B90; // type:object size:0x10 +__vt__8WiiLight = .data:0x808A0BA0; // type:object size:0xB4 +lbl_808A0C54 = .data:0x808A0C54; // type:object size:0xC +lbl_808A0C60 = .data:0x808A0C60; // type:object size:0x30 +__RTTI__8WiiLight = .data:0x808A0C90; // type:object size:0x8 +__vt__6WiiRnd = .data:0x808A0C98; // type:object size:0x184 +lbl_808A0E1C = .data:0x808A0E1C; // type:object size:0x8 +lbl_808A0E24 = .data:0x808A0E24; // type:object size:0x3C +__RTTI__6WiiRnd = .data:0x808A0E60; // type:object size:0x8 +lbl_808A0E68 = .data:0x808A0E68; // type:object size:0xC data:string +lbl_808A0E74 = .data:0x808A0E74; // type:object size:0x4 data:string +lbl_808A0E78 = .data:0x808A0E78; // type:object size:0x8 +lbl_808A0E80 = .data:0x808A0E80; // type:object size:0x8 +lbl_808A0E88 = .data:0x808A0E88; // type:object size:0x8 data:string +lbl_808A0E90 = .data:0x808A0E90; // type:object size:0x338 +__vt__16WiiSplitPostProc = .data:0x808A11C8; // type:object size:0x20 +lbl_808A11E8 = .data:0x808A11E8; // type:object size:0x14 +lbl_808A11FC = .data:0x808A11FC; // type:object size:0xC +__RTTI__16WiiSplitPostProc = .data:0x808A1208; // type:object size:0x8 +lbl_808A1210 = .data:0x808A1210; // type:object size:0x18 +lbl_808A1228 = .data:0x808A1228; // type:object size:0x18 +__vt__6WiiTex = .data:0x808A1240; // type:object size:0x90 +lbl_808A12D0 = .data:0x808A12D0; // type:object size:0x8 +lbl_808A12D8 = .data:0x808A12D8; // type:object size:0x20 +__RTTI__6WiiTex = .data:0x808A12F8; // type:object size:0x8 +lbl_808A1300 = .data:0x808A1300; // type:object size:0x8 +lbl_808A1308 = .data:0x808A1308; // type:object size:0x8 data:string +__vt__14WiiTexRenderer = .data:0x808A1310; // type:object size:0x164 +lbl_808A1474 = .data:0x808A1474; // type:object size:0x10 +lbl_808A1484 = .data:0x808A1484; // type:object size:0x3C +__RTTI__14WiiTexRenderer = .data:0x808A14C0; // type:object size:0x8 +lbl_808A14C8 = .data:0x808A14C8; // type:object size:0x8 +lbl_808A14D0 = .data:0x808A14D0; // type:object size:0x8 data:string +jumptable_808A14D8 = .data:0x808A14D8; // type:object size:0x1C scope:local +lbl_808A14F4 = .data:0x808A14F4; // type:object size:0x4 +jumptable_808A14F8 = .data:0x808A14F8; // type:object size:0x2C scope:local +lbl_808A1524 = .data:0x808A1524; // type:object size:0xC +mask = .data:0x808A1530; // type:object size:0x84 +jumptable_808A15B8 = .data:0x808A15B8; // type:object size:0x24 scope:local +lbl_808A15E0 = .data:0x808A15E0; // type:object size:0x20 +FLOOR1_fromdB_LOOKUP = .data:0x808A1600; // type:object size:0x400 +lbl_808A1A00 = .data:0x808A1A00; // type:object size:0x20 +crc_lookup = .data:0x808A1A20; // type:object size:0x400 +@stringBase0 = .data:0x808A1E20; // type:object size:0x5 data:string_table +@stringBase0 = .data:0x808A1E28; // type:object size:0x9 data:string_table +COS_LOOKUP = .data:0x808A1E38; // type:object size:0x204 +INVSQ_LOOKUP = .data:0x808A203C; // type:object size:0x84 +INVSQ2EXP_LOOKUP = .data:0x808A20C0; // type:object size:0x104 +FROMdB_LOOKUP = .data:0x808A21C4; // type:object size:0x8C +FROMdB2_LOOKUP = .data:0x808A2250; // type:object size:0x80 +lbl_808A22D0 = .data:0x808A22D0; // type:object size:0x14 +lbl_808A22E4 = .data:0x808A22E4; // type:object size:0x14 +lbl_808A22F8 = .data:0x808A22F8; // type:object size:0x160 +lbl_808A2458 = .data:0x808A2458; // type:object size:0x5940 +lbl_808A7D98 = .data:0x808A7D98; // type:object size:0x48 +lbl_808A7DE0 = .data:0x808A7DE0; // type:object size:0x400 +lbl_808A81E0 = .data:0x808A81E0; // type:object size:0x80 +_floor_P = .data:0x808A8260; // type:object size:0x8 +_residue_P = .data:0x808A8268; // type:object size:0xC +_mapping_P = .data:0x808A8274; // type:object size:0x4 +_poll_mapping_P = .data:0x808A8278; // type:object size:0x8 +lbl_808A8280 = .data:0x808A8280; // type:object size:0x20 +lbl_808A82A0 = .data:0x808A82A0; // type:object size:0x20 +lbl_808A82C0 = .data:0x808A82C0; // type:object size:0x20 +@LOCAL@drfti1__FiPfPi@ntryh = .data:0x808A82E0; // type:object size:0x10 +@LOCAL@drfti1__FiPfPi@tpi@0 = .data:0x808A82F0; // type:object size:0x4 data:float +@LOCAL@dradf4__FiiPfPfPfPfPf@hsqt2 = .data:0x808A82F4; // type:object size:0x4 data:float +@LOCAL@dradfg__FiiiiPfPfPfPfPfPf@tpi = .data:0x808A82F8; // type:object size:0x4 data:float +lbl_808A8300 = .data:0x808A8300; // type:object size:0x80 +lbl_808A8380 = .data:0x808A8380; // type:object size:0x100 +lbl_808A8480 = .data:0x808A8480; // type:object size:0x200 +lbl_808A8680 = .data:0x808A8680; // type:object size:0x400 +lbl_808A8A80 = .data:0x808A8A80; // type:object size:0x800 +lbl_808A9280 = .data:0x808A9280; // type:object size:0x1000 +lbl_808AA280 = .data:0x808AA280; // type:object size:0x2000 +lbl_808AC280 = .data:0x808AC280; // type:object size:0x4000 +vwin = .data:0x808B0280; // type:object size:0x20 +lbl_808B02A0 = .data:0x808B02A0; // type:object size:0x10 +lbl_808B02B0 = .data:0x808B02B0; // type:object size:0x68 data:4byte +lbl_808B0318 = .data:0x808B0318; // type:object size:0x180 +lbl_808B0498 = .data:0x808B0498; // type:object size:0x60 +jumptable_808B04F8 = .data:0x808B04F8; // type:object size:0x1C scope:local +jumptable_808B0514 = .data:0x808B0514; // type:object size:0x28 scope:local +lbl_808B0540 = .data:0x808B0540; // type:object size:0x14 +lbl_808B0554 = .data:0x808B0554; // type:object size:0xC +lbl_808B0560 = .data:0x808B0560; // type:object size:0x10 +lbl_808B0570 = .data:0x808B0570; // type:object size:0x18 +lbl_808B0588 = .data:0x808B0588; // type:object size:0x10 +lbl_808B0598 = .data:0x808B0598; // type:object size:0x18 +lbl_808B05B0 = .data:0x808B05B0; // type:object size:0x10 +lbl_808B05C0 = .data:0x808B05C0; // type:object size:0x10 +__files = .data:0x808B05D0; // type:object size:0x140 scope:global +jumptable_808B0710 = .data:0x808B0710; // type:object size:0x124 scope:local +lbl_808B0838 = .data:0x808B0838; // type:object size:0x40 +__lconv = .data:0x808B0878; // type:object size:0x38 data:4byte +lbl_808B08B0 = .data:0x808B08B0; // type:object size:0x28 +lbl_808B08D8 = .data:0x808B08D8; // type:object size:0xC0 +lbl_808B0998 = .data:0x808B0998; // type:object size:0x1C +lbl_808B09B4 = .data:0x808B09B4; // type:object size:0x34 +lbl_808B09E8 = .data:0x808B09E8; // type:object size:0x18 +lbl_808B0A00 = .data:0x808B0A00; // type:object size:0x28 +_current_locale = .data:0x808B0A28; // type:object size:0x48 +jumptable_808B0A70 = .data:0x808B0A70; // type:object size:0xE0 scope:local +@2934 = .data:0x808B0B50; // type:object size:0x150 scope:local +jumptable_808B0CA0 = .data:0x808B0CA0; // type:object size:0xE0 scope:local +jumptable_808B0D80 = .data:0x808B0D80; // type:object size:0x20 scope:local +jumptable_808B0DA0 = .data:0x808B0DA0; // type:object size:0x20 scope:local +jumptable_808B0DC0 = .data:0x808B0DC0; // type:object size:0x150 scope:local +jumptable_808B0F10 = .data:0x808B0F10; // type:object size:0x190 scope:local +jumptable_808B10A0 = .data:0x808B10A0; // type:object size:0xE0 scope:local +jumptable_808B1180 = .data:0x808B1180; // type:object size:0x150 scope:local +lbl_808B12D0 = .data:0x808B12D0; // type:object size:0x70 +lbl_808B1340 = .data:0x808B1340; // type:object size:0x10 +lbl_808B1350 = .data:0x808B1350; // type:object size:0xC +lbl_808B135C = .data:0x808B135C; // type:object size:0xC +__vt__Q23std8bad_cast = .data:0x808B1368; // type:object size:0x10 +lbl_808B1378 = .data:0x808B1378; // type:object size:0xC +lbl_808B1384 = .data:0x808B1384; // type:object size:0xC +jumptable_808B1390 = .data:0x808B1390; // type:object size:0x44 scope:local +jumptable_808B13D4 = .data:0x808B13D4; // type:object size:0x44 scope:local +lbl_808B1418 = .data:0x808B1418; // type:object size:0x10 +lbl_808B1428 = .data:0x808B1428; // type:object size:0xC +lbl_808B1434 = .data:0x808B1434; // type:object size:0x14 +jumptable_808B1448 = .data:0x808B1448; // type:object size:0x6C scope:local +lbl_808B14B8 = .data:0x808B14B8; // type:object size:0x40 data:4byte +@stringBase0 = .data:0x808B14F8; // type:object size:0xE1 scope:local data:string_table +lbl_808B15E0 = .data:0x808B15E0; // type:object size:0x20 +@stringBase0 = .data:0x808B1600; // type:object size:0x1D scope:local data:string_table +lbl_808B1620 = .data:0x808B1620; // type:object size:0x48 +lbl_808B1668 = .data:0x808B1668; // type:object size:0x28 data:string +lbl_808B1690 = .data:0x808B1690; // type:object size:0x28 data:string +jumptable_808B16B8 = .data:0x808B16B8; // type:object size:0x1C scope:local +jumptable_808B16D4 = .data:0x808B16D4; // type:object size:0x1C scope:local +lbl_808B16F0 = .data:0x808B16F0; // type:object size:0x30 +gTRKExceptionStatus = .data:0x808B1720; // type:object size:0x10 scope:local data:4byte +lbl_808B1730 = .data:0x808B1730; // type:object size:0x48 +lbl_808B1778 = .data:0x808B1778; // type:object size:0x24 +lbl_808B179C = .data:0x808B179C; // type:object size:0x4C +lbl_808B17E8 = .data:0x808B17E8; // type:object size:0x48 +lbl_808B1830 = .data:0x808B1830; // type:object size:0x80 +lbl_808B18B0 = .data:0x808B18B0; // type:object size:0x10 +lbl_808B18C0 = .data:0x808B18C0; // type:object size:0xFC0 +lbl_808B2880 = .data:0x808B2880; // type:object size:0x2000 +lbl_808B4880 = .data:0x808B4880; // type:object size:0xC0 +lbl_808B4940 = .data:0x808B4940; // type:object size:0xE0 +lbl_808B4A20 = .data:0x808B4A20; // type:object size:0x200 +lbl_808B4C20 = .data:0x808B4C20; // type:object size:0x800 +lbl_808B5420 = .data:0x808B5420; // type:object size:0x38 +lbl_808B5458 = .data:0x808B5458; // type:object size:0x18 +lbl_808B5470 = .data:0x808B5470; // type:object size:0x98 +lbl_808B5508 = .data:0x808B5508; // type:object size:0x1C +lbl_808B5524 = .data:0x808B5524; // type:object size:0x20 +lbl_808B5544 = .data:0x808B5544; // type:object size:0x44 +lbl_808B5588 = .data:0x808B5588; // type:object size:0x18 +lbl_808B55A0 = .data:0x808B55A0; // type:object size:0x3C +lbl_808B55DC = .data:0x808B55DC; // type:object size:0x34 +lbl_808B5610 = .data:0x808B5610; // type:object size:0x14 +lbl_808B5624 = .data:0x808B5624; // type:object size:0x24 +lbl_808B5648 = .data:0x808B5648; // type:object size:0x20 +lbl_808B5668 = .data:0x808B5668; // type:object size:0x20 +lbl_808B5688 = .data:0x808B5688; // type:object size:0x40 +lbl_808B56C8 = .data:0x808B56C8; // type:object size:0x14 +lbl_808B56DC = .data:0x808B56DC; // type:object size:0x30 +lbl_808B570C = .data:0x808B570C; // type:object size:0x3C +lbl_808B5748 = .data:0x808B5748; // type:object size:0x40 +lbl_808B5788 = .data:0x808B5788; // type:object size:0x2C +lbl_808B57B4 = .data:0x808B57B4; // type:object size:0x24 +lbl_808B57D8 = .data:0x808B57D8; // type:object size:0x58 +lbl_808B5830 = .data:0x808B5830; // type:object size:0x30 +lbl_808B5860 = .data:0x808B5860; // type:object size:0x50 +lbl_808B58B0 = .data:0x808B58B0; // type:object size:0x20 +lbl_808B58D0 = .data:0x808B58D0; // type:object size:0x4C +lbl_808B591C = .data:0x808B591C; // type:object size:0x114 +jumptable_808B5A30 = .data:0x808B5A30; // type:object size:0x28 scope:local +jumptable_808B5A58 = .data:0x808B5A58; // type:object size:0x28 scope:local +jumptable_808B5ADC = .data:0x808B5ADC; // type:object size:0x28 scope:local +jumptable_808B5B04 = .data:0x808B5B04; // type:object size:0x28 scope:local +lbl_808B5B30 = .data:0x808B5B30; // type:object size:0x10 data:string +lbl_808B5B40 = .data:0x808B5B40; // type:object size:0x1C +lbl_808B5B5C = .data:0x808B5B5C; // type:object size:0x12C +jumptable_808B5C88 = .data:0x808B5C88; // type:object size:0x24 scope:local +jumptable_808B5CAC = .data:0x808B5CAC; // type:object size:0x24 scope:local +lbl_808B5CD0 = .data:0x808B5CD0; // type:object size:0x30 +lbl_808B5D00 = .data:0x808B5D00; // type:object size:0xDC +lbl_808B5DDC = .data:0x808B5DDC; // type:object size:0x1C4 +jumptable_808B5FA0 = .data:0x808B5FA0; // type:object size:0x40 scope:local +lbl_808B5FE0 = .data:0x808B5FE0; // type:object size:0x84 +lbl_808B6064 = .data:0x808B6064; // type:object size:0x23C +lbl_808B62A0 = .data:0x808B62A0; // type:object size:0x40 +lbl_808B62E0 = .data:0x808B62E0; // type:object size:0x20 +lbl_808B6300 = .data:0x808B6300; // type:object size:0x180 +lbl_808B6480 = .data:0x808B6480; // type:object size:0x3C +lbl_808B64BC = .data:0x808B64BC; // type:object size:0x68 +lbl_808B6524 = .data:0x808B6524; // type:object size:0x28 +lbl_808B654C = .data:0x808B654C; // type:object size:0x34 +lbl_808B6580 = .data:0x808B6580; // type:object size:0x3C +lbl_808B65BC = .data:0x808B65BC; // type:object size:0x30 +lbl_808B65EC = .data:0x808B65EC; // type:object size:0xD4 +lbl_808B66C0 = .data:0x808B66C0; // type:object size:0x30 data:string +lbl_808B66F0 = .data:0x808B66F0; // type:object size:0x6C +lbl_808B675C = .data:0x808B675C; // type:object size:0x40 +lbl_808B679C = .data:0x808B679C; // type:object size:0x44 +lbl_808B67E0 = .data:0x808B67E0; // type:object size:0x40 +lbl_808B6820 = .data:0x808B6820; // type:object size:0x70 +lbl_808B6890 = .data:0x808B6890; // type:object size:0x2C +lbl_808B68BC = .data:0x808B68BC; // type:object size:0x2C +lbl_808B68E8 = .data:0x808B68E8; // type:object size:0x38 +lbl_808B6920 = .data:0x808B6920; // type:object size:0x5C +lbl_808B697C = .data:0x808B697C; // type:object size:0x54 +lbl_808B69D0 = .data:0x808B69D0; // type:object size:0x1C +lbl_808B69EC = .data:0x808B69EC; // type:object size:0x38 +lbl_808B6A24 = .data:0x808B6A24; // type:object size:0x40 +lbl_808B6A64 = .data:0x808B6A64; // type:object size:0x20 +lbl_808B6A84 = .data:0x808B6A84; // type:object size:0x34 +lbl_808B6AB8 = .data:0x808B6AB8; // type:object size:0x3C +lbl_808B6AF4 = .data:0x808B6AF4; // type:object size:0x3C +lbl_808B6B30 = .data:0x808B6B30; // type:object size:0x40 +lbl_808B6B70 = .data:0x808B6B70; // type:object size:0x8C +lbl_808B6BFC = .data:0x808B6BFC; // type:object size:0x50 +lbl_808B6C4C = .data:0x808B6C4C; // type:object size:0x50 +lbl_808B6C9C = .data:0x808B6C9C; // type:object size:0x198 +lbl_808B6E34 = .data:0x808B6E34; // type:object size:0x3C +lbl_808B6E70 = .data:0x808B6E70; // type:object size:0x98 +lbl_808B6F08 = .data:0x808B6F08; // type:object size:0x108 +lbl_808B7010 = .data:0x808B7010; // type:object size:0x60 data:string +lbl_808B7070 = .data:0x808B7070; // type:object size:0xFC +lbl_808B716C = .data:0x808B716C; // type:object size:0x25C +lbl_808B73C8 = .data:0x808B73C8; // type:object size:0x40 +lbl_808B7408 = .data:0x808B7408; // type:object size:0x3C +lbl_808B7444 = .data:0x808B7444; // type:object size:0x38 +lbl_808B747C = .data:0x808B747C; // type:object size:0x34 +lbl_808B74B0 = .data:0x808B74B0; // type:object size:0x30 +lbl_808B74E0 = .data:0x808B74E0; // type:object size:0x34 data:string +lbl_808B7514 = .data:0x808B7514; // type:object size:0x44 data:string +lbl_808B7558 = .data:0x808B7558; // type:object size:0x44 data:string +lbl_808B759C = .data:0x808B759C; // type:object size:0x2C +lbl_808B75C8 = .data:0x808B75C8; // type:object size:0x40 +lbl_808B7608 = .data:0x808B7608; // type:object size:0x25C +lbl_808B7864 = .data:0x808B7864; // type:object size:0x1C data:string +lbl_808B7880 = .data:0x808B7880; // type:object size:0x18 +lbl_808B7898 = .data:0x808B7898; // type:object size:0x28 +lbl_808B78C0 = .data:0x808B78C0; // type:object size:0x20 +lbl_808B78E0 = .data:0x808B78E0; // type:object size:0x30 +lbl_808B7910 = .data:0x808B7910; // type:object size:0x44 data:string +lbl_808B7954 = .data:0x808B7954; // type:object size:0x2C +lbl_808B7980 = .data:0x808B7980; // type:object size:0x28 +lbl_808B79A8 = .data:0x808B79A8; // type:object size:0x38 +lbl_808B79E0 = .data:0x808B79E0; // type:object size:0xCC +jumptable_808B7AAC = .data:0x808B7AAC; // type:object size:0x24 scope:local +lbl_808B7B58 = .data:0x808B7B58; // type:object size:0x44 data:string +lbl_808B7B9C = .data:0x808B7B9C; // type:object size:0x3C +jumptable_808B7BD8 = .data:0x808B7BD8; // type:object size:0x24 scope:local +jumptable_808B7BFC = .data:0x808B7BFC; // type:object size:0x24 scope:local +lbl_808B7C20 = .data:0x808B7C20; // type:object size:0x44 +jumptable_808B7C64 = .data:0x808B7C64; // type:object size:0x24 scope:local +jumptable_808B7C88 = .data:0x808B7C88; // type:object size:0x24 scope:local +jumptable_808B7CAC = .data:0x808B7CAC; // type:object size:0x24 scope:local +lbl_808B7CD0 = .data:0x808B7CD0; // type:object size:0x18 data:string +lbl_808B7CE8 = .data:0x808B7CE8; // type:object size:0x18 +lbl_808B7D00 = .data:0x808B7D00; // type:object size:0x20 +lbl_808B7D20 = .data:0x808B7D20; // type:object size:0x118 +lbl_808B7E38 = .data:0x808B7E38; // type:object size:0x20 data:string +lbl_808B7E58 = .data:0x808B7E58; // type:object size:0x24 +lbl_808B7E7C = .data:0x808B7E7C; // type:object size:0x120 +lbl_808B7F9C = .data:0x808B7F9C; // type:object size:0xB8 +lbl_808B8054 = .data:0x808B8054; // type:object size:0x2C data:string +lbl_808B8080 = .data:0x808B8080; // type:object size:0x58 +lbl_808B80D8 = .data:0x808B80D8; // type:object size:0x2C +lbl_808B8104 = .data:0x808B8104; // type:object size:0x24 +lbl_808B8128 = .data:0x808B8128; // type:object size:0x30 +lbl_808B8158 = .data:0x808B8158; // type:object size:0x28 +lbl_808B8180 = .data:0x808B8180; // type:object size:0x38 +lbl_808B81B8 = .data:0x808B81B8; // type:object size:0x38 data:string +lbl_808B81F0 = .data:0x808B81F0; // type:object size:0x30 +lbl_808B8220 = .data:0x808B8220; // type:object size:0xA8 +lbl_808B82C8 = .data:0x808B82C8; // type:object size:0x34 +lbl_808B82FC = .data:0x808B82FC; // type:object size:0x27C +lbl_808B8578 = .data:0x808B8578; // type:object size:0x20 +lbl_808B8598 = .data:0x808B8598; // type:object size:0x2C +lbl_808B85C4 = .data:0x808B85C4; // type:object size:0x2C +lbl_808B85F0 = .data:0x808B85F0; // type:object size:0x2C +lbl_808B861C = .data:0x808B861C; // type:object size:0x24 +lbl_808B8640 = .data:0x808B8640; // type:object size:0x2C +lbl_808B866C = .data:0x808B866C; // type:object size:0x24 +lbl_808B8690 = .data:0x808B8690; // type:object size:0x160 +lbl_808B87F0 = .data:0x808B87F0; // type:object size:0x1C0 +jumptable_808B89B0 = .data:0x808B89B0; // type:object size:0x24 scope:local +lbl_808B89F0 = .data:0x808B89F0; // type:object size:0x80 +jumptable_808B8A70 = .data:0x808B8A70; // type:object size:0x7C scope:local +jumptable_808B8B14 = .data:0x808B8B14; // type:object size:0x6C scope:local +lbl_808B8B80 = .data:0x808B8B80; // type:object size:0x28 +lbl_808B8BA8 = .data:0x808B8BA8; // type:object size:0x30 +jumptable_808B8BD8 = .data:0x808B8BD8; // type:object size:0x6C scope:local +jumptable_808B8D40 = .data:0x808B8D40; // type:object size:0x70 scope:local +lbl_808B8DB0 = .data:0x808B8DB0; // type:object size:0x24 data:string +jumptable_808B8DD4 = .data:0x808B8DD4; // type:object size:0x70 scope:local +jumptable_808B8F68 = .data:0x808B8F68; // type:object size:0x70 scope:local +jumptable_808B8FF4 = .data:0x808B8FF4; // type:object size:0x6C scope:local +jumptable_808B90B8 = .data:0x808B90B8; // type:object size:0x70 scope:local +lbl_808B9128 = .data:0x808B9128; // type:object size:0x28 +jumptable_808B9150 = .data:0x808B9150; // type:object size:0x70 scope:local +lbl_808B91C0 = .data:0x808B91C0; // type:object size:0x28 +lbl_808B91E8 = .data:0x808B91E8; // type:object size:0x20 +lbl_808B9208 = .data:0x808B9208; // type:object size:0x28 +lbl_808B9230 = .data:0x808B9230; // type:object size:0x28 data:string +lbl_808B9258 = .data:0x808B9258; // type:object size:0x34 +lbl_808B928C = .data:0x808B928C; // type:object size:0x28 +lbl_808B92B4 = .data:0x808B92B4; // type:object size:0x7E +lbl_808B9332 = .data:0x808B9332; // type:object size:0x66 +lbl_808B9398 = .data:0x808B9398; // type:object size:0x48 +lbl_808B93E0 = .data:0x808B93E0; // type:object size:0x20 data:string +lbl_808B9400 = .data:0x808B9400; // type:object size:0x20 +lbl_808B9420 = .data:0x808B9420; // type:object size:0x38 +lbl_808B9458 = .data:0x808B9458; // type:object size:0x2A4 +jumptable_808B96FC = .data:0x808B96FC; // type:object size:0x30 scope:local +lbl_808B972C = .data:0x808B972C; // type:object size:0x14 data:string +lbl_808B9740 = .data:0x808B9740; // type:object size:0x18 +lbl_808B9758 = .data:0x808B9758; // type:object size:0x1C +lbl_808B9774 = .data:0x808B9774; // type:object size:0x20 +lbl_808B9794 = .data:0x808B9794; // type:object size:0x20 +lbl_808B97B4 = .data:0x808B97B4; // type:object size:0x20 +lbl_808B97D4 = .data:0x808B97D4; // type:object size:0x44 data:string +lbl_808B9818 = .data:0x808B9818; // type:object size:0x28 +lbl_808B9840 = .data:0x808B9840; // type:object size:0x38 +lbl_808B9878 = .data:0x808B9878; // type:object size:0x18 data:string +lbl_808B9890 = .data:0x808B9890; // type:object size:0x20 +lbl_808B98B0 = .data:0x808B98B0; // type:object size:0x10 +lbl_808B98C0 = .data:0x808B98C0; // type:object size:0x20 +lbl_808B98E0 = .data:0x808B98E0; // type:object size:0x20 +lbl_808B9900 = .data:0x808B9900; // type:object size:0x2C +lbl_808B992C = .data:0x808B992C; // type:object size:0x24 data:string +lbl_808B9950 = .data:0x808B9950; // type:object size:0x30 +lbl_808B9980 = .data:0x808B9980; // type:object size:0x60 +lbl_808B99E0 = .data:0x808B99E0; // type:object size:0x10 data:string +lbl_808B99F0 = .data:0x808B99F0; // type:object size:0x40 +lbl_808B9A30 = .data:0x808B9A30; // type:object size:0x10 data:string +lbl_808B9A40 = .data:0x808B9A40; // type:object size:0x14 +lbl_808B9A54 = .data:0x808B9A54; // type:object size:0x14 +lbl_808B9A68 = .data:0x808B9A68; // type:object size:0x10 +lbl_808B9A78 = .data:0x808B9A78; // type:object size:0x18 +lbl_808B9A90 = .data:0x808B9A90; // type:object size:0x24 +lbl_808B9AB4 = .data:0x808B9AB4; // type:object size:0x34 +lbl_808B9AE8 = .data:0x808B9AE8; // type:object size:0x14 +lbl_808B9AFC = .data:0x808B9AFC; // type:object size:0x18 +lbl_808B9B14 = .data:0x808B9B14; // type:object size:0x2C +lbl_808B9B40 = .data:0x808B9B40; // type:object size:0x30 +lbl_808B9B70 = .data:0x808B9B70; // type:object size:0x100 +lbl_808B9C70 = .data:0x808B9C70; // type:object size:0x18 +lbl_808B9C88 = .data:0x808B9C88; // type:object size:0x30 +lbl_808B9CB8 = .data:0x808B9CB8; // type:object size:0x140 +jumptable_808B9DF8 = .data:0x808B9DF8; // type:object size:0x1C scope:local +lbl_808B9E68 = .data:0x808B9E68; // type:object size:0x28 +jumptable_808B9E90 = .data:0x808B9E90; // type:object size:0x34 scope:local +jumptable_808B9F10 = .data:0x808B9F10; // type:object size:0x24 scope:local +jumptable_808B9F58 = .data:0x808B9F58; // type:object size:0x3C scope:local +lbl_808B9F94 = .data:0x808B9F94; // type:object size:0x24 data:string +lbl_808B9FB8 = .data:0x808B9FB8; // type:object size:0x24 +jumptable_808B9FDC = .data:0x808B9FDC; // type:object size:0x30 scope:local +lbl_808BA00C = .data:0x808BA00C; // type:object size:0x28 +jumptable_808BA034 = .data:0x808BA034; // type:object size:0x3C scope:local +lbl_808BA070 = .data:0x808BA070; // type:object size:0x24 +lbl_808BA094 = .data:0x808BA094; // type:object size:0x1C +lbl_808BA0B0 = .data:0x808BA0B0; // type:object size:0x14 +lbl_808BA0C4 = .data:0x808BA0C4; // type:object size:0x20 +lbl_808BA0E4 = .data:0x808BA0E4; // type:object size:0x24 +jumptable_808BA108 = .data:0x808BA108; // type:object size:0x3C scope:local +lbl_808BA144 = .data:0x808BA144; // type:object size:0x2C +jumptable_808BA170 = .data:0x808BA170; // type:object size:0x3C scope:local +jumptable_808BA208 = .data:0x808BA208; // type:object size:0x40 scope:local +jumptable_808BA2A8 = .data:0x808BA2A8; // type:object size:0x40 scope:local +lbl_808BA2E8 = .data:0x808BA2E8; // type:object size:0x24 +jumptable_808BA30C = .data:0x808BA30C; // type:object size:0x3C scope:local +lbl_808BA348 = .data:0x808BA348; // type:object size:0x2C +jumptable_808BA374 = .data:0x808BA374; // type:object size:0x3C scope:local +lbl_808BA3B0 = .data:0x808BA3B0; // type:object size:0x28 +lbl_808BA3D8 = .data:0x808BA3D8; // type:object size:0xD8 +lbl_808BA4B0 = .data:0x808BA4B0; // type:object size:0x10 +lbl_808BA4C0 = .data:0x808BA4C0; // type:object size:0x20 +lbl_808BA4E0 = .data:0x808BA4E0; // type:object size:0x24 +lbl_808BA504 = .data:0x808BA504; // type:object size:0x24 +lbl_808BA528 = .data:0x808BA528; // type:object size:0x18 +lbl_808BA540 = .data:0x808BA540; // type:object size:0x50 +lbl_808BA590 = .data:0x808BA590; // type:object size:0x3C +lbl_808BA5CC = .data:0x808BA5CC; // type:object size:0x34 +lbl_808BA600 = .data:0x808BA600; // type:object size:0x28 data:string +lbl_808BA628 = .data:0x808BA628; // type:object size:0x28 +lbl_808BA650 = .data:0x808BA650; // type:object size:0x28 data:string +lbl_808BA678 = .data:0x808BA678; // type:object size:0xE8 +jumptable_808BA760 = .data:0x808BA760; // type:object size:0x24 scope:local +lbl_808BA788 = .data:0x808BA788; // type:object size:0x78 +lbl_808BA800 = .data:0x808BA800; // type:object size:0xC0 +lbl_808BA8C0 = .data:0x808BA8C0; // type:object size:0x2C data:string +lbl_808BA8EC = .data:0x808BA8EC; // type:object size:0x58 +lbl_808BA944 = .data:0x808BA944; // type:object size:0x1C data:string +lbl_808BA960 = .data:0x808BA960; // type:object size:0x2C +lbl_808BA98C = .data:0x808BA98C; // type:object size:0x24 +lbl_808BA9B0 = .data:0x808BA9B0; // type:object size:0x38 +lbl_808BA9E8 = .data:0x808BA9E8; // type:object size:0x78 +lbl_808BAA60 = .data:0x808BAA60; // type:object size:0x30 +lbl_808BAA90 = .data:0x808BAA90; // type:object size:0x28 +lbl_808BAAB8 = .data:0x808BAAB8; // type:object size:0x30 +lbl_808BAAE8 = .data:0x808BAAE8; // type:object size:0x24 +lbl_808BAB0C = .data:0x808BAB0C; // type:object size:0x1C data:string +jumptable_808BAB28 = .data:0x808BAB28; // type:object size:0x44 scope:local +lbl_808BAB6C = .data:0x808BAB6C; // type:object size:0x38 +lbl_808BABA4 = .data:0x808BABA4; // type:object size:0x1C +jumptable_808BABC0 = .data:0x808BABC0; // type:object size:0x20 scope:local +jumptable_808BABE0 = .data:0x808BABE0; // type:object size:0x20 scope:local +jumptable_808BAC00 = .data:0x808BAC00; // type:object size:0x20 scope:local +lbl_808BAC20 = .data:0x808BAC20; // type:object size:0xF8 +lbl_808BAD18 = .data:0x808BAD18; // type:object size:0x98 +lbl_808BADB0 = .data:0x808BADB0; // type:object size:0x6C +lbl_808BAE1C = .data:0x808BAE1C; // type:object size:0x64 +lbl_808BAE80 = .data:0x808BAE80; // type:object size:0x80 +lbl_808BAF00 = .data:0x808BAF00; // type:object size:0x80 +lbl_808BAF80 = .data:0x808BAF80; // type:object size:0x78 +lbl_808BAFF8 = .data:0x808BAFF8; // type:object size:0x80 +lbl_808BB078 = .data:0x808BB078; // type:object size:0x64 +lbl_808BB0DC = .data:0x808BB0DC; // type:object size:0x5C +lbl_808BB138 = .data:0x808BB138; // type:object size:0x5C +lbl_808BB194 = .data:0x808BB194; // type:object size:0x80 +lbl_808BB214 = .data:0x808BB214; // type:object size:0x7C +lbl_808BB290 = .data:0x808BB290; // type:object size:0x74 +lbl_808BB304 = .data:0x808BB304; // type:object size:0x84 +lbl_808BB388 = .data:0x808BB388; // type:object size:0x70 +lbl_808BB3F8 = .data:0x808BB3F8; // type:object size:0x80 +lbl_808BB478 = .data:0x808BB478; // type:object size:0x140 +lbl_808BB5B8 = .data:0x808BB5B8; // type:object size:0xC8 data:string +lbl_808BB680 = .data:0x808BB680; // type:object size:0x38 +lbl_808BB6B8 = .data:0x808BB6B8; // type:object size:0x34 data:string +lbl_808BB6EC = .data:0x808BB6EC; // type:object size:0x34 +lbl_808BB720 = .data:0x808BB720; // type:object size:0x48 +lbl_808BB768 = .data:0x808BB768; // type:object size:0x34 data:string +jumptable_808BB79C = .data:0x808BB79C; // type:object size:0xAC scope:local +jumptable_808BB848 = .data:0x808BB848; // type:object size:0xAC scope:local +jumptable_808BB8F4 = .data:0x808BB8F4; // type:object size:0xAC scope:local +lbl_808BB9A0 = .data:0x808BB9A0; // type:object size:0xC data:4byte +jumptable_808BB9AC = .data:0x808BB9AC; // type:object size:0xAC scope:local +jumptable_808BBA58 = .data:0x808BBA58; // type:object size:0x38 scope:local +jumptable_808BBA90 = .data:0x808BBA90; // type:object size:0x9C scope:local +lbl_808BBB30 = .data:0x808BBB30; // type:object size:0x1C data:string +lbl_808BBB4C = .data:0x808BBB4C; // type:object size:0x14 +lbl_808BBB60 = .data:0x808BBB60; // type:object size:0x90 +lbl_808BBBF0 = .data:0x808BBBF0; // type:object size:0xB0 +lbl_808BBCA0 = .data:0x808BBCA0; // type:object size:0xB8 +lbl_808BBD58 = .data:0x808BBD58; // type:object size:0xB0 +lbl_808BBE08 = .data:0x808BBE08; // type:object size:0xA0 +lbl_808BBEA8 = .data:0x808BBEA8; // type:object size:0xAC +lbl_808BBF54 = .data:0x808BBF54; // type:object size:0x94 +lbl_808BBFE8 = .data:0x808BBFE8; // type:object size:0xA4 +lbl_808BC08C = .data:0x808BC08C; // type:object size:0xA4 +lbl_808BC130 = .data:0x808BC130; // type:object size:0xAC +lbl_808BC1DC = .data:0x808BC1DC; // type:object size:0xA4 +lbl_808BC280 = .data:0x808BC280; // type:object size:0xA8 +lbl_808BC328 = .data:0x808BC328; // type:object size:0x3C +lbl_808BC364 = .data:0x808BC364; // type:object size:0x38 +lbl_808BC39C = .data:0x808BC39C; // type:object size:0x40 +lbl_808BC3DC = .data:0x808BC3DC; // type:object size:0x3C +lbl_808BC418 = .data:0x808BC418; // type:object size:0x3C data:string +lbl_808BC454 = .data:0x808BC454; // type:object size:0x3C +lbl_808BC490 = .data:0x808BC490; // type:object size:0x30 +lbl_808BC4C0 = .data:0x808BC4C0; // type:object size:0x60 +lbl_808BC520 = .data:0x808BC520; // type:object size:0xEA8 +lbl_808BD3C8 = .data:0x808BD3C8; // type:object size:0x48 +@1687 = .data:0x808BD410; // type:object size:0x21 scope:local data:string +lbl_808BD440 = .data:0x808BD440; // type:object size:0x170 +GXTexRegionAddrTable = .data:0x808BD5B0; // type:object size:0xC0 scope:local data:4byte +GXShutdownFuncInfo = .data:0x808BD670; // type:object size:0x10 scope:local +lbl_808BD680 = .data:0x808BD680; // type:object size:0x18 +lbl_808BD698 = .data:0x808BD698; // type:object size:0x18 +jumptable_808BD6B0 = .data:0x808BD6B0; // type:object size:0x68 scope:local +jumptable_808BD718 = .data:0x808BD718; // type:object size:0x44 scope:local +jumptable_808BD75C = .data:0x808BD75C; // type:object size:0x44 scope:local +jumptable_808BD7A0 = .data:0x808BD7A0; // type:object size:0x54 scope:local +lbl_808BD7F8 = .data:0x808BD7F8; // type:object size:0x3C +lbl_808BD834 = .data:0x808BD834; // type:object size:0x3C +lbl_808BD870 = .data:0x808BD870; // type:object size:0x3C +lbl_808BD8AC = .data:0x808BD8AC; // type:object size:0x3C +lbl_808BD8E8 = .data:0x808BD8E8; // type:object size:0x3C +lbl_808BD924 = .data:0x808BD924; // type:object size:0x3C +jumptable_808BD960 = .data:0x808BD960; // type:object size:0xF4 scope:local +jumptable_808BDA54 = .data:0x808BDA54; // type:object size:0xF4 scope:local +jumptable_808BDB48 = .data:0x808BDB48; // type:object size:0x3C scope:local +lbl_808BDB88 = .data:0x808BDB88; // type:object size:0x50 +lbl_808BDBD8 = .data:0x808BDBD8; // type:object size:0x28 +lbl_808BDC00 = .data:0x808BDC00; // type:object size:0x20 +jumptable_808BDC20 = .data:0x808BDC20; // type:object size:0x58 scope:local +jumptable_808BDC78 = .data:0x808BDC78; // type:object size:0x8C scope:local +lbl_808BDD08 = .data:0x808BDD08; // type:object size:0x48 +lbl_808BDD50 = .data:0x808BDD50; // type:object size:0x10 +lbl_808BDD60 = .data:0x808BDD60; // type:object size:0x48 +jumptable_808BDDA8 = .data:0x808BDDA8; // type:object size:0x50 scope:local +lbl_808BDDF8 = .data:0x808BDDF8; // type:object size:0x28 +lbl_808BDE20 = .data:0x808BDE20; // type:object size:0x24 +lbl_808BDE44 = .data:0x808BDE44; // type:object size:0x24 +lbl_808BDE68 = .data:0x808BDE68; // type:object size:0x28 data:4byte +lbl_808BDE90 = .data:0x808BDE90; // type:object size:0x48 +lbl_808BDED8 = .data:0x808BDED8; // type:object size:0x3E8 +lbl_808BE2C0 = .data:0x808BE2C0; // type:object size:0x50 +lbl_808BE310 = .data:0x808BE310; // type:object size:0x10 data:2byte +lbl_808BE320 = .data:0x808BE320; // type:object size:0x10 data:4byte +jumptable_808BE330 = .data:0x808BE330; // type:object size:0x88 scope:local +lbl_808BE3B8 = .data:0x808BE3B8; // type:object size:0xCA8 +lbl_808BF060 = .data:0x808BF060; // type:object size:0x770 +lbl_808BF7D0 = .data:0x808BF7D0; // type:object size:0x70 +lbl_808BF840 = .data:0x808BF840; // type:object size:0x2880 +lbl_808C20C0 = .data:0x808C20C0; // type:object size:0x48 +lbl_808C2108 = .data:0x808C2108; // type:object size:0xC +lbl_808C2114 = .data:0x808C2114; // type:object size:0x18 +lbl_808C212C = .data:0x808C212C; // type:object size:0xC data:wstring +__MIXVolumeTable = .data:0x808C2138; // type:object size:0xBA8 +@2807 = .data:0x808C2CE0; // type:object size:0x47 scope:local data:string +s_currentDir = .data:0x808C2D40; // type:object size:0x40 scope:local +lbl_808C2D90 = .data:0x808C2D90; // type:object size:0xC +lbl_808C2D9C = .data:0x808C2D9C; // type:object size:0x94 +lbl_808C2E30 = .data:0x808C2E30; // type:object size:0x10 data:string +lbl_808C2E40 = .data:0x808C2E40; // type:object size:0x10 data:string +lbl_808C2E50 = .data:0x808C2E50; // type:object size:0x10 data:string +lbl_808C2E60 = .data:0x808C2E60; // type:object size:0x10 data:string +lbl_808C2E70 = .data:0x808C2E70; // type:object size:0x10 data:string +lbl_808C2E80 = .data:0x808C2E80; // type:object size:0x10 data:string +lbl_808C2E90 = .data:0x808C2E90; // type:object size:0x10 data:string +lbl_808C2EA0 = .data:0x808C2EA0; // type:object size:0x10 +lbl_808C2EB0 = .data:0x808C2EB0; // type:object size:0x30 +@1150 = .data:0x808C2EE0; // type:object size:0x1B scope:local data:string +lbl_808C2EFC = .data:0x808C2EFC; // type:object size:0x2C +lbl_808C2F28 = .data:0x808C2F28; // type:object size:0x5C +lbl_808C2F84 = .data:0x808C2F84; // type:object size:0x6C +lbl_808C2FF0 = .data:0x808C2FF0; // type:object size:0x7C +lbl_808C306C = .data:0x808C306C; // type:object size:0x90 +lbl_808C30FC = .data:0x808C30FC; // type:object size:0x90 +lbl_808C318C = .data:0x808C318C; // type:object size:0x90 +lbl_808C321C = .data:0x808C321C; // type:object size:0x78 +lbl_808C3294 = .data:0x808C3294; // type:object size:0x78 +lbl_808C330C = .data:0x808C330C; // type:object size:0x8C +lbl_808C3398 = .data:0x808C3398; // type:object size:0x90 +lbl_808C3428 = .data:0x808C3428; // type:object size:0x74 +lbl_808C349C = .data:0x808C349C; // type:object size:0x78 +lbl_808C3514 = .data:0x808C3514; // type:object size:0x64 +lbl_808C3578 = .data:0x808C3578; // type:object size:0x90 +lbl_808C3608 = .data:0x808C3608; // type:object size:0x90 +lbl_808C3698 = .data:0x808C3698; // type:object size:0x94 +lbl_808C372C = .data:0x808C372C; // type:object size:0x80 +lbl_808C37AC = .data:0x808C37AC; // type:object size:0x78 +lbl_808C3824 = .data:0x808C3824; // type:object size:0x78 +lbl_808C389C = .data:0x808C389C; // type:object size:0x54 +lbl_808C38F0 = .data:0x808C38F0; // type:object size:0x5C +lbl_808C394C = .data:0x808C394C; // type:object size:0x80 +lbl_808C39CC = .data:0x808C39CC; // type:object size:0x7C +lbl_808C3A48 = .data:0x808C3A48; // type:object size:0x80 +lbl_808C3AC8 = .data:0x808C3AC8; // type:object size:0x80 +lbl_808C3B48 = .data:0x808C3B48; // type:object size:0x6C +lbl_808C3BB4 = .data:0x808C3BB4; // type:object size:0x64 +lbl_808C3C18 = .data:0x808C3C18; // type:object size:0x80 +lbl_808C3C98 = .data:0x808C3C98; // type:object size:0x74 +lbl_808C3D0C = .data:0x808C3D0C; // type:object size:0x84 +lbl_808C3D90 = .data:0x808C3D90; // type:object size:0x6C +lbl_808C3DFC = .data:0x808C3DFC; // type:object size:0x68 +lbl_808C3E64 = .data:0x808C3E64; // type:object size:0x70 +lbl_808C3ED4 = .data:0x808C3ED4; // type:object size:0x58 +lbl_808C3F2C = .data:0x808C3F2C; // type:object size:0x94 +lbl_808C3FC0 = .data:0x808C3FC0; // type:object size:0x80 +lbl_808C4040 = .data:0x808C4040; // type:object size:0x90 +lbl_808C40D0 = .data:0x808C40D0; // type:object size:0x88 data:string +lbl_808C4158 = .data:0x808C4158; // type:object size:0x84 +lbl_808C41DC = .data:0x808C41DC; // type:object size:0x64 +lbl_808C4240 = .data:0x808C4240; // type:object size:0x7C +lbl_808C42BC = .data:0x808C42BC; // type:object size:0x90 +lbl_808C434C = .data:0x808C434C; // type:object size:0x84 +lbl_808C43D0 = .data:0x808C43D0; // type:object size:0x64 +lbl_808C4434 = .data:0x808C4434; // type:object size:0x74 +lbl_808C44A8 = .data:0x808C44A8; // type:object size:0x68 data:string +lbl_808C4510 = .data:0x808C4510; // type:object size:0x9C +lbl_808C45AC = .data:0x808C45AC; // type:object size:0xB4 +lbl_808C4660 = .data:0x808C4660; // type:object size:0xA4 +lbl_808C4704 = .data:0x808C4704; // type:object size:0xC4 +lbl_808C47C8 = .data:0x808C47C8; // type:object size:0x9C +lbl_808C4864 = .data:0x808C4864; // type:object size:0x94 data:string +lbl_808C48F8 = .data:0x808C48F8; // type:object size:0xB0 +lbl_808C49A8 = .data:0x808C49A8; // type:object size:0xB0 +lbl_808C4A58 = .data:0x808C4A58; // type:object size:0x8C +lbl_808C4AE4 = .data:0x808C4AE4; // type:object size:0x74 data:string +lbl_808C4B58 = .data:0x808C4B58; // type:object size:0x48 data:string +lbl_808C4BA0 = .data:0x808C4BA0; // type:object size:0x18 +lbl_808C4BB8 = .data:0x808C4BB8; // type:object size:0x18 +lbl_808C4BD0 = .data:0x808C4BD0; // type:object size:0x14 data:string +lbl_808C4BE4 = .data:0x808C4BE4; // type:object size:0x1C +lbl_808C4C00 = .data:0x808C4C00; // type:object size:0xC data:string +lbl_808C4C0C = .data:0x808C4C0C; // type:object size:0x3C +lbl_808C4C48 = .data:0x808C4C48; // type:object size:0x30 +@1 = .data:0x808C4C78; // type:object size:0x45 scope:local data:string +__OSExceptionLocations = .data:0x808C5048; // type:object size:0x3C scope:local +ShutdownFunctionInfo = .data:0x808C5088; // type:object size:0x10 scope:local +DSPInitCode = .data:0x808C5098; // type:object size:0x80 scope:local +@909 = .data:0x808C5118; // type:object size:0x18 scope:local data:string +lbl_808C52A0 = .data:0x808C52A0; // type:object size:0x1B8 +@641 = .data:0x808C5458; // type:object size:0x16 scope:local data:string +lbl_808C5738 = .data:0x808C5738; // type:object size:0x1A8 +lbl_808C58E0 = .data:0x808C58E0; // type:object size:0x1A8 +lbl_808C5A88 = .data:0x808C5A88; // type:object size:0x180 +lbl_808C5C08 = .data:0x808C5C08; // type:object size:0x990 +lbl_808C6598 = .data:0x808C6598; // type:object size:0x30 data:4byte +ShutdownFunctionInfo = .data:0x808C65C8; // type:object size:0x10 scope:local +@2083 = .data:0x808C65D8; // type:object size:0xA scope:local data:string +lbl_808C65E4 = .data:0x808C65E4; // type:object size:0x60 +@2131 = .data:0x808C6644; // type:object size:0x2F scope:local data:string +lbl_808C6674 = .data:0x808C6674; // type:object size:0x150 +@2163 = .data:0x808C67C4; // type:object size:0x3B scope:local data:string +lbl_808C6840 = .data:0x808C6840; // type:object size:0x30 +lbl_808C6870 = .data:0x808C6870; // type:object size:0x30 +lbl_808C68A0 = .data:0x808C68A0; // type:object size:0x40 data:2byte +lbl_808C68E0 = .data:0x808C68E0; // type:object size:0x200 +lbl_808C6AE0 = .data:0x808C6AE0; // type:object size:0x200 +lbl_808C6CE0 = .data:0x808C6CE0; // type:object size:0x200 +lbl_808C6EE0 = .data:0x808C6EE0; // type:object size:0x200 +lbl_808C70E0 = .data:0x808C70E0; // type:object size:0x200 +lbl_808C72E0 = .data:0x808C72E0; // type:object size:0x200 +lbl_808C74E0 = .data:0x808C74E0; // type:object size:0x71 +lbl_808C7551 = .data:0x808C7551; // type:object size:0x18F +lbl_808C76E0 = .data:0x808C76E0; // type:object size:0x200 +lbl_808C78E0 = .data:0x808C78E0; // type:object size:0x200 +lbl_808C7AE0 = .data:0x808C7AE0; // type:object size:0x200 +lbl_808C7CE0 = .data:0x808C7CE0; // type:object size:0x200 +lbl_808C7EE0 = .data:0x808C7EE0; // type:object size:0x200 +lbl_808C80E0 = .data:0x808C80E0; // type:object size:0x200 +lbl_808C82E0 = .data:0x808C82E0; // type:object size:0x200 +lbl_808C84E0 = .data:0x808C84E0; // type:object size:0x200 +lbl_808C86E0 = .data:0x808C86E0; // type:object size:0x200 +lbl_808C88E0 = .data:0x808C88E0; // type:object size:0x200 +lbl_808C8AE0 = .data:0x808C8AE0; // type:object size:0x200 +lbl_808C8CE0 = .data:0x808C8CE0; // type:object size:0x200 +lbl_808C8EE0 = .data:0x808C8EE0; // type:object size:0x200 +lbl_808C90E0 = .data:0x808C90E0; // type:object size:0x200 +lbl_808C92E0 = .data:0x808C92E0; // type:object size:0x200 +lbl_808C94E0 = .data:0x808C94E0; // type:object size:0x200 +lbl_808C96E0 = .data:0x808C96E0; // type:object size:0x200 +lbl_808C98E0 = .data:0x808C98E0; // type:object size:0x200 +lbl_808C9AE0 = .data:0x808C9AE0; // type:object size:0x200 +lbl_808C9CE0 = .data:0x808C9CE0; // type:object size:0x200 +lbl_808C9EE0 = .data:0x808C9EE0; // type:object size:0x200 +lbl_808CA0E0 = .data:0x808CA0E0; // type:object size:0x200 +lbl_808CA2E0 = .data:0x808CA2E0; // type:object size:0x200 +lbl_808CA4E0 = .data:0x808CA4E0; // type:object size:0x200 +lbl_808CA6E0 = .data:0x808CA6E0; // type:object size:0x200 +lbl_808CA8E0 = .data:0x808CA8E0; // type:object size:0x200 +lbl_808CAAE0 = .data:0x808CAAE0; // type:object size:0x200 +lbl_808CACE0 = .data:0x808CACE0; // type:object size:0x200 +lbl_808CAEE0 = .data:0x808CAEE0; // type:object size:0x200 +lbl_808CB0E0 = .data:0x808CB0E0; // type:object size:0x200 +lbl_808CB2E0 = .data:0x808CB2E0; // type:object size:0x200 +lbl_808CB4E0 = .data:0x808CB4E0; // type:object size:0x200 +lbl_808CB6E0 = .data:0x808CB6E0; // type:object size:0x200 +lbl_808CB8E0 = .data:0x808CB8E0; // type:object size:0x200 +lbl_808CBAE0 = .data:0x808CBAE0; // type:object size:0x200 +lbl_808CBCE0 = .data:0x808CBCE0; // type:object size:0x200 +lbl_808CBEE0 = .data:0x808CBEE0; // type:object size:0x200 +lbl_808CC0E0 = .data:0x808CC0E0; // type:object size:0x200 +lbl_808CC2E0 = .data:0x808CC2E0; // type:object size:0x200 +lbl_808CC4E0 = .data:0x808CC4E0; // type:object size:0x200 +lbl_808CC6E0 = .data:0x808CC6E0; // type:object size:0x200 +lbl_808CC8E0 = .data:0x808CC8E0; // type:object size:0x200 +lbl_808CCAE0 = .data:0x808CCAE0; // type:object size:0x200 +lbl_808CCCE0 = .data:0x808CCCE0; // type:object size:0x200 +lbl_808CCEE0 = .data:0x808CCEE0; // type:object size:0x200 +lbl_808CD0E0 = .data:0x808CD0E0; // type:object size:0x200 +lbl_808CD2E0 = .data:0x808CD2E0; // type:object size:0x200 +lbl_808CD4E0 = .data:0x808CD4E0; // type:object size:0x200 +lbl_808CD6E0 = .data:0x808CD6E0; // type:object size:0x200 +lbl_808CD8E0 = .data:0x808CD8E0; // type:object size:0x200 +lbl_808CDAE0 = .data:0x808CDAE0; // type:object size:0x200 +lbl_808CDCE0 = .data:0x808CDCE0; // type:object size:0x200 +lbl_808CDEE0 = .data:0x808CDEE0; // type:object size:0x200 +lbl_808CE0E0 = .data:0x808CE0E0; // type:object size:0x200 +lbl_808CE2E0 = .data:0x808CE2E0; // type:object size:0x200 +lbl_808CE4E0 = .data:0x808CE4E0; // type:object size:0x200 +lbl_808CE6E0 = .data:0x808CE6E0; // type:object size:0x200 +lbl_808CE8E0 = .data:0x808CE8E0; // type:object size:0x200 +lbl_808CEAE0 = .data:0x808CEAE0; // type:object size:0x200 +lbl_808CECE0 = .data:0x808CECE0; // type:object size:0x200 +lbl_808CEEE0 = .data:0x808CEEE0; // type:object size:0x200 +lbl_808CF0E0 = .data:0x808CF0E0; // type:object size:0x200 +lbl_808CF2E0 = .data:0x808CF2E0; // type:object size:0x200 +lbl_808CF4E0 = .data:0x808CF4E0; // type:object size:0x200 +lbl_808CF6E0 = .data:0x808CF6E0; // type:object size:0x200 +lbl_808CF8E0 = .data:0x808CF8E0; // type:object size:0x200 +lbl_808CFAE0 = .data:0x808CFAE0; // type:object size:0x200 +lbl_808CFCE0 = .data:0x808CFCE0; // type:object size:0x200 +lbl_808CFEE0 = .data:0x808CFEE0; // type:object size:0x200 +lbl_808D00E0 = .data:0x808D00E0; // type:object size:0x200 +lbl_808D02E0 = .data:0x808D02E0; // type:object size:0x200 +lbl_808D04E0 = .data:0x808D04E0; // type:object size:0x200 +lbl_808D06E0 = .data:0x808D06E0; // type:object size:0x200 +lbl_808D08E0 = .data:0x808D08E0; // type:object size:0x200 +lbl_808D0AE0 = .data:0x808D0AE0; // type:object size:0x200 +lbl_808D0CE0 = .data:0x808D0CE0; // type:object size:0x200 +lbl_808D0EE0 = .data:0x808D0EE0; // type:object size:0x200 +lbl_808D10E0 = .data:0x808D10E0; // type:object size:0x200 +lbl_808D12E0 = .data:0x808D12E0; // type:object size:0x200 +lbl_808D14E0 = .data:0x808D14E0; // type:object size:0x200 +lbl_808D16E0 = .data:0x808D16E0; // type:object size:0x200 +lbl_808D18E0 = .data:0x808D18E0; // type:object size:0x200 +lbl_808D1AE0 = .data:0x808D1AE0; // type:object size:0x200 +lbl_808D1CE0 = .data:0x808D1CE0; // type:object size:0x200 +lbl_808D1EE0 = .data:0x808D1EE0; // type:object size:0x200 +lbl_808D20E0 = .data:0x808D20E0; // type:object size:0x200 +lbl_808D22E0 = .data:0x808D22E0; // type:object size:0x400 +@980 = .data:0x808D26E0; // type:object size:0x13 scope:local data:string +@981 = .data:0x808D26F4; // type:object size:0x13 scope:local data:string +lbl_808D2708 = .data:0x808D2708; // type:object size:0xC data:string +lbl_808D2714 = .data:0x808D2714; // type:object size:0x38 +lbl_808D274C = .data:0x808D274C; // type:object size:0x38 +lbl_808D2784 = .data:0x808D2784; // type:object size:0x24 +lbl_808D27A8 = .data:0x808D27A8; // type:object size:0x2C +jumptable_808D27D4 = .data:0x808D27D4; // type:object size:0x1C scope:local +lbl_808D27F0 = .data:0x808D27F0; // type:object size:0x28 data:string +@1040 = .data:0x808D2818; // type:object size:0x32 scope:local data:string +lbl_808D2980 = .data:0x808D2980; // type:object size:0x20 +lbl_808D29A0 = .data:0x808D29A0; // type:object size:0x14 +@1519 = .data:0x808D29B4; // type:object size:0xD scope:local data:string +@1521 = .data:0x808D29C4; // type:object size:0x1B scope:local data:string +@1982 = .data:0x808D29E0; // type:object size:0x27 scope:local data:string +@1986 = .data:0x808D2A58; // type:object size:0x38 scope:local +lbl_808D2A90 = .data:0x808D2A90; // type:object size:0x68 +lbl_808D2AF8 = .data:0x808D2AF8; // type:object size:0x48 +lbl_808D2B40 = .data:0x808D2B40; // type:object size:0xC +lbl_808D2B4C = .data:0x808D2B4C; // type:object size:0xC +lbl_808D2B58 = .data:0x808D2B58; // type:object size:0xC +lbl_808D2B64 = .data:0x808D2B64; // type:object size:0xC +lbl_808D2B70 = .data:0x808D2B70; // type:object size:0xC +lbl_808D2B7C = .data:0x808D2B7C; // type:object size:0xC +lbl_808D2B88 = .data:0x808D2B88; // type:object size:0x10 +lbl_808D2B98 = .data:0x808D2B98; // type:object size:0x130 data:4byte +jumptable_808D2CC8 = .data:0x808D2CC8; // type:object size:0x28 scope:local +lbl_808D2CF0 = .data:0x808D2CF0; // type:object size:0x30 +lbl_808D2D20 = .data:0x808D2D20; // type:object size:0x48 data:byte +lbl_808D2D68 = .data:0x808D2D68; // type:object size:0x18 data:byte +lbl_808D2D80 = .data:0x808D2D80; // type:object size:0x2C8 +lbl_808D3048 = .data:0x808D3048; // type:object size:0x48 +Si = .data:0x808D3090; // type:object size:0x14 scope:local data:4byte +Type = .data:0x808D30A8; // type:object size:0x10 scope:local data:4byte +XYNTSC = .data:0x808D30B8; // type:object size:0x30 scope:local data:byte +lbl_808D3150 = .data:0x808D3150; // type:object size:0x214 +lbl_808D3364 = .data:0x808D3364; // type:object size:0x10 +lbl_808D3374 = .data:0x808D3374; // type:object size:0x4D4 +lbl_808D3848 = .data:0x808D3848; // type:object size:0x1C +lbl_808D3864 = .data:0x808D3864; // type:object size:0x11C +lbl_808D3980 = .data:0x808D3980; // type:object size:0x48 +lbl_808D39C8 = .data:0x808D39C8; // type:object size:0x1A4 +lbl_808D3B6C = .data:0x808D3B6C; // type:object size:0xEC data:2byte +lbl_808D3C58 = .data:0x808D3C58; // type:object size:0x10 +jumptable_808D3C68 = .data:0x808D3C68; // type:object size:0x24 scope:local +jumptable_808D3C8C = .data:0x808D3C8C; // type:object size:0x8C scope:local +jumptable_808D3D18 = .data:0x808D3D18; // type:object size:0x24 scope:local +@4022 = .data:0x808D3E90; // type:object size:0x24 scope:local +jumptable_808D3EB4 = .data:0x808D3EB4; // type:object size:0x24 scope:local +lbl_808D3ED8 = .data:0x808D3ED8; // type:object size:0x610 +lbl_808D44E8 = .data:0x808D44E8; // type:object size:0x48 +lbl_808D4530 = .data:0x808D4530; // type:object size:0x10 +jumptable_808D4540 = .data:0x808D4540; // type:object size:0x44 scope:local +jumptable_808D4584 = .data:0x808D4584; // type:object size:0x40 scope:local +lbl_808D45C4 = .data:0x808D45C4; // type:object size:0x14 +lbl_808D45D8 = .data:0x808D45D8; // type:object size:0x14 +lbl_808D45EC = .data:0x808D45EC; // type:object size:0x34 +lbl_808D4620 = .data:0x808D4620; // type:object size:0x58 +lbl_808D4678 = .data:0x808D4678; // type:object size:0x50 data:string +jumptable_808D46C8 = .data:0x808D46C8; // type:object size:0x24 scope:local +jumptable_808D46EC = .data:0x808D46EC; // type:object size:0x50 scope:local +jumptable_808D473C = .data:0x808D473C; // type:object size:0x30 scope:local +lbl_808D4770 = .data:0x808D4770; // type:object size:0x80 +jumptable_808D47F0 = .data:0x808D47F0; // type:object size:0x30 scope:local +jumptable_808D4820 = .data:0x808D4820; // type:object size:0x48 scope:local +lbl_808D4868 = .data:0x808D4868; // type:object size:0x30 +lbl_808D4898 = .data:0x808D4898; // type:object size:0x900 +lbl_808D5198 = .data:0x808D5198; // type:object size:0x30 +lbl_808D51C8 = .data:0x808D51C8; // type:object size:0x900 +lbl_808D5AC8 = .data:0x808D5AC8; // type:object size:0xDC +lbl_808D5BA4 = .data:0x808D5BA4; // type:object size:0xC +lbl_808D5BB0 = .data:0x808D5BB0; // type:object size:0xBC data:byte +lbl_808D5C6C = .data:0x808D5C6C; // type:object size:0x5C data:byte +lbl_808D5CC8 = .data:0x808D5CC8; // type:object size:0x1C +lbl_808D5CE4 = .data:0x808D5CE4; // type:object size:0x14 +lbl_808D5CF8 = .data:0x808D5CF8; // type:object size:0x14 +lbl_808D5D0C = .data:0x808D5D0C; // type:object size:0x40 +lbl_808D5D4C = .data:0x808D5D4C; // type:object size:0x54 +lbl_808D5DA0 = .data:0x808D5DA0; // type:object size:0x24 +lbl_808D5DC4 = .data:0x808D5DC4; // type:object size:0x14 data:string +lbl_808D5DD8 = .data:0x808D5DD8; // type:object size:0x28 +lbl_808D5E00 = .data:0x808D5E00; // type:object size:0x10 +lbl_808D5E10 = .data:0x808D5E10; // type:object size:0x14 +lbl_808D5E24 = .data:0x808D5E24; // type:object size:0x2C +lbl_808D5E50 = .data:0x808D5E50; // type:object size:0x50 +lbl_808D5EA0 = .data:0x808D5EA0; // type:object size:0x50 +lbl_808D5EF0 = .data:0x808D5EF0; // type:object size:0x40 +lbl_808D5F30 = .data:0x808D5F30; // type:object size:0x38 +lbl_808D5F68 = .data:0x808D5F68; // type:object size:0x30 +lbl_808D5F98 = .data:0x808D5F98; // type:object size:0x5C +lbl_808D5FF4 = .data:0x808D5FF4; // type:object size:0x64 +lbl_808D6058 = .data:0x808D6058; // type:object size:0xAC +lbl_808D6104 = .data:0x808D6104; // type:object size:0x14 +lbl_808D6118 = .data:0x808D6118; // type:object size:0xC0 +lbl_808D61D8 = .data:0x808D61D8; // type:object size:0x20 data:string +lbl_808D61F8 = .data:0x808D61F8; // type:object size:0x2C +lbl_808D6224 = .data:0x808D6224; // type:object size:0x24 +lbl_808D6248 = .data:0x808D6248; // type:object size:0x114 +lbl_808D635C = .data:0x808D635C; // type:object size:0x38 +lbl_808D6394 = .data:0x808D6394; // type:object size:0xE4 +lbl_808D6478 = .data:0x808D6478; // type:object size:0x1C data:string +lbl_808D6494 = .data:0x808D6494; // type:object size:0x20 +lbl_808D64B4 = .data:0x808D64B4; // type:object size:0x1C +lbl_808D64D0 = .data:0x808D64D0; // type:object size:0x1 data:byte +lbl_808D64D4 = .data:0x808D64D4; // type:object size:0x1C +lbl_808D64F0 = .data:0x808D64F0; // type:object size:0x38 +lbl_808D6528 = .data:0x808D6528; // type:object size:0x8 +lbl_808D6530 = .data:0x808D6530; // type:object size:0x98 +lbl_808D65C8 = .data:0x808D65C8; // type:object size:0x10 +lbl_808D65D8 = .data:0x808D65D8; // type:object size:0x4C +lbl_808D6624 = .data:0x808D6624; // type:object size:0x84 +lbl_808D66A8 = .data:0x808D66A8; // type:object size:0x18 +lbl_808D66C0 = .data:0x808D66C0; // type:object size:0xC +lbl_808D66CC = .data:0x808D66CC; // type:object size:0xC +lbl_808D66D8 = .data:0x808D66D8; // type:object size:0x8 +lbl_808D66E0 = .data:0x808D66E0; // type:object size:0x8 +lbl_808D66E8 = .data:0x808D66E8; // type:object size:0x168 +lbl_808D6850 = .data:0x808D6850; // type:object size:0x1C +lbl_808D686C = .data:0x808D686C; // type:object size:0x17C +lbl_808D69E8 = .data:0x808D69E8; // type:object size:0x4 +lbl_808D69EC = .data:0x808D69EC; // type:object size:0x1C +lbl_808D6A08 = .data:0x808D6A08; // type:object size:0x4 +lbl_808D6A0C = .data:0x808D6A0C; // type:object size:0x4 +lbl_808D6A10 = .data:0x808D6A10; // type:object size:0x4 +lbl_808D6A14 = .data:0x808D6A14; // type:object size:0x4 +lbl_808D6A18 = .data:0x808D6A18; // type:object size:0x4 +lbl_808D6A1C = .data:0x808D6A1C; // type:object size:0x4 +lbl_808D6A20 = .data:0x808D6A20; // type:object size:0x30 data:4byte +lbl_808D6A50 = .data:0x808D6A50; // type:object size:0x4 data:4byte +lbl_808D6A54 = .data:0x808D6A54; // type:object size:0x10 +lbl_808D6A64 = .data:0x808D6A64; // type:object size:0xC +lbl_808D6A70 = .data:0x808D6A70; // type:object size:0x8 +lbl_808D6A78 = .data:0x808D6A78; // type:object size:0x8 +lbl_808D6A80 = .data:0x808D6A80; // type:object size:0x20 +lbl_808D6AA0 = .data:0x808D6AA0; // type:object size:0x18 +lbl_808D6AB8 = .data:0x808D6AB8; // type:object size:0x24 +lbl_808D6ADC = .data:0x808D6ADC; // type:object size:0x38 +lbl_808D6B14 = .data:0x808D6B14; // type:object size:0x1C +lbl_808D6B30 = .data:0x808D6B30; // type:object size:0x20 +lbl_808D6B50 = .data:0x808D6B50; // type:object size:0x18 +lbl_808D6B68 = .data:0x808D6B68; // type:object size:0x10 data:string +lbl_808D6B78 = .data:0x808D6B78; // type:object size:0xC +lbl_808D6B84 = .data:0x808D6B84; // type:object size:0xC +lbl_808D6B90 = .data:0x808D6B90; // type:object size:0xC +lbl_808D6B9C = .data:0x808D6B9C; // type:object size:0xC +lbl_808D6BA8 = .data:0x808D6BA8; // type:object size:0x58 +lbl_808D6C00 = .data:0x808D6C00; // type:object size:0x18 +lbl_808D6C18 = .data:0x808D6C18; // type:object size:0xE0 +lbl_808D6CF8 = .data:0x808D6CF8; // type:object size:0x24 +lbl_808D6D1C = .data:0x808D6D1C; // type:object size:0x2C +lbl_808D6D48 = .data:0x808D6D48; // type:object size:0x178 +lbl_808D6EC0 = .data:0x808D6EC0; // type:object size:0x30 +lbl_808D6EF0 = .data:0x808D6EF0; // type:object size:0x428 +lbl_808D7318 = .data:0x808D7318; // type:object size:0x210 +lbl_808D7528 = .data:0x808D7528; // type:object size:0x68 +lbl_808D7590 = .data:0x808D7590; // type:object size:0x58 data:string +lbl_808D75E8 = .data:0x808D75E8; // type:object size:0x10 +lbl_808D75F8 = .data:0x808D75F8; // type:object size:0x18 +lbl_808D7610 = .data:0x808D7610; // type:object size:0xC +lbl_808D761C = .data:0x808D761C; // type:object size:0x14 +lbl_808D7630 = .data:0x808D7630; // type:object size:0x400 +lbl_808D7A30 = .data:0x808D7A30; // type:object size:0x8 +lbl_808D7A38 = .data:0x808D7A38; // type:object size:0x8 data:string +lbl_808D7A40 = .data:0x808D7A40; // type:object size:0x14 +lbl_808D7A54 = .data:0x808D7A54; // type:object size:0x4 data:4byte +lbl_808D7A58 = .data:0x808D7A58; // type:object size:0x208 +lbl_808D7C60 = .data:0x808D7C60; // type:object size:0x64 +lbl_808D7CC4 = .data:0x808D7CC4; // type:object size:0x24 +lbl_808D7CE8 = .data:0x808D7CE8; // type:object size:0x10 data:string +lbl_808D7CF8 = .data:0x808D7CF8; // type:object size:0x28 +lbl_808D7D20 = .data:0x808D7D20; // type:object size:0x8 +lbl_808D7D28 = .data:0x808D7D28; // type:object size:0x24 +lbl_808D7D4C = .data:0x808D7D4C; // type:object size:0x14 +lbl_808D7D60 = .data:0x808D7D60; // type:object size:0x20 +lbl_808D7D80 = .data:0x808D7D80; // type:object size:0x1C0 +lbl_808D7F40 = .data:0x808D7F40; // type:object size:0x258 +lbl_808D8198 = .data:0x808D8198; // type:object size:0x4 +lbl_808D819C = .data:0x808D819C; // type:object size:0xC +lbl_808D81A8 = .data:0x808D81A8; // type:object size:0x4 +lbl_808D81AC = .data:0x808D81AC; // type:object size:0x1C +lbl_808D81C8 = .data:0x808D81C8; // type:object size:0x14 +lbl_808D81DC = .data:0x808D81DC; // type:object size:0x10 +lbl_808D81EC = .data:0x808D81EC; // type:object size:0x18 +lbl_808D8204 = .data:0x808D8204; // type:object size:0x14 +lbl_808D8218 = .data:0x808D8218; // type:object size:0x18 +lbl_808D8230 = .data:0x808D8230; // type:object size:0x14 data:string +lbl_808D8244 = .data:0x808D8244; // type:object size:0x14 +lbl_808D8258 = .data:0x808D8258; // type:object size:0x8 +lbl_808D8260 = .data:0x808D8260; // type:object size:0x14 +lbl_808D8274 = .data:0x808D8274; // type:object size:0x60 +lbl_808D82D4 = .data:0x808D82D4; // type:object size:0xA4 +lbl_808D8378 = .data:0x808D8378; // type:object size:0x88 +lbl_808D8400 = .data:0x808D8400; // type:object size:0x20 +lbl_808D8420 = .data:0x808D8420; // type:object size:0x200 +lbl_808D8620 = .data:0x808D8620; // type:object size:0x38 +lbl_808D8658 = .data:0x808D8658; // type:object size:0x12C +lbl_808D8784 = .data:0x808D8784; // type:object size:0x4 +lbl_808D8788 = .data:0x808D8788; // type:object size:0x24C +lbl_808D89D4 = .data:0x808D89D4; // type:object size:0x68 +lbl_808D8A3C = .data:0x808D8A3C; // type:object size:0x10C +lbl_808D8B48 = .data:0x808D8B48; // type:object size:0x8 +lbl_808D8B50 = .data:0x808D8B50; // type:object size:0xC +lbl_808D8B5C = .data:0x808D8B5C; // type:object size:0x8 +lbl_808D8B64 = .data:0x808D8B64; // type:object size:0x8 +lbl_808D8B6C = .data:0x808D8B6C; // type:object size:0xC data:string +lbl_808D8B78 = .data:0x808D8B78; // type:object size:0x330 +lbl_808D8EA8 = .data:0x808D8EA8; // type:object size:0x5C +lbl_808D8F04 = .data:0x808D8F04; // type:object size:0x24 data:string +lbl_808D8F28 = .data:0x808D8F28; // type:object size:0x100 +lbl_808D9028 = .data:0x808D9028; // type:object size:0x1 data:string +lbl_808D9029 = .data:0x808D9029; // type:object size:0x1 data:string +lbl_808D902A = .data:0x808D902A; // type:object size:0x6 +lbl_808D9030 = .data:0x808D9030; // type:object size:0x54 +lbl_808D9084 = .data:0x808D9084; // type:object size:0x54 +lbl_808D90D8 = .data:0x808D90D8; // type:object size:0x38 +lbl_808D9110 = .data:0x808D9110; // type:object size:0x4 +lbl_808D9114 = .data:0x808D9114; // type:object size:0x4 +lbl_808D9118 = .data:0x808D9118; // type:object size:0x4 +lbl_808D911C = .data:0x808D911C; // type:object size:0x4 +lbl_808D9120 = .data:0x808D9120; // type:object size:0x8 +lbl_808D9128 = .data:0x808D9128; // type:object size:0x8 +lbl_808D9130 = .data:0x808D9130; // type:object size:0xC +lbl_808D913C = .data:0x808D913C; // type:object size:0x14 +lbl_808D9150 = .data:0x808D9150; // type:object size:0x1F8 data:4byte +lbl_808D9348 = .data:0x808D9348; // type:object size:0x37 +lbl_808D937F = .data:0x808D937F; // type:object size:0x1 data:byte +lbl_808D9380 = .data:0x808D9380; // type:object size:0x168 data:byte +lbl_808D94E8 = .data:0x808D94E8; // type:object size:0x110 +lbl_808D95F8 = .data:0x808D95F8; // type:object size:0x4 data:string +lbl_808D95FC = .data:0x808D95FC; // type:object size:0x34 +lbl_808D9630 = .data:0x808D9630; // type:object size:0x20 +lbl_808D9650 = .data:0x808D9650; // type:object size:0x20 data:string +lbl_808D9670 = .data:0x808D9670; // type:object size:0x20 +lbl_808D9690 = .data:0x808D9690; // type:object size:0x20 data:string +lbl_808D96B0 = .data:0x808D96B0; // type:object size:0x20 +lbl_808D96D0 = .data:0x808D96D0; // type:object size:0x3F0 +lbl_808D9AC0 = .data:0x808D9AC0; // type:object size:0x4 +lbl_808D9AC4 = .data:0x808D9AC4; // type:object size:0x4 +lbl_808D9AC8 = .data:0x808D9AC8; // type:object size:0x4 +lbl_808D9ACC = .data:0x808D9ACC; // type:object size:0x4 +lbl_808D9AD0 = .data:0x808D9AD0; // type:object size:0xC +lbl_808D9ADC = .data:0x808D9ADC; // type:object size:0x28 +lbl_808D9B04 = .data:0x808D9B04; // type:object size:0x28 +lbl_808D9B2C = .data:0x808D9B2C; // type:object size:0x3C +lbl_808D9B68 = .data:0x808D9B68; // type:object size:0x20 +lbl_808D9B88 = .data:0x808D9B88; // type:object size:0x134 +lbl_808D9CBC = .data:0x808D9CBC; // type:object size:0xB4 +lbl_808D9D70 = .data:0x808D9D70; // type:object size:0x18 +lbl_808D9D88 = .data:0x808D9D88; // type:object size:0x14 data:string +lbl_808D9D9C = .data:0x808D9D9C; // type:object size:0x14 +lbl_808D9DB0 = .data:0x808D9DB0; // type:object size:0x420 +lbl_808DA1D0 = .data:0x808DA1D0; // type:object size:0xAC +lbl_808DA27C = .data:0x808DA27C; // type:object size:0x10 +lbl_808DA28C = .data:0x808DA28C; // type:object size:0xC +lbl_808DA298 = .data:0x808DA298; // type:object size:0x338 +lbl_808DA5D0 = .data:0x808DA5D0; // type:object size:0x18 +lbl_808DA5E8 = .data:0x808DA5E8; // type:object size:0x10 +lbl_808DA5F8 = .data:0x808DA5F8; // type:object size:0x18 +lbl_808DA610 = .data:0x808DA610; // type:object size:0x440 +lbl_808DAA50 = .data:0x808DAA50; // type:object size:0x98 +lbl_808DAAE8 = .data:0x808DAAE8; // type:object size:0x14 +lbl_808DAAFC = .data:0x808DAAFC; // type:object size:0x64 +lbl_808DAB60 = .data:0x808DAB60; // type:object size:0x58 +lbl_808DABB8 = .data:0x808DABB8; // type:object size:0x18 +lbl_808DABD0 = .data:0x808DABD0; // type:object size:0xC +lbl_808DABDC = .data:0x808DABDC; // type:object size:0x14 +lbl_808DABF0 = .data:0x808DABF0; // type:object size:0x420 +lbl_808DB010 = .data:0x808DB010; // type:object size:0x20 data:string +lbl_808DB030 = .data:0x808DB030; // type:object size:0x1C +lbl_808DB04C = .data:0x808DB04C; // type:object size:0x24 data:string +lbl_808DB070 = .data:0x808DB070; // type:object size:0x4 data:4byte +lbl_808DB074 = .data:0x808DB074; // type:object size:0x8 +lbl_808DB07C = .data:0x808DB07C; // type:object size:0x4 data:4byte +lbl_808DB080 = .data:0x808DB080; // type:object size:0x4 data:4byte +lbl_808DB084 = .data:0x808DB084; // type:object size:0x30 +lbl_808DB0B4 = .data:0x808DB0B4; // type:object size:0x60 +lbl_808DB114 = .data:0x808DB114; // type:object size:0x53C +lbl_808DB650 = .data:0x808DB650; // type:object size:0x558 +lbl_808DBBA8 = .data:0x808DBBA8; // type:object size:0x10 +lbl_808DBBB8 = .data:0x808DBBB8; // type:object size:0x10 data:string +lbl_808DBBC8 = .data:0x808DBBC8; // type:object size:0x18 +lbl_808DBBE0 = .data:0x808DBBE0; // type:object size:0x30 +lbl_808DBC10 = .data:0x808DBC10; // type:object size:0x94 +lbl_808DBCA4 = .data:0x808DBCA4; // type:object size:0x14 +lbl_808DBCB8 = .data:0x808DBCB8; // type:object size:0x70 +lbl_808DBD28 = .data:0x808DBD28; // type:object size:0x60 data:string +lbl_808DBD88 = .data:0x808DBD88; // type:object size:0x18 +lbl_808DBDA0 = .data:0x808DBDA0; // type:object size:0x14 +lbl_808DBDB4 = .data:0x808DBDB4; // type:object size:0x1C +lbl_808DBDD0 = .data:0x808DBDD0; // type:object size:0x398 +lbl_808DC168 = .data:0x808DC168; // type:object size:0x1C0 +lbl_808DC328 = .data:0x808DC328; // type:object size:0x14 +lbl_808DC33C = .data:0x808DC33C; // type:object size:0x6C +lbl_808DC3A8 = .data:0x808DC3A8; // type:object size:0xB0 +lbl_808DC458 = .data:0x808DC458; // type:object size:0x18 +lbl_808DC470 = .data:0x808DC470; // type:object size:0x14 data:string +lbl_808DC484 = .data:0x808DC484; // type:object size:0x14 +lbl_808DC498 = .data:0x808DC498; // type:object size:0x400 +lbl_808DC898 = .data:0x808DC898; // type:object size:0x8 +lbl_808DC8A0 = .data:0x808DC8A0; // type:object size:0x18 +lbl_808DC8B8 = .data:0x808DC8B8; // type:object size:0x8 +lbl_808DC8C0 = .data:0x808DC8C0; // type:object size:0x10 +lbl_808DC8D0 = .data:0x808DC8D0; // type:object size:0x1C +lbl_808DC8EC = .data:0x808DC8EC; // type:object size:0xC +lbl_808DC8F8 = .data:0x808DC8F8; // type:object size:0x8 +lbl_808DC900 = .data:0x808DC900; // type:object size:0x8 +lbl_808DC908 = .data:0x808DC908; // type:object size:0x8 +lbl_808DC910 = .data:0x808DC910; // type:object size:0x10 +lbl_808DC920 = .data:0x808DC920; // type:object size:0x8 data:string +lbl_808DC928 = .data:0x808DC928; // type:object size:0x18 +lbl_808DC940 = .data:0x808DC940; // type:object size:0xB0 data:4byte +lbl_808DC9F0 = .data:0x808DC9F0; // type:object size:0x18 +lbl_808DCA08 = .data:0x808DCA08; // type:object size:0x20 +lbl_808DCA28 = .data:0x808DCA28; // type:object size:0x10 +lbl_808DCA38 = .data:0x808DCA38; // type:object size:0x20 +lbl_808DCA58 = .data:0x808DCA58; // type:object size:0x448 +lbl_808DCEA0 = .data:0x808DCEA0; // type:object size:0xF8 +lbl_808DCF98 = .data:0x808DCF98; // type:object size:0x20 +lbl_808DCFB8 = .data:0x808DCFB8; // type:object size:0x10 +lbl_808DCFC8 = .data:0x808DCFC8; // type:object size:0x28 +lbl_808DCFF0 = .data:0x808DCFF0; // type:object size:0xD0 +lbl_808DD0C0 = .data:0x808DD0C0; // type:object size:0x38 +lbl_808DD0F8 = .data:0x808DD0F8; // type:object size:0x14 +lbl_808DD10C = .data:0x808DD10C; // type:object size:0x6C +lbl_808DD178 = .data:0x808DD178; // type:object size:0x60 +lbl_808DD1D8 = .data:0x808DD1D8; // type:object size:0x20 +lbl_808DD1F8 = .data:0x808DD1F8; // type:object size:0x14 +lbl_808DD20C = .data:0x808DD20C; // type:object size:0x24 +lbl_808DD230 = .data:0x808DD230; // type:object size:0xD0 +lbl_808DD300 = .data:0x808DD300; // type:object size:0x94 +lbl_808DD394 = .data:0x808DD394; // type:object size:0x14 +lbl_808DD3A8 = .data:0x808DD3A8; // type:object size:0x68 data:string +lbl_808DD410 = .data:0x808DD410; // type:object size:0x60 +lbl_808DD470 = .data:0x808DD470; // type:object size:0x18 +lbl_808DD488 = .data:0x808DD488; // type:object size:0x20 +lbl_808DD4A8 = .data:0x808DD4A8; // type:object size:0x20 +lbl_808DD4C8 = .data:0x808DD4C8; // type:object size:0x398 +lbl_808DD860 = .data:0x808DD860; // type:object size:0x14 +lbl_808DD874 = .data:0x808DD874; // type:object size:0x6C +lbl_808DD8E0 = .data:0x808DD8E0; // type:object size:0x68 +lbl_808DD948 = .data:0x808DD948; // type:object size:0x18 +lbl_808DD960 = .data:0x808DD960; // type:object size:0x24 +lbl_808DD984 = .data:0x808DD984; // type:object size:0x24 +lbl_808DD9A8 = .data:0x808DD9A8; // type:object size:0x8 +lbl_808DD9B0 = .data:0x808DD9B0; // type:object size:0x10 +lbl_808DD9C0 = .data:0x808DD9C0; // type:object size:0x8 data:string +lbl_808DD9C8 = .data:0x808DD9C8; // type:object size:0x10 +lbl_808DD9D8 = .data:0x808DD9D8; // type:object size:0x8 data:string +lbl_808DD9E0 = .data:0x808DD9E0; // type:object size:0x120 +lbl_808DDB00 = .data:0x808DDB00; // type:object size:0x20 +lbl_808DDB20 = .data:0x808DDB20; // type:object size:0x14 +lbl_808DDB34 = .data:0x808DDB34; // type:object size:0x24 +lbl_808DDB58 = .data:0x808DDB58; // type:object size:0xD0 +lbl_808DDC28 = .data:0x808DDC28; // type:object size:0x400 +lbl_808DE028 = .data:0x808DE028; // type:object size:0x18 +lbl_808DE040 = .data:0x808DE040; // type:object size:0x18 +lbl_808DE058 = .data:0x808DE058; // type:object size:0x18 +lbl_808DE070 = .data:0x808DE070; // type:object size:0x440 +lbl_808DE4B0 = .data:0x808DE4B0; // type:object size:0x190 +lbl_808DE640 = .data:0x808DE640; // type:object size:0x20 +lbl_808DE660 = .data:0x808DE660; // type:object size:0x18 +lbl_808DE678 = .data:0x808DE678; // type:object size:0x20 +lbl_808DE698 = .data:0x808DE698; // type:object size:0x448 +lbl_808DEAE0 = .data:0x808DEAE0; // type:object size:0x94 +lbl_808DEB74 = .data:0x808DEB74; // type:object size:0x13C +lbl_808DECB0 = .data:0x808DECB0; // type:object size:0x10 data:string +lbl_808DECC0 = .data:0x808DECC0; // type:object size:0x18 +lbl_808DECD8 = .data:0x808DECD8; // type:object size:0x1C +lbl_808DECF4 = .data:0x808DECF4; // type:object size:0x14 +lbl_808DED08 = .data:0x808DED08; // type:object size:0x370 +lbl_808DF078 = .data:0x808DF078; // type:object size:0x28 +lbl_808DF0A0 = .data:0x808DF0A0; // type:object size:0xE8 +lbl_808DF188 = .data:0x808DF188; // type:object size:0x18 +lbl_808DF1A0 = .data:0x808DF1A0; // type:object size:0x10 +lbl_808DF1B0 = .data:0x808DF1B0; // type:object size:0x18 +lbl_808DF1C8 = .data:0x808DF1C8; // type:object size:0x420 +lbl_808DF5E8 = .data:0x808DF5E8; // type:object size:0x10 data:string +lbl_808DF5F8 = .data:0x808DF5F8; // type:object size:0x14 data:string +lbl_808DF60C = .data:0x808DF60C; // type:object size:0x14 +lbl_808DF620 = .data:0x808DF620; // type:object size:0x118 +lbl_808DF738 = .data:0x808DF738; // type:object size:0x20 +lbl_808DF758 = .data:0x808DF758; // type:object size:0x14 +lbl_808DF76C = .data:0x808DF76C; // type:object size:0x24 +lbl_808DF790 = .data:0x808DF790; // type:object size:0xD0 +lbl_808DF860 = .data:0x808DF860; // type:object size:0x140 +lbl_808DF9A0 = .data:0x808DF9A0; // type:object size:0x8 +lbl_808DF9A8 = .data:0x808DF9A8; // type:object size:0x74 +lbl_808DFA1C = .data:0x808DFA1C; // type:object size:0x3C +lbl_808DFA58 = .data:0x808DFA58; // type:object size:0x3C +lbl_808DFA94 = .data:0x808DFA94; // type:object size:0x14 +lbl_808DFAA8 = .data:0x808DFAA8; // type:object size:0x3C +lbl_808DFAE4 = .data:0x808DFAE4; // type:object size:0x3C +lbl_808DFB20 = .data:0x808DFB20; // type:object size:0x38 +lbl_808DFB58 = .data:0x808DFB58; // type:object size:0x30 +lbl_808DFB88 = .data:0x808DFB88; // type:object size:0x30 +lbl_808DFBB8 = .data:0x808DFBB8; // type:object size:0x34 +lbl_808DFBEC = .data:0x808DFBEC; // type:object size:0x30 +lbl_808DFC1C = .data:0x808DFC1C; // type:object size:0x30 +lbl_808DFC4C = .data:0x808DFC4C; // type:object size:0x3DC +lbl_808E0028 = .data:0x808E0028; // type:object size:0x18 +lbl_808E0040 = .data:0x808E0040; // type:object size:0x20 +lbl_808E0060 = .data:0x808E0060; // type:object size:0x4 data:4byte +lbl_808E0064 = .data:0x808E0064; // type:object size:0x10 +lbl_808E0074 = .data:0x808E0074; // type:object size:0x1C +lbl_808E0090 = .data:0x808E0090; // type:object size:0x4 data:4byte +lbl_808E0094 = .data:0x808E0094; // type:object size:0x14 +lbl_808E00A8 = .data:0x808E00A8; // type:object size:0x4 data:4byte +lbl_808E00AC = .data:0x808E00AC; // type:object size:0x1C +lbl_808E00C8 = .data:0x808E00C8; // type:object size:0x190 data:4byte +lbl_808E0258 = .data:0x808E0258; // type:object size:0x4 +lbl_808E025C = .data:0x808E025C; // type:object size:0x4 +lbl_808E0260 = .data:0x808E0260; // type:object size:0x4 +lbl_808E0264 = .data:0x808E0264; // type:object size:0x4 +lbl_808E0268 = .data:0x808E0268; // type:object size:0x4 +lbl_808E026C = .data:0x808E026C; // type:object size:0x4 +lbl_808E0270 = .data:0x808E0270; // type:object size:0x4 +lbl_808E0274 = .data:0x808E0274; // type:object size:0x4 +lbl_808E0278 = .data:0x808E0278; // type:object size:0x8 +lbl_808E0280 = .data:0x808E0280; // type:object size:0x178 +lbl_808E03F8 = .data:0x808E03F8; // type:object size:0x30 +lbl_808E0428 = .data:0x808E0428; // type:object size:0x30 +lbl_808E0458 = .data:0x808E0458; // type:object size:0xE8 +lbl_808E0540 = .data:0x808E0540; // type:object size:0x48 data:string +lbl_808E0588 = .data:0x808E0588; // type:object size:0x3C +lbl_808E05C4 = .data:0x808E05C4; // type:object size:0x44 data:string +lbl_808E0608 = .data:0x808E0608; // type:object size:0x40 +lbl_808E0648 = .data:0x808E0648; // type:object size:0xE0 +lbl_808E0728 = .data:0x808E0728; // type:object size:0x78 +lbl_808E07A0 = .data:0x808E07A0; // type:object size:0x258 +lbl_808E09F8 = .data:0x808E09F8; // type:object size:0x8 +lbl_808E0A00 = .data:0x808E0A00; // type:object size:0x7D4 +lbl_808E11D4 = .data:0x808E11D4; // type:object size:0x64 +lbl_808E1238 = .data:0x808E1238; // type:object size:0x20 +lbl_808E1258 = .data:0x808E1258; // type:object size:0x38 +lbl_808E1290 = .data:0x808E1290; // type:object size:0x48 +lbl_808E12D8 = .data:0x808E12D8; // type:object size:0x40 +lbl_808E1318 = .data:0x808E1318; // type:object size:0x1C +lbl_808E1334 = .data:0x808E1334; // type:object size:0x3C +lbl_808E1370 = .data:0x808E1370; // type:object size:0x40 +lbl_808E13B0 = .data:0x808E13B0; // type:object size:0x10 +lbl_808E13C0 = .data:0x808E13C0; // type:object size:0x48 +lbl_808E1408 = .data:0x808E1408; // type:object size:0x5C +lbl_808E1464 = .data:0x808E1464; // type:object size:0x74 +lbl_808E14D8 = .data:0x808E14D8; // type:object size:0xA8 +lbl_808E1580 = .data:0x808E1580; // type:object size:0x50 data:string +lbl_808E15D0 = .data:0x808E15D0; // type:object size:0x18 +lbl_808E15E8 = .data:0x808E15E8; // type:object size:0x30 data:string +lbl_808E1618 = .data:0x808E1618; // type:object size:0x1B8 +lbl_808E17D0 = .data:0x808E17D0; // type:object size:0x40 +jumptable_808E1810 = .data:0x808E1810; // type:object size:0x84 scope:local +jumptable_808E1898 = .data:0x808E1898; // type:object size:0x2C scope:local +lbl_808E18C8 = .data:0x808E18C8; // type:object size:0x14 +lbl_808E18DC = .data:0x808E18DC; // type:object size:0x1C +lbl_808E18F8 = .data:0x808E18F8; // type:object size:0x1C +lbl_808E1914 = .data:0x808E1914; // type:object size:0x10 +lbl_808E1924 = .data:0x808E1924; // type:object size:0xC +lbl_808E1930 = .data:0x808E1930; // type:object size:0x4C +jumptable_808E197C = .data:0x808E197C; // type:object size:0xC4 scope:local +lbl_808E1A40 = .data:0x808E1A40; // type:object size:0x10 +lbl_808E1A50 = .data:0x808E1A50; // type:object size:0x10 +lbl_808E1A60 = .data:0x808E1A60; // type:object size:0x10 +lbl_808E1A70 = .data:0x808E1A70; // type:object size:0x10 +lbl_808E1A80 = .data:0x808E1A80; // type:object size:0x14 data:string +lbl_808E1A94 = .data:0x808E1A94; // type:object size:0x14 data:string +lbl_808E1AA8 = .data:0x808E1AA8; // type:object size:0x20 +lbl_808E1AC8 = .data:0x808E1AC8; // type:object size:0x18 data:string +lbl_808E1AE0 = .data:0x808E1AE0; // type:object size:0x20 +lbl_808E1B00 = .data:0x808E1B00; // type:object size:0x20 +lbl_808E1B20 = .data:0x808E1B20; // type:object size:0x14 +lbl_808E1B34 = .data:0x808E1B34; // type:object size:0x14 data:string +lbl_808E1B48 = .data:0x808E1B48; // type:object size:0x20 +lbl_808E1B68 = .data:0x808E1B68; // type:object size:0x18 +lbl_808E1B80 = .data:0x808E1B80; // type:object size:0x14 data:string +lbl_808E1B94 = .data:0x808E1B94; // type:object size:0x1C +lbl_808E1BB0 = .data:0x808E1BB0; // type:object size:0x48 +lbl_808E1BF8 = .data:0x808E1BF8; // type:object size:0x10 data:string +jumptable_808E1C08 = .data:0x808E1C08; // type:object size:0x88 scope:local +jumptable_808E1C90 = .data:0x808E1C90; // type:object size:0x88 scope:local +jumptable_808E1D18 = .data:0x808E1D18; // type:object size:0x74 scope:local +lbl_808E1D90 = .data:0x808E1D90; // type:object size:0x50 +lbl_808E1DE0 = .data:0x808E1DE0; // type:object size:0x48 data:string +lbl_808E1E28 = .data:0x808E1E28; // type:object size:0x10 +lbl_808E1E38 = .data:0x808E1E38; // type:object size:0x10 +lbl_808E1E48 = .data:0x808E1E48; // type:object size:0xA0 +lbl_808E1EE8 = .data:0x808E1EE8; // type:object size:0x10 +lbl_808E1EF8 = .data:0x808E1EF8; // type:object size:0x48 +jumptable_808E1F40 = .data:0x808E1F40; // type:object size:0x68 scope:local +lbl_808E1FA8 = .data:0x808E1FA8; // type:object size:0x48 data:string +lbl_808E1FF0 = .data:0x808E1FF0; // type:object size:0x28 +lbl_808E2018 = .data:0x808E2018; // type:object size:0x58 +lbl_808E2070 = .data:0x808E2070; // type:object size:0x180 +jumptable_808E21F0 = .data:0x808E21F0; // type:object size:0x40 scope:local +lbl_808E2230 = .data:0x808E2230; // type:object size:0x24 data:string +lbl_808E2254 = .data:0x808E2254; // type:object size:0x2C +lbl_808E2280 = .data:0x808E2280; // type:object size:0x18 +lbl_808E2298 = .data:0x808E2298; // type:object size:0x28 data:string +lbl_808E22C0 = .data:0x808E22C0; // type:object size:0x24 +lbl_808E22E4 = .data:0x808E22E4; // type:object size:0x34 +lbl_808E2318 = .data:0x808E2318; // type:object size:0x28 data:string +lbl_808E2340 = .data:0x808E2340; // type:object size:0x24 +lbl_808E2364 = .data:0x808E2364; // type:object size:0x9C +lbl_808E2400 = .data:0x808E2400; // type:object size:0xBC +jumptable_808E24BC = .data:0x808E24BC; // type:object size:0x6C scope:local +lbl_808E2A50 = .data:0x808E2A50; // type:object size:0x18 data:string +lbl_808E2A68 = .data:0x808E2A68; // type:object size:0x20 +lbl_808E2A88 = .data:0x808E2A88; // type:object size:0xB0 +lbl_808E2B38 = .data:0x808E2B38; // type:object size:0x20 +lbl_808E2B58 = .data:0x808E2B58; // type:object size:0x50 +lbl_808E2BA8 = .data:0x808E2BA8; // type:object size:0x50 +lbl_808E2BF8 = .data:0x808E2BF8; // type:object size:0x10 +lbl_808E2C20 = .sdata:0x808E2C20; // type:object size:0x1 +lbl_808E2C21 = .sdata:0x808E2C21; // type:object size:0x1 +lbl_808E2C22 = .sdata:0x808E2C22; // type:object size:0x6 +s_seed$34 = .sdata:0x808E2C28; // type:object size:0x8 data:4byte +lbl_808E2C30 = .sdata:0x808E2C30; // type:object size:0x1 data:byte +lbl_808E2C31 = .sdata:0x808E2C31; // type:object size:0x1 data:byte +lbl_808E2C32 = .sdata:0x808E2C32; // type:object size:0x6 data:byte +lbl_808E2C38 = .sdata:0x808E2C38; // type:object size:0x1 data:byte +lbl_808E2C39 = .sdata:0x808E2C39; // type:object size:0x1 data:byte +lbl_808E2C3A = .sdata:0x808E2C3A; // type:object size:0x6 data:byte +lbl_808E2C40 = .sdata:0x808E2C40; // type:object size:0x1 data:byte +lbl_808E2C41 = .sdata:0x808E2C41; // type:object size:0x1 data:byte +lbl_808E2C42 = .sdata:0x808E2C42; // type:object size:0x6 data:byte +lbl_808E2C48 = .sdata:0x808E2C48; // type:object size:0x8 data:byte +lbl_808E2C50 = .sdata:0x808E2C50; // type:object size:0x1 data:byte +lbl_808E2C51 = .sdata:0x808E2C51; // type:object size:0x1 data:byte +lbl_808E2C52 = .sdata:0x808E2C52; // type:object size:0x6 data:byte +lbl_808E2C58 = .sdata:0x808E2C58; // type:object size:0x1 data:byte +lbl_808E2C59 = .sdata:0x808E2C59; // type:object size:0x7 data:byte +lbl_808E2C60 = .sdata:0x808E2C60; // type:object size:0x8 data:byte +lbl_808E2C68 = .sdata:0x808E2C68; // type:object size:0x1 data:byte +lbl_808E2C69 = .sdata:0x808E2C69; // type:object size:0x1 data:byte +lbl_808E2C6A = .sdata:0x808E2C6A; // type:object size:0x6 data:byte +lbl_808E2C70 = .sdata:0x808E2C70; // type:object size:0x1 data:byte +lbl_808E2C71 = .sdata:0x808E2C71; // type:object size:0x1 data:byte +lbl_808E2C72 = .sdata:0x808E2C72; // type:object size:0x1 data:byte +lbl_808E2C73 = .sdata:0x808E2C73; // type:object size:0x1 data:byte +lbl_808E2C74 = .sdata:0x808E2C74; // type:object size:0x1 data:byte +lbl_808E2C75 = .sdata:0x808E2C75; // type:object size:0x1 data:byte +lbl_808E2C78 = .sdata:0x808E2C78; // type:object size:0x1 +lbl_808E2C79 = .sdata:0x808E2C79; // type:object size:0x7 +lbl_808E2C80 = .sdata:0x808E2C80; // type:object size:0x2 +lbl_808E2C82 = .sdata:0x808E2C82; // type:object size:0x1 +lbl_808E2C83 = .sdata:0x808E2C83; // type:object size:0x1 data:byte +lbl_808E2C84 = .sdata:0x808E2C84; // type:object size:0x1 data:byte +lbl_808E2C85 = .sdata:0x808E2C85; // type:object size:0x1 data:byte +lbl_808E2C88 = .sdata:0x808E2C88; // type:object size:0x2 data:2byte +lbl_808E2C8A = .sdata:0x808E2C8A; // type:object size:0x6 data:byte +lbl_808E2C90 = .sdata:0x808E2C90; // type:object size:0x1 +lbl_808E2C91 = .sdata:0x808E2C91; // type:object size:0x7 +lbl_808E2C98 = .sdata:0x808E2C98; // type:object size:0x1 +lbl_808E2C99 = .sdata:0x808E2C99; // type:object size:0x7 +lbl_808E2CA0 = .sdata:0x808E2CA0; // type:object size:0x8 data:byte +lbl_808E2CA8 = .sdata:0x808E2CA8; // type:object size:0x8 +lbl_808E2CB0 = .sdata:0x808E2CB0; // type:object size:0x8 +lbl_808E2CB8 = .sdata:0x808E2CB8; // type:object size:0x1 +lbl_808E2CB9 = .sdata:0x808E2CB9; // type:object size:0x1 data:byte +lbl_808E2CBA = .sdata:0x808E2CBA; // type:object size:0x1 data:byte +lbl_808E2CBB = .sdata:0x808E2CBB; // type:object size:0x5 data:byte +lbl_808E2CC0 = .sdata:0x808E2CC0; // type:object size:0x1 data:byte +lbl_808E2CC1 = .sdata:0x808E2CC1; // type:object size:0x1 data:byte +lbl_808E2CC2 = .sdata:0x808E2CC2; // type:object size:0x6 data:byte +lbl_808E2CC8 = .sdata:0x808E2CC8; // type:object size:0x1 +lbl_808E2CC9 = .sdata:0x808E2CC9; // type:object size:0x1 data:byte +lbl_808E2CCA = .sdata:0x808E2CCA; // type:object size:0x1 data:byte +lbl_808E2CCB = .sdata:0x808E2CCB; // type:object size:0x5 data:byte +lbl_808E2CD0 = .sdata:0x808E2CD0; // type:object size:0x1 data:byte +lbl_808E2CD1 = .sdata:0x808E2CD1; // type:object size:0x1 data:byte +lbl_808E2CD2 = .sdata:0x808E2CD2; // type:object size:0x1 data:byte +lbl_808E2CD3 = .sdata:0x808E2CD3; // type:object size:0x1 data:byte +lbl_808E2CD4 = .sdata:0x808E2CD4; // type:object size:0x1 data:byte +lbl_808E2CD5 = .sdata:0x808E2CD5; // type:object size:0x1 data:byte +lbl_808E2CD8 = .sdata:0x808E2CD8; // type:object size:0x1 data:byte +lbl_808E2CD9 = .sdata:0x808E2CD9; // type:object size:0x1 data:byte +lbl_808E2CDA = .sdata:0x808E2CDA; // type:object size:0x6 data:byte +lbl_808E2CE0 = .sdata:0x808E2CE0; // type:object size:0x2 +lbl_808E2CE2 = .sdata:0x808E2CE2; // type:object size:0x1 data:byte +lbl_808E2CE3 = .sdata:0x808E2CE3; // type:object size:0x1 data:byte +lbl_808E2CE4 = .sdata:0x808E2CE4; // type:object size:0x1 data:byte +lbl_808E2CE5 = .sdata:0x808E2CE5; // type:object size:0x1 data:byte +lbl_808E2CE6 = .sdata:0x808E2CE6; // type:object size:0x1 data:byte +lbl_808E2CE7 = .sdata:0x808E2CE7; // type:object size:0x1 data:byte +lbl_808E2CE8 = .sdata:0x808E2CE8; // type:object size:0x1 data:byte +lbl_808E2CE9 = .sdata:0x808E2CE9; // type:object size:0x1 data:byte +lbl_808E2CEA = .sdata:0x808E2CEA; // type:object size:0x6 data:byte +lbl_808E2CF0 = .sdata:0x808E2CF0; // type:object size:0x8 +lbl_808E2CF8 = .sdata:0x808E2CF8; // type:object size:0x8 +lbl_808E2D00 = .sdata:0x808E2D00; // type:object size:0x8 +lbl_808E2D08 = .sdata:0x808E2D08; // type:object size:0x1 +lbl_808E2D09 = .sdata:0x808E2D09; // type:object size:0x7 +lbl_808E2D10 = .sdata:0x808E2D10; // type:object size:0x1 data:byte +lbl_808E2D11 = .sdata:0x808E2D11; // type:object size:0x1 data:byte +lbl_808E2D12 = .sdata:0x808E2D12; // type:object size:0x6 data:byte +lbl_808E2D18 = .sdata:0x808E2D18; // type:object size:0x8 +lbl_808E2D20 = .sdata:0x808E2D20; // type:object size:0x1 data:byte +lbl_808E2D21 = .sdata:0x808E2D21; // type:object size:0x1 data:byte +lbl_808E2D22 = .sdata:0x808E2D22; // type:object size:0x6 data:byte +lbl_808E2D28 = .sdata:0x808E2D28; // type:object size:0x8 +lbl_808E2D30 = .sdata:0x808E2D30; // type:object size:0x1 data:byte +lbl_808E2D31 = .sdata:0x808E2D31; // type:object size:0x1 data:byte +lbl_808E2D32 = .sdata:0x808E2D32; // type:object size:0x6 data:byte +lbl_808E2D38 = .sdata:0x808E2D38; // type:object size:0x1 data:byte +lbl_808E2D39 = .sdata:0x808E2D39; // type:object size:0x1 data:byte +lbl_808E2D3A = .sdata:0x808E2D3A; // type:object size:0x6 data:byte +lbl_808E2D40 = .sdata:0x808E2D40; // type:object size:0x1 +lbl_808E2D41 = .sdata:0x808E2D41; // type:object size:0x7 +lbl_808E2D48 = .sdata:0x808E2D48; // type:object size:0x8 +lbl_808E2D50 = .sdata:0x808E2D50; // type:object size:0x8 +lbl_808E2D58 = .sdata:0x808E2D58; // type:object size:0x1 +lbl_808E2D59 = .sdata:0x808E2D59; // type:object size:0x7 +lbl_808E2D60 = .sdata:0x808E2D60; // type:object size:0x2 +lbl_808E2D62 = .sdata:0x808E2D62; // type:object size:0x1 data:byte +lbl_808E2D63 = .sdata:0x808E2D63; // type:object size:0x1 data:byte +lbl_808E2D64 = .sdata:0x808E2D64; // type:object size:0x1 data:byte +lbl_808E2D68 = .sdata:0x808E2D68; // type:object size:0x1 +lbl_808E2D69 = .sdata:0x808E2D69; // type:object size:0x7 +lbl_808E2D70 = .sdata:0x808E2D70; // type:object size:0x1 data:byte +lbl_808E2D71 = .sdata:0x808E2D71; // type:object size:0x1 data:byte +lbl_808E2D72 = .sdata:0x808E2D72; // type:object size:0x6 data:byte +lbl_808E2D78 = .sdata:0x808E2D78; // type:object size:0x8 +lbl_808E2D80 = .sdata:0x808E2D80; // type:object size:0x8 +lbl_808E2D88 = .sdata:0x808E2D88; // type:object size:0x1 data:byte +lbl_808E2D89 = .sdata:0x808E2D89; // type:object size:0x1 data:byte +lbl_808E2D8A = .sdata:0x808E2D8A; // type:object size:0x1 data:byte +lbl_808E2D8B = .sdata:0x808E2D8B; // type:object size:0x1 data:byte +lbl_808E2D8C = .sdata:0x808E2D8C; // type:object size:0x1 data:byte +lbl_808E2D8D = .sdata:0x808E2D8D; // type:object size:0x1 data:byte +lbl_808E2D90 = .sdata:0x808E2D90; // type:object size:0x1 data:byte +lbl_808E2D91 = .sdata:0x808E2D91; // type:object size:0x1 data:byte +lbl_808E2D92 = .sdata:0x808E2D92; // type:object size:0x6 data:byte +lbl_808E2D98 = .sdata:0x808E2D98; // type:object size:0x1 data:byte +lbl_808E2D99 = .sdata:0x808E2D99; // type:object size:0x1 data:byte +lbl_808E2D9A = .sdata:0x808E2D9A; // type:object size:0x6 data:byte +s_bUseSessionSpace__Q26Quazal16DuplicationSpace = .sdata:0x808E2DA0; // type:object size:0x8 data:byte +lbl_808E2DA8 = .sdata:0x808E2DA8; // type:object size:0x1 data:byte +lbl_808E2DA9 = .sdata:0x808E2DA9; // type:object size:0x1 data:byte +lbl_808E2DAA = .sdata:0x808E2DAA; // type:object size:0x6 data:byte +lbl_808E2DB0 = .sdata:0x808E2DB0; // type:object size:0x8 data:byte +lbl_808E2DB8 = .sdata:0x808E2DB8; // type:object size:0x8 +lbl_808E2DC0 = .sdata:0x808E2DC0; // type:object size:0x8 +lbl_808E2DC8 = .sdata:0x808E2DC8; // type:object size:0x1 data:byte +lbl_808E2DC9 = .sdata:0x808E2DC9; // type:object size:0x1 data:byte +lbl_808E2DCA = .sdata:0x808E2DCA; // type:object size:0x6 data:byte +lbl_808E2DD0 = .sdata:0x808E2DD0; // type:object size:0x8 +lbl_808E2DD8 = .sdata:0x808E2DD8; // type:object size:0x8 +lbl_808E2DE0 = .sdata:0x808E2DE0; // type:object size:0x1 +lbl_808E2DE1 = .sdata:0x808E2DE1; // type:object size:0x7 +lbl_808E2DE8 = .sdata:0x808E2DE8; // type:object size:0x8 +lbl_808E2DF0 = .sdata:0x808E2DF0; // type:object size:0x1 +lbl_808E2DF1 = .sdata:0x808E2DF1; // type:object size:0x7 +lbl_808E2DF8 = .sdata:0x808E2DF8; // type:object size:0x8 +lbl_808E2E00 = .sdata:0x808E2E00; // type:object size:0x1 +lbl_808E2E01 = .sdata:0x808E2E01; // type:object size:0x7 data:byte +lbl_808E2E08 = .sdata:0x808E2E08; // type:object size:0x1 +lbl_808E2E09 = .sdata:0x808E2E09; // type:object size:0x1 +lbl_808E2E0A = .sdata:0x808E2E0A; // type:object size:0x6 +lbl_808E2E10 = .sdata:0x808E2E10; // type:object size:0x1 data:byte +lbl_808E2E11 = .sdata:0x808E2E11; // type:object size:0x1 +lbl_808E2E12 = .sdata:0x808E2E12; // type:object size:0x1 +lbl_808E2E13 = .sdata:0x808E2E13; // type:object size:0x5 +lbl_808E2E18 = .sdata:0x808E2E18; // type:object size:0x8 data:byte +lbl_808E2E20 = .sdata:0x808E2E20; // type:object size:0x1 +lbl_808E2E21 = .sdata:0x808E2E21; // type:object size:0x1 +lbl_808E2E22 = .sdata:0x808E2E22; // type:object size:0x2 +lbl_808E2E24 = .sdata:0x808E2E24; // type:object size:0x4 +lbl_808E2E28 = .sdata:0x808E2E28; // type:object size:0x8 +lbl_808E2E30 = .sdata:0x808E2E30; // type:object size:0x4 +lbl_808E2E34 = .sdata:0x808E2E34; // type:object size:0x4 +lbl_808E2E38 = .sdata:0x808E2E38; // type:object size:0x1 +lbl_808E2E39 = .sdata:0x808E2E39; // type:object size:0x1 +lbl_808E2E3A = .sdata:0x808E2E3A; // type:object size:0x6 +lbl_808E2E40 = .sdata:0x808E2E40; // type:object size:0x1 +lbl_808E2E41 = .sdata:0x808E2E41; // type:object size:0x1 +lbl_808E2E42 = .sdata:0x808E2E42; // type:object size:0x6 +lbl_808E2E48 = .sdata:0x808E2E48; // type:object size:0x8 +lbl_808E2E50 = .sdata:0x808E2E50; // type:object size:0x1 +lbl_808E2E51 = .sdata:0x808E2E51; // type:object size:0x1 +lbl_808E2E52 = .sdata:0x808E2E52; // type:object size:0x6 +lbl_808E2E58 = .sdata:0x808E2E58; // type:object size:0x1 +lbl_808E2E59 = .sdata:0x808E2E59; // type:object size:0x1 +lbl_808E2E5A = .sdata:0x808E2E5A; // type:object size:0x1 +lbl_808E2E5B = .sdata:0x808E2E5B; // type:object size:0x1 +lbl_808E2E5C = .sdata:0x808E2E5C; // type:object size:0x1 +lbl_808E2E5D = .sdata:0x808E2E5D; // type:object size:0x3 +lbl_808E2E60 = .sdata:0x808E2E60; // type:object size:0x1 +lbl_808E2E61 = .sdata:0x808E2E61; // type:object size:0x1 +lbl_808E2E62 = .sdata:0x808E2E62; // type:object size:0x1 +lbl_808E2E63 = .sdata:0x808E2E63; // type:object size:0x1 +lbl_808E2E64 = .sdata:0x808E2E64; // type:object size:0x1 +lbl_808E2E65 = .sdata:0x808E2E65; // type:object size:0x1 +lbl_808E2E66 = .sdata:0x808E2E66; // type:object size:0x1 +lbl_808E2E67 = .sdata:0x808E2E67; // type:object size:0x1 +lbl_808E2E68 = .sdata:0x808E2E68; // type:object size:0x1 +lbl_808E2E69 = .sdata:0x808E2E69; // type:object size:0x7 +lbl_808E2E70 = .sdata:0x808E2E70; // type:object size:0x1 +lbl_808E2E71 = .sdata:0x808E2E71; // type:object size:0x1 +lbl_808E2E72 = .sdata:0x808E2E72; // type:object size:0x6 +lbl_808E2E78 = .sdata:0x808E2E78; // type:object size:0x1 +lbl_808E2E79 = .sdata:0x808E2E79; // type:object size:0x7 +lbl_808E2E80 = .sdata:0x808E2E80; // type:object size:0x4 +lbl_808E2E84 = .sdata:0x808E2E84; // type:object size:0x4 +lbl_808E2E88 = .sdata:0x808E2E88; // type:object size:0x1 +lbl_808E2E89 = .sdata:0x808E2E89; // type:object size:0x1 +lbl_808E2E8A = .sdata:0x808E2E8A; // type:object size:0x6 +lbl_808E2E90 = .sdata:0x808E2E90; // type:object size:0x4 +lbl_808E2E94 = .sdata:0x808E2E94; // type:object size:0x4 +lbl_808E2E98 = .sdata:0x808E2E98; // type:object size:0x4 +lbl_808E2E9C = .sdata:0x808E2E9C; // type:object size:0x4 +lbl_808E2EA0 = .sdata:0x808E2EA0; // type:object size:0x4 +lbl_808E2EA4 = .sdata:0x808E2EA4; // type:object size:0x4 +lbl_808E2EA8 = .sdata:0x808E2EA8; // type:object size:0x4 +lbl_808E2EAC = .sdata:0x808E2EAC; // type:object size:0x4 +lbl_808E2EB0 = .sdata:0x808E2EB0; // type:object size:0x4 +lbl_808E2EB4 = .sdata:0x808E2EB4; // type:object size:0x4 +lbl_808E2EB8 = .sdata:0x808E2EB8; // type:object size:0x4 +lbl_808E2EBC = .sdata:0x808E2EBC; // type:object size:0x4 +lbl_808E2EC0 = .sdata:0x808E2EC0; // type:object size:0x4 +lbl_808E2EC4 = .sdata:0x808E2EC4; // type:object size:0x4 +lbl_808E2EC8 = .sdata:0x808E2EC8; // type:object size:0x4 +lbl_808E2ECC = .sdata:0x808E2ECC; // type:object size:0x4 +lbl_808E2ED0 = .sdata:0x808E2ED0; // type:object size:0x8 +lbl_808E2ED8 = .sdata:0x808E2ED8; // type:object size:0x1 +lbl_808E2ED9 = .sdata:0x808E2ED9; // type:object size:0x1 +lbl_808E2EDA = .sdata:0x808E2EDA; // type:object size:0x6 +lbl_808E2EE0 = .sdata:0x808E2EE0; // type:object size:0x1 +lbl_808E2EE1 = .sdata:0x808E2EE1; // type:object size:0x1 +lbl_808E2EE2 = .sdata:0x808E2EE2; // type:object size:0x6 +lbl_808E2EE8 = .sdata:0x808E2EE8; // type:object size:0x8 +lbl_808E2EF0 = .sdata:0x808E2EF0; // type:object size:0x8 data:byte +lbl_808E2EF8 = .sdata:0x808E2EF8; // type:object size:0x1 +lbl_808E2EF9 = .sdata:0x808E2EF9; // type:object size:0x1 +lbl_808E2EFA = .sdata:0x808E2EFA; // type:object size:0x1 +lbl_808E2EFB = .sdata:0x808E2EFB; // type:object size:0x1 +lbl_808E2EFC = .sdata:0x808E2EFC; // type:object size:0x1 +lbl_808E2EFD = .sdata:0x808E2EFD; // type:object size:0x1 +lbl_808E2EFE = .sdata:0x808E2EFE; // type:object size:0x1 +lbl_808E2EFF = .sdata:0x808E2EFF; // type:object size:0x1 +lbl_808E2F00 = .sdata:0x808E2F00; // type:object size:0x1 +lbl_808E2F01 = .sdata:0x808E2F01; // type:object size:0x1 +lbl_808E2F02 = .sdata:0x808E2F02; // type:object size:0x1 +lbl_808E2F03 = .sdata:0x808E2F03; // type:object size:0x1 +lbl_808E2F04 = .sdata:0x808E2F04; // type:object size:0x1 +lbl_808E2F05 = .sdata:0x808E2F05; // type:object size:0x1 +lbl_808E2F06 = .sdata:0x808E2F06; // type:object size:0x1 +lbl_808E2F07 = .sdata:0x808E2F07; // type:object size:0x1 +lbl_808E2F08 = .sdata:0x808E2F08; // type:object size:0x1 +lbl_808E2F09 = .sdata:0x808E2F09; // type:object size:0x1 +lbl_808E2F0A = .sdata:0x808E2F0A; // type:object size:0x1 +lbl_808E2F0B = .sdata:0x808E2F0B; // type:object size:0x1 +lbl_808E2F0C = .sdata:0x808E2F0C; // type:object size:0x1 +lbl_808E2F0D = .sdata:0x808E2F0D; // type:object size:0x1 +lbl_808E2F0E = .sdata:0x808E2F0E; // type:object size:0x1 +lbl_808E2F0F = .sdata:0x808E2F0F; // type:object size:0x1 +lbl_808E2F10 = .sdata:0x808E2F10; // type:object size:0x1 +lbl_808E2F11 = .sdata:0x808E2F11; // type:object size:0x1 +lbl_808E2F12 = .sdata:0x808E2F12; // type:object size:0x1 +lbl_808E2F13 = .sdata:0x808E2F13; // type:object size:0x1 +lbl_808E2F14 = .sdata:0x808E2F14; // type:object size:0x1 +lbl_808E2F15 = .sdata:0x808E2F15; // type:object size:0x1 +lbl_808E2F16 = .sdata:0x808E2F16; // type:object size:0x1 +lbl_808E2F17 = .sdata:0x808E2F17; // type:object size:0x1 +lbl_808E2F18 = .sdata:0x808E2F18; // type:object size:0x8 +lbl_808E2F20 = .sdata:0x808E2F20; // type:object size:0x1 +lbl_808E2F21 = .sdata:0x808E2F21; // type:object size:0x1 +lbl_808E2F22 = .sdata:0x808E2F22; // type:object size:0x6 +lbl_808E2F28 = .sdata:0x808E2F28; // type:object size:0x1 +lbl_808E2F29 = .sdata:0x808E2F29; // type:object size:0x1 +lbl_808E2F2A = .sdata:0x808E2F2A; // type:object size:0x1 +lbl_808E2F2B = .sdata:0x808E2F2B; // type:object size:0x1 +lbl_808E2F2C = .sdata:0x808E2F2C; // type:object size:0x1 +lbl_808E2F2D = .sdata:0x808E2F2D; // type:object size:0x3 +lbl_808E2F30 = .sdata:0x808E2F30; // type:object size:0x1 +lbl_808E2F31 = .sdata:0x808E2F31; // type:object size:0x1 +lbl_808E2F32 = .sdata:0x808E2F32; // type:object size:0x6 +lbl_808E2F38 = .sdata:0x808E2F38; // type:object size:0x1 +lbl_808E2F39 = .sdata:0x808E2F39; // type:object size:0x1 +lbl_808E2F3A = .sdata:0x808E2F3A; // type:object size:0x6 +lbl_808E2F40 = .sdata:0x808E2F40; // type:object size:0x1 +lbl_808E2F41 = .sdata:0x808E2F41; // type:object size:0x1 +lbl_808E2F42 = .sdata:0x808E2F42; // type:object size:0x1 +lbl_808E2F43 = .sdata:0x808E2F43; // type:object size:0x1 +lbl_808E2F44 = .sdata:0x808E2F44; // type:object size:0x1 +lbl_808E2F45 = .sdata:0x808E2F45; // type:object size:0x1 +lbl_808E2F46 = .sdata:0x808E2F46; // type:object size:0x1 +lbl_808E2F47 = .sdata:0x808E2F47; // type:object size:0x1 +lbl_808E2F48 = .sdata:0x808E2F48; // type:object size:0x1 +lbl_808E2F49 = .sdata:0x808E2F49; // type:object size:0x1 +lbl_808E2F4A = .sdata:0x808E2F4A; // type:object size:0x1 +lbl_808E2F4B = .sdata:0x808E2F4B; // type:object size:0x5 +lbl_808E2F50 = .sdata:0x808E2F50; // type:object size:0x1 +lbl_808E2F51 = .sdata:0x808E2F51; // type:object size:0x1 +lbl_808E2F52 = .sdata:0x808E2F52; // type:object size:0x1 +lbl_808E2F53 = .sdata:0x808E2F53; // type:object size:0x1 +lbl_808E2F54 = .sdata:0x808E2F54; // type:object size:0x1 +lbl_808E2F55 = .sdata:0x808E2F55; // type:object size:0x3 +lbl_808E2F58 = .sdata:0x808E2F58; // type:object size:0x1 +lbl_808E2F59 = .sdata:0x808E2F59; // type:object size:0x1 +lbl_808E2F5A = .sdata:0x808E2F5A; // type:object size:0x6 +lbl_808E2F60 = .sdata:0x808E2F60; // type:object size:0x1 +lbl_808E2F61 = .sdata:0x808E2F61; // type:object size:0x1 +lbl_808E2F62 = .sdata:0x808E2F62; // type:object size:0x6 +lbl_808E2F68 = .sdata:0x808E2F68; // type:object size:0x8 +lbl_808E2F70 = .sdata:0x808E2F70; // type:object size:0x1 +lbl_808E2F71 = .sdata:0x808E2F71; // type:object size:0x1 +lbl_808E2F72 = .sdata:0x808E2F72; // type:object size:0x1 +lbl_808E2F73 = .sdata:0x808E2F73; // type:object size:0x1 +lbl_808E2F74 = .sdata:0x808E2F74; // type:object size:0x1 +lbl_808E2F75 = .sdata:0x808E2F75; // type:object size:0x1 +lbl_808E2F76 = .sdata:0x808E2F76; // type:object size:0x1 +lbl_808E2F77 = .sdata:0x808E2F77; // type:object size:0x1 +lbl_808E2F78 = .sdata:0x808E2F78; // type:object size:0x8 +lbl_808E2F80 = .sdata:0x808E2F80; // type:object size:0x1 +lbl_808E2F81 = .sdata:0x808E2F81; // type:object size:0x1 +lbl_808E2F82 = .sdata:0x808E2F82; // type:object size:0x6 +lbl_808E2F88 = .sdata:0x808E2F88; // type:object size:0x8 +lbl_808E2F90 = .sdata:0x808E2F90; // type:object size:0x1 +lbl_808E2F91 = .sdata:0x808E2F91; // type:object size:0x1 +lbl_808E2F92 = .sdata:0x808E2F92; // type:object size:0x6 +lbl_808E2F98 = .sdata:0x808E2F98; // type:object size:0x1 +lbl_808E2F99 = .sdata:0x808E2F99; // type:object size:0x1 +lbl_808E2F9A = .sdata:0x808E2F9A; // type:object size:0x1 +lbl_808E2F9B = .sdata:0x808E2F9B; // type:object size:0x1 +lbl_808E2F9C = .sdata:0x808E2F9C; // type:object size:0x1 +lbl_808E2F9D = .sdata:0x808E2F9D; // type:object size:0x3 +lbl_808E2FA0 = .sdata:0x808E2FA0; // type:object size:0x1 +lbl_808E2FA1 = .sdata:0x808E2FA1; // type:object size:0x1 +lbl_808E2FA2 = .sdata:0x808E2FA2; // type:object size:0x6 +lbl_808E2FA8 = .sdata:0x808E2FA8; // type:object size:0x8 +lbl_808E2FB0 = .sdata:0x808E2FB0; // type:object size:0x8 data:byte +lbl_808E2FB8 = .sdata:0x808E2FB8; // type:object size:0x1 +lbl_808E2FB9 = .sdata:0x808E2FB9; // type:object size:0x1 +lbl_808E2FBA = .sdata:0x808E2FBA; // type:object size:0x1 +lbl_808E2FBB = .sdata:0x808E2FBB; // type:object size:0x1 +lbl_808E2FBC = .sdata:0x808E2FBC; // type:object size:0x1 +lbl_808E2FBD = .sdata:0x808E2FBD; // type:object size:0x1 +lbl_808E2FBE = .sdata:0x808E2FBE; // type:object size:0x1 +lbl_808E2FBF = .sdata:0x808E2FBF; // type:object size:0x1 +lbl_808E2FC0 = .sdata:0x808E2FC0; // type:object size:0x8 +lbl_808E2FC8 = .sdata:0x808E2FC8; // type:object size:0x1 +lbl_808E2FC9 = .sdata:0x808E2FC9; // type:object size:0x1 +lbl_808E2FCA = .sdata:0x808E2FCA; // type:object size:0x1 +lbl_808E2FCB = .sdata:0x808E2FCB; // type:object size:0x1 +lbl_808E2FCC = .sdata:0x808E2FCC; // type:object size:0x1 +lbl_808E2FCD = .sdata:0x808E2FCD; // type:object size:0x3 +lbl_808E2FD0 = .sdata:0x808E2FD0; // type:object size:0x4 +lbl_808E2FD4 = .sdata:0x808E2FD4; // type:object size:0x4 +lbl_808E2FD8 = .sdata:0x808E2FD8; // type:object size:0x4 +lbl_808E2FDC = .sdata:0x808E2FDC; // type:object size:0x4 +lbl_808E2FE0 = .sdata:0x808E2FE0; // type:object size:0x4 +lbl_808E2FE4 = .sdata:0x808E2FE4; // type:object size:0x4 +lbl_808E2FE8 = .sdata:0x808E2FE8; // type:object size:0x8 +lbl_808E2FF0 = .sdata:0x808E2FF0; // type:object size:0x4 +lbl_808E2FF4 = .sdata:0x808E2FF4; // type:object size:0x4 +lbl_808E2FF8 = .sdata:0x808E2FF8; // type:object size:0x4 +lbl_808E2FFC = .sdata:0x808E2FFC; // type:object size:0x4 +lbl_808E3000 = .sdata:0x808E3000; // type:object size:0x4 +lbl_808E3004 = .sdata:0x808E3004; // type:object size:0x4 +lbl_808E3008 = .sdata:0x808E3008; // type:object size:0x1 +lbl_808E3009 = .sdata:0x808E3009; // type:object size:0x1 +lbl_808E300A = .sdata:0x808E300A; // type:object size:0x6 +lbl_808E3010 = .sdata:0x808E3010; // type:object size:0x1 data:byte +lbl_808E3011 = .sdata:0x808E3011; // type:object size:0x1 +lbl_808E3012 = .sdata:0x808E3012; // type:object size:0x1 +lbl_808E3013 = .sdata:0x808E3013; // type:object size:0x5 +lbl_808E3018 = .sdata:0x808E3018; // type:object size:0x8 data:byte +lbl_808E3020 = .sdata:0x808E3020; // type:object size:0x1 data:byte +lbl_808E3022 = .sdata:0x808E3022; // type:object size:0x6 +lbl_808E3028 = .sdata:0x808E3028; // type:object size:0x1 +lbl_808E3029 = .sdata:0x808E3029; // type:object size:0x1 +lbl_808E302A = .sdata:0x808E302A; // type:object size:0x6 +lbl_808E3030 = .sdata:0x808E3030; // type:object size:0x8 data:byte +lbl_808E3038 = .sdata:0x808E3038; // type:object size:0x8 data:byte +lbl_808E3040 = .sdata:0x808E3040; // type:object size:0x8 data:byte +lbl_808E3048 = .sdata:0x808E3048; // type:object size:0x4 +lbl_808E304C = .sdata:0x808E304C; // type:object size:0x4 +lbl_808E3050 = .sdata:0x808E3050; // type:object size:0x8 data:byte +lbl_808E3058 = .sdata:0x808E3058; // type:object size:0x1 +lbl_808E3059 = .sdata:0x808E3059; // type:object size:0x1 +lbl_808E305A = .sdata:0x808E305A; // type:object size:0x6 +lbl_808E3060 = .sdata:0x808E3060; // type:object size:0x8 data:byte +lbl_808E3068 = .sdata:0x808E3068; // type:object size:0x8 +lbl_808E3070 = .sdata:0x808E3070; // type:object size:0x1 +lbl_808E3071 = .sdata:0x808E3071; // type:object size:0x1 +lbl_808E3072 = .sdata:0x808E3072; // type:object size:0x6 +lbl_808E3078 = .sdata:0x808E3078; // type:object size:0x1 +lbl_808E3079 = .sdata:0x808E3079; // type:object size:0x1 +lbl_808E307A = .sdata:0x808E307A; // type:object size:0x6 +sKeyCheatsEnabled = .sdata:0x808E3080; // type:object size:0x8 data:byte +lbl_808E3088 = .sdata:0x808E3088; // type:object size:0x8 +lbl_808E3090 = .sdata:0x808E3090; // type:object size:0x8 data:byte +StringTableLocked = .sdata:0x808E3098; // type:object size:0x8 data:byte +lbl_808E30A0 = .sdata:0x808E30A0; // type:object size:0x1 data:string +lbl_808E30A1 = .sdata:0x808E30A1; // type:object size:0x7 +lbl_808E30A8 = .sdata:0x808E30A8; // type:object size:0x1 +lbl_808E30A9 = .sdata:0x808E30A9; // type:object size:0x1 +lbl_808E30AA = .sdata:0x808E30AA; // type:object size:0x1 +lbl_808E30AB = .sdata:0x808E30AB; // type:object size:0x1 +lbl_808E30AC = .sdata:0x808E30AC; // type:object size:0x1 +lbl_808E30AD = .sdata:0x808E30AD; // type:object size:0x1 +lbl_808E30AE = .sdata:0x808E30AE; // type:object size:0x1 +lbl_808E30AF = .sdata:0x808E30AF; // type:object size:0x1 +lbl_808E30B0 = .sdata:0x808E30B0; // type:object size:0x1 +lbl_808E30B1 = .sdata:0x808E30B1; // type:object size:0x7 +lbl_808E30B8 = .sdata:0x808E30B8; // type:object size:0x8 +lbl_808E30C0 = .sdata:0x808E30C0; // type:object size:0x2 +lbl_808E30C2 = .sdata:0x808E30C2; // type:object size:0x2 +lbl_808E30C4 = .sdata:0x808E30C4; // type:object size:0x1 +lbl_808E30C5 = .sdata:0x808E30C5; // type:object size:0x1 +lbl_808E30C6 = .sdata:0x808E30C6; // type:object size:0x1 +lbl_808E30C7 = .sdata:0x808E30C7; // type:object size:0x1 +lbl_808E30C8 = .sdata:0x808E30C8; // type:object size:0x1 +lbl_808E30C9 = .sdata:0x808E30C9; // type:object size:0x7 +lbl_808E30D0 = .sdata:0x808E30D0; // type:object size:0x4 +lbl_808E30D4 = .sdata:0x808E30D4; // type:object size:0x4 +lbl_808E30D8 = .sdata:0x808E30D8; // type:object size:0x8 +lbl_808E30E0 = .sdata:0x808E30E0; // type:object size:0x8 +lbl_808E30E8 = .sdata:0x808E30E8; // type:object size:0x1 +lbl_808E30E9 = .sdata:0x808E30E9; // type:object size:0x1 +lbl_808E30EA = .sdata:0x808E30EA; // type:object size:0x6 +lbl_808E30F0 = .sdata:0x808E30F0; // type:object size:0x1 +lbl_808E30F1 = .sdata:0x808E30F1; // type:object size:0x7 +lbl_808E30F8 = .sdata:0x808E30F8; // type:object size:0x1 +lbl_808E30F9 = .sdata:0x808E30F9; // type:object size:0x1 +lbl_808E30FA = .sdata:0x808E30FA; // type:object size:0x6 +lbl_808E3100 = .sdata:0x808E3100; // type:object size:0x1 +lbl_808E3101 = .sdata:0x808E3101; // type:object size:0x1 +lbl_808E3102 = .sdata:0x808E3102; // type:object size:0x6 +lbl_808E3108 = .sdata:0x808E3108; // type:object size:0x8 +lbl_808E3110 = .sdata:0x808E3110; // type:object size:0x8 +lbl_808E3118 = .sdata:0x808E3118; // type:object size:0x1 +lbl_808E3119 = .sdata:0x808E3119; // type:object size:0x1 +lbl_808E311A = .sdata:0x808E311A; // type:object size:0x6 +lbl_808E3120 = .sdata:0x808E3120; // type:object size:0x8 +lbl_808E3128 = .sdata:0x808E3128; // type:object size:0x8 +lbl_808E3130 = .sdata:0x808E3130; // type:object size:0x1 +lbl_808E3131 = .sdata:0x808E3131; // type:object size:0x1 +lbl_808E3132 = .sdata:0x808E3132; // type:object size:0x2 +lbl_808E3134 = .sdata:0x808E3134; // type:object size:0x4 +lbl_808E3138 = .sdata:0x808E3138; // type:object size:0x1 +lbl_808E3139 = .sdata:0x808E3139; // type:object size:0x1 +lbl_808E313A = .sdata:0x808E313A; // type:object size:0x6 +lbl_808E3140 = .sdata:0x808E3140; // type:object size:0x1 +lbl_808E3141 = .sdata:0x808E3141; // type:object size:0x1 +lbl_808E3142 = .sdata:0x808E3142; // type:object size:0x1 +lbl_808E3143 = .sdata:0x808E3143; // type:object size:0x1 +lbl_808E3144 = .sdata:0x808E3144; // type:object size:0x1 +lbl_808E3145 = .sdata:0x808E3145; // type:object size:0x3 +lbl_808E3148 = .sdata:0x808E3148; // type:object size:0x8 +lbl_808E3150 = .sdata:0x808E3150; // type:object size:0x1 data:byte +lbl_808E3151 = .sdata:0x808E3151; // type:object size:0x1 +lbl_808E3152 = .sdata:0x808E3152; // type:object size:0x1 +lbl_808E3153 = .sdata:0x808E3153; // type:object size:0x1 +lbl_808E3154 = .sdata:0x808E3154; // type:object size:0x4 +lbl_808E3158 = .sdata:0x808E3158; // type:object size:0x1 +lbl_808E3159 = .sdata:0x808E3159; // type:object size:0x1 +lbl_808E315A = .sdata:0x808E315A; // type:object size:0x6 +lbl_808E3160 = .sdata:0x808E3160; // type:object size:0x1 data:byte +lbl_808E3161 = .sdata:0x808E3161; // type:object size:0x7 data:byte +lbl_808E3168 = .sdata:0x808E3168; // type:object size:0x8 data:byte +lbl_808E3170 = .sdata:0x808E3170; // type:object size:0x1 +lbl_808E3171 = .sdata:0x808E3171; // type:object size:0x1 +lbl_808E3172 = .sdata:0x808E3172; // type:object size:0x1 +lbl_808E3173 = .sdata:0x808E3173; // type:object size:0x5 +lbl_808E3178 = .sdata:0x808E3178; // type:object size:0x1 +lbl_808E3179 = .sdata:0x808E3179; // type:object size:0x1 +lbl_808E317A = .sdata:0x808E317A; // type:object size:0x6 +lbl_808E3180 = .sdata:0x808E3180; // type:object size:0x8 data:byte +lbl_808E3188 = .sdata:0x808E3188; // type:object size:0x2 +lbl_808E318A = .sdata:0x808E318A; // type:object size:0x2 +lbl_808E318C = .sdata:0x808E318C; // type:object size:0x2 +lbl_808E318E = .sdata:0x808E318E; // type:object size:0x2 +lbl_808E3190 = .sdata:0x808E3190; // type:object size:0x2 +lbl_808E3192 = .sdata:0x808E3192; // type:object size:0x2 +lbl_808E3194 = .sdata:0x808E3194; // type:object size:0x1 +lbl_808E3195 = .sdata:0x808E3195; // type:object size:0x1 +lbl_808E3196 = .sdata:0x808E3196; // type:object size:0x1 +lbl_808E3197 = .sdata:0x808E3197; // type:object size:0x1 +lbl_808E3198 = .sdata:0x808E3198; // type:object size:0x1 +lbl_808E3199 = .sdata:0x808E3199; // type:object size:0x7 +lbl_808E31A0 = .sdata:0x808E31A0; // type:object size:0x1 data:byte +lbl_808E31A1 = .sdata:0x808E31A1; // type:object size:0x7 +lbl_808E31A8 = .sdata:0x808E31A8; // type:object size:0x8 data:byte +lbl_808E31B0 = .sdata:0x808E31B0; // type:object size:0x8 +lbl_808E31B8 = .sdata:0x808E31B8; // type:object size:0x1 +lbl_808E31B9 = .sdata:0x808E31B9; // type:object size:0x1 +lbl_808E31BA = .sdata:0x808E31BA; // type:object size:0x1 +lbl_808E31BB = .sdata:0x808E31BB; // type:object size:0x1 +lbl_808E31BC = .sdata:0x808E31BC; // type:object size:0x1 +lbl_808E31BD = .sdata:0x808E31BD; // type:object size:0x3 +lbl_808E31C0 = .sdata:0x808E31C0; // type:object size:0x8 +lbl_808E31C8 = .sdata:0x808E31C8; // type:object size:0x1 +lbl_808E31C9 = .sdata:0x808E31C9; // type:object size:0x1 +lbl_808E31CA = .sdata:0x808E31CA; // type:object size:0x6 +lbl_808E31D0 = .sdata:0x808E31D0; // type:object size:0x8 +lbl_808E31D8 = .sdata:0x808E31D8; // type:object size:0x8 +lbl_808E31E0 = .sdata:0x808E31E0; // type:object size:0x1 +lbl_808E31E1 = .sdata:0x808E31E1; // type:object size:0x7 +lbl_808E31E8 = .sdata:0x808E31E8; // type:object size:0x1 data:byte +lbl_808E31E9 = .sdata:0x808E31E9; // type:object size:0x7 data:byte +lbl_808E31F0 = .sdata:0x808E31F0; // type:object size:0x8 data:byte +lbl_808E31F8 = .sdata:0x808E31F8; // type:object size:0x1 data:byte +lbl_808E31F9 = .sdata:0x808E31F9; // type:object size:0x7 data:byte +lbl_808E3200 = .sdata:0x808E3200; // type:object size:0x8 data:byte +lbl_808E3208 = .sdata:0x808E3208; // type:object size:0x1 data:byte +lbl_808E3209 = .sdata:0x808E3209; // type:object size:0x7 data:byte +lbl_808E3210 = .sdata:0x808E3210; // type:object size:0x1 +lbl_808E3211 = .sdata:0x808E3211; // type:object size:0x1 +lbl_808E3212 = .sdata:0x808E3212; // type:object size:0x6 +lbl_808E3218 = .sdata:0x808E3218; // type:object size:0x4 data:4byte +lbl_808E321C = .sdata:0x808E321C; // type:object size:0x4 data:4byte +lbl_808E3220 = .sdata:0x808E3220; // type:object size:0x4 data:4byte +TotTracks = .sdata:0x808E3224; // type:object size:0x4 data:4byte +lbl_808E3228 = .sdata:0x808E3228; // type:object size:0x8 +lbl_808E3230 = .sdata:0x808E3230; // type:object size:0x8 +lbl_808E3238 = .sdata:0x808E3238; // type:object size:0x8 +lbl_808E3240 = .sdata:0x808E3240; // type:object size:0x8 data:4byte +lbl_808E3248 = .sdata:0x808E3248; // type:object size:0x8 +lbl_808E3250 = .sdata:0x808E3250; // type:object size:0x8 +lbl_808E3258 = .sdata:0x808E3258; // type:object size:0x8 +@wstringBase0 = .sdata:0x808E3260; // type:object size:0x2 scope:local +next = .sdata:0x808E3268; // type:object size:0x4 data:4byte +lbl_808E3270 = .sdata:0x808E3270; // type:object size:0x4 data:4byte +lbl_808E3274 = .sdata:0x808E3274; // type:object size:0x4 data:4byte +__float_nan = .sdata:0x808E3278; // type:object size:0x4 data:float +__float_huge = .sdata:0x808E327C; // type:object size:0x4 data:float +__double_huge = .sdata:0x808E3280; // type:object size:0x8 data:double +lbl_808E3288 = .sdata:0x808E3288; // type:object size:0x8 +lbl_808E3290 = .sdata:0x808E3290; // type:object size:0x4 data:4byte +lbl_808E3294 = .sdata:0x808E3294; // type:object size:0x4 data:4byte +lbl_808E3298 = .sdata:0x808E3298; // type:object size:0x8 +fragmentID = .sdata:0x808E32A0; // type:object size:0x4 scope:local data:4byte +lbl_808E32A8 = .sdata:0x808E32A8; // type:object size:0x8 +lbl_808E32B0 = .sdata:0x808E32B0; // type:object size:0x8 data:byte +__esFd = .sdata:0x808E32B8; // type:object size:0x4 scope:local data:4byte +lbl_808E32C0 = .sdata:0x808E32C0; // type:object size:0x8 data:string +lbl_808E32C8 = .sdata:0x808E32C8; // type:object size:0x8 data:4byte +lbl_808E32D0 = .sdata:0x808E32D0; // type:object size:0x8 +lbl_808E32D8 = .sdata:0x808E32D8; // type:object size:0x8 data:4byte +lbl_808E32E0 = .sdata:0x808E32E0; // type:object size:0x2 data:2byte +lbl_808E32E2 = .sdata:0x808E32E2; // type:object size:0x2 data:2byte +lbl_808E32E4 = .sdata:0x808E32E4; // type:object size:0x2 data:2byte +lbl_808E32E8 = .sdata:0x808E32E8; // type:object size:0x4 data:4byte +lbl_808E32EC = .sdata:0x808E32EC; // type:object size:0x4 data:4byte +lbl_808E32F0 = .sdata:0x808E32F0; // type:object size:0x4 data:4byte +lbl_808E32F4 = .sdata:0x808E32F4; // type:object size:0x4 data:4byte +lbl_808E32F8 = .sdata:0x808E32F8; // type:object size:0x4 data:string +lbl_808E32FC = .sdata:0x808E32FC; // type:object size:0x4 data:string +lbl_808E3300 = .sdata:0x808E3300; // type:object size:0x4 data:4byte +lbl_808E3304 = .sdata:0x808E3304; // type:object size:0x4 data:4byte +lbl_808E3308 = .sdata:0x808E3308; // type:object size:0x4 data:4byte +lbl_808E330C = .sdata:0x808E330C; // type:object size:0x4 data:4byte +lbl_808E3310 = .sdata:0x808E3310; // type:object size:0x8 data:4byte +lbl_808E3318 = .sdata:0x808E3318; // type:object size:0x8 +lbl_808E3320 = .sdata:0x808E3320; // type:object size:0x8 data:4byte +lbl_808E3328 = .sdata:0x808E3328; // type:object size:0x8 data:4byte +lbl_808E3330 = .sdata:0x808E3330; // type:object size:0x8 +lbl_808E3338 = .sdata:0x808E3338; // type:object size:0x8 +lbl_808E3340 = .sdata:0x808E3340; // type:object size:0x1 data:byte +lbl_808E3344 = .sdata:0x808E3344; // type:object size:0x4 data:4byte +lbl_808E3348 = .sdata:0x808E3348; // type:object size:0x8 +lbl_808E3350 = .sdata:0x808E3350; // type:object size:0x4 +lbl_808E3354 = .sdata:0x808E3354; // type:object size:0x8 +lbl_808E335C = .sdata:0x808E335C; // type:object size:0xC +lbl_808E3368 = .sdata:0x808E3368; // type:object size:0x8 data:string +lbl_808E3370 = .sdata:0x808E3370; // type:object size:0x8 +lbl_808E3378 = .sdata:0x808E3378; // type:object size:0x8 +lbl_808E3380 = .sdata:0x808E3380; // type:object size:0x8 +lbl_808E3388 = .sdata:0x808E3388; // type:object size:0x8 +lbl_808E3390 = .sdata:0x808E3390; // type:object size:0x4 data:4byte +lbl_808E3394 = .sdata:0x808E3394; // type:object size:0x4 data:4byte +lbl_808E3398 = .sdata:0x808E3398; // type:object size:0x8 +lbl_808E33A0 = .sdata:0x808E33A0; // type:object size:0x8 data:4byte +__DVDLongFileNameFlag = .sdata:0x808E33A8; // type:object size:0x4 scope:global data:4byte +lbl_808E33B0 = .sdata:0x808E33B0; // type:object size:0x8 data:string +__DVDVersion = .sdata:0x808E33B8; // type:object size:0x4 scope:global data:4byte +lbl_808E33BC = .sdata:0x808E33BC; // type:object size:0x4 data:4byte +lbl_808E33C0 = .sdata:0x808E33C0; // type:object size:0x4 data:4byte +lbl_808E33C4 = .sdata:0x808E33C4; // type:object size:0x8 +lbl_808E33CC = .sdata:0x808E33CC; // type:object size:0x4 data:4byte +lbl_808E33D0 = .sdata:0x808E33D0; // type:object size:0x8 +lowDone = .sdata:0x808E33D8; // type:object size:0x4 scope:local data:4byte +lbl_808E33E0 = .sdata:0x808E33E0; // type:object size:0x8 data:4byte +lbl_808E33E8 = .sdata:0x808E33E8; // type:object size:0x8 data:string +__EXIVersion = .sdata:0x808E33F0; // type:object size:0x4 scope:global data:4byte +__fsFd = .sdata:0x808E33F8; // type:object size:0x4 scope:local data:4byte +@1688 = .sdata:0x808E3400; // type:object size:0x8 scope:local data:string +__GXVersion = .sdata:0x808E3408; // type:object size:0x4 scope:global data:4byte +lbl_808E3410 = .sdata:0x808E3410; // type:object size:0x4 +lbl_808E3414 = .sdata:0x808E3414; // type:object size:0x4 +lbl_808E3418 = .sdata:0x808E3418; // type:object size:0x8 +lbl_808E3420 = .sdata:0x808E3420; // type:object size:0x8 +lbl_808E3428 = .sdata:0x808E3428; // type:object size:0x8 +lbl_808E3430 = .sdata:0x808E3430; // type:object size:0x8 +lbl_808E3438 = .sdata:0x808E3438; // type:object size:0x8 +lbl_808E3440 = .sdata:0x808E3440; // type:object size:0x8 +lbl_808E3448 = .sdata:0x808E3448; // type:object size:0x8 +lbl_808E3450 = .sdata:0x808E3450; // type:object size:0x8 +lbl_808E3458 = .sdata:0x808E3458; // type:object size:0x8 +lbl_808E3460 = .sdata:0x808E3460; // type:object size:0x8 +lbl_808E3468 = .sdata:0x808E3468; // type:object size:0x8 data:4byte +__mailboxAck = .sdata:0x808E3470; // type:object size:0x4 scope:local data:4byte +hid = .sdata:0x808E3474; // type:object size:0x4 scope:local data:4byte +lbl_808E3478 = .sdata:0x808E3478; // type:object size:0x4 data:4byte +lbl_808E347C = .sdata:0x808E347C; // type:object size:0x4 data:float +lbl_808E3480 = .sdata:0x808E3480; // type:object size:0x4 data:4byte +lbl_808E3484 = .sdata:0x808E3484; // type:object size:0x4 data:4byte +lbl_808E3488 = .sdata:0x808E3488; // type:object size:0x4 data:4byte +lbl_808E348C = .sdata:0x808E348C; // type:object size:0x4 data:4byte +lbl_808E3490 = .sdata:0x808E3490; // type:object size:0x4 data:float +lbl_808E3494 = .sdata:0x808E3494; // type:object size:0x4 data:float +lbl_808E3498 = .sdata:0x808E3498; // type:object size:0x4 data:float +lbl_808E349C = .sdata:0x808E349C; // type:object size:0x4 data:float +lbl_808E34A0 = .sdata:0x808E34A0; // type:object size:0x2 data:2byte +lbl_808E34A4 = .sdata:0x808E34A4; // type:object size:0x4 data:float +lbl_808E34A8 = .sdata:0x808E34A8; // type:object size:0x4 data:float +lbl_808E34AC = .sdata:0x808E34AC; // type:object size:0x4 data:float +lbl_808E34B0 = .sdata:0x808E34B0; // type:object size:0x4 data:float +lbl_808E34B4 = .sdata:0x808E34B4; // type:object size:0x4 data:float +lbl_808E34B8 = .sdata:0x808E34B8; // type:object size:0x4 data:float +lbl_808E34BC = .sdata:0x808E34BC; // type:object size:0x4 data:float +lbl_808E34C0 = .sdata:0x808E34C0; // type:object size:0x4 data:float +lbl_808E34C4 = .sdata:0x808E34C4; // type:object size:0x4 data:4byte +lbl_808E34C8 = .sdata:0x808E34C8; // type:object size:0x4 data:4byte +lbl_808E34CC = .sdata:0x808E34CC; // type:object size:0x4 data:4byte +lbl_808E34D0 = .sdata:0x808E34D0; // type:object size:0x4 data:4byte +lbl_808E34D4 = .sdata:0x808E34D4; // type:object size:0x4 data:4byte +lbl_808E34D8 = .sdata:0x808E34D8; // type:object size:0x4 data:4byte +lbl_808E34DC = .sdata:0x808E34DC; // type:object size:0x4 data:float +lbl_808E34E0 = .sdata:0x808E34E0; // type:object size:0x4 data:float +lbl_808E34E4 = .sdata:0x808E34E4; // type:object size:0x4 data:4byte +lbl_808E34E8 = .sdata:0x808E34E8; // type:object size:0x4 data:4byte +lbl_808E34EC = .sdata:0x808E34EC; // type:object size:0x4 data:float +lbl_808E34F0 = .sdata:0x808E34F0; // type:object size:0x1 data:byte +lbl_808E34F4 = .sdata:0x808E34F4; // type:object size:0x4 data:float +lbl_808E34F8 = .sdata:0x808E34F8; // type:object size:0x8 data:4byte +lbl_808E3500 = .sdata:0x808E3500; // type:object size:0x8 data:4byte +lbl_808E3508 = .sdata:0x808E3508; // type:object size:0x8 +lbl_808E3510 = .sdata:0x808E3510; // type:object size:0x4 +lbl_808E3514 = .sdata:0x808E3514; // type:object size:0x4 data:string +lbl_808E3518 = .sdata:0x808E3518; // type:object size:0x8 +__NANDVersion = .sdata:0x808E3520; // type:object size:0x4 scope:global data:4byte +lbl_808E3524 = .sdata:0x808E3524; // type:object size:0x4 +@3775 = .sdata:0x808E3528; // type:object size:0x1 scope:local +lbl_808E352C = .sdata:0x808E352C; // type:object size:0x4 +lbl_808E3530 = .sdata:0x808E3530; // type:object size:0x4 +lbl_808E3534 = .sdata:0x808E3534; // type:object size:0x4 data:string +lbl_808E3538 = .sdata:0x808E3538; // type:object size:0x8 +lbl_808E3540 = .sdata:0x808E3540; // type:object size:0x4 +lbl_808E3544 = .sdata:0x808E3544; // type:object size:0x4 data:wstring +lbl_808E3548 = .sdata:0x808E3548; // type:object size:0x8 +lbl_808E3550 = .sdata:0x808E3550; // type:object size:0x8 data:string +lbl_808E3558 = .sdata:0x808E3558; // type:object size:0x4 data:4byte +s_err = .sdata:0x808E355C; // type:object size:0x4 scope:local data:4byte +lbl_808E3560 = .sdata:0x808E3560; // type:object size:0x8 data:4byte +lbl_808E3568 = .sdata:0x808E3568; // type:object size:0x8 +__OSVersion = .sdata:0x808E3570; // type:object size:0x4 scope:global data:4byte +@1784 = .sdata:0x808E3574; // type:object size:0x7 scope:local data:string +@1794 = .sdata:0x808E357C; // type:object size:0x6 scope:local data:string +@1847 = .sdata:0x808E3584; // type:object size:0x4 scope:local data:string +@1849 = .sdata:0x808E3588; // type:object size:0x5 scope:local data:string +lbl_808E3590 = .sdata:0x808E3590; // type:object size:0x8 +lbl_808E3598 = .sdata:0x808E3598; // type:object size:0x8 data:4byte +lbl_808E35A0 = .sdata:0x808E35A0; // type:object size:0x8 data:4byte +__OSArenaLo = .sdata:0x808E35A8; // type:object size:0x4 scope:local data:4byte +s_mem2ArenaLo = .sdata:0x808E35AC; // type:object size:0x4 scope:local data:4byte +lbl_808E35B0 = .sdata:0x808E35B0; // type:object size:0x4 data:4byte +@703 = .sdata:0x808E35B4; // type:object size:0x2 scope:local data:string +lbl_808E35B8 = .sdata:0x808E35B8; // type:object size:0x8 data:string +lbl_808E35C0 = .sdata:0x808E35C0; // type:object size:0x8 +lbl_808E35C8 = .sdata:0x808E35C8; // type:object size:0x8 +lbl_808E35D0 = .sdata:0x808E35D0; // type:object size:0x8 data:2byte +SwitchThreadCallback = .sdata:0x808E35D8; // type:object size:0x4 scope:local data:4byte +IpcBufferLo = .sdata:0x808E35E0; // type:object size:0x4 scope:local data:4byte +PlayRecordState = .sdata:0x808E35E8; // type:object size:0x4 scope:local data:4byte +@1520 = .sdata:0x808E35F0; // type:object size:0x8 scope:local data:string +__SCVersion = .sdata:0x808E35F8; // type:object size:0x4 scope:global data:4byte +lbl_808E35FC = .sdata:0x808E35FC; // type:object size:0x8 +lbl_808E3604 = .sdata:0x808E3604; // type:object size:0xC +lbl_808E3610 = .sdata:0x808E3610; // type:object size:0x8 data:string +lbl_808E3618 = .sdata:0x808E3618; // type:object size:0x8 +lbl_808E3620 = .sdata:0x808E3620; // type:object size:0x8 data:string +lbl_808E3628 = .sdata:0x808E3628; // type:object size:0x8 +lbl_808E3630 = .sdata:0x808E3630; // type:object size:0x8 data:string +lbl_808E3638 = .sdata:0x808E3638; // type:object size:0x8 data:string +lbl_808E3640 = .sdata:0x808E3640; // type:object size:0x8 data:string +lbl_808E3648 = .sdata:0x808E3648; // type:object size:0x8 data:string +lbl_808E3650 = .sdata:0x808E3650; // type:object size:0x8 data:string +lbl_808E3658 = .sdata:0x808E3658; // type:object size:0x8 data:string +lbl_808E3660 = .sdata:0x808E3660; // type:object size:0x8 +lbl_808E3668 = .sdata:0x808E3668; // type:object size:0x8 data:string +lbl_808E3670 = .sdata:0x808E3670; // type:object size:0x8 data:string +lbl_808E3678 = .sdata:0x808E3678; // type:object size:0x8 data:string +lbl_808E3680 = .sdata:0x808E3680; // type:object size:0x8 data:string +lbl_808E3688 = .sdata:0x808E3688; // type:object size:0x8 data:string +lbl_808E3690 = .sdata:0x808E3690; // type:object size:0x8 data:string +lbl_808E3698 = .sdata:0x808E3698; // type:object size:0x8 data:string +lbl_808E36A0 = .sdata:0x808E36A0; // type:object size:0x8 data:string +lbl_808E36A8 = .sdata:0x808E36A8; // type:object size:0x8 data:string +lbl_808E36B0 = .sdata:0x808E36B0; // type:object size:0x8 data:string +lbl_808E36B8 = .sdata:0x808E36B8; // type:object size:0x8 data:string +lbl_808E36C0 = .sdata:0x808E36C0; // type:object size:0x8 data:string +lbl_808E36C8 = .sdata:0x808E36C8; // type:object size:0x8 data:string +lbl_808E36D0 = .sdata:0x808E36D0; // type:object size:0x8 +lbl_808E36D8 = .sdata:0x808E36D8; // type:object size:0x8 +lbl_808E36E0 = .sdata:0x808E36E0; // type:object size:0x8 data:string +lbl_808E36E8 = .sdata:0x808E36E8; // type:object size:0x8 data:string +lbl_808E36F0 = .sdata:0x808E36F0; // type:object size:0x8 data:string +@2434 = .sdata:0x808E36F8; // type:object size:0x5 scope:local data:string +@2435 = .sdata:0x808E3700; // type:object size:0x5 scope:local data:string +lbl_808E3708 = .sdata:0x808E3708; // type:object size:0x8 +lbl_808E3710 = .sdata:0x808E3710; // type:object size:0x8 +lbl_808E3718 = .sdata:0x808E3718; // type:object size:0x8 +lbl_808E3720 = .sdata:0x808E3720; // type:object size:0x4 +lbl_808E3724 = .sdata:0x808E3724; // type:object size:0xC +lbl_808E3730 = .sdata:0x808E3730; // type:object size:0x4 +lbl_808E3734 = .sdata:0x808E3734; // type:object size:0x4 +lbl_808E3738 = .sdata:0x808E3738; // type:object size:0x4 +lbl_808E373C = .sdata:0x808E373C; // type:object size:0x4 +lbl_808E3740 = .sdata:0x808E3740; // type:object size:0x4 +lbl_808E3744 = .sdata:0x808E3744; // type:object size:0x4 +lbl_808E3748 = .sdata:0x808E3748; // type:object size:0x4 +lbl_808E374C = .sdata:0x808E374C; // type:object size:0x4 +lbl_808E3750 = .sdata:0x808E3750; // type:object size:0x4 +lbl_808E3754 = .sdata:0x808E3754; // type:object size:0x4 +lbl_808E3758 = .sdata:0x808E3758; // type:object size:0x4 +lbl_808E375C = .sdata:0x808E375C; // type:object size:0x4 +lbl_808E3760 = .sdata:0x808E3760; // type:object size:0x4 +lbl_808E3764 = .sdata:0x808E3764; // type:object size:0x4 +lbl_808E3768 = .sdata:0x808E3768; // type:object size:0x4 +lbl_808E376C = .sdata:0x808E376C; // type:object size:0x4 +lbl_808E3770 = .sdata:0x808E3770; // type:object size:0x4 +lbl_808E3774 = .sdata:0x808E3774; // type:object size:0x4 +lbl_808E3778 = .sdata:0x808E3778; // type:object size:0x4 +lbl_808E377C = .sdata:0x808E377C; // type:object size:0x4 +lbl_808E3780 = .sdata:0x808E3780; // type:object size:0x4 +lbl_808E3784 = .sdata:0x808E3784; // type:object size:0x4 +lbl_808E3788 = .sdata:0x808E3788; // type:object size:0x4 +lbl_808E378C = .sdata:0x808E378C; // type:object size:0x4 +lbl_808E3790 = .sdata:0x808E3790; // type:object size:0x4 +lbl_808E3794 = .sdata:0x808E3794; // type:object size:0x4 +lbl_808E3798 = .sdata:0x808E3798; // type:object size:0x4 +lbl_808E379C = .sdata:0x808E379C; // type:object size:0x4 +lbl_808E37A0 = .sdata:0x808E37A0; // type:object size:0x4 +lbl_808E37A4 = .sdata:0x808E37A4; // type:object size:0x4 +lbl_808E37A8 = .sdata:0x808E37A8; // type:object size:0x4 +lbl_808E37AC = .sdata:0x808E37AC; // type:object size:0x4 +lbl_808E37B0 = .sdata:0x808E37B0; // type:object size:0x4 +lbl_808E37B4 = .sdata:0x808E37B4; // type:object size:0x4 +lbl_808E37B8 = .sdata:0x808E37B8; // type:object size:0x4 +lbl_808E37BC = .sdata:0x808E37BC; // type:object size:0x4 +lbl_808E37C0 = .sdata:0x808E37C0; // type:object size:0x4 +lbl_808E37C4 = .sdata:0x808E37C4; // type:object size:0x4 +lbl_808E37C8 = .sdata:0x808E37C8; // type:object size:0x4 +lbl_808E37CC = .sdata:0x808E37CC; // type:object size:0x4 +lbl_808E37D0 = .sdata:0x808E37D0; // type:object size:0x4 +lbl_808E37D4 = .sdata:0x808E37D4; // type:object size:0x4 +lbl_808E37D8 = .sdata:0x808E37D8; // type:object size:0x4 +lbl_808E37DC = .sdata:0x808E37DC; // type:object size:0x4 +lbl_808E37E0 = .sdata:0x808E37E0; // type:object size:0x4 +lbl_808E37E4 = .sdata:0x808E37E4; // type:object size:0x4 +lbl_808E37E8 = .sdata:0x808E37E8; // type:object size:0x4 +lbl_808E37EC = .sdata:0x808E37EC; // type:object size:0x4 +lbl_808E37F0 = .sdata:0x808E37F0; // type:object size:0x4 +lbl_808E37F4 = .sdata:0x808E37F4; // type:object size:0x4 +lbl_808E37F8 = .sdata:0x808E37F8; // type:object size:0x4 +lbl_808E37FC = .sdata:0x808E37FC; // type:object size:0x4 +lbl_808E3800 = .sdata:0x808E3800; // type:object size:0x4 +lbl_808E3804 = .sdata:0x808E3804; // type:object size:0x4 +lbl_808E3808 = .sdata:0x808E3808; // type:object size:0x4 +lbl_808E380C = .sdata:0x808E380C; // type:object size:0x4 +lbl_808E3810 = .sdata:0x808E3810; // type:object size:0x4 +lbl_808E3814 = .sdata:0x808E3814; // type:object size:0x4 +lbl_808E3818 = .sdata:0x808E3818; // type:object size:0x4 +lbl_808E381C = .sdata:0x808E381C; // type:object size:0x4 +lbl_808E3820 = .sdata:0x808E3820; // type:object size:0x4 +lbl_808E3824 = .sdata:0x808E3824; // type:object size:0x4 +lbl_808E3828 = .sdata:0x808E3828; // type:object size:0x4 +lbl_808E382C = .sdata:0x808E382C; // type:object size:0x4 +lbl_808E3830 = .sdata:0x808E3830; // type:object size:0x4 +lbl_808E3834 = .sdata:0x808E3834; // type:object size:0x4 +lbl_808E3838 = .sdata:0x808E3838; // type:object size:0x4 +lbl_808E383C = .sdata:0x808E383C; // type:object size:0x4 +lbl_808E3840 = .sdata:0x808E3840; // type:object size:0x4 +lbl_808E3844 = .sdata:0x808E3844; // type:object size:0x4 +lbl_808E3848 = .sdata:0x808E3848; // type:object size:0x4 +lbl_808E384C = .sdata:0x808E384C; // type:object size:0x4 +lbl_808E3850 = .sdata:0x808E3850; // type:object size:0x4 +lbl_808E3854 = .sdata:0x808E3854; // type:object size:0x4 +lbl_808E3858 = .sdata:0x808E3858; // type:object size:0x4 +lbl_808E385C = .sdata:0x808E385C; // type:object size:0x4 +lbl_808E3860 = .sdata:0x808E3860; // type:object size:0x4 +lbl_808E3864 = .sdata:0x808E3864; // type:object size:0x4 +lbl_808E3868 = .sdata:0x808E3868; // type:object size:0x4 +lbl_808E386C = .sdata:0x808E386C; // type:object size:0x4 +lbl_808E3870 = .sdata:0x808E3870; // type:object size:0x4 +lbl_808E3874 = .sdata:0x808E3874; // type:object size:0x4 +lbl_808E3878 = .sdata:0x808E3878; // type:object size:0x4 +lbl_808E387C = .sdata:0x808E387C; // type:object size:0x4 +lbl_808E3880 = .sdata:0x808E3880; // type:object size:0x4 +lbl_808E3884 = .sdata:0x808E3884; // type:object size:0x4 +lbl_808E3888 = .sdata:0x808E3888; // type:object size:0x4 +lbl_808E388C = .sdata:0x808E388C; // type:object size:0x4 +lbl_808E3890 = .sdata:0x808E3890; // type:object size:0x4 +lbl_808E3894 = .sdata:0x808E3894; // type:object size:0x4 +lbl_808E3898 = .sdata:0x808E3898; // type:object size:0x4 +lbl_808E389C = .sdata:0x808E389C; // type:object size:0x4 +lbl_808E38A0 = .sdata:0x808E38A0; // type:object size:0x4 +lbl_808E38A4 = .sdata:0x808E38A4; // type:object size:0x4 +lbl_808E38A8 = .sdata:0x808E38A8; // type:object size:0x4 +lbl_808E38AC = .sdata:0x808E38AC; // type:object size:0x4 +lbl_808E38B0 = .sdata:0x808E38B0; // type:object size:0x4 +lbl_808E38B4 = .sdata:0x808E38B4; // type:object size:0x4 +lbl_808E38B8 = .sdata:0x808E38B8; // type:object size:0x4 +lbl_808E38BC = .sdata:0x808E38BC; // type:object size:0x4 +lbl_808E38C0 = .sdata:0x808E38C0; // type:object size:0x4 +lbl_808E38C4 = .sdata:0x808E38C4; // type:object size:0x4 +lbl_808E38C8 = .sdata:0x808E38C8; // type:object size:0x4 +lbl_808E38CC = .sdata:0x808E38CC; // type:object size:0x4 +lbl_808E38D0 = .sdata:0x808E38D0; // type:object size:0x4 +lbl_808E38D4 = .sdata:0x808E38D4; // type:object size:0x4 +lbl_808E38D8 = .sdata:0x808E38D8; // type:object size:0x4 +lbl_808E38DC = .sdata:0x808E38DC; // type:object size:0x4 +lbl_808E38E0 = .sdata:0x808E38E0; // type:object size:0x4 +lbl_808E38E4 = .sdata:0x808E38E4; // type:object size:0x4 +lbl_808E38E8 = .sdata:0x808E38E8; // type:object size:0x4 +lbl_808E38EC = .sdata:0x808E38EC; // type:object size:0x4 +lbl_808E38F0 = .sdata:0x808E38F0; // type:object size:0x4 +lbl_808E38F4 = .sdata:0x808E38F4; // type:object size:0x4 +lbl_808E38F8 = .sdata:0x808E38F8; // type:object size:0x8 +__SIVersion = .sdata:0x808E3900; // type:object size:0x4 scope:global data:4byte +lbl_808E3908 = .sdata:0x808E3908; // type:object size:0x4 data:4byte +lbl_808E390C = .sdata:0x808E390C; // type:object size:0x1 data:byte +lbl_808E3910 = .sdata:0x808E3910; // type:object size:0x8 +lbl_808E3918 = .sdata:0x808E3918; // type:object size:0x4 data:4byte +lbl_808E391C = .sdata:0x808E391C; // type:object size:0x4 data:4byte +lbl_808E3920 = .sdata:0x808E3920; // type:object size:0x4 data:4byte +lbl_808E3924 = .sdata:0x808E3924; // type:object size:0x4 data:4byte +lbl_808E3928 = .sdata:0x808E3928; // type:object size:0x4 data:4byte +lbl_808E392C = .sdata:0x808E392C; // type:object size:0x4 data:4byte +lbl_808E3930 = .sdata:0x808E3930; // type:object size:0x8 +lbl_808E3938 = .sdata:0x808E3938; // type:object size:0x8 data:4byte +lbl_808E3940 = .sdata:0x808E3940; // type:object size:0x4 data:4byte +lbl_808E3944 = .sdata:0x808E3944; // type:object size:0x1 data:byte +lbl_808E3945 = .sdata:0x808E3945; // type:object size:0x1 data:byte +lbl_808E3946 = .sdata:0x808E3946; // type:object size:0x1 data:byte +lbl_808E3947 = .sdata:0x808E3947; // type:object size:0x1 data:byte +lbl_808E3948 = .sdata:0x808E3948; // type:object size:0x1 data:byte +lbl_808E3949 = .sdata:0x808E3949; // type:object size:0x1 data:byte +lbl_808E394A = .sdata:0x808E394A; // type:object size:0x1 data:byte +lbl_808E394B = .sdata:0x808E394B; // type:object size:0x1 data:byte +lbl_808E394C = .sdata:0x808E394C; // type:object size:0x1 data:byte +lbl_808E394D = .sdata:0x808E394D; // type:object size:0x1 data:byte +lbl_808E394E = .sdata:0x808E394E; // type:object size:0x1 data:byte +lbl_808E394F = .sdata:0x808E394F; // type:object size:0x1 data:byte +lbl_808E3950 = .sdata:0x808E3950; // type:object size:0x4 data:4byte +lbl_808E3954 = .sdata:0x808E3954; // type:object size:0x4 data:4byte +lbl_808E3958 = .sdata:0x808E3958; // type:object size:0x8 data:2byte +lbl_808E3960 = .sdata:0x808E3960; // type:object size:0x8 data:2byte +lbl_808E3968 = .sdata:0x808E3968; // type:object size:0x8 +lbl_808E3970 = .sdata:0x808E3970; // type:object size:0x8 +lbl_808E3978 = .sdata:0x808E3978; // type:object size:0x4 data:4byte +lbl_808E397C = .sdata:0x808E397C; // type:object size:0x4 data:4byte +lbl_808E3980 = .sdata:0x808E3980; // type:object size:0x8 data:4byte +lbl_808E3988 = .sdata:0x808E3988; // type:object size:0x4 data:4byte +lbl_808E398C = .sdata:0x808E398C; // type:object size:0x4 data:4byte +lbl_808E3990 = .sdata:0x808E3990; // type:object size:0x8 data:4byte +lbl_808E3998 = .sdata:0x808E3998; // type:object size:0x8 data:4byte +lbl_808E39A0 = .sdata:0x808E39A0; // type:object size:0x8 +lbl_808E39A8 = .sdata:0x808E39A8; // type:object size:0x8 data:string +lbl_808E39B0 = .sdata:0x808E39B0; // type:object size:0x4 +lbl_808E39B4 = .sdata:0x808E39B4; // type:object size:0x8 +lbl_808E39BC = .sdata:0x808E39BC; // type:object size:0x4 +lbl_808E39C0 = .sdata:0x808E39C0; // type:object size:0x8 +lbl_808E39C8 = .sdata:0x808E39C8; // type:object size:0x4 +lbl_808E39CC = .sdata:0x808E39CC; // type:object size:0x4 data:string +lbl_808E39D0 = .sdata:0x808E39D0; // type:object size:0x8 +lbl_808E39D8 = .sdata:0x808E39D8; // type:object size:0x4 +lbl_808E39DC = .sdata:0x808E39DC; // type:object size:0x4 +lbl_808E39E0 = .sdata:0x808E39E0; // type:object size:0x8 +lbl_808E39E8 = .sdata:0x808E39E8; // type:object size:0x8 +lbl_808E39F0 = .sdata:0x808E39F0; // type:object size:0x8 +lbl_808E39F8 = .sdata:0x808E39F8; // type:object size:0x4 +lbl_808E39FC = .sdata:0x808E39FC; // type:object size:0xC +lbl_808E3A08 = .sdata:0x808E3A08; // type:object size:0x8 data:string +lbl_808E3A10 = .sdata:0x808E3A10; // type:object size:0x4 data:4byte +lbl_808E3A14 = .sdata:0x808E3A14; // type:object size:0x4 data:4byte +lbl_808E3A18 = .sdata:0x808E3A18; // type:object size:0x8 +lbl_808E3A20 = .sdata:0x808E3A20; // type:object size:0x1 data:byte +lbl_808E3A24 = .sdata:0x808E3A24; // type:object size:0x4 +lbl_808E3A28 = .sdata:0x808E3A28; // type:object size:0x8 +lbl_808E3A30 = .sdata:0x808E3A30; // type:object size:0x4 data:4byte +lbl_808E3A34 = .sdata:0x808E3A34; // type:object size:0x4 data:4byte +lbl_808E3A38 = .sdata:0x808E3A38; // type:object size:0x4 data:4byte +lbl_808E3A3C = .sdata:0x808E3A3C; // type:object size:0x2 data:2byte +lbl_808E3A40 = .sdata:0x808E3A40; // type:object size:0x8 data:4byte +lbl_808E3A48 = .sdata:0x808E3A48; // type:object size:0x8 +lbl_808E3A50 = .sdata:0x808E3A50; // type:object size:0x8 data:4byte +lbl_808E3A58 = .sdata:0x808E3A58; // type:object size:0x8 data:4byte +lbl_808E3A60 = .sdata:0x808E3A60; // type:object size:0x8 data:4byte +lbl_808E3A68 = .sdata:0x808E3A68; // type:object size:0x8 data:4byte +lbl_808E3A70 = .sdata:0x808E3A70; // type:object size:0x4 data:4byte +lbl_808E3A74 = .sdata:0x808E3A74; // type:object size:0x4 data:4byte +lbl_808E3A78 = .sdata:0x808E3A78; // type:object size:0x8 data:4byte +lbl_808E3A80 = .sdata:0x808E3A80; // type:object size:0x8 data:4byte +lbl_808E3A88 = .sdata:0x808E3A88; // type:object size:0x4 +lbl_808E3A8C = .sdata:0x808E3A8C; // type:object size:0x4 +lbl_808E3A90 = .sdata:0x808E3A90; // type:object size:0x4 +lbl_808E3A94 = .sdata:0x808E3A94; // type:object size:0x4 +lbl_808E3A98 = .sdata:0x808E3A98; // type:object size:0x4 data:string +lbl_808E3A9C = .sdata:0x808E3A9C; // type:object size:0x4 data:string +lbl_808E3AA0 = .sdata:0x808E3AA0; // type:object size:0x4 +lbl_808E3AA4 = .sdata:0x808E3AA4; // type:object size:0x4 +lbl_808E3AA8 = .sdata:0x808E3AA8; // type:object size:0x4 +lbl_808E3AAC = .sdata:0x808E3AAC; // type:object size:0x4 +lbl_808E3AB0 = .sdata:0x808E3AB0; // type:object size:0x4 +lbl_808E3AB4 = .sdata:0x808E3AB4; // type:object size:0x4 +lbl_808E3AB8 = .sdata:0x808E3AB8; // type:object size:0x4 +lbl_808E3ABC = .sdata:0x808E3ABC; // type:object size:0x4 +lbl_808E3AC0 = .sdata:0x808E3AC0; // type:object size:0x4 +lbl_808E3AC4 = .sdata:0x808E3AC4; // type:object size:0x4 +lbl_808E3AC8 = .sdata:0x808E3AC8; // type:object size:0x4 +lbl_808E3ACC = .sdata:0x808E3ACC; // type:object size:0x4 +lbl_808E3AD0 = .sdata:0x808E3AD0; // type:object size:0x4 +lbl_808E3AD4 = .sdata:0x808E3AD4; // type:object size:0x4 +lbl_808E3AD8 = .sdata:0x808E3AD8; // type:object size:0x4 +lbl_808E3ADC = .sdata:0x808E3ADC; // type:object size:0x4 +lbl_808E3AE0 = .sdata:0x808E3AE0; // type:object size:0x4 +lbl_808E3AE4 = .sdata:0x808E3AE4; // type:object size:0x4 data:string +lbl_808E3AE8 = .sdata:0x808E3AE8; // type:object size:0x8 +lbl_808E3AF0 = .sdata:0x808E3AF0; // type:object size:0x8 +lbl_808E3AF8 = .sdata:0x808E3AF8; // type:object size:0x8 data:4byte +lbl_808E3B00 = .sdata:0x808E3B00; // type:object size:0x4 data:4byte +lbl_808E3B04 = .sdata:0x808E3B04; // type:object size:0x4 +lbl_808E3B08 = .sdata:0x808E3B08; // type:object size:0x8 +lbl_808E3B10 = .sdata:0x808E3B10; // type:object size:0x8 data:string +lbl_808E3B18 = .sdata:0x808E3B18; // type:object size:0x4 +lbl_808E3B1C = .sdata:0x808E3B1C; // type:object size:0x4 +lbl_808E3B20 = .sdata:0x808E3B20; // type:object size:0x8 +lbl_808E3B28 = .sdata:0x808E3B28; // type:object size:0x8 +lbl_808E3B30 = .sdata:0x808E3B30; // type:object size:0x8 +lbl_808E3B38 = .sdata:0x808E3B38; // type:object size:0x8 +lbl_808E3B40 = .sdata:0x808E3B40; // type:object size:0x8 data:string +lbl_808E3B48 = .sdata:0x808E3B48; // type:object size:0x8 +lbl_808E3B50 = .sdata:0x808E3B50; // type:object size:0x8 +lbl_808E3B58 = .sdata:0x808E3B58; // type:object size:0x8 +lbl_808E3B60 = .sdata:0x808E3B60; // type:object size:0x8 data:string +lbl_808E3B68 = .sdata:0x808E3B68; // type:object size:0x8 +lbl_808E3B70 = .sdata:0x808E3B70; // type:object size:0x8 +lbl_808E3B78 = .sdata:0x808E3B78; // type:object size:0x8 +lbl_808E3B80 = .sdata:0x808E3B80; // type:object size:0x8 +lbl_808E3B88 = .sdata:0x808E3B88; // type:object size:0x8 +lbl_808E3B90 = .sdata:0x808E3B90; // type:object size:0x8 +lbl_808E3B98 = .sdata:0x808E3B98; // type:object size:0x4 +lbl_808E3B9C = .sdata:0x808E3B9C; // type:object size:0x8 +lbl_808E3BA4 = .sdata:0x808E3BA4; // type:object size:0x4 +lbl_808E3BA8 = .sdata:0x808E3BA8; // type:object size:0x8 data:string +lbl_808E3BB0 = .sdata:0x808E3BB0; // type:object size:0x4 +lbl_808E3BB4 = .sdata:0x808E3BB4; // type:object size:0x8 +lbl_808E3BBC = .sdata:0x808E3BBC; // type:object size:0x8 +lbl_808E3BC4 = .sdata:0x808E3BC4; // type:object size:0x8 +lbl_808E3BCC = .sdata:0x808E3BCC; // type:object size:0xC +lbl_808E3BD8 = .sdata:0x808E3BD8; // type:object size:0x8 data:string +lbl_808E3BE0 = .sdata:0x808E3BE0; // type:object size:0x8 +lbl_808E3BE8 = .sdata:0x808E3BE8; // type:object size:0x8 +lbl_808E3BF0 = .sdata:0x808E3BF0; // type:object size:0x8 data:string +lbl_808E3BF8 = .sdata:0x808E3BF8; // type:object size:0x4 data:string +lbl_808E3BFC = .sdata:0x808E3BFC; // type:object size:0x8 +lbl_808E3C04 = .sdata:0x808E3C04; // type:object size:0x4 data:string +lbl_808E3C08 = .sdata:0x808E3C08; // type:object size:0x4 data:string +lbl_808E3C0C = .sdata:0x808E3C0C; // type:object size:0x8 +lbl_808E3C14 = .sdata:0x808E3C14; // type:object size:0x8 +lbl_808E3C1C = .sdata:0x808E3C1C; // type:object size:0xC +lbl_808E3C28 = .sdata:0x808E3C28; // type:object size:0x8 data:string +lbl_808E3C30 = .sdata:0x808E3C30; // type:object size:0x8 +lbl_808E3C38 = .sdata:0x808E3C38; // type:object size:0x4 +lbl_808E3C3C = .sdata:0x808E3C3C; // type:object size:0x4 +lbl_808E3C40 = .sdata:0x808E3C40; // type:object size:0x8 data:4byte +lbl_808E3C48 = .sdata:0x808E3C48; // type:object size:0x4 data:4byte +lbl_808E3C4C = .sdata:0x808E3C4C; // type:object size:0x4 data:string +lbl_808E3C50 = .sdata:0x808E3C50; // type:object size:0x4 data:4byte +@GUARD@SetType__Q23Hmx6ObjectF6Symbol@types = .sbss:0x808E3C60; // type:object size:0x1 data:byte +@GUARD@StaticClassName__Q23Hmx6ObjectFv@name = .sbss:0x808E3C61; // type:object size:0x1 data:byte +lbl_808E3C62 = .sbss:0x808E3C62; // type:object size:0x1 data:byte +lbl_808E3C63 = .sbss:0x808E3C63; // type:object size:0x1 data:byte +lbl_808E3C64 = .sbss:0x808E3C64; // type:object size:0x1 data:byte +lbl_808E3C65 = .sbss:0x808E3C65; // type:object size:0x1 data:byte +lbl_808E3C66 = .sbss:0x808E3C66; // type:object size:0x1 data:byte +lbl_808E3C67 = .sbss:0x808E3C67; // type:object size:0x1 data:byte +@GUARD@Type__16SigninChangedMsgFv@t = .sbss:0x808E3C68; // type:object size:0x1 data:byte +lbl_808E3C69 = .sbss:0x808E3C69; // type:object size:0x1 data:byte +lbl_808E3C6A = .sbss:0x808E3C6A; // type:object size:0x1 data:byte +lbl_808E3C6B = .sbss:0x808E3C6B; // type:object size:0x1 data:byte +lbl_808E3C6C = .sbss:0x808E3C6C; // type:object size:0x1 data:byte +@GUARD@Type__17StorageChangedMsgFv@t = .sbss:0x808E3C6D; // type:object size:0x1 data:byte +@GUARD@Type__19ContentInstalledMsgFv@t = .sbss:0x808E3C6E; // type:object size:0x1 data:byte +lbl_808E3C6F = .sbss:0x808E3C6F; // type:object size:0x1 data:byte +lbl_808E3C70 = .sbss:0x808E3C70; // type:object size:0x1 data:byte +lbl_808E3C71 = .sbss:0x808E3C71; // type:object size:0x1 data:byte +lbl_808E3C72 = .sbss:0x808E3C72; // type:object size:0x1 data:byte +lbl_808E3C73 = .sbss:0x808E3C73; // type:object size:0x1 data:byte +@GUARD@Type__12UIChangedMsgFv@t = .sbss:0x808E3C74; // type:object size:0x1 data:byte +lbl_808E3C75 = .sbss:0x808E3C75; // type:object size:0x1 data:byte +lbl_808E3C76 = .sbss:0x808E3C76; // type:object size:0x1 data:byte +@GUARD@Type__26ConnectionStatusChangedMsgFv@t = .sbss:0x808E3C77; // type:object size:0x1 data:byte +lbl_808E3C78 = .sbss:0x808E3C78; // type:object size:0x1 data:byte +@GUARD@Type__21DWCProfanityResultMsgFv@t = .sbss:0x808E3C79; // type:object size:0x1 data:byte +lbl_808E3C7A = .sbss:0x808E3C7A; // type:object size:0x1 data:byte +lbl_808E3C7B = .sbss:0x808E3C7B; // type:object size:0x1 data:byte +lbl_808E3C7C = .sbss:0x808E3C7C; // type:object size:0x1 data:byte +lbl_808E3C7D = .sbss:0x808E3C7D; // type:object size:0x1 data:byte +lbl_808E3C7E = .sbss:0x808E3C7E; // type:object size:0x1 data:byte +lbl_808E3C7F = .sbss:0x808E3C7F; // type:object size:0x1 data:byte +lbl_808E3C80 = .sbss:0x808E3C80; // type:object size:0x1 data:byte +@GUARD@StaticClassName__11RndDrawableFv@lbl_808F054C = .sbss:0x808E3C81; // type:object size:0x1 data:byte +lbl_808E3C82 = .sbss:0x808E3C82; // type:object size:0x1 data:byte +lbl_808E3C83 = .sbss:0x808E3C83; // type:object size:0x1 data:byte +lbl_808E3C84 = .sbss:0x808E3C84; // type:object size:0x1 data:byte +lbl_808E3C85 = .sbss:0x808E3C85; // type:object size:0x1 data:byte +lbl_808E3C86 = .sbss:0x808E3C86; // type:object size:0x1 data:byte +lbl_808E3C87 = .sbss:0x808E3C87; // type:object size:0x1 data:byte +lbl_808E3C88 = .sbss:0x808E3C88; // type:object size:0x1 data:byte +lbl_808E3C89 = .sbss:0x808E3C89; // type:object size:0x1 data:byte +lbl_808E3C8A = .sbss:0x808E3C8A; // type:object size:0x1 data:byte +lbl_808E3C8B = .sbss:0x808E3C8B; // type:object size:0x1 data:byte +lbl_808E3C8C = .sbss:0x808E3C8C; // type:object size:0x1 data:byte +lbl_808E3C8D = .sbss:0x808E3C8D; // type:object size:0x1 data:byte +lbl_808E3C8E = .sbss:0x808E3C8E; // type:object size:0x1 data:byte +lbl_808E3C8F = .sbss:0x808E3C8F; // type:object size:0x1 data:byte +lbl_808E3C90 = .sbss:0x808E3C90; // type:object size:0x1 data:byte +lbl_808E3C91 = .sbss:0x808E3C91; // type:object size:0x1 data:byte +lbl_808E3C92 = .sbss:0x808E3C92; // type:object size:0x1 data:byte +lbl_808E3C93 = .sbss:0x808E3C93; // type:object size:0x1 data:byte +lbl_808E3C94 = .sbss:0x808E3C94; // type:object size:0x1 data:byte +lbl_808E3C95 = .sbss:0x808E3C95; // type:object size:0x1 data:byte +lbl_808E3C96 = .sbss:0x808E3C96; // type:object size:0x1 data:byte +lbl_808E3C97 = .sbss:0x808E3C97; // type:object size:0x1 data:byte +lbl_808E3C98 = .sbss:0x808E3C98; // type:object size:0x1 data:byte +lbl_808E3C99 = .sbss:0x808E3C99; // type:object size:0x1 data:byte +lbl_808E3C9A = .sbss:0x808E3C9A; // type:object size:0x1 data:byte +lbl_808E3C9B = .sbss:0x808E3C9B; // type:object size:0x1 data:byte +lbl_808E3C9C = .sbss:0x808E3C9C; // type:object size:0x1 data:byte +lbl_808E3C9D = .sbss:0x808E3C9D; // type:object size:0x1 data:byte +lbl_808E3C9E = .sbss:0x808E3C9E; // type:object size:0x1 data:byte +lbl_808E3C9F = .sbss:0x808E3C9F; // type:object size:0x1 data:byte +lbl_808E3CA0 = .sbss:0x808E3CA0; // type:object size:0x1 data:byte +lbl_808E3CA1 = .sbss:0x808E3CA1; // type:object size:0x1 data:byte +lbl_808E3CA2 = .sbss:0x808E3CA2; // type:object size:0x1 data:byte +lbl_808E3CA3 = .sbss:0x808E3CA3; // type:object size:0x1 data:byte +lbl_808E3CA4 = .sbss:0x808E3CA4; // type:object size:0x1 data:byte +lbl_808E3CA5 = .sbss:0x808E3CA5; // type:object size:0x1 data:byte +lbl_808E3CA6 = .sbss:0x808E3CA6; // type:object size:0x1 data:byte +lbl_808E3CA7 = .sbss:0x808E3CA7; // type:object size:0x1 data:byte +lbl_808E3CA8 = .sbss:0x808E3CA8; // type:object size:0x1 data:byte +lbl_808E3CA9 = .sbss:0x808E3CA9; // type:object size:0x1 data:byte +lbl_808E3CAA = .sbss:0x808E3CAA; // type:object size:0x1 data:byte +lbl_808E3CAB = .sbss:0x808E3CAB; // type:object size:0x1 data:byte +lbl_808E3CAC = .sbss:0x808E3CAC; // type:object size:0x1 data:byte +lbl_808E3CAD = .sbss:0x808E3CAD; // type:object size:0x1 data:byte +lbl_808E3CAE = .sbss:0x808E3CAE; // type:object size:0x1 data:byte +lbl_808E3CAF = .sbss:0x808E3CAF; // type:object size:0x1 data:byte +lbl_808E3CB0 = .sbss:0x808E3CB0; // type:object size:0x1 data:byte +lbl_808E3CB1 = .sbss:0x808E3CB1; // type:object size:0x1 data:byte +lbl_808E3CB2 = .sbss:0x808E3CB2; // type:object size:0x1 data:byte +lbl_808E3CB3 = .sbss:0x808E3CB3; // type:object size:0x1 data:byte +lbl_808E3CB4 = .sbss:0x808E3CB4; // type:object size:0x1 data:byte +lbl_808E3CB5 = .sbss:0x808E3CB5; // type:object size:0x1 data:byte +lbl_808E3CB6 = .sbss:0x808E3CB6; // type:object size:0x1 data:byte +lbl_808E3CB7 = .sbss:0x808E3CB7; // type:object size:0x1 data:byte +lbl_808E3CB8 = .sbss:0x808E3CB8; // type:object size:0x1 data:byte +lbl_808E3CB9 = .sbss:0x808E3CB9; // type:object size:0x1 data:byte +lbl_808E3CBA = .sbss:0x808E3CBA; // type:object size:0x1 data:byte +lbl_808E3CBB = .sbss:0x808E3CBB; // type:object size:0x1 data:byte +lbl_808E3CBC = .sbss:0x808E3CBC; // type:object size:0x1 data:byte +lbl_808E3CBD = .sbss:0x808E3CBD; // type:object size:0x1 data:byte +lbl_808E3CBE = .sbss:0x808E3CBE; // type:object size:0x1 data:byte +lbl_808E3CBF = .sbss:0x808E3CBF; // type:object size:0x1 data:byte +lbl_808E3CC0 = .sbss:0x808E3CC0; // type:object size:0x1 data:byte +lbl_808E3CC1 = .sbss:0x808E3CC1; // type:object size:0x1 data:byte +lbl_808E3CC2 = .sbss:0x808E3CC2; // type:object size:0x1 data:byte +lbl_808E3CC3 = .sbss:0x808E3CC3; // type:object size:0x1 data:byte +lbl_808E3CC4 = .sbss:0x808E3CC4; // type:object size:0x1 data:byte +lbl_808E3CC5 = .sbss:0x808E3CC5; // type:object size:0x1 data:byte +lbl_808E3CC6 = .sbss:0x808E3CC6; // type:object size:0x1 data:byte +lbl_808E3CC7 = .sbss:0x808E3CC7; // type:object size:0x1 data:byte +lbl_808E3CC8 = .sbss:0x808E3CC8; // type:object size:0x1 data:byte +lbl_808E3CC9 = .sbss:0x808E3CC9; // type:object size:0x1 data:byte +lbl_808E3CCA = .sbss:0x808E3CCA; // type:object size:0x1 data:byte +lbl_808E3CCB = .sbss:0x808E3CCB; // type:object size:0x1 data:byte +lbl_808E3CCC = .sbss:0x808E3CCC; // type:object size:0x1 data:byte +lbl_808E3CCD = .sbss:0x808E3CCD; // type:object size:0x1 data:byte +lbl_808E3CCE = .sbss:0x808E3CCE; // type:object size:0x1 data:byte +lbl_808E3CCF = .sbss:0x808E3CCF; // type:object size:0x1 data:byte +lbl_808E3CD0 = .sbss:0x808E3CD0; // type:object size:0x1 data:byte +lbl_808E3CD1 = .sbss:0x808E3CD1; // type:object size:0x1 data:byte +lbl_808E3CD2 = .sbss:0x808E3CD2; // type:object size:0x1 data:byte +lbl_808E3CD3 = .sbss:0x808E3CD3; // type:object size:0x1 data:byte +lbl_808E3CD4 = .sbss:0x808E3CD4; // type:object size:0x1 data:byte +lbl_808E3CD5 = .sbss:0x808E3CD5; // type:object size:0x1 data:byte +lbl_808E3CD6 = .sbss:0x808E3CD6; // type:object size:0x1 data:byte +lbl_808E3CD7 = .sbss:0x808E3CD7; // type:object size:0x1 data:byte +lbl_808E3CD8 = .sbss:0x808E3CD8; // type:object size:0x1 data:byte +lbl_808E3CD9 = .sbss:0x808E3CD9; // type:object size:0x1 data:byte +lbl_808E3CDA = .sbss:0x808E3CDA; // type:object size:0x1 data:byte +lbl_808E3CDB = .sbss:0x808E3CDB; // type:object size:0x1 data:byte +lbl_808E3CDC = .sbss:0x808E3CDC; // type:object size:0x1 data:byte +lbl_808E3CDD = .sbss:0x808E3CDD; // type:object size:0x1 data:byte +lbl_808E3CDE = .sbss:0x808E3CDE; // type:object size:0x1 data:byte +lbl_808E3CDF = .sbss:0x808E3CDF; // type:object size:0x1 data:byte +lbl_808E3CE0 = .sbss:0x808E3CE0; // type:object size:0x1 data:byte +lbl_808E3CE1 = .sbss:0x808E3CE1; // type:object size:0x1 data:byte +lbl_808E3CE2 = .sbss:0x808E3CE2; // type:object size:0x1 data:byte +lbl_808E3CE3 = .sbss:0x808E3CE3; // type:object size:0x1 data:byte +lbl_808E3CE4 = .sbss:0x808E3CE4; // type:object size:0x1 data:byte +lbl_808E3CE5 = .sbss:0x808E3CE5; // type:object size:0x1 data:byte +lbl_808E3CE6 = .sbss:0x808E3CE6; // type:object size:0x1 data:byte +lbl_808E3CE7 = .sbss:0x808E3CE7; // type:object size:0x1 data:byte +lbl_808E3CE8 = .sbss:0x808E3CE8; // type:object size:0x1 data:byte +lbl_808E3CE9 = .sbss:0x808E3CE9; // type:object size:0x1 data:byte +lbl_808E3CEA = .sbss:0x808E3CEA; // type:object size:0x1 data:byte +lbl_808E3CEB = .sbss:0x808E3CEB; // type:object size:0x1 data:byte +lbl_808E3CEC = .sbss:0x808E3CEC; // type:object size:0x1 data:byte +lbl_808E3CED = .sbss:0x808E3CED; // type:object size:0x1 data:byte +lbl_808E3CEE = .sbss:0x808E3CEE; // type:object size:0x1 data:byte +lbl_808E3CEF = .sbss:0x808E3CEF; // type:object size:0x1 data:byte +lbl_808E3CF0 = .sbss:0x808E3CF0; // type:object size:0x1 data:byte +lbl_808E3CF1 = .sbss:0x808E3CF1; // type:object size:0x1 data:byte +lbl_808E3CF2 = .sbss:0x808E3CF2; // type:object size:0x1 data:byte +lbl_808E3CF3 = .sbss:0x808E3CF3; // type:object size:0x1 data:byte +lbl_808E3CF4 = .sbss:0x808E3CF4; // type:object size:0x1 data:byte +lbl_808E3CF5 = .sbss:0x808E3CF5; // type:object size:0x1 data:byte +lbl_808E3CF6 = .sbss:0x808E3CF6; // type:object size:0x1 data:byte +lbl_808E3CF7 = .sbss:0x808E3CF7; // type:object size:0x1 data:byte +lbl_808E3CF8 = .sbss:0x808E3CF8; // type:object size:0x1 data:byte +lbl_808E3CF9 = .sbss:0x808E3CF9; // type:object size:0x1 data:byte +lbl_808E3CFA = .sbss:0x808E3CFA; // type:object size:0x1 data:byte +lbl_808E3CFB = .sbss:0x808E3CFB; // type:object size:0x1 data:byte +lbl_808E3CFC = .sbss:0x808E3CFC; // type:object size:0x1 data:byte +lbl_808E3CFD = .sbss:0x808E3CFD; // type:object size:0x1 data:byte +lbl_808E3CFE = .sbss:0x808E3CFE; // type:object size:0x1 data:byte +lbl_808E3CFF = .sbss:0x808E3CFF; // type:object size:0x1 data:byte +lbl_808E3D00 = .sbss:0x808E3D00; // type:object size:0x1 data:byte +lbl_808E3D01 = .sbss:0x808E3D01; // type:object size:0x1 data:byte +lbl_808E3D02 = .sbss:0x808E3D02; // type:object size:0x1 data:byte +lbl_808E3D03 = .sbss:0x808E3D03; // type:object size:0x1 data:byte +lbl_808E3D04 = .sbss:0x808E3D04; // type:object size:0x1 data:byte +lbl_808E3D05 = .sbss:0x808E3D05; // type:object size:0x1 data:byte +lbl_808E3D06 = .sbss:0x808E3D06; // type:object size:0x1 data:byte +lbl_808E3D07 = .sbss:0x808E3D07; // type:object size:0x1 data:byte +lbl_808E3D08 = .sbss:0x808E3D08; // type:object size:0x1 data:byte +lbl_808E3D09 = .sbss:0x808E3D09; // type:object size:0x1 data:byte +lbl_808E3D0A = .sbss:0x808E3D0A; // type:object size:0x1 data:byte +lbl_808E3D0B = .sbss:0x808E3D0B; // type:object size:0x1 data:byte +lbl_808E3D0C = .sbss:0x808E3D0C; // type:object size:0x1 data:byte +lbl_808E3D0D = .sbss:0x808E3D0D; // type:object size:0x1 data:byte +lbl_808E3D0E = .sbss:0x808E3D0E; // type:object size:0x1 data:byte +lbl_808E3D0F = .sbss:0x808E3D0F; // type:object size:0x1 data:byte +lbl_808E3D10 = .sbss:0x808E3D10; // type:object size:0x1 data:byte +lbl_808E3D11 = .sbss:0x808E3D11; // type:object size:0x1 data:byte +lbl_808E3D12 = .sbss:0x808E3D12; // type:object size:0x1 data:byte +lbl_808E3D13 = .sbss:0x808E3D13; // type:object size:0x1 data:byte +lbl_808E3D14 = .sbss:0x808E3D14; // type:object size:0x1 data:byte +lbl_808E3D15 = .sbss:0x808E3D15; // type:object size:0x1 data:byte +lbl_808E3D16 = .sbss:0x808E3D16; // type:object size:0x1 data:byte +lbl_808E3D17 = .sbss:0x808E3D17; // type:object size:0x1 data:byte +lbl_808E3D18 = .sbss:0x808E3D18; // type:object size:0x1 data:byte +lbl_808E3D19 = .sbss:0x808E3D19; // type:object size:0x1 data:byte +lbl_808E3D1A = .sbss:0x808E3D1A; // type:object size:0x1 data:byte +lbl_808E3D1B = .sbss:0x808E3D1B; // type:object size:0x1 data:byte +lbl_808E3D1C = .sbss:0x808E3D1C; // type:object size:0x1 data:byte +lbl_808E3D1D = .sbss:0x808E3D1D; // type:object size:0x1 data:byte +lbl_808E3D1E = .sbss:0x808E3D1E; // type:object size:0x1 data:byte +lbl_808E3D1F = .sbss:0x808E3D1F; // type:object size:0x1 data:byte +lbl_808E3D20 = .sbss:0x808E3D20; // type:object size:0x1 data:byte +lbl_808E3D21 = .sbss:0x808E3D21; // type:object size:0x1 data:byte +lbl_808E3D22 = .sbss:0x808E3D22; // type:object size:0x1 data:byte +lbl_808E3D23 = .sbss:0x808E3D23; // type:object size:0x1 data:byte +lbl_808E3D24 = .sbss:0x808E3D24; // type:object size:0x1 data:byte +lbl_808E3D25 = .sbss:0x808E3D25; // type:object size:0x1 data:byte +lbl_808E3D26 = .sbss:0x808E3D26; // type:object size:0x1 data:byte +lbl_808E3D27 = .sbss:0x808E3D27; // type:object size:0x1 data:byte +lbl_808E3D28 = .sbss:0x808E3D28; // type:object size:0x1 data:byte +lbl_808E3D29 = .sbss:0x808E3D29; // type:object size:0x1 data:byte +lbl_808E3D2A = .sbss:0x808E3D2A; // type:object size:0x1 data:byte +lbl_808E3D2B = .sbss:0x808E3D2B; // type:object size:0x1 data:byte +lbl_808E3D2C = .sbss:0x808E3D2C; // type:object size:0x1 data:byte +lbl_808E3D2D = .sbss:0x808E3D2D; // type:object size:0x1 data:byte +lbl_808E3D2E = .sbss:0x808E3D2E; // type:object size:0x1 data:byte +lbl_808E3D2F = .sbss:0x808E3D2F; // type:object size:0x1 data:byte +lbl_808E3D30 = .sbss:0x808E3D30; // type:object size:0x1 data:byte +lbl_808E3D31 = .sbss:0x808E3D31; // type:object size:0x1 data:byte +lbl_808E3D32 = .sbss:0x808E3D32; // type:object size:0x1 data:byte +lbl_808E3D33 = .sbss:0x808E3D33; // type:object size:0x1 data:byte +lbl_808E3D34 = .sbss:0x808E3D34; // type:object size:0x1 data:byte +lbl_808E3D35 = .sbss:0x808E3D35; // type:object size:0x1 data:byte +lbl_808E3D36 = .sbss:0x808E3D36; // type:object size:0x1 data:byte +lbl_808E3D37 = .sbss:0x808E3D37; // type:object size:0x1 data:byte +lbl_808E3D38 = .sbss:0x808E3D38; // type:object size:0x1 data:byte +lbl_808E3D39 = .sbss:0x808E3D39; // type:object size:0x1 data:byte +lbl_808E3D3A = .sbss:0x808E3D3A; // type:object size:0x1 data:byte +lbl_808E3D3B = .sbss:0x808E3D3B; // type:object size:0x1 data:byte +lbl_808E3D3C = .sbss:0x808E3D3C; // type:object size:0x1 data:byte +lbl_808E3D3D = .sbss:0x808E3D3D; // type:object size:0x1 data:byte +lbl_808E3D3E = .sbss:0x808E3D3E; // type:object size:0x1 data:byte +lbl_808E3D3F = .sbss:0x808E3D3F; // type:object size:0x1 data:byte +lbl_808E3D40 = .sbss:0x808E3D40; // type:object size:0x1 data:byte +lbl_808E3D41 = .sbss:0x808E3D41; // type:object size:0x1 data:byte +lbl_808E3D42 = .sbss:0x808E3D42; // type:object size:0x1 data:byte +lbl_808E3D43 = .sbss:0x808E3D43; // type:object size:0x1 data:byte +lbl_808E3D44 = .sbss:0x808E3D44; // type:object size:0x1 data:byte +lbl_808E3D45 = .sbss:0x808E3D45; // type:object size:0x1 data:byte +lbl_808E3D46 = .sbss:0x808E3D46; // type:object size:0x1 data:byte +lbl_808E3D47 = .sbss:0x808E3D47; // type:object size:0x1 data:byte +lbl_808E3D48 = .sbss:0x808E3D48; // type:object size:0x1 data:byte +lbl_808E3D49 = .sbss:0x808E3D49; // type:object size:0x1 data:byte +lbl_808E3D4A = .sbss:0x808E3D4A; // type:object size:0x1 data:byte +lbl_808E3D4B = .sbss:0x808E3D4B; // type:object size:0x1 data:byte +lbl_808E3D4C = .sbss:0x808E3D4C; // type:object size:0x1 data:byte +lbl_808E3D4D = .sbss:0x808E3D4D; // type:object size:0x1 data:byte +lbl_808E3D4E = .sbss:0x808E3D4E; // type:object size:0x1 data:byte +lbl_808E3D4F = .sbss:0x808E3D4F; // type:object size:0x1 data:byte +lbl_808E3D50 = .sbss:0x808E3D50; // type:object size:0x1 data:byte +lbl_808E3D51 = .sbss:0x808E3D51; // type:object size:0x1 data:byte +lbl_808E3D52 = .sbss:0x808E3D52; // type:object size:0x1 data:byte +lbl_808E3D53 = .sbss:0x808E3D53; // type:object size:0x1 data:byte +lbl_808E3D54 = .sbss:0x808E3D54; // type:object size:0x1 data:byte +lbl_808E3D55 = .sbss:0x808E3D55; // type:object size:0x1 data:byte +lbl_808E3D56 = .sbss:0x808E3D56; // type:object size:0x1 data:byte +lbl_808E3D57 = .sbss:0x808E3D57; // type:object size:0x1 data:byte +lbl_808E3D58 = .sbss:0x808E3D58; // type:object size:0x1 data:byte +lbl_808E3D59 = .sbss:0x808E3D59; // type:object size:0x1 data:byte +lbl_808E3D5A = .sbss:0x808E3D5A; // type:object size:0x1 data:byte +lbl_808E3D5B = .sbss:0x808E3D5B; // type:object size:0x1 data:byte +lbl_808E3D5C = .sbss:0x808E3D5C; // type:object size:0x1 data:byte +lbl_808E3D5D = .sbss:0x808E3D5D; // type:object size:0x1 data:byte +lbl_808E3D5E = .sbss:0x808E3D5E; // type:object size:0x1 data:byte +lbl_808E3D5F = .sbss:0x808E3D5F; // type:object size:0x1 data:byte +lbl_808E3D60 = .sbss:0x808E3D60; // type:object size:0x1 data:byte +lbl_808E3D61 = .sbss:0x808E3D61; // type:object size:0x1 data:byte +lbl_808E3D62 = .sbss:0x808E3D62; // type:object size:0x1 data:byte +lbl_808E3D63 = .sbss:0x808E3D63; // type:object size:0x1 data:byte +lbl_808E3D64 = .sbss:0x808E3D64; // type:object size:0x1 data:byte +lbl_808E3D65 = .sbss:0x808E3D65; // type:object size:0x1 data:byte +lbl_808E3D66 = .sbss:0x808E3D66; // type:object size:0x1 data:byte +lbl_808E3D67 = .sbss:0x808E3D67; // type:object size:0x1 data:byte +lbl_808E3D68 = .sbss:0x808E3D68; // type:object size:0x1 data:byte +lbl_808E3D69 = .sbss:0x808E3D69; // type:object size:0x1 data:byte +lbl_808E3D6A = .sbss:0x808E3D6A; // type:object size:0x1 data:byte +lbl_808E3D6B = .sbss:0x808E3D6B; // type:object size:0x1 data:byte +lbl_808E3D6C = .sbss:0x808E3D6C; // type:object size:0x1 data:byte +lbl_808E3D6D = .sbss:0x808E3D6D; // type:object size:0x1 data:byte +lbl_808E3D6E = .sbss:0x808E3D6E; // type:object size:0x1 data:byte +lbl_808E3D6F = .sbss:0x808E3D6F; // type:object size:0x1 data:byte +lbl_808E3D70 = .sbss:0x808E3D70; // type:object size:0x1 data:byte +lbl_808E3D71 = .sbss:0x808E3D71; // type:object size:0x1 data:byte +lbl_808E3D72 = .sbss:0x808E3D72; // type:object size:0x1 data:byte +lbl_808E3D73 = .sbss:0x808E3D73; // type:object size:0x1 data:byte +lbl_808E3D74 = .sbss:0x808E3D74; // type:object size:0x1 data:byte +lbl_808E3D75 = .sbss:0x808E3D75; // type:object size:0x1 data:byte +lbl_808E3D76 = .sbss:0x808E3D76; // type:object size:0x1 data:byte +lbl_808E3D77 = .sbss:0x808E3D77; // type:object size:0x1 data:byte +lbl_808E3D78 = .sbss:0x808E3D78; // type:object size:0x1 data:byte +lbl_808E3D79 = .sbss:0x808E3D79; // type:object size:0x1 data:byte +lbl_808E3D7A = .sbss:0x808E3D7A; // type:object size:0x1 data:byte +lbl_808E3D7B = .sbss:0x808E3D7B; // type:object size:0x5 data:byte +lbl_808E3D80 = .sbss:0x808E3D80; // type:object size:0x1 data:byte +lbl_808E3D81 = .sbss:0x808E3D81; // type:object size:0x1 data:byte +lbl_808E3D82 = .sbss:0x808E3D82; // type:object size:0x1 data:byte +lbl_808E3D83 = .sbss:0x808E3D83; // type:object size:0x1 data:byte +lbl_808E3D84 = .sbss:0x808E3D84; // type:object size:0x1 data:byte +lbl_808E3D85 = .sbss:0x808E3D85; // type:object size:0x1 data:byte +lbl_808E3D86 = .sbss:0x808E3D86; // type:object size:0x1 data:byte +lbl_808E3D87 = .sbss:0x808E3D87; // type:object size:0x1 data:byte +lbl_808E3D88 = .sbss:0x808E3D88; // type:object size:0x1 data:byte +lbl_808E3D89 = .sbss:0x808E3D89; // type:object size:0x7 data:byte +nTimesCalled$145 = .sbss:0x808E3D90; // type:object size:0x8 data:4byte +lbl_808E3D98 = .sbss:0x808E3D98; // type:object size:0x1 data:byte +@LOCAL@GetDefaultMemoryManager__Q26Quazal13MemoryManagerFv@s_bConstructionInProgress = .sbss:0x808E3D99; // type:object size:0x7 data:byte +s_bNoOp__Q26Quazal14MutexPrimitive = .sbss:0x808E3DA0; // type:object size:0x8 data:byte +lbl_808E3DA8 = .sbss:0x808E3DA8; // type:object size:0x8 data:byte +lbl_808E3DB0 = .sbss:0x808E3DB0; // type:object size:0x1 data:byte +lbl_808E3DB1 = .sbss:0x808E3DB1; // type:object size:0x1 data:byte +lbl_808E3DB2 = .sbss:0x808E3DB2; // type:object size:0x6 data:byte +lbl_808E3DB8 = .sbss:0x808E3DB8; // type:object size:0x1 data:byte +lbl_808E3DB9 = .sbss:0x808E3DB9; // type:object size:0x7 data:byte +m_bDisableRegistering__Q26Quazal9WaterMark = .sbss:0x808E3DC0; // type:object size:0x1 data:byte +lbl_808E3DC1 = .sbss:0x808E3DC1; // type:object size:0x7 data:byte +lbl_808E3DC8 = .sbss:0x808E3DC8; // type:object size:0x8 data:byte +lbl_808E3DD0 = .sbss:0x808E3DD0; // type:object size:0x8 data:byte +lbl_808E3DD8 = .sbss:0x808E3DD8; // type:object size:0x8 data:byte +lbl_808E3DE0 = .sbss:0x808E3DE0; // type:object size:0x8 data:byte +lbl_808E3DE8 = .sbss:0x808E3DE8; // type:object size:0x8 data:2byte +lbl_808E3DF0 = .sbss:0x808E3DF0; // type:object size:0x8 data:byte +lbl_808E3DF8 = .sbss:0x808E3DF8; // type:object size:0x8 data:byte +lbl_808E3E00 = .sbss:0x808E3E00; // type:object size:0x8 data:byte +lbl_808E3E08 = .sbss:0x808E3E08; // type:object size:0x8 data:byte +lbl_808E3E10 = .sbss:0x808E3E10; // type:object size:0x1 data:byte +lbl_808E3E11 = .sbss:0x808E3E11; // type:object size:0x1 data:byte +lbl_808E3E12 = .sbss:0x808E3E12; // type:object size:0x6 data:byte +lbl_808E3E18 = .sbss:0x808E3E18; // type:object size:0x8 data:byte +lbl_808E3E20 = .sbss:0x808E3E20; // type:object size:0x1 data:byte +lbl_808E3E21 = .sbss:0x808E3E21; // type:object size:0x7 data:byte +lbl_808E3E28 = .sbss:0x808E3E28; // type:object size:0x8 +lbl_808E3E30 = .sbss:0x808E3E30; // type:object size:0x8 data:byte +@GUARD@Type__22ServerStatusChangedMsgFv@t = .sbss:0x808E3E38; // type:object size:0x1 data:byte +@GUARD@Type__12UserLoginMsgFv@t = .sbss:0x808E3E39; // type:object size:0x1 data:byte +@GUARD@Type__21DeleteUserCompleteMsgFv@t = .sbss:0x808E3E3A; // type:object size:0x1 data:byte +@GUARD@Type__23UserNameNewlyProfaneMsgFv@t = .sbss:0x808E3E3B; // type:object size:0x1 data:byte +lbl_808E3E3C = .sbss:0x808E3E3C; // type:object size:0x1 data:byte +lbl_808E3E3D = .sbss:0x808E3E3D; // type:object size:0x1 data:byte +lbl_808E3E3E = .sbss:0x808E3E3E; // type:object size:0x1 data:byte +lbl_808E3E3F = .sbss:0x808E3E3F; // type:object size:0x1 data:byte +lbl_808E3E40 = .sbss:0x808E3E40; // type:object size:0x1 data:byte +lbl_808E3E41 = .sbss:0x808E3E41; // type:object size:0x1 data:byte +lbl_808E3E42 = .sbss:0x808E3E42; // type:object size:0x1 data:byte +lbl_808E3E43 = .sbss:0x808E3E43; // type:object size:0x1 data:byte +lbl_808E3E44 = .sbss:0x808E3E44; // type:object size:0x1 data:byte +lbl_808E3E45 = .sbss:0x808E3E45; // type:object size:0x1 data:byte +lbl_808E3E46 = .sbss:0x808E3E46; // type:object size:0x1 data:byte +lbl_808E3E47 = .sbss:0x808E3E47; // type:object size:0x1 data:byte +lbl_808E3E48 = .sbss:0x808E3E48; // type:object size:0x1 data:byte +lbl_808E3E49 = .sbss:0x808E3E49; // type:object size:0x1 data:byte +lbl_808E3E4A = .sbss:0x808E3E4A; // type:object size:0x1 data:byte +lbl_808E3E4B = .sbss:0x808E3E4B; // type:object size:0x1 data:byte +lbl_808E3E4C = .sbss:0x808E3E4C; // type:object size:0x1 data:byte +lbl_808E3E4D = .sbss:0x808E3E4D; // type:object size:0x1 data:byte +lbl_808E3E50 = .sbss:0x808E3E50; // type:object size:0x8 data:byte +lbl_808E3E58 = .sbss:0x808E3E58; // type:object size:0x1 data:byte +lbl_808E3E59 = .sbss:0x808E3E59; // type:object size:0x7 data:byte +lbl_808E3E60 = .sbss:0x808E3E60; // type:object size:0x1 data:byte +lbl_808E3E61 = .sbss:0x808E3E61; // type:object size:0x1 data:byte +lbl_808E3E62 = .sbss:0x808E3E62; // type:object size:0x1 data:byte +lbl_808E3E63 = .sbss:0x808E3E63; // type:object size:0x1 data:byte +lbl_808E3E64 = .sbss:0x808E3E64; // type:object size:0x1 data:byte +lbl_808E3E65 = .sbss:0x808E3E65; // type:object size:0x1 data:byte +lbl_808E3E68 = .sbss:0x808E3E68; // type:object size:0x8 data:byte +lbl_808E3E70 = .sbss:0x808E3E70; // type:object size:0x1 data:byte +lbl_808E3E71 = .sbss:0x808E3E71; // type:object size:0x1 data:byte +lbl_808E3E72 = .sbss:0x808E3E72; // type:object size:0x1 data:byte +lbl_808E3E73 = .sbss:0x808E3E73; // type:object size:0x1 data:byte +lbl_808E3E74 = .sbss:0x808E3E74; // type:object size:0x1 data:byte +lbl_808E3E75 = .sbss:0x808E3E75; // type:object size:0x1 data:byte +lbl_808E3E76 = .sbss:0x808E3E76; // type:object size:0x1 data:byte +lbl_808E3E77 = .sbss:0x808E3E77; // type:object size:0x1 data:byte +lbl_808E3E78 = .sbss:0x808E3E78; // type:object size:0x1 data:byte +lbl_808E3E79 = .sbss:0x808E3E79; // type:object size:0x1 data:byte +lbl_808E3E7A = .sbss:0x808E3E7A; // type:object size:0x1 data:byte +lbl_808E3E7B = .sbss:0x808E3E7B; // type:object size:0x1 data:byte +lbl_808E3E7C = .sbss:0x808E3E7C; // type:object size:0x1 data:byte +lbl_808E3E80 = .sbss:0x808E3E80; // type:object size:0x1 data:byte +lbl_808E3E81 = .sbss:0x808E3E81; // type:object size:0x1 data:byte +lbl_808E3E82 = .sbss:0x808E3E82; // type:object size:0x1 data:byte +lbl_808E3E83 = .sbss:0x808E3E83; // type:object size:0x5 data:byte +@GUARD@Type__15NamingResultMsgFv@t = .sbss:0x808E3E88; // type:object size:0x1 data:byte +lbl_808E3E89 = .sbss:0x808E3E89; // type:object size:0x1 data:byte +lbl_808E3E8A = .sbss:0x808E3E8A; // type:object size:0x1 data:byte +lbl_808E3E8B = .sbss:0x808E3E8B; // type:object size:0x1 data:byte +lbl_808E3E8C = .sbss:0x808E3E8C; // type:object size:0x1 data:byte +lbl_808E3E90 = .sbss:0x808E3E90; // type:object size:0x8 data:byte +@LOCAL@vasprintf__FPPcPCcPstruct@_T_emptybuffer = .sbss:0x808E3E98; // type:object size:0x1 +lbl_808E3EA0 = .sbss:0x808E3EA0; // type:object size:0x1 data:byte +lbl_808E3EA1 = .sbss:0x808E3EA1; // type:object size:0x1 data:byte +lbl_808E3EA2 = .sbss:0x808E3EA2; // type:object size:0x1 data:byte +lbl_808E3EA3 = .sbss:0x808E3EA3; // type:object size:0x5 data:byte +lbl_808E3EA8 = .sbss:0x808E3EA8; // type:object size:0x1 data:byte +lbl_808E3EA9 = .sbss:0x808E3EA9; // type:object size:0x1 data:byte +lbl_808E3EAA = .sbss:0x808E3EAA; // type:object size:0x1 data:byte +lbl_808E3EAB = .sbss:0x808E3EAB; // type:object size:0x1 data:byte +lbl_808E3EAC = .sbss:0x808E3EAC; // type:object size:0x1 data:byte +lbl_808E3EAD = .sbss:0x808E3EAD; // type:object size:0x1 data:byte +lbl_808E3EAE = .sbss:0x808E3EAE; // type:object size:0x1 data:byte +lbl_808E3EAF = .sbss:0x808E3EAF; // type:object size:0x1 data:byte +lbl_808E3EB0 = .sbss:0x808E3EB0; // type:object size:0x1 data:byte +lbl_808E3EB1 = .sbss:0x808E3EB1; // type:object size:0x1 data:byte +lbl_808E3EB2 = .sbss:0x808E3EB2; // type:object size:0x1 data:byte +lbl_808E3EB3 = .sbss:0x808E3EB3; // type:object size:0x5 data:byte +lbl_808E3EB8 = .sbss:0x808E3EB8; // type:object size:0x1 data:byte +lbl_808E3EB9 = .sbss:0x808E3EB9; // type:object size:0x1 data:byte +lbl_808E3EBA = .sbss:0x808E3EBA; // type:object size:0x1 data:byte +lbl_808E3EBB = .sbss:0x808E3EBB; // type:object size:0x1 data:byte +lbl_808E3EBC = .sbss:0x808E3EBC; // type:object size:0x1 data:byte +lbl_808E3EBD = .sbss:0x808E3EBD; // type:object size:0x1 data:byte +lbl_808E3EBE = .sbss:0x808E3EBE; // type:object size:0x1 data:byte +lbl_808E3EBF = .sbss:0x808E3EBF; // type:object size:0x1 data:byte +lbl_808E3EC0 = .sbss:0x808E3EC0; // type:object size:0x8 data:byte +lbl_808E3EC8 = .sbss:0x808E3EC8; // type:object size:0x8 data:byte +lbl_808E3ED0 = .sbss:0x808E3ED0; // type:object size:0x8 data:byte +lbl_808E3ED8 = .sbss:0x808E3ED8; // type:object size:0x1 data:byte +lbl_808E3ED9 = .sbss:0x808E3ED9; // type:object size:0x1 data:byte +lbl_808E3EDA = .sbss:0x808E3EDA; // type:object size:0x1 data:byte +lbl_808E3EDB = .sbss:0x808E3EDB; // type:object size:0x1 data:byte +lbl_808E3EDC = .sbss:0x808E3EDC; // type:object size:0x1 data:byte +lbl_808E3EDD = .sbss:0x808E3EDD; // type:object size:0x1 data:byte +lbl_808E3EDE = .sbss:0x808E3EDE; // type:object size:0x1 data:byte +lbl_808E3EDF = .sbss:0x808E3EDF; // type:object size:0x1 data:byte +lbl_808E3EE0 = .sbss:0x808E3EE0; // type:object size:0x1 data:byte +lbl_808E3EE1 = .sbss:0x808E3EE1; // type:object size:0x1 data:byte +lbl_808E3EE2 = .sbss:0x808E3EE2; // type:object size:0x6 data:byte +lbl_808E3EE8 = .sbss:0x808E3EE8; // type:object size:0x1 data:byte +lbl_808E3EE9 = .sbss:0x808E3EE9; // type:object size:0x1 data:byte +lbl_808E3EEA = .sbss:0x808E3EEA; // type:object size:0x1 data:byte +lbl_808E3EEB = .sbss:0x808E3EEB; // type:object size:0x1 data:byte +lbl_808E3EEC = .sbss:0x808E3EEC; // type:object size:0x1 data:byte +lbl_808E3EED = .sbss:0x808E3EED; // type:object size:0x1 data:byte +lbl_808E3EEE = .sbss:0x808E3EEE; // type:object size:0x1 data:byte +lbl_808E3EEF = .sbss:0x808E3EEF; // type:object size:0x1 data:byte +lbl_808E3EF0 = .sbss:0x808E3EF0; // type:object size:0x8 data:byte +lbl_808E3EF8 = .sbss:0x808E3EF8; // type:object size:0x8 data:byte +lbl_808E3F00 = .sbss:0x808E3F00; // type:object size:0x1 data:byte +lbl_808E3F01 = .sbss:0x808E3F01; // type:object size:0x1 data:byte +lbl_808E3F02 = .sbss:0x808E3F02; // type:object size:0x1 data:byte +lbl_808E3F03 = .sbss:0x808E3F03; // type:object size:0x1 data:byte +lbl_808E3F04 = .sbss:0x808E3F04; // type:object size:0x1 data:byte +lbl_808E3F05 = .sbss:0x808E3F05; // type:object size:0x1 data:byte +lbl_808E3F06 = .sbss:0x808E3F06; // type:object size:0x1 data:byte +lbl_808E3F08 = .sbss:0x808E3F08; // type:object size:0x8 data:byte +lbl_808E3F10 = .sbss:0x808E3F10; // type:object size:0x1 data:byte +lbl_808E3F11 = .sbss:0x808E3F11; // type:object size:0x1 data:byte +lbl_808E3F12 = .sbss:0x808E3F12; // type:object size:0x1 data:byte +lbl_808E3F13 = .sbss:0x808E3F13; // type:object size:0x1 data:byte +lbl_808E3F14 = .sbss:0x808E3F14; // type:object size:0x1 data:byte +lbl_808E3F15 = .sbss:0x808E3F15; // type:object size:0x1 data:byte +lbl_808E3F16 = .sbss:0x808E3F16; // type:object size:0x1 data:byte +lbl_808E3F17 = .sbss:0x808E3F17; // type:object size:0x1 data:byte +lbl_808E3F18 = .sbss:0x808E3F18; // type:object size:0x1 data:byte +lbl_808E3F19 = .sbss:0x808E3F19; // type:object size:0x7 data:byte +lbl_808E3F20 = .sbss:0x808E3F20; // type:object size:0x1 data:byte +lbl_808E3F21 = .sbss:0x808E3F21; // type:object size:0x7 data:byte +lbl_808E3F28 = .sbss:0x808E3F28; // type:object size:0x1 data:byte +lbl_808E3F29 = .sbss:0x808E3F29; // type:object size:0x7 data:byte +lbl_808E3F30 = .sbss:0x808E3F30; // type:object size:0x1 data:byte +lbl_808E3F31 = .sbss:0x808E3F31; // type:object size:0x1 data:byte +lbl_808E3F32 = .sbss:0x808E3F32; // type:object size:0x6 data:byte +lbl_808E3F38 = .sbss:0x808E3F38; // type:object size:0x8 data:byte +lbl_808E3F40 = .sbss:0x808E3F40; // type:object size:0x1 data:byte +lbl_808E3F41 = .sbss:0x808E3F41; // type:object size:0x7 data:byte +lbl_808E3F48 = .sbss:0x808E3F48; // type:object size:0x1 data:byte +lbl_808E3F49 = .sbss:0x808E3F49; // type:object size:0x1 data:byte +lbl_808E3F4A = .sbss:0x808E3F4A; // type:object size:0x1 data:byte +lbl_808E3F4B = .sbss:0x808E3F4B; // type:object size:0x1 data:byte +lbl_808E3F4C = .sbss:0x808E3F4C; // type:object size:0x1 data:byte +lbl_808E3F4D = .sbss:0x808E3F4D; // type:object size:0x1 data:byte +lbl_808E3F4E = .sbss:0x808E3F4E; // type:object size:0x1 data:byte +lbl_808E3F4F = .sbss:0x808E3F4F; // type:object size:0x1 data:byte +lbl_808E3F50 = .sbss:0x808E3F50; // type:object size:0x1 data:byte +lbl_808E3F51 = .sbss:0x808E3F51; // type:object size:0x7 data:byte +lbl_808E3F58 = .sbss:0x808E3F58; // type:object size:0x1 data:byte +lbl_808E3F59 = .sbss:0x808E3F59; // type:object size:0x1 data:byte +lbl_808E3F5A = .sbss:0x808E3F5A; // type:object size:0x1 data:byte +lbl_808E3F5B = .sbss:0x808E3F5B; // type:object size:0x1 data:byte +lbl_808E3F5C = .sbss:0x808E3F5C; // type:object size:0x1 data:byte +lbl_808E3F60 = .sbss:0x808E3F60; // type:object size:0x8 data:byte +lbl_808E3F68 = .sbss:0x808E3F68; // type:object size:0x1 data:byte +lbl_808E3F69 = .sbss:0x808E3F69; // type:object size:0x1 data:byte +lbl_808E3F6A = .sbss:0x808E3F6A; // type:object size:0x1 data:byte +lbl_808E3F6B = .sbss:0x808E3F6B; // type:object size:0x1 data:byte +lbl_808E3F6C = .sbss:0x808E3F6C; // type:object size:0x1 data:byte +lbl_808E3F6D = .sbss:0x808E3F6D; // type:object size:0x1 data:byte +lbl_808E3F6E = .sbss:0x808E3F6E; // type:object size:0x1 data:byte +lbl_808E3F6F = .sbss:0x808E3F6F; // type:object size:0x1 data:byte +lbl_808E3F70 = .sbss:0x808E3F70; // type:object size:0x1 data:byte +lbl_808E3F71 = .sbss:0x808E3F71; // type:object size:0x1 data:byte +lbl_808E3F72 = .sbss:0x808E3F72; // type:object size:0x1 data:byte +lbl_808E3F73 = .sbss:0x808E3F73; // type:object size:0x5 data:byte +lbl_808E3F78 = .sbss:0x808E3F78; // type:object size:0x1 data:byte +lbl_808E3F79 = .sbss:0x808E3F79; // type:object size:0x1 data:byte +lbl_808E3F7A = .sbss:0x808E3F7A; // type:object size:0x1 data:byte +lbl_808E3F7B = .sbss:0x808E3F7B; // type:object size:0x1 data:byte +lbl_808E3F7C = .sbss:0x808E3F7C; // type:object size:0x1 data:byte +lbl_808E3F7D = .sbss:0x808E3F7D; // type:object size:0x1 data:byte +lbl_808E3F7E = .sbss:0x808E3F7E; // type:object size:0x1 data:byte +lbl_808E3F7F = .sbss:0x808E3F7F; // type:object size:0x1 data:byte +lbl_808E3F80 = .sbss:0x808E3F80; // type:object size:0x1 data:byte +lbl_808E3F81 = .sbss:0x808E3F81; // type:object size:0x1 data:byte +lbl_808E3F82 = .sbss:0x808E3F82; // type:object size:0x1 data:byte +lbl_808E3F83 = .sbss:0x808E3F83; // type:object size:0x1 data:byte +lbl_808E3F84 = .sbss:0x808E3F84; // type:object size:0x1 data:byte +lbl_808E3F85 = .sbss:0x808E3F85; // type:object size:0x1 data:byte +lbl_808E3F86 = .sbss:0x808E3F86; // type:object size:0x1 data:byte +lbl_808E3F87 = .sbss:0x808E3F87; // type:object size:0x1 data:byte +lbl_808E3F88 = .sbss:0x808E3F88; // type:object size:0x1 data:byte +lbl_808E3F89 = .sbss:0x808E3F89; // type:object size:0x1 data:byte +lbl_808E3F8A = .sbss:0x808E3F8A; // type:object size:0x1 data:byte +lbl_808E3F8B = .sbss:0x808E3F8B; // type:object size:0x1 data:byte +lbl_808E3F8C = .sbss:0x808E3F8C; // type:object size:0x1 data:byte +lbl_808E3F8D = .sbss:0x808E3F8D; // type:object size:0x1 data:byte +lbl_808E3F8E = .sbss:0x808E3F8E; // type:object size:0x1 data:byte +lbl_808E3F8F = .sbss:0x808E3F8F; // type:object size:0x1 data:byte +lbl_808E3F90 = .sbss:0x808E3F90; // type:object size:0x8 data:byte +lbl_808E3F98 = .sbss:0x808E3F98; // type:object size:0x1 data:byte +lbl_808E3F99 = .sbss:0x808E3F99; // type:object size:0x1 data:byte +lbl_808E3F9A = .sbss:0x808E3F9A; // type:object size:0x6 data:byte +lbl_808E3FA0 = .sbss:0x808E3FA0; // type:object size:0x1 data:byte +lbl_808E3FA1 = .sbss:0x808E3FA1; // type:object size:0x7 data:byte +lbl_808E3FA8 = .sbss:0x808E3FA8; // type:object size:0x1 data:byte +lbl_808E3FA9 = .sbss:0x808E3FA9; // type:object size:0x1 data:byte +lbl_808E3FAA = .sbss:0x808E3FAA; // type:object size:0x1 data:byte +lbl_808E3FAB = .sbss:0x808E3FAB; // type:object size:0x1 data:byte +lbl_808E3FAC = .sbss:0x808E3FAC; // type:object size:0x1 data:byte +lbl_808E3FAD = .sbss:0x808E3FAD; // type:object size:0x1 data:byte +lbl_808E3FAE = .sbss:0x808E3FAE; // type:object size:0x1 data:byte +lbl_808E3FAF = .sbss:0x808E3FAF; // type:object size:0x1 data:byte +lbl_808E3FB0 = .sbss:0x808E3FB0; // type:object size:0x8 data:byte +lbl_808E3FB8 = .sbss:0x808E3FB8; // type:object size:0x8 data:byte +lbl_808E3FC0 = .sbss:0x808E3FC0; // type:object size:0x8 data:byte +lbl_808E3FC8 = .sbss:0x808E3FC8; // type:object size:0x1 data:byte +lbl_808E3FC9 = .sbss:0x808E3FC9; // type:object size:0x1 data:byte +lbl_808E3FCA = .sbss:0x808E3FCA; // type:object size:0x1 data:byte +lbl_808E3FCB = .sbss:0x808E3FCB; // type:object size:0x1 data:byte +lbl_808E3FCC = .sbss:0x808E3FCC; // type:object size:0x1 data:byte +lbl_808E3FCD = .sbss:0x808E3FCD; // type:object size:0x1 data:byte +lbl_808E3FCE = .sbss:0x808E3FCE; // type:object size:0x1 data:byte +lbl_808E3FD0 = .sbss:0x808E3FD0; // type:object size:0x1 data:byte +lbl_808E3FD1 = .sbss:0x808E3FD1; // type:object size:0x1 data:byte +lbl_808E3FD2 = .sbss:0x808E3FD2; // type:object size:0x6 data:byte +lbl_808E3FD8 = .sbss:0x808E3FD8; // type:object size:0x8 data:byte +lbl_808E3FE0 = .sbss:0x808E3FE0; // type:object size:0x1 data:byte +lbl_808E3FE1 = .sbss:0x808E3FE1; // type:object size:0x1 data:byte +lbl_808E3FE2 = .sbss:0x808E3FE2; // type:object size:0x1 data:byte +lbl_808E3FE3 = .sbss:0x808E3FE3; // type:object size:0x1 data:byte +lbl_808E3FE4 = .sbss:0x808E3FE4; // type:object size:0x1 data:byte +lbl_808E3FE5 = .sbss:0x808E3FE5; // type:object size:0x1 data:byte +lbl_808E3FE6 = .sbss:0x808E3FE6; // type:object size:0x1 data:byte +lbl_808E3FE7 = .sbss:0x808E3FE7; // type:object size:0x1 data:byte +lbl_808E3FE8 = .sbss:0x808E3FE8; // type:object size:0x1 data:byte +lbl_808E3FE9 = .sbss:0x808E3FE9; // type:object size:0x1 data:byte +lbl_808E3FEA = .sbss:0x808E3FEA; // type:object size:0x1 data:byte +lbl_808E3FEB = .sbss:0x808E3FEB; // type:object size:0x5 data:byte +lbl_808E3FF0 = .sbss:0x808E3FF0; // type:object size:0x1 data:byte +lbl_808E3FF1 = .sbss:0x808E3FF1; // type:object size:0x1 data:byte +lbl_808E3FF2 = .sbss:0x808E3FF2; // type:object size:0x6 data:byte +lbl_808E3FF8 = .sbss:0x808E3FF8; // type:object size:0x1 data:byte +lbl_808E3FF9 = .sbss:0x808E3FF9; // type:object size:0x7 data:byte +lbl_808E4000 = .sbss:0x808E4000; // type:object size:0x1 data:byte +lbl_808E4001 = .sbss:0x808E4001; // type:object size:0x1 data:byte +lbl_808E4002 = .sbss:0x808E4002; // type:object size:0x1 data:byte +lbl_808E4003 = .sbss:0x808E4003; // type:object size:0x1 data:byte +lbl_808E4004 = .sbss:0x808E4004; // type:object size:0x1 data:byte +lbl_808E4005 = .sbss:0x808E4005; // type:object size:0x1 data:byte +lbl_808E4006 = .sbss:0x808E4006; // type:object size:0x1 data:byte +lbl_808E4007 = .sbss:0x808E4007; // type:object size:0x1 data:byte +lbl_808E4008 = .sbss:0x808E4008; // type:object size:0x1 data:byte +lbl_808E4009 = .sbss:0x808E4009; // type:object size:0x1 data:byte +lbl_808E400A = .sbss:0x808E400A; // type:object size:0x1 data:byte +lbl_808E400B = .sbss:0x808E400B; // type:object size:0x1 data:byte +lbl_808E400C = .sbss:0x808E400C; // type:object size:0x1 data:byte +lbl_808E400D = .sbss:0x808E400D; // type:object size:0x1 data:byte +lbl_808E400E = .sbss:0x808E400E; // type:object size:0x1 data:byte +lbl_808E400F = .sbss:0x808E400F; // type:object size:0x1 data:byte +lbl_808E4010 = .sbss:0x808E4010; // type:object size:0x1 data:byte +lbl_808E4011 = .sbss:0x808E4011; // type:object size:0x1 data:byte +lbl_808E4012 = .sbss:0x808E4012; // type:object size:0x1 data:byte +lbl_808E4013 = .sbss:0x808E4013; // type:object size:0x1 data:byte +lbl_808E4014 = .sbss:0x808E4014; // type:object size:0x1 data:byte +lbl_808E4015 = .sbss:0x808E4015; // type:object size:0x1 data:byte +lbl_808E4016 = .sbss:0x808E4016; // type:object size:0x1 data:byte +lbl_808E4017 = .sbss:0x808E4017; // type:object size:0x1 data:byte +lbl_808E4018 = .sbss:0x808E4018; // type:object size:0x1 data:byte +lbl_808E4019 = .sbss:0x808E4019; // type:object size:0x7 data:byte +lbl_808E4020 = .sbss:0x808E4020; // type:object size:0x8 data:byte +lbl_808E4028 = .sbss:0x808E4028; // type:object size:0x1 data:byte +lbl_808E4029 = .sbss:0x808E4029; // type:object size:0x1 data:byte +lbl_808E402A = .sbss:0x808E402A; // type:object size:0x1 data:byte +lbl_808E402B = .sbss:0x808E402B; // type:object size:0x1 data:byte +lbl_808E402C = .sbss:0x808E402C; // type:object size:0x1 data:byte +lbl_808E402D = .sbss:0x808E402D; // type:object size:0x1 data:byte +lbl_808E402E = .sbss:0x808E402E; // type:object size:0x1 data:byte +lbl_808E402F = .sbss:0x808E402F; // type:object size:0x1 data:byte +lbl_808E4030 = .sbss:0x808E4030; // type:object size:0x1 data:byte +lbl_808E4031 = .sbss:0x808E4031; // type:object size:0x7 data:byte +lbl_808E4038 = .sbss:0x808E4038; // type:object size:0x8 data:byte +lbl_808E4040 = .sbss:0x808E4040; // type:object size:0x1 data:byte +lbl_808E4041 = .sbss:0x808E4041; // type:object size:0x1 data:byte +lbl_808E4042 = .sbss:0x808E4042; // type:object size:0x1 data:byte +lbl_808E4043 = .sbss:0x808E4043; // type:object size:0x1 data:byte +lbl_808E4044 = .sbss:0x808E4044; // type:object size:0x1 data:byte +lbl_808E4048 = .sbss:0x808E4048; // type:object size:0x1 data:byte +lbl_808E4049 = .sbss:0x808E4049; // type:object size:0x7 data:byte +lbl_808E4050 = .sbss:0x808E4050; // type:object size:0x8 data:byte +lbl_808E4058 = .sbss:0x808E4058; // type:object size:0x1 data:byte +lbl_808E4059 = .sbss:0x808E4059; // type:object size:0x1 data:byte +lbl_808E405A = .sbss:0x808E405A; // type:object size:0x1 data:byte +lbl_808E405B = .sbss:0x808E405B; // type:object size:0x1 data:byte +lbl_808E405C = .sbss:0x808E405C; // type:object size:0x1 data:byte +lbl_808E405D = .sbss:0x808E405D; // type:object size:0x1 data:byte +lbl_808E405E = .sbss:0x808E405E; // type:object size:0x1 data:byte +lbl_808E405F = .sbss:0x808E405F; // type:object size:0x1 data:byte +lbl_808E4060 = .sbss:0x808E4060; // type:object size:0x1 data:byte +lbl_808E4061 = .sbss:0x808E4061; // type:object size:0x1 data:byte +lbl_808E4062 = .sbss:0x808E4062; // type:object size:0x1 data:byte +lbl_808E4063 = .sbss:0x808E4063; // type:object size:0x1 data:byte +lbl_808E4064 = .sbss:0x808E4064; // type:object size:0x1 data:byte +lbl_808E4065 = .sbss:0x808E4065; // type:object size:0x1 data:byte +lbl_808E4066 = .sbss:0x808E4066; // type:object size:0x1 data:byte +lbl_808E4067 = .sbss:0x808E4067; // type:object size:0x1 data:byte +lbl_808E4068 = .sbss:0x808E4068; // type:object size:0x1 data:byte +lbl_808E4069 = .sbss:0x808E4069; // type:object size:0x1 data:byte +lbl_808E406A = .sbss:0x808E406A; // type:object size:0x1 data:byte +lbl_808E406B = .sbss:0x808E406B; // type:object size:0x1 data:byte +lbl_808E406C = .sbss:0x808E406C; // type:object size:0x1 data:byte +lbl_808E406D = .sbss:0x808E406D; // type:object size:0x1 data:byte +lbl_808E406E = .sbss:0x808E406E; // type:object size:0x1 data:byte +lbl_808E406F = .sbss:0x808E406F; // type:object size:0x1 data:byte +lbl_808E4070 = .sbss:0x808E4070; // type:object size:0x1 data:byte +lbl_808E4071 = .sbss:0x808E4071; // type:object size:0x1 data:byte +lbl_808E4072 = .sbss:0x808E4072; // type:object size:0x1 data:byte +lbl_808E4073 = .sbss:0x808E4073; // type:object size:0x5 data:byte +lbl_808E4078 = .sbss:0x808E4078; // type:object size:0x1 data:byte +lbl_808E4079 = .sbss:0x808E4079; // type:object size:0x1 data:byte +lbl_808E407A = .sbss:0x808E407A; // type:object size:0x1 data:byte +lbl_808E407B = .sbss:0x808E407B; // type:object size:0x5 data:byte +lbl_808E4080 = .sbss:0x808E4080; // type:object size:0x1 data:byte +lbl_808E4081 = .sbss:0x808E4081; // type:object size:0x1 data:byte +lbl_808E4082 = .sbss:0x808E4082; // type:object size:0x1 data:byte +lbl_808E4083 = .sbss:0x808E4083; // type:object size:0x1 data:byte +lbl_808E4084 = .sbss:0x808E4084; // type:object size:0x1 data:byte +lbl_808E4085 = .sbss:0x808E4085; // type:object size:0x1 data:byte +lbl_808E4086 = .sbss:0x808E4086; // type:object size:0x1 data:byte +lbl_808E4087 = .sbss:0x808E4087; // type:object size:0x1 data:byte +lbl_808E4088 = .sbss:0x808E4088; // type:object size:0x1 data:byte +lbl_808E4089 = .sbss:0x808E4089; // type:object size:0x1 data:byte +lbl_808E408A = .sbss:0x808E408A; // type:object size:0x1 data:byte +lbl_808E408B = .sbss:0x808E408B; // type:object size:0x1 data:byte +lbl_808E408C = .sbss:0x808E408C; // type:object size:0x1 data:byte +lbl_808E408D = .sbss:0x808E408D; // type:object size:0x1 data:byte +lbl_808E408E = .sbss:0x808E408E; // type:object size:0x1 data:byte +lbl_808E4090 = .sbss:0x808E4090; // type:object size:0x1 data:byte +lbl_808E4091 = .sbss:0x808E4091; // type:object size:0x1 data:byte +lbl_808E4092 = .sbss:0x808E4092; // type:object size:0x1 data:byte +lbl_808E4093 = .sbss:0x808E4093; // type:object size:0x1 data:byte +lbl_808E4094 = .sbss:0x808E4094; // type:object size:0x1 data:byte +lbl_808E4095 = .sbss:0x808E4095; // type:object size:0x1 data:byte +lbl_808E4098 = .sbss:0x808E4098; // type:object size:0x1 data:byte +lbl_808E4099 = .sbss:0x808E4099; // type:object size:0x1 data:byte +lbl_808E409A = .sbss:0x808E409A; // type:object size:0x1 data:byte +lbl_808E409B = .sbss:0x808E409B; // type:object size:0x5 data:byte +lbl_808E40A0 = .sbss:0x808E40A0; // type:object size:0x1 data:byte +lbl_808E40A1 = .sbss:0x808E40A1; // type:object size:0x7 data:byte +lbl_808E40A8 = .sbss:0x808E40A8; // type:object size:0x1 data:byte +lbl_808E40A9 = .sbss:0x808E40A9; // type:object size:0x1 data:byte +lbl_808E40AA = .sbss:0x808E40AA; // type:object size:0x6 data:byte +lbl_808E40B0 = .sbss:0x808E40B0; // type:object size:0x1 data:byte +lbl_808E40B1 = .sbss:0x808E40B1; // type:object size:0x1 data:byte +lbl_808E40B2 = .sbss:0x808E40B2; // type:object size:0x1 data:byte +lbl_808E40B3 = .sbss:0x808E40B3; // type:object size:0x1 data:byte +lbl_808E40B4 = .sbss:0x808E40B4; // type:object size:0x1 data:byte +lbl_808E40B5 = .sbss:0x808E40B5; // type:object size:0x1 data:byte +lbl_808E40B6 = .sbss:0x808E40B6; // type:object size:0x1 data:byte +lbl_808E40B7 = .sbss:0x808E40B7; // type:object size:0x1 data:byte +lbl_808E40B8 = .sbss:0x808E40B8; // type:object size:0x1 data:byte +lbl_808E40B9 = .sbss:0x808E40B9; // type:object size:0x1 data:byte +lbl_808E40BA = .sbss:0x808E40BA; // type:object size:0x1 data:byte +lbl_808E40BB = .sbss:0x808E40BB; // type:object size:0x1 data:byte +lbl_808E40BC = .sbss:0x808E40BC; // type:object size:0x1 data:byte +lbl_808E40BD = .sbss:0x808E40BD; // type:object size:0x1 data:byte +lbl_808E40C0 = .sbss:0x808E40C0; // type:object size:0x1 data:byte +lbl_808E40C1 = .sbss:0x808E40C1; // type:object size:0x1 data:byte +lbl_808E40C2 = .sbss:0x808E40C2; // type:object size:0x1 data:byte +lbl_808E40C3 = .sbss:0x808E40C3; // type:object size:0x5 data:byte +lbl_808E40C8 = .sbss:0x808E40C8; // type:object size:0x1 data:byte +lbl_808E40C9 = .sbss:0x808E40C9; // type:object size:0x1 data:byte +lbl_808E40CA = .sbss:0x808E40CA; // type:object size:0x1 data:byte +lbl_808E40CB = .sbss:0x808E40CB; // type:object size:0x1 data:byte +lbl_808E40CC = .sbss:0x808E40CC; // type:object size:0x1 data:byte +lbl_808E40CD = .sbss:0x808E40CD; // type:object size:0x1 data:byte +lbl_808E40CE = .sbss:0x808E40CE; // type:object size:0x1 data:byte +lbl_808E40CF = .sbss:0x808E40CF; // type:object size:0x1 data:byte +lbl_808E40D0 = .sbss:0x808E40D0; // type:object size:0x8 data:byte +lbl_808E40D8 = .sbss:0x808E40D8; // type:object size:0x1 data:byte +lbl_808E40D9 = .sbss:0x808E40D9; // type:object size:0x7 data:byte +lbl_808E40E0 = .sbss:0x808E40E0; // type:object size:0x1 data:byte +lbl_808E40E1 = .sbss:0x808E40E1; // type:object size:0x1 data:byte +lbl_808E40E2 = .sbss:0x808E40E2; // type:object size:0x1 data:byte +lbl_808E40E3 = .sbss:0x808E40E3; // type:object size:0x1 data:byte +lbl_808E40E4 = .sbss:0x808E40E4; // type:object size:0x1 data:byte +@GUARD@Type__22KeyboardKeyReleasedMsgFv@t = .sbss:0x808E40E5; // type:object size:0x1 data:byte +@GUARD@Type__14KeyboardModMsgFv@t = .sbss:0x808E40E6; // type:object size:0x1 data:byte +@GUARD@Type__26KeyboardExpressionPedalMsgFv@t = .sbss:0x808E40E7; // type:object size:0x1 data:byte +@GUARD@Type__31KeyboardConnectedAccessoriesMsgFv@t = .sbss:0x808E40E8; // type:object size:0x1 data:byte +@GUARD@Type__18KeyboardSustainMsgFv@t = .sbss:0x808E40E9; // type:object size:0x1 data:byte +@GUARD@Type__19KeyboardStompBoxMsgFv@t = .sbss:0x808E40EA; // type:object size:0x1 data:byte +@GUARD@Type__20KeysAccelerometerMsgFv@t = .sbss:0x808E40EB; // type:object size:0x1 data:byte +@GUARD@Type__27KeyboardLowHandPlacementMsgFv@t = .sbss:0x808E40EC; // type:object size:0x1 data:byte +@GUARD@Type__28KeyboardHighHandPlacementMsgFv@t = .sbss:0x808E40ED; // type:object size:0x1 data:byte +lbl_808E40EE = .sbss:0x808E40EE; // type:object size:0x1 data:byte +lbl_808E40EF = .sbss:0x808E40EF; // type:object size:0x1 data:byte +lbl_808E40F0 = .sbss:0x808E40F0; // type:object size:0x1 data:byte +lbl_808E40F1 = .sbss:0x808E40F1; // type:object size:0x1 data:byte +lbl_808E40F2 = .sbss:0x808E40F2; // type:object size:0x1 data:byte +lbl_808E40F3 = .sbss:0x808E40F3; // type:object size:0x5 data:byte +lbl_808E40F8 = .sbss:0x808E40F8; // type:object size:0x1 data:byte +lbl_808E40F9 = .sbss:0x808E40F9; // type:object size:0x1 data:byte +lbl_808E40FA = .sbss:0x808E40FA; // type:object size:0x1 data:byte +lbl_808E40FB = .sbss:0x808E40FB; // type:object size:0x5 data:byte +lbl_808E4100 = .sbss:0x808E4100; // type:object size:0x1 data:byte +lbl_808E4101 = .sbss:0x808E4101; // type:object size:0x1 data:byte +lbl_808E4102 = .sbss:0x808E4102; // type:object size:0x1 data:byte +lbl_808E4103 = .sbss:0x808E4103; // type:object size:0x5 data:byte +lbl_808E4108 = .sbss:0x808E4108; // type:object size:0x1 data:byte +lbl_808E4109 = .sbss:0x808E4109; // type:object size:0x1 data:byte +lbl_808E410A = .sbss:0x808E410A; // type:object size:0x6 data:byte +lbl_808E4110 = .sbss:0x808E4110; // type:object size:0x1 data:byte +lbl_808E4111 = .sbss:0x808E4111; // type:object size:0x1 data:byte +lbl_808E4112 = .sbss:0x808E4112; // type:object size:0x1 data:byte +lbl_808E4113 = .sbss:0x808E4113; // type:object size:0x1 data:byte +lbl_808E4114 = .sbss:0x808E4114; // type:object size:0x1 data:byte +lbl_808E4118 = .sbss:0x808E4118; // type:object size:0x1 data:byte +lbl_808E4119 = .sbss:0x808E4119; // type:object size:0x1 data:byte +lbl_808E411A = .sbss:0x808E411A; // type:object size:0x1 data:byte +lbl_808E411B = .sbss:0x808E411B; // type:object size:0x5 data:byte +lbl_808E4120 = .sbss:0x808E4120; // type:object size:0x1 data:byte +lbl_808E4121 = .sbss:0x808E4121; // type:object size:0x7 data:byte +lbl_808E4128 = .sbss:0x808E4128; // type:object size:0x1 data:byte +lbl_808E4129 = .sbss:0x808E4129; // type:object size:0x7 data:byte +lbl_808E4130 = .sbss:0x808E4130; // type:object size:0x1 data:byte +lbl_808E4131 = .sbss:0x808E4131; // type:object size:0x7 data:byte +lbl_808E4138 = .sbss:0x808E4138; // type:object size:0x1 data:byte +lbl_808E4139 = .sbss:0x808E4139; // type:object size:0x1 data:byte +lbl_808E413A = .sbss:0x808E413A; // type:object size:0x1 data:byte +lbl_808E413B = .sbss:0x808E413B; // type:object size:0x5 data:byte +lbl_808E4140 = .sbss:0x808E4140; // type:object size:0x1 data:byte +lbl_808E4141 = .sbss:0x808E4141; // type:object size:0x7 data:byte +lbl_808E4148 = .sbss:0x808E4148; // type:object size:0x1 data:byte +lbl_808E4149 = .sbss:0x808E4149; // type:object size:0x1 data:byte +lbl_808E414A = .sbss:0x808E414A; // type:object size:0x1 data:byte +lbl_808E414B = .sbss:0x808E414B; // type:object size:0x1 data:byte +lbl_808E414C = .sbss:0x808E414C; // type:object size:0x1 data:byte +lbl_808E4150 = .sbss:0x808E4150; // type:object size:0x1 data:byte +lbl_808E4151 = .sbss:0x808E4151; // type:object size:0x1 data:byte +lbl_808E4152 = .sbss:0x808E4152; // type:object size:0x1 data:byte +lbl_808E4153 = .sbss:0x808E4153; // type:object size:0x1 data:byte +lbl_808E4154 = .sbss:0x808E4154; // type:object size:0x1 data:byte +lbl_808E4155 = .sbss:0x808E4155; // type:object size:0x1 data:byte +lbl_808E4156 = .sbss:0x808E4156; // type:object size:0x1 data:byte +lbl_808E4157 = .sbss:0x808E4157; // type:object size:0x1 data:byte +lbl_808E4158 = .sbss:0x808E4158; // type:object size:0x1 data:byte +lbl_808E4159 = .sbss:0x808E4159; // type:object size:0x1 data:byte +lbl_808E415A = .sbss:0x808E415A; // type:object size:0x1 data:byte +lbl_808E415B = .sbss:0x808E415B; // type:object size:0x1 data:byte +lbl_808E415C = .sbss:0x808E415C; // type:object size:0x1 data:byte +lbl_808E415D = .sbss:0x808E415D; // type:object size:0x1 data:byte +lbl_808E415E = .sbss:0x808E415E; // type:object size:0x1 data:byte +lbl_808E415F = .sbss:0x808E415F; // type:object size:0x1 data:byte +lbl_808E4160 = .sbss:0x808E4160; // type:object size:0x1 data:byte +lbl_808E4161 = .sbss:0x808E4161; // type:object size:0x1 data:byte +lbl_808E4162 = .sbss:0x808E4162; // type:object size:0x1 data:byte +lbl_808E4163 = .sbss:0x808E4163; // type:object size:0x5 data:byte +lbl_808E4168 = .sbss:0x808E4168; // type:object size:0x8 data:byte +lbl_808E4170 = .sbss:0x808E4170; // type:object size:0x1 data:byte +lbl_808E4171 = .sbss:0x808E4171; // type:object size:0x1 data:byte +lbl_808E4172 = .sbss:0x808E4172; // type:object size:0x6 data:byte +lbl_808E4178 = .sbss:0x808E4178; // type:object size:0x1 data:byte +lbl_808E4179 = .sbss:0x808E4179; // type:object size:0x1 data:byte +lbl_808E417A = .sbss:0x808E417A; // type:object size:0x6 data:byte +lbl_808E4180 = .sbss:0x808E4180; // type:object size:0x1 data:byte +lbl_808E4181 = .sbss:0x808E4181; // type:object size:0x7 data:byte +lbl_808E4188 = .sbss:0x808E4188; // type:object size:0x1 data:byte +lbl_808E4189 = .sbss:0x808E4189; // type:object size:0x7 data:byte +lbl_808E4190 = .sbss:0x808E4190; // type:object size:0x1 data:byte +lbl_808E4191 = .sbss:0x808E4191; // type:object size:0x7 data:byte +lbl_808E4198 = .sbss:0x808E4198; // type:object size:0x1 data:byte +lbl_808E4199 = .sbss:0x808E4199; // type:object size:0x1 data:byte +lbl_808E419A = .sbss:0x808E419A; // type:object size:0x1 data:byte +lbl_808E419B = .sbss:0x808E419B; // type:object size:0x1 data:byte +lbl_808E419C = .sbss:0x808E419C; // type:object size:0x1 data:byte +lbl_808E41A0 = .sbss:0x808E41A0; // type:object size:0x1 data:byte +lbl_808E41A1 = .sbss:0x808E41A1; // type:object size:0x7 data:byte +lbl_808E41A8 = .sbss:0x808E41A8; // type:object size:0x1 data:byte +lbl_808E41A9 = .sbss:0x808E41A9; // type:object size:0x1 data:byte +lbl_808E41AA = .sbss:0x808E41AA; // type:object size:0x6 data:byte +lbl_808E41B0 = .sbss:0x808E41B0; // type:object size:0x1 data:byte +lbl_808E41B1 = .sbss:0x808E41B1; // type:object size:0x1 data:byte +lbl_808E41B2 = .sbss:0x808E41B2; // type:object size:0x1 data:byte +lbl_808E41B3 = .sbss:0x808E41B3; // type:object size:0x5 data:byte +lbl_808E41B8 = .sbss:0x808E41B8; // type:object size:0x1 data:byte +lbl_808E41B9 = .sbss:0x808E41B9; // type:object size:0x1 data:byte +lbl_808E41BA = .sbss:0x808E41BA; // type:object size:0x1 data:byte +lbl_808E41BB = .sbss:0x808E41BB; // type:object size:0x1 data:byte +lbl_808E41BC = .sbss:0x808E41BC; // type:object size:0x1 data:byte +lbl_808E41BD = .sbss:0x808E41BD; // type:object size:0x1 data:byte +lbl_808E41BE = .sbss:0x808E41BE; // type:object size:0x1 data:byte +lbl_808E41BF = .sbss:0x808E41BF; // type:object size:0x1 data:byte +lbl_808E41C0 = .sbss:0x808E41C0; // type:object size:0x1 data:byte +lbl_808E41C1 = .sbss:0x808E41C1; // type:object size:0x1 data:byte +lbl_808E41C2 = .sbss:0x808E41C2; // type:object size:0x1 data:byte +lbl_808E41C3 = .sbss:0x808E41C3; // type:object size:0x5 data:byte +lbl_808E41C8 = .sbss:0x808E41C8; // type:object size:0x1 data:byte +lbl_808E41C9 = .sbss:0x808E41C9; // type:object size:0x1 data:byte +lbl_808E41CA = .sbss:0x808E41CA; // type:object size:0x1 data:byte +lbl_808E41CB = .sbss:0x808E41CB; // type:object size:0x1 data:byte +lbl_808E41CC = .sbss:0x808E41CC; // type:object size:0x1 data:byte +lbl_808E41D0 = .sbss:0x808E41D0; // type:object size:0x8 data:byte +lbl_808E41D8 = .sbss:0x808E41D8; // type:object size:0x1 data:byte +lbl_808E41D9 = .sbss:0x808E41D9; // type:object size:0x1 data:byte +lbl_808E41DA = .sbss:0x808E41DA; // type:object size:0x1 data:byte +lbl_808E41DB = .sbss:0x808E41DB; // type:object size:0x1 data:byte +lbl_808E41DC = .sbss:0x808E41DC; // type:object size:0x1 data:byte +lbl_808E41DD = .sbss:0x808E41DD; // type:object size:0x1 data:byte +lbl_808E41DE = .sbss:0x808E41DE; // type:object size:0x1 data:byte +lbl_808E41DF = .sbss:0x808E41DF; // type:object size:0x1 data:byte +lbl_808E41E0 = .sbss:0x808E41E0; // type:object size:0x1 data:byte +lbl_808E41E1 = .sbss:0x808E41E1; // type:object size:0x1 data:byte +lbl_808E41E2 = .sbss:0x808E41E2; // type:object size:0x1 data:byte +lbl_808E41E3 = .sbss:0x808E41E3; // type:object size:0x1 data:byte +lbl_808E41E4 = .sbss:0x808E41E4; // type:object size:0x1 data:byte +lbl_808E41E5 = .sbss:0x808E41E5; // type:object size:0x1 data:byte +lbl_808E41E6 = .sbss:0x808E41E6; // type:object size:0x1 data:byte +lbl_808E41E7 = .sbss:0x808E41E7; // type:object size:0x1 data:byte +lbl_808E41E8 = .sbss:0x808E41E8; // type:object size:0x1 data:byte +lbl_808E41E9 = .sbss:0x808E41E9; // type:object size:0x1 data:byte +lbl_808E41EA = .sbss:0x808E41EA; // type:object size:0x1 data:byte +lbl_808E41EB = .sbss:0x808E41EB; // type:object size:0x1 data:byte +lbl_808E41EC = .sbss:0x808E41EC; // type:object size:0x1 data:byte +lbl_808E41ED = .sbss:0x808E41ED; // type:object size:0x1 data:byte +lbl_808E41EE = .sbss:0x808E41EE; // type:object size:0x1 data:byte +lbl_808E41EF = .sbss:0x808E41EF; // type:object size:0x1 data:byte +lbl_808E41F0 = .sbss:0x808E41F0; // type:object size:0x1 data:byte +lbl_808E41F1 = .sbss:0x808E41F1; // type:object size:0x1 data:byte +lbl_808E41F2 = .sbss:0x808E41F2; // type:object size:0x1 data:byte +lbl_808E41F3 = .sbss:0x808E41F3; // type:object size:0x1 data:byte +lbl_808E41F4 = .sbss:0x808E41F4; // type:object size:0x1 data:byte +lbl_808E41F5 = .sbss:0x808E41F5; // type:object size:0x1 data:byte +lbl_808E41F6 = .sbss:0x808E41F6; // type:object size:0x1 data:byte +lbl_808E41F7 = .sbss:0x808E41F7; // type:object size:0x1 data:byte +lbl_808E41F8 = .sbss:0x808E41F8; // type:object size:0x1 data:byte +lbl_808E41F9 = .sbss:0x808E41F9; // type:object size:0x1 data:byte +lbl_808E41FA = .sbss:0x808E41FA; // type:object size:0x1 data:byte +lbl_808E41FB = .sbss:0x808E41FB; // type:object size:0x1 data:byte +lbl_808E41FC = .sbss:0x808E41FC; // type:object size:0x1 data:byte +lbl_808E41FD = .sbss:0x808E41FD; // type:object size:0x1 data:byte +lbl_808E41FE = .sbss:0x808E41FE; // type:object size:0x1 data:byte +lbl_808E41FF = .sbss:0x808E41FF; // type:object size:0x1 data:byte +lbl_808E4200 = .sbss:0x808E4200; // type:object size:0x1 data:byte +lbl_808E4201 = .sbss:0x808E4201; // type:object size:0x1 data:byte +lbl_808E4202 = .sbss:0x808E4202; // type:object size:0x1 data:byte +lbl_808E4203 = .sbss:0x808E4203; // type:object size:0x1 data:byte +lbl_808E4204 = .sbss:0x808E4204; // type:object size:0x1 data:byte +lbl_808E4205 = .sbss:0x808E4205; // type:object size:0x1 data:byte +lbl_808E4206 = .sbss:0x808E4206; // type:object size:0x1 data:byte +lbl_808E4207 = .sbss:0x808E4207; // type:object size:0x1 data:byte +lbl_808E4208 = .sbss:0x808E4208; // type:object size:0x1 data:byte +lbl_808E4209 = .sbss:0x808E4209; // type:object size:0x1 data:byte +lbl_808E420A = .sbss:0x808E420A; // type:object size:0x1 data:byte +lbl_808E420B = .sbss:0x808E420B; // type:object size:0x5 data:byte +lbl_808E4210 = .sbss:0x808E4210; // type:object size:0x1 data:byte +lbl_808E4211 = .sbss:0x808E4211; // type:object size:0x1 data:byte +lbl_808E4212 = .sbss:0x808E4212; // type:object size:0x1 data:byte +lbl_808E4213 = .sbss:0x808E4213; // type:object size:0x1 data:byte +lbl_808E4214 = .sbss:0x808E4214; // type:object size:0x1 data:byte +lbl_808E4218 = .sbss:0x808E4218; // type:object size:0x1 data:byte +lbl_808E4219 = .sbss:0x808E4219; // type:object size:0x7 data:byte +lbl_808E4220 = .sbss:0x808E4220; // type:object size:0x1 data:byte +lbl_808E4221 = .sbss:0x808E4221; // type:object size:0x1 data:byte +lbl_808E4222 = .sbss:0x808E4222; // type:object size:0x1 data:byte +lbl_808E4223 = .sbss:0x808E4223; // type:object size:0x1 data:byte +lbl_808E4224 = .sbss:0x808E4224; // type:object size:0x1 data:byte +lbl_808E4225 = .sbss:0x808E4225; // type:object size:0x1 data:byte +lbl_808E4226 = .sbss:0x808E4226; // type:object size:0x1 data:byte +lbl_808E4227 = .sbss:0x808E4227; // type:object size:0x1 data:byte +lbl_808E4228 = .sbss:0x808E4228; // type:object size:0x1 data:byte +lbl_808E4229 = .sbss:0x808E4229; // type:object size:0x7 data:byte +lbl_808E4230 = .sbss:0x808E4230; // type:object size:0x8 data:byte +lbl_808E4238 = .sbss:0x808E4238; // type:object size:0x8 data:byte +lbl_808E4240 = .sbss:0x808E4240; // type:object size:0x1 data:byte +lbl_808E4241 = .sbss:0x808E4241; // type:object size:0x1 data:byte +lbl_808E4242 = .sbss:0x808E4242; // type:object size:0x1 data:byte +lbl_808E4243 = .sbss:0x808E4243; // type:object size:0x1 data:byte +lbl_808E4244 = .sbss:0x808E4244; // type:object size:0x1 data:byte +lbl_808E4248 = .sbss:0x808E4248; // type:object size:0x1 data:byte +lbl_808E4249 = .sbss:0x808E4249; // type:object size:0x1 data:byte +lbl_808E424A = .sbss:0x808E424A; // type:object size:0x1 data:byte +lbl_808E424B = .sbss:0x808E424B; // type:object size:0x1 data:byte +lbl_808E424C = .sbss:0x808E424C; // type:object size:0x1 data:byte +lbl_808E424D = .sbss:0x808E424D; // type:object size:0x1 data:byte +lbl_808E424E = .sbss:0x808E424E; // type:object size:0x1 data:byte +lbl_808E424F = .sbss:0x808E424F; // type:object size:0x1 data:byte +lbl_808E4250 = .sbss:0x808E4250; // type:object size:0x1 data:byte +lbl_808E4251 = .sbss:0x808E4251; // type:object size:0x1 data:byte +lbl_808E4252 = .sbss:0x808E4252; // type:object size:0x6 data:byte +lbl_808E4258 = .sbss:0x808E4258; // type:object size:0x1 data:byte +lbl_808E4259 = .sbss:0x808E4259; // type:object size:0x1 data:byte +lbl_808E425A = .sbss:0x808E425A; // type:object size:0x1 data:byte +lbl_808E425B = .sbss:0x808E425B; // type:object size:0x1 data:byte +lbl_808E425C = .sbss:0x808E425C; // type:object size:0x1 data:byte +lbl_808E425D = .sbss:0x808E425D; // type:object size:0x1 data:byte +lbl_808E425E = .sbss:0x808E425E; // type:object size:0x1 data:byte +lbl_808E425F = .sbss:0x808E425F; // type:object size:0x1 data:byte +lbl_808E4260 = .sbss:0x808E4260; // type:object size:0x1 data:byte +lbl_808E4261 = .sbss:0x808E4261; // type:object size:0x1 data:byte +lbl_808E4262 = .sbss:0x808E4262; // type:object size:0x1 data:byte +lbl_808E4263 = .sbss:0x808E4263; // type:object size:0x1 data:byte +lbl_808E4264 = .sbss:0x808E4264; // type:object size:0x1 data:byte +lbl_808E4265 = .sbss:0x808E4265; // type:object size:0x1 data:byte +lbl_808E4266 = .sbss:0x808E4266; // type:object size:0x1 data:byte +lbl_808E4267 = .sbss:0x808E4267; // type:object size:0x1 data:byte +lbl_808E4268 = .sbss:0x808E4268; // type:object size:0x1 data:byte +lbl_808E4269 = .sbss:0x808E4269; // type:object size:0x1 data:byte +lbl_808E426A = .sbss:0x808E426A; // type:object size:0x1 data:byte +lbl_808E426B = .sbss:0x808E426B; // type:object size:0x1 data:byte +lbl_808E426C = .sbss:0x808E426C; // type:object size:0x1 data:byte +lbl_808E426D = .sbss:0x808E426D; // type:object size:0x1 data:byte +lbl_808E426E = .sbss:0x808E426E; // type:object size:0x1 data:byte +lbl_808E426F = .sbss:0x808E426F; // type:object size:0x1 data:byte +lbl_808E4270 = .sbss:0x808E4270; // type:object size:0x1 data:byte +lbl_808E4271 = .sbss:0x808E4271; // type:object size:0x1 data:byte +lbl_808E4272 = .sbss:0x808E4272; // type:object size:0x1 data:byte +lbl_808E4273 = .sbss:0x808E4273; // type:object size:0x1 data:byte +lbl_808E4274 = .sbss:0x808E4274; // type:object size:0x1 data:byte +lbl_808E4275 = .sbss:0x808E4275; // type:object size:0x1 data:byte +lbl_808E4278 = .sbss:0x808E4278; // type:object size:0x8 data:byte +lbl_808E4280 = .sbss:0x808E4280; // type:object size:0x1 data:byte +lbl_808E4281 = .sbss:0x808E4281; // type:object size:0x1 data:byte +lbl_808E4282 = .sbss:0x808E4282; // type:object size:0x1 data:byte +lbl_808E4283 = .sbss:0x808E4283; // type:object size:0x1 data:byte +lbl_808E4284 = .sbss:0x808E4284; // type:object size:0x1 data:byte +lbl_808E4288 = .sbss:0x808E4288; // type:object size:0x1 data:byte +lbl_808E4289 = .sbss:0x808E4289; // type:object size:0x1 data:byte +lbl_808E428A = .sbss:0x808E428A; // type:object size:0x1 data:byte +lbl_808E428B = .sbss:0x808E428B; // type:object size:0x5 data:byte +lbl_808E4290 = .sbss:0x808E4290; // type:object size:0x1 data:byte +lbl_808E4291 = .sbss:0x808E4291; // type:object size:0x1 data:byte +lbl_808E4292 = .sbss:0x808E4292; // type:object size:0x2 data:2byte +lbl_808E4294 = .sbss:0x808E4294; // type:object size:0x2 data:2byte +lbl_808E4296 = .sbss:0x808E4296; // type:object size:0x1 data:byte +lbl_808E4297 = .sbss:0x808E4297; // type:object size:0x1 data:byte +lbl_808E4298 = .sbss:0x808E4298; // type:object size:0x1 data:byte +lbl_808E4299 = .sbss:0x808E4299; // type:object size:0x7 data:byte +lbl_808E42A0 = .sbss:0x808E42A0; // type:object size:0x8 data:byte +lbl_808E42A8 = .sbss:0x808E42A8; // type:object size:0x8 data:byte +lbl_808E42B0 = .sbss:0x808E42B0; // type:object size:0x1 data:byte +lbl_808E42B1 = .sbss:0x808E42B1; // type:object size:0x1 data:byte +lbl_808E42B2 = .sbss:0x808E42B2; // type:object size:0x1 data:byte +lbl_808E42B3 = .sbss:0x808E42B3; // type:object size:0x1 data:byte +lbl_808E42B4 = .sbss:0x808E42B4; // type:object size:0x1 data:byte +lbl_808E42B5 = .sbss:0x808E42B5; // type:object size:0x1 data:byte +lbl_808E42B8 = .sbss:0x808E42B8; // type:object size:0x1 data:byte +lbl_808E42B9 = .sbss:0x808E42B9; // type:object size:0x1 data:byte +lbl_808E42BA = .sbss:0x808E42BA; // type:object size:0x6 data:byte +lbl_808E42C0 = .sbss:0x808E42C0; // type:object size:0x1 data:byte +lbl_808E42C1 = .sbss:0x808E42C1; // type:object size:0x7 data:byte +lbl_808E42C8 = .sbss:0x808E42C8; // type:object size:0x1 data:byte +lbl_808E42C9 = .sbss:0x808E42C9; // type:object size:0x7 data:byte +lbl_808E42D0 = .sbss:0x808E42D0; // type:object size:0x1 data:byte +lbl_808E42D1 = .sbss:0x808E42D1; // type:object size:0x7 data:byte +lbl_808E42D8 = .sbss:0x808E42D8; // type:object size:0x1 data:byte +lbl_808E42D9 = .sbss:0x808E42D9; // type:object size:0x1 data:byte +lbl_808E42DA = .sbss:0x808E42DA; // type:object size:0x1 data:byte +lbl_808E42DB = .sbss:0x808E42DB; // type:object size:0x1 data:byte +lbl_808E42DC = .sbss:0x808E42DC; // type:object size:0x1 data:byte +lbl_808E42E0 = .sbss:0x808E42E0; // type:object size:0x1 data:byte +lbl_808E42E1 = .sbss:0x808E42E1; // type:object size:0x7 data:byte +lbl_808E42E8 = .sbss:0x808E42E8; // type:object size:0x8 data:byte +lbl_808E42F0 = .sbss:0x808E42F0; // type:object size:0x1 data:byte +lbl_808E42F1 = .sbss:0x808E42F1; // type:object size:0x1 data:byte +lbl_808E42F2 = .sbss:0x808E42F2; // type:object size:0x1 data:byte +lbl_808E42F3 = .sbss:0x808E42F3; // type:object size:0x5 data:byte +lbl_808E42F8 = .sbss:0x808E42F8; // type:object size:0x1 data:byte +lbl_808E42F9 = .sbss:0x808E42F9; // type:object size:0x1 data:byte +lbl_808E42FA = .sbss:0x808E42FA; // type:object size:0x1 data:byte +lbl_808E42FB = .sbss:0x808E42FB; // type:object size:0x1 data:byte +lbl_808E42FC = .sbss:0x808E42FC; // type:object size:0x1 data:byte +lbl_808E42FD = .sbss:0x808E42FD; // type:object size:0x1 data:byte +lbl_808E42FE = .sbss:0x808E42FE; // type:object size:0x1 data:byte +lbl_808E4300 = .sbss:0x808E4300; // type:object size:0x8 data:byte +lbl_808E4308 = .sbss:0x808E4308; // type:object size:0x1 data:byte +lbl_808E4309 = .sbss:0x808E4309; // type:object size:0x7 data:byte +lbl_808E4310 = .sbss:0x808E4310; // type:object size:0x1 data:byte +lbl_808E4311 = .sbss:0x808E4311; // type:object size:0x7 data:byte +lbl_808E4318 = .sbss:0x808E4318; // type:object size:0x8 data:byte +lbl_808E4320 = .sbss:0x808E4320; // type:object size:0x8 +lbl_808E4328 = .sbss:0x808E4328; // type:object size:0x1 data:byte +lbl_808E4329 = .sbss:0x808E4329; // type:object size:0x1 data:byte +lbl_808E432A = .sbss:0x808E432A; // type:object size:0x6 data:byte +lbl_808E4330 = .sbss:0x808E4330; // type:object size:0x1 data:byte +lbl_808E4331 = .sbss:0x808E4331; // type:object size:0x1 data:byte +lbl_808E4332 = .sbss:0x808E4332; // type:object size:0x6 data:byte +lbl_808E4338 = .sbss:0x808E4338; // type:object size:0x8 data:byte +lbl_808E4340 = .sbss:0x808E4340; // type:object size:0x8 data:byte +lbl_808E4348 = .sbss:0x808E4348; // type:object size:0x8 data:byte +lbl_808E4350 = .sbss:0x808E4350; // type:object size:0x8 data:byte +lbl_808E4358 = .sbss:0x808E4358; // type:object size:0x1 data:byte +lbl_808E4359 = .sbss:0x808E4359; // type:object size:0x1 data:byte +lbl_808E435A = .sbss:0x808E435A; // type:object size:0x1 data:byte +lbl_808E435B = .sbss:0x808E435B; // type:object size:0x1 data:byte +lbl_808E435C = .sbss:0x808E435C; // type:object size:0x1 data:byte +lbl_808E435D = .sbss:0x808E435D; // type:object size:0x1 data:byte +lbl_808E435E = .sbss:0x808E435E; // type:object size:0x1 data:byte +lbl_808E435F = .sbss:0x808E435F; // type:object size:0x1 data:byte +lbl_808E4360 = .sbss:0x808E4360; // type:object size:0x1 data:byte +lbl_808E4361 = .sbss:0x808E4361; // type:object size:0x1 data:byte +lbl_808E4362 = .sbss:0x808E4362; // type:object size:0x6 data:byte +lbl_808E4368 = .sbss:0x808E4368; // type:object size:0x8 data:byte +lbl_808E4370 = .sbss:0x808E4370; // type:object size:0x1 data:byte +lbl_808E4371 = .sbss:0x808E4371; // type:object size:0x1 data:byte +lbl_808E4372 = .sbss:0x808E4372; // type:object size:0x1 data:byte +lbl_808E4373 = .sbss:0x808E4373; // type:object size:0x1 data:byte +lbl_808E4374 = .sbss:0x808E4374; // type:object size:0x1 data:byte +lbl_808E4375 = .sbss:0x808E4375; // type:object size:0x1 data:byte +lbl_808E4378 = .sbss:0x808E4378; // type:object size:0x1 data:byte +lbl_808E4379 = .sbss:0x808E4379; // type:object size:0x1 data:byte +lbl_808E437A = .sbss:0x808E437A; // type:object size:0x1 data:byte +lbl_808E437B = .sbss:0x808E437B; // type:object size:0x1 data:byte +lbl_808E437C = .sbss:0x808E437C; // type:object size:0x1 data:byte +lbl_808E437D = .sbss:0x808E437D; // type:object size:0x1 data:byte +lbl_808E437E = .sbss:0x808E437E; // type:object size:0x1 data:byte +lbl_808E437F = .sbss:0x808E437F; // type:object size:0x1 data:byte +lbl_808E4380 = .sbss:0x808E4380; // type:object size:0x1 data:byte +lbl_808E4381 = .sbss:0x808E4381; // type:object size:0x1 data:byte +lbl_808E4382 = .sbss:0x808E4382; // type:object size:0x1 data:byte +lbl_808E4383 = .sbss:0x808E4383; // type:object size:0x1 data:byte +lbl_808E4384 = .sbss:0x808E4384; // type:object size:0x1 data:byte +lbl_808E4385 = .sbss:0x808E4385; // type:object size:0x1 data:byte +lbl_808E4386 = .sbss:0x808E4386; // type:object size:0x1 data:byte +lbl_808E4387 = .sbss:0x808E4387; // type:object size:0x1 data:byte +lbl_808E4388 = .sbss:0x808E4388; // type:object size:0x1 data:byte +lbl_808E4389 = .sbss:0x808E4389; // type:object size:0x1 data:byte +lbl_808E438A = .sbss:0x808E438A; // type:object size:0x1 data:byte +lbl_808E438B = .sbss:0x808E438B; // type:object size:0x1 data:byte +lbl_808E438C = .sbss:0x808E438C; // type:object size:0x1 data:byte +lbl_808E438D = .sbss:0x808E438D; // type:object size:0x1 data:byte +lbl_808E438E = .sbss:0x808E438E; // type:object size:0x1 data:byte +lbl_808E438F = .sbss:0x808E438F; // type:object size:0x1 data:byte +lbl_808E4390 = .sbss:0x808E4390; // type:object size:0x1 data:byte +lbl_808E4391 = .sbss:0x808E4391; // type:object size:0x1 data:byte +lbl_808E4392 = .sbss:0x808E4392; // type:object size:0x1 data:byte +lbl_808E4393 = .sbss:0x808E4393; // type:object size:0x1 data:byte +lbl_808E4394 = .sbss:0x808E4394; // type:object size:0x1 data:byte +lbl_808E4395 = .sbss:0x808E4395; // type:object size:0x1 data:byte +lbl_808E4396 = .sbss:0x808E4396; // type:object size:0x1 data:byte +lbl_808E4397 = .sbss:0x808E4397; // type:object size:0x1 data:byte +lbl_808E4398 = .sbss:0x808E4398; // type:object size:0x1 data:byte +lbl_808E4399 = .sbss:0x808E4399; // type:object size:0x1 data:byte +lbl_808E439A = .sbss:0x808E439A; // type:object size:0x1 data:byte +lbl_808E439B = .sbss:0x808E439B; // type:object size:0x1 data:byte +lbl_808E439C = .sbss:0x808E439C; // type:object size:0x1 data:byte +lbl_808E43A0 = .sbss:0x808E43A0; // type:object size:0x1 data:byte +lbl_808E43A1 = .sbss:0x808E43A1; // type:object size:0x7 data:byte +lbl_808E43A8 = .sbss:0x808E43A8; // type:object size:0x8 data:byte +lbl_808E43B0 = .sbss:0x808E43B0; // type:object size:0x1 data:byte +lbl_808E43B1 = .sbss:0x808E43B1; // type:object size:0x1 data:byte +lbl_808E43B2 = .sbss:0x808E43B2; // type:object size:0x6 data:byte +lbl_808E43B8 = .sbss:0x808E43B8; // type:object size:0x1 data:byte +lbl_808E43B9 = .sbss:0x808E43B9; // type:object size:0x7 data:byte +lbl_808E43C0 = .sbss:0x808E43C0; // type:object size:0x8 data:byte +lbl_808E43C8 = .sbss:0x808E43C8; // type:object size:0x8 data:byte +lbl_808E43D0 = .sbss:0x808E43D0; // type:object size:0x1 data:byte +lbl_808E43D1 = .sbss:0x808E43D1; // type:object size:0x7 data:byte +lbl_808E43D8 = .sbss:0x808E43D8; // type:object size:0x8 data:byte +gJoypadLibInitialized__20@unnamed@joypad_cpp@ = .sbss:0x808E43E0; // type:object size:0x1 data:byte +lbl_808E43E1 = .sbss:0x808E43E1; // type:object size:0x1 data:byte +lbl_808E43E2 = .sbss:0x808E43E2; // type:object size:0x1 data:byte +lbl_808E43E3 = .sbss:0x808E43E3; // type:object size:0x1 data:byte +lbl_808E43E4 = .sbss:0x808E43E4; // type:object size:0x1 data:byte +lbl_808E43E5 = .sbss:0x808E43E5; // type:object size:0x1 data:byte +lbl_808E43E6 = .sbss:0x808E43E6; // type:object size:0x1 data:byte +lbl_808E43E7 = .sbss:0x808E43E7; // type:object size:0x1 data:byte +lbl_808E43E8 = .sbss:0x808E43E8; // type:object size:0x1 data:byte +lbl_808E43E9 = .sbss:0x808E43E9; // type:object size:0x1 data:byte +lbl_808E43EA = .sbss:0x808E43EA; // type:object size:0x1 data:byte +lbl_808E43EB = .sbss:0x808E43EB; // type:object size:0x1 data:byte +lbl_808E43EC = .sbss:0x808E43EC; // type:object size:0x1 data:byte +lbl_808E43ED = .sbss:0x808E43ED; // type:object size:0x1 data:byte +lbl_808E43EE = .sbss:0x808E43EE; // type:object size:0x1 data:byte +lbl_808E43EF = .sbss:0x808E43EF; // type:object size:0x1 data:byte +lbl_808E43F0 = .sbss:0x808E43F0; // type:object size:0x1 data:byte +lbl_808E43F1 = .sbss:0x808E43F1; // type:object size:0x7 data:byte +lbl_808E43F8 = .sbss:0x808E43F8; // type:object size:0x1 data:byte +lbl_808E43F9 = .sbss:0x808E43F9; // type:object size:0x7 data:byte +lbl_808E4400 = .sbss:0x808E4400; // type:object size:0x8 data:byte +lbl_808E4408 = .sbss:0x808E4408; // type:object size:0x8 data:byte +@GUARD@PlatformRegionToSymbol__F14PlatformRegion@sym = .sbss:0x808E4410; // type:object size:0x1 data:byte +lbl_808E4411 = .sbss:0x808E4411; // type:object size:0x7 data:byte +lbl_808E4418 = .sbss:0x808E4418; // type:object size:0x1 data:byte +lbl_808E4419 = .sbss:0x808E4419; // type:object size:0x1 data:byte +lbl_808E441A = .sbss:0x808E441A; // type:object size:0x1 data:byte +@GUARD@Type__24WiiControllerOverflowMsgFv@t = .sbss:0x808E441B; // type:object size:0x1 data:byte +lbl_808E441C = .sbss:0x808E441C; // type:object size:0x1 data:byte +lbl_808E441D = .sbss:0x808E441D; // type:object size:0x1 data:byte +lbl_808E441E = .sbss:0x808E441E; // type:object size:0x1 data:byte +lbl_808E441F = .sbss:0x808E441F; // type:object size:0x1 data:byte +lbl_808E4420 = .sbss:0x808E4420; // type:object size:0x8 data:byte +lbl_808E4428 = .sbss:0x808E4428; // type:object size:0x1 data:byte +gPreconfigOverride__20@unnamed@system_cpp@ = .sbss:0x808E4429; // type:object size:0x1 data:byte +gHostConfig = .sbss:0x808E442A; // type:object size:0x1 data:byte +lbl_808E442B = .sbss:0x808E442B; // type:object size:0x1 data:byte +lbl_808E442C = .sbss:0x808E442C; // type:object size:0x1 data:byte +@GUARD@PlatformSymbol__F8Platform@sym = .sbss:0x808E442D; // type:object size:0x1 data:byte +lbl_808E442E = .sbss:0x808E442E; // type:object size:0x1 data:byte +lbl_808E442F = .sbss:0x808E442F; // type:object size:0x1 data:byte +lbl_808E4430 = .sbss:0x808E4430; // type:object size:0x1 data:byte +lbl_808E4431 = .sbss:0x808E4431; // type:object size:0x7 data:byte +lbl_808E4438 = .sbss:0x808E4438; // type:object size:0x1 data:byte +lbl_808E4439 = .sbss:0x808E4439; // type:object size:0x7 data:byte +lbl_808E4440 = .sbss:0x808E4440; // type:object size:0x1 data:byte +lbl_808E4441 = .sbss:0x808E4441; // type:object size:0x1 data:byte +lbl_808E4442 = .sbss:0x808E4442; // type:object size:0x6 data:byte +lbl_808E4448 = .sbss:0x808E4448; // type:object size:0x1 data:byte +lbl_808E4449 = .sbss:0x808E4449; // type:object size:0x7 data:byte +@GUARD@Type__17StringStrummedMsgFv@t = .sbss:0x808E4450; // type:object size:0x1 data:byte +@GUARD@Type__16StringStoppedMsgFv@t = .sbss:0x808E4451; // type:object size:0x1 data:byte +@GUARD@Type__18RGAccelerometerMsgFv@t = .sbss:0x808E4452; // type:object size:0x1 data:byte +@GUARD@Type__25RGConnectedAccessoriesMsgFv@t = .sbss:0x808E4453; // type:object size:0x1 data:byte +@GUARD@Type__14RGPitchBendMsgFv@t = .sbss:0x808E4454; // type:object size:0x1 data:byte +@GUARD@Type__11RGMutingMsgFv@t = .sbss:0x808E4455; // type:object size:0x1 data:byte +@GUARD@Type__13RGStompBoxMsgFv@t = .sbss:0x808E4456; // type:object size:0x1 data:byte +@GUARD@Type__18RGProgramChangeMsgFv@t = .sbss:0x808E4457; // type:object size:0x1 data:byte +@GUARD@Type__10RGSwingMsgFv@t = .sbss:0x808E4458; // type:object size:0x1 data:byte +@GUARD@Type__19RGFretButtonDownMsgFv@t = .sbss:0x808E4459; // type:object size:0x1 data:byte +@GUARD@Type__17RGFretButtonUpMsgFv@t = .sbss:0x808E445A; // type:object size:0x1 data:byte +lbl_808E445B = .sbss:0x808E445B; // type:object size:0x5 data:byte +lbl_808E4460 = .sbss:0x808E4460; // type:object size:0x1 data:byte +lbl_808E4461 = .sbss:0x808E4461; // type:object size:0x1 data:byte +lbl_808E4462 = .sbss:0x808E4462; // type:object size:0x1 data:byte +lbl_808E4463 = .sbss:0x808E4463; // type:object size:0x5 data:byte +lbl_808E4468 = .sbss:0x808E4468; // type:object size:0x8 data:byte +lbl_808E4470 = .sbss:0x808E4470; // type:object size:0x1 data:byte +lbl_808E4471 = .sbss:0x808E4471; // type:object size:0x1 data:byte +gReadingFile = .sbss:0x808E4472; // type:object size:0x6 data:byte +lbl_808E4478 = .sbss:0x808E4478; // type:object size:0x1 data:byte +lbl_808E447A = .sbss:0x808E447A; // type:object size:0x1 data:byte +lbl_808E447B = .sbss:0x808E447B; // type:object size:0x5 data:byte +@GUARD@SetType__8TextFileF6Symbol@types = .sbss:0x808E4480; // type:object size:0x1 data:byte +@GUARD@StaticClassName__8TextFileFv@name = .sbss:0x808E4481; // type:object size:0x1 data:byte +lbl_808E4482 = .sbss:0x808E4482; // type:object size:0x6 data:byte +yy_hold_char = .sbss:0x808E4488; // type:object size:0x8 data:byte +lbl_808E4490 = .sbss:0x808E4490; // type:object size:0x2 data:2byte +lbl_808E4492 = .sbss:0x808E4492; // type:object size:0x2 data:2byte +lbl_808E4494 = .sbss:0x808E4494; // type:object size:0x1 data:byte +lbl_808E4495 = .sbss:0x808E4495; // type:object size:0x1 data:byte +lbl_808E4496 = .sbss:0x808E4496; // type:object size:0x1 data:byte +lbl_808E4497 = .sbss:0x808E4497; // type:object size:0x1 data:byte +lbl_808E4498 = .sbss:0x808E4498; // type:object size:0x1 data:byte +lbl_808E4499 = .sbss:0x808E4499; // type:object size:0x1 data:byte +sPrintTimes__9DirLoader = .sbss:0x808E449A; // type:object size:0x1 data:byte +sCacheMode__9DirLoader = .sbss:0x808E449B; // type:object size:0x5 data:byte +lbl_808E44A0 = .sbss:0x808E44A0; // type:object size:0x1 data:byte +@GUARD@Property__Q23Hmx6ObjectFP9DataArrayb@n = .sbss:0x808E44A1; // type:object size:0x1 data:byte +@GUARD@Property__Q23Hmx6ObjectF6Symbolb@d = .sbss:0x808E44A2; // type:object size:0x1 data:byte +lbl_808E44A3 = .sbss:0x808E44A3; // type:object size:0x1 data:byte +lbl_808E44A4 = .sbss:0x808E44A4; // type:object size:0x1 data:byte +@GUARD@HandleProperty__Q23Hmx6ObjectFP9DataArrayP9DataArrayb@n = .sbss:0x808E44A5; // type:object size:0x1 data:byte +@GUARD@SetProperty__Q23Hmx6ObjectF6SymbolRC8DataNode@d = .sbss:0x808E44A6; // type:object size:0x1 data:byte +@GUARD@PropertySize__Q23Hmx6ObjectFP9DataArray@n = .sbss:0x808E44A7; // type:object size:0x1 data:byte +@GUARD@RemoveProperty__Q23Hmx6ObjectFP9DataArray@n = .sbss:0x808E44A8; // type:object size:0x1 data:byte +lbl_808E44AA = .sbss:0x808E44AA; // type:object size:0x2 data:2byte +lbl_808E44AC = .sbss:0x808E44AC; // type:object size:0x2 data:2byte +lbl_808E44AE = .sbss:0x808E44AE; // type:object size:0x1 data:byte +lbl_808E44AF = .sbss:0x808E44AF; // type:object size:0x1 data:byte +lbl_808E44B0 = .sbss:0x808E44B0; // type:object size:0x1 data:byte +lbl_808E44B1 = .sbss:0x808E44B1; // type:object size:0x1 data:byte +lbl_808E44B2 = .sbss:0x808E44B2; // type:object size:0x1 data:byte +lbl_808E44B3 = .sbss:0x808E44B3; // type:object size:0x1 data:byte +lbl_808E44B4 = .sbss:0x808E44B4; // type:object size:0x1 data:byte +lbl_808E44B5 = .sbss:0x808E44B5; // type:object size:0x1 data:byte +lbl_808E44B6 = .sbss:0x808E44B6; // type:object size:0x1 data:byte +lbl_808E44B7 = .sbss:0x808E44B7; // type:object size:0x1 data:byte +lbl_808E44B8 = .sbss:0x808E44B8; // type:object size:0x1 data:byte +lbl_808E44B9 = .sbss:0x808E44B9; // type:object size:0x1 data:byte +lbl_808E44BA = .sbss:0x808E44BA; // type:object size:0x1 data:byte +lbl_808E44BB = .sbss:0x808E44BB; // type:object size:0x1 data:byte +lbl_808E44BC = .sbss:0x808E44BC; // type:object size:0x1 data:byte +lbl_808E44BD = .sbss:0x808E44BD; // type:object size:0x1 data:byte +lbl_808E44BE = .sbss:0x808E44BE; // type:object size:0x1 data:byte +lbl_808E44BF = .sbss:0x808E44BF; // type:object size:0x1 data:byte +lbl_808E44C0 = .sbss:0x808E44C0; // type:object size:0x1 data:byte +lbl_808E44C1 = .sbss:0x808E44C1; // type:object size:0x1 data:byte +lbl_808E44C2 = .sbss:0x808E44C2; // type:object size:0x6 data:byte +lbl_808E44C8 = .sbss:0x808E44C8; // type:object size:0x1 data:byte +lbl_808E44C9 = .sbss:0x808E44C9; // type:object size:0x1 data:byte +lbl_808E44CA = .sbss:0x808E44CA; // type:object size:0x1 data:byte +lbl_808E44CB = .sbss:0x808E44CB; // type:object size:0x1 data:byte +lbl_808E44CC = .sbss:0x808E44CC; // type:object size:0x1 data:byte +lbl_808E44CD = .sbss:0x808E44CD; // type:object size:0x1 data:byte +lbl_808E44D0 = .sbss:0x808E44D0; // type:object size:0x1 data:byte +lbl_808E44D1 = .sbss:0x808E44D1; // type:object size:0x1 data:byte +lbl_808E44D2 = .sbss:0x808E44D2; // type:object size:0x6 data:byte +@GUARD@Handle__8TextFileFP9DataArrayb@SymPrintf = .sbss:0x808E44D8; // type:object size:0x8 data:byte +@GUARD@InitObject__FPQ23Hmx6Object@objects = .sbss:0x808E44E0; // type:object size:0x1 data:byte +@GUARD@InitObject__FPQ23Hmx6Object@initSym@0 = .sbss:0x808E44E1; // type:object size:0x7 data:byte +lbl_808E44E8 = .sbss:0x808E44E8; // type:object size:0x1 data:byte +lbl_808E44E9 = .sbss:0x808E44E9; // type:object size:0x1 data:byte +lbl_808E44EA = .sbss:0x808E44EA; // type:object size:0x6 data:byte +lbl_808E44F0 = .sbss:0x808E44F0; // type:object size:0x1 data:byte +lbl_808E44F1 = .sbss:0x808E44F1; // type:object size:0x7 data:byte +lbl_808E44F8 = .sbss:0x808E44F8; // type:object size:0x1 data:byte +gDisable = .sbss:0x808E44F9; // type:object size:0x7 data:byte +lbl_808E4500 = .sbss:0x808E4500; // type:object size:0x8 data:byte +lbl_808E4508 = .sbss:0x808E4508; // type:object size:0x8 data:byte +lbl_808E4510 = .sbss:0x808E4510; // type:object size:0x8 data:byte +lbl_808E4518 = .sbss:0x808E4518; // type:object size:0x1 data:byte +lbl_808E4519 = .sbss:0x808E4519; // type:object size:0x1 data:byte +lbl_808E451A = .sbss:0x808E451A; // type:object size:0x1 data:byte +lbl_808E451B = .sbss:0x808E451B; // type:object size:0x5 data:byte +lbl_808E4520 = .sbss:0x808E4520; // type:object size:0x8 data:byte +msglock1 = .sbss:0x808E4528; // type:object size:0x4 +msgunlock1 = .sbss:0x808E452C; // type:object size:0x4 +msglock2 = .sbss:0x808E4530; // type:object size:0x4 +msgunlock2 = .sbss:0x808E4534; // type:object size:0x4 +msglock3 = .sbss:0x808E4538; // type:object size:0x4 +msgunlock3 = .sbss:0x808E453C; // type:object size:0x4 +msglock4 = .sbss:0x808E4540; // type:object size:0x4 +msgunlock4 = .sbss:0x808E4544; // type:object size:0x4 +lbl_808E4548 = .sbss:0x808E4548; // type:object size:0x8 data:byte +lbl_808E4550 = .sbss:0x808E4550; // type:object size:0x8 data:byte +lbl_808E4558 = .sbss:0x808E4558; // type:object size:0x1 data:byte +lbl_808E4559 = .sbss:0x808E4559; // type:object size:0x1 data:byte +lbl_808E455A = .sbss:0x808E455A; // type:object size:0x1 data:byte +lbl_808E455B = .sbss:0x808E455B; // type:object size:0x1 data:byte +lbl_808E455C = .sbss:0x808E455C; // type:object size:0x1 data:byte +lbl_808E4560 = .sbss:0x808E4560; // type:object size:0x8 +lock1 = .sbss:0x808E4568; // type:object size:0x4 +unlock1 = .sbss:0x808E456C; // type:object size:0x4 +lock2 = .sbss:0x808E4570; // type:object size:0x4 +unlock2 = .sbss:0x808E4574; // type:object size:0x4 +lock3 = .sbss:0x808E4578; // type:object size:0x4 +unlock3 = .sbss:0x808E457C; // type:object size:0x4 +lock4 = .sbss:0x808E4580; // type:object size:0x4 +unlock4 = .sbss:0x808E4584; // type:object size:0x4 +lbl_808E4588 = .sbss:0x808E4588; // type:object size:0x8 data:byte +lbl_808E4590 = .sbss:0x808E4590; // type:object size:0x1 data:byte +lbl_808E4591 = .sbss:0x808E4591; // type:object size:0x1 data:byte +lbl_808E4592 = .sbss:0x808E4592; // type:object size:0x1 data:byte +lbl_808E4593 = .sbss:0x808E4593; // type:object size:0x1 data:byte +lbl_808E4594 = .sbss:0x808E4594; // type:object size:0x1 data:byte +lbl_808E4595 = .sbss:0x808E4595; // type:object size:0x1 data:byte +lbl_808E4596 = .sbss:0x808E4596; // type:object size:0x1 data:byte +lbl_808E4597 = .sbss:0x808E4597; // type:object size:0x1 data:byte +lbl_808E4598 = .sbss:0x808E4598; // type:object size:0x1 data:byte +lbl_808E4599 = .sbss:0x808E4599; // type:object size:0x1 data:byte +lbl_808E459A = .sbss:0x808E459A; // type:object size:0x1 data:byte +lbl_808E459B = .sbss:0x808E459B; // type:object size:0x1 data:byte +lbl_808E459C = .sbss:0x808E459C; // type:object size:0x1 data:byte +lbl_808E459D = .sbss:0x808E459D; // type:object size:0x1 data:byte +lbl_808E459E = .sbss:0x808E459E; // type:object size:0x1 data:byte +lbl_808E459F = .sbss:0x808E459F; // type:object size:0x1 data:byte +lbl_808E45A0 = .sbss:0x808E45A0; // type:object size:0x1 data:byte +lbl_808E45A1 = .sbss:0x808E45A1; // type:object size:0x1 data:byte +lbl_808E45A2 = .sbss:0x808E45A2; // type:object size:0x1 data:byte +lbl_808E45A3 = .sbss:0x808E45A3; // type:object size:0x1 data:byte +lbl_808E45A4 = .sbss:0x808E45A4; // type:object size:0x1 data:byte +lbl_808E45A5 = .sbss:0x808E45A5; // type:object size:0x1 data:byte +lbl_808E45A6 = .sbss:0x808E45A6; // type:object size:0x1 data:byte +lbl_808E45A7 = .sbss:0x808E45A7; // type:object size:0x1 data:byte +lbl_808E45A8 = .sbss:0x808E45A8; // type:object size:0x1 data:byte +lbl_808E45A9 = .sbss:0x808E45A9; // type:object size:0x1 data:byte +lbl_808E45AA = .sbss:0x808E45AA; // type:object size:0x1 data:byte +lbl_808E45AB = .sbss:0x808E45AB; // type:object size:0x1 data:byte +lbl_808E45AC = .sbss:0x808E45AC; // type:object size:0x1 data:byte +lbl_808E45B0 = .sbss:0x808E45B0; // type:object size:0x1 data:byte +lbl_808E45B1 = .sbss:0x808E45B1; // type:object size:0x1 data:byte +lbl_808E45B2 = .sbss:0x808E45B2; // type:object size:0x1 data:byte +lbl_808E45B3 = .sbss:0x808E45B3; // type:object size:0x1 data:byte +lbl_808E45B4 = .sbss:0x808E45B4; // type:object size:0x2 data:2byte +lbl_808E45B6 = .sbss:0x808E45B6; // type:object size:0x2 data:2byte +lbl_808E45B8 = .sbss:0x808E45B8; // type:object size:0x1 data:byte +lbl_808E45B9 = .sbss:0x808E45B9; // type:object size:0x1 data:byte +lbl_808E45BA = .sbss:0x808E45BA; // type:object size:0x1 data:byte +lbl_808E45BC = .sbss:0x808E45BC; // type:object size:0x2 data:2byte +lbl_808E45BE = .sbss:0x808E45BE; // type:object size:0x2 data:2byte +lbl_808E45C0 = .sbss:0x808E45C0; // type:object size:0x1 data:byte +lbl_808E45C1 = .sbss:0x808E45C1; // type:object size:0x1 data:byte +lbl_808E45C2 = .sbss:0x808E45C2; // type:object size:0x1 data:byte +lbl_808E45C3 = .sbss:0x808E45C3; // type:object size:0x1 data:byte +lbl_808E45C4 = .sbss:0x808E45C4; // type:object size:0x1 data:byte +lbl_808E45C5 = .sbss:0x808E45C5; // type:object size:0x1 data:byte +lbl_808E45C6 = .sbss:0x808E45C6; // type:object size:0x1 data:byte +lbl_808E45C7 = .sbss:0x808E45C7; // type:object size:0x1 data:byte +lbl_808E45C8 = .sbss:0x808E45C8; // type:object size:0x8 data:byte +lbl_808E45D0 = .sbss:0x808E45D0; // type:object size:0x2 data:2byte +lbl_808E45D2 = .sbss:0x808E45D2; // type:object size:0x6 data:2byte +lbl_808E45D8 = .sbss:0x808E45D8; // type:object size:0x1 data:byte +lbl_808E45D9 = .sbss:0x808E45D9; // type:object size:0x1 data:byte +lbl_808E45DA = .sbss:0x808E45DA; // type:object size:0x1 data:byte +lbl_808E45DB = .sbss:0x808E45DB; // type:object size:0x1 data:byte +lbl_808E45DC = .sbss:0x808E45DC; // type:object size:0x1 data:byte +lbl_808E45DD = .sbss:0x808E45DD; // type:object size:0x1 data:byte +lbl_808E45DE = .sbss:0x808E45DE; // type:object size:0x1 data:byte +lbl_808E45E0 = .sbss:0x808E45E0; // type:object size:0x2 data:2byte +lbl_808E45E2 = .sbss:0x808E45E2; // type:object size:0x2 data:2byte +lbl_808E45E4 = .sbss:0x808E45E4; // type:object size:0x1 data:byte +lbl_808E45E5 = .sbss:0x808E45E5; // type:object size:0x1 data:byte +lbl_808E45E6 = .sbss:0x808E45E6; // type:object size:0x1 data:byte +lbl_808E45E7 = .sbss:0x808E45E7; // type:object size:0x1 data:byte +lbl_808E45E8 = .sbss:0x808E45E8; // type:object size:0x2 data:2byte +lbl_808E45EA = .sbss:0x808E45EA; // type:object size:0x6 data:2byte +lbl_808E45F0 = .sbss:0x808E45F0; // type:object size:0x2 data:2byte +lbl_808E45F2 = .sbss:0x808E45F2; // type:object size:0x6 data:2byte +lbl_808E45F8 = .sbss:0x808E45F8; // type:object size:0x1 data:byte +lbl_808E45F9 = .sbss:0x808E45F9; // type:object size:0x1 data:byte +lbl_808E45FA = .sbss:0x808E45FA; // type:object size:0x2 data:2byte +lbl_808E45FC = .sbss:0x808E45FC; // type:object size:0x2 data:2byte +lbl_808E4600 = .sbss:0x808E4600; // type:object size:0x1 data:byte +lbl_808E4602 = .sbss:0x808E4602; // type:object size:0x2 data:2byte +lbl_808E4604 = .sbss:0x808E4604; // type:object size:0x2 data:2byte +lbl_808E4608 = .sbss:0x808E4608; // type:object size:0x2 data:2byte +lbl_808E460A = .sbss:0x808E460A; // type:object size:0x6 data:2byte +lbl_808E4610 = .sbss:0x808E4610; // type:object size:0x2 data:2byte +lbl_808E4612 = .sbss:0x808E4612; // type:object size:0x6 data:2byte +lbl_808E4618 = .sbss:0x808E4618; // type:object size:0x2 data:2byte +lbl_808E461A = .sbss:0x808E461A; // type:object size:0x6 data:2byte +lbl_808E4620 = .sbss:0x808E4620; // type:object size:0x2 data:2byte +lbl_808E4622 = .sbss:0x808E4622; // type:object size:0x6 data:2byte +lbl_808E4628 = .sbss:0x808E4628; // type:object size:0x2 data:2byte +lbl_808E462A = .sbss:0x808E462A; // type:object size:0x6 data:2byte +lbl_808E4630 = .sbss:0x808E4630; // type:object size:0x2 data:2byte +lbl_808E4632 = .sbss:0x808E4632; // type:object size:0x6 data:2byte +lbl_808E4638 = .sbss:0x808E4638; // type:object size:0x2 data:2byte +lbl_808E463A = .sbss:0x808E463A; // type:object size:0x6 data:2byte +lbl_808E4640 = .sbss:0x808E4640; // type:object size:0x1 data:byte +lbl_808E4641 = .sbss:0x808E4641; // type:object size:0x1 data:byte +lbl_808E4642 = .sbss:0x808E4642; // type:object size:0x1 data:byte +lbl_808E4643 = .sbss:0x808E4643; // type:object size:0x1 data:byte +lbl_808E4644 = .sbss:0x808E4644; // type:object size:0x2 data:2byte +lbl_808E4646 = .sbss:0x808E4646; // type:object size:0x2 data:2byte +lbl_808E4648 = .sbss:0x808E4648; // type:object size:0x1 data:byte +lbl_808E4649 = .sbss:0x808E4649; // type:object size:0x1 data:byte +lbl_808E464A = .sbss:0x808E464A; // type:object size:0x1 data:byte +lbl_808E464B = .sbss:0x808E464B; // type:object size:0x1 data:byte +lbl_808E464C = .sbss:0x808E464C; // type:object size:0x1 data:byte +lbl_808E464D = .sbss:0x808E464D; // type:object size:0x1 data:byte +lbl_808E464E = .sbss:0x808E464E; // type:object size:0x1 data:byte +lbl_808E464F = .sbss:0x808E464F; // type:object size:0x1 data:byte +lbl_808E4650 = .sbss:0x808E4650; // type:object size:0x1 data:byte +lbl_808E4651 = .sbss:0x808E4651; // type:object size:0x1 data:byte +lbl_808E4652 = .sbss:0x808E4652; // type:object size:0x1 data:byte +lbl_808E4653 = .sbss:0x808E4653; // type:object size:0x1 data:byte +lbl_808E4654 = .sbss:0x808E4654; // type:object size:0x1 data:byte +lbl_808E4655 = .sbss:0x808E4655; // type:object size:0x1 data:byte +lbl_808E4656 = .sbss:0x808E4656; // type:object size:0x1 data:byte +lbl_808E4657 = .sbss:0x808E4657; // type:object size:0x1 data:byte +lbl_808E4658 = .sbss:0x808E4658; // type:object size:0x1 data:byte +lbl_808E4659 = .sbss:0x808E4659; // type:object size:0x1 data:byte +lbl_808E465A = .sbss:0x808E465A; // type:object size:0x1 data:byte +lbl_808E465B = .sbss:0x808E465B; // type:object size:0x1 data:byte +lbl_808E465C = .sbss:0x808E465C; // type:object size:0x2 data:2byte +lbl_808E465E = .sbss:0x808E465E; // type:object size:0x2 data:2byte +lbl_808E4660 = .sbss:0x808E4660; // type:object size:0x1 data:byte +lbl_808E4661 = .sbss:0x808E4661; // type:object size:0x7 data:byte +lbl_808E4668 = .sbss:0x808E4668; // type:object size:0x1 data:byte +lbl_808E4669 = .sbss:0x808E4669; // type:object size:0x1 data:byte +lbl_808E466A = .sbss:0x808E466A; // type:object size:0x2 data:2byte +lbl_808E466C = .sbss:0x808E466C; // type:object size:0x2 data:2byte +lbl_808E4670 = .sbss:0x808E4670; // type:object size:0x2 data:2byte +lbl_808E4672 = .sbss:0x808E4672; // type:object size:0x6 data:2byte +lbl_808E4678 = .sbss:0x808E4678; // type:object size:0x1 data:byte +lbl_808E4679 = .sbss:0x808E4679; // type:object size:0x1 data:byte +lbl_808E467A = .sbss:0x808E467A; // type:object size:0x1 data:byte +lbl_808E467B = .sbss:0x808E467B; // type:object size:0x1 data:byte +lbl_808E467C = .sbss:0x808E467C; // type:object size:0x1 data:byte +lbl_808E467D = .sbss:0x808E467D; // type:object size:0x1 data:byte +lbl_808E467E = .sbss:0x808E467E; // type:object size:0x1 data:byte +lbl_808E467F = .sbss:0x808E467F; // type:object size:0x1 data:byte +lbl_808E4680 = .sbss:0x808E4680; // type:object size:0x1 data:byte +lbl_808E4682 = .sbss:0x808E4682; // type:object size:0x2 data:2byte +lbl_808E4684 = .sbss:0x808E4684; // type:object size:0x2 data:2byte +lbl_808E4686 = .sbss:0x808E4686; // type:object size:0x1 data:byte +lbl_808E4688 = .sbss:0x808E4688; // type:object size:0x2 data:2byte +lbl_808E468A = .sbss:0x808E468A; // type:object size:0x6 data:2byte +lbl_808E4690 = .sbss:0x808E4690; // type:object size:0x2 data:2byte +lbl_808E4692 = .sbss:0x808E4692; // type:object size:0x6 data:2byte +lbl_808E4698 = .sbss:0x808E4698; // type:object size:0x2 data:2byte +lbl_808E469A = .sbss:0x808E469A; // type:object size:0x6 data:2byte +lbl_808E46A0 = .sbss:0x808E46A0; // type:object size:0x2 data:2byte +lbl_808E46A2 = .sbss:0x808E46A2; // type:object size:0x6 data:2byte +lbl_808E46A8 = .sbss:0x808E46A8; // type:object size:0x8 data:byte +lbl_808E46B0 = .sbss:0x808E46B0; // type:object size:0x1 data:byte +lbl_808E46B1 = .sbss:0x808E46B1; // type:object size:0x1 data:byte +lbl_808E46B2 = .sbss:0x808E46B2; // type:object size:0x2 data:2byte +lbl_808E46B4 = .sbss:0x808E46B4; // type:object size:0x2 data:2byte +lbl_808E46B6 = .sbss:0x808E46B6; // type:object size:0x1 data:byte +lbl_808E46B8 = .sbss:0x808E46B8; // type:object size:0x2 data:2byte +lbl_808E46BA = .sbss:0x808E46BA; // type:object size:0x6 data:2byte +lbl_808E46C0 = .sbss:0x808E46C0; // type:object size:0x2 data:2byte +lbl_808E46C2 = .sbss:0x808E46C2; // type:object size:0x6 data:2byte +lbl_808E46C8 = .sbss:0x808E46C8; // type:object size:0x2 data:2byte +lbl_808E46CA = .sbss:0x808E46CA; // type:object size:0x6 data:2byte +lbl_808E46D0 = .sbss:0x808E46D0; // type:object size:0x2 data:2byte +lbl_808E46D2 = .sbss:0x808E46D2; // type:object size:0x6 data:2byte +lbl_808E46D8 = .sbss:0x808E46D8; // type:object size:0x2 data:2byte +lbl_808E46DA = .sbss:0x808E46DA; // type:object size:0x6 data:2byte +lbl_808E46E0 = .sbss:0x808E46E0; // type:object size:0x2 data:2byte +lbl_808E46E2 = .sbss:0x808E46E2; // type:object size:0x6 data:2byte +lbl_808E46E8 = .sbss:0x808E46E8; // type:object size:0x2 data:2byte +lbl_808E46EA = .sbss:0x808E46EA; // type:object size:0x6 data:2byte +lbl_808E46F0 = .sbss:0x808E46F0; // type:object size:0x2 data:2byte +lbl_808E46F2 = .sbss:0x808E46F2; // type:object size:0x6 data:2byte +lbl_808E46F8 = .sbss:0x808E46F8; // type:object size:0x2 data:2byte +lbl_808E46FA = .sbss:0x808E46FA; // type:object size:0x6 data:2byte +lbl_808E4700 = .sbss:0x808E4700; // type:object size:0x2 data:2byte +lbl_808E4702 = .sbss:0x808E4702; // type:object size:0x6 data:2byte +lbl_808E4708 = .sbss:0x808E4708; // type:object size:0x2 data:2byte +lbl_808E470A = .sbss:0x808E470A; // type:object size:0x6 data:2byte +lbl_808E4710 = .sbss:0x808E4710; // type:object size:0x2 data:2byte +lbl_808E4712 = .sbss:0x808E4712; // type:object size:0x6 data:2byte +lbl_808E4718 = .sbss:0x808E4718; // type:object size:0x2 data:2byte +lbl_808E471A = .sbss:0x808E471A; // type:object size:0x6 data:2byte +lbl_808E4720 = .sbss:0x808E4720; // type:object size:0x2 data:2byte +lbl_808E4722 = .sbss:0x808E4722; // type:object size:0x6 data:2byte +lbl_808E4728 = .sbss:0x808E4728; // type:object size:0x2 data:2byte +lbl_808E472A = .sbss:0x808E472A; // type:object size:0x6 data:2byte +lbl_808E4730 = .sbss:0x808E4730; // type:object size:0x2 data:2byte +lbl_808E4732 = .sbss:0x808E4732; // type:object size:0x2 data:2byte +lbl_808E4734 = .sbss:0x808E4734; // type:object size:0x1 data:byte +lbl_808E4735 = .sbss:0x808E4735; // type:object size:0x1 data:byte +lbl_808E4738 = .sbss:0x808E4738; // type:object size:0x8 data:byte +lbl_808E4740 = .sbss:0x808E4740; // type:object size:0x2 data:2byte +lbl_808E4742 = .sbss:0x808E4742; // type:object size:0x6 data:2byte +lbl_808E4748 = .sbss:0x808E4748; // type:object size:0x2 data:2byte +lbl_808E474A = .sbss:0x808E474A; // type:object size:0x2 data:2byte +lbl_808E474C = .sbss:0x808E474C; // type:object size:0x1 data:byte +lbl_808E474D = .sbss:0x808E474D; // type:object size:0x1 data:byte +lbl_808E474E = .sbss:0x808E474E; // type:object size:0x1 data:byte +lbl_808E474F = .sbss:0x808E474F; // type:object size:0x1 data:byte +lbl_808E4750 = .sbss:0x808E4750; // type:object size:0x1 data:byte +lbl_808E4751 = .sbss:0x808E4751; // type:object size:0x1 data:byte +lbl_808E4752 = .sbss:0x808E4752; // type:object size:0x6 data:byte +lbl_808E4758 = .sbss:0x808E4758; // type:object size:0x2 data:2byte +lbl_808E475A = .sbss:0x808E475A; // type:object size:0x2 data:2byte +lbl_808E475C = .sbss:0x808E475C; // type:object size:0x1 data:byte +lbl_808E475D = .sbss:0x808E475D; // type:object size:0x1 data:byte +lbl_808E475E = .sbss:0x808E475E; // type:object size:0x1 data:byte +lbl_808E4760 = .sbss:0x808E4760; // type:object size:0x2 data:2byte +lbl_808E4762 = .sbss:0x808E4762; // type:object size:0x2 data:2byte +lbl_808E4764 = .sbss:0x808E4764; // type:object size:0x1 data:byte +lbl_808E4765 = .sbss:0x808E4765; // type:object size:0x1 data:byte +lbl_808E4766 = .sbss:0x808E4766; // type:object size:0x1 data:byte +lbl_808E4767 = .sbss:0x808E4767; // type:object size:0x1 data:byte +lbl_808E4768 = .sbss:0x808E4768; // type:object size:0x1 data:byte +lbl_808E4769 = .sbss:0x808E4769; // type:object size:0x7 data:byte +lbl_808E4770 = .sbss:0x808E4770; // type:object size:0x2 data:2byte +lbl_808E4772 = .sbss:0x808E4772; // type:object size:0x6 data:2byte +lbl_808E4778 = .sbss:0x808E4778; // type:object size:0x1 data:byte +lbl_808E4779 = .sbss:0x808E4779; // type:object size:0x1 data:byte +lbl_808E477A = .sbss:0x808E477A; // type:object size:0x1 data:byte +lbl_808E477B = .sbss:0x808E477B; // type:object size:0x1 data:byte +lbl_808E477C = .sbss:0x808E477C; // type:object size:0x2 data:2byte +lbl_808E477E = .sbss:0x808E477E; // type:object size:0x2 data:2byte +lbl_808E4780 = .sbss:0x808E4780; // type:object size:0x1 data:byte +lbl_808E4781 = .sbss:0x808E4781; // type:object size:0x1 data:byte +lbl_808E4782 = .sbss:0x808E4782; // type:object size:0x1 data:byte +lbl_808E4784 = .sbss:0x808E4784; // type:object size:0x2 data:2byte +lbl_808E4786 = .sbss:0x808E4786; // type:object size:0x2 data:2byte +lbl_808E4788 = .sbss:0x808E4788; // type:object size:0x2 data:2byte +lbl_808E478A = .sbss:0x808E478A; // type:object size:0x6 data:2byte +lbl_808E4790 = .sbss:0x808E4790; // type:object size:0x2 data:2byte +lbl_808E4792 = .sbss:0x808E4792; // type:object size:0x2 data:2byte +lbl_808E4794 = .sbss:0x808E4794; // type:object size:0x1 data:byte +lbl_808E4795 = .sbss:0x808E4795; // type:object size:0x1 data:byte +lbl_808E4796 = .sbss:0x808E4796; // type:object size:0x1 data:byte +lbl_808E4798 = .sbss:0x808E4798; // type:object size:0x2 data:2byte +lbl_808E479A = .sbss:0x808E479A; // type:object size:0x2 data:2byte +lbl_808E479C = .sbss:0x808E479C; // type:object size:0x1 data:byte +lbl_808E47A0 = .sbss:0x808E47A0; // type:object size:0x1 data:byte +lbl_808E47A1 = .sbss:0x808E47A1; // type:object size:0x7 data:byte +lbl_808E47A8 = .sbss:0x808E47A8; // type:object size:0x8 data:byte +lbl_808E47B0 = .sbss:0x808E47B0; // type:object size:0x8 data:byte +lbl_808E47B8 = .sbss:0x808E47B8; // type:object size:0x8 data:byte +lbl_808E47C0 = .sbss:0x808E47C0; // type:object size:0x8 data:byte +lbl_808E47C8 = .sbss:0x808E47C8; // type:object size:0x1 data:byte +lbl_808E47C9 = .sbss:0x808E47C9; // type:object size:0x1 data:byte +lbl_808E47CA = .sbss:0x808E47CA; // type:object size:0x1 data:byte +lbl_808E47CB = .sbss:0x808E47CB; // type:object size:0x1 data:byte +lbl_808E47CC = .sbss:0x808E47CC; // type:object size:0x1 data:byte +lbl_808E47CD = .sbss:0x808E47CD; // type:object size:0x1 data:byte +lbl_808E47CE = .sbss:0x808E47CE; // type:object size:0x1 data:byte +lbl_808E47CF = .sbss:0x808E47CF; // type:object size:0x1 data:byte +lbl_808E47D0 = .sbss:0x808E47D0; // type:object size:0x1 data:byte +lbl_808E47D1 = .sbss:0x808E47D1; // type:object size:0x1 data:byte +lbl_808E47D2 = .sbss:0x808E47D2; // type:object size:0x1 data:byte +lbl_808E47D3 = .sbss:0x808E47D3; // type:object size:0x1 data:byte +lbl_808E47D4 = .sbss:0x808E47D4; // type:object size:0x1 data:byte +lbl_808E47D5 = .sbss:0x808E47D5; // type:object size:0x1 data:byte +lbl_808E47D6 = .sbss:0x808E47D6; // type:object size:0x1 data:byte +lbl_808E47D7 = .sbss:0x808E47D7; // type:object size:0x1 data:byte +lbl_808E47D8 = .sbss:0x808E47D8; // type:object size:0x1 data:byte +lbl_808E47D9 = .sbss:0x808E47D9; // type:object size:0x1 data:byte +lbl_808E47DA = .sbss:0x808E47DA; // type:object size:0x1 data:byte +lbl_808E47DB = .sbss:0x808E47DB; // type:object size:0x1 data:byte +lbl_808E47DC = .sbss:0x808E47DC; // type:object size:0x1 data:byte +lbl_808E47DD = .sbss:0x808E47DD; // type:object size:0x1 data:byte +lbl_808E47DE = .sbss:0x808E47DE; // type:object size:0x1 data:byte +lbl_808E47DF = .sbss:0x808E47DF; // type:object size:0x1 data:byte +lbl_808E47E0 = .sbss:0x808E47E0; // type:object size:0x1 data:byte +lbl_808E47E1 = .sbss:0x808E47E1; // type:object size:0x1 data:byte +lbl_808E47E2 = .sbss:0x808E47E2; // type:object size:0x1 data:byte +lbl_808E47E3 = .sbss:0x808E47E3; // type:object size:0x1 data:byte +lbl_808E47E4 = .sbss:0x808E47E4; // type:object size:0x1 data:byte +lbl_808E47E5 = .sbss:0x808E47E5; // type:object size:0x1 data:byte +lbl_808E47E6 = .sbss:0x808E47E6; // type:object size:0x1 data:byte +lbl_808E47E7 = .sbss:0x808E47E7; // type:object size:0x1 data:byte +lbl_808E47E8 = .sbss:0x808E47E8; // type:object size:0x2 data:2byte +lbl_808E47EA = .sbss:0x808E47EA; // type:object size:0x6 data:2byte +lbl_808E47F0 = .sbss:0x808E47F0; // type:object size:0x2 data:2byte +lbl_808E47F2 = .sbss:0x808E47F2; // type:object size:0x6 data:2byte +lbl_808E47F8 = .sbss:0x808E47F8; // type:object size:0x2 data:2byte +lbl_808E47FA = .sbss:0x808E47FA; // type:object size:0x6 data:2byte +lbl_808E4800 = .sbss:0x808E4800; // type:object size:0x1 data:byte +lbl_808E4802 = .sbss:0x808E4802; // type:object size:0x2 data:2byte +lbl_808E4804 = .sbss:0x808E4804; // type:object size:0x2 data:2byte +lbl_808E4808 = .sbss:0x808E4808; // type:object size:0x2 data:2byte +lbl_808E480A = .sbss:0x808E480A; // type:object size:0x6 data:2byte +lbl_808E4810 = .sbss:0x808E4810; // type:object size:0x2 data:2byte +lbl_808E4812 = .sbss:0x808E4812; // type:object size:0x6 data:2byte +lbl_808E4818 = .sbss:0x808E4818; // type:object size:0x2 data:2byte +lbl_808E481A = .sbss:0x808E481A; // type:object size:0x6 data:2byte +lbl_808E4820 = .sbss:0x808E4820; // type:object size:0x1 data:byte +lbl_808E4821 = .sbss:0x808E4821; // type:object size:0x1 data:byte +lbl_808E4822 = .sbss:0x808E4822; // type:object size:0x1 data:byte +lbl_808E4824 = .sbss:0x808E4824; // type:object size:0x2 data:2byte +lbl_808E4826 = .sbss:0x808E4826; // type:object size:0x2 data:2byte +lbl_808E4828 = .sbss:0x808E4828; // type:object size:0x1 data:byte +lbl_808E4829 = .sbss:0x808E4829; // type:object size:0x1 data:byte +lbl_808E482A = .sbss:0x808E482A; // type:object size:0x1 data:byte +lbl_808E482B = .sbss:0x808E482B; // type:object size:0x1 data:byte +lbl_808E482C = .sbss:0x808E482C; // type:object size:0x1 data:byte +lbl_808E4830 = .sbss:0x808E4830; // type:object size:0x1 data:byte +lbl_808E4831 = .sbss:0x808E4831; // type:object size:0x1 data:byte +lbl_808E4832 = .sbss:0x808E4832; // type:object size:0x1 data:byte +lbl_808E4833 = .sbss:0x808E4833; // type:object size:0x5 data:byte +lbl_808E4838 = .sbss:0x808E4838; // type:object size:0x2 data:2byte +lbl_808E483A = .sbss:0x808E483A; // type:object size:0x6 data:2byte +lbl_808E4840 = .sbss:0x808E4840; // type:object size:0x2 data:2byte +lbl_808E4842 = .sbss:0x808E4842; // type:object size:0x2 data:2byte +lbl_808E4844 = .sbss:0x808E4844; // type:object size:0x1 data:byte +lbl_808E4848 = .sbss:0x808E4848; // type:object size:0x2 data:2byte +lbl_808E484A = .sbss:0x808E484A; // type:object size:0x6 data:2byte +lbl_808E4850 = .sbss:0x808E4850; // type:object size:0x2 data:2byte +lbl_808E4852 = .sbss:0x808E4852; // type:object size:0x6 data:2byte +lbl_808E4858 = .sbss:0x808E4858; // type:object size:0x2 data:2byte +lbl_808E485A = .sbss:0x808E485A; // type:object size:0x6 data:2byte +lbl_808E4860 = .sbss:0x808E4860; // type:object size:0x2 data:2byte +lbl_808E4862 = .sbss:0x808E4862; // type:object size:0x6 data:2byte +lbl_808E4868 = .sbss:0x808E4868; // type:object size:0x2 data:2byte +lbl_808E486A = .sbss:0x808E486A; // type:object size:0x2 data:2byte +lbl_808E486C = .sbss:0x808E486C; // type:object size:0x1 data:byte +lbl_808E4870 = .sbss:0x808E4870; // type:object size:0x2 data:2byte +lbl_808E4872 = .sbss:0x808E4872; // type:object size:0x2 data:2byte +lbl_808E4874 = .sbss:0x808E4874; // type:object size:0x1 data:byte +lbl_808E4878 = .sbss:0x808E4878; // type:object size:0x2 data:2byte +lbl_808E487A = .sbss:0x808E487A; // type:object size:0x6 data:2byte +lbl_808E4880 = .sbss:0x808E4880; // type:object size:0x2 data:2byte +lbl_808E4882 = .sbss:0x808E4882; // type:object size:0x6 data:2byte +lbl_808E4888 = .sbss:0x808E4888; // type:object size:0x2 data:2byte +lbl_808E488A = .sbss:0x808E488A; // type:object size:0x6 data:2byte +lbl_808E4890 = .sbss:0x808E4890; // type:object size:0x2 data:2byte +lbl_808E4892 = .sbss:0x808E4892; // type:object size:0x6 data:2byte +lbl_808E4898 = .sbss:0x808E4898; // type:object size:0x2 data:2byte +lbl_808E489A = .sbss:0x808E489A; // type:object size:0x6 data:2byte +lbl_808E48A0 = .sbss:0x808E48A0; // type:object size:0x2 data:2byte +lbl_808E48A2 = .sbss:0x808E48A2; // type:object size:0x6 data:2byte +lbl_808E48A8 = .sbss:0x808E48A8; // type:object size:0x2 data:2byte +lbl_808E48AA = .sbss:0x808E48AA; // type:object size:0x6 data:2byte +lbl_808E48B0 = .sbss:0x808E48B0; // type:object size:0x2 data:2byte +lbl_808E48B2 = .sbss:0x808E48B2; // type:object size:0x6 data:2byte +lbl_808E48B8 = .sbss:0x808E48B8; // type:object size:0x2 data:2byte +lbl_808E48BA = .sbss:0x808E48BA; // type:object size:0x6 data:2byte +lbl_808E48C0 = .sbss:0x808E48C0; // type:object size:0x2 data:2byte +lbl_808E48C2 = .sbss:0x808E48C2; // type:object size:0x6 data:2byte +lbl_808E48C8 = .sbss:0x808E48C8; // type:object size:0x2 data:2byte +lbl_808E48CA = .sbss:0x808E48CA; // type:object size:0x6 data:2byte +lbl_808E48D0 = .sbss:0x808E48D0; // type:object size:0x2 data:2byte +lbl_808E48D2 = .sbss:0x808E48D2; // type:object size:0x6 data:2byte +lbl_808E48D8 = .sbss:0x808E48D8; // type:object size:0x2 data:2byte +lbl_808E48DA = .sbss:0x808E48DA; // type:object size:0x2 data:2byte +lbl_808E48DC = .sbss:0x808E48DC; // type:object size:0x1 data:byte +lbl_808E48DD = .sbss:0x808E48DD; // type:object size:0x1 data:byte +lbl_808E48E0 = .sbss:0x808E48E0; // type:object size:0x2 data:2byte +lbl_808E48E2 = .sbss:0x808E48E2; // type:object size:0x6 data:2byte +lbl_808E48E8 = .sbss:0x808E48E8; // type:object size:0x2 data:2byte +lbl_808E48EA = .sbss:0x808E48EA; // type:object size:0x6 data:2byte +lbl_808E48F0 = .sbss:0x808E48F0; // type:object size:0x2 data:2byte +lbl_808E48F2 = .sbss:0x808E48F2; // type:object size:0x6 data:2byte +lbl_808E48F8 = .sbss:0x808E48F8; // type:object size:0x2 data:2byte +lbl_808E48FA = .sbss:0x808E48FA; // type:object size:0x6 data:2byte +lbl_808E4900 = .sbss:0x808E4900; // type:object size:0x2 data:2byte +lbl_808E4902 = .sbss:0x808E4902; // type:object size:0x6 data:2byte +lbl_808E4908 = .sbss:0x808E4908; // type:object size:0x2 data:2byte +lbl_808E490A = .sbss:0x808E490A; // type:object size:0x6 data:2byte +lbl_808E4910 = .sbss:0x808E4910; // type:object size:0x2 data:2byte +lbl_808E4912 = .sbss:0x808E4912; // type:object size:0x6 data:2byte +lbl_808E4918 = .sbss:0x808E4918; // type:object size:0x2 data:2byte +lbl_808E491A = .sbss:0x808E491A; // type:object size:0x6 data:2byte +lbl_808E4920 = .sbss:0x808E4920; // type:object size:0x2 data:2byte +lbl_808E4922 = .sbss:0x808E4922; // type:object size:0x6 data:2byte +lbl_808E4928 = .sbss:0x808E4928; // type:object size:0x2 data:2byte +lbl_808E492A = .sbss:0x808E492A; // type:object size:0x6 data:2byte +lbl_808E4930 = .sbss:0x808E4930; // type:object size:0x2 data:2byte +lbl_808E4932 = .sbss:0x808E4932; // type:object size:0x6 data:2byte +lbl_808E4938 = .sbss:0x808E4938; // type:object size:0x2 data:2byte +lbl_808E493A = .sbss:0x808E493A; // type:object size:0x6 data:2byte +lbl_808E4940 = .sbss:0x808E4940; // type:object size:0x2 data:2byte +lbl_808E4942 = .sbss:0x808E4942; // type:object size:0x6 data:2byte +lbl_808E4948 = .sbss:0x808E4948; // type:object size:0x2 data:2byte +lbl_808E494A = .sbss:0x808E494A; // type:object size:0x6 data:2byte +lbl_808E4950 = .sbss:0x808E4950; // type:object size:0x2 data:2byte +lbl_808E4952 = .sbss:0x808E4952; // type:object size:0x6 data:2byte +lbl_808E4958 = .sbss:0x808E4958; // type:object size:0x1 data:byte +lbl_808E4959 = .sbss:0x808E4959; // type:object size:0x1 data:byte +lbl_808E495A = .sbss:0x808E495A; // type:object size:0x1 data:byte +lbl_808E495B = .sbss:0x808E495B; // type:object size:0x1 data:byte +lbl_808E495C = .sbss:0x808E495C; // type:object size:0x1 data:byte +lbl_808E495D = .sbss:0x808E495D; // type:object size:0x1 data:byte +lbl_808E495E = .sbss:0x808E495E; // type:object size:0x2 data:2byte +lbl_808E4960 = .sbss:0x808E4960; // type:object size:0x2 data:2byte +lbl_808E4962 = .sbss:0x808E4962; // type:object size:0x1 data:byte +lbl_808E4963 = .sbss:0x808E4963; // type:object size:0x5 data:byte +lbl_808E4968 = .sbss:0x808E4968; // type:object size:0x1 data:byte +lbl_808E4969 = .sbss:0x808E4969; // type:object size:0x7 data:byte +lbl_808E4970 = .sbss:0x808E4970; // type:object size:0x2 data:2byte +lbl_808E4972 = .sbss:0x808E4972; // type:object size:0x6 data:2byte +lbl_808E4978 = .sbss:0x808E4978; // type:object size:0x2 data:2byte +lbl_808E497A = .sbss:0x808E497A; // type:object size:0x6 data:2byte +lbl_808E4980 = .sbss:0x808E4980; // type:object size:0x1 data:byte +lbl_808E4981 = .sbss:0x808E4981; // type:object size:0x1 data:byte +lbl_808E4982 = .sbss:0x808E4982; // type:object size:0x1 data:byte +lbl_808E4983 = .sbss:0x808E4983; // type:object size:0x1 data:byte +lbl_808E4984 = .sbss:0x808E4984; // type:object size:0x1 data:byte +lbl_808E4988 = .sbss:0x808E4988; // type:object size:0x1 data:byte +lbl_808E4989 = .sbss:0x808E4989; // type:object size:0x1 data:byte +lbl_808E498A = .sbss:0x808E498A; // type:object size:0x1 data:byte +lbl_808E498B = .sbss:0x808E498B; // type:object size:0x1 data:byte +lbl_808E498C = .sbss:0x808E498C; // type:object size:0x1 data:byte +lbl_808E498D = .sbss:0x808E498D; // type:object size:0x1 data:byte +lbl_808E4990 = .sbss:0x808E4990; // type:object size:0x1 data:byte +lbl_808E4991 = .sbss:0x808E4991; // type:object size:0x7 data:byte +lbl_808E4998 = .sbss:0x808E4998; // type:object size:0x1 data:byte +lbl_808E4999 = .sbss:0x808E4999; // type:object size:0x7 data:byte +lbl_808E49A0 = .sbss:0x808E49A0; // type:object size:0x1 data:byte +lbl_808E49A1 = .sbss:0x808E49A1; // type:object size:0x7 data:byte +lbl_808E49A8 = .sbss:0x808E49A8; // type:object size:0x8 data:byte +lbl_808E49B0 = .sbss:0x808E49B0; // type:object size:0x8 data:byte +lbl_808E49B8 = .sbss:0x808E49B8; // type:object size:0x8 data:byte +lbl_808E49C0 = .sbss:0x808E49C0; // type:object size:0x8 data:byte +lbl_808E49C8 = .sbss:0x808E49C8; // type:object size:0x8 data:byte +lbl_808E49D0 = .sbss:0x808E49D0; // type:object size:0x1 data:byte +lbl_808E49D1 = .sbss:0x808E49D1; // type:object size:0x7 data:byte +lbl_808E49D8 = .sbss:0x808E49D8; // type:object size:0x1 data:byte +lbl_808E49D9 = .sbss:0x808E49D9; // type:object size:0x7 data:byte +lbl_808E49E0 = .sbss:0x808E49E0; // type:object size:0x1 data:byte +lbl_808E49E1 = .sbss:0x808E49E1; // type:object size:0x7 data:byte +lbl_808E49E8 = .sbss:0x808E49E8; // type:object size:0x8 data:byte +lbl_808E49F0 = .sbss:0x808E49F0; // type:object size:0x1 data:byte +lbl_808E49F1 = .sbss:0x808E49F1; // type:object size:0x1 data:byte +lbl_808E49F2 = .sbss:0x808E49F2; // type:object size:0x6 data:byte +lbl_808E49F8 = .sbss:0x808E49F8; // type:object size:0x1 data:byte +lbl_808E49F9 = .sbss:0x808E49F9; // type:object size:0x7 data:byte +lbl_808E4A00 = .sbss:0x808E4A00; // type:object size:0x2 data:2byte +lbl_808E4A02 = .sbss:0x808E4A02; // type:object size:0x6 data:2byte +lbl_808E4A08 = .sbss:0x808E4A08; // type:object size:0x8 data:byte +lbl_808E4A10 = .sbss:0x808E4A10; // type:object size:0x8 data:byte +lbl_808E4A18 = .sbss:0x808E4A18; // type:object size:0x2 data:2byte +lbl_808E4A1A = .sbss:0x808E4A1A; // type:object size:0x6 data:2byte +lbl_808E4A20 = .sbss:0x808E4A20; // type:object size:0x2 data:2byte +lbl_808E4A22 = .sbss:0x808E4A22; // type:object size:0x2 data:2byte +lbl_808E4A24 = .sbss:0x808E4A24; // type:object size:0x1 data:byte +lbl_808E4A25 = .sbss:0x808E4A25; // type:object size:0x1 data:byte +lbl_808E4A26 = .sbss:0x808E4A26; // type:object size:0x1 data:byte +lbl_808E4A27 = .sbss:0x808E4A27; // type:object size:0x1 data:byte +lbl_808E4A28 = .sbss:0x808E4A28; // type:object size:0x1 data:byte +lbl_808E4A29 = .sbss:0x808E4A29; // type:object size:0x1 data:byte +lbl_808E4A2A = .sbss:0x808E4A2A; // type:object size:0x1 data:byte +lbl_808E4A2B = .sbss:0x808E4A2B; // type:object size:0x1 data:byte +lbl_808E4A2C = .sbss:0x808E4A2C; // type:object size:0x1 data:byte +lbl_808E4A30 = .sbss:0x808E4A30; // type:object size:0x1 data:byte +lbl_808E4A31 = .sbss:0x808E4A31; // type:object size:0x7 data:byte +lbl_808E4A38 = .sbss:0x808E4A38; // type:object size:0x1 data:byte +lbl_808E4A39 = .sbss:0x808E4A39; // type:object size:0x1 data:byte +lbl_808E4A3A = .sbss:0x808E4A3A; // type:object size:0x2 data:2byte +lbl_808E4A3C = .sbss:0x808E4A3C; // type:object size:0x2 data:2byte +lbl_808E4A40 = .sbss:0x808E4A40; // type:object size:0x1 data:byte +lbl_808E4A41 = .sbss:0x808E4A41; // type:object size:0x1 data:byte +lbl_808E4A42 = .sbss:0x808E4A42; // type:object size:0x2 data:2byte +lbl_808E4A44 = .sbss:0x808E4A44; // type:object size:0x2 data:2byte +lbl_808E4A48 = .sbss:0x808E4A48; // type:object size:0x2 data:2byte +lbl_808E4A4A = .sbss:0x808E4A4A; // type:object size:0x2 data:2byte +lbl_808E4A4C = .sbss:0x808E4A4C; // type:object size:0x1 data:byte +lbl_808E4A50 = .sbss:0x808E4A50; // type:object size:0x1 data:byte +lbl_808E4A51 = .sbss:0x808E4A51; // type:object size:0x1 data:byte +lbl_808E4A52 = .sbss:0x808E4A52; // type:object size:0x2 data:2byte +lbl_808E4A54 = .sbss:0x808E4A54; // type:object size:0x2 data:2byte +lbl_808E4A58 = .sbss:0x808E4A58; // type:object size:0x8 data:byte +lbl_808E4A60 = .sbss:0x808E4A60; // type:object size:0x1 data:byte +lbl_808E4A61 = .sbss:0x808E4A61; // type:object size:0x7 data:byte +lbl_808E4A68 = .sbss:0x808E4A68; // type:object size:0x2 data:2byte +lbl_808E4A6A = .sbss:0x808E4A6A; // type:object size:0x6 data:2byte +lbl_808E4A70 = .sbss:0x808E4A70; // type:object size:0x2 data:2byte +lbl_808E4A72 = .sbss:0x808E4A72; // type:object size:0x6 data:2byte +lbl_808E4A78 = .sbss:0x808E4A78; // type:object size:0x1 data:byte +lbl_808E4A7A = .sbss:0x808E4A7A; // type:object size:0x2 data:2byte +lbl_808E4A7C = .sbss:0x808E4A7C; // type:object size:0x2 data:2byte +lbl_808E4A7E = .sbss:0x808E4A7E; // type:object size:0x1 data:byte +lbl_808E4A7F = .sbss:0x808E4A7F; // type:object size:0x1 data:byte +lbl_808E4A80 = .sbss:0x808E4A80; // type:object size:0x8 data:byte +lbl_808E4A88 = .sbss:0x808E4A88; // type:object size:0x1 data:byte +lbl_808E4A89 = .sbss:0x808E4A89; // type:object size:0x1 data:byte +lbl_808E4A8A = .sbss:0x808E4A8A; // type:object size:0x2 data:2byte +lbl_808E4A8C = .sbss:0x808E4A8C; // type:object size:0x2 data:2byte +lbl_808E4A90 = .sbss:0x808E4A90; // type:object size:0x2 data:2byte +lbl_808E4A92 = .sbss:0x808E4A92; // type:object size:0x6 data:2byte +lbl_808E4A98 = .sbss:0x808E4A98; // type:object size:0x1 data:byte +lbl_808E4A99 = .sbss:0x808E4A99; // type:object size:0x1 data:byte +lbl_808E4A9A = .sbss:0x808E4A9A; // type:object size:0x1 data:byte +lbl_808E4A9B = .sbss:0x808E4A9B; // type:object size:0x1 data:byte +lbl_808E4A9C = .sbss:0x808E4A9C; // type:object size:0x1 data:byte +lbl_808E4A9D = .sbss:0x808E4A9D; // type:object size:0x1 data:byte +lbl_808E4A9E = .sbss:0x808E4A9E; // type:object size:0x2 data:2byte +lbl_808E4AA0 = .sbss:0x808E4AA0; // type:object size:0x2 data:2byte +lbl_808E4AA2 = .sbss:0x808E4AA2; // type:object size:0x6 data:byte +lbl_808E4AA8 = .sbss:0x808E4AA8; // type:object size:0x2 data:2byte +lbl_808E4AAA = .sbss:0x808E4AAA; // type:object size:0x6 data:2byte +lbl_808E4AB0 = .sbss:0x808E4AB0; // type:object size:0x2 data:2byte +lbl_808E4AB2 = .sbss:0x808E4AB2; // type:object size:0x6 data:2byte +lbl_808E4AB8 = .sbss:0x808E4AB8; // type:object size:0x2 data:2byte +lbl_808E4ABA = .sbss:0x808E4ABA; // type:object size:0x6 data:2byte +lbl_808E4AC0 = .sbss:0x808E4AC0; // type:object size:0x2 data:2byte +lbl_808E4AC2 = .sbss:0x808E4AC2; // type:object size:0x6 data:2byte +lbl_808E4AC8 = .sbss:0x808E4AC8; // type:object size:0x2 data:2byte +lbl_808E4ACA = .sbss:0x808E4ACA; // type:object size:0x6 data:2byte +lbl_808E4AD0 = .sbss:0x808E4AD0; // type:object size:0x2 data:2byte +lbl_808E4AD2 = .sbss:0x808E4AD2; // type:object size:0x6 data:2byte +lbl_808E4AD8 = .sbss:0x808E4AD8; // type:object size:0x8 data:byte +lbl_808E4AE0 = .sbss:0x808E4AE0; // type:object size:0x2 data:2byte +lbl_808E4AE2 = .sbss:0x808E4AE2; // type:object size:0x6 data:2byte +lbl_808E4AE8 = .sbss:0x808E4AE8; // type:object size:0x2 data:2byte +lbl_808E4AEA = .sbss:0x808E4AEA; // type:object size:0x6 data:2byte +lbl_808E4AF0 = .sbss:0x808E4AF0; // type:object size:0x2 data:2byte +lbl_808E4AF2 = .sbss:0x808E4AF2; // type:object size:0x6 data:2byte +lbl_808E4AF8 = .sbss:0x808E4AF8; // type:object size:0x1 data:byte +lbl_808E4AF9 = .sbss:0x808E4AF9; // type:object size:0x7 data:byte +lbl_808E4B00 = .sbss:0x808E4B00; // type:object size:0x2 data:2byte +lbl_808E4B02 = .sbss:0x808E4B02; // type:object size:0x6 data:2byte +lbl_808E4B08 = .sbss:0x808E4B08; // type:object size:0x2 data:2byte +lbl_808E4B0A = .sbss:0x808E4B0A; // type:object size:0x2 data:2byte +lbl_808E4B0C = .sbss:0x808E4B0C; // type:object size:0x1 data:byte +lbl_808E4B10 = .sbss:0x808E4B10; // type:object size:0x1 data:byte +lbl_808E4B11 = .sbss:0x808E4B11; // type:object size:0x7 data:byte +lbl_808E4B18 = .sbss:0x808E4B18; // type:object size:0x2 data:2byte +lbl_808E4B1A = .sbss:0x808E4B1A; // type:object size:0x6 data:2byte +lbl_808E4B20 = .sbss:0x808E4B20; // type:object size:0x2 data:2byte +lbl_808E4B22 = .sbss:0x808E4B22; // type:object size:0x2 data:2byte +lbl_808E4B24 = .sbss:0x808E4B24; // type:object size:0x1 data:byte +lbl_808E4B28 = .sbss:0x808E4B28; // type:object size:0x2 data:2byte +lbl_808E4B2A = .sbss:0x808E4B2A; // type:object size:0x6 data:2byte +@GUARD@SetType__7DOFProcF6Symbol@types = .sbss:0x808E4B30; // type:object size:0x1 data:byte +@GUARD@StaticClassName__7DOFProcFv@name = .sbss:0x808E4B31; // type:object size:0x1 data:byte +lbl_808E4B32 = .sbss:0x808E4B32; // type:object size:0x1 data:byte +lbl_808E4B33 = .sbss:0x808E4B33; // type:object size:0x5 data:byte +lbl_808E4B38 = .sbss:0x808E4B38; // type:object size:0x1 data:byte +lbl_808E4B39 = .sbss:0x808E4B39; // type:object size:0x1 data:byte +lbl_808E4B3A = .sbss:0x808E4B3A; // type:object size:0x1 data:byte +lbl_808E4B3B = .sbss:0x808E4B3B; // type:object size:0x1 data:byte +lbl_808E4B3C = .sbss:0x808E4B3C; // type:object size:0x1 data:byte +lbl_808E4B3E = .sbss:0x808E4B3E; // type:object size:0x2 data:2byte +lbl_808E4B40 = .sbss:0x808E4B40; // type:object size:0x2 data:2byte +lbl_808E4B42 = .sbss:0x808E4B42; // type:object size:0x1 data:byte +lbl_808E4B43 = .sbss:0x808E4B43; // type:object size:0x1 data:byte +lbl_808E4B44 = .sbss:0x808E4B44; // type:object size:0x1 data:byte +lbl_808E4B45 = .sbss:0x808E4B45; // type:object size:0x1 data:byte +lbl_808E4B46 = .sbss:0x808E4B46; // type:object size:0x1 data:byte +lbl_808E4B47 = .sbss:0x808E4B47; // type:object size:0x1 data:byte +lbl_808E4B48 = .sbss:0x808E4B48; // type:object size:0x2 data:2byte +lbl_808E4B4A = .sbss:0x808E4B4A; // type:object size:0x2 data:2byte +lbl_808E4B4C = .sbss:0x808E4B4C; // type:object size:0x1 data:byte +lbl_808E4B50 = .sbss:0x808E4B50; // type:object size:0x2 data:2byte +lbl_808E4B52 = .sbss:0x808E4B52; // type:object size:0x6 data:2byte +lbl_808E4B58 = .sbss:0x808E4B58; // type:object size:0x1 data:byte +lbl_808E4B59 = .sbss:0x808E4B59; // type:object size:0x1 data:byte +lbl_808E4B5A = .sbss:0x808E4B5A; // type:object size:0x1 data:byte +lbl_808E4B5C = .sbss:0x808E4B5C; // type:object size:0x2 data:2byte +lbl_808E4B5E = .sbss:0x808E4B5E; // type:object size:0x2 data:2byte +lbl_808E4B60 = .sbss:0x808E4B60; // type:object size:0x1 data:byte +lbl_808E4B61 = .sbss:0x808E4B61; // type:object size:0x1 data:byte +lbl_808E4B62 = .sbss:0x808E4B62; // type:object size:0x1 data:byte +lbl_808E4B63 = .sbss:0x808E4B63; // type:object size:0x1 data:byte +lbl_808E4B64 = .sbss:0x808E4B64; // type:object size:0x1 data:byte +lbl_808E4B65 = .sbss:0x808E4B65; // type:object size:0x1 data:byte +lbl_808E4B66 = .sbss:0x808E4B66; // type:object size:0x1 data:byte +lbl_808E4B67 = .sbss:0x808E4B67; // type:object size:0x1 data:byte +lbl_808E4B68 = .sbss:0x808E4B68; // type:object size:0x8 data:byte +lbl_808E4B70 = .sbss:0x808E4B70; // type:object size:0x2 data:2byte +lbl_808E4B72 = .sbss:0x808E4B72; // type:object size:0x2 data:2byte +lbl_808E4B74 = .sbss:0x808E4B74; // type:object size:0x1 data:byte +lbl_808E4B78 = .sbss:0x808E4B78; // type:object size:0x2 data:2byte +lbl_808E4B7A = .sbss:0x808E4B7A; // type:object size:0x6 data:2byte +lbl_808E4B80 = .sbss:0x808E4B80; // type:object size:0x8 data:byte +lbl_808E4B88 = .sbss:0x808E4B88; // type:object size:0x1 data:byte +lbl_808E4B89 = .sbss:0x808E4B89; // type:object size:0x1 data:byte +lbl_808E4B8A = .sbss:0x808E4B8A; // type:object size:0x1 data:byte +lbl_808E4B8B = .sbss:0x808E4B8B; // type:object size:0x1 data:byte +lbl_808E4B8C = .sbss:0x808E4B8C; // type:object size:0x2 data:2byte +lbl_808E4B8E = .sbss:0x808E4B8E; // type:object size:0x2 data:2byte +lbl_808E4B90 = .sbss:0x808E4B90; // type:object size:0x1 data:byte +lbl_808E4B91 = .sbss:0x808E4B91; // type:object size:0x1 data:byte +lbl_808E4B92 = .sbss:0x808E4B92; // type:object size:0x1 data:byte +lbl_808E4B93 = .sbss:0x808E4B93; // type:object size:0x5 data:byte +lbl_808E4B98 = .sbss:0x808E4B98; // type:object size:0x2 data:2byte +lbl_808E4B9A = .sbss:0x808E4B9A; // type:object size:0x2 data:2byte +lbl_808E4B9C = .sbss:0x808E4B9C; // type:object size:0x1 data:byte +lbl_808E4B9D = .sbss:0x808E4B9D; // type:object size:0x1 data:byte +lbl_808E4B9E = .sbss:0x808E4B9E; // type:object size:0x1 data:byte +lbl_808E4BA0 = .sbss:0x808E4BA0; // type:object size:0x1 data:byte +lbl_808E4BA1 = .sbss:0x808E4BA1; // type:object size:0x1 data:byte +lbl_808E4BA2 = .sbss:0x808E4BA2; // type:object size:0x1 data:byte +lbl_808E4BA3 = .sbss:0x808E4BA3; // type:object size:0x1 data:byte +lbl_808E4BA4 = .sbss:0x808E4BA4; // type:object size:0x1 data:byte +lbl_808E4BA8 = .sbss:0x808E4BA8; // type:object size:0x2 data:2byte +lbl_808E4BAA = .sbss:0x808E4BAA; // type:object size:0x6 data:2byte +lbl_808E4BB0 = .sbss:0x808E4BB0; // type:object size:0x2 data:2byte +lbl_808E4BB2 = .sbss:0x808E4BB2; // type:object size:0x6 data:2byte +lbl_808E4BB8 = .sbss:0x808E4BB8; // type:object size:0x2 data:2byte +lbl_808E4BBA = .sbss:0x808E4BBA; // type:object size:0x6 data:2byte +lbl_808E4BC0 = .sbss:0x808E4BC0; // type:object size:0x2 data:2byte +lbl_808E4BC2 = .sbss:0x808E4BC2; // type:object size:0x2 data:2byte +lbl_808E4BC4 = .sbss:0x808E4BC4; // type:object size:0x1 data:byte +lbl_808E4BC8 = .sbss:0x808E4BC8; // type:object size:0x2 data:2byte +lbl_808E4BCA = .sbss:0x808E4BCA; // type:object size:0x6 data:2byte +lbl_808E4BD0 = .sbss:0x808E4BD0; // type:object size:0x1 data:byte +lbl_808E4BD1 = .sbss:0x808E4BD1; // type:object size:0x1 data:byte +lbl_808E4BD2 = .sbss:0x808E4BD2; // type:object size:0x2 data:2byte +lbl_808E4BD4 = .sbss:0x808E4BD4; // type:object size:0x2 data:2byte +lbl_808E4BD8 = .sbss:0x808E4BD8; // type:object size:0x2 data:2byte +lbl_808E4BDA = .sbss:0x808E4BDA; // type:object size:0x2 data:2byte +lbl_808E4BDC = .sbss:0x808E4BDC; // type:object size:0x1 data:byte +lbl_808E4BE0 = .sbss:0x808E4BE0; // type:object size:0x1 data:byte +lbl_808E4BE1 = .sbss:0x808E4BE1; // type:object size:0x7 data:byte +lbl_808E4BE8 = .sbss:0x808E4BE8; // type:object size:0x1 data:byte +lbl_808E4BE9 = .sbss:0x808E4BE9; // type:object size:0x1 data:byte +lbl_808E4BEA = .sbss:0x808E4BEA; // type:object size:0x1 data:byte +lbl_808E4BEB = .sbss:0x808E4BEB; // type:object size:0x1 data:byte +lbl_808E4BEC = .sbss:0x808E4BEC; // type:object size:0x1 data:byte +lbl_808E4BED = .sbss:0x808E4BED; // type:object size:0x1 data:byte +lbl_808E4BEE = .sbss:0x808E4BEE; // type:object size:0x1 data:byte +lbl_808E4BEF = .sbss:0x808E4BEF; // type:object size:0x1 data:byte +lbl_808E4BF0 = .sbss:0x808E4BF0; // type:object size:0x8 data:byte +lbl_808E4BF8 = .sbss:0x808E4BF8; // type:object size:0x1 data:byte +lbl_808E4BF9 = .sbss:0x808E4BF9; // type:object size:0x7 data:byte +lbl_808E4C00 = .sbss:0x808E4C00; // type:object size:0x2 data:2byte +lbl_808E4C02 = .sbss:0x808E4C02; // type:object size:0x2 data:2byte +lbl_808E4C04 = .sbss:0x808E4C04; // type:object size:0x1 data:byte +lbl_808E4C05 = .sbss:0x808E4C05; // type:object size:0x1 data:byte +lbl_808E4C06 = .sbss:0x808E4C06; // type:object size:0x1 data:byte +lbl_808E4C07 = .sbss:0x808E4C07; // type:object size:0x1 data:byte +lbl_808E4C08 = .sbss:0x808E4C08; // type:object size:0x1 data:byte +lbl_808E4C09 = .sbss:0x808E4C09; // type:object size:0x7 data:byte +lbl_808E4C10 = .sbss:0x808E4C10; // type:object size:0x2 data:2byte +lbl_808E4C12 = .sbss:0x808E4C12; // type:object size:0x6 data:2byte +lbl_808E4C18 = .sbss:0x808E4C18; // type:object size:0x2 data:2byte +lbl_808E4C1A = .sbss:0x808E4C1A; // type:object size:0x6 data:2byte +lbl_808E4C20 = .sbss:0x808E4C20; // type:object size:0x1 data:byte +lbl_808E4C21 = .sbss:0x808E4C21; // type:object size:0x7 data:byte +lbl_808E4C28 = .sbss:0x808E4C28; // type:object size:0x1 data:byte +lbl_808E4C29 = .sbss:0x808E4C29; // type:object size:0x1 data:byte +lbl_808E4C2A = .sbss:0x808E4C2A; // type:object size:0x6 data:byte +lbl_808E4C30 = .sbss:0x808E4C30; // type:object size:0x8 data:byte +lbl_808E4C38 = .sbss:0x808E4C38; // type:object size:0x2 data:2byte +lbl_808E4C3A = .sbss:0x808E4C3A; // type:object size:0x6 data:2byte +lbl_808E4C40 = .sbss:0x808E4C40; // type:object size:0x1 data:byte +lbl_808E4C41 = .sbss:0x808E4C41; // type:object size:0x7 data:byte +lbl_808E4C48 = .sbss:0x808E4C48; // type:object size:0x1 data:byte +lbl_808E4C49 = .sbss:0x808E4C49; // type:object size:0x1 data:byte +lbl_808E4C4A = .sbss:0x808E4C4A; // type:object size:0x2 data:2byte +lbl_808E4C4C = .sbss:0x808E4C4C; // type:object size:0x2 data:2byte +lbl_808E4C4E = .sbss:0x808E4C4E; // type:object size:0x1 data:byte +lbl_808E4C4F = .sbss:0x808E4C4F; // type:object size:0x1 data:byte +lbl_808E4C50 = .sbss:0x808E4C50; // type:object size:0x1 data:byte +lbl_808E4C51 = .sbss:0x808E4C51; // type:object size:0x1 data:byte +lbl_808E4C52 = .sbss:0x808E4C52; // type:object size:0x1 data:byte +lbl_808E4C53 = .sbss:0x808E4C53; // type:object size:0x1 data:byte +lbl_808E4C54 = .sbss:0x808E4C54; // type:object size:0x1 data:byte +lbl_808E4C55 = .sbss:0x808E4C55; // type:object size:0x1 data:byte +lbl_808E4C56 = .sbss:0x808E4C56; // type:object size:0x1 data:byte +lbl_808E4C57 = .sbss:0x808E4C57; // type:object size:0x1 data:byte +lbl_808E4C58 = .sbss:0x808E4C58; // type:object size:0x1 data:byte +lbl_808E4C59 = .sbss:0x808E4C59; // type:object size:0x1 data:byte +lbl_808E4C5A = .sbss:0x808E4C5A; // type:object size:0x1 data:byte +lbl_808E4C5B = .sbss:0x808E4C5B; // type:object size:0x1 data:byte +lbl_808E4C5C = .sbss:0x808E4C5C; // type:object size:0x1 data:byte +lbl_808E4C5D = .sbss:0x808E4C5D; // type:object size:0x1 data:byte +lbl_808E4C5E = .sbss:0x808E4C5E; // type:object size:0x1 data:byte +lbl_808E4C5F = .sbss:0x808E4C5F; // type:object size:0x1 data:byte +lbl_808E4C60 = .sbss:0x808E4C60; // type:object size:0x8 data:byte +lbl_808E4C68 = .sbss:0x808E4C68; // type:object size:0x2 data:2byte +lbl_808E4C6A = .sbss:0x808E4C6A; // type:object size:0x6 data:2byte +lbl_808E4C70 = .sbss:0x808E4C70; // type:object size:0x1 data:byte +lbl_808E4C72 = .sbss:0x808E4C72; // type:object size:0x2 data:2byte +lbl_808E4C74 = .sbss:0x808E4C74; // type:object size:0x2 data:2byte +lbl_808E4C76 = .sbss:0x808E4C76; // type:object size:0x1 data:byte +lbl_808E4C77 = .sbss:0x808E4C77; // type:object size:0x1 data:byte +lbl_808E4C78 = .sbss:0x808E4C78; // type:object size:0x8 data:byte +lbl_808E4C80 = .sbss:0x808E4C80; // type:object size:0x2 data:2byte +lbl_808E4C82 = .sbss:0x808E4C82; // type:object size:0x6 data:2byte +lbl_808E4C88 = .sbss:0x808E4C88; // type:object size:0x2 data:2byte +lbl_808E4C8A = .sbss:0x808E4C8A; // type:object size:0x6 data:2byte +lbl_808E4C90 = .sbss:0x808E4C90; // type:object size:0x2 data:2byte +lbl_808E4C92 = .sbss:0x808E4C92; // type:object size:0x6 data:2byte +lbl_808E4C98 = .sbss:0x808E4C98; // type:object size:0x1 data:byte +lbl_808E4C99 = .sbss:0x808E4C99; // type:object size:0x1 data:byte +lbl_808E4C9A = .sbss:0x808E4C9A; // type:object size:0x2 data:2byte +lbl_808E4C9C = .sbss:0x808E4C9C; // type:object size:0x2 data:2byte +lbl_808E4CA0 = .sbss:0x808E4CA0; // type:object size:0x1 data:byte +lbl_808E4CA1 = .sbss:0x808E4CA1; // type:object size:0x1 data:byte +lbl_808E4CA2 = .sbss:0x808E4CA2; // type:object size:0x2 data:2byte +lbl_808E4CA4 = .sbss:0x808E4CA4; // type:object size:0x2 data:2byte +lbl_808E4CA8 = .sbss:0x808E4CA8; // type:object size:0x2 data:2byte +lbl_808E4CAA = .sbss:0x808E4CAA; // type:object size:0x6 data:2byte +lbl_808E4CB0 = .sbss:0x808E4CB0; // type:object size:0x1 data:byte +lbl_808E4CB2 = .sbss:0x808E4CB2; // type:object size:0x2 data:2byte +lbl_808E4CB4 = .sbss:0x808E4CB4; // type:object size:0x2 data:2byte +lbl_808E4CB6 = .sbss:0x808E4CB6; // type:object size:0x1 data:byte +lbl_808E4CB7 = .sbss:0x808E4CB7; // type:object size:0x1 data:byte +lbl_808E4CB8 = .sbss:0x808E4CB8; // type:object size:0x1 data:byte +lbl_808E4CB9 = .sbss:0x808E4CB9; // type:object size:0x1 data:byte +lbl_808E4CBA = .sbss:0x808E4CBA; // type:object size:0x1 data:byte +lbl_808E4CBB = .sbss:0x808E4CBB; // type:object size:0x1 data:byte +lbl_808E4CBC = .sbss:0x808E4CBC; // type:object size:0x1 data:byte +lbl_808E4CBD = .sbss:0x808E4CBD; // type:object size:0x1 data:byte +lbl_808E4CBE = .sbss:0x808E4CBE; // type:object size:0x1 data:byte +lbl_808E4CBF = .sbss:0x808E4CBF; // type:object size:0x1 data:byte +lbl_808E4CC0 = .sbss:0x808E4CC0; // type:object size:0x1 data:byte +lbl_808E4CC1 = .sbss:0x808E4CC1; // type:object size:0x7 data:byte +lbl_808E4CC8 = .sbss:0x808E4CC8; // type:object size:0x2 data:2byte +lbl_808E4CCA = .sbss:0x808E4CCA; // type:object size:0x6 data:2byte +lbl_808E4CD0 = .sbss:0x808E4CD0; // type:object size:0x8 data:byte +lbl_808E4CD8 = .sbss:0x808E4CD8; // type:object size:0x1 data:byte +lbl_808E4CD9 = .sbss:0x808E4CD9; // type:object size:0x1 data:byte +lbl_808E4CDA = .sbss:0x808E4CDA; // type:object size:0x2 data:2byte +lbl_808E4CDC = .sbss:0x808E4CDC; // type:object size:0x2 data:2byte +lbl_808E4CE0 = .sbss:0x808E4CE0; // type:object size:0x2 data:2byte +lbl_808E4CE2 = .sbss:0x808E4CE2; // type:object size:0x6 data:2byte +lbl_808E4CE8 = .sbss:0x808E4CE8; // type:object size:0x8 data:2byte +lbl_808E4CF0 = .sbss:0x808E4CF0; // type:object size:0x2 data:2byte +lbl_808E4CF2 = .sbss:0x808E4CF2; // type:object size:0x2 data:2byte +lbl_808E4CF4 = .sbss:0x808E4CF4; // type:object size:0x1 data:byte +lbl_808E4CF5 = .sbss:0x808E4CF5; // type:object size:0x1 data:byte +lbl_808E4CF8 = .sbss:0x808E4CF8; // type:object size:0x1 data:byte +lbl_808E4CF9 = .sbss:0x808E4CF9; // type:object size:0x1 data:byte +lbl_808E4CFA = .sbss:0x808E4CFA; // type:object size:0x1 data:byte +lbl_808E4CFB = .sbss:0x808E4CFB; // type:object size:0x1 data:byte +lbl_808E4CFC = .sbss:0x808E4CFC; // type:object size:0x1 data:byte +lbl_808E4CFD = .sbss:0x808E4CFD; // type:object size:0x1 data:byte +lbl_808E4CFE = .sbss:0x808E4CFE; // type:object size:0x1 data:byte +lbl_808E4CFF = .sbss:0x808E4CFF; // type:object size:0x1 data:byte +lbl_808E4D00 = .sbss:0x808E4D00; // type:object size:0x1 data:byte +lbl_808E4D01 = .sbss:0x808E4D01; // type:object size:0x1 data:byte +lbl_808E4D02 = .sbss:0x808E4D02; // type:object size:0x1 data:byte +lbl_808E4D03 = .sbss:0x808E4D03; // type:object size:0x1 data:byte +lbl_808E4D04 = .sbss:0x808E4D04; // type:object size:0x1 data:byte +lbl_808E4D05 = .sbss:0x808E4D05; // type:object size:0x1 data:byte +lbl_808E4D06 = .sbss:0x808E4D06; // type:object size:0x1 data:byte +lbl_808E4D07 = .sbss:0x808E4D07; // type:object size:0x1 data:byte +lbl_808E4D08 = .sbss:0x808E4D08; // type:object size:0x8 data:byte +lbl_808E4D10 = .sbss:0x808E4D10; // type:object size:0x2 data:2byte +lbl_808E4D12 = .sbss:0x808E4D12; // type:object size:0x6 data:2byte +lbl_808E4D18 = .sbss:0x808E4D18; // type:object size:0x2 data:2byte +lbl_808E4D1A = .sbss:0x808E4D1A; // type:object size:0x2 data:2byte +lbl_808E4D1C = .sbss:0x808E4D1C; // type:object size:0x1 data:byte +lbl_808E4D1D = .sbss:0x808E4D1D; // type:object size:0x1 data:byte +lbl_808E4D1E = .sbss:0x808E4D1E; // type:object size:0x1 data:byte +lbl_808E4D20 = .sbss:0x808E4D20; // type:object size:0x8 data:2byte +lbl_808E4D28 = .sbss:0x808E4D28; // type:object size:0x2 data:2byte +lbl_808E4D2A = .sbss:0x808E4D2A; // type:object size:0x6 data:2byte +lbl_808E4D30 = .sbss:0x808E4D30; // type:object size:0x2 data:2byte +lbl_808E4D32 = .sbss:0x808E4D32; // type:object size:0x2 data:2byte +lbl_808E4D34 = .sbss:0x808E4D34; // type:object size:0x1 data:byte +lbl_808E4D35 = .sbss:0x808E4D35; // type:object size:0x1 data:byte +lbl_808E4D36 = .sbss:0x808E4D36; // type:object size:0x1 data:byte +lbl_808E4D38 = .sbss:0x808E4D38; // type:object size:0x2 data:2byte +lbl_808E4D3A = .sbss:0x808E4D3A; // type:object size:0x6 data:2byte +lbl_808E4D40 = .sbss:0x808E4D40; // type:object size:0x2 data:2byte +lbl_808E4D42 = .sbss:0x808E4D42; // type:object size:0x6 data:2byte +lbl_808E4D48 = .sbss:0x808E4D48; // type:object size:0x2 data:2byte +lbl_808E4D4A = .sbss:0x808E4D4A; // type:object size:0x6 data:2byte +lbl_808E4D50 = .sbss:0x808E4D50; // type:object size:0x2 data:2byte +lbl_808E4D52 = .sbss:0x808E4D52; // type:object size:0x6 data:2byte +lbl_808E4D58 = .sbss:0x808E4D58; // type:object size:0x2 data:2byte +lbl_808E4D5A = .sbss:0x808E4D5A; // type:object size:0x6 data:2byte +lbl_808E4D60 = .sbss:0x808E4D60; // type:object size:0x2 data:2byte +lbl_808E4D62 = .sbss:0x808E4D62; // type:object size:0x6 data:2byte +lbl_808E4D68 = .sbss:0x808E4D68; // type:object size:0x2 data:2byte +lbl_808E4D6A = .sbss:0x808E4D6A; // type:object size:0x6 data:2byte +lbl_808E4D70 = .sbss:0x808E4D70; // type:object size:0x2 data:2byte +lbl_808E4D72 = .sbss:0x808E4D72; // type:object size:0x6 data:2byte +lbl_808E4D78 = .sbss:0x808E4D78; // type:object size:0x1 data:byte +lbl_808E4D79 = .sbss:0x808E4D79; // type:object size:0x1 data:byte +lbl_808E4D7A = .sbss:0x808E4D7A; // type:object size:0x1 data:byte +lbl_808E4D7B = .sbss:0x808E4D7B; // type:object size:0x1 data:byte +lbl_808E4D7C = .sbss:0x808E4D7C; // type:object size:0x1 data:byte +lbl_808E4D7D = .sbss:0x808E4D7D; // type:object size:0x1 data:byte +lbl_808E4D80 = .sbss:0x808E4D80; // type:object size:0x1 data:byte +lbl_808E4D81 = .sbss:0x808E4D81; // type:object size:0x7 data:byte +lbl_808E4D88 = .sbss:0x808E4D88; // type:object size:0x1 data:byte +lbl_808E4D89 = .sbss:0x808E4D89; // type:object size:0x1 data:byte +lbl_808E4D8A = .sbss:0x808E4D8A; // type:object size:0x1 data:byte +lbl_808E4D8B = .sbss:0x808E4D8B; // type:object size:0x1 data:byte +lbl_808E4D8C = .sbss:0x808E4D8C; // type:object size:0x1 data:byte +lbl_808E4D90 = .sbss:0x808E4D90; // type:object size:0x1 data:byte +lbl_808E4D91 = .sbss:0x808E4D91; // type:object size:0x7 data:byte +lbl_808E4D98 = .sbss:0x808E4D98; // type:object size:0x8 data:byte +lbl_808E4DA0 = .sbss:0x808E4DA0; // type:object size:0x8 data:byte +lbl_808E4DA8 = .sbss:0x808E4DA8; // type:object size:0x1 data:byte +lbl_808E4DA9 = .sbss:0x808E4DA9; // type:object size:0x7 data:byte +lbl_808E4DB0 = .sbss:0x808E4DB0; // type:object size:0x1 data:byte +lbl_808E4DB1 = .sbss:0x808E4DB1; // type:object size:0x1 data:byte +lbl_808E4DB2 = .sbss:0x808E4DB2; // type:object size:0x6 data:byte +lbl_808E4DB8 = .sbss:0x808E4DB8; // type:object size:0x2 data:2byte +lbl_808E4DBA = .sbss:0x808E4DBA; // type:object size:0x6 data:2byte +lbl_808E4DC0 = .sbss:0x808E4DC0; // type:object size:0x1 data:byte +lbl_808E4DC1 = .sbss:0x808E4DC1; // type:object size:0x1 data:byte +lbl_808E4DC2 = .sbss:0x808E4DC2; // type:object size:0x2 data:2byte +lbl_808E4DC4 = .sbss:0x808E4DC4; // type:object size:0x2 data:2byte +lbl_808E4DC8 = .sbss:0x808E4DC8; // type:object size:0x1 data:byte +lbl_808E4DC9 = .sbss:0x808E4DC9; // type:object size:0x1 data:byte +lbl_808E4DCA = .sbss:0x808E4DCA; // type:object size:0x2 data:2byte +lbl_808E4DCC = .sbss:0x808E4DCC; // type:object size:0x2 data:2byte +lbl_808E4DD0 = .sbss:0x808E4DD0; // type:object size:0x2 data:2byte +lbl_808E4DD2 = .sbss:0x808E4DD2; // type:object size:0x6 data:2byte +lbl_808E4DD8 = .sbss:0x808E4DD8; // type:object size:0x2 data:2byte +lbl_808E4DDA = .sbss:0x808E4DDA; // type:object size:0x6 data:2byte +lbl_808E4DE0 = .sbss:0x808E4DE0; // type:object size:0x1 data:byte +lbl_808E4DE1 = .sbss:0x808E4DE1; // type:object size:0x1 data:byte +lbl_808E4DE2 = .sbss:0x808E4DE2; // type:object size:0x2 data:2byte +lbl_808E4DE4 = .sbss:0x808E4DE4; // type:object size:0x2 data:2byte +lbl_808E4DE8 = .sbss:0x808E4DE8; // type:object size:0x1 data:byte +lbl_808E4DE9 = .sbss:0x808E4DE9; // type:object size:0x1 data:byte +lbl_808E4DEA = .sbss:0x808E4DEA; // type:object size:0x2 data:2byte +lbl_808E4DEC = .sbss:0x808E4DEC; // type:object size:0x2 data:2byte +lbl_808E4DF0 = .sbss:0x808E4DF0; // type:object size:0x2 data:2byte +lbl_808E4DF2 = .sbss:0x808E4DF2; // type:object size:0x6 data:2byte +lbl_808E4DF8 = .sbss:0x808E4DF8; // type:object size:0x1 data:byte +lbl_808E4DF9 = .sbss:0x808E4DF9; // type:object size:0x1 data:byte +lbl_808E4DFA = .sbss:0x808E4DFA; // type:object size:0x2 data:2byte +lbl_808E4DFC = .sbss:0x808E4DFC; // type:object size:0x2 data:2byte +lbl_808E4E00 = .sbss:0x808E4E00; // type:object size:0x1 data:byte +lbl_808E4E01 = .sbss:0x808E4E01; // type:object size:0x1 data:byte +lbl_808E4E02 = .sbss:0x808E4E02; // type:object size:0x2 data:2byte +lbl_808E4E04 = .sbss:0x808E4E04; // type:object size:0x2 data:2byte +lbl_808E4E08 = .sbss:0x808E4E08; // type:object size:0x8 data:byte +lbl_808E4E10 = .sbss:0x808E4E10; // type:object size:0x8 data:byte +lbl_808E4E18 = .sbss:0x808E4E18; // type:object size:0x2 data:2byte +lbl_808E4E1A = .sbss:0x808E4E1A; // type:object size:0x6 data:2byte +lbl_808E4E20 = .sbss:0x808E4E20; // type:object size:0x1 data:byte +lbl_808E4E21 = .sbss:0x808E4E21; // type:object size:0x1 data:byte +lbl_808E4E22 = .sbss:0x808E4E22; // type:object size:0x1 data:byte +lbl_808E4E23 = .sbss:0x808E4E23; // type:object size:0x1 data:byte +lbl_808E4E24 = .sbss:0x808E4E24; // type:object size:0x1 data:byte +lbl_808E4E28 = .sbss:0x808E4E28; // type:object size:0x8 data:byte +lbl_808E4E30 = .sbss:0x808E4E30; // type:object size:0x1 data:byte +lbl_808E4E31 = .sbss:0x808E4E31; // type:object size:0x1 data:byte +lbl_808E4E32 = .sbss:0x808E4E32; // type:object size:0x1 data:byte +lbl_808E4E33 = .sbss:0x808E4E33; // type:object size:0x1 data:byte +lbl_808E4E34 = .sbss:0x808E4E34; // type:object size:0x1 data:byte +lbl_808E4E35 = .sbss:0x808E4E35; // type:object size:0x1 data:byte +lbl_808E4E36 = .sbss:0x808E4E36; // type:object size:0x1 data:byte +lbl_808E4E37 = .sbss:0x808E4E37; // type:object size:0x1 data:byte +lbl_808E4E38 = .sbss:0x808E4E38; // type:object size:0x1 data:byte +lbl_808E4E39 = .sbss:0x808E4E39; // type:object size:0x7 data:byte +lbl_808E4E40 = .sbss:0x808E4E40; // type:object size:0x1 data:byte +lbl_808E4E41 = .sbss:0x808E4E41; // type:object size:0x7 data:byte +lbl_808E4E48 = .sbss:0x808E4E48; // type:object size:0x1 data:byte +lbl_808E4E49 = .sbss:0x808E4E49; // type:object size:0x1 data:byte +lbl_808E4E4A = .sbss:0x808E4E4A; // type:object size:0x1 data:byte +lbl_808E4E4B = .sbss:0x808E4E4B; // type:object size:0x1 data:byte +lbl_808E4E4C = .sbss:0x808E4E4C; // type:object size:0x1 data:byte +lbl_808E4E4D = .sbss:0x808E4E4D; // type:object size:0x1 data:byte +lbl_808E4E4E = .sbss:0x808E4E4E; // type:object size:0x1 data:byte +lbl_808E4E4F = .sbss:0x808E4E4F; // type:object size:0x1 data:byte +lbl_808E4E50 = .sbss:0x808E4E50; // type:object size:0x1 data:byte +lbl_808E4E51 = .sbss:0x808E4E51; // type:object size:0x1 data:byte +lbl_808E4E52 = .sbss:0x808E4E52; // type:object size:0x1 data:byte +lbl_808E4E53 = .sbss:0x808E4E53; // type:object size:0x5 data:byte +lbl_808E4E58 = .sbss:0x808E4E58; // type:object size:0x1 data:byte +lbl_808E4E59 = .sbss:0x808E4E59; // type:object size:0x1 data:byte +lbl_808E4E5A = .sbss:0x808E4E5A; // type:object size:0x1 data:byte +lbl_808E4E5B = .sbss:0x808E4E5B; // type:object size:0x1 data:byte +lbl_808E4E5C = .sbss:0x808E4E5C; // type:object size:0x1 data:byte +lbl_808E4E60 = .sbss:0x808E4E60; // type:object size:0x1 data:byte +lbl_808E4E61 = .sbss:0x808E4E61; // type:object size:0x1 data:byte +lbl_808E4E62 = .sbss:0x808E4E62; // type:object size:0x1 data:byte +lbl_808E4E63 = .sbss:0x808E4E63; // type:object size:0x1 data:byte +lbl_808E4E64 = .sbss:0x808E4E64; // type:object size:0x1 data:byte +lbl_808E4E65 = .sbss:0x808E4E65; // type:object size:0x1 data:byte +lbl_808E4E66 = .sbss:0x808E4E66; // type:object size:0x1 data:byte +lbl_808E4E67 = .sbss:0x808E4E67; // type:object size:0x1 data:byte +lbl_808E4E68 = .sbss:0x808E4E68; // type:object size:0x1 data:byte +lbl_808E4E69 = .sbss:0x808E4E69; // type:object size:0x1 data:byte +lbl_808E4E6A = .sbss:0x808E4E6A; // type:object size:0x1 data:byte +lbl_808E4E6B = .sbss:0x808E4E6B; // type:object size:0x1 data:byte +lbl_808E4E6C = .sbss:0x808E4E6C; // type:object size:0x1 data:byte +lbl_808E4E6D = .sbss:0x808E4E6D; // type:object size:0x1 data:byte +lbl_808E4E6E = .sbss:0x808E4E6E; // type:object size:0x1 data:byte +lbl_808E4E6F = .sbss:0x808E4E6F; // type:object size:0x1 data:byte +lbl_808E4E70 = .sbss:0x808E4E70; // type:object size:0x1 data:byte +lbl_808E4E71 = .sbss:0x808E4E71; // type:object size:0x1 data:byte +lbl_808E4E72 = .sbss:0x808E4E72; // type:object size:0x6 data:byte +lbl_808E4E78 = .sbss:0x808E4E78; // type:object size:0x8 data:byte +lbl_808E4E80 = .sbss:0x808E4E80; // type:object size:0x1 data:byte +lbl_808E4E81 = .sbss:0x808E4E81; // type:object size:0x7 data:byte +lbl_808E4E88 = .sbss:0x808E4E88; // type:object size:0x4 data:4byte +lbl_808E4E8C = .sbss:0x808E4E8C; // type:object size:0x4 data:4byte +sysopen = .sbss:0x808E4E90; // type:object size:0x4 data:4byte +sndopen = .sbss:0x808E4E94; // type:object size:0x4 data:4byte +numopensounds = .sbss:0x808E4E98; // type:object size:0x4 data:4byte +lbl_808E4E9C = .sbss:0x808E4E9C; // type:object size:0x4 data:4byte +UserOpen = .sbss:0x808E4EA0; // type:object size:0x4 data:4byte +lbl_808E4EA4 = .sbss:0x808E4EA4; // type:object size:0x4 data:4byte +aram = .sbss:0x808E4EA8; // type:object size:0x4 data:4byte +lbl_808E4EAC = .sbss:0x808E4EAC; // type:object size:0x4 data:4byte +mono_output = .sbss:0x808E4EB0; // type:object size:0x4 data:4byte +lbl_808E4EB4 = .sbss:0x808E4EB4; // type:object size:0x4 data:4byte +usermalloc = .sbss:0x808E4EB8; // type:object size:0x4 data:4byte +userfree = .sbss:0x808E4EBC; // type:object size:0x4 data:4byte +lbl_808E4EC0 = .sbss:0x808E4EC0; // type:object size:0x1 data:byte +lbl_808E4EC1 = .sbss:0x808E4EC1; // type:object size:0x1 data:byte +lbl_808E4EC2 = .sbss:0x808E4EC2; // type:object size:0x1 data:byte +lbl_808E4EC3 = .sbss:0x808E4EC3; // type:object size:0x5 data:byte +lbl_808E4EC8 = .sbss:0x808E4EC8; // type:object size:0x8 data:byte +errno = .sbss:0x808E4ED0; // type:object size:0x8 scope:global data:4byte +lbl_808E4ED8 = .sbss:0x808E4ED8; // type:object size:0x8 data:4byte +lbl_808E4EE0 = .sbss:0x808E4EE0; // type:object size:0x4 data:4byte +__stdio_exit = .sbss:0x808E4EE4; // type:object size:0x4 scope:global data:4byte +__msl_constraint_handler = .sbss:0x808E4EE8; // type:object size:0x4 scope:local data:4byte +lbl_808E4EF0 = .sbss:0x808E4EF0; // type:object size:0x8 data:double +lbl_808E4EF8 = .sbss:0x808E4EF8; // type:object size:0x8 data:double +__global_destructor_chain = .sbss:0x808E4F00; // type:object size:0x4 scope:global data:4byte +lbl_808E4F08 = .sbss:0x808E4F08; // type:object size:0x8 data:4byte +TRK_mainError = .sbss:0x808E4F10; // type:object size:0x4 scope:local data:4byte +lbl_808E4F18 = .sbss:0x808E4F18; // type:object size:0x8 data:4byte +TRK_Use_BBA = .sbss:0x808E4F20; // type:object size:0x1 scope:global data:byte +lbl_808E4F28 = .sbss:0x808E4F28; // type:object size:0x8 data:4byte +gTRKInputPendingPtr = .sbss:0x808E4F30; // type:object size:0x4 scope:global data:4byte +lbl_808E4F38 = .sbss:0x808E4F38; // type:object size:0x8 data:2byte +lbl_808E4F40 = .sbss:0x808E4F40; // type:object size:0x4 data:4byte +lbl_808E4F44 = .sbss:0x808E4F44; // type:object size:0x4 data:4byte +TRK_saved_exceptionID = .sbss:0x808E4F48; // type:object size:0x2 scope:local data:2byte +lbl_808E4F50 = .sbss:0x808E4F50; // type:object size:0x8 data:byte +lbl_808E4F58 = .sbss:0x808E4F58; // type:object size:0x4 data:4byte +lbl_808E4F5C = .sbss:0x808E4F5C; // type:object size:0x4 data:4byte +lbl_808E4F60 = .sbss:0x808E4F60; // type:object size:0x1 data:byte +lbl_808E4F64 = .sbss:0x808E4F64; // type:object size:0x4 data:4byte +lbl_808E4F68 = .sbss:0x808E4F68; // type:object size:0x8 data:4byte +lbl_808E4F70 = .sbss:0x808E4F70; // type:object size:0x4 data:4byte +lbl_808E4F74 = .sbss:0x808E4F74; // type:object size:0x4 data:4byte +lbl_808E4F78 = .sbss:0x808E4F78; // type:object size:0x4 data:4byte +lbl_808E4F7C = .sbss:0x808E4F7C; // type:object size:0x4 data:4byte +lbl_808E4F80 = .sbss:0x808E4F80; // type:object size:0x4 data:4byte +lbl_808E4F84 = .sbss:0x808E4F84; // type:object size:0x4 data:4byte +lbl_808E4F88 = .sbss:0x808E4F88; // type:object size:0x4 data:4byte +lbl_808E4F8C = .sbss:0x808E4F8C; // type:object size:0x4 data:4byte +lbl_808E4F90 = .sbss:0x808E4F90; // type:object size:0x4 data:4byte +lbl_808E4F94 = .sbss:0x808E4F94; // type:object size:0x4 data:4byte +lbl_808E4F98 = .sbss:0x808E4F98; // type:object size:0x4 data:4byte +lbl_808E4F9C = .sbss:0x808E4F9C; // type:object size:0x4 data:4byte +lbl_808E4FA0 = .sbss:0x808E4FA0; // type:object size:0x4 data:4byte +lbl_808E4FA4 = .sbss:0x808E4FA4; // type:object size:0x4 data:4byte +lbl_808E4FA8 = .sbss:0x808E4FA8; // type:object size:0x8 data:4byte +lbl_808E4FB0 = .sbss:0x808E4FB0; // type:object size:0x8 data:4byte +lbl_808E4FB8 = .sbss:0x808E4FB8; // type:object size:0x8 data:4byte +lbl_808E4FC0 = .sbss:0x808E4FC0; // type:object size:0x4 data:4byte +lbl_808E4FC4 = .sbss:0x808E4FC4; // type:object size:0x4 data:4byte +lbl_808E4FC8 = .sbss:0x808E4FC8; // type:object size:0x4 data:4byte +lbl_808E4FCC = .sbss:0x808E4FCC; // type:object size:0x4 data:4byte +lbl_808E4FD0 = .sbss:0x808E4FD0; // type:object size:0x4 data:4byte +lbl_808E4FD4 = .sbss:0x808E4FD4; // type:object size:0x4 data:4byte +lbl_808E4FD8 = .sbss:0x808E4FD8; // type:object size:0x4 data:4byte +lbl_808E4FDC = .sbss:0x808E4FDC; // type:object size:0x4 data:4byte +lbl_808E4FE0 = .sbss:0x808E4FE0; // type:object size:0x4 data:4byte +lbl_808E4FE4 = .sbss:0x808E4FE4; // type:object size:0x4 data:4byte +lbl_808E4FE8 = .sbss:0x808E4FE8; // type:object size:0x4 data:4byte +lbl_808E4FEC = .sbss:0x808E4FEC; // type:object size:0x4 data:4byte +lbl_808E4FF0 = .sbss:0x808E4FF0; // type:object size:0x4 data:4byte +lbl_808E4FF4 = .sbss:0x808E4FF4; // type:object size:0x4 data:4byte +lbl_808E4FF8 = .sbss:0x808E4FF8; // type:object size:0x4 data:4byte +lbl_808E4FFC = .sbss:0x808E4FFC; // type:object size:0x4 +lbl_808E5000 = .sbss:0x808E5000; // type:object size:0x4 +lbl_808E5004 = .sbss:0x808E5004; // type:object size:0x4 +lbl_808E5008 = .sbss:0x808E5008; // type:object size:0x2 data:2byte +lbl_808E500A = .sbss:0x808E500A; // type:object size:0x2 data:2byte +lbl_808E500C = .sbss:0x808E500C; // type:object size:0x2 data:2byte +lbl_808E500E = .sbss:0x808E500E; // type:object size:0x2 data:2byte +lbl_808E5010 = .sbss:0x808E5010; // type:object size:0x2 data:2byte +lbl_808E5014 = .sbss:0x808E5014; // type:object size:0x4 data:4byte +lbl_808E5018 = .sbss:0x808E5018; // type:object size:0x4 data:4byte +lbl_808E501C = .sbss:0x808E501C; // type:object size:0x4 data:4byte +lbl_808E5020 = .sbss:0x808E5020; // type:object size:0x4 data:4byte +lbl_808E5024 = .sbss:0x808E5024; // type:object size:0x4 data:4byte +lbl_808E5028 = .sbss:0x808E5028; // type:object size:0x8 data:4byte +lbl_808E5030 = .sbss:0x808E5030; // type:object size:0x4 data:4byte +lbl_808E5034 = .sbss:0x808E5034; // type:object size:0x4 data:4byte +lbl_808E5038 = .sbss:0x808E5038; // type:object size:0x4 data:4byte +lbl_808E503C = .sbss:0x808E503C; // type:object size:0x4 data:4byte +lbl_808E5040 = .sbss:0x808E5040; // type:object size:0x8 data:4byte +lbl_808E5048 = .sbss:0x808E5048; // type:object size:0x8 +lbl_808E5050 = .sbss:0x808E5050; // type:object size:0x4 data:4byte +lbl_808E5054 = .sbss:0x808E5054; // type:object size:0x4 data:4byte +lbl_808E5058 = .sbss:0x808E5058; // type:object size:0x4 data:4byte +lbl_808E505C = .sbss:0x808E505C; // type:object size:0x4 data:4byte +lbl_808E5060 = .sbss:0x808E5060; // type:object size:0x4 data:4byte +lbl_808E5064 = .sbss:0x808E5064; // type:object size:0x4 data:4byte +lbl_808E5068 = .sbss:0x808E5068; // type:object size:0x8 data:4byte +lbl_808E5070 = .sbss:0x808E5070; // type:object size:0x4 data:4byte +lbl_808E5074 = .sbss:0x808E5074; // type:object size:0x4 data:4byte +lbl_808E5078 = .sbss:0x808E5078; // type:object size:0x4 data:4byte +lbl_808E507C = .sbss:0x808E507C; // type:object size:0x4 data:4byte +lbl_808E5080 = .sbss:0x808E5080; // type:object size:0x4 data:4byte +lbl_808E5084 = .sbss:0x808E5084; // type:object size:0x4 data:4byte +lbl_808E5088 = .sbss:0x808E5088; // type:object size:0x4 data:4byte +lbl_808E508C = .sbss:0x808E508C; // type:object size:0x4 data:4byte +lbl_808E5090 = .sbss:0x808E5090; // type:object size:0x4 data:4byte +lbl_808E5094 = .sbss:0x808E5094; // type:object size:0x4 data:4byte +lbl_808E5098 = .sbss:0x808E5098; // type:object size:0x4 data:4byte +lbl_808E509C = .sbss:0x808E509C; // type:object size:0x4 data:4byte +lbl_808E50A0 = .sbss:0x808E50A0; // type:object size:0x4 data:4byte +lbl_808E50A4 = .sbss:0x808E50A4; // type:object size:0x4 data:4byte +lbl_808E50A8 = .sbss:0x808E50A8; // type:object size:0x4 data:4byte +lbl_808E50AC = .sbss:0x808E50AC; // type:object size:0x4 data:4byte +lbl_808E50B0 = .sbss:0x808E50B0; // type:object size:0x4 data:4byte +lbl_808E50B4 = .sbss:0x808E50B4; // type:object size:0x4 data:4byte +lbl_808E50B8 = .sbss:0x808E50B8; // type:object size:0x4 data:4byte +lbl_808E50BC = .sbss:0x808E50BC; // type:object size:0x4 data:4byte +lbl_808E50C0 = .sbss:0x808E50C0; // type:object size:0x4 data:4byte +lbl_808E50C4 = .sbss:0x808E50C4; // type:object size:0x4 data:4byte +lbl_808E50C8 = .sbss:0x808E50C8; // type:object size:0x4 data:4byte +lbl_808E50CC = .sbss:0x808E50CC; // type:object size:0x4 data:4byte +lbl_808E50D0 = .sbss:0x808E50D0; // type:object size:0x4 data:4byte +lbl_808E50D4 = .sbss:0x808E50D4; // type:object size:0x4 data:4byte +lbl_808E50D8 = .sbss:0x808E50D8; // type:object size:0x8 data:4byte +lbl_808E50E0 = .sbss:0x808E50E0; // type:object size:0x4 data:4byte +lbl_808E50E4 = .sbss:0x808E50E4; // type:object size:0x4 data:4byte +lbl_808E50E8 = .sbss:0x808E50E8; // type:object size:0x4 data:4byte +lbl_808E50EC = .sbss:0x808E50EC; // type:object size:0x4 data:4byte +lbl_808E50F0 = .sbss:0x808E50F0; // type:object size:0x1 data:byte +lbl_808E50F1 = .sbss:0x808E50F1; // type:object size:0x1 data:byte +lbl_808E50F4 = .sbss:0x808E50F4; // type:object size:0x4 data:4byte +lbl_808E50F8 = .sbss:0x808E50F8; // type:object size:0x4 data:4byte +lbl_808E50FC = .sbss:0x808E50FC; // type:object size:0x1 data:byte +lbl_808E5100 = .sbss:0x808E5100; // type:object size:0x4 data:4byte +lbl_808E5104 = .sbss:0x808E5104; // type:object size:0x4 data:4byte +lbl_808E5108 = .sbss:0x808E5108; // type:object size:0x4 data:4byte +lbl_808E510C = .sbss:0x808E510C; // type:object size:0x4 data:4byte +lbl_808E5110 = .sbss:0x808E5110; // type:object size:0x1 data:byte +lbl_808E5114 = .sbss:0x808E5114; // type:object size:0x4 data:4byte +lbl_808E5118 = .sbss:0x808E5118; // type:object size:0x4 data:4byte +lbl_808E511C = .sbss:0x808E511C; // type:object size:0x4 data:4byte +lbl_808E5120 = .sbss:0x808E5120; // type:object size:0x8 data:byte +lbl_808E5128 = .sbss:0x808E5128; // type:object size:0x8 data:4byte +lbl_808E5130 = .sbss:0x808E5130; // type:object size:0x8 data:4byte +lbl_808E5138 = .sbss:0x808E5138; // type:object size:0x4 data:4byte +lbl_808E513C = .sbss:0x808E513C; // type:object size:0x4 data:4byte +lbl_808E5140 = .sbss:0x808E5140; // type:object size:0x4 data:4byte +lbl_808E5144 = .sbss:0x808E5144; // type:object size:0x4 data:4byte +lbl_808E5148 = .sbss:0x808E5148; // type:object size:0x4 data:4byte +lbl_808E514C = .sbss:0x808E514C; // type:object size:0x4 data:4byte +lbl_808E5150 = .sbss:0x808E5150; // type:object size:0x8 data:4byte +__DVDThreadQueue = .sbss:0x808E5158; // type:object size:0x8 scope:global +MaxEntryNum = .sbss:0x808E5160; // type:object size:0x4 scope:local data:4byte +FstStringStart = .sbss:0x808E5164; // type:object size:0x4 scope:local data:4byte +FstStart = .sbss:0x808E5168; // type:object size:0x4 scope:local data:4byte +BootInfo = .sbss:0x808E516C; // type:object size:0x4 scope:local data:4byte +lbl_808E5180 = .sbss:0x808E5180; // type:object size:0x4 data:4byte +lbl_808E5184 = .sbss:0x808E5184; // type:object size:0x4 data:4byte +lbl_808E5188 = .sbss:0x808E5188; // type:object size:0x4 data:4byte +lbl_808E518C = .sbss:0x808E518C; // type:object size:0x4 data:4byte +lbl_808E5190 = .sbss:0x808E5190; // type:object size:0x4 data:4byte +lbl_808E5194 = .sbss:0x808E5194; // type:object size:0x4 data:4byte +lbl_808E5198 = .sbss:0x808E5198; // type:object size:0x4 data:4byte +FirstTimeInBootrom = .sbss:0x808E519C; // type:object size:0x4 scope:local data:4byte +lbl_808E51A0 = .sbss:0x808E51A0; // type:object size:0x4 data:4byte +lbl_808E51A4 = .sbss:0x808E51A4; // type:object size:0x4 data:4byte +lbl_808E51A8 = .sbss:0x808E51A8; // type:object size:0x4 data:4byte +lbl_808E51AC = .sbss:0x808E51AC; // type:object size:0x4 data:4byte +lbl_808E51B0 = .sbss:0x808E51B0; // type:object size:0x4 data:4byte +lbl_808E51B4 = .sbss:0x808E51B4; // type:object size:0x4 data:4byte +__DVDLayoutFormat = .sbss:0x808E51B8; // type:object size:0x4 scope:global data:4byte +DVDInitialized = .sbss:0x808E51BC; // type:object size:0x4 scope:local data:4byte +lbl_808E51C0 = .sbss:0x808E51C0; // type:object size:0x4 data:4byte +lbl_808E51C4 = .sbss:0x808E51C4; // type:object size:0x4 data:4byte +lbl_808E51C8 = .sbss:0x808E51C8; // type:object size:0x4 data:4byte +lbl_808E51CC = .sbss:0x808E51CC; // type:object size:0x4 data:4byte +lbl_808E51D0 = .sbss:0x808E51D0; // type:object size:0x10 data:4byte +__DVDNumTmdBytes = .sbss:0x808E51E0; // type:object size:0x4 scope:local data:4byte +lbl_808E51E8 = .sbss:0x808E51E8; // type:object size:0x4 data:4byte +lbl_808E51EC = .sbss:0x808E51EC; // type:object size:0x4 data:4byte +MotorState = .sbss:0x808E51F0; // type:object size:0x4 scope:local data:4byte +lbl_808E51F4 = .sbss:0x808E51F4; // type:object size:0x4 data:4byte +lbl_808E51F8 = .sbss:0x808E51F8; // type:object size:0x4 data:4byte +lbl_808E51FC = .sbss:0x808E51FC; // type:object size:0x4 data:4byte +lbl_808E5200 = .sbss:0x808E5200; // type:object size:0x4 data:4byte +lbl_808E5204 = .sbss:0x808E5204; // type:object size:0x4 data:4byte +bootInfo = .sbss:0x808E5208; // type:object size:0x4 scope:local data:4byte +IDShouldBe = .sbss:0x808E520C; // type:object size:0x4 scope:local data:4byte +lbl_808E5210 = .sbss:0x808E5210; // type:object size:0x4 data:4byte +lbl_808E5214 = .sbss:0x808E5214; // type:object size:0x4 data:4byte +lbl_808E5218 = .sbss:0x808E5218; // type:object size:0x4 data:4byte +lbl_808E521C = .sbss:0x808E521C; // type:object size:0x4 data:4byte +lbl_808E5220 = .sbss:0x808E5220; // type:object size:0x8 data:4byte +FatalFunc = .sbss:0x808E5228; // type:object size:0x4 scope:local data:4byte +lowIntType = .sbss:0x808E5230; // type:object size:0x4 scope:local data:4byte +lbl_808E5238 = .sbss:0x808E5238; // type:object size:0x1 data:byte +lbl_808E5239 = .sbss:0x808E5239; // type:object size:0x1 data:byte +lbl_808E523C = .sbss:0x808E523C; // type:object size:0x4 data:4byte +lbl_808E5240 = .sbss:0x808E5240; // type:object size:0x4 data:4byte +lbl_808E5244 = .sbss:0x808E5244; // type:object size:0x1 data:byte +lbl_808E5245 = .sbss:0x808E5245; // type:object size:0x1 data:byte +lbl_808E5248 = .sbss:0x808E5248; // type:object size:0x4 data:4byte +lbl_808E524C = .sbss:0x808E524C; // type:object size:0x4 data:4byte +lbl_808E5250 = .sbss:0x808E5250; // type:object size:0x4 data:4byte +lbl_808E5254 = .sbss:0x808E5254; // type:object size:0x4 data:4byte +lbl_808E5258 = .sbss:0x808E5258; // type:object size:0x8 data:byte +lbl_808E5260 = .sbss:0x808E5260; // type:object size:0x4 data:4byte +lbl_808E5264 = .sbss:0x808E5264; // type:object size:0x4 data:4byte +lbl_808E5268 = .sbss:0x808E5268; // type:object size:0x4 data:4byte +lbl_808E526C = .sbss:0x808E526C; // type:object size:0x4 data:4byte +IDSerialPort1 = .sbss:0x808E5270; // type:object size:0x4 scope:local data:4byte +lbl_808E5278 = .sbss:0x808E5278; // type:object size:0x4 data:4byte +lbl_808E527C = .sbss:0x808E527C; // type:object size:0x4 data:4byte +lbl_808E5280 = .sbss:0x808E5280; // type:object size:0x4 data:4byte +lbl_808E5284 = .sbss:0x808E5284; // type:object size:0x4 data:4byte +__fsInitialized = .sbss:0x808E5288; // type:object size:0x4 scope:local data:4byte +__devfs = .sbss:0x808E528C; // type:object size:0x4 scope:local data:4byte +lbl_808E5290 = .sbss:0x808E5290; // type:object size:0x4 data:4byte +lo$688 = .sbss:0x808E5294; // type:object size:0x4 scope:local data:4byte +hi$689 = .sbss:0x808E5298; // type:object size:0x4 scope:local data:4byte +hId = .sbss:0x808E529C; // type:object size:0x4 scope:local data:4byte +__piReg = .sbss:0x808E52A0; // type:object size:0x4 scope:global data:4byte +__cpReg = .sbss:0x808E52A4; // type:object size:0x4 scope:global data:4byte +__peReg = .sbss:0x808E52A8; // type:object size:0x4 scope:global data:4byte +__memReg = .sbss:0x808E52AC; // type:object size:0x4 scope:global data:4byte +lbl_808E52B0 = .sbss:0x808E52B0; // type:object size:0x8 data:4byte +lbl_808E52B8 = .sbss:0x808E52B8; // type:object size:0x4 data:4byte +lbl_808E52BC = .sbss:0x808E52BC; // type:object size:0x4 data:4byte +lbl_808E52C0 = .sbss:0x808E52C0; // type:object size:0x4 data:4byte +@LOCAL@GXInit__FPvUl@shutdownFuncRegistered = .sbss:0x808E52C4; // type:object size:0x4 scope:weak data:4byte +lbl_808E52C8 = .sbss:0x808E52C8; // type:object size:0x1 data:byte +lbl_808E52C9 = .sbss:0x808E52C9; // type:object size:0x1 data:byte +lbl_808E52CC = .sbss:0x808E52CC; // type:object size:0x4 data:4byte +lbl_808E52D0 = .sbss:0x808E52D0; // type:object size:0x4 data:4byte +lbl_808E52D4 = .sbss:0x808E52D4; // type:object size:0x4 data:4byte +lbl_808E52D8 = .sbss:0x808E52D8; // type:object size:0x4 data:4byte +lbl_808E52DC = .sbss:0x808E52DC; // type:object size:0x4 data:4byte +lbl_808E52E0 = .sbss:0x808E52E0; // type:object size:0x8 data:byte +lbl_808E52E8 = .sbss:0x808E52E8; // type:object size:0x8 +lbl_808E52F0 = .sbss:0x808E52F0; // type:object size:0x1 data:byte +lbl_808E52F4 = .sbss:0x808E52F4; // type:object size:0x4 data:4byte +lbl_808E52F8 = .sbss:0x808E52F8; // type:object size:0x8 data:4byte +lbl_808E5300 = .sbss:0x808E5300; // type:object size:0x8 data:4byte +lbl_808E5308 = .sbss:0x808E5308; // type:object size:0x1 data:byte +lbl_808E530C = .sbss:0x808E530C; // type:object size:0x4 data:4byte +lbl_808E5310 = .sbss:0x808E5310; // type:object size:0x4 data:4byte +lbl_808E5314 = .sbss:0x808E5314; // type:object size:0x4 data:4byte +lbl_808E5318 = .sbss:0x808E5318; // type:object size:0x8 data:4byte +lbl_808E5320 = .sbss:0x808E5320; // type:object size:0x4 data:4byte +lbl_808E5324 = .sbss:0x808E5324; // type:object size:0x4 data:4byte +lbl_808E5328 = .sbss:0x808E5328; // type:object size:0x4 data:4byte +@LOCAL@IPCCltInit__Fv@initialized = .sbss:0x808E532C; // type:object size:0x4 scope:weak data:4byte +IpcNumPendingReqs = .sbss:0x808E5330; // type:object size:0x4 scope:local data:4byte +IpcNumUnIssuedReqs = .sbss:0x808E5334; // type:object size:0x4 scope:local data:4byte +lbl_808E5338 = .sbss:0x808E5338; // type:object size:0x4 data:4byte +lbl_808E533C = .sbss:0x808E533C; // type:object size:0x4 data:4byte +lbl_808E5340 = .sbss:0x808E5340; // type:object size:0x4 data:4byte +lbl_808E5344 = .sbss:0x808E5344; // type:object size:0x4 data:4byte +lbl_808E5348 = .sbss:0x808E5348; // type:object size:0x4 data:4byte +lbl_808E534C = .sbss:0x808E534C; // type:object size:0x1 data:byte +lbl_808E5350 = .sbss:0x808E5350; // type:object size:0x4 data:4byte +lbl_808E5354 = .sbss:0x808E5354; // type:object size:0x4 data:4byte +lbl_808E5358 = .sbss:0x808E5358; // type:object size:0x8 data:double +lbl_808E5360 = .sbss:0x808E5360; // type:object size:0x8 data:double +lbl_808E5368 = .sbss:0x808E5368; // type:object size:0x8 data:double +lbl_808E5370 = .sbss:0x808E5370; // type:object size:0x2 data:2byte +lbl_808E5372 = .sbss:0x808E5372; // type:object size:0x1 data:byte +lbl_808E5373 = .sbss:0x808E5373; // type:object size:0x1 data:byte +lbl_808E5374 = .sbss:0x808E5374; // type:object size:0x1 data:byte +lbl_808E5375 = .sbss:0x808E5375; // type:object size:0x1 data:byte +lbl_808E5376 = .sbss:0x808E5376; // type:object size:0x2 data:2byte +lbl_808E5378 = .sbss:0x808E5378; // type:object size:0x1 data:byte +lbl_808E5379 = .sbss:0x808E5379; // type:object size:0x1 data:byte +lbl_808E537A = .sbss:0x808E537A; // type:object size:0x1 data:byte +lbl_808E537C = .sbss:0x808E537C; // type:object size:0x4 data:float +lbl_808E5380 = .sbss:0x808E5380; // type:object size:0x8 data:float +lbl_808E5388 = .sbss:0x808E5388; // type:object size:0x8 data:4byte +lbl_808E5390 = .sbss:0x808E5390; // type:object size:0x4 data:4byte +lbl_808E5394 = .sbss:0x808E5394; // type:object size:0x1 data:byte +lbl_808E5398 = .sbss:0x808E5398; // type:object size:0x8 data:4byte +lbl_808E53A0 = .sbss:0x808E53A0; // type:object size:0x4 data:4byte +lbl_808E53A4 = .sbss:0x808E53A4; // type:object size:0x4 data:4byte +lbl_808E53A8 = .sbss:0x808E53A8; // type:object size:0x8 data:byte +lbl_808E53B0 = .sbss:0x808E53B0; // type:object size:0x8 data:4byte +__MIXChannel = .sbss:0x808E53B8; // type:object size:0x4 data:4byte +lbl_808E53BC = .sbss:0x808E53BC; // type:object size:0x4 data:4byte +__MIXMaxVoices = .sbss:0x808E53C0; // type:object size:0x4 data:4byte +__MIXSoundMode = .sbss:0x808E53C4; // type:object size:0x4 data:4byte +lbl_808E53C8 = .sbss:0x808E53C8; // type:object size:0x8 data:4byte +s_libState = .sbss:0x808E53D0; // type:object size:0x4 scope:local data:4byte +s_callback = .sbss:0x808E53D8; // type:object size:0x4 scope:local data:4byte +s_stage = .sbss:0x808E53DC; // type:object size:0x4 scope:local data:4byte +NANDErrorFunc = .sbss:0x808E53E0; // type:object size:0x4 scope:local data:4byte +lbl_808E53E8 = .sbss:0x808E53E8; // type:object size:0x4 data:4byte +lbl_808E53EC = .sbss:0x808E53EC; // type:object size:0x4 data:4byte +__OSInIPL = .sbss:0x808E53F0; // type:object size:0x4 scope:global data:4byte +__OSInNandBoot = .sbss:0x808E53F4; // type:object size:0x4 scope:global data:4byte +__OSIsGcam = .sbss:0x808E53F8; // type:object size:0x4 scope:weak data:4byte +ZeroF = .sbss:0x808E5400; // type:object size:0x8 scope:local data:double +ZeroPS = .sbss:0x808E5408; // type:object size:0x8 scope:local +AreWeInitialized = .sbss:0x808E5410; // type:object size:0x4 scope:local data:4byte +OSExceptionTable = .sbss:0x808E5414; // type:object size:0x4 scope:local data:4byte +lbl_808E5418 = .sbss:0x808E5418; // type:object size:0x8 data:byte +BI2DebugFlagHolder = .sbss:0x808E5420; // type:object size:0x4 scope:local data:4byte +BI2DebugFlag = .sbss:0x808E5424; // type:object size:0x4 scope:local data:4byte +BootInfo = .sbss:0x808E5428; // type:object size:0x4 scope:local data:4byte +__OSStartTime = .sbss:0x808E5430; // type:object size:0x8 scope:global data:4byte +AlarmQueue = .sbss:0x808E5438; // type:object size:0x8 scope:local data:4byte +lbl_808E5440 = .sbss:0x808E5440; // type:object size:0x8 data:4byte +__OSArenaHi = .sbss:0x808E5448; // type:object size:0x4 scope:local data:4byte +s_mem2ArenaHi = .sbss:0x808E544C; // type:object size:0x4 scope:local data:4byte +lbl_808E5450 = .sbss:0x808E5450; // type:object size:0x4 data:4byte +lbl_808E5454 = .sbss:0x808E5454; // type:object size:0x4 data:4byte +lbl_808E5458 = .sbss:0x808E5458; // type:object size:0x4 data:4byte +__OSInReboot = .sbss:0x808E545C; // type:object size:0x4 scope:global data:4byte +lbl_808E5460 = .sbss:0x808E5460; // type:object size:0x8 data:4byte +lbl_808E5468 = .sbss:0x808E5468; // type:object size:0x4 data:4byte +lbl_808E546C = .sbss:0x808E546C; // type:object size:0x4 data:4byte +lbl_808E5470 = .sbss:0x808E5470; // type:object size:0x4 data:4byte +lbl_808E5474 = .sbss:0x808E5474; // type:object size:0x4 data:4byte +__OSLastInterruptSrr0 = .sbss:0x808E5478; // type:object size:0x4 scope:global data:4byte +__OSLastInterrupt = .sbss:0x808E547C; // type:object size:0x2 scope:global data:2byte +__OSLastInterruptTime = .sbss:0x808E5480; // type:object size:0x8 scope:global data:4byte +InterruptHandlerTable = .sbss:0x808E5488; // type:object size:0x4 scope:local data:4byte +@LOCAL@__OSInitMemoryProtection__Fv@initialized = .sbss:0x808E5490; // type:object size:0x4 scope:weak data:4byte +lbl_808E5498 = .sbss:0x808E5498; // type:object size:0x4 data:4byte +lbl_808E549C = .sbss:0x808E549C; // type:object size:0x4 data:4byte +lbl_808E54A0 = .sbss:0x808E54A0; // type:object size:0x4 data:4byte +lbl_808E54A4 = .sbss:0x808E54A4; // type:object size:0x4 data:4byte +ShutdownFunctionQueue = .sbss:0x808E54A8; // type:object size:0x8 scope:local data:4byte +Reschedule = .sbss:0x808E54B0; // type:object size:0x4 scope:local data:4byte +RunQueueHint = .sbss:0x808E54B4; // type:object size:0x4 scope:local data:4byte +RunQueueBits = .sbss:0x808E54B8; // type:object size:0x4 scope:local data:4byte +IpcBufferHi = .sbss:0x808E54C0; // type:object size:0x4 scope:local data:4byte +ResetDown = .sbss:0x808E54C8; // type:object size:0x4 scope:local data:4byte +StmReady = .sbss:0x808E54CC; // type:object size:0x4 scope:local data:4byte +StmImDesc = .sbss:0x808E54D0; // type:object size:0x4 scope:local data:4byte +StmEhDesc = .sbss:0x808E54D4; // type:object size:0x4 scope:local data:4byte +StmEhRegistered = .sbss:0x808E54D8; // type:object size:0x4 scope:local data:4byte +StmVdInUse = .sbss:0x808E54DC; // type:object size:0x4 scope:local data:4byte +PowerCallback = .sbss:0x808E54E0; // type:object size:0x4 scope:local data:4byte +ResetCallback = .sbss:0x808E54E4; // type:object size:0x4 scope:local data:4byte +Debug_BBA = .sbss:0x808E54E8; // type:object size:0x1 scope:local data:byte +PlayRecordGet = .sbss:0x808E54F0; // type:object size:0x4 scope:local data:4byte +PlayRecordError = .sbss:0x808E54F4; // type:object size:0x4 scope:local data:4byte +PlayRecordTerminate = .sbss:0x808E54F8; // type:object size:0x4 scope:local data:4byte +PlayRecordTerminated = .sbss:0x808E54FC; // type:object size:0x4 scope:local data:4byte +PlayRecordRetry = .sbss:0x808E5500; // type:object size:0x4 scope:local data:4byte +PlayRecordLastError = .sbss:0x808E5504; // type:object size:0x4 scope:local data:4byte +lbl_808E5508 = .sbss:0x808E5508; // type:object size:0x4 data:4byte +lbl_808E550C = .sbss:0x808E550C; // type:object size:0x4 data:4byte +lbl_808E5510 = .sbss:0x808E5510; // type:object size:0x4 data:4byte +__OSExpireSetExpiredFlag = .sbss:0x808E5514; // type:object size:0x4 scope:global data:4byte +__OSExpireCallback = .sbss:0x808E5518; // type:object size:0x4 scope:global data:4byte +__OSExpireTime = .sbss:0x808E5520; // type:object size:0x8 scope:global data:4byte +__PADSpec = .sbss:0x808E5528; // type:object size:0x4 scope:global data:4byte +lbl_808E5530 = .sbss:0x808E5530; // type:object size:0x8 data:4byte +BgJobStatus = .sbss:0x808E5538; // type:object size:0x1 scope:local data:byte +ItemRestSize = .sbss:0x808E553C; // type:object size:0x4 scope:local data:4byte +ItemNumTotal = .sbss:0x808E5540; // type:object size:0x4 scope:local data:4byte +lbl_808E5544 = .sbss:0x808E5544; // type:object size:0x4 data:4byte +ItemIDOffsetTblOffset = .sbss:0x808E5548; // type:object size:0x4 scope:local data:4byte +IsDevKit = .sbss:0x808E554C; // type:object size:0x1 scope:local data:byte +lbl_808E554D = .sbss:0x808E554D; // type:object size:0x1 data:byte +Initialized = .sbss:0x808E554E; // type:object size:0x1 scope:local data:byte +lbl_808E5550 = .sbss:0x808E5550; // type:object size:0x8 +lbl_808E5558 = .sbss:0x808E5558; // type:object size:0x4 +@LOCAL@SIInit__Fv@Initialized = .sbss:0x808E555C; // type:object size:0x4 scope:weak data:4byte +@LOCAL@SIGetType__Fl@cmdTypeAndStatus = .sbss:0x808E5560; // type:object size:0x4 scope:weak +lbl_808E5564 = .sbss:0x808E5564; // type:object size:0x4 data:4byte +SamplingRate = .sbss:0x808E5568; // type:object size:0x4 scope:local data:4byte +lbl_808E5570 = .sbss:0x808E5570; // type:object size:0x4 data:4byte +lbl_808E5574 = .sbss:0x808E5574; // type:object size:0x4 data:4byte +lbl_808E5578 = .sbss:0x808E5578; // type:object size:0x8 data:byte +lbl_808E5580 = .sbss:0x808E5580; // type:object size:0x4 data:4byte +lbl_808E5584 = .sbss:0x808E5584; // type:object size:0x4 data:4byte +lbl_808E5588 = .sbss:0x808E5588; // type:object size:0x4 data:4byte +lbl_808E558C = .sbss:0x808E558C; // type:object size:0x4 data:4byte +lbl_808E5590 = .sbss:0x808E5590; // type:object size:0x4 data:4byte +lbl_808E5594 = .sbss:0x808E5594; // type:object size:0x4 data:4byte +lbl_808E5598 = .sbss:0x808E5598; // type:object size:0x4 data:4byte +lbl_808E559C = .sbss:0x808E559C; // type:object size:0x4 data:4byte +lbl_808E55A0 = .sbss:0x808E55A0; // type:object size:0x4 data:4byte +lbl_808E55A4 = .sbss:0x808E55A4; // type:object size:0x4 data:4byte +lbl_808E55A8 = .sbss:0x808E55A8; // type:object size:0x4 data:4byte +lbl_808E55AC = .sbss:0x808E55AC; // type:object size:0x2 data:2byte +lbl_808E55AE = .sbss:0x808E55AE; // type:object size:0x2 data:2byte +lbl_808E55B0 = .sbss:0x808E55B0; // type:object size:0x8 data:4byte +lbl_808E55B8 = .sbss:0x808E55B8; // type:object size:0x4 data:4byte +lbl_808E55BC = .sbss:0x808E55BC; // type:object size:0x4 data:4byte +lbl_808E55C0 = .sbss:0x808E55C0; // type:object size:0x8 data:4byte +lbl_808E55C8 = .sbss:0x808E55C8; // type:object size:0x4 data:4byte +lbl_808E55CC = .sbss:0x808E55CC; // type:object size:0x4 data:4byte +lbl_808E55D0 = .sbss:0x808E55D0; // type:object size:0x4 data:4byte +lbl_808E55D4 = .sbss:0x808E55D4; // type:object size:0x4 data:4byte +lbl_808E55D8 = .sbss:0x808E55D8; // type:object size:0x4 data:4byte +lbl_808E55DC = .sbss:0x808E55DC; // type:object size:0x4 data:4byte +lbl_808E55E0 = .sbss:0x808E55E0; // type:object size:0x4 data:4byte +lbl_808E55E4 = .sbss:0x808E55E4; // type:object size:0x4 data:4byte +lbl_808E55E8 = .sbss:0x808E55E8; // type:object size:0x4 data:4byte +lbl_808E55EC = .sbss:0x808E55EC; // type:object size:0x4 data:4byte +CurrTvMode = .sbss:0x808E55F0; // type:object size:0x4 scope:local data:4byte +lbl_808E55F4 = .sbss:0x808E55F4; // type:object size:0x4 data:4byte +lbl_808E55F8 = .sbss:0x808E55F8; // type:object size:0x4 data:4byte +lbl_808E55FC = .sbss:0x808E55FC; // type:object size:0x4 data:4byte +lbl_808E5600 = .sbss:0x808E5600; // type:object size:0x8 data:4byte +lbl_808E5608 = .sbss:0x808E5608; // type:object size:0x8 +lbl_808E5610 = .sbss:0x808E5610; // type:object size:0x4 data:4byte +lbl_808E5614 = .sbss:0x808E5614; // type:object size:0x4 data:4byte +lbl_808E5618 = .sbss:0x808E5618; // type:object size:0x4 data:4byte +lbl_808E561C = .sbss:0x808E561C; // type:object size:0x4 data:4byte +lbl_808E5620 = .sbss:0x808E5620; // type:object size:0x4 data:4byte +lbl_808E5624 = .sbss:0x808E5624; // type:object size:0x4 data:4byte +lbl_808E5628 = .sbss:0x808E5628; // type:object size:0x4 data:4byte +lbl_808E562C = .sbss:0x808E562C; // type:object size:0x4 data:4byte +lbl_808E5630 = .sbss:0x808E5630; // type:object size:0x8 data:4byte +lbl_808E5638 = .sbss:0x808E5638; // type:object size:0x4 data:4byte +lbl_808E563C = .sbss:0x808E563C; // type:object size:0x4 data:4byte +lbl_808E5640 = .sbss:0x808E5640; // type:object size:0x4 data:4byte +lbl_808E5644 = .sbss:0x808E5644; // type:object size:0x4 data:4byte +lbl_808E5648 = .sbss:0x808E5648; // type:object size:0x4 data:4byte +lbl_808E564C = .sbss:0x808E564C; // type:object size:0x4 data:4byte +lbl_808E5650 = .sbss:0x808E5650; // type:object size:0x1 data:byte +lbl_808E5652 = .sbss:0x808E5652; // type:object size:0x2 data:2byte +lbl_808E5654 = .sbss:0x808E5654; // type:object size:0x1 data:byte +lbl_808E5656 = .sbss:0x808E5656; // type:object size:0x2 data:2byte +lbl_808E5658 = .sbss:0x808E5658; // type:object size:0x1 data:byte +lbl_808E565C = .sbss:0x808E565C; // type:object size:0x1 data:byte +lbl_808E5660 = .sbss:0x808E5660; // type:object size:0x4 data:4byte +lbl_808E5664 = .sbss:0x808E5664; // type:object size:0x4 data:4byte +lbl_808E5668 = .sbss:0x808E5668; // type:object size:0x4 data:4byte +lbl_808E566C = .sbss:0x808E566C; // type:object size:0x4 data:4byte +lbl_808E5670 = .sbss:0x808E5670; // type:object size:0x4 data:4byte +lbl_808E5674 = .sbss:0x808E5674; // type:object size:0x4 data:4byte +lbl_808E5678 = .sbss:0x808E5678; // type:object size:0x4 data:4byte +lbl_808E567C = .sbss:0x808E567C; // type:object size:0x4 data:4byte +lbl_808E5680 = .sbss:0x808E5680; // type:object size:0x4 data:4byte +lbl_808E5684 = .sbss:0x808E5684; // type:object size:0x4 data:4byte +lbl_808E5688 = .sbss:0x808E5688; // type:object size:0x4 data:4byte +lbl_808E568C = .sbss:0x808E568C; // type:object size:0x4 data:4byte +lbl_808E5690 = .sbss:0x808E5690; // type:object size:0x4 data:4byte +lbl_808E5694 = .sbss:0x808E5694; // type:object size:0x4 data:4byte +lbl_808E5698 = .sbss:0x808E5698; // type:object size:0x1 data:byte +lbl_808E569C = .sbss:0x808E569C; // type:object size:0x1 data:byte +lbl_808E569D = .sbss:0x808E569D; // type:object size:0x1 data:byte +lbl_808E569E = .sbss:0x808E569E; // type:object size:0x1 data:byte +lbl_808E569F = .sbss:0x808E569F; // type:object size:0x1 data:byte +lbl_808E56A0 = .sbss:0x808E56A0; // type:object size:0x4 data:4byte +lbl_808E56A4 = .sbss:0x808E56A4; // type:object size:0x1 data:byte +lbl_808E56A5 = .sbss:0x808E56A5; // type:object size:0x1 data:byte +lbl_808E56A6 = .sbss:0x808E56A6; // type:object size:0x1 data:byte +lbl_808E56A8 = .sbss:0x808E56A8; // type:object size:0x4 data:4byte +lbl_808E56AC = .sbss:0x808E56AC; // type:object size:0x1 data:byte +lbl_808E56B0 = .sbss:0x808E56B0; // type:object size:0x4 +lbl_808E56B4 = .sbss:0x808E56B4; // type:object size:0x4 +lbl_808E56B8 = .sbss:0x808E56B8; // type:object size:0x4 +lbl_808E56BC = .sbss:0x808E56BC; // type:object size:0x4 +lbl_808E56C0 = .sbss:0x808E56C0; // type:object size:0x4 +lbl_808E56C4 = .sbss:0x808E56C4; // type:object size:0x4 +lbl_808E56C8 = .sbss:0x808E56C8; // type:object size:0x1 data:byte +lbl_808E56C9 = .sbss:0x808E56C9; // type:object size:0x1 data:byte +lbl_808E56CA = .sbss:0x808E56CA; // type:object size:0x1 data:byte +lbl_808E56CB = .sbss:0x808E56CB; // type:object size:0x5 data:byte +lbl_808E56D0 = .sbss:0x808E56D0; // type:object size:0x4 data:4byte +lbl_808E56D4 = .sbss:0x808E56D4; // type:object size:0x4 data:4byte +lbl_808E56D8 = .sbss:0x808E56D8; // type:object size:0x4 data:4byte +lbl_808E56DC = .sbss:0x808E56DC; // type:object size:0x1 +lbl_808E56DD = .sbss:0x808E56DD; // type:object size:0x1 data:byte +lbl_808E56E0 = .sbss:0x808E56E0; // type:object size:0x4 data:4byte +lbl_808E56E4 = .sbss:0x808E56E4; // type:object size:0x4 data:4byte +lbl_808E56E8 = .sbss:0x808E56E8; // type:object size:0x4 data:4byte +lbl_808E56EC = .sbss:0x808E56EC; // type:object size:0x4 data:4byte +lbl_808E56F0 = .sbss:0x808E56F0; // type:object size:0x4 data:4byte +lbl_808E56F4 = .sbss:0x808E56F4; // type:object size:0x1 data:byte +lbl_808E56F5 = .sbss:0x808E56F5; // type:object size:0x1 data:byte +lbl_808E56F6 = .sbss:0x808E56F6; // type:object size:0x1 data:byte +lbl_808E56F8 = .sbss:0x808E56F8; // type:object size:0x4 data:4byte +lbl_808E56FC = .sbss:0x808E56FC; // type:object size:0x4 data:4byte +lbl_808E5700 = .sbss:0x808E5700; // type:object size:0x4 data:4byte +lbl_808E5704 = .sbss:0x808E5704; // type:object size:0x1 data:byte +lbl_808E5705 = .sbss:0x808E5705; // type:object size:0x1 data:byte +lbl_808E5706 = .sbss:0x808E5706; // type:object size:0x1 data:byte +lbl_808E5707 = .sbss:0x808E5707; // type:object size:0x1 data:byte +lbl_808E5708 = .sbss:0x808E5708; // type:object size:0x4 data:4byte +lbl_808E570C = .sbss:0x808E570C; // type:object size:0x4 data:4byte +lbl_808E5710 = .sbss:0x808E5710; // type:object size:0x4 data:4byte +lbl_808E5714 = .sbss:0x808E5714; // type:object size:0x4 data:4byte +lbl_808E5718 = .sbss:0x808E5718; // type:object size:0x4 data:4byte +lbl_808E571C = .sbss:0x808E571C; // type:object size:0x4 data:4byte +lbl_808E5720 = .sbss:0x808E5720; // type:object size:0x8 data:4byte +lbl_808E5728 = .sbss:0x808E5728; // type:object size:0x4 data:4byte +lbl_808E572C = .sbss:0x808E572C; // type:object size:0x4 data:4byte +lbl_808E5730 = .sbss:0x808E5730; // type:object size:0x4 data:4byte +lbl_808E5734 = .sbss:0x808E5734; // type:object size:0x4 data:4byte +lbl_808E5738 = .sbss:0x808E5738; // type:object size:0x4 data:4byte +lbl_808E573C = .sbss:0x808E573C; // type:object size:0x4 data:4byte +lbl_808E5740 = .sbss:0x808E5740; // type:object size:0x8 data:4byte +lbl_808E5748 = .sbss:0x808E5748; // type:object size:0x8 data:4byte +lbl_808E5750 = .sbss:0x808E5750; // type:object size:0x4 data:4byte +lbl_808E5754 = .sbss:0x808E5754; // type:object size:0x4 data:4byte +lbl_808E5758 = .sbss:0x808E5758; // type:object size:0x8 data:4byte +lbl_808E5760 = .sbss:0x808E5760; // type:object size:0x8 data:4byte +lbl_808E5768 = .sbss:0x808E5768; // type:object size:0x8 data:4byte +lbl_808E5770 = .sbss:0x808E5770; // type:object size:0x4 data:4byte +lbl_808E5774 = .sbss:0x808E5774; // type:object size:0x4 data:4byte +lbl_808E5778 = .sbss:0x808E5778; // type:object size:0x8 data:4byte +lbl_808E5780 = .sbss:0x808E5780; // type:object size:0x1 data:byte +lbl_808E5784 = .sbss:0x808E5784; // type:object size:0x4 data:4byte +lbl_808E5788 = .sbss:0x808E5788; // type:object size:0x8 data:4byte +lbl_808E5790 = .sbss:0x808E5790; // type:object size:0x8 data:4byte +lbl_808E5798 = .sbss:0x808E5798; // type:object size:0x4 data:4byte +lbl_808E579C = .sbss:0x808E579C; // type:object size:0x4 data:4byte +lbl_808E57A0 = .sbss:0x808E57A0; // type:object size:0x8 data:4byte +lbl_808E57A8 = .sbss:0x808E57A8; // type:object size:0x4 data:4byte +lbl_808E57AC = .sbss:0x808E57AC; // type:object size:0x4 data:4byte +lbl_808E57B0 = .sbss:0x808E57B0; // type:object size:0x4 data:4byte +lbl_808E57B4 = .sbss:0x808E57B4; // type:object size:0x4 data:4byte +lbl_808E57B8 = .sbss:0x808E57B8; // type:object size:0x4 data:4byte +lbl_808E57BC = .sbss:0x808E57BC; // type:object size:0x4 data:4byte +lbl_808E57C0 = .sbss:0x808E57C0; // type:object size:0x4 data:4byte +lbl_808E57C4 = .sbss:0x808E57C4; // type:object size:0x4 data:4byte +lbl_808E57C8 = .sbss:0x808E57C8; // type:object size:0x4 data:4byte +lbl_808E57CC = .sbss:0x808E57CC; // type:object size:0x4 data:4byte +lbl_808E57D0 = .sbss:0x808E57D0; // type:object size:0x4 data:4byte +lbl_808E57D4 = .sbss:0x808E57D4; // type:object size:0x4 data:4byte +lbl_808E57D8 = .sbss:0x808E57D8; // type:object size:0x4 data:4byte +lbl_808E57DC = .sbss:0x808E57DC; // type:object size:0x4 data:4byte +lbl_808E57E0 = .sbss:0x808E57E0; // type:object size:0x4 data:4byte +lbl_808E57E4 = .sbss:0x808E57E4; // type:object size:0x4 data:4byte +lbl_808E57E8 = .sbss:0x808E57E8; // type:object size:0x8 data:4byte +lbl_808E57F0 = .sbss:0x808E57F0; // type:object size:0x8 data:4byte +lbl_808E57F8 = .sbss:0x808E57F8; // type:object size:0x4 data:4byte +lbl_808E57FC = .sbss:0x808E57FC; // type:object size:0x4 data:4byte +lbl_808E5800 = .sbss:0x808E5800; // type:object size:0x4 data:4byte +lbl_808E5804 = .sbss:0x808E5804; // type:object size:0x4 data:4byte +lbl_808E5808 = .sbss:0x808E5808; // type:object size:0x4 data:4byte +lbl_808E580C = .sbss:0x808E580C; // type:object size:0x4 data:4byte +lbl_808E5810 = .sbss:0x808E5810; // type:object size:0x8 data:4byte +lbl_808E5818 = .sbss:0x808E5818; // type:object size:0x8 data:4byte +lbl_808E5820 = .sbss:0x808E5820; // type:object size:0x8 data:4byte +lbl_808E5828 = .sbss:0x808E5828; // type:object size:0x4 data:4byte +lbl_808E582C = .sbss:0x808E582C; // type:object size:0x4 data:4byte +lbl_808E5830 = .sbss:0x808E5830; // type:object size:0x4 data:4byte +lbl_808E5834 = .sbss:0x808E5834; // type:object size:0x4 data:4byte +lbl_808E5838 = .sbss:0x808E5838; // type:object size:0x4 data:4byte +lbl_808E583C = .sbss:0x808E583C; // type:object size:0x4 data:4byte +lbl_808E5840 = .sbss:0x808E5840; // type:object size:0x4 data:4byte +lbl_808E5844 = .sbss:0x808E5844; // type:object size:0x4 data:4byte +lbl_808E5860 = .sdata2:0x808E5860; // type:object size:0x8 data:2byte +lbl_808E5868 = .sdata2:0x808E5868; // type:object size:0x8 data:2byte +kCRLF = .sdata2:0x808E5870; // type:object size:0x2 data:string +lbl_808E5878 = .sdata2:0x808E5878; // type:object size:0x1 data:byte +lbl_808E587C = .sdata2:0x808E587C; // type:object size:0x1 data:byte +lbl_808E5880 = .sdata2:0x808E5880; // type:object size:0x1 data:byte +lbl_808E5888 = .sdata2:0x808E5888; // type:object size:0x8 data:double +lbl_808E5890 = .sdata2:0x808E5890; // type:object size:0x8 data:double +lbl_808E5898 = .sdata2:0x808E5898; // type:object size:0x4 data:float +lbl_808E58A0 = .sdata2:0x808E58A0; // type:object size:0x8 data:double +lbl_808E58A8 = .sdata2:0x808E58A8; // type:object size:0x4 data:float +lbl_808E58AC = .sdata2:0x808E58AC; // type:object size:0x4 data:float +lbl_808E58B0 = .sdata2:0x808E58B0; // type:object size:0x8 data:double +lbl_808E58B8 = .sdata2:0x808E58B8; // type:object size:0x4 data:float +lbl_808E58BC = .sdata2:0x808E58BC; // type:object size:0x4 data:float +lbl_808E58C0 = .sdata2:0x808E58C0; // type:object size:0x8 data:double +lbl_808E58C8 = .sdata2:0x808E58C8; // type:object size:0x4 data:float +lbl_808E58D0 = .sdata2:0x808E58D0; // type:object size:0x8 data:double +lbl_808E58D8 = .sdata2:0x808E58D8; // type:object size:0x8 data:double +lbl_808E58E0 = .sdata2:0x808E58E0; // type:object size:0x8 data:double +lbl_808E58E8 = .sdata2:0x808E58E8; // type:object size:0x4 data:float +lbl_808E58F0 = .sdata2:0x808E58F0; // type:object size:0x8 data:double +lbl_808E58F8 = .sdata2:0x808E58F8; // type:object size:0x8 +lbl_808E5900 = .sdata2:0x808E5900; // type:object size:0x4 data:float +lbl_808E5904 = .sdata2:0x808E5904; // type:object size:0x4 data:float +lbl_808E5908 = .sdata2:0x808E5908; // type:object size:0x8 data:double +lbl_808E5910 = .sdata2:0x808E5910; // type:object size:0x4 data:float +lbl_808E5914 = .sdata2:0x808E5914; // type:object size:0x4 data:float +lbl_808E5918 = .sdata2:0x808E5918; // type:object size:0x4 data:float +lbl_808E591C = .sdata2:0x808E591C; // type:object size:0x4 data:float +lbl_808E5920 = .sdata2:0x808E5920; // type:object size:0x4 data:float +lbl_808E5928 = .sdata2:0x808E5928; // type:object size:0x8 data:double +lbl_808E5930 = .sdata2:0x808E5930; // type:object size:0x8 data:double +lbl_808E5938 = .sdata2:0x808E5938; // type:object size:0x8 data:double +lbl_808E5940 = .sdata2:0x808E5940; // type:object size:0x8 data:double +lbl_808E5948 = .sdata2:0x808E5948; // type:object size:0x8 data:double +lbl_808E5950 = .sdata2:0x808E5950; // type:object size:0x8 data:double +lbl_808E5958 = .sdata2:0x808E5958; // type:object size:0x8 data:double +lbl_808E5960 = .sdata2:0x808E5960; // type:object size:0x4 +lbl_808E5964 = .sdata2:0x808E5964; // type:object size:0x4 +lbl_808E5968 = .sdata2:0x808E5968; // type:object size:0x8 +lbl_808E5970 = .sdata2:0x808E5970; // type:object size:0x8 +lbl_808E5978 = .sdata2:0x808E5978; // type:object size:0x8 data:double +lbl_808E5980 = .sdata2:0x808E5980; // type:object size:0x8 +lbl_808E5988 = .sdata2:0x808E5988; // type:object size:0x4 data:4byte +lbl_808E598C = .sdata2:0x808E598C; // type:object size:0x1 data:byte +lbl_808E5990 = .sdata2:0x808E5990; // type:object size:0x8 data:double +lbl_808E5998 = .sdata2:0x808E5998; // type:object size:0x8 data:double +lbl_808E59A0 = .sdata2:0x808E59A0; // type:object size:0x8 data:double +lbl_808E59A8 = .sdata2:0x808E59A8; // type:object size:0x8 data:double +lbl_808E59B0 = .sdata2:0x808E59B0; // type:object size:0x8 data:double +lbl_808E59B8 = .sdata2:0x808E59B8; // type:object size:0x8 data:double +lbl_808E59C0 = .sdata2:0x808E59C0; // type:object size:0x8 data:double +lbl_808E59C8 = .sdata2:0x808E59C8; // type:object size:0x8 data:double +lbl_808E59D0 = .sdata2:0x808E59D0; // type:object size:0x8 data:double +lbl_808E59D8 = .sdata2:0x808E59D8; // type:object size:0x8 data:double +lbl_808E59E0 = .sdata2:0x808E59E0; // type:object size:0x8 data:double +lbl_808E59E8 = .sdata2:0x808E59E8; // type:object size:0x8 data:double +lbl_808E59F0 = .sdata2:0x808E59F0; // type:object size:0x8 data:double +lbl_808E59F8 = .sdata2:0x808E59F8; // type:object size:0x8 data:double +lbl_808E5A00 = .sdata2:0x808E5A00; // type:object size:0x8 data:double +lbl_808E5A08 = .sdata2:0x808E5A08; // type:object size:0x8 data:double +lbl_808E5A10 = .sdata2:0x808E5A10; // type:object size:0x8 data:double +lbl_808E5A18 = .sdata2:0x808E5A18; // type:object size:0x8 data:double +lbl_808E5A20 = .sdata2:0x808E5A20; // type:object size:0x8 data:double +lbl_808E5A28 = .sdata2:0x808E5A28; // type:object size:0x8 data:double +lbl_808E5A30 = .sdata2:0x808E5A30; // type:object size:0x8 data:double +lbl_808E5A38 = .sdata2:0x808E5A38; // type:object size:0x8 data:double +lbl_808E5A40 = .sdata2:0x808E5A40; // type:object size:0x8 data:double +lbl_808E5A48 = .sdata2:0x808E5A48; // type:object size:0x8 data:double +lbl_808E5A50 = .sdata2:0x808E5A50; // type:object size:0x8 data:double +lbl_808E5A58 = .sdata2:0x808E5A58; // type:object size:0x8 data:double +lbl_808E5A60 = .sdata2:0x808E5A60; // type:object size:0x8 data:double +lbl_808E5A68 = .sdata2:0x808E5A68; // type:object size:0x8 data:double +lbl_808E5A70 = .sdata2:0x808E5A70; // type:object size:0x8 data:double +lbl_808E5A78 = .sdata2:0x808E5A78; // type:object size:0x8 data:double +lbl_808E5A80 = .sdata2:0x808E5A80; // type:object size:0x8 data:double +lbl_808E5A88 = .sdata2:0x808E5A88; // type:object size:0x8 data:double +lbl_808E5A90 = .sdata2:0x808E5A90; // type:object size:0x8 data:double +lbl_808E5A98 = .sdata2:0x808E5A98; // type:object size:0x8 data:double +lbl_808E5AA0 = .sdata2:0x808E5AA0; // type:object size:0x8 data:double +lbl_808E5AA8 = .sdata2:0x808E5AA8; // type:object size:0x8 data:double +lbl_808E5AB0 = .sdata2:0x808E5AB0; // type:object size:0x8 data:double +lbl_808E5AB8 = .sdata2:0x808E5AB8; // type:object size:0x8 data:double +lbl_808E5AC0 = .sdata2:0x808E5AC0; // type:object size:0x8 data:double +lbl_808E5AC8 = .sdata2:0x808E5AC8; // type:object size:0x8 data:double +lbl_808E5AD0 = .sdata2:0x808E5AD0; // type:object size:0x8 data:double +lbl_808E5AD8 = .sdata2:0x808E5AD8; // type:object size:0x8 data:double +lbl_808E5AE0 = .sdata2:0x808E5AE0; // type:object size:0x8 data:double +lbl_808E5AE8 = .sdata2:0x808E5AE8; // type:object size:0x8 data:double +lbl_808E5AF0 = .sdata2:0x808E5AF0; // type:object size:0x8 data:double +lbl_808E5AF8 = .sdata2:0x808E5AF8; // type:object size:0x8 data:double +lbl_808E5B00 = .sdata2:0x808E5B00; // type:object size:0x8 data:double +lbl_808E5B08 = .sdata2:0x808E5B08; // type:object size:0x8 data:double +lbl_808E5B10 = .sdata2:0x808E5B10; // type:object size:0x8 data:double +lbl_808E5B18 = .sdata2:0x808E5B18; // type:object size:0x8 data:double +lbl_808E5B20 = .sdata2:0x808E5B20; // type:object size:0x8 data:double +lbl_808E5B28 = .sdata2:0x808E5B28; // type:object size:0x8 data:double +lbl_808E5B30 = .sdata2:0x808E5B30; // type:object size:0x8 data:double +lbl_808E5B38 = .sdata2:0x808E5B38; // type:object size:0x8 data:double +lbl_808E5B40 = .sdata2:0x808E5B40; // type:object size:0x8 data:double +lbl_808E5B48 = .sdata2:0x808E5B48; // type:object size:0x8 data:double +lbl_808E5B50 = .sdata2:0x808E5B50; // type:object size:0x8 data:double +lbl_808E5B58 = .sdata2:0x808E5B58; // type:object size:0x8 data:double +lbl_808E5B60 = .sdata2:0x808E5B60; // type:object size:0x8 data:double +lbl_808E5B68 = .sdata2:0x808E5B68; // type:object size:0x8 data:double +lbl_808E5B70 = .sdata2:0x808E5B70; // type:object size:0x8 data:double +lbl_808E5B78 = .sdata2:0x808E5B78; // type:object size:0x8 data:double +lbl_808E5B80 = .sdata2:0x808E5B80; // type:object size:0x8 data:double +lbl_808E5B88 = .sdata2:0x808E5B88; // type:object size:0x8 data:double +lbl_808E5B90 = .sdata2:0x808E5B90; // type:object size:0x8 data:double +lbl_808E5B98 = .sdata2:0x808E5B98; // type:object size:0x8 data:double +lbl_808E5BA0 = .sdata2:0x808E5BA0; // type:object size:0x8 data:double +lbl_808E5BA8 = .sdata2:0x808E5BA8; // type:object size:0x8 data:double +lbl_808E5BB0 = .sdata2:0x808E5BB0; // type:object size:0x8 data:double +lbl_808E5BB8 = .sdata2:0x808E5BB8; // type:object size:0x8 data:double +lbl_808E5BC0 = .sdata2:0x808E5BC0; // type:object size:0x8 data:double +lbl_808E5BC8 = .sdata2:0x808E5BC8; // type:object size:0x8 data:double +lbl_808E5BD0 = .sdata2:0x808E5BD0; // type:object size:0x8 data:double +lbl_808E5BD8 = .sdata2:0x808E5BD8; // type:object size:0x8 data:double +lbl_808E5BE0 = .sdata2:0x808E5BE0; // type:object size:0x8 data:double +lbl_808E5BE8 = .sdata2:0x808E5BE8; // type:object size:0x8 data:double +lbl_808E5BF0 = .sdata2:0x808E5BF0; // type:object size:0x8 data:double +lbl_808E5BF8 = .sdata2:0x808E5BF8; // type:object size:0x8 data:double +lbl_808E5C00 = .sdata2:0x808E5C00; // type:object size:0x8 data:double +lbl_808E5C08 = .sdata2:0x808E5C08; // type:object size:0x8 data:double +lbl_808E5C10 = .sdata2:0x808E5C10; // type:object size:0x8 data:double +lbl_808E5C18 = .sdata2:0x808E5C18; // type:object size:0x8 data:double +lbl_808E5C20 = .sdata2:0x808E5C20; // type:object size:0x8 data:double +lbl_808E5C28 = .sdata2:0x808E5C28; // type:object size:0x8 data:double +lbl_808E5C30 = .sdata2:0x808E5C30; // type:object size:0x8 data:double +lbl_808E5C38 = .sdata2:0x808E5C38; // type:object size:0x8 data:double +lbl_808E5C40 = .sdata2:0x808E5C40; // type:object size:0x8 data:double +lbl_808E5C48 = .sdata2:0x808E5C48; // type:object size:0x8 data:double +lbl_808E5C50 = .sdata2:0x808E5C50; // type:object size:0x8 data:double +lbl_808E5C58 = .sdata2:0x808E5C58; // type:object size:0x8 data:double +lbl_808E5C60 = .sdata2:0x808E5C60; // type:object size:0x8 data:double +lbl_808E5C68 = .sdata2:0x808E5C68; // type:object size:0x8 data:double +lbl_808E5C70 = .sdata2:0x808E5C70; // type:object size:0x8 data:double +lbl_808E5C78 = .sdata2:0x808E5C78; // type:object size:0x8 data:double +lbl_808E5C80 = .sdata2:0x808E5C80; // type:object size:0x8 data:double +lbl_808E5C88 = .sdata2:0x808E5C88; // type:object size:0x8 data:double +lbl_808E5C90 = .sdata2:0x808E5C90; // type:object size:0x8 data:double +lbl_808E5C98 = .sdata2:0x808E5C98; // type:object size:0x8 data:double +lbl_808E5CA0 = .sdata2:0x808E5CA0; // type:object size:0x8 data:double +lbl_808E5CA8 = .sdata2:0x808E5CA8; // type:object size:0x8 data:double +lbl_808E5CB0 = .sdata2:0x808E5CB0; // type:object size:0x8 data:double +lbl_808E5CB8 = .sdata2:0x808E5CB8; // type:object size:0x8 data:double +lbl_808E5CC0 = .sdata2:0x808E5CC0; // type:object size:0x8 data:double +lbl_808E5CC8 = .sdata2:0x808E5CC8; // type:object size:0x8 data:double +lbl_808E5CD0 = .sdata2:0x808E5CD0; // type:object size:0x8 data:double +lbl_808E5CD8 = .sdata2:0x808E5CD8; // type:object size:0x8 data:double +lbl_808E5CE0 = .sdata2:0x808E5CE0; // type:object size:0x8 data:double +lbl_808E5CE8 = .sdata2:0x808E5CE8; // type:object size:0x8 data:double +lbl_808E5CF0 = .sdata2:0x808E5CF0; // type:object size:0x8 data:double +lbl_808E5CF8 = .sdata2:0x808E5CF8; // type:object size:0x8 data:double +lbl_808E5D00 = .sdata2:0x808E5D00; // type:object size:0x8 data:double +lbl_808E5D08 = .sdata2:0x808E5D08; // type:object size:0x8 data:double +lbl_808E5D10 = .sdata2:0x808E5D10; // type:object size:0x8 data:double +lbl_808E5D18 = .sdata2:0x808E5D18; // type:object size:0x8 data:double +lbl_808E5D20 = .sdata2:0x808E5D20; // type:object size:0x8 data:double +lbl_808E5D28 = .sdata2:0x808E5D28; // type:object size:0x8 data:double +lbl_808E5D30 = .sdata2:0x808E5D30; // type:object size:0x8 data:double +lbl_808E5D38 = .sdata2:0x808E5D38; // type:object size:0x8 data:double +lbl_808E5D40 = .sdata2:0x808E5D40; // type:object size:0x8 data:double +lbl_808E5D48 = .sdata2:0x808E5D48; // type:object size:0x8 data:double +lbl_808E5D50 = .sdata2:0x808E5D50; // type:object size:0x8 data:double +lbl_808E5D58 = .sdata2:0x808E5D58; // type:object size:0x8 data:double +lbl_808E5D60 = .sdata2:0x808E5D60; // type:object size:0x8 data:double +lbl_808E5D68 = .sdata2:0x808E5D68; // type:object size:0x8 data:double +lbl_808E5D70 = .sdata2:0x808E5D70; // type:object size:0x8 data:double +lbl_808E5D78 = .sdata2:0x808E5D78; // type:object size:0x8 data:double +lbl_808E5D80 = .sdata2:0x808E5D80; // type:object size:0x8 data:double +lbl_808E5D88 = .sdata2:0x808E5D88; // type:object size:0x8 data:double +lbl_808E5D90 = .sdata2:0x808E5D90; // type:object size:0x8 data:double +lbl_808E5D98 = .sdata2:0x808E5D98; // type:object size:0x8 data:double +lbl_808E5DA0 = .sdata2:0x808E5DA0; // type:object size:0x8 data:double +lbl_808E5DA8 = .sdata2:0x808E5DA8; // type:object size:0x8 data:double +lbl_808E5DB0 = .sdata2:0x808E5DB0; // type:object size:0x8 data:double +lbl_808E5DB8 = .sdata2:0x808E5DB8; // type:object size:0x8 data:double +lbl_808E5DC0 = .sdata2:0x808E5DC0; // type:object size:0x8 data:double +lbl_808E5DC8 = .sdata2:0x808E5DC8; // type:object size:0x8 data:double +lbl_808E5DD0 = .sdata2:0x808E5DD0; // type:object size:0x8 data:double +lbl_808E5DD8 = .sdata2:0x808E5DD8; // type:object size:0x8 data:double +lbl_808E5DE0 = .sdata2:0x808E5DE0; // type:object size:0x8 data:double +lbl_808E5DE8 = .sdata2:0x808E5DE8; // type:object size:0x8 data:double +lbl_808E5DF0 = .sdata2:0x808E5DF0; // type:object size:0x8 data:double +lbl_808E5DF8 = .sdata2:0x808E5DF8; // type:object size:0x8 data:double +lbl_808E5E00 = .sdata2:0x808E5E00; // type:object size:0x8 data:double +lbl_808E5E08 = .sdata2:0x808E5E08; // type:object size:0x8 data:double +lbl_808E5E10 = .sdata2:0x808E5E10; // type:object size:0x8 data:double +lbl_808E5E18 = .sdata2:0x808E5E18; // type:object size:0x8 data:double +lbl_808E5E20 = .sdata2:0x808E5E20; // type:object size:0x8 data:double +lbl_808E5E28 = .sdata2:0x808E5E28; // type:object size:0x8 data:double +lbl_808E5E30 = .sdata2:0x808E5E30; // type:object size:0x8 data:double +lbl_808E5E38 = .sdata2:0x808E5E38; // type:object size:0x8 data:double +lbl_808E5E40 = .sdata2:0x808E5E40; // type:object size:0x8 data:double +lbl_808E5E48 = .sdata2:0x808E5E48; // type:object size:0x8 data:double +lbl_808E5E50 = .sdata2:0x808E5E50; // type:object size:0x8 data:double +lbl_808E5E58 = .sdata2:0x808E5E58; // type:object size:0x8 data:double +lbl_808E5E60 = .sdata2:0x808E5E60; // type:object size:0x8 data:double +lbl_808E5E68 = .sdata2:0x808E5E68; // type:object size:0x8 data:double +lbl_808E5E70 = .sdata2:0x808E5E70; // type:object size:0x8 data:double +lbl_808E5E78 = .sdata2:0x808E5E78; // type:object size:0x8 data:double +lbl_808E5E80 = .sdata2:0x808E5E80; // type:object size:0x8 data:double +lbl_808E5E88 = .sdata2:0x808E5E88; // type:object size:0x8 data:double +lbl_808E5E90 = .sdata2:0x808E5E90; // type:object size:0x8 data:double +lbl_808E5E98 = .sdata2:0x808E5E98; // type:object size:0x8 data:double +lbl_808E5EA0 = .sdata2:0x808E5EA0; // type:object size:0x8 data:double +lbl_808E5EA8 = .sdata2:0x808E5EA8; // type:object size:0x8 data:double +lbl_808E5EB0 = .sdata2:0x808E5EB0; // type:object size:0x8 data:double +lbl_808E5EB8 = .sdata2:0x808E5EB8; // type:object size:0x8 data:double +lbl_808E5EC0 = .sdata2:0x808E5EC0; // type:object size:0x8 data:double +lbl_808E5EC8 = .sdata2:0x808E5EC8; // type:object size:0x8 data:double +lbl_808E5ED0 = .sdata2:0x808E5ED0; // type:object size:0x8 data:double +lbl_808E5ED8 = .sdata2:0x808E5ED8; // type:object size:0x8 data:double +lbl_808E5EE0 = .sdata2:0x808E5EE0; // type:object size:0x8 data:double +lbl_808E5EE8 = .sdata2:0x808E5EE8; // type:object size:0x8 data:double +lbl_808E5EF0 = .sdata2:0x808E5EF0; // type:object size:0x8 data:double +lbl_808E5EF8 = .sdata2:0x808E5EF8; // type:object size:0x8 data:double +lbl_808E5F00 = .sdata2:0x808E5F00; // type:object size:0x8 data:double +lbl_808E5F08 = .sdata2:0x808E5F08; // type:object size:0x8 data:double +lbl_808E5F10 = .sdata2:0x808E5F10; // type:object size:0x8 data:double +lbl_808E5F18 = .sdata2:0x808E5F18; // type:object size:0x8 data:double +lbl_808E5F20 = .sdata2:0x808E5F20; // type:object size:0x8 data:double +lbl_808E5F28 = .sdata2:0x808E5F28; // type:object size:0x8 data:double +lbl_808E5F30 = .sdata2:0x808E5F30; // type:object size:0x8 +lbl_808E5F38 = .sdata2:0x808E5F38; // type:object size:0x8 data:float +lbl_808E5F40 = .sdata2:0x808E5F40; // type:object size:0x4 data:float +lbl_808E5F44 = .sdata2:0x808E5F44; // type:object size:0x4 data:float +lbl_808E5F48 = .sdata2:0x808E5F48; // type:object size:0x4 data:float +lbl_808E5F4C = .sdata2:0x808E5F4C; // type:object size:0x4 data:float +lbl_808E5F50 = .sdata2:0x808E5F50; // type:object size:0x4 data:float +lbl_808E5F54 = .sdata2:0x808E5F54; // type:object size:0x4 data:float +lbl_808E5F58 = .sdata2:0x808E5F58; // type:object size:0x4 data:float +lbl_808E5F60 = .sdata2:0x808E5F60; // type:object size:0x8 data:double +lbl_808E5F68 = .sdata2:0x808E5F68; // type:object size:0x4 data:float +lbl_808E5F70 = .sdata2:0x808E5F70; // type:object size:0x8 data:double +lbl_808E5F78 = .sdata2:0x808E5F78; // type:object size:0x4 data:float +lbl_808E5F80 = .sdata2:0x808E5F80; // type:object size:0x8 data:double +lbl_808E5F88 = .sdata2:0x808E5F88; // type:object size:0x4 data:float +lbl_808E5F8C = .sdata2:0x808E5F8C; // type:object size:0x4 data:float +lbl_808E5F90 = .sdata2:0x808E5F90; // type:object size:0x8 data:double +lbl_808E5F98 = .sdata2:0x808E5F98; // type:object size:0x4 data:float +lbl_808E5F9C = .sdata2:0x808E5F9C; // type:object size:0x4 data:float +lbl_808E5FA0 = .sdata2:0x808E5FA0; // type:object size:0x4 data:float +lbl_808E5FA8 = .sdata2:0x808E5FA8; // type:object size:0x8 data:double +lbl_808E5FB0 = .sdata2:0x808E5FB0; // type:object size:0x4 data:float +lbl_808E5FB4 = .sdata2:0x808E5FB4; // type:object size:0x4 data:float +lbl_808E5FB8 = .sdata2:0x808E5FB8; // type:object size:0x8 data:double +lbl_808E5FC0 = .sdata2:0x808E5FC0; // type:object size:0x4 data:float +lbl_808E5FC4 = .sdata2:0x808E5FC4; // type:object size:0x4 data:float +lbl_808E5FC8 = .sdata2:0x808E5FC8; // type:object size:0x4 data:float +lbl_808E5FCC = .sdata2:0x808E5FCC; // type:object size:0x4 data:float +lbl_808E5FD0 = .sdata2:0x808E5FD0; // type:object size:0x4 data:float +lbl_808E5FD4 = .sdata2:0x808E5FD4; // type:object size:0x4 data:float +lbl_808E5FD8 = .sdata2:0x808E5FD8; // type:object size:0x4 data:float +lbl_808E5FDC = .sdata2:0x808E5FDC; // type:object size:0x4 data:float +lbl_808E5FE0 = .sdata2:0x808E5FE0; // type:object size:0x8 +lbl_808E5FE8 = .sdata2:0x808E5FE8; // type:object size:0x8 +lbl_808E5FF0 = .sdata2:0x808E5FF0; // type:object size:0x8 +lbl_808E5FF8 = .sdata2:0x808E5FF8; // type:object size:0x2 data:2byte +lbl_808E5FFA = .sdata2:0x808E5FFA; // type:object size:0x6 data:2byte +lbl_808E6000 = .sdata2:0x808E6000; // type:object size:0x8 +lbl_808E6008 = .sdata2:0x808E6008; // type:object size:0x8 +lbl_808E6010 = .sdata2:0x808E6010; // type:object size:0x8 +lbl_808E6018 = .sdata2:0x808E6018; // type:object size:0x4 +lbl_808E601C = .sdata2:0x808E601C; // type:object size:0x4 +lbl_808E6020 = .sdata2:0x808E6020; // type:object size:0x4 +lbl_808E6024 = .sdata2:0x808E6024; // type:object size:0x4 +lbl_808E6028 = .sdata2:0x808E6028; // type:object size:0x1 data:byte +lbl_808E6029 = .sdata2:0x808E6029; // type:object size:0x1 data:byte +lbl_808E602A = .sdata2:0x808E602A; // type:object size:0x1 data:byte +lbl_808E602B = .sdata2:0x808E602B; // type:object size:0x1 data:byte +lbl_808E602C = .sdata2:0x808E602C; // type:object size:0x1 data:byte +lbl_808E602D = .sdata2:0x808E602D; // type:object size:0x1 data:byte +lbl_808E6030 = .sdata2:0x808E6030; // type:object size:0x8 +lbl_808E6038 = .sdata2:0x808E6038; // type:object size:0x4 data:4byte +lbl_808E603C = .sdata2:0x808E603C; // type:object size:0x4 data:4byte +lbl_808E6040 = .sdata2:0x808E6040; // type:object size:0x8 data:4byte +@850 = .sdata2:0x808E6048; // type:object size:0x4 scope:local data:4byte +lbl_808E6050 = .sdata2:0x808E6050; // type:object size:0x8 data:4byte +__GXData = .sdata2:0x808E6058; // type:object size:0x4 scope:global data:4byte +@2712 = .sdata2:0x808E605C; // type:object size:0x4 scope:local data:float +@2713 = .sdata2:0x808E6060; // type:object size:0x4 scope:local data:float +lbl_808E6064 = .sdata2:0x808E6064; // type:object size:0x4 data:4byte +lbl_808E6068 = .sdata2:0x808E6068; // type:object size:0x4 data:4byte +lbl_808E606C = .sdata2:0x808E606C; // type:object size:0x4 data:float +lbl_808E6070 = .sdata2:0x808E6070; // type:object size:0x4 data:float +lbl_808E6078 = .sdata2:0x808E6078; // type:object size:0x8 data:double +lbl_808E6080 = .sdata2:0x808E6080; // type:object size:0x4 data:float +lbl_808E6088 = .sdata2:0x808E6088; // type:object size:0x8 data:double +lbl_808E6090 = .sdata2:0x808E6090; // type:object size:0x4 data:float +lbl_808E6094 = .sdata2:0x808E6094; // type:object size:0x4 data:float +lbl_808E6098 = .sdata2:0x808E6098; // type:object size:0x4 data:float +lbl_808E609C = .sdata2:0x808E609C; // type:object size:0x4 data:float +lbl_808E60A0 = .sdata2:0x808E60A0; // type:object size:0x4 data:float +lbl_808E60A4 = .sdata2:0x808E60A4; // type:object size:0x4 data:float +lbl_808E60A8 = .sdata2:0x808E60A8; // type:object size:0x4 data:float +lbl_808E60AC = .sdata2:0x808E60AC; // type:object size:0x4 data:float +lbl_808E60B0 = .sdata2:0x808E60B0; // type:object size:0x4 data:float +lbl_808E60B4 = .sdata2:0x808E60B4; // type:object size:0x4 data:float +lbl_808E60B8 = .sdata2:0x808E60B8; // type:object size:0x4 data:float +lbl_808E60BC = .sdata2:0x808E60BC; // type:object size:0x4 data:float +lbl_808E60C0 = .sdata2:0x808E60C0; // type:object size:0x4 data:float +lbl_808E60C8 = .sdata2:0x808E60C8; // type:object size:0x8 data:double +lbl_808E60D0 = .sdata2:0x808E60D0; // type:object size:0x4 data:float +lbl_808E60D4 = .sdata2:0x808E60D4; // type:object size:0x4 data:float +lbl_808E60D8 = .sdata2:0x808E60D8; // type:object size:0x4 data:float +lbl_808E60DC = .sdata2:0x808E60DC; // type:object size:0x4 data:float +lbl_808E60E0 = .sdata2:0x808E60E0; // type:object size:0x4 data:float +lbl_808E60E4 = .sdata2:0x808E60E4; // type:object size:0x4 data:float +lbl_808E60E8 = .sdata2:0x808E60E8; // type:object size:0x4 data:float +lbl_808E60EC = .sdata2:0x808E60EC; // type:object size:0x4 data:float +lbl_808E60F0 = .sdata2:0x808E60F0; // type:object size:0x8 data:double +lbl_808E60F8 = .sdata2:0x808E60F8; // type:object size:0x8 data:float +lbl_808E6100 = .sdata2:0x808E6100; // type:object size:0x4 data:float +lbl_808E6104 = .sdata2:0x808E6104; // type:object size:0x4 data:float +lbl_808E6108 = .sdata2:0x808E6108; // type:object size:0x4 data:float +lbl_808E6110 = .sdata2:0x808E6110; // type:object size:0x8 data:double +lbl_808E6118 = .sdata2:0x808E6118; // type:object size:0x4 data:float +lbl_808E6120 = .sdata2:0x808E6120; // type:object size:0x8 data:double +lbl_808E6128 = .sdata2:0x808E6128; // type:object size:0x4 data:float +lbl_808E6130 = .sdata2:0x808E6130; // type:object size:0x8 data:double +lbl_808E6138 = .sdata2:0x808E6138; // type:object size:0x4 data:float +lbl_808E613C = .sdata2:0x808E613C; // type:object size:0x4 data:float +lbl_808E6140 = .sdata2:0x808E6140; // type:object size:0x4 data:float +lbl_808E6144 = .sdata2:0x808E6144; // type:object size:0x4 data:float +lbl_808E6148 = .sdata2:0x808E6148; // type:object size:0x4 data:float +lbl_808E614C = .sdata2:0x808E614C; // type:object size:0x4 data:float +lbl_808E6150 = .sdata2:0x808E6150; // type:object size:0x4 data:float +lbl_808E6154 = .sdata2:0x808E6154; // type:object size:0x4 data:float +lbl_808E6158 = .sdata2:0x808E6158; // type:object size:0x4 data:float +lbl_808E615C = .sdata2:0x808E615C; // type:object size:0x4 data:float +lbl_808E6160 = .sdata2:0x808E6160; // type:object size:0x4 data:float +lbl_808E6168 = .sdata2:0x808E6168; // type:object size:0x8 data:double +lbl_808E6170 = .sdata2:0x808E6170; // type:object size:0x4 data:float +lbl_808E6174 = .sdata2:0x808E6174; // type:object size:0x4 data:float +lbl_808E6178 = .sdata2:0x808E6178; // type:object size:0x4 data:float +lbl_808E6180 = .sdata2:0x808E6180; // type:object size:0x8 data:double +lbl_808E6188 = .sdata2:0x808E6188; // type:object size:0x8 data:double +lbl_808E6190 = .sdata2:0x808E6190; // type:object size:0x8 data:double +lbl_808E6198 = .sdata2:0x808E6198; // type:object size:0x8 data:double +lbl_808E61A0 = .sdata2:0x808E61A0; // type:object size:0x8 data:double +lbl_808E61A8 = .sdata2:0x808E61A8; // type:object size:0x8 data:double +lbl_808E61B0 = .sdata2:0x808E61B0; // type:object size:0x8 data:double +lbl_808E61B8 = .sdata2:0x808E61B8; // type:object size:0x4 data:float +lbl_808E61BC = .sdata2:0x808E61BC; // type:object size:0x4 data:float +lbl_808E61C0 = .sdata2:0x808E61C0; // type:object size:0x4 data:float +lbl_808E61C4 = .sdata2:0x808E61C4; // type:object size:0x4 data:float +lbl_808E61C8 = .sdata2:0x808E61C8; // type:object size:0x4 data:4byte +lbl_808E61CC = .sdata2:0x808E61CC; // type:object size:0x2 data:2byte +lbl_808E61D0 = .sdata2:0x808E61D0; // type:object size:0x4 data:float +lbl_808E61D4 = .sdata2:0x808E61D4; // type:object size:0x4 data:float +lbl_808E61D8 = .sdata2:0x808E61D8; // type:object size:0x4 data:float +lbl_808E61DC = .sdata2:0x808E61DC; // type:object size:0x4 data:float +lbl_808E61E0 = .sdata2:0x808E61E0; // type:object size:0x4 data:float +lbl_808E61E8 = .sdata2:0x808E61E8; // type:object size:0x8 data:double +lbl_808E61F0 = .sdata2:0x808E61F0; // type:object size:0x8 data:double +lbl_808E61F8 = .sdata2:0x808E61F8; // type:object size:0x8 data:double +lbl_808E6200 = .sdata2:0x808E6200; // type:object size:0x8 data:double +lbl_808E6208 = .sdata2:0x808E6208; // type:object size:0x4 data:float +lbl_808E620C = .sdata2:0x808E620C; // type:object size:0x4 data:float +lbl_808E6210 = .sdata2:0x808E6210; // type:object size:0x4 data:float +lbl_808E6214 = .sdata2:0x808E6214; // type:object size:0x4 data:float +lbl_808E6218 = .sdata2:0x808E6218; // type:object size:0x4 data:float +lbl_808E621C = .sdata2:0x808E621C; // type:object size:0x4 data:float +lbl_808E6220 = .sdata2:0x808E6220; // type:object size:0x4 data:float +lbl_808E6224 = .sdata2:0x808E6224; // type:object size:0x4 data:float +lbl_808E6228 = .sdata2:0x808E6228; // type:object size:0x4 data:float +lbl_808E622C = .sdata2:0x808E622C; // type:object size:0x4 data:float +lbl_808E6230 = .sdata2:0x808E6230; // type:object size:0x8 data:double +lbl_808E6238 = .sdata2:0x808E6238; // type:object size:0x8 data:double +lbl_808E6240 = .sdata2:0x808E6240; // type:object size:0x8 data:double +lbl_808E6248 = .sdata2:0x808E6248; // type:object size:0x4 data:float +lbl_808E624C = .sdata2:0x808E624C; // type:object size:0x4 data:float +lbl_808E6250 = .sdata2:0x808E6250; // type:object size:0x8 data:double +lbl_808E6258 = .sdata2:0x808E6258; // type:object size:0x8 data:double +lbl_808E6260 = .sdata2:0x808E6260; // type:object size:0x4 data:float +lbl_808E6264 = .sdata2:0x808E6264; // type:object size:0x4 data:float +lbl_808E6268 = .sdata2:0x808E6268; // type:object size:0x4 data:float +lbl_808E626C = .sdata2:0x808E626C; // type:object size:0x4 data:float +lbl_808E6270 = .sdata2:0x808E6270; // type:object size:0x4 +lbl_808E6274 = .sdata2:0x808E6274; // type:object size:0x4 +lbl_808E6278 = .sdata2:0x808E6278; // type:object size:0x8 +lbl_808E6280 = .sdata2:0x808E6280; // type:object size:0x4 data:float +lbl_808E6284 = .sdata2:0x808E6284; // type:object size:0x4 data:float +lbl_808E6288 = .sdata2:0x808E6288; // type:object size:0x4 data:float +lbl_808E628C = .sdata2:0x808E628C; // type:object size:0x4 data:float +lbl_808E6290 = .sdata2:0x808E6290; // type:object size:0x8 data:float +lbl_808E6298 = .sdata2:0x808E6298; // type:object size:0x4 data:float +lbl_808E629C = .sdata2:0x808E629C; // type:object size:0x4 data:float +lbl_808E62A0 = .sdata2:0x808E62A0; // type:object size:0x4 data:float +lbl_808E62A4 = .sdata2:0x808E62A4; // type:object size:0x4 data:float +lbl_808E62A8 = .sdata2:0x808E62A8; // type:object size:0x4 data:float +lbl_808E62AC = .sdata2:0x808E62AC; // type:object size:0x4 data:float +lbl_808E62B0 = .sdata2:0x808E62B0; // type:object size:0x8 data:float +lbl_808E62B8 = .sdata2:0x808E62B8; // type:object size:0x8 +lbl_808E62C0 = .sdata2:0x808E62C0; // type:object size:0x8 +lbl_808E62C8 = .sdata2:0x808E62C8; // type:object size:0x8 +lbl_808E62D0 = .sdata2:0x808E62D0; // type:object size:0x8 +lbl_808E62D8 = .sdata2:0x808E62D8; // type:object size:0x8 +lbl_808E62E0 = .sdata2:0x808E62E0; // type:object size:0x4 data:4byte +lbl_808E62E8 = .sdata2:0x808E62E8; // type:object size:0x8 data:double +@1010 = .sdata2:0x808E62F0; // type:object size:0x4 scope:local data:4byte +@1012 = .sdata2:0x808E62F4; // type:object size:0x4 scope:local data:4byte +lbl_808E62F8 = .sdata2:0x808E62F8; // type:object size:0x4 data:float +lbl_808E62FC = .sdata2:0x808E62FC; // type:object size:0x4 data:float +lbl_808E6300 = .sdata2:0x808E6300; // type:object size:0x4 data:float +lbl_808E6304 = .sdata2:0x808E6304; // type:object size:0x4 data:float +lbl_808E6308 = .sdata2:0x808E6308; // type:object size:0x4 data:float +lbl_808E630C = .sdata2:0x808E630C; // type:object size:0x4 data:float +lbl_808E6310 = .sdata2:0x808E6310; // type:object size:0x4 data:float +lbl_808E6314 = .sdata2:0x808E6314; // type:object size:0x4 data:float +lbl_808E6318 = .sdata2:0x808E6318; // type:object size:0x4 data:float +lbl_808E631C = .sdata2:0x808E631C; // type:object size:0x4 data:float +lbl_808E6320 = .sdata2:0x808E6320; // type:object size:0x4 data:float +lbl_808E6324 = .sdata2:0x808E6324; // type:object size:0x4 data:float +lbl_808E6328 = .sdata2:0x808E6328; // type:object size:0x4 data:float +lbl_808E6330 = .sdata2:0x808E6330; // type:object size:0x8 data:double +lbl_808E6338 = .sdata2:0x808E6338; // type:object size:0x4 data:4byte +lbl_808E633C = .sdata2:0x808E633C; // type:object size:0x4 data:4byte +lbl_808E6340 = .sdata2:0x808E6340; // type:object size:0x4 data:float +lbl_808E6348 = .sdata2:0x808E6348; // type:object size:0x8 data:double +lbl_808E6350 = .sdata2:0x808E6350; // type:object size:0x8 data:double +lbl_808E6358 = .sdata2:0x808E6358; // type:object size:0x4 data:4byte +lbl_808E635C = .sdata2:0x808E635C; // type:object size:0x2 data:2byte +lbl_808E635E = .sdata2:0x808E635E; // type:object size:0x1 data:byte +lbl_808E6360 = .sdata2:0x808E6360; // type:object size:0x4 data:4byte +lbl_808E6364 = .sdata2:0x808E6364; // type:object size:0x4 data:4byte +lbl_808E6368 = .sdata2:0x808E6368; // type:object size:0x4 data:4byte +lbl_808E636C = .sdata2:0x808E636C; // type:object size:0x4 data:4byte +lbl_808E6370 = .sdata2:0x808E6370; // type:object size:0x4 data:float +lbl_808E6374 = .sdata2:0x808E6374; // type:object size:0x4 data:float +lbl_808E6378 = .sdata2:0x808E6378; // type:object size:0x4 data:float +lbl_808E637C = .sdata2:0x808E637C; // type:object size:0x4 data:float +lbl_808E6380 = .sdata2:0x808E6380; // type:object size:0x8 data:double +lbl_808E6388 = .sdata2:0x808E6388; // type:object size:0x4 data:float +lbl_808E638C = .sdata2:0x808E638C; // type:object size:0x4 data:float +lbl_808E6390 = .sdata2:0x808E6390; // type:object size:0x8 data:double +lbl_808E6398 = .sdata2:0x808E6398; // type:object size:0x4 data:float +lbl_808E639C = .sdata2:0x808E639C; // type:object size:0x4 data:float +lbl_808E63A0 = .sdata2:0x808E63A0; // type:object size:0x4 data:float +lbl_808E63A8 = .sdata2:0x808E63A8; // type:object size:0x8 data:double +lbl_808E63B0 = .sdata2:0x808E63B0; // type:object size:0x4 data:float +lbl_808E63B4 = .sdata2:0x808E63B4; // type:object size:0x4 data:float +lbl_808E63B8 = .sdata2:0x808E63B8; // type:object size:0x4 data:float +lbl_808E63BC = .sdata2:0x808E63BC; // type:object size:0x4 data:float +lbl_808E63C0 = .sdata2:0x808E63C0; // type:object size:0x4 data:float +lbl_808E63C4 = .sdata2:0x808E63C4; // type:object size:0x4 data:float +lbl_808E63C8 = .sdata2:0x808E63C8; // type:object size:0x4 data:float +lbl_808E63D0 = .sdata2:0x808E63D0; // type:object size:0x8 data:double +lbl_808E63D8 = .sdata2:0x808E63D8; // type:object size:0x4 data:4byte +lbl_808E63DC = .sdata2:0x808E63DC; // type:object size:0x2 data:2byte +lbl_808E63DE = .sdata2:0x808E63DE; // type:object size:0x1 data:byte +lbl_808E63E0 = .sdata2:0x808E63E0; // type:object size:0x8 data:byte +lbl_808E63E8 = .sdata2:0x808E63E8; // type:object size:0x2 data:2byte +lbl_808E63EC = .sdata2:0x808E63EC; // type:object size:0x2 data:2byte +lbl_808E63F0 = .sdata2:0x808E63F0; // type:object size:0x2 data:2byte +lbl_808E63F4 = .sdata2:0x808E63F4; // type:object size:0x2 data:2byte +lbl_808E6400 = .sbss2:0x808E6400; // type:object size:0x8 +lbl_808E6408 = .sbss2:0x808E6408; // type:object size:0x8 +lbl_808E6448 = .bss:0x808E6448; // type:object size:0x24 data:4byte +lbl_808E646C = .bss:0x808E646C; // type:object size:0x4 data:4byte +lbl_808E6470 = .bss:0x808E6470; // type:object size:0x2BF3 +lbl_808E9063 = .bss:0x808E9063; // type:object size:0x7465 +@LOCAL@SetType__Q23Hmx6ObjectF6Symbol@types = .bss:0x808F04C8; // type:object size:0x4 data:4byte +@LOCAL@StaticClassName__Q23Hmx6ObjectFv@name = .bss:0x808F04CC; // type:object size:0x4 data:4byte +lbl_808F04D0 = .bss:0x808F04D0; // type:object size:0x4 data:4byte +lbl_808F04D4 = .bss:0x808F04D4; // type:object size:0x4 data:4byte +lbl_808F04D8 = .bss:0x808F04D8; // type:object size:0x4 data:4byte +lbl_808F04DC = .bss:0x808F04DC; // type:object size:0x4 data:4byte +lbl_808F04E0 = .bss:0x808F04E0; // type:object size:0x4 data:4byte +lbl_808F04E4 = .bss:0x808F04E4; // type:object size:0x4 data:4byte +@LOCAL@Type__16SigninChangedMsgFv@t = .bss:0x808F04E8; // type:object size:0x4 data:4byte +lbl_808F04EC = .bss:0x808F04EC; // type:object size:0x4 data:4byte +lbl_808F04F0 = .bss:0x808F04F0; // type:object size:0x4 data:4byte +lbl_808F04F4 = .bss:0x808F04F4; // type:object size:0x4 data:4byte +lbl_808F04F8 = .bss:0x808F04F8; // type:object size:0x4 data:4byte +@LOCAL@Type__17StorageChangedMsgFv@t = .bss:0x808F04FC; // type:object size:0x4 data:4byte +@LOCAL@Type__19ContentInstalledMsgFv@t = .bss:0x808F0500; // type:object size:0x4 data:4byte +lbl_808F0504 = .bss:0x808F0504; // type:object size:0x4 data:4byte +lbl_808F0508 = .bss:0x808F0508; // type:object size:0x4 data:4byte +lbl_808F050C = .bss:0x808F050C; // type:object size:0x4 data:4byte +lbl_808F0510 = .bss:0x808F0510; // type:object size:0x4 data:4byte +lbl_808F0514 = .bss:0x808F0514; // type:object size:0x4 data:4byte +@LOCAL@Type__12UIChangedMsgFv@t = .bss:0x808F0518; // type:object size:0x4 data:4byte +lbl_808F051C = .bss:0x808F051C; // type:object size:0x4 data:4byte +lbl_808F0520 = .bss:0x808F0520; // type:object size:0x4 data:4byte +@LOCAL@Type__26ConnectionStatusChangedMsgFv@t = .bss:0x808F0524; // type:object size:0x4 data:4byte +lbl_808F0528 = .bss:0x808F0528; // type:object size:0x4 data:4byte +@LOCAL@Type__21DWCProfanityResultMsgFv@t = .bss:0x808F052C; // type:object size:0x4 data:4byte +lbl_808F0530 = .bss:0x808F0530; // type:object size:0x4 data:4byte +lbl_808F0534 = .bss:0x808F0534; // type:object size:0x4 data:4byte +lbl_808F0538 = .bss:0x808F0538; // type:object size:0x4 data:4byte +lbl_808F053C = .bss:0x808F053C; // type:object size:0x4 data:4byte +lbl_808F0540 = .bss:0x808F0540; // type:object size:0x4 data:4byte +lbl_808F0544 = .bss:0x808F0544; // type:object size:0x4 data:4byte +@LOCAL@SetType__11RndDrawableFP6Symbol@lbl_808F0548 = .bss:0x808F0548; // type:object size:0x4 data:4byte +@LOCAL@StaticClassName__11RndDrawableFv@lbl_808F054C = .bss:0x808F054C; // type:object size:0x4 data:4byte +lbl_808F0550 = .bss:0x808F0550; // type:object size:0x4 data:4byte +lbl_808F0554 = .bss:0x808F0554; // type:object size:0x4 data:4byte +lbl_808F0558 = .bss:0x808F0558; // type:object size:0x4 data:4byte +lbl_808F055C = .bss:0x808F055C; // type:object size:0x4 data:4byte +lbl_808F0560 = .bss:0x808F0560; // type:object size:0x4 data:4byte +lbl_808F0564 = .bss:0x808F0564; // type:object size:0x4 data:4byte +lbl_808F0568 = .bss:0x808F0568; // type:object size:0x4 data:4byte +lbl_808F056C = .bss:0x808F056C; // type:object size:0x4 data:4byte +lbl_808F0570 = .bss:0x808F0570; // type:object size:0x4 data:4byte +lbl_808F0574 = .bss:0x808F0574; // type:object size:0x4 data:4byte +lbl_808F0578 = .bss:0x808F0578; // type:object size:0x4 data:4byte +lbl_808F057C = .bss:0x808F057C; // type:object size:0x4 data:4byte +lbl_808F0580 = .bss:0x808F0580; // type:object size:0x4 data:4byte +lbl_808F0584 = .bss:0x808F0584; // type:object size:0x4 data:4byte +lbl_808F0588 = .bss:0x808F0588; // type:object size:0x4 data:4byte +lbl_808F058C = .bss:0x808F058C; // type:object size:0x4 data:4byte +lbl_808F0590 = .bss:0x808F0590; // type:object size:0x4 data:4byte +lbl_808F0594 = .bss:0x808F0594; // type:object size:0x4 data:4byte +lbl_808F0598 = .bss:0x808F0598; // type:object size:0x4 data:4byte +lbl_808F059C = .bss:0x808F059C; // type:object size:0x4 data:4byte +lbl_808F05A0 = .bss:0x808F05A0; // type:object size:0x4 data:4byte +lbl_808F05A4 = .bss:0x808F05A4; // type:object size:0x4 data:4byte +lbl_808F05A8 = .bss:0x808F05A8; // type:object size:0x4 data:4byte +lbl_808F05AC = .bss:0x808F05AC; // type:object size:0x4 data:4byte +lbl_808F05B0 = .bss:0x808F05B0; // type:object size:0x4 data:4byte +lbl_808F05B4 = .bss:0x808F05B4; // type:object size:0x4 data:4byte +lbl_808F05B8 = .bss:0x808F05B8; // type:object size:0x4 data:4byte +lbl_808F05BC = .bss:0x808F05BC; // type:object size:0x4 data:4byte +lbl_808F05C0 = .bss:0x808F05C0; // type:object size:0x4 data:4byte +lbl_808F05C4 = .bss:0x808F05C4; // type:object size:0x4 data:4byte +lbl_808F05C8 = .bss:0x808F05C8; // type:object size:0x4 data:4byte +lbl_808F05CC = .bss:0x808F05CC; // type:object size:0x4 data:4byte +lbl_808F05D0 = .bss:0x808F05D0; // type:object size:0x4 data:4byte +lbl_808F05D4 = .bss:0x808F05D4; // type:object size:0x4 data:4byte +lbl_808F05D8 = .bss:0x808F05D8; // type:object size:0x4 data:4byte +lbl_808F05DC = .bss:0x808F05DC; // type:object size:0x4 data:4byte +lbl_808F05E0 = .bss:0x808F05E0; // type:object size:0x4 data:4byte +lbl_808F05E4 = .bss:0x808F05E4; // type:object size:0x4 data:4byte +lbl_808F05E8 = .bss:0x808F05E8; // type:object size:0x4 data:4byte +lbl_808F05EC = .bss:0x808F05EC; // type:object size:0x4 data:4byte +lbl_808F05F0 = .bss:0x808F05F0; // type:object size:0x4 data:4byte +lbl_808F05F4 = .bss:0x808F05F4; // type:object size:0x4 data:4byte +lbl_808F05F8 = .bss:0x808F05F8; // type:object size:0x4 data:4byte +lbl_808F05FC = .bss:0x808F05FC; // type:object size:0x4 data:4byte +lbl_808F0600 = .bss:0x808F0600; // type:object size:0x4 data:4byte +lbl_808F0604 = .bss:0x808F0604; // type:object size:0x4 data:4byte +lbl_808F0608 = .bss:0x808F0608; // type:object size:0x4 data:4byte +lbl_808F060C = .bss:0x808F060C; // type:object size:0x4 data:4byte +lbl_808F0610 = .bss:0x808F0610; // type:object size:0x4 data:4byte +lbl_808F0614 = .bss:0x808F0614; // type:object size:0x4 data:4byte +lbl_808F0618 = .bss:0x808F0618; // type:object size:0x4 data:4byte +lbl_808F061C = .bss:0x808F061C; // type:object size:0x4 data:4byte +lbl_808F0620 = .bss:0x808F0620; // type:object size:0x4 data:4byte +lbl_808F0624 = .bss:0x808F0624; // type:object size:0x4 data:4byte +lbl_808F0628 = .bss:0x808F0628; // type:object size:0x4 data:4byte +lbl_808F062C = .bss:0x808F062C; // type:object size:0x4 data:4byte +lbl_808F0630 = .bss:0x808F0630; // type:object size:0x4 data:4byte +lbl_808F0634 = .bss:0x808F0634; // type:object size:0x4 data:4byte +lbl_808F0638 = .bss:0x808F0638; // type:object size:0x4 data:4byte +lbl_808F063C = .bss:0x808F063C; // type:object size:0x4 data:4byte +lbl_808F0640 = .bss:0x808F0640; // type:object size:0x4 data:4byte +lbl_808F0644 = .bss:0x808F0644; // type:object size:0x4 data:4byte +lbl_808F0648 = .bss:0x808F0648; // type:object size:0x4 data:4byte +lbl_808F064C = .bss:0x808F064C; // type:object size:0x4 data:4byte +lbl_808F0650 = .bss:0x808F0650; // type:object size:0x4 data:4byte +lbl_808F0654 = .bss:0x808F0654; // type:object size:0x4 data:4byte +lbl_808F0658 = .bss:0x808F0658; // type:object size:0x4 data:4byte +lbl_808F065C = .bss:0x808F065C; // type:object size:0x4 data:4byte +lbl_808F0660 = .bss:0x808F0660; // type:object size:0x4 data:4byte +lbl_808F0664 = .bss:0x808F0664; // type:object size:0x4 data:4byte +lbl_808F0668 = .bss:0x808F0668; // type:object size:0x4 data:4byte +lbl_808F066C = .bss:0x808F066C; // type:object size:0x4 data:4byte +lbl_808F0670 = .bss:0x808F0670; // type:object size:0x4 data:4byte +lbl_808F0674 = .bss:0x808F0674; // type:object size:0x4 data:4byte +lbl_808F0678 = .bss:0x808F0678; // type:object size:0x4 data:4byte +lbl_808F067C = .bss:0x808F067C; // type:object size:0x4 data:4byte +lbl_808F0680 = .bss:0x808F0680; // type:object size:0x4 data:4byte +lbl_808F0684 = .bss:0x808F0684; // type:object size:0x4 data:4byte +lbl_808F0688 = .bss:0x808F0688; // type:object size:0x4 data:4byte +lbl_808F068C = .bss:0x808F068C; // type:object size:0x4 data:4byte +lbl_808F0690 = .bss:0x808F0690; // type:object size:0x4 data:4byte +lbl_808F0694 = .bss:0x808F0694; // type:object size:0x4 data:4byte +lbl_808F0698 = .bss:0x808F0698; // type:object size:0x4 data:4byte +lbl_808F069C = .bss:0x808F069C; // type:object size:0x4 data:4byte +lbl_808F06A0 = .bss:0x808F06A0; // type:object size:0x4 data:4byte +lbl_808F06A4 = .bss:0x808F06A4; // type:object size:0x4 data:4byte +lbl_808F06A8 = .bss:0x808F06A8; // type:object size:0x4 data:4byte +lbl_808F06AC = .bss:0x808F06AC; // type:object size:0x4 data:4byte +lbl_808F06B0 = .bss:0x808F06B0; // type:object size:0x4 data:4byte +lbl_808F06B4 = .bss:0x808F06B4; // type:object size:0x4 data:4byte +lbl_808F06B8 = .bss:0x808F06B8; // type:object size:0x4 data:4byte +lbl_808F06BC = .bss:0x808F06BC; // type:object size:0x4 data:4byte +lbl_808F06C0 = .bss:0x808F06C0; // type:object size:0x4 data:4byte +lbl_808F06C4 = .bss:0x808F06C4; // type:object size:0x4 data:4byte +lbl_808F06C8 = .bss:0x808F06C8; // type:object size:0x4 data:4byte +lbl_808F06CC = .bss:0x808F06CC; // type:object size:0x4 data:4byte +lbl_808F06D0 = .bss:0x808F06D0; // type:object size:0x4 data:4byte +lbl_808F06D4 = .bss:0x808F06D4; // type:object size:0x4 data:4byte +lbl_808F06D8 = .bss:0x808F06D8; // type:object size:0x4 data:4byte +lbl_808F06DC = .bss:0x808F06DC; // type:object size:0x4 data:4byte +lbl_808F06E0 = .bss:0x808F06E0; // type:object size:0x4 data:4byte +lbl_808F06E4 = .bss:0x808F06E4; // type:object size:0x4 data:4byte +lbl_808F06E8 = .bss:0x808F06E8; // type:object size:0x4 data:4byte +lbl_808F06EC = .bss:0x808F06EC; // type:object size:0x4 data:4byte +lbl_808F06F0 = .bss:0x808F06F0; // type:object size:0x4 data:4byte +lbl_808F06F4 = .bss:0x808F06F4; // type:object size:0x4 data:4byte +lbl_808F06F8 = .bss:0x808F06F8; // type:object size:0x4 data:4byte +lbl_808F06FC = .bss:0x808F06FC; // type:object size:0x4 data:4byte +lbl_808F0700 = .bss:0x808F0700; // type:object size:0x4 data:4byte +lbl_808F0704 = .bss:0x808F0704; // type:object size:0x4 data:4byte +lbl_808F0708 = .bss:0x808F0708; // type:object size:0x4 data:4byte +lbl_808F070C = .bss:0x808F070C; // type:object size:0x4 data:4byte +lbl_808F0710 = .bss:0x808F0710; // type:object size:0x4 data:4byte +lbl_808F0714 = .bss:0x808F0714; // type:object size:0x4 data:4byte +lbl_808F0718 = .bss:0x808F0718; // type:object size:0x4 data:4byte +lbl_808F071C = .bss:0x808F071C; // type:object size:0x4 data:4byte +lbl_808F0720 = .bss:0x808F0720; // type:object size:0x4 data:4byte +lbl_808F0724 = .bss:0x808F0724; // type:object size:0x4 data:4byte +lbl_808F0728 = .bss:0x808F0728; // type:object size:0x4 data:4byte +lbl_808F072C = .bss:0x808F072C; // type:object size:0x4 data:4byte +lbl_808F0730 = .bss:0x808F0730; // type:object size:0x4 data:4byte +lbl_808F0734 = .bss:0x808F0734; // type:object size:0x4 data:4byte +lbl_808F0738 = .bss:0x808F0738; // type:object size:0x4 data:4byte +lbl_808F073C = .bss:0x808F073C; // type:object size:0x4 data:4byte +lbl_808F0740 = .bss:0x808F0740; // type:object size:0x4 data:4byte +lbl_808F0744 = .bss:0x808F0744; // type:object size:0x4 data:4byte +lbl_808F0748 = .bss:0x808F0748; // type:object size:0x4 data:4byte +lbl_808F074C = .bss:0x808F074C; // type:object size:0x4 data:4byte +lbl_808F0750 = .bss:0x808F0750; // type:object size:0x4 data:4byte +lbl_808F0754 = .bss:0x808F0754; // type:object size:0x4 data:4byte +lbl_808F0758 = .bss:0x808F0758; // type:object size:0x4 data:4byte +lbl_808F075C = .bss:0x808F075C; // type:object size:0x4 data:4byte +lbl_808F0760 = .bss:0x808F0760; // type:object size:0x4 data:4byte +lbl_808F0764 = .bss:0x808F0764; // type:object size:0x4 data:4byte +lbl_808F0768 = .bss:0x808F0768; // type:object size:0x4 data:4byte +lbl_808F076C = .bss:0x808F076C; // type:object size:0x4 data:4byte +lbl_808F0770 = .bss:0x808F0770; // type:object size:0x4 data:4byte +lbl_808F0774 = .bss:0x808F0774; // type:object size:0x4 data:4byte +lbl_808F0778 = .bss:0x808F0778; // type:object size:0x4 data:4byte +lbl_808F077C = .bss:0x808F077C; // type:object size:0x4 data:4byte +lbl_808F0780 = .bss:0x808F0780; // type:object size:0x4 data:4byte +lbl_808F0784 = .bss:0x808F0784; // type:object size:0x4 data:4byte +lbl_808F0788 = .bss:0x808F0788; // type:object size:0x4 data:4byte +lbl_808F078C = .bss:0x808F078C; // type:object size:0x4 data:4byte +lbl_808F0790 = .bss:0x808F0790; // type:object size:0x4 data:4byte +lbl_808F0794 = .bss:0x808F0794; // type:object size:0x4 data:4byte +lbl_808F0798 = .bss:0x808F0798; // type:object size:0x4 data:4byte +lbl_808F079C = .bss:0x808F079C; // type:object size:0x4 data:4byte +lbl_808F07A0 = .bss:0x808F07A0; // type:object size:0x4 data:4byte +lbl_808F07A4 = .bss:0x808F07A4; // type:object size:0x4 data:4byte +lbl_808F07A8 = .bss:0x808F07A8; // type:object size:0x4 data:4byte +lbl_808F07AC = .bss:0x808F07AC; // type:object size:0x4 data:4byte +lbl_808F07B0 = .bss:0x808F07B0; // type:object size:0x4 data:4byte +lbl_808F07B4 = .bss:0x808F07B4; // type:object size:0x4 data:4byte +lbl_808F07B8 = .bss:0x808F07B8; // type:object size:0x4 data:4byte +lbl_808F07BC = .bss:0x808F07BC; // type:object size:0x4 data:4byte +lbl_808F07C0 = .bss:0x808F07C0; // type:object size:0x4 data:4byte +lbl_808F07C4 = .bss:0x808F07C4; // type:object size:0x4 data:4byte +lbl_808F07C8 = .bss:0x808F07C8; // type:object size:0x4 data:4byte +lbl_808F07CC = .bss:0x808F07CC; // type:object size:0x4 data:4byte +lbl_808F07D0 = .bss:0x808F07D0; // type:object size:0x4 data:4byte +lbl_808F07D4 = .bss:0x808F07D4; // type:object size:0x4 data:4byte +lbl_808F07D8 = .bss:0x808F07D8; // type:object size:0x4 data:4byte +lbl_808F07DC = .bss:0x808F07DC; // type:object size:0x4 data:4byte +lbl_808F07E0 = .bss:0x808F07E0; // type:object size:0x4 data:4byte +lbl_808F07E4 = .bss:0x808F07E4; // type:object size:0x4 data:4byte +lbl_808F07E8 = .bss:0x808F07E8; // type:object size:0x4 data:4byte +lbl_808F07EC = .bss:0x808F07EC; // type:object size:0x4 data:4byte +lbl_808F07F0 = .bss:0x808F07F0; // type:object size:0x4 data:4byte +lbl_808F07F4 = .bss:0x808F07F4; // type:object size:0x4 data:4byte +lbl_808F07F8 = .bss:0x808F07F8; // type:object size:0x4 data:4byte +lbl_808F07FC = .bss:0x808F07FC; // type:object size:0x4 data:4byte +lbl_808F0800 = .bss:0x808F0800; // type:object size:0x4 data:4byte +lbl_808F0804 = .bss:0x808F0804; // type:object size:0x4 data:4byte +lbl_808F0808 = .bss:0x808F0808; // type:object size:0x4 data:4byte +lbl_808F080C = .bss:0x808F080C; // type:object size:0x4 data:4byte +lbl_808F0810 = .bss:0x808F0810; // type:object size:0x4 data:4byte +lbl_808F0814 = .bss:0x808F0814; // type:object size:0x4 data:4byte +lbl_808F0818 = .bss:0x808F0818; // type:object size:0x4 data:4byte +lbl_808F081C = .bss:0x808F081C; // type:object size:0x4 data:4byte +lbl_808F0820 = .bss:0x808F0820; // type:object size:0x4 data:4byte +lbl_808F0824 = .bss:0x808F0824; // type:object size:0x4 data:4byte +lbl_808F0828 = .bss:0x808F0828; // type:object size:0x4 data:4byte +lbl_808F082C = .bss:0x808F082C; // type:object size:0x4 data:4byte +lbl_808F0830 = .bss:0x808F0830; // type:object size:0x4 data:4byte +lbl_808F0834 = .bss:0x808F0834; // type:object size:0x4 data:4byte +lbl_808F0838 = .bss:0x808F0838; // type:object size:0x4 data:4byte +lbl_808F083C = .bss:0x808F083C; // type:object size:0x4 data:4byte +lbl_808F0840 = .bss:0x808F0840; // type:object size:0x4 data:4byte +lbl_808F0844 = .bss:0x808F0844; // type:object size:0x4 data:4byte +lbl_808F0848 = .bss:0x808F0848; // type:object size:0x4 data:4byte +lbl_808F084C = .bss:0x808F084C; // type:object size:0x4 data:4byte +lbl_808F0850 = .bss:0x808F0850; // type:object size:0x4 data:4byte +lbl_808F0854 = .bss:0x808F0854; // type:object size:0x4 data:4byte +lbl_808F0858 = .bss:0x808F0858; // type:object size:0x4 data:4byte +lbl_808F085C = .bss:0x808F085C; // type:object size:0x4 data:4byte +lbl_808F0860 = .bss:0x808F0860; // type:object size:0x4 data:4byte +lbl_808F0864 = .bss:0x808F0864; // type:object size:0x4 data:4byte +lbl_808F0868 = .bss:0x808F0868; // type:object size:0x4 data:4byte +lbl_808F086C = .bss:0x808F086C; // type:object size:0x4 data:4byte +lbl_808F0870 = .bss:0x808F0870; // type:object size:0x4 data:4byte +lbl_808F0874 = .bss:0x808F0874; // type:object size:0x4 data:4byte +lbl_808F0878 = .bss:0x808F0878; // type:object size:0x4 data:4byte +lbl_808F087C = .bss:0x808F087C; // type:object size:0x4 data:4byte +lbl_808F0880 = .bss:0x808F0880; // type:object size:0x4 data:4byte +lbl_808F0884 = .bss:0x808F0884; // type:object size:0x4 data:4byte +lbl_808F0888 = .bss:0x808F0888; // type:object size:0x4 data:4byte +lbl_808F088C = .bss:0x808F088C; // type:object size:0x4 data:4byte +lbl_808F0890 = .bss:0x808F0890; // type:object size:0x4 data:4byte +lbl_808F0894 = .bss:0x808F0894; // type:object size:0x4 data:4byte +lbl_808F0898 = .bss:0x808F0898; // type:object size:0x4 data:4byte +lbl_808F089C = .bss:0x808F089C; // type:object size:0x4 data:4byte +lbl_808F08A0 = .bss:0x808F08A0; // type:object size:0x4 data:4byte +lbl_808F08A4 = .bss:0x808F08A4; // type:object size:0x4 data:4byte +lbl_808F08A8 = .bss:0x808F08A8; // type:object size:0x4 data:4byte +lbl_808F08AC = .bss:0x808F08AC; // type:object size:0x4 data:4byte +lbl_808F08B0 = .bss:0x808F08B0; // type:object size:0x4 data:4byte +lbl_808F08B4 = .bss:0x808F08B4; // type:object size:0x4 data:4byte +lbl_808F08B8 = .bss:0x808F08B8; // type:object size:0x4 data:4byte +lbl_808F08BC = .bss:0x808F08BC; // type:object size:0x4 data:4byte +lbl_808F08C0 = .bss:0x808F08C0; // type:object size:0x4 data:4byte +lbl_808F08C4 = .bss:0x808F08C4; // type:object size:0x4 data:4byte +lbl_808F08C8 = .bss:0x808F08C8; // type:object size:0x4 data:4byte +lbl_808F08CC = .bss:0x808F08CC; // type:object size:0x4 data:4byte +lbl_808F08D0 = .bss:0x808F08D0; // type:object size:0x4 data:4byte +lbl_808F08D4 = .bss:0x808F08D4; // type:object size:0x4 data:4byte +lbl_808F08D8 = .bss:0x808F08D8; // type:object size:0x4 data:4byte +lbl_808F08DC = .bss:0x808F08DC; // type:object size:0x4 data:4byte +lbl_808F08E0 = .bss:0x808F08E0; // type:object size:0x4 data:4byte +lbl_808F08E4 = .bss:0x808F08E4; // type:object size:0x4 data:4byte +lbl_808F08E8 = .bss:0x808F08E8; // type:object size:0x4 data:4byte +lbl_808F08EC = .bss:0x808F08EC; // type:object size:0x4 data:4byte +lbl_808F08F0 = .bss:0x808F08F0; // type:object size:0x4 data:4byte +lbl_808F08F4 = .bss:0x808F08F4; // type:object size:0x4 data:4byte +lbl_808F08F8 = .bss:0x808F08F8; // type:object size:0x4 data:4byte +lbl_808F08FC = .bss:0x808F08FC; // type:object size:0x4 data:4byte +lbl_808F0900 = .bss:0x808F0900; // type:object size:0x4 data:4byte +lbl_808F0904 = .bss:0x808F0904; // type:object size:0x4 data:4byte +lbl_808F0908 = .bss:0x808F0908; // type:object size:0x4 data:4byte +lbl_808F090C = .bss:0x808F090C; // type:object size:0x4 data:4byte +lbl_808F0910 = .bss:0x808F0910; // type:object size:0x4 data:4byte +lbl_808F0914 = .bss:0x808F0914; // type:object size:0x4 data:4byte +lbl_808F0918 = .bss:0x808F0918; // type:object size:0x4 data:4byte +lbl_808F091C = .bss:0x808F091C; // type:object size:0x4 data:4byte +lbl_808F0920 = .bss:0x808F0920; // type:object size:0x8 data:4byte +lbl_808F0928 = .bss:0x808F0928; // type:object size:0x4 data:4byte +lbl_808F092C = .bss:0x808F092C; // type:object size:0x4 data:4byte +lbl_808F0930 = .bss:0x808F0930; // type:object size:0x4 data:4byte +lbl_808F0934 = .bss:0x808F0934; // type:object size:0x4 data:4byte +lbl_808F0938 = .bss:0x808F0938; // type:object size:0x4 data:4byte +lbl_808F093C = .bss:0x808F093C; // type:object size:0x4 data:4byte +lbl_808F0940 = .bss:0x808F0940; // type:object size:0x4 data:4byte +lbl_808F0944 = .bss:0x808F0944; // type:object size:0x4 data:4byte +lbl_808F0948 = .bss:0x808F0948; // type:object size:0x4 data:4byte +lbl_808F094C = .bss:0x808F094C; // type:object size:0x4 data:4byte +lbl_808F0950 = .bss:0x808F0950; // type:object size:0x8 data:4byte +lbl_808F0958 = .bss:0x808F0958; // type:object size:0x10 +lbl_808F0968 = .bss:0x808F0968; // type:object size:0x1C data:4byte +lbl_808F0984 = .bss:0x808F0984; // type:object size:0x14 +lbl_808F0998 = .bss:0x808F0998; // type:object size:0x8 +lbl_808F09A0 = .bss:0x808F09A0; // type:object size:0x8 data:4byte +lbl_808F09A8 = .bss:0x808F09A8; // type:object size:0x8 data:4byte +lbl_808F09B0 = .bss:0x808F09B0; // type:object size:0x10 +s_Instance__Q26Quazal8EventLog = .bss:0x808F09C0; // type:object size:0x168 +s_fcnMalloc__Q26Quazal13MemoryManager = .bss:0x808F0B28; // type:object size:0x4 data:4byte +lbl_808F0B2C = .bss:0x808F0B2C; // type:object size:0x4 data:4byte +s_uiHeaderSize__Q26Quazal13MemoryManager = .bss:0x808F0B30; // type:object size:0x4 data:4byte +lbl_808F0B34 = .bss:0x808F0B34; // type:object size:0x4 data:4byte +s_poDefaultMemoryManager = .bss:0x808F0B38; // type:object size:0x8 data:4byte +lbl_808F0B40 = .bss:0x808F0B40; // type:object size:0x10 +lbl_808F0B50 = .bss:0x808F0B50; // type:object size:0x24 data:4byte +lbl_808F0B74 = .bss:0x808F0B74; // type:object size:0x3C +lbl_808F0BB0 = .bss:0x808F0BB0; // type:object size:0x4 data:4byte +lbl_808F0BB4 = .bss:0x808F0BB4; // type:object size:0x4 data:4byte +lbl_808F0BB8 = .bss:0x808F0BB8; // type:object size:0x4 data:4byte +lbl_808F0BBC = .bss:0x808F0BBC; // type:object size:0x4 data:4byte +lbl_808F0BC0 = .bss:0x808F0BC0; // type:object size:0x4 data:4byte +lbl_808F0BC4 = .bss:0x808F0BC4; // type:object size:0x4 data:4byte +lbl_808F0BC8 = .bss:0x808F0BC8; // type:object size:0x4 data:4byte +lbl_808F0BCC = .bss:0x808F0BCC; // type:object size:0xC +lbl_808F0BD8 = .bss:0x808F0BD8; // type:object size:0x14 +lbl_808F0BEC = .bss:0x808F0BEC; // type:object size:0xC +lbl_808F0BF8 = .bss:0x808F0BF8; // type:object size:0x10 +_Instance__Q26Quazal8Platform = .bss:0x808F0C08; // type:object size:0x10 data:4byte +s_oRNG__Q26Quazal8Platform = .bss:0x808F0C18; // type:object size:0x9E0 +s_uiNextFreeID__Q26Quazal13ProfilingUnit = .bss:0x808F15F8; // type:object size:0x4 data:4byte +lbl_808F15FC = .bss:0x808F15FC; // type:object size:0xC +s_lstProfilingUnits__Q26Quazal13ProfilingUnit = .bss:0x808F1608; // type:object size:0x20 +lbl_808F1628 = .bss:0x808F1628; // type:object size:0xC +s_oCS__Q26Quazal16RefCountedObject = .bss:0x808F1634; // type:object size:0x14 +lbl_808F1648 = .bss:0x808F1648; // type:object size:0x10 +lbl_808F1658 = .bss:0x808F1658; // type:object size:0x1C +lbl_808F1674 = .bss:0x808F1674; // type:object size:0x14 +lbl_808F1688 = .bss:0x808F1688; // type:object size:0x8 data:4byte +lbl_808F1690 = .bss:0x808F1690; // type:object size:0x8 data:4byte +lbl_808F1698 = .bss:0x808F1698; // type:object size:0x8 data:4byte +lbl_808F16A0 = .bss:0x808F16A0; // type:object size:0xC +lbl_808F16AC = .bss:0x808F16AC; // type:object size:0x14 +lbl_808F16C0 = .bss:0x808F16C0; // type:object size:0x8 +lbl_808F16C8 = .bss:0x808F16C8; // type:object size:0xC +lbl_808F16D4 = .bss:0x808F16D4; // type:object size:0x48 +lbl_808F171C = .bss:0x808F171C; // type:object size:0x3C +lbl_808F1758 = .bss:0x808F1758; // type:object size:0x10 +lbl_808F1768 = .bss:0x808F1768; // type:object size:0xC +lbl_808F1774 = .bss:0x808F1774; // type:object size:0x24 +lbl_808F1798 = .bss:0x808F1798; // type:object size:0x8 data:4byte +lbl_808F17A0 = .bss:0x808F17A0; // type:object size:0xC +s_Instance__Q26Quazal8TraceLog = .bss:0x808F17AC; // type:object size:0x14 +s_uiNextFreeID__Q26Quazal9WaterMark = .bss:0x808F17C0; // type:object size:0x4 data:4byte +lbl_808F17C4 = .bss:0x808F17C4; // type:object size:0xC +lbl_808F17D0 = .bss:0x808F17D0; // type:object size:0x10 +lbl_808F17E0 = .bss:0x808F17E0; // type:object size:0x8 +lbl_808F17E8 = .bss:0x808F17E8; // type:object size:0x4 data:4byte +lbl_808F17EC = .bss:0x808F17EC; // type:object size:0xC +lbl_808F17F8 = .bss:0x808F17F8; // type:object size:0x18 +lbl_808F1810 = .bss:0x808F1810; // type:object size:0xC +lbl_808F181C = .bss:0x808F181C; // type:object size:0x34 +lbl_808F1850 = .bss:0x808F1850; // type:object size:0x8 data:4byte +lbl_808F1858 = .bss:0x808F1858; // type:object size:0x4 data:4byte +lbl_808F185C = .bss:0x808F185C; // type:object size:0x4 data:4byte +lbl_808F1860 = .bss:0x808F1860; // type:object size:0xC +lbl_808F186C = .bss:0x808F186C; // type:object size:0x4 +lbl_808F1870 = .bss:0x808F1870; // type:object size:0xC +lbl_808F187C = .bss:0x808F187C; // type:object size:0x14 +lbl_808F1890 = .bss:0x808F1890; // type:object size:0x10 +lbl_808F18A0 = .bss:0x808F18A0; // type:object size:0x10 +lbl_808F18B0 = .bss:0x808F18B0; // type:object size:0x10 +lbl_808F18C0 = .bss:0x808F18C0; // type:object size:0x8 +lbl_808F18C8 = .bss:0x808F18C8; // type:object size:0xC +lbl_808F18D4 = .bss:0x808F18D4; // type:object size:0x4 data:4byte +lbl_808F18D8 = .bss:0x808F18D8; // type:object size:0x10 +lbl_808F18E8 = .bss:0x808F18E8; // type:object size:0x8 +lbl_808F18F0 = .bss:0x808F18F0; // type:object size:0x8 data:4byte +lbl_808F18F8 = .bss:0x808F18F8; // type:object size:0x10 +lbl_808F1908 = .bss:0x808F1908; // type:object size:0x10 +lbl_808F1918 = .bss:0x808F1918; // type:object size:0x8 data:4byte +lbl_808F1920 = .bss:0x808F1920; // type:object size:0xC +lbl_808F192C = .bss:0x808F192C; // type:object size:0x10 +lbl_808F193C = .bss:0x808F193C; // type:object size:0x10 +lbl_808F194C = .bss:0x808F194C; // type:object size:0x10 +lbl_808F195C = .bss:0x808F195C; // type:object size:0x10 +lbl_808F196C = .bss:0x808F196C; // type:object size:0x20 +lbl_808F198C = .bss:0x808F198C; // type:object size:0x4 +lbl_808F1990 = .bss:0x808F1990; // type:object size:0x10 +lbl_808F19A0 = .bss:0x808F19A0; // type:object size:0xB00 +lbl_808F24A0 = .bss:0x808F24A0; // type:object size:0x10 +lbl_808F24B0 = .bss:0x808F24B0; // type:object size:0x30 +lbl_808F24E0 = .bss:0x808F24E0; // type:object size:0x10 +lbl_808F24F0 = .bss:0x808F24F0; // type:object size:0x5C +lbl_808F254C = .bss:0x808F254C; // type:object size:0x20 +lbl_808F256C = .bss:0x808F256C; // type:object size:0x3C +lbl_808F25A8 = .bss:0x808F25A8; // type:object size:0x10 +lbl_808F25B8 = .bss:0x808F25B8; // type:object size:0x80 +lbl_808F2638 = .bss:0x808F2638; // type:object size:0x10 +lbl_808F2648 = .bss:0x808F2648; // type:object size:0x30 +lbl_808F2678 = .bss:0x808F2678; // type:object size:0x10 +lbl_808F2688 = .bss:0x808F2688; // type:object size:0x30 +lbl_808F26B8 = .bss:0x808F26B8; // type:object size:0x8 data:4byte +lbl_808F26C0 = .bss:0x808F26C0; // type:object size:0x1C0 +s_pFirstDDLDecl__Q26Quazal15DDLDeclarations = .bss:0x808F2880; // type:object size:0x4 data:4byte +s_uiFirstUserClassID__Q26Quazal15DDLDeclarations = .bss:0x808F2884; // type:object size:0x4 data:4byte +lbl_808F2888 = .bss:0x808F2888; // type:object size:0x8 data:4byte +lbl_808F2890 = .bss:0x808F2890; // type:object size:0x4 data:4byte +lbl_808F2894 = .bss:0x808F2894; // type:object size:0xC +lbl_808F28A0 = .bss:0x808F28A0; // type:object size:0x8 +lbl_808F28A8 = .bss:0x808F28A8; // type:object size:0xC +lbl_808F28B4 = .bss:0x808F28B4; // type:object size:0x18 +lbl_808F28CC = .bss:0x808F28CC; // type:object size:0x18 +lbl_808F28E4 = .bss:0x808F28E4; // type:object size:0x14 +lbl_808F28F8 = .bss:0x808F28F8; // type:object size:0x8 +lbl_808F2900 = .bss:0x808F2900; // type:object size:0xC +lbl_808F290C = .bss:0x808F290C; // type:object size:0x14 +lbl_808F2920 = .bss:0x808F2920; // type:object size:0x1F4 +lbl_808F2B14 = .bss:0x808F2B14; // type:object size:0x64 +lbl_808F2B78 = .bss:0x808F2B78; // type:object size:0x64 +lbl_808F2BDC = .bss:0x808F2BDC; // type:object size:0x190 +lbl_808F2D6C = .bss:0x808F2D6C; // type:object size:0x64 +lbl_808F2DD0 = .bss:0x808F2DD0; // type:object size:0x64 +lbl_808F2E34 = .bss:0x808F2E34; // type:object size:0x64 +lbl_808F2E98 = .bss:0x808F2E98; // type:object size:0xC +lbl_808F2EA4 = .bss:0x808F2EA4; // type:object size:0x14 +lbl_808F2EB8 = .bss:0x808F2EB8; // type:object size:0x8 data:4byte +lbl_808F2EC0 = .bss:0x808F2EC0; // type:object size:0x10 +lbl_808F2ED0 = .bss:0x808F2ED0; // type:object size:0x30 +lbl_808F2F00 = .bss:0x808F2F00; // type:object size:0x10 +lbl_808F2F10 = .bss:0x808F2F10; // type:object size:0x28 +lbl_808F2F38 = .bss:0x808F2F38; // type:object size:0x18 data:4byte +lbl_808F2F50 = .bss:0x808F2F50; // type:object size:0xC +lbl_808F2F5C = .bss:0x808F2F5C; // type:object size:0x14 +lbl_808F2F70 = .bss:0x808F2F70; // type:object size:0x4 data:4byte +lbl_808F2F74 = .bss:0x808F2F74; // type:object size:0x4 data:4byte +lbl_808F2F78 = .bss:0x808F2F78; // type:object size:0x8 data:4byte +lbl_808F2F80 = .bss:0x808F2F80; // type:object size:0x8 data:4byte +lbl_808F2F88 = .bss:0x808F2F88; // type:object size:0xC +lbl_808F2F94 = .bss:0x808F2F94; // type:object size:0x1C +lbl_808F2FB0 = .bss:0x808F2FB0; // type:object size:0x4 data:4byte +lbl_808F2FB4 = .bss:0x808F2FB4; // type:object size:0x4 data:4byte +lbl_808F2FB8 = .bss:0x808F2FB8; // type:object size:0x8 data:4byte +lbl_808F2FC0 = .bss:0x808F2FC0; // type:object size:0x8 data:4byte +lbl_808F2FC8 = .bss:0x808F2FC8; // type:object size:0x8 data:4byte +lbl_808F2FD0 = .bss:0x808F2FD0; // type:object size:0x8 data:4byte +lbl_808F2FD8 = .bss:0x808F2FD8; // type:object size:0xC +lbl_808F2FE4 = .bss:0x808F2FE4; // type:object size:0x14 +lbl_808F2FF8 = .bss:0x808F2FF8; // type:object size:0xC +lbl_808F3004 = .bss:0x808F3004; // type:object size:0x14 +lbl_808F3018 = .bss:0x808F3018; // type:object size:0x8 data:4byte +lbl_808F3020 = .bss:0x808F3020; // type:object size:0x8 data:4byte +lbl_808F3028 = .bss:0x808F3028; // type:object size:0x8 data:4byte +lbl_808F3030 = .bss:0x808F3030; // type:object size:0x8 data:4byte +lbl_808F3038 = .bss:0x808F3038; // type:object size:0x8 data:4byte +lbl_808F3040 = .bss:0x808F3040; // type:object size:0xC +lbl_808F304C = .bss:0x808F304C; // type:object size:0x2B4 +lbl_808F3300 = .bss:0x808F3300; // type:object size:0x1C +lbl_808F331C = .bss:0x808F331C; // type:object size:0xC +lbl_808F3328 = .bss:0x808F3328; // type:object size:0x10 +lbl_808F3338 = .bss:0x808F3338; // type:object size:0xC +lbl_808F3344 = .bss:0x808F3344; // type:object size:0x14 +lbl_808F3358 = .bss:0x808F3358; // type:object size:0xC +lbl_808F3364 = .bss:0x808F3364; // type:object size:0x14 +lbl_808F3378 = .bss:0x808F3378; // type:object size:0x10 +lbl_808F3388 = .bss:0x808F3388; // type:object size:0x18 +lbl_808F33A0 = .bss:0x808F33A0; // type:object size:0x8 data:4byte +lbl_808F33A8 = .bss:0x808F33A8; // type:object size:0xC +lbl_808F33B4 = .bss:0x808F33B4; // type:object size:0x14 +lbl_808F33C8 = .bss:0x808F33C8; // type:object size:0x4 data:4byte +lbl_808F33CC = .bss:0x808F33CC; // type:object size:0x10 data:4byte +lbl_808F33DC = .bss:0x808F33DC; // type:object size:0x1C +lbl_808F33F8 = .bss:0x808F33F8; // type:object size:0x30 +lbl_808F3428 = .bss:0x808F3428; // type:object size:0x10 +lbl_808F3438 = .bss:0x808F3438; // type:object size:0x60 +lbl_808F3498 = .bss:0x808F3498; // type:object size:0xA0 +lbl_808F3538 = .bss:0x808F3538; // type:object size:0xC +lbl_808F3544 = .bss:0x808F3544; // type:object size:0x14 +lbl_808F3558 = .bss:0x808F3558; // type:object size:0xC +lbl_808F3564 = .bss:0x808F3564; // type:object size:0x18 +lbl_808F357C = .bss:0x808F357C; // type:object size:0x14 +lbl_808F3590 = .bss:0x808F3590; // type:object size:0x8 data:4byte +lbl_808F3598 = .bss:0x808F3598; // type:object size:0xC +lbl_808F35A4 = .bss:0x808F35A4; // type:object size:0x14 +lbl_808F35B8 = .bss:0x808F35B8; // type:object size:0xC +lbl_808F35C4 = .bss:0x808F35C4; // type:object size:0x14 +lbl_808F35D8 = .bss:0x808F35D8; // type:object size:0x8 data:4byte +lbl_808F35E0 = .bss:0x808F35E0; // type:object size:0xC +lbl_808F35EC = .bss:0x808F35EC; // type:object size:0x14 +lbl_808F3600 = .bss:0x808F3600; // type:object size:0x8 data:4byte +lbl_808F3608 = .bss:0x808F3608; // type:object size:0x8 data:4byte +lbl_808F3610 = .bss:0x808F3610; // type:object size:0xC +lbl_808F361C = .bss:0x808F361C; // type:object size:0xC +lbl_808F3628 = .bss:0x808F3628; // type:object size:0xC +lbl_808F3634 = .bss:0x808F3634; // type:object size:0x14 +lbl_808F3648 = .bss:0x808F3648; // type:object size:0x4 data:4byte +lbl_808F364C = .bss:0x808F364C; // type:object size:0xC +lbl_808F3658 = .bss:0x808F3658; // type:object size:0x10 data:4byte +lbl_808F3668 = .bss:0x808F3668; // type:object size:0x80 +lbl_808F36E8 = .bss:0x808F36E8; // type:object size:0x4 data:4byte +lbl_808F36EC = .bss:0x808F36EC; // type:object size:0xC +lbl_808F36F8 = .bss:0x808F36F8; // type:object size:0x18 +lbl_808F3710 = .bss:0x808F3710; // type:object size:0x10 data:4byte +lbl_808F3720 = .bss:0x808F3720; // type:object size:0x8 data:4byte +lbl_808F3728 = .bss:0x808F3728; // type:object size:0x10 +lbl_808F3738 = .bss:0x808F3738; // type:object size:0x1C +lbl_808F3754 = .bss:0x808F3754; // type:object size:0x1C +lbl_808F3770 = .bss:0x808F3770; // type:object size:0xC +lbl_808F377C = .bss:0x808F377C; // type:object size:0x14 +lbl_808F3790 = .bss:0x808F3790; // type:object size:0xC +lbl_808F379C = .bss:0x808F379C; // type:object size:0x4 +lbl_808F37A0 = .bss:0x808F37A0; // type:object size:0x4 data:4byte +lbl_808F37A4 = .bss:0x808F37A4; // type:object size:0x4 data:4byte +lbl_808F37A8 = .bss:0x808F37A8; // type:object size:0x4 data:4byte +lbl_808F37AC = .bss:0x808F37AC; // type:object size:0xC +lbl_808F37B8 = .bss:0x808F37B8; // type:object size:0x18 +lbl_808F37D0 = .bss:0x808F37D0; // type:object size:0xC +lbl_808F37DC = .bss:0x808F37DC; // type:object size:0x2B4 +lbl_808F3A90 = .bss:0x808F3A90; // type:object size:0xC +lbl_808F3A9C = .bss:0x808F3A9C; // type:object size:0x2B4 +lbl_808F3D50 = .bss:0x808F3D50; // type:object size:0x10 +lbl_808F3D60 = .bss:0x808F3D60; // type:object size:0x8 +lbl_808F3D68 = .bss:0x808F3D68; // type:object size:0x10 +lbl_808F3D78 = .bss:0x808F3D78; // type:object size:0x8 +lbl_808F3D80 = .bss:0x808F3D80; // type:object size:0x10 +lbl_808F3D90 = .bss:0x808F3D90; // type:object size:0x8 +@LOCAL@Type__22ServerStatusChangedMsgFv@t = .bss:0x808F3D98; // type:object size:0x4 data:4byte +@LOCAL@Type__12UserLoginMsgFv@t = .bss:0x808F3D9C; // type:object size:0x4 data:4byte +@LOCAL@Type__21DeleteUserCompleteMsgFv@t = .bss:0x808F3DA0; // type:object size:0x4 data:4byte +@LOCAL@Type__23UserNameNewlyProfaneMsgFv@t = .bss:0x808F3DA4; // type:object size:0x4 data:4byte +lbl_808F3DA8 = .bss:0x808F3DA8; // type:object size:0x8 +lbl_808F3DB0 = .bss:0x808F3DB0; // type:object size:0x4 data:4byte +lbl_808F3DB4 = .bss:0x808F3DB4; // type:object size:0x4 data:4byte +lbl_808F3DB8 = .bss:0x808F3DB8; // type:object size:0x4 data:4byte +lbl_808F3DBC = .bss:0x808F3DBC; // type:object size:0x4 data:4byte +lbl_808F3DC0 = .bss:0x808F3DC0; // type:object size:0x4 data:4byte +lbl_808F3DC4 = .bss:0x808F3DC4; // type:object size:0x4 data:4byte +lbl_808F3DC8 = .bss:0x808F3DC8; // type:object size:0x4 data:4byte +lbl_808F3DCC = .bss:0x808F3DCC; // type:object size:0x4 data:4byte +lbl_808F3DD0 = .bss:0x808F3DD0; // type:object size:0x4 data:4byte +lbl_808F3DD4 = .bss:0x808F3DD4; // type:object size:0x4 data:4byte +lbl_808F3DD8 = .bss:0x808F3DD8; // type:object size:0x4 data:4byte +lbl_808F3DDC = .bss:0x808F3DDC; // type:object size:0x4 data:4byte +lbl_808F3DE0 = .bss:0x808F3DE0; // type:object size:0x4 data:4byte +lbl_808F3DE4 = .bss:0x808F3DE4; // type:object size:0x4 data:4byte +lbl_808F3DE8 = .bss:0x808F3DE8; // type:object size:0x10 +lbl_808F3DF8 = .bss:0x808F3DF8; // type:object size:0x8 +lbl_808F3E00 = .bss:0x808F3E00; // type:object size:0xC +lbl_808F3E0C = .bss:0x808F3E0C; // type:object size:0x2C +lbl_808F3E38 = .bss:0x808F3E38; // type:object size:0x3C data:4byte +lbl_808F3E74 = .bss:0x808F3E74; // type:object size:0x8 data:float +lbl_808F3E7C = .bss:0x808F3E7C; // type:object size:0x34 data:4byte +lbl_808F3EB0 = .bss:0x808F3EB0; // type:object size:0x18 +lbl_808F3EC8 = .bss:0x808F3EC8; // type:object size:0x360 +lbl_808F4228 = .bss:0x808F4228; // type:object size:0x4 +lbl_808F422C = .bss:0x808F422C; // type:object size:0x34 data:4byte +lbl_808F4260 = .bss:0x808F4260; // type:object size:0xD8 data:4byte +lbl_808F4338 = .bss:0x808F4338; // type:object size:0x4 data:4byte +lbl_808F433C = .bss:0x808F433C; // type:object size:0x4 data:4byte +lbl_808F4340 = .bss:0x808F4340; // type:object size:0x4 data:4byte +lbl_808F4344 = .bss:0x808F4344; // type:object size:0x4 data:4byte +lbl_808F4348 = .bss:0x808F4348; // type:object size:0x8 data:4byte +lbl_808F4350 = .bss:0x808F4350; // type:object size:0x10 +lbl_808F4360 = .bss:0x808F4360; // type:object size:0x20 +lbl_808F4380 = .bss:0x808F4380; // type:object size:0x10 +TheNetMessageFactory = .bss:0x808F4390; // type:object size:0x8 +lbl_808F4398 = .bss:0x808F4398; // type:object size:0xC +lbl_808F43A4 = .bss:0x808F43A4; // type:object size:0x4 data:4byte +lbl_808F43A8 = .bss:0x808F43A8; // type:object size:0x10 +lbl_808F43B8 = .bss:0x808F43B8; // type:object size:0x20 +lbl_808F43D8 = .bss:0x808F43D8; // type:object size:0x4 data:4byte +lbl_808F43DC = .bss:0x808F43DC; // type:object size:0xC +lbl_808F43E8 = .bss:0x808F43E8; // type:object size:0x8 +lbl_808F43F0 = .bss:0x808F43F0; // type:object size:0x10 +lbl_808F4400 = .bss:0x808F4400; // type:object size:0x8 +lbl_808F4408 = .bss:0x808F4408; // type:object size:0x40 +lbl_808F4448 = .bss:0x808F4448; // type:object size:0x38 +lbl_808F4480 = .bss:0x808F4480; // type:object size:0x10 +lbl_808F4490 = .bss:0x808F4490; // type:object size:0x8 +lbl_808F4498 = .bss:0x808F4498; // type:object size:0x10 +lbl_808F44A8 = .bss:0x808F44A8; // type:object size:0x8 +lbl_808F44B0 = .bss:0x808F44B0; // type:object size:0x10 +lbl_808F44C0 = .bss:0x808F44C0; // type:object size:0x8 +lbl_808F44C8 = .bss:0x808F44C8; // type:object size:0x10 +lbl_808F44D8 = .bss:0x808F44D8; // type:object size:0x8 +lbl_808F44E0 = .bss:0x808F44E0; // type:object size:0x10 +lbl_808F44F0 = .bss:0x808F44F0; // type:object size:0xC0 +lbl_808F45B0 = .bss:0x808F45B0; // type:object size:0x10 +lbl_808F45C0 = .bss:0x808F45C0; // type:object size:0xE0 +TheSyncStore = .bss:0x808F46A0; // type:object size:0x8 data:4byte +lbl_808F46A8 = .bss:0x808F46A8; // type:object size:0x4 data:4byte +lbl_808F46AC = .bss:0x808F46AC; // type:object size:0x4 data:4byte +lbl_808F46B0 = .bss:0x808F46B0; // type:object size:0x8 data:4byte +lbl_808F46B8 = .bss:0x808F46B8; // type:object size:0xC +lbl_808F46C4 = .bss:0x808F46C4; // type:object size:0x18 +lbl_808F46DC = .bss:0x808F46DC; // type:object size:0x18 +lbl_808F46F4 = .bss:0x808F46F4; // type:object size:0x14 +lbl_808F4708 = .bss:0x808F4708; // type:object size:0x8 data:4byte +lbl_808F4710 = .bss:0x808F4710; // type:object size:0x118 +lbl_808F4828 = .bss:0x808F4828; // type:object size:0x8 data:4byte +lbl_808F4830 = .bss:0x808F4830; // type:object size:0x78 +lbl_808F48A8 = .bss:0x808F48A8; // type:object size:0x10 +lbl_808F48B8 = .bss:0x808F48B8; // type:object size:0x108 +@LOCAL@Type__15NamingResultMsgFv@t = .bss:0x808F49C0; // type:object size:0x20 data:4byte +lbl_808F49E0 = .bss:0x808F49E0; // type:object size:0x10 +lbl_808F49F0 = .bss:0x808F49F0; // type:object size:0x130 +lbl_808F4B20 = .bss:0x808F4B20; // type:object size:0x4000 +lbl_808F8B20 = .bss:0x808F8B20; // type:object size:0xC +lbl_808F8B2C = .bss:0x808F8B2C; // type:object size:0x4 +lbl_808F8B30 = .bss:0x808F8B30; // type:object size:0x18 +lbl_808F8B48 = .bss:0x808F8B48; // type:object size:0xB0 +lbl_808F8BF8 = .bss:0x808F8BF8; // type:object size:0x358 +lbl_808F8F50 = .bss:0x808F8F50; // type:object size:0x4 data:4byte +lbl_808F8F54 = .bss:0x808F8F54; // type:object size:0xC +lbl_808F8F60 = .bss:0x808F8F60; // type:object size:0x8 +lbl_808F8F68 = .bss:0x808F8F68; // type:object size:0x4 data:4byte +lbl_808F8F6C = .bss:0x808F8F6C; // type:object size:0x4 data:4byte +lbl_808F8F70 = .bss:0x808F8F70; // type:object size:0x10 +lbl_808F8F80 = .bss:0x808F8F80; // type:object size:0x8 +lbl_808F8F88 = .bss:0x808F8F88; // type:object size:0x4 data:4byte +lbl_808F8F8C = .bss:0x808F8F8C; // type:object size:0x4 data:4byte +lbl_808F8F90 = .bss:0x808F8F90; // type:object size:0x4 data:4byte +lbl_808F8F94 = .bss:0x808F8F94; // type:object size:0x4 data:4byte +lbl_808F8F98 = .bss:0x808F8F98; // type:object size:0x4 data:4byte +lbl_808F8F9C = .bss:0x808F8F9C; // type:object size:0x4 data:4byte +lbl_808F8FA0 = .bss:0x808F8FA0; // type:object size:0x4 data:4byte +lbl_808F8FA4 = .bss:0x808F8FA4; // type:object size:0x4 data:4byte +lbl_808F8FA8 = .bss:0x808F8FA8; // type:object size:0x4 data:4byte +lbl_808F8FAC = .bss:0x808F8FAC; // type:object size:0x4 data:4byte +lbl_808F8FB0 = .bss:0x808F8FB0; // type:object size:0x8 data:4byte +lbl_808F8FB8 = .bss:0x808F8FB8; // type:object size:0x1C data:4byte +lbl_808F8FD4 = .bss:0x808F8FD4; // type:object size:0x2EC data:4byte +lbl_808F92C0 = .bss:0x808F92C0; // type:object size:0x10 +lbl_808F92D0 = .bss:0x808F92D0; // type:object size:0x8 data:float +lbl_808F92D8 = .bss:0x808F92D8; // type:object size:0x4 data:4byte +lbl_808F92DC = .bss:0x808F92DC; // type:object size:0x4 data:4byte +lbl_808F92E0 = .bss:0x808F92E0; // type:object size:0x4 data:4byte +lbl_808F92E4 = .bss:0x808F92E4; // type:object size:0x4 data:4byte +lbl_808F92E8 = .bss:0x808F92E8; // type:object size:0x4 data:4byte +lbl_808F92EC = .bss:0x808F92EC; // type:object size:0x4 data:4byte +lbl_808F92F0 = .bss:0x808F92F0; // type:object size:0x4 data:4byte +lbl_808F92F4 = .bss:0x808F92F4; // type:object size:0x4 data:4byte +lbl_808F92F8 = .bss:0x808F92F8; // type:object size:0x4 data:4byte +lbl_808F92FC = .bss:0x808F92FC; // type:object size:0x4 data:4byte +lbl_808F9300 = .bss:0x808F9300; // type:object size:0x8 data:4byte +lbl_808F9308 = .bss:0x808F9308; // type:object size:0x8 data:4byte +lbl_808F9310 = .bss:0x808F9310; // type:object size:0x8 +lbl_808F9318 = .bss:0x808F9318; // type:object size:0x10 +lbl_808F9328 = .bss:0x808F9328; // type:object size:0x8 +lbl_808F9330 = .bss:0x808F9330; // type:object size:0x4 data:4byte +lbl_808F9334 = .bss:0x808F9334; // type:object size:0x4 data:4byte +lbl_808F9338 = .bss:0x808F9338; // type:object size:0x4 data:4byte +lbl_808F933C = .bss:0x808F933C; // type:object size:0x4 data:4byte +lbl_808F9340 = .bss:0x808F9340; // type:object size:0x4 data:4byte +lbl_808F9344 = .bss:0x808F9344; // type:object size:0x4 data:4byte +lbl_808F9348 = .bss:0x808F9348; // type:object size:0x8 data:4byte +TheBandUserMgr = .bss:0x808F9350; // type:object size:0x4 data:4byte +lbl_808F9354 = .bss:0x808F9354; // type:object size:0x4 data:4byte +lbl_808F9358 = .bss:0x808F9358; // type:object size:0x48 +lbl_808F93A0 = .bss:0x808F93A0; // type:object size:0x10 +lbl_808F93B0 = .bss:0x808F93B0; // type:object size:0x264 +lbl_808F9614 = .bss:0x808F9614; // type:object size:0x4 data:4byte +lbl_808F9618 = .bss:0x808F9618; // type:object size:0xD0 data:4byte +lbl_808F96E8 = .bss:0x808F96E8; // type:object size:0x10 +lbl_808F96F8 = .bss:0x808F96F8; // type:object size:0x8 +lbl_808F9700 = .bss:0x808F9700; // type:object size:0x10 +lbl_808F9710 = .bss:0x808F9710; // type:object size:0x8 +lbl_808F9718 = .bss:0x808F9718; // type:object size:0x4 data:4byte +lbl_808F971C = .bss:0x808F971C; // type:object size:0x4 data:4byte +lbl_808F9720 = .bss:0x808F9720; // type:object size:0x10 +lbl_808F9730 = .bss:0x808F9730; // type:object size:0x4 data:4byte +lbl_808F9734 = .bss:0x808F9734; // type:object size:0x4 data:4byte +lbl_808F9738 = .bss:0x808F9738; // type:object size:0x10 +lbl_808F9748 = .bss:0x808F9748; // type:object size:0x8 +lbl_808F9750 = .bss:0x808F9750; // type:object size:0x4 data:4byte +lbl_808F9754 = .bss:0x808F9754; // type:object size:0x4 data:4byte +TheGame = .bss:0x808F9758; // type:object size:0x4 data:4byte +lbl_808F975C = .bss:0x808F975C; // type:object size:0xC +lbl_808F9768 = .bss:0x808F9768; // type:object size:0x4 +lbl_808F976C = .bss:0x808F976C; // type:object size:0x4 data:4byte +lbl_808F9770 = .bss:0x808F9770; // type:object size:0x4 data:4byte +lbl_808F9774 = .bss:0x808F9774; // type:object size:0x4 data:4byte +lbl_808F9778 = .bss:0x808F9778; // type:object size:0x4 data:4byte +lbl_808F977C = .bss:0x808F977C; // type:object size:0x4 data:4byte +lbl_808F9780 = .bss:0x808F9780; // type:object size:0x4 data:4byte +lbl_808F9784 = .bss:0x808F9784; // type:object size:0x4 data:4byte +lbl_808F9788 = .bss:0x808F9788; // type:object size:0x4 data:4byte +lbl_808F978C = .bss:0x808F978C; // type:object size:0x4 data:4byte +TheGameConfig = .bss:0x808F9790; // type:object size:0x8 data:4byte +lbl_808F9798 = .bss:0x808F9798; // type:object size:0x8 data:byte +lbl_808F97A0 = .bss:0x808F97A0; // type:object size:0x8 +lbl_808F97A8 = .bss:0x808F97A8; // type:object size:0x4 data:4byte +lbl_808F97AC = .bss:0x808F97AC; // type:object size:0xC +lbl_808F97B8 = .bss:0x808F97B8; // type:object size:0x8 +lbl_808F97C0 = .bss:0x808F97C0; // type:object size:0x4 data:4byte +lbl_808F97C4 = .bss:0x808F97C4; // type:object size:0x4 data:4byte +lbl_808F97C8 = .bss:0x808F97C8; // type:object size:0x4 data:4byte +lbl_808F97CC = .bss:0x808F97CC; // type:object size:0x4 data:4byte +TheGameMode = .bss:0x808F97D0; // type:object size:0x4 data:4byte +lbl_808F97D4 = .bss:0x808F97D4; // type:object size:0xC +lbl_808F97E0 = .bss:0x808F97E0; // type:object size:0x8 +lbl_808F97E8 = .bss:0x808F97E8; // type:object size:0x4 data:4byte +lbl_808F97EC = .bss:0x808F97EC; // type:object size:0xC +lbl_808F97F8 = .bss:0x808F97F8; // type:object size:0x260 +lbl_808F9A58 = .bss:0x808F9A58; // type:object size:0x4 data:4byte +lbl_808F9A5C = .bss:0x808F9A5C; // type:object size:0x4 data:4byte +lbl_808F9A60 = .bss:0x808F9A60; // type:object size:0x4 data:4byte +lbl_808F9A64 = .bss:0x808F9A64; // type:object size:0xC0 data:4byte +lbl_808F9B24 = .bss:0x808F9B24; // type:object size:0x4 data:4byte +lbl_808F9B28 = .bss:0x808F9B28; // type:object size:0x4 data:4byte +lbl_808F9B2C = .bss:0x808F9B2C; // type:object size:0x4 data:4byte +lbl_808F9B30 = .bss:0x808F9B30; // type:object size:0xC8 data:4byte +lbl_808F9BF8 = .bss:0x808F9BF8; // type:object size:0x10 +lbl_808F9C08 = .bss:0x808F9C08; // type:object size:0x8 +lbl_808F9C10 = .bss:0x808F9C10; // type:object size:0x10 +lbl_808F9C20 = .bss:0x808F9C20; // type:object size:0x8 +lbl_808F9C28 = .bss:0x808F9C28; // type:object size:0x10 +lbl_808F9C38 = .bss:0x808F9C38; // type:object size:0x50 +lbl_808F9C88 = .bss:0x808F9C88; // type:object size:0x10 +lbl_808F9C98 = .bss:0x808F9C98; // type:object size:0x8 +lbl_808F9CA0 = .bss:0x808F9CA0; // type:object size:0x10 +lbl_808F9CB0 = .bss:0x808F9CB0; // type:object size:0x8 +lbl_808F9CB8 = .bss:0x808F9CB8; // type:object size:0x10 +lbl_808F9CC8 = .bss:0x808F9CC8; // type:object size:0x8 +lbl_808F9CD0 = .bss:0x808F9CD0; // type:object size:0x10 +lbl_808F9CE0 = .bss:0x808F9CE0; // type:object size:0x8 +lbl_808F9CE8 = .bss:0x808F9CE8; // type:object size:0x10 +lbl_808F9CF8 = .bss:0x808F9CF8; // type:object size:0x8 +lbl_808F9D00 = .bss:0x808F9D00; // type:object size:0x10 +lbl_808F9D10 = .bss:0x808F9D10; // type:object size:0x8 +lbl_808F9D18 = .bss:0x808F9D18; // type:object size:0x4 data:4byte +lbl_808F9D1C = .bss:0x808F9D1C; // type:object size:0x4 data:4byte +lbl_808F9D20 = .bss:0x808F9D20; // type:object size:0x10 +lbl_808F9D30 = .bss:0x808F9D30; // type:object size:0x8 +lbl_808F9D38 = .bss:0x808F9D38; // type:object size:0x10 +lbl_808F9D48 = .bss:0x808F9D48; // type:object size:0x8 +lbl_808F9D50 = .bss:0x808F9D50; // type:object size:0x10 +lbl_808F9D60 = .bss:0x808F9D60; // type:object size:0x8 +lbl_808F9D68 = .bss:0x808F9D68; // type:object size:0x10 +lbl_808F9D78 = .bss:0x808F9D78; // type:object size:0x8 +lbl_808F9D80 = .bss:0x808F9D80; // type:object size:0x10 +lbl_808F9D90 = .bss:0x808F9D90; // type:object size:0x8 +lbl_808F9D98 = .bss:0x808F9D98; // type:object size:0x10 +lbl_808F9DA8 = .bss:0x808F9DA8; // type:object size:0x8 +lbl_808F9DB0 = .bss:0x808F9DB0; // type:object size:0x10 +lbl_808F9DC0 = .bss:0x808F9DC0; // type:object size:0x2B8 +lbl_808FA078 = .bss:0x808FA078; // type:object size:0x4 data:4byte +lbl_808FA07C = .bss:0x808FA07C; // type:object size:0x4 data:4byte +lbl_808FA080 = .bss:0x808FA080; // type:object size:0x4 data:4byte +lbl_808FA084 = .bss:0x808FA084; // type:object size:0xF4 data:4byte +lbl_808FA178 = .bss:0x808FA178; // type:object size:0x18 data:4byte +lbl_808FA190 = .bss:0x808FA190; // type:object size:0x10 +lbl_808FA1A0 = .bss:0x808FA1A0; // type:object size:0x8 +lbl_808FA1A8 = .bss:0x808FA1A8; // type:object size:0x2B0 data:4byte +lbl_808FA458 = .bss:0x808FA458; // type:object size:0x4 data:4byte +lbl_808FA45C = .bss:0x808FA45C; // type:object size:0x4 data:4byte +lbl_808FA460 = .bss:0x808FA460; // type:object size:0x10 +lbl_808FA470 = .bss:0x808FA470; // type:object size:0x28 +lbl_808FA498 = .bss:0x808FA498; // type:object size:0xC +lbl_808FA4A4 = .bss:0x808FA4A4; // type:object size:0x4 data:4byte +lbl_808FA4A8 = .bss:0x808FA4A8; // type:object size:0x10 +lbl_808FA4B8 = .bss:0x808FA4B8; // type:object size:0x8 +lbl_808FA4C0 = .bss:0x808FA4C0; // type:object size:0x10 +lbl_808FA4D0 = .bss:0x808FA4D0; // type:object size:0x8 +lbl_808FA4D8 = .bss:0x808FA4D8; // type:object size:0x10 +lbl_808FA4E8 = .bss:0x808FA4E8; // type:object size:0x98 +lbl_808FA580 = .bss:0x808FA580; // type:object size:0x4 data:4byte +lbl_808FA584 = .bss:0x808FA584; // type:object size:0x64 data:4byte +lbl_808FA5E8 = .bss:0x808FA5E8; // type:object size:0x10 +lbl_808FA5F8 = .bss:0x808FA5F8; // type:object size:0x8 +lbl_808FA600 = .bss:0x808FA600; // type:object size:0x10 +lbl_808FA610 = .bss:0x808FA610; // type:object size:0x8 +lbl_808FA618 = .bss:0x808FA618; // type:object size:0x10 +lbl_808FA628 = .bss:0x808FA628; // type:object size:0x68 +lbl_808FA690 = .bss:0x808FA690; // type:object size:0x10 +lbl_808FA6A0 = .bss:0x808FA6A0; // type:object size:0x8 +lbl_808FA6A8 = .bss:0x808FA6A8; // type:object size:0x10 +lbl_808FA6B8 = .bss:0x808FA6B8; // type:object size:0x3C8 +lbl_808FAA80 = .bss:0x808FAA80; // type:object size:0x30 data:4byte +lbl_808FAAB0 = .bss:0x808FAAB0; // type:object size:0x10 +lbl_808FAAC0 = .bss:0x808FAAC0; // type:object size:0x358 +lbl_808FAE18 = .bss:0x808FAE18; // type:object size:0x4 data:4byte +lbl_808FAE1C = .bss:0x808FAE1C; // type:object size:0xC +lbl_808FAE28 = .bss:0x808FAE28; // type:object size:0x8 +lbl_808FAE30 = .bss:0x808FAE30; // type:object size:0x10 +lbl_808FAE40 = .bss:0x808FAE40; // type:object size:0x8 +lbl_808FAE48 = .bss:0x808FAE48; // type:object size:0x10 +lbl_808FAE58 = .bss:0x808FAE58; // type:object size:0x38 +lbl_808FAE90 = .bss:0x808FAE90; // type:object size:0x10 +lbl_808FAEA0 = .bss:0x808FAEA0; // type:object size:0x8 +lbl_808FAEA8 = .bss:0x808FAEA8; // type:object size:0x18 +lbl_808FAEC0 = .bss:0x808FAEC0; // type:object size:0x2A0 +TheScoring = .bss:0x808FB160; // type:object size:0x8 data:4byte +lbl_808FB168 = .bss:0x808FB168; // type:object size:0x8 +TheSongDB = .bss:0x808FB170; // type:object size:0x8 data:4byte +lbl_808FB178 = .bss:0x808FB178; // type:object size:0x4 data:4byte +lbl_808FB17C = .bss:0x808FB17C; // type:object size:0x4 data:4byte +lbl_808FB180 = .bss:0x808FB180; // type:object size:0x4 data:4byte +lbl_808FB184 = .bss:0x808FB184; // type:object size:0x4 data:4byte +lbl_808FB188 = .bss:0x808FB188; // type:object size:0x8 +lbl_808FB190 = .bss:0x808FB190; // type:object size:0x10 +lbl_808FB1A0 = .bss:0x808FB1A0; // type:object size:0x8 +lbl_808FB1A8 = .bss:0x808FB1A8; // type:object size:0x10 +lbl_808FB1B8 = .bss:0x808FB1B8; // type:object size:0x8 +lbl_808FB1C0 = .bss:0x808FB1C0; // type:object size:0x10 +lbl_808FB1D0 = .bss:0x808FB1D0; // type:object size:0x8 +lbl_808FB1D8 = .bss:0x808FB1D8; // type:object size:0x10 +lbl_808FB1E8 = .bss:0x808FB1E8; // type:object size:0x8 +lbl_808FB1F0 = .bss:0x808FB1F0; // type:object size:0x10 +lbl_808FB200 = .bss:0x808FB200; // type:object size:0x8 +lbl_808FB208 = .bss:0x808FB208; // type:object size:0x10 +lbl_808FB218 = .bss:0x808FB218; // type:object size:0x8 +lbl_808FB220 = .bss:0x808FB220; // type:object size:0x10 +lbl_808FB230 = .bss:0x808FB230; // type:object size:0x8 +lbl_808FB238 = .bss:0x808FB238; // type:object size:0x10 +lbl_808FB248 = .bss:0x808FB248; // type:object size:0x50 +lbl_808FB298 = .bss:0x808FB298; // type:object size:0x10 +lbl_808FB2A8 = .bss:0x808FB2A8; // type:object size:0x8 +lbl_808FB2B0 = .bss:0x808FB2B0; // type:object size:0x10 +lbl_808FB2C0 = .bss:0x808FB2C0; // type:object size:0x8 +lbl_808FB2C8 = .bss:0x808FB2C8; // type:object size:0x10 +lbl_808FB2D8 = .bss:0x808FB2D8; // type:object size:0x8 +lbl_808FB2E0 = .bss:0x808FB2E0; // type:object size:0x10 +lbl_808FB2F0 = .bss:0x808FB2F0; // type:object size:0x8 +lbl_808FB2F8 = .bss:0x808FB2F8; // type:object size:0x10 +lbl_808FB308 = .bss:0x808FB308; // type:object size:0x8 +lbl_808FB310 = .bss:0x808FB310; // type:object size:0x10 +lbl_808FB320 = .bss:0x808FB320; // type:object size:0x8 +lbl_808FB328 = .bss:0x808FB328; // type:object size:0x10 +lbl_808FB338 = .bss:0x808FB338; // type:object size:0x8 +lbl_808FB340 = .bss:0x808FB340; // type:object size:0x10 +lbl_808FB350 = .bss:0x808FB350; // type:object size:0x8 +lbl_808FB358 = .bss:0x808FB358; // type:object size:0x10 +lbl_808FB368 = .bss:0x808FB368; // type:object size:0x20 +lbl_808FB388 = .bss:0x808FB388; // type:object size:0x10 +lbl_808FB398 = .bss:0x808FB398; // type:object size:0x8 +lbl_808FB3A0 = .bss:0x808FB3A0; // type:object size:0x10 +lbl_808FB3B0 = .bss:0x808FB3B0; // type:object size:0x8 +lbl_808FB3B8 = .bss:0x808FB3B8; // type:object size:0x10 +lbl_808FB3C8 = .bss:0x808FB3C8; // type:object size:0x8 +lbl_808FB3D0 = .bss:0x808FB3D0; // type:object size:0x10 +lbl_808FB3E0 = .bss:0x808FB3E0; // type:object size:0x50 +lbl_808FB430 = .bss:0x808FB430; // type:object size:0x10 +lbl_808FB440 = .bss:0x808FB440; // type:object size:0x8 +lbl_808FB448 = .bss:0x808FB448; // type:object size:0x10 +lbl_808FB458 = .bss:0x808FB458; // type:object size:0x8 +lbl_808FB460 = .bss:0x808FB460; // type:object size:0x10 +lbl_808FB470 = .bss:0x808FB470; // type:object size:0x8 +lbl_808FB478 = .bss:0x808FB478; // type:object size:0x10 +lbl_808FB488 = .bss:0x808FB488; // type:object size:0x8 +lbl_808FB490 = .bss:0x808FB490; // type:object size:0x10 +lbl_808FB4A0 = .bss:0x808FB4A0; // type:object size:0x8 +lbl_808FB4A8 = .bss:0x808FB4A8; // type:object size:0x10 +lbl_808FB4B8 = .bss:0x808FB4B8; // type:object size:0x8 +lbl_808FB4C0 = .bss:0x808FB4C0; // type:object size:0x10 +lbl_808FB4D0 = .bss:0x808FB4D0; // type:object size:0x8 +lbl_808FB4D8 = .bss:0x808FB4D8; // type:object size:0x10 +lbl_808FB4E8 = .bss:0x808FB4E8; // type:object size:0x190 +lbl_808FB678 = .bss:0x808FB678; // type:object size:0x4 data:4byte +lbl_808FB67C = .bss:0x808FB67C; // type:object size:0xC +lbl_808FB688 = .bss:0x808FB688; // type:object size:0x8 +lbl_808FB690 = .bss:0x808FB690; // type:object size:0x10 +lbl_808FB6A0 = .bss:0x808FB6A0; // type:object size:0x48 +lbl_808FB6E8 = .bss:0x808FB6E8; // type:object size:0x4 data:4byte +lbl_808FB6EC = .bss:0x808FB6EC; // type:object size:0x4 data:4byte +lbl_808FB6F0 = .bss:0x808FB6F0; // type:object size:0xCC data:4byte +lbl_808FB7BC = .bss:0x808FB7BC; // type:object size:0x4 data:4byte +lbl_808FB7C0 = .bss:0x808FB7C0; // type:object size:0x4 data:4byte +lbl_808FB7C4 = .bss:0x808FB7C4; // type:object size:0x4 data:4byte +lbl_808FB7C8 = .bss:0x808FB7C8; // type:object size:0x18 data:4byte +lbl_808FB7E0 = .bss:0x808FB7E0; // type:object size:0x8 +lbl_808FB7E8 = .bss:0x808FB7E8; // type:object size:0x10 +lbl_808FB7F8 = .bss:0x808FB7F8; // type:object size:0x8 +lbl_808FB800 = .bss:0x808FB800; // type:object size:0x10 +lbl_808FB810 = .bss:0x808FB810; // type:object size:0x8 +lbl_808FB818 = .bss:0x808FB818; // type:object size:0x10 +lbl_808FB828 = .bss:0x808FB828; // type:object size:0x8 +lbl_808FB830 = .bss:0x808FB830; // type:object size:0x4 data:4byte +lbl_808FB834 = .bss:0x808FB834; // type:object size:0x4 data:4byte +lbl_808FB838 = .bss:0x808FB838; // type:object size:0x10 +lbl_808FB848 = .bss:0x808FB848; // type:object size:0x8 +lbl_808FB850 = .bss:0x808FB850; // type:object size:0x4 data:4byte +lbl_808FB854 = .bss:0x808FB854; // type:object size:0xC +lbl_808FB860 = .bss:0x808FB860; // type:object size:0x40 +lbl_808FB8A0 = .bss:0x808FB8A0; // type:object size:0x8 data:4byte +lbl_808FB8A8 = .bss:0x808FB8A8; // type:object size:0x10 +lbl_808FB8B8 = .bss:0x808FB8B8; // type:object size:0x8 +lbl_808FB8C0 = .bss:0x808FB8C0; // type:object size:0x10 +lbl_808FB8D0 = .bss:0x808FB8D0; // type:object size:0x8 +lbl_808FB8D8 = .bss:0x808FB8D8; // type:object size:0x10 +lbl_808FB8E8 = .bss:0x808FB8E8; // type:object size:0x8 +lbl_808FB8F0 = .bss:0x808FB8F0; // type:object size:0x10 +lbl_808FB900 = .bss:0x808FB900; // type:object size:0x8 +lbl_808FB908 = .bss:0x808FB908; // type:object size:0x10 +lbl_808FB918 = .bss:0x808FB918; // type:object size:0x8 +lbl_808FB920 = .bss:0x808FB920; // type:object size:0x10 +lbl_808FB930 = .bss:0x808FB930; // type:object size:0x80 +lbl_808FB9B0 = .bss:0x808FB9B0; // type:object size:0x10 +lbl_808FB9C0 = .bss:0x808FB9C0; // type:object size:0x8 +lbl_808FB9C8 = .bss:0x808FB9C8; // type:object size:0x10 +lbl_808FB9D8 = .bss:0x808FB9D8; // type:object size:0x74 +lbl_808FBA4C = .bss:0x808FBA4C; // type:object size:0x4 data:4byte +lbl_808FBA50 = .bss:0x808FBA50; // type:object size:0x4 data:4byte +lbl_808FBA54 = .bss:0x808FBA54; // type:object size:0x4 data:4byte +lbl_808FBA58 = .bss:0x808FBA58; // type:object size:0x12C data:4byte +lbl_808FBB84 = .bss:0x808FBB84; // type:object size:0x4 data:4byte +lbl_808FBB88 = .bss:0x808FBB88; // type:object size:0x4 data:4byte +lbl_808FBB8C = .bss:0x808FBB8C; // type:object size:0x4 data:4byte +lbl_808FBB90 = .bss:0x808FBB90; // type:object size:0xC0 data:4byte +lbl_808FBC50 = .bss:0x808FBC50; // type:object size:0x4 data:4byte +lbl_808FBC54 = .bss:0x808FBC54; // type:object size:0x24 data:4byte +lbl_808FBC78 = .bss:0x808FBC78; // type:object size:0x4 data:4byte +lbl_808FBC7C = .bss:0x808FBC7C; // type:object size:0x4 data:4byte +lbl_808FBC80 = .bss:0x808FBC80; // type:object size:0x4 data:4byte +lbl_808FBC84 = .bss:0x808FBC84; // type:object size:0x4 data:4byte +lbl_808FBC88 = .bss:0x808FBC88; // type:object size:0x4 data:4byte +lbl_808FBC8C = .bss:0x808FBC8C; // type:object size:0x4 data:4byte +lbl_808FBC90 = .bss:0x808FBC90; // type:object size:0x4 data:4byte +lbl_808FBC94 = .bss:0x808FBC94; // type:object size:0x4 data:4byte +lbl_808FBC98 = .bss:0x808FBC98; // type:object size:0x4 data:4byte +lbl_808FBC9C = .bss:0x808FBC9C; // type:object size:0x4 data:4byte +lbl_808FBCA0 = .bss:0x808FBCA0; // type:object size:0x4 data:4byte +lbl_808FBCA4 = .bss:0x808FBCA4; // type:object size:0x4 data:4byte +lbl_808FBCA8 = .bss:0x808FBCA8; // type:object size:0x4 data:4byte +lbl_808FBCAC = .bss:0x808FBCAC; // type:object size:0x4 data:4byte +lbl_808FBCB0 = .bss:0x808FBCB0; // type:object size:0x4 data:4byte +lbl_808FBCB4 = .bss:0x808FBCB4; // type:object size:0x4 data:4byte +lbl_808FBCB8 = .bss:0x808FBCB8; // type:object size:0x4 data:4byte +lbl_808FBCBC = .bss:0x808FBCBC; // type:object size:0x4 data:4byte +lbl_808FBCC0 = .bss:0x808FBCC0; // type:object size:0x4 data:4byte +lbl_808FBCC4 = .bss:0x808FBCC4; // type:object size:0x4 data:4byte +lbl_808FBCC8 = .bss:0x808FBCC8; // type:object size:0x8 data:4byte +lbl_808FBCD0 = .bss:0x808FBCD0; // type:object size:0x4 data:4byte +lbl_808FBCD4 = .bss:0x808FBCD4; // type:object size:0x4 data:4byte +lbl_808FBCD8 = .bss:0x808FBCD8; // type:object size:0x4 data:4byte +lbl_808FBCDC = .bss:0x808FBCDC; // type:object size:0x4 data:4byte +lbl_808FBCE0 = .bss:0x808FBCE0; // type:object size:0x4 data:4byte +lbl_808FBCE4 = .bss:0x808FBCE4; // type:object size:0x4 data:4byte +lbl_808FBCE8 = .bss:0x808FBCE8; // type:object size:0x4 data:4byte +lbl_808FBCEC = .bss:0x808FBCEC; // type:object size:0x4 data:4byte +lbl_808FBCF0 = .bss:0x808FBCF0; // type:object size:0x4 data:4byte +lbl_808FBCF4 = .bss:0x808FBCF4; // type:object size:0x4 data:4byte +lbl_808FBCF8 = .bss:0x808FBCF8; // type:object size:0x8 data:4byte +lbl_808FBD00 = .bss:0x808FBD00; // type:object size:0x4 data:4byte +lbl_808FBD04 = .bss:0x808FBD04; // type:object size:0x4 data:4byte +lbl_808FBD08 = .bss:0x808FBD08; // type:object size:0x8 data:4byte +lbl_808FBD10 = .bss:0x808FBD10; // type:object size:0x10 +lbl_808FBD20 = .bss:0x808FBD20; // type:object size:0x18 +lbl_808FBD38 = .bss:0x808FBD38; // type:object size:0x10 +lbl_808FBD48 = .bss:0x808FBD48; // type:object size:0x18 +lbl_808FBD60 = .bss:0x808FBD60; // type:object size:0x10 +lbl_808FBD70 = .bss:0x808FBD70; // type:object size:0x8 +lbl_808FBD78 = .bss:0x808FBD78; // type:object size:0x4 data:4byte +lbl_808FBD7C = .bss:0x808FBD7C; // type:object size:0x4 data:4byte +lbl_808FBD80 = .bss:0x808FBD80; // type:object size:0x4 data:4byte +lbl_808FBD84 = .bss:0x808FBD84; // type:object size:0x4 data:4byte +lbl_808FBD88 = .bss:0x808FBD88; // type:object size:0x4 data:4byte +lbl_808FBD8C = .bss:0x808FBD8C; // type:object size:0x4 data:4byte +lbl_808FBD90 = .bss:0x808FBD90; // type:object size:0x4 data:4byte +lbl_808FBD94 = .bss:0x808FBD94; // type:object size:0x4 data:4byte +lbl_808FBD98 = .bss:0x808FBD98; // type:object size:0x170 +lbl_808FBF08 = .bss:0x808FBF08; // type:object size:0x180 data:4byte +lbl_808FC088 = .bss:0x808FC088; // type:object size:0xC +lbl_808FC094 = .bss:0x808FC094; // type:object size:0xC +lbl_808FC0A0 = .bss:0x808FC0A0; // type:object size:0x8 +lbl_808FC0A8 = .bss:0x808FC0A8; // type:object size:0x10 +lbl_808FC0B8 = .bss:0x808FC0B8; // type:object size:0x15C +lbl_808FC214 = .bss:0x808FC214; // type:object size:0x4 data:4byte +lbl_808FC218 = .bss:0x808FC218; // type:object size:0x68 data:4byte +lbl_808FC280 = .bss:0x808FC280; // type:object size:0x4 data:4byte +lbl_808FC284 = .bss:0x808FC284; // type:object size:0x4 data:4byte +lbl_808FC288 = .bss:0x808FC288; // type:object size:0x4 data:4byte +lbl_808FC28C = .bss:0x808FC28C; // type:object size:0x4 data:4byte +lbl_808FC290 = .bss:0x808FC290; // type:object size:0x20 +lbl_808FC2B0 = .bss:0x808FC2B0; // type:object size:0xE8 +TheUI = .bss:0x808FC398; // type:object size:0x4 data:4byte +lbl_808FC39C = .bss:0x808FC39C; // type:object size:0xC +lbl_808FC3A8 = .bss:0x808FC3A8; // type:object size:0x8 +lbl_808FC3B0 = .bss:0x808FC3B0; // type:object size:0x10 +lbl_808FC3C0 = .bss:0x808FC3C0; // type:object size:0x8 +lbl_808FC3C8 = .bss:0x808FC3C8; // type:object size:0x10 +lbl_808FC3D8 = .bss:0x808FC3D8; // type:object size:0x8 +lbl_808FC3E0 = .bss:0x808FC3E0; // type:object size:0x10 +lbl_808FC3F0 = .bss:0x808FC3F0; // type:object size:0x8 +lbl_808FC3F8 = .bss:0x808FC3F8; // type:object size:0x10 +lbl_808FC408 = .bss:0x808FC408; // type:object size:0x8 +lbl_808FC410 = .bss:0x808FC410; // type:object size:0x10 +lbl_808FC420 = .bss:0x808FC420; // type:object size:0x8 +lbl_808FC428 = .bss:0x808FC428; // type:object size:0x10 +lbl_808FC438 = .bss:0x808FC438; // type:object size:0x8 +lbl_808FC440 = .bss:0x808FC440; // type:object size:0x10 +lbl_808FC450 = .bss:0x808FC450; // type:object size:0x260 +lbl_808FC6B0 = .bss:0x808FC6B0; // type:object size:0x4 data:4byte +lbl_808FC6B4 = .bss:0x808FC6B4; // type:object size:0xC +lbl_808FC6C0 = .bss:0x808FC6C0; // type:object size:0x8 +lbl_808FC6C8 = .bss:0x808FC6C8; // type:object size:0x4 data:4byte +lbl_808FC6CC = .bss:0x808FC6CC; // type:object size:0x4 data:4byte +lbl_808FC6D0 = .bss:0x808FC6D0; // type:object size:0x4 data:4byte +lbl_808FC6D4 = .bss:0x808FC6D4; // type:object size:0x4 data:4byte +lbl_808FC6D8 = .bss:0x808FC6D8; // type:object size:0x30 data:4byte +lbl_808FC708 = .bss:0x808FC708; // type:object size:0x10 +lbl_808FC718 = .bss:0x808FC718; // type:object size:0x94 +lbl_808FC7AC = .bss:0x808FC7AC; // type:object size:0x4 data:4byte +lbl_808FC7B0 = .bss:0x808FC7B0; // type:object size:0x4 data:4byte +lbl_808FC7B4 = .bss:0x808FC7B4; // type:object size:0x4 data:4byte +lbl_808FC7B8 = .bss:0x808FC7B8; // type:object size:0xF8 data:4byte +lbl_808FC8B0 = .bss:0x808FC8B0; // type:object size:0x4 data:4byte +@LOCAL@Type__22KeyboardKeyReleasedMsgFv@t = .bss:0x808FC8B4; // type:object size:0x4 data:4byte +@LOCAL@Type__14KeyboardModMsgFv@t = .bss:0x808FC8B8; // type:object size:0x4 data:4byte +@LOCAL@Type__26KeyboardExpressionPedalMsgFv@t = .bss:0x808FC8BC; // type:object size:0x4 data:4byte +@LOCAL@Type__31KeyboardConnectedAccessoriesMsgFv@t = .bss:0x808FC8C0; // type:object size:0x4 data:4byte +@LOCAL@Type__18KeyboardSustainMsgFv@t = .bss:0x808FC8C4; // type:object size:0x4 data:4byte +@LOCAL@Type__19KeyboardStompBoxMsgFv@t = .bss:0x808FC8C8; // type:object size:0x4 data:4byte +@LOCAL@Type__20KeysAccelerometerMsgFv@t = .bss:0x808FC8CC; // type:object size:0x4 data:4byte +@LOCAL@Type__27KeyboardLowHandPlacementMsgFv@t = .bss:0x808FC8D0; // type:object size:0x4 data:4byte +@LOCAL@Type__28KeyboardHighHandPlacementMsgFv@t = .bss:0x808FC8D4; // type:object size:0x14 data:4byte +lbl_808FC8E8 = .bss:0x808FC8E8; // type:object size:0x10 +lbl_808FC8F8 = .bss:0x808FC8F8; // type:object size:0x8 +lbl_808FC900 = .bss:0x808FC900; // type:object size:0x10 +lbl_808FC910 = .bss:0x808FC910; // type:object size:0x8 +lbl_808FC918 = .bss:0x808FC918; // type:object size:0x4 data:4byte +lbl_808FC91C = .bss:0x808FC91C; // type:object size:0x4 data:4byte +lbl_808FC920 = .bss:0x808FC920; // type:object size:0x10 +lbl_808FC930 = .bss:0x808FC930; // type:object size:0x8 +lbl_808FC938 = .bss:0x808FC938; // type:object size:0x10 +lbl_808FC948 = .bss:0x808FC948; // type:object size:0x8 +lbl_808FC950 = .bss:0x808FC950; // type:object size:0x4 data:4byte +lbl_808FC954 = .bss:0x808FC954; // type:object size:0x4 data:4byte +lbl_808FC958 = .bss:0x808FC958; // type:object size:0x10 +lbl_808FC968 = .bss:0x808FC968; // type:object size:0x8 +lbl_808FC970 = .bss:0x808FC970; // type:object size:0x4 data:4byte +lbl_808FC974 = .bss:0x808FC974; // type:object size:0x4 data:4byte +lbl_808FC978 = .bss:0x808FC978; // type:object size:0x10 +lbl_808FC988 = .bss:0x808FC988; // type:object size:0x8 +lbl_808FC990 = .bss:0x808FC990; // type:object size:0x10 +lbl_808FC9A0 = .bss:0x808FC9A0; // type:object size:0x8 +lbl_808FC9A8 = .bss:0x808FC9A8; // type:object size:0x10 +lbl_808FC9B8 = .bss:0x808FC9B8; // type:object size:0x8 +lbl_808FC9C0 = .bss:0x808FC9C0; // type:object size:0x4 data:4byte +lbl_808FC9C4 = .bss:0x808FC9C4; // type:object size:0x4 data:4byte +lbl_808FC9C8 = .bss:0x808FC9C8; // type:object size:0x4 data:4byte +lbl_808FC9CC = .bss:0x808FC9CC; // type:object size:0x4 data:4byte +lbl_808FC9D0 = .bss:0x808FC9D0; // type:object size:0x4 data:4byte +lbl_808FC9D4 = .bss:0x808FC9D4; // type:object size:0x4 data:4byte +lbl_808FC9D8 = .bss:0x808FC9D8; // type:object size:0x8 data:4byte +lbl_808FC9E0 = .bss:0x808FC9E0; // type:object size:0x4 data:4byte +lbl_808FC9E4 = .bss:0x808FC9E4; // type:object size:0x4 data:4byte +lbl_808FC9E8 = .bss:0x808FC9E8; // type:object size:0x4 data:4byte +lbl_808FC9EC = .bss:0x808FC9EC; // type:object size:0x4 data:4byte +lbl_808FC9F0 = .bss:0x808FC9F0; // type:object size:0x8 data:4byte +lbl_808FC9F8 = .bss:0x808FC9F8; // type:object size:0x4 data:4byte +lbl_808FC9FC = .bss:0x808FC9FC; // type:object size:0x4 data:4byte +lbl_808FCA00 = .bss:0x808FCA00; // type:object size:0x4 data:4byte +lbl_808FCA04 = .bss:0x808FCA04; // type:object size:0xC +lbl_808FCA10 = .bss:0x808FCA10; // type:object size:0x8 +lbl_808FCA18 = .bss:0x808FCA18; // type:object size:0x10 +lbl_808FCA28 = .bss:0x808FCA28; // type:object size:0x8 +lbl_808FCA30 = .bss:0x808FCA30; // type:object size:0x4 data:4byte +lbl_808FCA34 = .bss:0x808FCA34; // type:object size:0x4 data:4byte +lbl_808FCA38 = .bss:0x808FCA38; // type:object size:0x4 data:4byte +lbl_808FCA3C = .bss:0x808FCA3C; // type:object size:0x4 data:4byte +lbl_808FCA40 = .bss:0x808FCA40; // type:object size:0x4 data:4byte +lbl_808FCA44 = .bss:0x808FCA44; // type:object size:0x4 data:4byte +lbl_808FCA48 = .bss:0x808FCA48; // type:object size:0x4 data:4byte +lbl_808FCA4C = .bss:0x808FCA4C; // type:object size:0x4 data:4byte +lbl_808FCA50 = .bss:0x808FCA50; // type:object size:0x8 data:4byte +lbl_808FCA58 = .bss:0x808FCA58; // type:object size:0x10 +lbl_808FCA68 = .bss:0x808FCA68; // type:object size:0x80 +lbl_808FCAE8 = .bss:0x808FCAE8; // type:object size:0x550 +lbl_808FD038 = .bss:0x808FD038; // type:object size:0x10 +lbl_808FD048 = .bss:0x808FD048; // type:object size:0x8 +lbl_808FD050 = .bss:0x808FD050; // type:object size:0x10 +lbl_808FD060 = .bss:0x808FD060; // type:object size:0x8 +lbl_808FD068 = .bss:0x808FD068; // type:object size:0x10 +lbl_808FD078 = .bss:0x808FD078; // type:object size:0x8 +lbl_808FD080 = .bss:0x808FD080; // type:object size:0x10 +lbl_808FD090 = .bss:0x808FD090; // type:object size:0x8 +lbl_808FD098 = .bss:0x808FD098; // type:object size:0x10 +lbl_808FD0A8 = .bss:0x808FD0A8; // type:object size:0x8 +lbl_808FD0B0 = .bss:0x808FD0B0; // type:object size:0x4 data:4byte +lbl_808FD0B4 = .bss:0x808FD0B4; // type:object size:0x4 data:4byte +lbl_808FD0B8 = .bss:0x808FD0B8; // type:object size:0x4 data:4byte +lbl_808FD0BC = .bss:0x808FD0BC; // type:object size:0x4 data:4byte +lbl_808FD0C0 = .bss:0x808FD0C0; // type:object size:0x4 data:4byte +lbl_808FD0C4 = .bss:0x808FD0C4; // type:object size:0x4 data:4byte +lbl_808FD0C8 = .bss:0x808FD0C8; // type:object size:0x4 data:4byte +lbl_808FD0CC = .bss:0x808FD0CC; // type:object size:0xC +lbl_808FD0D8 = .bss:0x808FD0D8; // type:object size:0x8 +lbl_808FD0E0 = .bss:0x808FD0E0; // type:object size:0x10 +lbl_808FD0F0 = .bss:0x808FD0F0; // type:object size:0x8 +lbl_808FD0F8 = .bss:0x808FD0F8; // type:object size:0x10 +lbl_808FD108 = .bss:0x808FD108; // type:object size:0x8 +lbl_808FD110 = .bss:0x808FD110; // type:object size:0x4 data:4byte +lbl_808FD114 = .bss:0x808FD114; // type:object size:0x4 data:4byte +lbl_808FD118 = .bss:0x808FD118; // type:object size:0x4 data:4byte +lbl_808FD11C = .bss:0x808FD11C; // type:object size:0x4 data:4byte +lbl_808FD120 = .bss:0x808FD120; // type:object size:0x8 data:4byte +lbl_808FD128 = .bss:0x808FD128; // type:object size:0x4 data:4byte +lbl_808FD12C = .bss:0x808FD12C; // type:object size:0x4 data:4byte +lbl_808FD130 = .bss:0x808FD130; // type:object size:0x10 +lbl_808FD140 = .bss:0x808FD140; // type:object size:0x8 +lbl_808FD148 = .bss:0x808FD148; // type:object size:0x10 +lbl_808FD158 = .bss:0x808FD158; // type:object size:0x8 +lbl_808FD160 = .bss:0x808FD160; // type:object size:0x10 +lbl_808FD170 = .bss:0x808FD170; // type:object size:0x8 +lbl_808FD178 = .bss:0x808FD178; // type:object size:0x10 +lbl_808FD188 = .bss:0x808FD188; // type:object size:0x8 +lbl_808FD190 = .bss:0x808FD190; // type:object size:0x10 +lbl_808FD1A0 = .bss:0x808FD1A0; // type:object size:0x8 +lbl_808FD1A8 = .bss:0x808FD1A8; // type:object size:0x10 +lbl_808FD1B8 = .bss:0x808FD1B8; // type:object size:0x8 +lbl_808FD1C0 = .bss:0x808FD1C0; // type:object size:0x10 +lbl_808FD1D0 = .bss:0x808FD1D0; // type:object size:0x8 +lbl_808FD1D8 = .bss:0x808FD1D8; // type:object size:0xC +lbl_808FD1E4 = .bss:0x808FD1E4; // type:object size:0xC +lbl_808FD1F0 = .bss:0x808FD1F0; // type:object size:0x10 +lbl_808FD200 = .bss:0x808FD200; // type:object size:0x8 +lbl_808FD208 = .bss:0x808FD208; // type:object size:0x10 +lbl_808FD218 = .bss:0x808FD218; // type:object size:0x38 +lbl_808FD250 = .bss:0x808FD250; // type:object size:0x10 +lbl_808FD260 = .bss:0x808FD260; // type:object size:0x8 +lbl_808FD268 = .bss:0x808FD268; // type:object size:0x10 +lbl_808FD278 = .bss:0x808FD278; // type:object size:0x8 +lbl_808FD280 = .bss:0x808FD280; // type:object size:0x10 +lbl_808FD290 = .bss:0x808FD290; // type:object size:0x240 +lbl_808FD4D0 = .bss:0x808FD4D0; // type:object size:0x8 +lbl_808FD4D8 = .bss:0x808FD4D8; // type:object size:0x10 +lbl_808FD4E8 = .bss:0x808FD4E8; // type:object size:0x8 +lbl_808FD4F0 = .bss:0x808FD4F0; // type:object size:0x10 +lbl_808FD500 = .bss:0x808FD500; // type:object size:0x8 +lbl_808FD508 = .bss:0x808FD508; // type:object size:0x4 data:4byte +lbl_808FD50C = .bss:0x808FD50C; // type:object size:0x4 data:4byte +lbl_808FD510 = .bss:0x808FD510; // type:object size:0x10 +lbl_808FD520 = .bss:0x808FD520; // type:object size:0x8 +lbl_808FD528 = .bss:0x808FD528; // type:object size:0x10 +lbl_808FD538 = .bss:0x808FD538; // type:object size:0x38 +lbl_808FD570 = .bss:0x808FD570; // type:object size:0x10 +lbl_808FD580 = .bss:0x808FD580; // type:object size:0x80 +lbl_808FD600 = .bss:0x808FD600; // type:object size:0x10 +lbl_808FD610 = .bss:0x808FD610; // type:object size:0x8 +lbl_808FD618 = .bss:0x808FD618; // type:object size:0x4 data:4byte +lbl_808FD61C = .bss:0x808FD61C; // type:object size:0x4 data:4byte +lbl_808FD620 = .bss:0x808FD620; // type:object size:0x4 data:4byte +lbl_808FD624 = .bss:0x808FD624; // type:object size:0x4 data:4byte +lbl_808FD628 = .bss:0x808FD628; // type:object size:0x4 data:4byte +lbl_808FD62C = .bss:0x808FD62C; // type:object size:0x4 data:4byte +lbl_808FD630 = .bss:0x808FD630; // type:object size:0x4 data:4byte +lbl_808FD634 = .bss:0x808FD634; // type:object size:0x4 data:4byte +lbl_808FD638 = .bss:0x808FD638; // type:object size:0x4 data:4byte +lbl_808FD63C = .bss:0x808FD63C; // type:object size:0x4 data:4byte +lbl_808FD640 = .bss:0x808FD640; // type:object size:0x4 data:4byte +lbl_808FD644 = .bss:0x808FD644; // type:object size:0x4 data:4byte +lbl_808FD648 = .bss:0x808FD648; // type:object size:0x4 data:4byte +lbl_808FD64C = .bss:0x808FD64C; // type:object size:0x4 data:4byte +lbl_808FD650 = .bss:0x808FD650; // type:object size:0x4 data:4byte +lbl_808FD654 = .bss:0x808FD654; // type:object size:0x4 data:4byte +lbl_808FD658 = .bss:0x808FD658; // type:object size:0x4 data:4byte +lbl_808FD65C = .bss:0x808FD65C; // type:object size:0x4 data:4byte +lbl_808FD660 = .bss:0x808FD660; // type:object size:0x4 data:4byte +lbl_808FD664 = .bss:0x808FD664; // type:object size:0x4 data:4byte +lbl_808FD668 = .bss:0x808FD668; // type:object size:0x4 data:4byte +lbl_808FD66C = .bss:0x808FD66C; // type:object size:0x4 data:4byte +lbl_808FD670 = .bss:0x808FD670; // type:object size:0x4 data:4byte +lbl_808FD674 = .bss:0x808FD674; // type:object size:0x4 data:4byte +lbl_808FD678 = .bss:0x808FD678; // type:object size:0x4 data:4byte +lbl_808FD67C = .bss:0x808FD67C; // type:object size:0x4 data:4byte +lbl_808FD680 = .bss:0x808FD680; // type:object size:0x4 data:4byte +lbl_808FD684 = .bss:0x808FD684; // type:object size:0x4 data:4byte +lbl_808FD688 = .bss:0x808FD688; // type:object size:0x4 data:4byte +lbl_808FD68C = .bss:0x808FD68C; // type:object size:0x4 data:4byte +lbl_808FD690 = .bss:0x808FD690; // type:object size:0x4 data:4byte +lbl_808FD694 = .bss:0x808FD694; // type:object size:0x4 data:4byte +lbl_808FD698 = .bss:0x808FD698; // type:object size:0x4 data:4byte +lbl_808FD69C = .bss:0x808FD69C; // type:object size:0x4 data:4byte +lbl_808FD6A0 = .bss:0x808FD6A0; // type:object size:0x4 data:4byte +lbl_808FD6A4 = .bss:0x808FD6A4; // type:object size:0x4 data:4byte +lbl_808FD6A8 = .bss:0x808FD6A8; // type:object size:0x4 data:4byte +lbl_808FD6AC = .bss:0x808FD6AC; // type:object size:0x4 data:4byte +lbl_808FD6B0 = .bss:0x808FD6B0; // type:object size:0x4 data:4byte +lbl_808FD6B4 = .bss:0x808FD6B4; // type:object size:0x4 data:4byte +lbl_808FD6B8 = .bss:0x808FD6B8; // type:object size:0x4 data:4byte +lbl_808FD6BC = .bss:0x808FD6BC; // type:object size:0x4 data:4byte +lbl_808FD6C0 = .bss:0x808FD6C0; // type:object size:0x4 data:4byte +lbl_808FD6C4 = .bss:0x808FD6C4; // type:object size:0x4 data:4byte +lbl_808FD6C8 = .bss:0x808FD6C8; // type:object size:0x4 data:4byte +lbl_808FD6CC = .bss:0x808FD6CC; // type:object size:0x4 data:4byte +lbl_808FD6D0 = .bss:0x808FD6D0; // type:object size:0x4 data:4byte +lbl_808FD6D4 = .bss:0x808FD6D4; // type:object size:0x4 data:4byte +lbl_808FD6D8 = .bss:0x808FD6D8; // type:object size:0x8 data:4byte +lbl_808FD6E0 = .bss:0x808FD6E0; // type:object size:0x10 +lbl_808FD6F0 = .bss:0x808FD6F0; // type:object size:0x8 +lbl_808FD6F8 = .bss:0x808FD6F8; // type:object size:0x30 data:4byte +lbl_808FD728 = .bss:0x808FD728; // type:object size:0x4 data:4byte +lbl_808FD72C = .bss:0x808FD72C; // type:object size:0x314 data:4byte +lbl_808FDA40 = .bss:0x808FDA40; // type:object size:0x28 data:4byte +lbl_808FDA68 = .bss:0x808FDA68; // type:object size:0x8 data:4byte +lbl_808FDA70 = .bss:0x808FDA70; // type:object size:0x4 data:4byte +lbl_808FDA74 = .bss:0x808FDA74; // type:object size:0x4 data:4byte +lbl_808FDA78 = .bss:0x808FDA78; // type:object size:0xC +lbl_808FDA84 = .bss:0x808FDA84; // type:object size:0x4 data:4byte +lbl_808FDA88 = .bss:0x808FDA88; // type:object size:0x10 +lbl_808FDA98 = .bss:0x808FDA98; // type:object size:0x8 +lbl_808FDAA0 = .bss:0x808FDAA0; // type:object size:0x10 +lbl_808FDAB0 = .bss:0x808FDAB0; // type:object size:0x8 +lbl_808FDAB8 = .bss:0x808FDAB8; // type:object size:0x10 +lbl_808FDAC8 = .bss:0x808FDAC8; // type:object size:0x8 +lbl_808FDAD0 = .bss:0x808FDAD0; // type:object size:0x10 +lbl_808FDAE0 = .bss:0x808FDAE0; // type:object size:0x1C4 +lbl_808FDCA4 = .bss:0x808FDCA4; // type:object size:0x4 data:4byte +lbl_808FDCA8 = .bss:0x808FDCA8; // type:object size:0x4 data:4byte +lbl_808FDCAC = .bss:0x808FDCAC; // type:object size:0x4 data:4byte +lbl_808FDCB0 = .bss:0x808FDCB0; // type:object size:0x88 data:4byte +lbl_808FDD38 = .bss:0x808FDD38; // type:object size:0x8 data:4byte +lbl_808FDD40 = .bss:0x808FDD40; // type:object size:0x4 data:4byte +lbl_808FDD44 = .bss:0x808FDD44; // type:object size:0xC +lbl_808FDD50 = .bss:0x808FDD50; // type:object size:0x8 +lbl_808FDD58 = .bss:0x808FDD58; // type:object size:0x10 +lbl_808FDD68 = .bss:0x808FDD68; // type:object size:0x8 +lbl_808FDD70 = .bss:0x808FDD70; // type:object size:0x60 +lbl_808FDDD0 = .bss:0x808FDDD0; // type:object size:0x10 +lbl_808FDDE0 = .bss:0x808FDDE0; // type:object size:0x1C8 +lbl_808FDFA8 = .bss:0x808FDFA8; // type:object size:0x10 +lbl_808FDFB8 = .bss:0x808FDFB8; // type:object size:0x8 +lbl_808FDFC0 = .bss:0x808FDFC0; // type:object size:0x4 data:4byte +lbl_808FDFC4 = .bss:0x808FDFC4; // type:object size:0xC +lbl_808FDFD0 = .bss:0x808FDFD0; // type:object size:0x8 +lbl_808FDFD8 = .bss:0x808FDFD8; // type:object size:0x10 +lbl_808FDFE8 = .bss:0x808FDFE8; // type:object size:0x8 +lbl_808FDFF0 = .bss:0x808FDFF0; // type:object size:0x10 +lbl_808FE000 = .bss:0x808FE000; // type:object size:0x8 +lbl_808FE008 = .bss:0x808FE008; // type:object size:0x10 +lbl_808FE018 = .bss:0x808FE018; // type:object size:0x8 +lbl_808FE020 = .bss:0x808FE020; // type:object size:0x10 +lbl_808FE030 = .bss:0x808FE030; // type:object size:0x38 +lbl_808FE068 = .bss:0x808FE068; // type:object size:0x10 +lbl_808FE078 = .bss:0x808FE078; // type:object size:0x8 +lbl_808FE080 = .bss:0x808FE080; // type:object size:0x10 +lbl_808FE090 = .bss:0x808FE090; // type:object size:0x328 +lbl_808FE3B8 = .bss:0x808FE3B8; // type:object size:0x14 +lbl_808FE3CC = .bss:0x808FE3CC; // type:object size:0xC +lbl_808FE3D8 = .bss:0x808FE3D8; // type:object size:0x8 +lbl_808FE3E0 = .bss:0x808FE3E0; // type:object size:0x4 data:4byte +lbl_808FE3E4 = .bss:0x808FE3E4; // type:object size:0x1C +lbl_808FE400 = .bss:0x808FE400; // type:object size:0x10 +lbl_808FE410 = .bss:0x808FE410; // type:object size:0x8 +lbl_808FE418 = .bss:0x808FE418; // type:object size:0x10 +lbl_808FE428 = .bss:0x808FE428; // type:object size:0x158 +lbl_808FE580 = .bss:0x808FE580; // type:object size:0x10 +lbl_808FE590 = .bss:0x808FE590; // type:object size:0x8 +lbl_808FE598 = .bss:0x808FE598; // type:object size:0x10 +lbl_808FE5A8 = .bss:0x808FE5A8; // type:object size:0x8 +lbl_808FE5B0 = .bss:0x808FE5B0; // type:object size:0x10 +lbl_808FE5C0 = .bss:0x808FE5C0; // type:object size:0x8 +lbl_808FE5C8 = .bss:0x808FE5C8; // type:object size:0x10 +lbl_808FE5D8 = .bss:0x808FE5D8; // type:object size:0x8 +lbl_808FE5E0 = .bss:0x808FE5E0; // type:object size:0x10 +lbl_808FE5F0 = .bss:0x808FE5F0; // type:object size:0x8 +lbl_808FE5F8 = .bss:0x808FE5F8; // type:object size:0x10 +lbl_808FE608 = .bss:0x808FE608; // type:object size:0x8 +lbl_808FE610 = .bss:0x808FE610; // type:object size:0x10 +lbl_808FE620 = .bss:0x808FE620; // type:object size:0x2D8 +lbl_808FE8F8 = .bss:0x808FE8F8; // type:object size:0x8 data:4byte +lbl_808FE900 = .bss:0x808FE900; // type:object size:0x78 +lbl_808FE978 = .bss:0x808FE978; // type:object size:0x1F8 data:4byte +lbl_808FEB70 = .bss:0x808FEB70; // type:object size:0x4 data:4byte +lbl_808FEB74 = .bss:0x808FEB74; // type:object size:0x4 data:4byte +lbl_808FEB78 = .bss:0x808FEB78; // type:object size:0x4 data:4byte +lbl_808FEB7C = .bss:0x808FEB7C; // type:object size:0x4 data:4byte +lbl_808FEB80 = .bss:0x808FEB80; // type:object size:0x8 data:4byte +lbl_808FEB88 = .bss:0x808FEB88; // type:object size:0x40 +lbl_808FEBC8 = .bss:0x808FEBC8; // type:object size:0x20 data:4byte +lbl_808FEBE8 = .bss:0x808FEBE8; // type:object size:0x10 +lbl_808FEBF8 = .bss:0x808FEBF8; // type:object size:0x18 +lbl_808FEC10 = .bss:0x808FEC10; // type:object size:0x808 +lbl_808FF418 = .bss:0x808FF418; // type:object size:0x10 +lbl_808FF428 = .bss:0x808FF428; // type:object size:0x8 +lbl_808FF430 = .bss:0x808FF430; // type:object size:0x4 data:4byte +lbl_808FF434 = .bss:0x808FF434; // type:object size:0xC +lbl_808FF440 = .bss:0x808FF440; // type:object size:0x8 +lbl_808FF448 = .bss:0x808FF448; // type:object size:0x78 +lbl_808FF4C0 = .bss:0x808FF4C0; // type:object size:0x10 +lbl_808FF4D0 = .bss:0x808FF4D0; // type:object size:0x198 +lbl_808FF668 = .bss:0x808FF668; // type:object size:0x4 data:4byte +lbl_808FF66C = .bss:0x808FF66C; // type:object size:0xC +lbl_808FF678 = .bss:0x808FF678; // type:object size:0x8 +lbl_808FF680 = .bss:0x808FF680; // type:object size:0x10 +lbl_808FF690 = .bss:0x808FF690; // type:object size:0x8 +lbl_808FF698 = .bss:0x808FF698; // type:object size:0x10 +lbl_808FF6A8 = .bss:0x808FF6A8; // type:object size:0x8 +lbl_808FF6B0 = .bss:0x808FF6B0; // type:object size:0x4 +lbl_808FF6B4 = .bss:0x808FF6B4; // type:object size:0x4 data:4byte +lbl_808FF6B8 = .bss:0x808FF6B8; // type:object size:0x228 +lbl_808FF8E0 = .bss:0x808FF8E0; // type:object size:0x10 +lbl_808FF8F0 = .bss:0x808FF8F0; // type:object size:0x8 +lbl_808FF8F8 = .bss:0x808FF8F8; // type:object size:0x10 +lbl_808FF908 = .bss:0x808FF908; // type:object size:0x8 +lbl_808FF910 = .bss:0x808FF910; // type:object size:0x10 +lbl_808FF920 = .bss:0x808FF920; // type:object size:0x8 +lbl_808FF928 = .bss:0x808FF928; // type:object size:0x10 +lbl_808FF938 = .bss:0x808FF938; // type:object size:0x8 +lbl_808FF940 = .bss:0x808FF940; // type:object size:0x10 +lbl_808FF950 = .bss:0x808FF950; // type:object size:0x8 +lbl_808FF958 = .bss:0x808FF958; // type:object size:0x10 +lbl_808FF968 = .bss:0x808FF968; // type:object size:0x8 +lbl_808FF970 = .bss:0x808FF970; // type:object size:0x10 +lbl_808FF980 = .bss:0x808FF980; // type:object size:0x8 +lbl_808FF988 = .bss:0x808FF988; // type:object size:0x8 data:4byte +lbl_808FF990 = .bss:0x808FF990; // type:object size:0x1D0 +lbl_808FFB60 = .bss:0x808FFB60; // type:object size:0x8 data:4byte +lbl_808FFB68 = .bss:0x808FFB68; // type:object size:0x8 data:4byte +lbl_808FFB70 = .bss:0x808FFB70; // type:object size:0x8 data:4byte +lbl_808FFB78 = .bss:0x808FFB78; // type:object size:0x4 data:4byte +lbl_808FFB7C = .bss:0x808FFB7C; // type:object size:0x4 data:4byte +lbl_808FFB80 = .bss:0x808FFB80; // type:object size:0x4 data:4byte +lbl_808FFB84 = .bss:0x808FFB84; // type:object size:0x4 data:4byte +lbl_808FFB88 = .bss:0x808FFB88; // type:object size:0x80 +lbl_808FFC08 = .bss:0x808FFC08; // type:object size:0x10 +lbl_808FFC18 = .bss:0x808FFC18; // type:object size:0x8 +lbl_808FFC20 = .bss:0x808FFC20; // type:object size:0x10 +lbl_808FFC30 = .bss:0x808FFC30; // type:object size:0x1B0 +TheTrainingMgr = .bss:0x808FFDE0; // type:object size:0x8 data:4byte +lbl_808FFDE8 = .bss:0x808FFDE8; // type:object size:0x10 +lbl_808FFDF8 = .bss:0x808FFDF8; // type:object size:0x8 +lbl_808FFE00 = .bss:0x808FFE00; // type:object size:0x10 +lbl_808FFE10 = .bss:0x808FFE10; // type:object size:0x8 +lbl_808FFE18 = .bss:0x808FFE18; // type:object size:0x10 +lbl_808FFE28 = .bss:0x808FFE28; // type:object size:0x8 +lbl_808FFE30 = .bss:0x808FFE30; // type:object size:0x10 +lbl_808FFE40 = .bss:0x808FFE40; // type:object size:0x8 +lbl_808FFE48 = .bss:0x808FFE48; // type:object size:0x10 +lbl_808FFE58 = .bss:0x808FFE58; // type:object size:0x8 +lbl_808FFE60 = .bss:0x808FFE60; // type:object size:0x8 data:4byte +lbl_808FFE68 = .bss:0x808FFE68; // type:object size:0xD4 +lbl_808FFF3C = .bss:0x808FFF3C; // type:object size:0x4 data:4byte +lbl_808FFF40 = .bss:0x808FFF40; // type:object size:0x10 +lbl_808FFF50 = .bss:0x808FFF50; // type:object size:0x148 +lbl_80900098 = .bss:0x80900098; // type:object size:0x8 data:4byte +lbl_809000A0 = .bss:0x809000A0; // type:object size:0x10 +lbl_809000B0 = .bss:0x809000B0; // type:object size:0x6C +lbl_8090011C = .bss:0x8090011C; // type:object size:0x54 +lbl_80900170 = .bss:0x80900170; // type:object size:0x4 data:4byte +lbl_80900174 = .bss:0x80900174; // type:object size:0x4 data:4byte +lbl_80900178 = .bss:0x80900178; // type:object size:0x1E0 data:4byte +lbl_80900358 = .bss:0x80900358; // type:object size:0x10 +lbl_80900368 = .bss:0x80900368; // type:object size:0x8 +lbl_80900370 = .bss:0x80900370; // type:object size:0x4 data:4byte +lbl_80900374 = .bss:0x80900374; // type:object size:0x4 data:4byte +lbl_80900378 = .bss:0x80900378; // type:object size:0x4 data:4byte +lbl_8090037C = .bss:0x8090037C; // type:object size:0x4 data:4byte +lbl_80900380 = .bss:0x80900380; // type:object size:0xC +lbl_8090038C = .bss:0x8090038C; // type:object size:0x4C +lbl_809003D8 = .bss:0x809003D8; // type:object size:0x10 +lbl_809003E8 = .bss:0x809003E8; // type:object size:0x8 +lbl_809003F0 = .bss:0x809003F0; // type:object size:0xC +lbl_809003FC = .bss:0x809003FC; // type:object size:0x204 data:4byte +lbl_80900600 = .bss:0x80900600; // type:object size:0x10 +lbl_80900610 = .bss:0x80900610; // type:object size:0x8 +lbl_80900618 = .bss:0x80900618; // type:object size:0xC0 +lbl_809006D8 = .bss:0x809006D8; // type:object size:0x10 +lbl_809006E8 = .bss:0x809006E8; // type:object size:0x8 +lbl_809006F0 = .bss:0x809006F0; // type:object size:0x50 +lbl_80900740 = .bss:0x80900740; // type:object size:0x4 +lbl_80900744 = .bss:0x80900744; // type:object size:0xCC +lbl_80900810 = .bss:0x80900810; // type:object size:0xC +lbl_8090081C = .bss:0x8090081C; // type:object size:0x1C +lbl_80900838 = .bss:0x80900838; // type:object size:0x28 +lbl_80900860 = .bss:0x80900860; // type:object size:0x10 data:4byte +lbl_80900870 = .bss:0x80900870; // type:object size:0x150 data:4byte +lbl_809009C0 = .bss:0x809009C0; // type:object size:0x48 data:4byte +lbl_80900A08 = .bss:0x80900A08; // type:object size:0xC +lbl_80900A14 = .bss:0x80900A14; // type:object size:0x1C +lbl_80900A30 = .bss:0x80900A30; // type:object size:0xC +lbl_80900A3C = .bss:0x80900A3C; // type:object size:0x1C +lbl_80900A58 = .bss:0x80900A58; // type:object size:0xC +lbl_80900A64 = .bss:0x80900A64; // type:object size:0x1C +lbl_80900A80 = .bss:0x80900A80; // type:object size:0xC +lbl_80900A8C = .bss:0x80900A8C; // type:object size:0x1C +lbl_80900AA8 = .bss:0x80900AA8; // type:object size:0xC +lbl_80900AB4 = .bss:0x80900AB4; // type:object size:0x1C +lbl_80900AD0 = .bss:0x80900AD0; // type:object size:0xC +lbl_80900ADC = .bss:0x80900ADC; // type:object size:0x1C +lbl_80900AF8 = .bss:0x80900AF8; // type:object size:0xC +lbl_80900B04 = .bss:0x80900B04; // type:object size:0x1C +lbl_80900B20 = .bss:0x80900B20; // type:object size:0xC +lbl_80900B2C = .bss:0x80900B2C; // type:object size:0x1C +lbl_80900B48 = .bss:0x80900B48; // type:object size:0xC +lbl_80900B54 = .bss:0x80900B54; // type:object size:0x1C +lbl_80900B70 = .bss:0x80900B70; // type:object size:0xC +lbl_80900B7C = .bss:0x80900B7C; // type:object size:0x1C +lbl_80900B98 = .bss:0x80900B98; // type:object size:0xC +lbl_80900BA4 = .bss:0x80900BA4; // type:object size:0x1C +lbl_80900BC0 = .bss:0x80900BC0; // type:object size:0xC +lbl_80900BCC = .bss:0x80900BCC; // type:object size:0x1C +lbl_80900BE8 = .bss:0x80900BE8; // type:object size:0xC +lbl_80900BF4 = .bss:0x80900BF4; // type:object size:0x1C +lbl_80900C10 = .bss:0x80900C10; // type:object size:0xC +lbl_80900C1C = .bss:0x80900C1C; // type:object size:0x1C +lbl_80900C38 = .bss:0x80900C38; // type:object size:0xC +lbl_80900C44 = .bss:0x80900C44; // type:object size:0x1C +lbl_80900C60 = .bss:0x80900C60; // type:object size:0xC +lbl_80900C6C = .bss:0x80900C6C; // type:object size:0x1C +lbl_80900C88 = .bss:0x80900C88; // type:object size:0xC +lbl_80900C94 = .bss:0x80900C94; // type:object size:0x1C +lbl_80900CB0 = .bss:0x80900CB0; // type:object size:0xC +lbl_80900CBC = .bss:0x80900CBC; // type:object size:0x94 +lbl_80900D50 = .bss:0x80900D50; // type:object size:0xC +lbl_80900D5C = .bss:0x80900D5C; // type:object size:0x1C +lbl_80900D78 = .bss:0x80900D78; // type:object size:0xC +lbl_80900D84 = .bss:0x80900D84; // type:object size:0x1C +lbl_80900DA0 = .bss:0x80900DA0; // type:object size:0xC +lbl_80900DAC = .bss:0x80900DAC; // type:object size:0x1C +lbl_80900DC8 = .bss:0x80900DC8; // type:object size:0xC +lbl_80900DD4 = .bss:0x80900DD4; // type:object size:0x1C +lbl_80900DF0 = .bss:0x80900DF0; // type:object size:0xC +lbl_80900DFC = .bss:0x80900DFC; // type:object size:0x1C +lbl_80900E18 = .bss:0x80900E18; // type:object size:0xC +lbl_80900E24 = .bss:0x80900E24; // type:object size:0x1C +lbl_80900E40 = .bss:0x80900E40; // type:object size:0xC +lbl_80900E4C = .bss:0x80900E4C; // type:object size:0x1C +lbl_80900E68 = .bss:0x80900E68; // type:object size:0xC +lbl_80900E74 = .bss:0x80900E74; // type:object size:0x1C +lbl_80900E90 = .bss:0x80900E90; // type:object size:0xC +lbl_80900E9C = .bss:0x80900E9C; // type:object size:0x44 +lbl_80900EE0 = .bss:0x80900EE0; // type:object size:0xC +lbl_80900EEC = .bss:0x80900EEC; // type:object size:0x44 +lbl_80900F30 = .bss:0x80900F30; // type:object size:0xC +lbl_80900F3C = .bss:0x80900F3C; // type:object size:0x1C +lbl_80900F58 = .bss:0x80900F58; // type:object size:0xC +lbl_80900F64 = .bss:0x80900F64; // type:object size:0x1C +lbl_80900F80 = .bss:0x80900F80; // type:object size:0xC +lbl_80900F8C = .bss:0x80900F8C; // type:object size:0x44 +lbl_80900FD0 = .bss:0x80900FD0; // type:object size:0xC +lbl_80900FDC = .bss:0x80900FDC; // type:object size:0x1C +lbl_80900FF8 = .bss:0x80900FF8; // type:object size:0xC +lbl_80901004 = .bss:0x80901004; // type:object size:0x1C +lbl_80901020 = .bss:0x80901020; // type:object size:0xC +lbl_8090102C = .bss:0x8090102C; // type:object size:0x2B4 +lbl_809012E0 = .bss:0x809012E0; // type:object size:0x68 +lbl_80901348 = .bss:0x80901348; // type:object size:0x138 data:4byte +lbl_80901480 = .bss:0x80901480; // type:object size:0xC +lbl_8090148C = .bss:0x8090148C; // type:object size:0x14 +lbl_809014A0 = .bss:0x809014A0; // type:object size:0x8 data:4byte +lbl_809014A8 = .bss:0x809014A8; // type:object size:0x30 +gRand = .bss:0x809014D8; // type:object size:0x410 +lbl_809018E8 = .bss:0x809018E8; // type:object size:0x10 +gChecksumData = .bss:0x809018F8; // type:object size:0x8 data:float +gBigSinTable = .bss:0x80901900; // type:object size:0x800 data:float +lbl_80902100 = .bss:0x80902100; // type:object size:0x24 +lbl_80902124 = .bss:0x80902124; // type:object size:0x5C +lbl_80902180 = .bss:0x80902180; // type:object size:0x10 +lbl_80902190 = .bss:0x80902190; // type:object size:0x98 +TheAppChild = .bss:0x80902228; // type:object size:0x8 data:4byte +lbl_80902230 = .bss:0x80902230; // type:object size:0x4 data:4byte +TheArchive = .bss:0x80902234; // type:object size:0x4 data:4byte +lbl_80902238 = .bss:0x80902238; // type:object size:0x30 +lbl_80902268 = .bss:0x80902268; // type:object size:0x10 +TheBlockMgr = .bss:0x80902278; // type:object size:0x48 +lbl_809022C0 = .bss:0x809022C0; // type:object size:0x4 data:4byte +lbl_809022C4 = .bss:0x809022C4; // type:object size:0x4 data:4byte +sCurrTimestamp = .bss:0x809022C8; // type:object size:0x40 data:4byte +lbl_80902308 = .bss:0x80902308; // type:object size:0x10 +lbl_80902318 = .bss:0x80902318; // type:object size:0x18 +lbl_80902330 = .bss:0x80902330; // type:object size:0x78 +lbl_809023A8 = .bss:0x809023A8; // type:object size:0x8 +lbl_809023B0 = .bss:0x809023B0; // type:object size:0x8 data:4byte +lbl_809023B8 = .bss:0x809023B8; // type:object size:0x80 data:byte +lbl_80902438 = .bss:0x80902438; // type:object size:0x18 data:byte +lbl_80902450 = .bss:0x80902450; // type:object size:0x41C8 +lbl_80906618 = .bss:0x80906618; // type:object size:0x10 +lbl_80906628 = .bss:0x80906628; // type:object size:0x8 +lbl_80906630 = .bss:0x80906630; // type:object size:0x10 +lbl_80906640 = .bss:0x80906640; // type:object size:0x20 +lbl_80906660 = .bss:0x80906660; // type:object size:0x14 +lbl_80906674 = .bss:0x80906674; // type:object size:0x24 data:4byte +lbl_80906698 = .bss:0x80906698; // type:object size:0x88 data:4byte +lbl_80906720 = .bss:0x80906720; // type:object size:0x4 data:4byte +lbl_80906724 = .bss:0x80906724; // type:object size:0x4 data:4byte +lbl_80906728 = .bss:0x80906728; // type:object size:0x4 data:4byte +lbl_8090672C = .bss:0x8090672C; // type:object size:0x4 data:4byte +lbl_80906730 = .bss:0x80906730; // type:object size:0x4 data:4byte +lbl_80906734 = .bss:0x80906734; // type:object size:0x4 data:4byte +lbl_80906738 = .bss:0x80906738; // type:object size:0x4 data:4byte +lbl_8090673C = .bss:0x8090673C; // type:object size:0x4 data:4byte +lbl_80906740 = .bss:0x80906740; // type:object size:0x4 data:4byte +lbl_80906744 = .bss:0x80906744; // type:object size:0x4 data:4byte +lbl_80906748 = .bss:0x80906748; // type:object size:0x4 data:4byte +lbl_8090674C = .bss:0x8090674C; // type:object size:0x4 data:4byte +lbl_80906750 = .bss:0x80906750; // type:object size:0x4 data:4byte +lbl_80906754 = .bss:0x80906754; // type:object size:0x4 data:4byte +lbl_80906758 = .bss:0x80906758; // type:object size:0x4 data:4byte +lbl_8090675C = .bss:0x8090675C; // type:object size:0x4 data:4byte +lbl_80906760 = .bss:0x80906760; // type:object size:0x4 data:4byte +lbl_80906764 = .bss:0x80906764; // type:object size:0x4 +lbl_80906768 = .bss:0x80906768; // type:object size:0x4 data:4byte +lbl_8090676C = .bss:0x8090676C; // type:object size:0x4 data:4byte +lbl_80906770 = .bss:0x80906770; // type:object size:0x4 +lbl_80906774 = .bss:0x80906774; // type:object size:0x4 data:4byte +lbl_80906778 = .bss:0x80906778; // type:object size:0x4 data:4byte +lbl_8090677C = .bss:0x8090677C; // type:object size:0x4 data:4byte +lbl_80906780 = .bss:0x80906780; // type:object size:0x4 data:4byte +lbl_80906784 = .bss:0x80906784; // type:object size:0x14 data:4byte +lbl_80906798 = .bss:0x80906798; // type:object size:0x20 +lbl_809067B8 = .bss:0x809067B8; // type:object size:0x40 +lbl_809067F8 = .bss:0x809067F8; // type:object size:0x14 data:4byte +lbl_8090680C = .bss:0x8090680C; // type:object size:0x14 data:4byte +lbl_80906820 = .bss:0x80906820; // type:object size:0xA0 data:4byte +lbl_809068C0 = .bss:0x809068C0; // type:object size:0x78 data:4byte +lbl_80906938 = .bss:0x80906938; // type:object size:0x30 +lbl_80906968 = .bss:0x80906968; // type:object size:0xC +TheDebug = .bss:0x80906974; // type:object size:0xFC data:4byte +lbl_80906A70 = .bss:0x80906A70; // type:object size:0x1A0 +lbl_80906C10 = .bss:0x80906C10; // type:object size:0x8 +lbl_80906C18 = .bss:0x80906C18; // type:object size:0x70 data:4byte +sOpenCount__4File = .bss:0x80906C88; // type:object size:0x10 scope:global data:4byte +lbl_80906C98 = .bss:0x80906C98; // type:object size:0x8 +gOpenCaptureFile = .bss:0x80906CA0; // type:object size:0x4 data:4byte +lbl_80906CA4 = .bss:0x80906CA4; // type:object size:0x4 data:4byte +gRoot = .bss:0x80906CA8; // type:object size:0x100 data:byte +gExecRoot = .bss:0x80906DA8; // type:object size:0x100 data:byte +gSystemRoot = .bss:0x80906EA8; // type:object size:0x110 data:byte +lbl_80906FB8 = .bss:0x80906FB8; // type:object size:0x8 +lbl_80906FC0 = .bss:0x80906FC0; // type:object size:0x8 data:4byte +lbl_80906FC8 = .bss:0x80906FC8; // type:object size:0x100 +lbl_809070C8 = .bss:0x809070C8; // type:object size:0x100 data:byte +lbl_809071C8 = .bss:0x809071C8; // type:object size:0x100 +lbl_809072C8 = .bss:0x809072C8; // type:object size:0x100 data:byte +lbl_809073C8 = .bss:0x809073C8; // type:object size:0x100 +lbl_809074C8 = .bss:0x809074C8; // type:object size:0x100 +lbl_809075C8 = .bss:0x809075C8; // type:object size:0x170 +lbl_80907738 = .bss:0x80907738; // type:object size:0x10 +lbl_80907748 = .bss:0x80907748; // type:object size:0x8 +lbl_80907750 = .bss:0x80907750; // type:object size:0x10 +lbl_80907760 = .bss:0x80907760; // type:object size:0x68 +lbl_809077C8 = .bss:0x809077C8; // type:object size:0x4 data:4byte +lbl_809077CC = .bss:0x809077CC; // type:object size:0x4 data:4byte +lbl_809077D0 = .bss:0x809077D0; // type:object size:0x4 data:4byte +lbl_809077D4 = .bss:0x809077D4; // type:object size:0x4 data:4byte +lbl_809077D8 = .bss:0x809077D8; // type:object size:0x4 data:4byte +lbl_809077DC = .bss:0x809077DC; // type:object size:0x4 data:4byte +lbl_809077E0 = .bss:0x809077E0; // type:object size:0x4 data:4byte +lbl_809077E4 = .bss:0x809077E4; // type:object size:0x4 data:4byte +lbl_809077E8 = .bss:0x809077E8; // type:object size:0x4 data:4byte +lbl_809077EC = .bss:0x809077EC; // type:object size:0x14 data:4byte +lbl_80907800 = .bss:0x80907800; // type:object size:0x40 data:4byte +lbl_80907840 = .bss:0x80907840; // type:object size:0x40 data:4byte +lbl_80907880 = .bss:0x80907880; // type:object size:0x3C00 +lbl_8090B480 = .bss:0x8090B480; // type:object size:0xD0 data:4byte +lbl_8090B550 = .bss:0x8090B550; // type:object size:0x8 data:4byte +gControllersCfg__20@unnamed@joypad_cpp@ = .bss:0x8090B558; // type:object size:0x4 data:4byte +gButtonMeanings__20@unnamed@joypad_cpp@ = .bss:0x8090B55C; // type:object size:0x14 data:4byte +gJoypadData__20@unnamed@joypad_cpp@ = .bss:0x8090B570; // type:object size:0x270 +lbl_8090B7E0 = .bss:0x8090B7E0; // type:object size:0x1 data:byte +lbl_8090B7E4 = .bss:0x8090B7E4; // type:object size:0xC4 data:4byte +lbl_8090B8A8 = .bss:0x8090B8A8; // type:object size:0x4 data:4byte +lbl_8090B8AC = .bss:0x8090B8AC; // type:object size:0xC +lbl_8090B8B8 = .bss:0x8090B8B8; // type:object size:0x60 +lbl_8090B918 = .bss:0x8090B918; // type:object size:0x10 +lbl_8090B928 = .bss:0x8090B928; // type:object size:0x10 +lbl_8090B938 = .bss:0x8090B938; // type:object size:0x8 +gSource = .bss:0x8090B940; // type:object size:0x4 data:4byte +lbl_8090B944 = .bss:0x8090B944; // type:object size:0xC +lbl_8090B950 = .bss:0x8090B950; // type:object size:0x10 +lbl_8090B960 = .bss:0x8090B960; // type:object size:0xCC0 +lbl_8090C620 = .bss:0x8090C620; // type:object size:0xC +lbl_8090C62C = .bss:0x8090C62C; // type:object size:0x34 data:4byte +lbl_8090C660 = .bss:0x8090C660; // type:object size:0x20 +ThePlatformMgr = .bss:0x8090C680; // type:object size:0xCEA0 scope:global +@LOCAL@PlatformRegionToSymbol__F14PlatformRegion@sym = .bss:0x80919520; // type:object size:0x10 +lbl_80919530 = .bss:0x80919530; // type:object size:0x8 data:4byte +lbl_80919538 = .bss:0x80919538; // type:object size:0x110 +lbl_80919648 = .bss:0x80919648; // type:object size:0x28 +lbl_80919670 = .bss:0x80919670; // type:object size:0x1C +lbl_8091968C = .bss:0x8091968C; // type:object size:0x4 data:4byte +lbl_80919690 = .bss:0x80919690; // type:object size:0x4 data:4byte +lbl_80919694 = .bss:0x80919694; // type:object size:0x8 data:4byte +lbl_8091969C = .bss:0x8091969C; // type:object size:0x8 data:4byte +lbl_809196A4 = .bss:0x809196A4; // type:object size:0x4 data:4byte +lbl_809196A8 = .bss:0x809196A8; // type:object size:0x10 +lbl_809196B8 = .bss:0x809196B8; // type:object size:0x50 +lbl_80919708 = .bss:0x80919708; // type:object size:0x10C +lbl_80919814 = .bss:0x80919814; // type:object size:0x4 data:4byte +@LOCAL@Type__24WiiControllerOverflowMsgFv@t = .bss:0x80919818; // type:object size:0x8 data:4byte +gSystemLanguage = .bss:0x80919820; // type:object size:0x4 data:4byte +gSystemConfig = .bss:0x80919824; // type:object size:0x4 data:4byte +lbl_80919828 = .bss:0x80919828; // type:object size:0x4 data:4byte +lbl_8091982C = .bss:0x8091982C; // type:object size:0x4 data:4byte +lbl_80919830 = .bss:0x80919830; // type:object size:0x10 data:4byte +gSystemTimer = .bss:0x80919840; // type:object size:0x40 +TheSystemArgs = .bss:0x80919880; // type:object size:0x8 +lbl_80919888 = .bss:0x80919888; // type:object size:0x8 data:4byte +@LOCAL@PlatformSymbol__F8Platform@sym = .bss:0x80919890; // type:object size:0x18 +lbl_809198A8 = .bss:0x809198A8; // type:object size:0x4 data:4byte +lbl_809198AC = .bss:0x809198AC; // type:object size:0x20C data:4byte +lbl_80919AB8 = .bss:0x80919AB8; // type:object size:0xE0 data:4byte +gMainThreadID = .bss:0x80919B98; // type:object size:0x4 data:4byte +lbl_80919B9C = .bss:0x80919B9C; // type:object size:0xC data:4byte +lbl_80919BA8 = .bss:0x80919BA8; // type:object size:0x410 +lbl_80919FB8 = .bss:0x80919FB8; // type:object size:0x10 +lbl_80919FC8 = .bss:0x80919FC8; // type:object size:0x8 data:4byte +lbl_80919FD0 = .bss:0x80919FD0; // type:object size:0x4 data:4byte +lbl_80919FD4 = .bss:0x80919FD4; // type:object size:0x4 data:float +lbl_80919FD8 = .bss:0x80919FD8; // type:object size:0x10 data:float +lbl_80919FE8 = .bss:0x80919FE8; // type:object size:0x30 +lbl_8091A018 = .bss:0x8091A018; // type:object size:0x8 data:float +lbl_8091A020 = .bss:0x8091A020; // type:object size:0x4 data:4byte +lbl_8091A024 = .bss:0x8091A024; // type:object size:0x1C data:float +lbl_8091A040 = .bss:0x8091A040; // type:object size:0x8 data:4byte +lbl_8091A048 = .bss:0x8091A048; // type:object size:0x10 +TheVirtualKeyboard = .bss:0x8091A058; // type:object size:0x48 +lbl_8091A0A0 = .bss:0x8091A0A0; // type:object size:0x10 data:4byte +lbl_8091A0B0 = .bss:0x8091A0B0; // type:object size:0x4 data:4byte +lbl_8091A0B4 = .bss:0x8091A0B4; // type:object size:0x4 data:4byte +lbl_8091A0B8 = .bss:0x8091A0B8; // type:object size:0x4 data:4byte +lbl_8091A0BC = .bss:0x8091A0BC; // type:object size:0xDC data:4byte +lbl_8091A198 = .bss:0x8091A198; // type:object size:0xC +lbl_8091A1A4 = .bss:0x8091A1A4; // type:object size:0x6C +lbl_8091A210 = .bss:0x8091A210; // type:object size:0x30 +lbl_8091A240 = .bss:0x8091A240; // type:object size:0x14 data:4byte +@LOCAL@Type__17StringStrummedMsgFv@t = .bss:0x8091A254; // type:object size:0x4 data:4byte +@LOCAL@Type__16StringStoppedMsgFv@t = .bss:0x8091A258; // type:object size:0x4 data:4byte +@LOCAL@Type__18RGAccelerometerMsgFv@t = .bss:0x8091A25C; // type:object size:0x4 data:4byte +@LOCAL@Type__25RGConnectedAccessoriesMsgFv@t = .bss:0x8091A260; // type:object size:0x4 data:4byte +@LOCAL@Type__14RGPitchBendMsgFv@t = .bss:0x8091A264; // type:object size:0x4 data:4byte +@LOCAL@Type__11RGMutingMsgFv@t = .bss:0x8091A268; // type:object size:0x4 data:4byte +@LOCAL@Type__13RGStompBoxMsgFv@t = .bss:0x8091A26C; // type:object size:0x4 data:4byte +@LOCAL@Type__18RGProgramChangeMsgFv@t = .bss:0x8091A270; // type:object size:0x4 data:4byte +@LOCAL@Type__10RGSwingMsgFv@t = .bss:0x8091A274; // type:object size:0x4 data:4byte +@LOCAL@Type__19RGFretButtonDownMsgFv@t = .bss:0x8091A278; // type:object size:0x4 data:4byte +@LOCAL@Type__17RGFretButtonUpMsgFv@t = .bss:0x8091A27C; // type:object size:0x14 data:4byte +lbl_8091A290 = .bss:0x8091A290; // type:object size:0x4 data:4byte +lbl_8091A294 = .bss:0x8091A294; // type:object size:0xC +lbl_8091A2A0 = .bss:0x8091A2A0; // type:object size:0x20 +gIndent = .bss:0x8091A2C0; // type:object size:0x10 data:4byte +gConditional = .bss:0x8091A2D0; // type:object size:0x8 +gFile = .bss:0x8091A2D8; // type:object size:0x4 +lbl_8091A2DC = .bss:0x8091A2DC; // type:object size:0x4 data:4byte +gPreExecuteFunc = .bss:0x8091A2E0; // type:object size:0x4 data:4byte +gPreExecuteLevel = .bss:0x8091A2E4; // type:object size:0x4 data:4byte +lbl_8091A2E8 = .bss:0x8091A2E8; // type:object size:0x190 +lbl_8091A478 = .bss:0x8091A478; // type:object size:0x4 data:4byte +lbl_8091A47C = .bss:0x8091A47C; // type:object size:0x4 data:4byte +lbl_8091A480 = .bss:0x8091A480; // type:object size:0x4 data:4byte +lbl_8091A484 = .bss:0x8091A484; // type:object size:0x14 data:4byte +lbl_8091A498 = .bss:0x8091A498; // type:object size:0xC +lbl_8091A4A4 = .bss:0x8091A4A4; // type:object size:0x1C +gArray = .bss:0x8091A4C0; // type:object size:0x4 data:4byte +gNode = .bss:0x8091A4C4; // type:object size:0x10 data:4byte +gStream = .bss:0x8091A4D4; // type:object size:0x14 data:4byte +lbl_8091A4E8 = .bss:0x8091A4E8; // type:object size:0x8 +gDataLine = .bss:0x8091A4F0; // type:object size:0x10 data:4byte +gReadFiles = .bss:0x8091A500; // type:object size:0x18 +lbl_8091A518 = .bss:0x8091A518; // type:object size:0x10 +gDataFuncs = .bss:0x8091A528; // type:object size:0x24 +gDataThisPtr = .bss:0x8091A54C; // type:object size:0xC +lbl_8091A558 = .bss:0x8091A558; // type:object size:0xC +lbl_8091A564 = .bss:0x8091A564; // type:object size:0x4 +lbl_8091A568 = .bss:0x8091A568; // type:object size:0x1C data:4byte +lbl_8091A584 = .bss:0x8091A584; // type:object size:0x4 data:4byte +lbl_8091A588 = .bss:0x8091A588; // type:object size:0x10 +gDataVars = .bss:0x8091A598; // type:object size:0x28 +gEvalNode = .bss:0x8091A5C0; // type:object size:0x40 +gEvalIndex = .bss:0x8091A600; // type:object size:0x8 data:4byte +lbl_8091A608 = .bss:0x8091A608; // type:object size:0x90 +lbl_8091A698 = .bss:0x8091A698; // type:object size:0x10 +gMacroTable = .bss:0x8091A6A8; // type:object size:0x18 +gDataDir = .bss:0x8091A6C0; // type:object size:0x4 data:4byte +gDataThis = .bss:0x8091A6C4; // type:object size:0x14 data:4byte +gVarStack = .bss:0x8091A6D8; // type:object size:0x4BC +@LOCAL@SetType__8TextFileF6Symbol@types = .bss:0x8091AB94; // type:object size:0x4 data:4byte +@LOCAL@StaticClassName__8TextFileFv@name = .bss:0x8091AB98; // type:object size:0x4 data:4byte +yy_current_buffer = .bss:0x8091ABA8; // type:object size:0xC data:4byte +yyin = .bss:0x8091ABB4; // type:object size:0x10 data:4byte +yytext = .bss:0x8091ABC4; // type:object size:0x4 data:4byte +lbl_8091ABC8 = .bss:0x8091ABC8; // type:object size:0x10 data:4byte +lbl_8091ABD8 = .bss:0x8091ABD8; // type:object size:0x4 data:4byte +lbl_8091ABDC = .bss:0x8091ABDC; // type:object size:0xC +lbl_8091ABE8 = .bss:0x8091ABE8; // type:object size:0x600 +sMainDir__9ObjectDir = .bss:0x8091B1E8; // type:object size:0x30 data:4byte +lbl_8091B218 = .bss:0x8091B218; // type:object size:0x10 +lbl_8091B228 = .bss:0x8091B228; // type:object size:0x8 +lbl_8091B230 = .bss:0x8091B230; // type:object size:0x4 data:4byte +lbl_8091B234 = .bss:0x8091B234; // type:object size:0x1C +lbl_8091B250 = .bss:0x8091B250; // type:object size:0x4 data:4byte +lbl_8091B254 = .bss:0x8091B254; // type:object size:0x2C data:4byte +lbl_8091B280 = .bss:0x8091B280; // type:object size:0x4C8 +lbl_8091B748 = .bss:0x8091B748; // type:object size:0x4 data:4byte +lbl_8091B74C = .bss:0x8091B74C; // type:object size:0xC data:4byte +lbl_8091B758 = .bss:0x8091B758; // type:object size:0x10 +sFactories__Q23Hmx6Object = .bss:0x8091B768; // type:object size:0x18 +sDeleting__Q23Hmx6Object = .bss:0x8091B780; // type:object size:0x10 data:4byte +sRevs__Q23Hmx6Object = .bss:0x8091B790; // type:object size:0x8 +lbl_8091B798 = .bss:0x8091B798; // type:object size:0x10 +@LOCAL@Property__Q23Hmx6ObjectFP9DataArrayb@n = .bss:0x8091B7A8; // type:object size:0x8 +lbl_8091B7B0 = .bss:0x8091B7B0; // type:object size:0xC +@LOCAL@Property__Q23Hmx6ObjectF6Symbolb@d = .bss:0x8091B7BC; // type:object size:0x24 data:4byte +lbl_8091B7E0 = .bss:0x8091B7E0; // type:object size:0x10 +@LOCAL@HandleProperty__Q23Hmx6ObjectFP9DataArrayP9DataArrayb@n = .bss:0x8091B7F0; // type:object size:0x8 +lbl_8091B7F8 = .bss:0x8091B7F8; // type:object size:0xC +@LOCAL@SetProperty__Q23Hmx6ObjectF6SymbolRC8DataNode@d = .bss:0x8091B804; // type:object size:0x4 data:4byte +lbl_8091B808 = .bss:0x8091B808; // type:object size:0x10 +@LOCAL@PropertySize__Q23Hmx6ObjectFP9DataArray@n = .bss:0x8091B818; // type:object size:0x8 +lbl_8091B820 = .bss:0x8091B820; // type:object size:0x10 +@LOCAL@RemoveProperty__Q23Hmx6ObjectFP9DataArray@n = .bss:0x8091B830; // type:object size:0x78 +lbl_8091B8A8 = .bss:0x8091B8A8; // type:object size:0x20 +lbl_8091B8C8 = .bss:0x8091B8C8; // type:object size:0x10 +TheTaskMgr = .bss:0x8091B8D8; // type:object size:0x70 +lbl_8091B948 = .bss:0x8091B948; // type:object size:0x4 data:4byte +lbl_8091B94C = .bss:0x8091B94C; // type:object size:0xC +lbl_8091B958 = .bss:0x8091B958; // type:object size:0x4 data:4byte +lbl_8091B95C = .bss:0x8091B95C; // type:object size:0x4 +@LOCAL@Handle__8TextFileFP9DataArrayb@SymPrintf = .bss:0x8091B960; // type:object size:0x8 +lbl_8091B968 = .bss:0x8091B968; // type:object size:0x60010 +@LOCAL@InitObject__FPQ23Hmx6Object@objects = .bss:0x8097B978; // type:object size:0x4 data:4byte +@LOCAL@InitObject__FPQ23Hmx6Object@initSym@0 = .bss:0x8097B97C; // type:object size:0x14 data:4byte +lbl_8097B990 = .bss:0x8097B990; // type:object size:0x18 +lbl_8097B9A8 = .bss:0x8097B9A8; // type:object size:0x8 +lbl_8097B9B0 = .bss:0x8097B9B0; // type:object size:0x18 data:4byte +lbl_8097B9C8 = .bss:0x8097B9C8; // type:object size:0x10 +gDefaultBeatMap = .bss:0x8097B9D8; // type:object size:0x8 +lbl_8097B9E0 = .bss:0x8097B9E0; // type:object size:0x30 +lbl_8097BA10 = .bss:0x8097BA10; // type:object size:0x10 +lbl_8097BA20 = .bss:0x8097BA20; // type:object size:0x20 +lbl_8097BA40 = .bss:0x8097BA40; // type:object size:0x8 data:4byte +lbl_8097BA48 = .bss:0x8097BA48; // type:object size:0x10 +lbl_8097BA58 = .bss:0x8097BA58; // type:object size:0x8 +lbl_8097BA60 = .bss:0x8097BA60; // type:object size:0x10 +lbl_8097BA70 = .bss:0x8097BA70; // type:object size:0x8 +lbl_8097BA78 = .bss:0x8097BA78; // type:object size:0x10 +lbl_8097BA88 = .bss:0x8097BA88; // type:object size:0x8 +gCheatsManager = .bss:0x8097BA90; // type:object size:0x8 data:4byte +lbl_8097BA98 = .bss:0x8097BA98; // type:object size:0x4 data:4byte +lbl_8097BA9C = .bss:0x8097BA9C; // type:object size:0xC +lbl_8097BAA8 = .bss:0x8097BAA8; // type:object size:0x8 +lbl_8097BAB0 = .bss:0x8097BAB0; // type:object size:0x4 data:4byte +lbl_8097BAB4 = .bss:0x8097BAB4; // type:object size:0x10 data:4byte +lbl_8097BAC4 = .bss:0x8097BAC4; // type:object size:0x4 data:4byte +lbl_8097BAC8 = .bss:0x8097BAC8; // type:object size:0x8 data:4byte +lbl_8097BAD0 = .bss:0x8097BAD0; // type:object size:0x8 data:4byte +lbl_8097BAD8 = .bss:0x8097BAD8; // type:object size:0x10 +lbl_8097BAE8 = .bss:0x8097BAE8; // type:object size:0x8 +lbl_8097BAF0 = .bss:0x8097BAF0; // type:object size:0x4 +lbl_8097BAF4 = .bss:0x8097BAF4; // type:object size:0x4 data:4byte +lbl_8097BAF8 = .bss:0x8097BAF8; // type:object size:0x4 data:4byte +lbl_8097BAFC = .bss:0x8097BAFC; // type:object size:0x4 data:4byte +lbl_8097BB00 = .bss:0x8097BB00; // type:object size:0xC +sRoot__8FilePath = .bss:0x8097BB0C; // type:object size:0x18 +sNull__8FilePath = .bss:0x8097BB24; // type:object size:0xC +lbl_8097BB30 = .bss:0x8097BB30; // type:object size:0x378 +lbl_8097BEA8 = .bss:0x8097BEA8; // type:object size:0x70 +lbl_8097BF18 = .bss:0x8097BF18; // type:object size:0x10 +lbl_8097BF28 = .bss:0x8097BF28; // type:object size:0x250 +lbl_8097C178 = .bss:0x8097C178; // type:object size:0xC +lbl_8097C184 = .bss:0x8097C184; // type:object size:0x1C +lbl_8097C1A0 = .bss:0x8097C1A0; // type:object size:0x8 data:4byte +lbl_8097C1A8 = .bss:0x8097C1A8; // type:object size:0x10 +TheLoadMgr = .bss:0x8097C1B8; // type:object size:0x58 +lbl_8097C210 = .bss:0x8097C210; // type:object size:0x4 data:4byte +lbl_8097C214 = .bss:0x8097C214; // type:object size:0xA4 data:4byte +lbl_8097C2B8 = .bss:0x8097C2B8; // type:object size:0x4 data:4byte +lbl_8097C2BC = .bss:0x8097C2BC; // type:object size:0xC +lbl_8097C2C8 = .bss:0x8097C2C8; // type:object size:0x18 +lbl_8097C2E0 = .bss:0x8097C2E0; // type:object size:0xC8 +lbl_8097C3A8 = .bss:0x8097C3A8; // type:object size:0xD8 data:4byte +lbl_8097C480 = .bss:0x8097C480; // type:object size:0x4 data:4byte +lbl_8097C484 = .bss:0x8097C484; // type:object size:0x3C data:4byte +lbl_8097C4C0 = .bss:0x8097C4C0; // type:object size:0x50 data:4byte +lbl_8097C510 = .bss:0x8097C510; // type:object size:0x10 data:4byte +lbl_8097C520 = .bss:0x8097C520; // type:object size:0x340 +lbl_8097C860 = .bss:0x8097C860; // type:object size:0x494 data:4byte +lbl_8097CCF4 = .bss:0x8097CCF4; // type:object size:0x94 data:4byte +lbl_8097CD88 = .bss:0x8097CD88; // type:object size:0x78 data:4byte +lbl_8097CE00 = .bss:0x8097CE00; // type:object size:0x4 data:4byte +lbl_8097CE04 = .bss:0x8097CE04; // type:object size:0x4 data:4byte +lbl_8097CE08 = .bss:0x8097CE08; // type:object size:0xC +MsgAllowsHiding = .bss:0x8097CE18; // type:object size:0x18 +MsgAllowsInputToShell = .bss:0x8097CE30; // type:object size:0x18 +MsgArtLoaded = .bss:0x8097CE48; // type:object size:0x18 +MsgAutoScriptDone = .bss:0x8097CE60; // type:object size:0x18 +MsgBlockWipeIn = .bss:0x8097CE78; // type:object size:0x18 +MsgButtonPulseJoined = .bss:0x8097CE90; // type:object size:0x18 +MsgButtonPulseUnjoined = .bss:0x8097CEA8; // type:object size:0x18 +MsgCamCut = .bss:0x8097CEC0; // type:object size:0x18 +MsgCancelFindOverride = .bss:0x8097CED8; // type:object size:0x18 +MsgChangeFile = .bss:0x8097CEF0; // type:object size:0x18 +MsgChangeProxies = .bss:0x8097CF08; // type:object size:0x18 +MsgCharEditFlow = .bss:0x8097CF20; // type:object size:0x18 +MsgCheatInit = .bss:0x8097CF38; // type:object size:0x18 +MsgCheckDisconnect = .bss:0x8097CF50; // type:object size:0x18 +MsgCheckoutFailed = .bss:0x8097CF68; // type:object size:0x18 +MsgChooseCharFlow = .bss:0x8097CF80; // type:object size:0x18 +MsgChooseColors = .bss:0x8097CF98; // type:object size:0x18 +MsgChooseFinish = .bss:0x8097CFB0; // type:object size:0x18 +MsgClearAll = .bss:0x8097CFC8; // type:object size:0x18 +MsgClearDifficultyRestriction = .bss:0x8097CFE0; // type:object size:0x18 +MsgClearInitiallySelectedTour = .bss:0x8097CFF8; // type:object size:0x18 +MsgClearLighting = .bss:0x8097D010; // type:object size:0x18 +MsgClearPics = .bss:0x8097D028; // type:object size:0x18 +MsgClientUpdateGoalInfo = .bss:0x8097D040; // type:object size:0x18 +MsgCodaBlown = .bss:0x8097D058; // type:object size:0x18 +MsgCodaEndScript = .bss:0x8097D070; // type:object size:0x18 +MsgCodaSuccess = .bss:0x8097D088; // type:object size:0x18 +MsgControllersChanged = .bss:0x8097D0A0; // type:object size:0x18 +MsgCreditsDone = .bss:0x8097D0B8; // type:object size:0x18 +MsgDeactivate = .bss:0x8097D0D0; // type:object size:0x18 +MsgDeploy = .bss:0x8097D0E8; // type:object size:0x18 +MsgDisable = .bss:0x8097D100; // type:object size:0x18 +MsgDisableFacehair = .bss:0x8097D118; // type:object size:0x18 +MsgDisconnected = .bss:0x8097D130; // type:object size:0x18 +MsgDlcMotd = .bss:0x8097D148; // type:object size:0x18 +MsgDone = .bss:0x8097D160; // type:object size:0x18 +MsgDrumFillComplete = .bss:0x8097D178; // type:object size:0x18 +MsgEnable = .bss:0x8097D190; // type:object size:0x18 +MsgEnableFacehair = .bss:0x8097D1A8; // type:object size:0x18 +MsgEnablePlayer = .bss:0x8097D1C0; // type:object size:0x18 +MsgEnableRetry = .bss:0x8097D1D8; // type:object size:0x18 +MsgEndChordLegend = .bss:0x8097D1F0; // type:object size:0x18 +MsgEndChordLegendNoRollback = .bss:0x8097D208; // type:object size:0x18 +MsgEndChordbook = .bss:0x8097D220; // type:object size:0x18 +MsgEndGameEnd = .bss:0x8097D238; // type:object size:0x18 +MsgEndPlay = .bss:0x8097D250; // type:object size:0x18 +MsgEndSolo = .bss:0x8097D268; // type:object size:0x18 +MsgEndgameVocalsHigh = .bss:0x8097D280; // type:object size:0x18 +MsgEndgameVocalsLow = .bss:0x8097D298; // type:object size:0x18 +MsgEndgameVocalsMedium = .bss:0x8097D2B0; // type:object size:0x18 +MsgEndgameVocalsNone = .bss:0x8097D2C8; // type:object size:0x18 +MsgEnter = .bss:0x8097D2E0; // type:object size:0x18 +MsgEnumFinished = .bss:0x8097D2F8; // type:object size:0x18 +MsgEnumStart = .bss:0x8097D310; // type:object size:0x18 +MsgExit = .bss:0x8097D328; // type:object size:0x18 +MsgExitComplete = .bss:0x8097D340; // type:object size:0x18 +MsgFeedbackOff = .bss:0x8097D358; // type:object size:0x18 +MsgFeedbackOn = .bss:0x8097D370; // type:object size:0x18 +MsgFillProgressAndReset = .bss:0x8097D388; // type:object size:0x18 +MsgFilterClips = .bss:0x8097D3A0; // type:object size:0x18 +MsgFinishLoad = .bss:0x8097D3B8; // type:object size:0x18 +MsgFinishedCoda = .bss:0x8097D3D0; // type:object size:0x18 +MsgGameOutro = .bss:0x8097D3E8; // type:object size:0x18 +MsgGetBackscreen = .bss:0x8097D400; // type:object size:0x18 +MsgGetBandLogo = .bss:0x8097D418; // type:object size:0x18 +MsgGetCustomizeSlot = .bss:0x8097D430; // type:object size:0x18 +MsgGetDiffselectScreen = .bss:0x8097D448; // type:object size:0x18 +MsgGetFocusIsHarmony = .bss:0x8097D460; // type:object size:0x18 +MsgGetFocusIsProdrums = .bss:0x8097D478; // type:object size:0x18 +MsgGetFocusTrackType = .bss:0x8097D490; // type:object size:0x18 +MsgGetInitiallySelectedTour = .bss:0x8097D4A8; // type:object size:0x18 +MsgGetMusiclibraryBackscreen = .bss:0x8097D4C0; // type:object size:0x18 +MsgGetMusiclibraryNextscreen = .bss:0x8097D4D8; // type:object size:0x18 +MsgGetRemoteStatus = .bss:0x8097D4F0; // type:object size:0x18 +MsgGetSelectedDetailsEntryIndex = .bss:0x8097D508; // type:object size:0x18 +MsgGetSelectedFilterIndex = .bss:0x8097D520; // type:object size:0x18 +MsgGetSelectedIndex = .bss:0x8097D538; // type:object size:0x18 +MsgGetSelectedTourdescIndex = .bss:0x8097D550; // type:object size:0x20 +lbl_8097D570 = .bss:0x8097D570; // type:object size:0x10 +MsgGetSongSelectScreen = .bss:0x8097D580; // type:object size:0x18 +MsgGotoCreateDialog = .bss:0x8097D598; // type:object size:0x18 +MsgGotoCustomizeClothingScreen = .bss:0x8097D5B0; // type:object size:0x18 +MsgHandleAccGuitartutorial01 = .bss:0x8097D5C8; // type:object size:0x18 +MsgHandleAccGuitartutorial02 = .bss:0x8097D5E0; // type:object size:0x18 +MsgHandleAccGuitartutorial03 = .bss:0x8097D5F8; // type:object size:0x18 +MsgHandleAudioFinished = .bss:0x8097D610; // type:object size:0x18 +MsgHandleCantLaunchCharactercrea = .bss:0x8097D628; // type:object size:0x18 +MsgHandleContinue = .bss:0x8097D640; // type:object size:0x18 +MsgHandleGotoDifficultyselect = .bss:0x8097D658; // type:object size:0x18 +MsgHandleGotoLeaderboard = .bss:0x8097D670; // type:object size:0x18 +MsgHandleGotoLeaderboardHub = .bss:0x8097D688; // type:object size:0x18 +MsgHandleGotoMusiclibrary = .bss:0x8097D6A0; // type:object size:0x18 +MsgHandleLaunchCalibration = .bss:0x8097D6B8; // type:object size:0x18 +MsgHandleLaunchOnewaySetlistbrow = .bss:0x8097D6D0; // type:object size:0x18 +MsgHandleSnapStateCategory = .bss:0x8097D6E8; // type:object size:0x18 +MsgHandleSnapStateDetails = .bss:0x8097D700; // type:object size:0x18 +MsgHandleSnapStateGoal = .bss:0x8097D718; // type:object size:0x18 +MsgHandleSnapStateGroup = .bss:0x8097D730; // type:object size:0x18 +MsgHandleStateCategoryToGoal = .bss:0x8097D748; // type:object size:0x18 +MsgHandleStateCategoryToGroup = .bss:0x8097D760; // type:object size:0x18 +MsgHandleStateDetailsToGoal = .bss:0x8097D778; // type:object size:0x18 +MsgHandleStateGoalToCategory = .bss:0x8097D790; // type:object size:0x18 +MsgHandleStateGoalToDetails = .bss:0x8097D7A8; // type:object size:0x18 +MsgHandleStateGroupToCategory = .bss:0x8097D7C0; // type:object size:0x18 +MsgHide = .bss:0x8097D7D8; // type:object size:0x18 +MsgHideCharacter = .bss:0x8097D7F0; // type:object size:0x18 +MsgHideInvitationNotification = .bss:0x8097D808; // type:object size:0x18 +MsgHideKey = .bss:0x8097D820; // type:object size:0x18 +MsgHideList = .bss:0x8097D838; // type:object size:0x18 +MsgHideMessage = .bss:0x8097D850; // type:object size:0x18 +MsgHidePhysicalWriteIcon = .bss:0x8097D868; // type:object size:0x18 +MsgHighlightedTex = .bss:0x8097D880; // type:object size:0x18 +MsgHopo = .bss:0x8097D898; // type:object size:0x18 +MsgIconHide = .bss:0x8097D8B0; // type:object size:0x18 +MsgIconShow = .bss:0x8097D8C8; // type:object size:0x18 +MsgInit = .bss:0x8097D8E0; // type:object size:0x18 +MsgIntro = .bss:0x8097D8F8; // type:object size:0x18 +MsgIntroRemote = .bss:0x8097D910; // type:object size:0x18 +MsgIsLoaded = .bss:0x8097D928; // type:object size:0x18 +MsgIsMessageHiding = .bss:0x8097D940; // type:object size:0x30 +MsgKickNote = .bss:0x8097D970; // type:object size:0x18 +MsgLbFailure = .bss:0x8097D988; // type:object size:0x18 +MsgLbInProgress = .bss:0x8097D9A0; // type:object size:0x18 +MsgLeaveSetlist = .bss:0x8097D9B8; // type:object size:0x18 +MsgListTargets = .bss:0x8097D9D0; // type:object size:0x18 +MsgLoad = .bss:0x8097D9E8; // type:object size:0x18 +MsgLoadPanels = .bss:0x8097DA00; // type:object size:0x18 +MsgLoop = .bss:0x8097DA18; // type:object size:0x18 +MsgMotd = .bss:0x8097DA30; // type:object size:0x18 +MsgMoveOn = .bss:0x8097DA48; // type:object size:0x18 +MsgMoveOnQuickplay = .bss:0x8097DA60; // type:object size:0x18 +MsgMovieDone = .bss:0x8097DA78; // type:object size:0x18 +MsgNetSyncScroll = .bss:0x8097DA90; // type:object size:0x18 +MsgNewProvider = .bss:0x8097DAA8; // type:object size:0x18 +MsgNoRecommendations = .bss:0x8097DAC0; // type:object size:0x18 +MsgOnCancel = .bss:0x8097DAD8; // type:object size:0x18 +MsgOnChangeSetlistMode = .bss:0x8097DAF0; // type:object size:0x18 +MsgOnConnectionLost = .bss:0x8097DB08; // type:object size:0x18 +MsgOnExtend = .bss:0x8097DB20; // type:object size:0x18 +MsgOnLoadingCharacters = .bss:0x8097DB38; // type:object size:0x18 +MsgOnNotMultiplayerCapable = .bss:0x8097DB50; // type:object size:0x20 +lbl_8097DB70 = .bss:0x8097DB70; // type:object size:0x10 +MsgOnNotOnline = .bss:0x8097DB80; // type:object size:0x18 +MsgOnPreloadFailed = .bss:0x8097DB98; // type:object size:0x18 +MsgOnPreloadOk = .bss:0x8097DBB0; // type:object size:0x18 +MsgOnReset = .bss:0x8097DBC8; // type:object size:0x18 +MsgOnSetFrame = .bss:0x8097DBE0; // type:object size:0x18 +MsgOnSetInstrumentClipTypes = .bss:0x8097DBF8; // type:object size:0x18 +MsgOnSignedIn = .bss:0x8097DC10; // type:object size:0x18 +MsgOnSignedIntoGuest = .bss:0x8097DC28; // type:object size:0x18 +MsgOnSignedOut = .bss:0x8097DC40; // type:object size:0x18 +MsgOnViewModify = .bss:0x8097DC58; // type:object size:0x18 +MsgPanelNavigated = .bss:0x8097DC70; // type:object size:0x18 +MsgPartUnresolved = .bss:0x8097DC88; // type:object size:0x18 +MsgPhraseEnd = .bss:0x8097DCA0; // type:object size:0x18 +MsgPickIntro = .bss:0x8097DCB8; // type:object size:0x18 +MsgPickIntroShot = .bss:0x8097DCD0; // type:object size:0x30 +MsgPlayCorrectFret = .bss:0x8097DD00; // type:object size:0x18 +MsgPoll = .bss:0x8097DD18; // type:object size:0x30 +MsgPostRender = .bss:0x8097DD48; // type:object size:0x18 +MsgPreRender = .bss:0x8097DD60; // type:object size:0x18 +MsgPreventsOverride = .bss:0x8097DD78; // type:object size:0x30 +MsgReadyToPlay = .bss:0x8097DDA8; // type:object size:0x18 +MsgRecommendationsReady = .bss:0x8097DDC0; // type:object size:0x18 +MsgRefresh = .bss:0x8097DDD8; // type:object size:0x18 +MsgRefreshAll = .bss:0x8097DDF0; // type:object size:0x18 +MsgRefreshAssetsList = .bss:0x8097DE08; // type:object size:0x18 +MsgRefreshCurrentOutfitList = .bss:0x8097DE20; // type:object size:0x18 +MsgRefreshDone = .bss:0x8097DE38; // type:object size:0x18 +MsgRefreshFaceOptionsList = .bss:0x8097DE50; // type:object size:0x18 +MsgRefreshFilter = .bss:0x8097DE68; // type:object size:0x18 +MsgRefreshHeader = .bss:0x8097DE80; // type:object size:0x18 +MsgRefreshInstrumentList = .bss:0x8097DE98; // type:object size:0x18 +MsgRefreshLessonsList = .bss:0x8097DEB0; // type:object size:0x18 +MsgRefreshMessageProvider = .bss:0x8097DEC8; // type:object size:0x18 +MsgRefreshNewAssetsList = .bss:0x8097DEE0; // type:object size:0x18 +MsgRefreshSelectedSong = .bss:0x8097DEF8; // type:object size:0x18 +MsgRefreshSetlist = .bss:0x8097DF10; // type:object size:0x18 +MsgRefreshSonglist = .bss:0x8097DF28; // type:object size:0x18 +MsgRefreshStarted = .bss:0x8097DF40; // type:object size:0x18 +MsgRefreshSummary = .bss:0x8097DF58; // type:object size:0x18 +MsgRefreshTop = .bss:0x8097DF70; // type:object size:0x18 +MsgRegisterOnlineFlow = .bss:0x8097DF88; // type:object size:0x18 +MsgRemoteStatus = .bss:0x8097DFA0; // type:object size:0x18 +MsgRemoveMidiParsers = .bss:0x8097DFB8; // type:object size:0x18 +MsgRemoveUserPrompt = .bss:0x8097DFD0; // type:object size:0x18 +MsgRequiresOnlineSession = .bss:0x8097DFE8; // type:object size:0x18 +MsgRequiresRemoteUsers = .bss:0x8097E000; // type:object size:0x18 +MsgReset = .bss:0x8097E018; // type:object size:0x18 +MsgResetCam = .bss:0x8097E030; // type:object size:0x18 +MsgResetChord = .bss:0x8097E048; // type:object size:0x18 +MsgResetParticles = .bss:0x8097E060; // type:object size:0x18 +MsgResetScore = .bss:0x8097E078; // type:object size:0x18 +MsgRestrictionToken = .bss:0x8097E090; // type:object size:0x18 +MsgRetractedPosition = .bss:0x8097E0A8; // type:object size:0x18 +MsgSaved = .bss:0x8097E0C0; // type:object size:0x18 +MsgScore = .bss:0x8097E0D8; // type:object size:0x18 +MsgSearchFinished = .bss:0x8097E0F0; // type:object size:0x18 +MsgSelectCamera = .bss:0x8097E108; // type:object size:0x18 +MsgSelected = .bss:0x8097E120; // type:object size:0x18 +MsgSendBlowCoda = .bss:0x8097E138; // type:object size:0x18 +MsgSendFinishedSong = .bss:0x8097E150; // type:object size:0x18 +MsgSendSoloStart = .bss:0x8097E168; // type:object size:0x18 +MsgSendStreak = .bss:0x8097E180; // type:object size:0x18 +MsgSendTrackerDeploy = .bss:0x8097E198; // type:object size:0x20 +lbl_8097E1B8 = .bss:0x8097E1B8; // type:object size:0x10 +MsgSendUpdateCrowd = .bss:0x8097E1C8; // type:object size:0x18 +MsgSendUpdateEnergy = .bss:0x8097E1E0; // type:object size:0x18 +MsgSendUpdateScore = .bss:0x8097E1F8; // type:object size:0x18 +MsgSendVocalPhraseOver = .bss:0x8097E210; // type:object size:0x18 +MsgSetMessageState = .bss:0x8097E228; // type:object size:0x18 +MsgSetProviders = .bss:0x8097E240; // type:object size:0x18 +MsgSetWaitState = .bss:0x8097E258; // type:object size:0x18 +MsgSetupMidiParsers = .bss:0x8097E270; // type:object size:0x18 +MsgShotOver = .bss:0x8097E288; // type:object size:0x18 +MsgShotStarted = .bss:0x8097E2A0; // type:object size:0x18 +MsgShow = .bss:0x8097E2B8; // type:object size:0x18 +MsgShowCharacter = .bss:0x8097E2D0; // type:object size:0x18 +MsgShowHighFrets = .bss:0x8097E2E8; // type:object size:0x18 +MsgShowHighFretsLefty = .bss:0x8097E300; // type:object size:0x18 +MsgShowInvitationNotification = .bss:0x8097E318; // type:object size:0x18 +MsgShowList = .bss:0x8097E330; // type:object size:0x18 +MsgShowLockedDialog = .bss:0x8097E348; // type:object size:0x18 +MsgShowLowFrets = .bss:0x8097E360; // type:object size:0x18 +MsgShowLowFretsLefty = .bss:0x8097E378; // type:object size:0x18 +MsgShowMessage = .bss:0x8097E390; // type:object size:0x18 +MsgShowPhysicalWriteIcon = .bss:0x8097E3A8; // type:object size:0x18 +MsgShowSetlistSaveDialog = .bss:0x8097E3C0; // type:object size:0x18 +MsgShowsExtendedMicArrows = .bss:0x8097E3D8; // type:object size:0x18 +MsgSongSettingsFlow = .bss:0x8097E3F0; // type:object size:0x18 +MsgStart = .bss:0x8097E408; // type:object size:0x18 +MsgStartAnim = .bss:0x8097E420; // type:object size:0x18 +MsgStartShot = .bss:0x8097E438; // type:object size:0x18 +MsgStartSolo = .bss:0x8097E450; // type:object size:0x18 +MsgStopShot = .bss:0x8097E468; // type:object size:0x18 +MsgSuccess = .bss:0x8097E480; // type:object size:0x18 +MsgSwing = .bss:0x8097E498; // type:object size:0x18 +MsgSwingathopo = .bss:0x8097E4B0; // type:object size:0x18 +MsgSyncDir = .bss:0x8097E4C8; // type:object size:0x18 +MsgSyncObjects = .bss:0x8097E4E0; // type:object size:0x18 +MsgSyncPlayMode = .bss:0x8097E4F8; // type:object size:0x18 +MsgTalk = .bss:0x8097E510; // type:object size:0x18 +MsgTalkStop = .bss:0x8097E528; // type:object size:0x18 +MsgTambourineHit = .bss:0x8097E540; // type:object size:0x18 +MsgTambourineMiss = .bss:0x8097E558; // type:object size:0x18 +MsgTambourineNote = .bss:0x8097E570; // type:object size:0x18 +MsgTrigger = .bss:0x8097E588; // type:object size:0x18 +MsgUiEnter = .bss:0x8097E5A0; // type:object size:0x18 +MsgUiExit = .bss:0x8097E5B8; // type:object size:0x18 +MsgUnload = .bss:0x8097E5D0; // type:object size:0x18 +MsgUnselected = .bss:0x8097E5E8; // type:object size:0x18 +MsgUpdateAll = .bss:0x8097E600; // type:object size:0x18 +MsgUpdateCharPreview = .bss:0x8097E618; // type:object size:0x18 +MsgUpdateDetails = .bss:0x8097E630; // type:object size:0x18 +MsgUpdateFindingHelp = .bss:0x8097E648; // type:object size:0x18 +MsgUpdateGems = .bss:0x8097E660; // type:object size:0x18 +MsgUpdateLoadingStatus = .bss:0x8097E678; // type:object size:0x18 +MsgUpdateOutfitList = .bss:0x8097E690; // type:object size:0x18 +MsgUpdateRange = .bss:0x8097E6A8; // type:object size:0x18 +MsgUpdateView = .bss:0x8097E6C0; // type:object size:0x30 +MsgView = .bss:0x8097E6F0; // type:object size:0x18 +MsgVignetteOutro = .bss:0x8097E708; // type:object size:0x18 +MsgWantOutroDuck = .bss:0x8097E720; // type:object size:0x18 +MsgWhammyEnd = .bss:0x8097E738; // type:object size:0x18 +MsgWhammyStart = .bss:0x8097E750; // type:object size:0x18 +MsgWipePp = .bss:0x8097E768; // type:object size:0x18 +MsgWorldPause = .bss:0x8097E780; // type:object size:0x18 +MsgWorldUnpause = .bss:0x8097E798; // type:object size:0xB0 +lbl_8097E848 = .bss:0x8097E848; // type:object size:0x8 data:4byte +lbl_8097E850 = .bss:0x8097E850; // type:object size:0x8 data:4byte +lbl_8097E858 = .bss:0x8097E858; // type:object size:0x8 data:4byte +lbl_8097E860 = .bss:0x8097E860; // type:object size:0x44 +lbl_8097E8A4 = .bss:0x8097E8A4; // type:object size:0x4 data:4byte +lbl_8097E8A8 = .bss:0x8097E8A8; // type:object size:0x4 data:4byte +lbl_8097E8AC = .bss:0x8097E8AC; // type:object size:0x4 data:4byte +lbl_8097E8B0 = .bss:0x8097E8B0; // type:object size:0x80 data:4byte +lbl_8097E930 = .bss:0x8097E930; // type:object size:0x4 data:4byte +lbl_8097E934 = .bss:0x8097E934; // type:object size:0x4 data:4byte +lbl_8097E938 = .bss:0x8097E938; // type:object size:0x4 data:4byte +lbl_8097E93C = .bss:0x8097E93C; // type:object size:0x4 +gStringTable = .bss:0x8097E940; // type:object size:0x4 data:4byte +gHashTable = .bss:0x8097E944; // type:object size:0x4 data:4byte +SymSetFeedbackState = .bss:0x8097E948; // type:object size:0x4 +SymSetFileMerger = .bss:0x8097E94C; // type:object size:0x4 +SymSetFilePath = .bss:0x8097E950; // type:object size:0x4 +SymSetFillAudio = .bss:0x8097E954; // type:object size:0x4 +SymSetFirstBeatOffset = .bss:0x8097E958; // type:object size:0x4 +SymSetFixedLength = .bss:0x8097E95C; // type:object size:0x4 +SymSetFloat = .bss:0x8097E960; // type:object size:0x4 +SymSetFocus = .bss:0x8097E964; // type:object size:0x4 +SymSetFocusComponent = .bss:0x8097E968; // type:object size:0x4 +SymSetFocusPanel = .bss:0x8097E96C; // type:object size:0x4 +SymSetFont = .bss:0x8097E970; // type:object size:0x8 +SymSetForegroundVolume = .bss:0x8097E978; // type:object size:0x4 +SymSetFormattedProfileName = .bss:0x8097E97C; // type:object size:0x4 +SymSetFov = .bss:0x8097E980; // type:object size:0x4 +SymSetFraction = .bss:0x8097E984; // type:object size:0x4 +SymSetFrame = .bss:0x8097E988; // type:object size:0x4 +SymSetFromMeshAnim = .bss:0x8097E98C; // type:object size:0x4 +SymSetFromSongSelectNode = .bss:0x8097E990; // type:object size:0x4 +SymSetFrozen = .bss:0x8097E994; // type:object size:0x4 +SymSetFrustum = .bss:0x8097E998; // type:object size:0x4 +SymSetFullness = .bss:0x8097E99C; // type:object size:0x4 +SymSetFx = .bss:0x8097E9A0; // type:object size:0x4 +SymSetFxVol = .bss:0x8097E9A4; // type:object size:0x4 +SymSetFxVolume = .bss:0x8097E9A8; // type:object size:0x4 +SymSetGemsEnabled = .bss:0x8097E9AC; // type:object size:0x4 +SymSetGender = .bss:0x8097E9B0; // type:object size:0x4 +SymSetGfxMode = .bss:0x8097E9B4; // type:object size:0x4 +SymSetGlasses = .bss:0x8097E9B8; // type:object size:0x4 +SymSetGlowing = .bss:0x8097E9BC; // type:object size:0x4 +SymSetGoal = .bss:0x8097E9C0; // type:object size:0x4 +SymSetGridSpan = .bss:0x8097E9C4; // type:object size:0x4 +SymSetGroup = .bss:0x8097E9C8; // type:object size:0x4 +SymSetGuidePitchPaused = .bss:0x8097E9CC; // type:object size:0x4 +SymSetHair = .bss:0x8097E9D0; // type:object size:0x4 +SymSetHardcoreIconLevel = .bss:0x8097E9D4; // type:object size:0x4 +SymSetHarmonyOverride = .bss:0x8097E9D8; // type:object size:0x4 +SymSetHas22FretGuitar = .bss:0x8097E9DC; // type:object size:0x4 +SymSetHasSeenFirstTimeCalibration = .bss:0x8097E9E0; // type:object size:0x4 +SymSetHasSeenFirstTimeInstruments = .bss:0x8097E9E4; // type:object size:0x4 +SymSetHasSeenHint = .bss:0x8097E9E8; // type:object size:0x4 +SymSetHeadsetTarget = .bss:0x8097E9EC; // type:object size:0x4 +SymSetHeight = .bss:0x8097E9F0; // type:object size:0x4 +SymSetHighlightIx = .bss:0x8097E9F4; // type:object size:0x4 +SymSetHighlightStyle = .bss:0x8097E9F8; // type:object size:0xC +SymSetHoldActions = .bss:0x8097EA04; // type:object size:0x4 +SymSetHookTex = .bss:0x8097EA08; // type:object size:0x4 +SymSetIcon = .bss:0x8097EA0C; // type:object size:0x4 +SymSetInGame = .bss:0x8097EA10; // type:object size:0x4 +SymSetInGameExtraVideoLatency = .bss:0x8097EA14; // type:object size:0x4 +SymSetInGameSyncOffsetAdjustment = .bss:0x8097EA18; // type:object size:0x4 +SymSetInVocalMode = .bss:0x8097EA1C; // type:object size:0x4 +SymSetInstrumentSynthVolume = .bss:0x8097EA20; // type:object size:0x4 +SymSetInstrumentToListSym = .bss:0x8097EA24; // type:object size:0x4 +SymSetInt = .bss:0x8097EA28; // type:object size:0x4 +SymSetIntProgress = .bss:0x8097EA2C; // type:object size:0x4 data:4byte +SymSetIntensity = .bss:0x8097EA30; // type:object size:0x8 +SymSetInterpHandler = .bss:0x8097EA38; // type:object size:0x4 +SymSetInterpType = .bss:0x8097EA3C; // type:object size:0x4 +SymSetIntroName = .bss:0x8097EA40; // type:object size:0x4 +SymSetIntroRealTime = .bss:0x8097EA44; // type:object size:0x4 +SymSetInvalidScore = .bss:0x8097EA48; // type:object size:0x4 +SymSetInvitation = .bss:0x8097EA4C; // type:object size:0x4 +SymSetInviteAccepted = .bss:0x8097EA50; // type:object size:0x4 +SymSetIsRestarting = .bss:0x8097EA54; // type:object size:0x4 +SymSetJitter = .bss:0x8097EA58; // type:object size:0x4 +SymSetJoiningUser = .bss:0x8097EA5C; // type:object size:0x4 +SymSetJoypadExtraLag = .bss:0x8097EA60; // type:object size:0x4 +SymSetKey = .bss:0x8097EA64; // type:object size:0x4 +SymSetKeyOffset = .bss:0x8097EA68; // type:object size:0x4 +SymSetKeyRange = .bss:0x8097EA6C; // type:object size:0x4 +SymSetKeyVal = .bss:0x8097EA70; // type:object size:0x4 +SymSetKeyframe = .bss:0x8097EA74; // type:object size:0x4 +SymSetKickAutoplay = .bss:0x8097EA78; // type:object size:0x4 +SymSetLabelForData = .bss:0x8097EA7C; // type:object size:0x8 +SymSetLastHitFraction = .bss:0x8097EA84; // type:object size:0x4 +SymSetLatency = .bss:0x8097EA88; // type:object size:0x4 +SymSetLeaderUser = .bss:0x8097EA8C; // type:object size:0x4 +SymSetLeaderboardMode = .bss:0x8097EA90; // type:object size:0x4 +SymSetLefty = .bss:0x8097EA94; // type:object size:0x8 +SymSetLegendGemId = .bss:0x8097EA9C; // type:object size:0x4 +SymSetLegendMode = .bss:0x8097EAA0; // type:object size:0x8 +SymSetLessonComplete = .bss:0x8097EAA8; // type:object size:0x8 +SymSetLife = .bss:0x8097EAB0; // type:object size:0x4 +SymSetLinkingCode = .bss:0x8097EAB4; // type:object size:0xC +SymSetLoadedDir = .bss:0x8097EAC0; // type:object size:0x4 +SymSetLoadedDirShared = .bss:0x8097EAC4; // type:object size:0x4 +SymSetLocalPos = .bss:0x8097EAC8; // type:object size:0x4 +SymSetLocalPosIndex = .bss:0x8097EACC; // type:object size:0x4 +SymSetLocalRot = .bss:0x8097EAD0; // type:object size:0x4 +SymSetLocalRotIndex = .bss:0x8097EAD4; // type:object size:0x4 +SymSetLocalRotMat = .bss:0x8097EAD8; // type:object size:0x4 +SymSetLocalScale = .bss:0x8097EADC; // type:object size:0x4 +SymSetLocalScaleIndex = .bss:0x8097EAE0; // type:object size:0x8 +SymSetLoopEnd = .bss:0x8097EAE8; // type:object size:0x4 +SymSetLoopPoints = .bss:0x8097EAEC; // type:object size:0x4 +SymSetLoopStart = .bss:0x8097EAF0; // type:object size:0x4 +SymSetLyricColor = .bss:0x8097EAF4; // type:object size:0x4 +SymSetMakingSetlist = .bss:0x8097EAF8; // type:object size:0x4 +SymSetMasterVol = .bss:0x8097EAFC; // type:object size:0x4 +SymSetMat = .bss:0x8097EB00; // type:object size:0x4 +SymSetMaxDistance = .bss:0x8097EB04; // type:object size:0x4 +SymSetMenuShown = .bss:0x8097EB08; // type:object size:0x4 +SymSetMenuWaiting = .bss:0x8097EB0C; // type:object size:0x4 +SymSetMercuryswitchenabled = .bss:0x8097EB10; // type:object size:0x4 +SymSetMesh = .bss:0x8097EB14; // type:object size:0x4 +SymSetMeshes = .bss:0x8097EB18; // type:object size:0xC +SymSetMetronomeVolume = .bss:0x8097EB24; // type:object size:0x4 +SymSetMicConnected = .bss:0x8097EB28; // type:object size:0x4 +SymSetMicExtended = .bss:0x8097EB2C; // type:object size:0x4 +SymSetMicHidden = .bss:0x8097EB30; // type:object size:0x8 +SymSetMicMgr = .bss:0x8097EB38; // type:object size:0x4 +SymSetMicPreview = .bss:0x8097EB3C; // type:object size:0x4 +SymSetMicVol = .bss:0x8097EB40; // type:object size:0x4 +SymSetMicVolume = .bss:0x8097EB44; // type:object size:0x4 +SymSetMinDistance = .bss:0x8097EB48; // type:object size:0x4 +SymSetMiniLeaderboardShowing = .bss:0x8097EB4C; // type:object size:0x4 data:4byte +SymSetMinimumDifficulty = .bss:0x8097EB50; // type:object size:0x4 +SymSetMode = .bss:0x8097EB54; // type:object size:0x4 +SymSetMotd = .bss:0x8097EB58; // type:object size:0x10 +SymSetMultiplier = .bss:0x8097EB68; // type:object size:0x4 +SymSetMultiplierActive = .bss:0x8097EB6C; // type:object size:0x4 +SymSetMusicLibraryStatus = .bss:0x8097EB70; // type:object size:0x4 +SymSetMusicSpeed = .bss:0x8097EB74; // type:object size:0x4 +SymSetMusicVol = .bss:0x8097EB78; // type:object size:0x4 +SymSetMusicVolume = .bss:0x8097EB7C; // type:object size:0x4 +SymSetMuteMaster = .bss:0x8097EB80; // type:object size:0x4 +SymSetName = .bss:0x8097EB84; // type:object size:0xC +SymSetNormalDisplayLength = .bss:0x8097EB90; // type:object size:0x8 +SymSetNotifyUiLocation = .bss:0x8097EB98; // type:object size:0x4 +SymSetNumDisplay = .bss:0x8097EB9C; // type:object size:0x4 +SymSetNumPlayersDiff = .bss:0x8097EBA0; // type:object size:0x4 +SymSetNumPoses = .bss:0x8097EBA4; // type:object size:0x4 +SymSetNumSteps = .bss:0x8097EBA8; // type:object size:0x4 +SymSetOfferAlbum = .bss:0x8097EBAC; // type:object size:0x4 +SymSetOfferArtist = .bss:0x8097EBB0; // type:object size:0x4 +SymSetOfferCost = .bss:0x8097EBB4; // type:object size:0x4 +SymSetOfferName = .bss:0x8097EBB8; // type:object size:0x4 +SymSetOnTour = .bss:0x8097EBBC; // type:object size:0x4 +SymSetOpen = .bss:0x8097EBC0; // type:object size:0x4 +SymSetOtherUserToView = .bss:0x8097EBC4; // type:object size:0x4 +SymSetOutfit = .bss:0x8097EBC8; // type:object size:0x4 +SymSetOverride = .bss:0x8097EBCC; // type:object size:0x4 +SymSetOverrideUser = .bss:0x8097EBD0; // type:object size:0x4 +SymSetOverscan = .bss:0x8097EBD4; // type:object size:0x4 +SymSetOvershellPause = .bss:0x8097EBD8; // type:object size:0x4 +SymSetPan = .bss:0x8097EBDC; // type:object size:0x4 +SymSetPanelActive = .bss:0x8097EBE0; // type:object size:0x4 +SymSetParent = .bss:0x8097EBE4; // type:object size:0x4 +SymSetParentDof = .bss:0x8097EBE8; // type:object size:0x4 +SymSetParentalControlPin = .bss:0x8097EBEC; // type:object size:0x4 +SymSetParticleSys = .bss:0x8097EBF0; // type:object size:0x8 +SymSetPatchMenuReturnState = .bss:0x8097EBF8; // type:object size:0x4 +SymSetPatches = .bss:0x8097EBFC; // type:object size:0x4 +SymSetPath = .bss:0x8097EC00; // type:object size:0x4 +SymSetPathvar = .bss:0x8097EC04; // type:object size:0x4 +SymSetPaused = .bss:0x8097EC08; // type:object size:0x8 +SymSetPermanentOverdrive = .bss:0x8097EC10; // type:object size:0x4 +SymSetPhraseMeter = .bss:0x8097EC14; // type:object size:0x4 +SymSetPitch = .bss:0x8097EC18; // type:object size:0x4 +SymSetPitchShiftRatio = .bss:0x8097EC1C; // type:object size:0x4 +SymSetPlatformAudioLatency = .bss:0x8097EC20; // type:object size:0x4 +SymSetPlatformVideoLatency = .bss:0x8097EC24; // type:object size:0x4 +SymSetPlay = .bss:0x8097EC28; // type:object size:0x4 +SymSetPlayAllTracks = .bss:0x8097EC2C; // type:object size:0x4 +SymSetPlayerIconState = .bss:0x8097EC30; // type:object size:0x4 +SymSetPlayerLocal = .bss:0x8097EC34; // type:object size:0x4 +SymSetPlayingIntro = .bss:0x8097EC38; // type:object size:0x4 +SymSetPointColor = .bss:0x8097EC3C; // type:object size:0x4 +SymSetPointPos = .bss:0x8097EC40; // type:object size:0x4 +SymSetPointTest = .bss:0x8097EC44; // type:object size:0x4 +SymSetPointsColor = .bss:0x8097EC48; // type:object size:0x4 +SymSetPortraitRenderer = .bss:0x8097EC4C; // type:object size:0x4 +SymSetPos = .bss:0x8097EC50; // type:object size:0x4 +SymSetPoseMesh = .bss:0x8097EC54; // type:object size:0x4 +SymSetPoseWeight = .bss:0x8097EC58; // type:object size:0x4 +SymSetPostprocOverride = .bss:0x8097EC5C; // type:object size:0x8 +SymSetPrefabChar = .bss:0x8097EC64; // type:object size:0x4 +SymSetPreferredScoreType = .bss:0x8097EC68; // type:object size:0x4 +SymSetPrimaryBandName = .bss:0x8097EC6C; // type:object size:0x4 +SymSetPrimaryProfileByUser = .bss:0x8097EC70; // type:object size:0x4 +SymSetProfile = .bss:0x8097EC74; // type:object size:0x4 +SymSetProfileName = .bss:0x8097EC78; // type:object size:0x4 +SymSetProgress = .bss:0x8097EC7C; // type:object size:0x4 data:4byte +SymSetProgressMeterShowing = .bss:0x8097EC80; // type:object size:0x4 +SymSetProgressPercentage = .bss:0x8097EC84; // type:object size:0x4 data:4byte +SymSetProvider = .bss:0x8097EC88; // type:object size:0x4 +SymSetProxyDir = .bss:0x8097EC8C; // type:object size:0x4 +SymSetRange = .bss:0x8097EC90; // type:object size:0x4 +SymSetRatevar = .bss:0x8097EC94; // type:object size:0x4 +SymSetRatingIcon = .bss:0x8097EC98; // type:object size:0x4 +SymSetRealdrumsOverride = .bss:0x8097EC9C; // type:object size:0x4 +SymSetRealtime = .bss:0x8097ECA0; // type:object size:0x4 +SymSetRecommendation = .bss:0x8097ECA4; // type:object size:0xC +SymSetRelativeParent = .bss:0x8097ECB0; // type:object size:0x4 +SymSetRemoteUserDifficulty = .bss:0x8097ECB4; // type:object size:0x4 +SymSetRemoteUserTrackType = .bss:0x8097ECB8; // type:object size:0x8 +SymSetRendered = .bss:0x8097ECC0; // type:object size:0x8 +SymSetResumeFraction = .bss:0x8097ECC8; // type:object size:0x4 +SymSetReturnInfo = .bss:0x8097ECCC; // type:object size:0x4 +SymSetReturnScreen = .bss:0x8097ECD0; // type:object size:0x4 +SymSetRot = .bss:0x8097ECD4; // type:object size:0x4 +SymSetRotSlerp = .bss:0x8097ECD8; // type:object size:0x4 +SymSetRotate = .bss:0x8097ECDC; // type:object size:0x8 +SymSetScale = .bss:0x8097ECE4; // type:object size:0x4 +SymSetScaleSpline = .bss:0x8097ECE8; // type:object size:0x4 +SymSetScalevar = .bss:0x8097ECEC; // type:object size:0x4 +SymSetScore = .bss:0x8097ECF0; // type:object size:0x4 +SymSetScoreOrStars = .bss:0x8097ECF4; // type:object size:0x4 +SymSetScoreType = .bss:0x8097ECF8; // type:object size:0x4 +SymSetScoretype = .bss:0x8097ECFC; // type:object size:0x4 +SymSetScreenRect = .bss:0x8097ED00; // type:object size:0x4 +SymSetScreenRectX = .bss:0x8097ED04; // type:object size:0x4 +SymSetScreenSaver = .bss:0x8097ED08; // type:object size:0x4 +SymSetScrollExpandedDetails = .bss:0x8097ED0C; // type:object size:0x4 +SymSetSecondaryStateLevel = .bss:0x8097ED10; // type:object size:0x4 data:4byte +SymSetSeconds = .bss:0x8097ED14; // type:object size:0x4 +SymSetSection = .bss:0x8097ED18; // type:object size:0x4 +SymSetSelected = .bss:0x8097ED1C; // type:object size:0x4 +SymSetSelectedSimulateScroll = .bss:0x8097ED20; // type:object size:0x4 +SymSetSelectedStandin = .bss:0x8097ED24; // type:object size:0x4 +SymSetSelectedStickerIx = .bss:0x8097ED28; // type:object size:0x4 +SymSetSetlistDescription = .bss:0x8097ED2C; // type:object size:0x4 +SymSetSetlistName = .bss:0x8097ED30; // type:object size:0x4 +SymSetSetlistOwner = .bss:0x8097ED34; // type:object size:0x8 +SymSetShared = .bss:0x8097ED3C; // type:object size:0x4 +SymSetShowFocusComponent = .bss:0x8097ED40; // type:object size:0x4 +SymSetShowMessages = .bss:0x8097ED44; // type:object size:0x4 +SymSetShowSafeArea = .bss:0x8097ED48; // type:object size:0x4 +SymSetShowing = .bss:0x8097ED4C; // type:object size:0x4 +SymSetShrinkToSafe = .bss:0x8097ED50; // type:object size:0x4 +SymSetShuttle = .bss:0x8097ED54; // type:object size:0x4 +SymSetSideAngle = .bss:0x8097ED58; // type:object size:0x4 +SymSetSingalong = .bss:0x8097ED5C; // type:object size:0x4 +SymSetSize = .bss:0x8097ED60; // type:object size:0x4 +SymSetSkinTone = .bss:0x8097ED64; // type:object size:0x4 +SymSetSlot = .bss:0x8097ED68; // type:object size:0x4 +SymSetSmasherGlowing = .bss:0x8097ED6C; // type:object size:0x4 +SymSetSong = .bss:0x8097ED70; // type:object size:0x4 +SymSetSongAndArtistName = .bss:0x8097ED74; // type:object size:0x4 +SymSetSongAndArtistNameFromSym = .bss:0x8097ED78; // type:object size:0x4 +SymSetSongLimit = .bss:0x8097ED7C; // type:object size:0x4 +SymSetSongName = .bss:0x8097ED80; // type:object size:0x4 +SymSetSongNameFromNode = .bss:0x8097ED84; // type:object size:0x4 +SymSetSongOptionsRequired = .bss:0x8097ED88; // type:object size:0x4 +SymSetSongReview = .bss:0x8097ED8C; // type:object size:0x4 +SymSetSongToTaskmgrMs = .bss:0x8097ED90; // type:object size:0x8 +SymSetSongYear = .bss:0x8097ED98; // type:object size:0x4 +SymSetSongs = .bss:0x8097ED9C; // type:object size:0x4 +SymSetSongsDownload = .bss:0x8097EDA0; // type:object size:0x4 +SymSetSource = .bss:0x8097EDA4; // type:object size:0x4 +SymSetSpeed = .bss:0x8097EDA8; // type:object size:0x4 +SymSetSpeedRatio = .bss:0x8097EDAC; // type:object size:0x4 +SymSetSphereTest = .bss:0x8097EDB0; // type:object size:0x4 +SymSetSpoofed = .bss:0x8097EDB4; // type:object size:0x4 +SymSetStandin = .bss:0x8097EDB8; // type:object size:0x4 +SymSetStarPower = .bss:0x8097EDBC; // type:object size:0x4 +SymSetStarPowerDeployRate = .bss:0x8097EDC0; // type:object size:0x4 +SymSetStarPowerPhraseBoost = .bss:0x8097EDC4; // type:object size:0x4 +SymSetStarRating = .bss:0x8097EDC8; // type:object size:0x4 +SymSetStartColor = .bss:0x8097EDCC; // type:object size:0x4 +SymSetStartColorInt = .bss:0x8097EDD0; // type:object size:0x4 +SymSetStartPaused = .bss:0x8097EDD4; // type:object size:0x4 +SymSetStartSection = .bss:0x8097EDD8; // type:object size:0x4 +SymSetStartSize = .bss:0x8097EDDC; // type:object size:0x4 +SymSetStarved = .bss:0x8097EDE0; // type:object size:0x4 +SymSetState = .bss:0x8097EDE4; // type:object size:0x8 +SymSetSteps = .bss:0x8097EDEC; // type:object size:0x4 +SymSetStickerCategory = .bss:0x8097EDF0; // type:object size:0x4 +SymSetStickerProvider = .bss:0x8097EDF4; // type:object size:0x4 +SymSetStoreCrumbText = .bss:0x8097EDF8; // type:object size:0x4 +SymSetStoreMode = .bss:0x8097EDFC; // type:object size:0x4 +SymSetStreak = .bss:0x8097EE00; // type:object size:0x4 +SymSetStringFret = .bss:0x8097EE04; // type:object size:0x4 +SymSetSuccessState = .bss:0x8097EE08; // type:object size:0x4 data:4byte +SymSetSwingArm = .bss:0x8097EE0C; // type:object size:0x4 +SymSetSynapseEnabled = .bss:0x8097EE10; // type:object size:0x4 +SymSetSync = .bss:0x8097EE14; // type:object size:0x4 +SymSetSyncOffset = .bss:0x8097EE18; // type:object size:0x4 +SymSetSyncPresetIx = .bss:0x8097EE1C; // type:object size:0x4 +SymSetTab = .bss:0x8097EE20; // type:object size:0x4 +SymSetTambourine = .bss:0x8097EE24; // type:object size:0x4 +SymSetTarget = .bss:0x8097EE28; // type:object size:0x4 data:4byte +SymSetText = .bss:0x8097EE2C; // type:object size:0xC +SymSetTitle = .bss:0x8097EE38; // type:object size:0x4 +SymSetToSettingOptions = .bss:0x8097EE3C; // type:object size:0x4 +SymSetToStartingLbIx = .bss:0x8097EE40; // type:object size:0x4 +SymSetToToken = .bss:0x8097EE44; // type:object size:0x4 +SymSetTokenFmt = .bss:0x8097EE48; // type:object size:0x4 data:4byte +SymSetTourDesc = .bss:0x8097EE4C; // type:object size:0x4 +SymSetTrackOffset = .bss:0x8097EE50; // type:object size:0xC +SymSetTrackType = .bss:0x8097EE5C; // type:object size:0x8 +SymSetTrans = .bss:0x8097EE64; // type:object size:0x4 +SymSetTransParent = .bss:0x8097EE68; // type:object size:0x4 +SymSetTransSpline = .bss:0x8097EE6C; // type:object size:0x10 +SymSetUiState = .bss:0x8097EE7C; // type:object size:0x4 +SymSetUpdate = .bss:0x8097EE80; // type:object size:0x4 +SymSetUseDlc = .bss:0x8097EE84; // type:object size:0x4 +SymSetUser = .bss:0x8097EE88; // type:object size:0x4 +SymSetUserName = .bss:0x8097EE8C; // type:object size:0x4 +SymSetUsesHarmony = .bss:0x8097EE90; // type:object size:0x4 +SymSetUsingWiiFriends = .bss:0x8097EE94; // type:object size:0x4 +SymSetVal = .bss:0x8097EE98; // type:object size:0x4 +SymSetValues = .bss:0x8097EE9C; // type:object size:0x4 +SymSetVenue = .bss:0x8097EEA0; // type:object size:0x4 +SymSetVenueOverride = .bss:0x8097EEA4; // type:object size:0x4 +SymSetVerbosePlates = .bss:0x8097EEA8; // type:object size:0x4 +SymSetVertNorm = .bss:0x8097EEAC; // type:object size:0x4 +SymSetVertPos = .bss:0x8097EEB0; // type:object size:0x4 +SymSetVertUv = .bss:0x8097EEB4; // type:object size:0x4 +SymSetViewSettingToLabel = .bss:0x8097EEB8; // type:object size:0x8 +SymSetVirtualDpad = .bss:0x8097EEC0; // type:object size:0x4 +SymSetVocalCueFader = .bss:0x8097EEC4; // type:object size:0x4 +SymSetVocalCueVolume = .bss:0x8097EEC8; // type:object size:0x4 +SymSetVocalPartBias = .bss:0x8097EECC; // type:object size:0x4 +SymSetVocalStyle = .bss:0x8097EED0; // type:object size:0x4 +SymSetVocalVolume = .bss:0x8097EED4; // type:object size:0x4 +SymSetVoiceChatVolume = .bss:0x8097EED8; // type:object size:0x4 +SymSetVoiceoverSymbol = .bss:0x8097EEDC; // type:object size:0x4 +SymSetVolume = .bss:0x8097EEE0; // type:object size:0x4 +SymSetVolumeOffsetSymbol = .bss:0x8097EEE4; // type:object size:0x4 +SymSetVoxConfiguration = .bss:0x8097EEE8; // type:object size:0xC +SymSetWeight = .bss:0x8097EEF4; // type:object size:0x4 +SymSetWhammystarpowerenabled = .bss:0x8097EEF8; // type:object size:0x4 +SymSetWiiFriend = .bss:0x8097EEFC; // type:object size:0x4 +SymSetWiiFriendsPromptShown = .bss:0x8097EF00; // type:object size:0x4 +SymSetWiiprofileCreatePending = .bss:0x8097EF04; // type:object size:0x4 +SymSetWiiprofileIndex = .bss:0x8097EF08; // type:object size:0x4 +SymSetWiiprofileListMode = .bss:0x8097EF0C; // type:object size:0x4 +SymSetWiiprofileState = .bss:0x8097EF10; // type:object size:0x4 +SymSetWiispeakEchoSuppression = .bss:0x8097EF14; // type:object size:0x4 +SymSetWiispeakFriendsVolume = .bss:0x8097EF18; // type:object size:0x4 +SymSetWiispeakHeadphoneMode = .bss:0x8097EF1C; // type:object size:0x4 +SymSetWiispeakMicrophoneSensitivity = .bss:0x8097EF20; // type:object size:0x4 +SymSetWiispeakToggle = .bss:0x8097EF24; // type:object size:0x4 +SymSetWipe = .bss:0x8097EF28; // type:object size:0x4 +SymSetWrapWidth = .bss:0x8097EF2C; // type:object size:0x4 +SymSetZRange = .bss:0x8097EF30; // type:object size:0x4 +SymSetZero = .bss:0x8097EF34; // type:object size:0x4 +SymSetlist = .bss:0x8097EF38; // type:object size:0x4 data:4byte +SymSetlistChanged = .bss:0x8097EF3C; // type:object size:0x4 +SymSetlistDefaultDesc = .bss:0x8097EF40; // type:object size:0x4 data:4byte +SymSetlistDefaultName = .bss:0x8097EF44; // type:object size:0x4 data:4byte +SymSetlistDesc = .bss:0x8097EF48; // type:object size:0x4 data:4byte +SymSetlistFriend = .bss:0x8097EF4C; // type:object size:0x4 data:4byte +SymSetlistHarmonix = .bss:0x8097EF50; // type:object size:0x4 data:4byte +SymSetlistHeaderBattles = .bss:0x8097EF54; // type:object size:0x4 data:4byte +SymSetlistHeaderCustom = .bss:0x8097EF58; // type:object size:0x4 data:4byte +SymSetlistHeaderInternal = .bss:0x8097EF5C; // type:object size:0x4 data:4byte +SymSetlistInst = .bss:0x8097EF60; // type:object size:0x4 +SymSetlistInternal = .bss:0x8097EF64; // type:object size:0x18 data:4byte +SymSetlistLocal = .bss:0x8097EF7C; // type:object size:0x4 data:4byte +SymSetlistName = .bss:0x8097EF80; // type:object size:0x4 data:4byte +SymSetlistProvider = .bss:0x8097EF84; // type:object size:0x4 +SymSetlistSaveBattle = .bss:0x8097EF88; // type:object size:0x4 data:4byte +SymSetlistSaveLocal = .bss:0x8097EF8C; // type:object size:0x4 data:4byte +SymSetlistSaveShare = .bss:0x8097EF90; // type:object size:0x4 data:4byte +SymSetlistScoresProvider = .bss:0x8097EF94; // type:object size:0x4 +SymSetlistSeconds = .bss:0x8097EF98; // type:object size:0x4 +SymSetlistSize = .bss:0x8097EF9C; // type:object size:0x4 +SymSetlistSongFmt = .bss:0x8097EFA0; // type:object size:0x4 data:4byte +SymSetlistSongRemoved = .bss:0x8097EFA4; // type:object size:0x4 data:4byte +SymSetlistSongsRemoved = .bss:0x8097EFA8; // type:object size:0x4 data:4byte +SymSetlistType = .bss:0x8097EFAC; // type:object size:0x4 data:4byte +SymSetlistUpsell = .bss:0x8097EFB0; // type:object size:0x4 +SymSetlistsCanBeSaved = .bss:0x8097EFB4; // type:object size:0x4 data:4byte +SymSettingOptionFmt = .bss:0x8097EFB8; // type:object size:0x4 data:4byte +SymSetupAssetPatchData = .bss:0x8097EFBC; // type:object size:0x4 +SymSetupCrowdMeter = .bss:0x8097EFC0; // type:object size:0x4 +SymSetupDeletion = .bss:0x8097EFC4; // type:object size:0x8 +SymSetupForBandLogo = .bss:0x8097EFCC; // type:object size:0x4 +SymSetupForCharacterPatch = .bss:0x8097EFD0; // type:object size:0x4 +SymSetupForSetlistArt = .bss:0x8097EFD4; // type:object size:0x4 +SymSetupFx = .bss:0x8097EFD8; // type:object size:0x8 +SymSetupInstrument = .bss:0x8097EFE0; // type:object size:0x4 +SymSetupOverflow = .bss:0x8097EFE4; // type:object size:0x4 data:4byte +SymSetupPlayerIntro = .bss:0x8097EFE8; // type:object size:0x8 +SymSfx = .bss:0x8097EFF0; // type:object size:0x4 +SymSfxmaps = .bss:0x8097EFF4; // type:object size:0x8 +SymShadow = .bss:0x8097EFFC; // type:object size:0x4 +SymShadowObjects = .bss:0x8097F000; // type:object size:0x8 +SymShakeNoiseamp = .bss:0x8097F008; // type:object size:0x4 +SymShakeNoisefreq = .bss:0x8097F00C; // type:object size:0x4 +SymShape = .bss:0x8097F010; // type:object size:0x4 data:4byte +SymShapeNum = .bss:0x8097F014; // type:object size:0x4 +SymShared = .bss:0x8097F018; // type:object size:0x4 data:4byte +SymSharesGroups = .bss:0x8097F01C; // type:object size:0x4 +SymShell = .bss:0x8097F020; // type:object size:0x4 +SymShellNewPatch = .bss:0x8097F024; // type:object size:0x4 data:4byte +SymShellNoPatch = .bss:0x8097F028; // type:object size:0xC data:4byte +SymShortDifficultySym = .bss:0x8097F034; // type:object size:0x4 +SymShortName = .bss:0x8097F038; // type:object size:0x4 +SymShortcutGroup = .bss:0x8097F03C; // type:object size:0x8 data:4byte +SymShortcutStr = .bss:0x8097F044; // type:object size:0x4 +SymShortcutToPos = .bss:0x8097F048; // type:object size:0x8 +SymShot5 = .bss:0x8097F050; // type:object size:0x4 +SymShotAfter = .bss:0x8097F054; // type:object size:0x8 +SymShotBg = .bss:0x8097F05C; // type:object size:0x4 +SymShotBk = .bss:0x8097F060; // type:object size:0x4 +SymShotGk = .bss:0x8097F064; // type:object size:0x4 +SymShotOver = .bss:0x8097F068; // type:object size:0x4 +SymShotSetPlayMode = .bss:0x8097F06C; // type:object size:0x8 +SymShouldMissCauseFail = .bss:0x8097F074; // type:object size:0x4 +SymShouldPause = .bss:0x8097F078; // type:object size:0x4 +SymShouldPlayVenueIntro = .bss:0x8097F07C; // type:object size:0x4 +SymShouldPlayVenueOutro = .bss:0x8097F080; // type:object size:0x4 +SymShouldReturnToCategoryScreen = .bss:0x8097F084; // type:object size:0x4 +SymShouldShowBest = .bss:0x8097F088; // type:object size:0x4 +SymShouldShowPostSeldiffScreen = .bss:0x8097F08C; // type:object size:0x4 +SymShouldShowProgress = .bss:0x8097F090; // type:object size:0x4 +SymShow = .bss:0x8097F094; // type:object size:0x4 data:4byte +SymShow3DOnly = .bss:0x8097F098; // type:object size:0x4 +SymShowAcceptInvitation = .bss:0x8097F09C; // type:object size:0x4 +SymShowAllParts = .bss:0x8097F0A0; // type:object size:0x8 +SymShowBandMult = .bss:0x8097F0A8; // type:object size:0x4 +SymShowBestAfterEarn = .bss:0x8097F0AC; // type:object size:0x8 data:4byte +SymShowBriefBandMessage = .bss:0x8097F0B4; // type:object size:0x4 data:4byte +SymShowBrowserPurchased = .bss:0x8097F0B8; // type:object size:0x4 +SymShowCharEdit = .bss:0x8097F0BC; // type:object size:0x4 +SymShowChars = .bss:0x8097F0C0; // type:object size:0x4 +SymShowChooseInvitation = .bss:0x8097F0C4; // type:object size:0x8 +SymShowChordBook = .bss:0x8097F0CC; // type:object size:0x4 +SymShowCollide = .bss:0x8097F0D0; // type:object size:0x4 +SymShowConsole = .bss:0x8097F0D4; // type:object size:0x4 +SymShowCreateWiiprofile = .bss:0x8097F0D8; // type:object size:0x10 +SymShowDeleteWiiprofile = .bss:0x8097F0E8; // type:object size:0x4 +SymShowDenominator = .bss:0x8097F0EC; // type:object size:0x4 data:4byte +SymShowEmptyStars = .bss:0x8097F0F0; // type:object size:0x4 +SymShowEnterCalibration = .bss:0x8097F0F4; // type:object size:0x4 +SymShowEnterCredits = .bss:0x8097F0F8; // type:object size:0x4 +SymShowEnterWiiprofile = .bss:0x8097F0FC; // type:object size:0x4 +SymShowEnterWiispeakOptions = .bss:0x8097F100; // type:object size:0x4 +SymShowFontPicker = .bss:0x8097F104; // type:object size:0x8 +SymShowGameOptions = .bss:0x8097F10C; // type:object size:0x4 +SymShowGamercardUsers = .bss:0x8097F110; // type:object size:0xC +SymShowHint = .bss:0x8097F11C; // type:object size:0xC +SymShowKeyboard = .bss:0x8097F128; // type:object size:0x4 +SymShowKickUsers = .bss:0x8097F12C; // type:object size:0x8 +SymShowLinkingCode = .bss:0x8097F134; // type:object size:0x4 +SymShowLinkingCodeError = .bss:0x8097F138; // type:object size:0x4 +SymShowList = .bss:0x8097F13C; // type:object size:0x4 +SymShowMenu = .bss:0x8097F140; // type:object size:0x4 +SymShowMessage = .bss:0x8097F144; // type:object size:0x4 +SymShowMissingSetlistSongsDialog = .bss:0x8097F148; // type:object size:0x4 data:4byte +SymShowModifierDelayedEffect = .bss:0x8097F14C; // type:object size:0x4 +SymShowModifierUnlock = .bss:0x8097F150; // type:object size:0x4 +SymShowModifiers = .bss:0x8097F154; // type:object size:0x4 +SymShowModifiersDrumWarning = .bss:0x8097F158; // type:object size:0x4 +SymShowMuteUsers = .bss:0x8097F15C; // type:object size:0x4 +SymShowNoInvitations = .bss:0x8097F160; // type:object size:0x4 +SymShowObjects = .bss:0x8097F164; // type:object size:0x8 +SymShowOnlineOptions = .bss:0x8097F16C; // type:object size:0x4 +SymShowOnlyScroll = .bss:0x8097F170; // type:object size:0x4 +SymShowOptions = .bss:0x8097F174; // type:object size:0x4 +SymShowOptionsAudio = .bss:0x8097F178; // type:object size:0x4 +SymShowOptionsAvSettings = .bss:0x8097F17C; // type:object size:0x4 +SymShowOptionsDrum = .bss:0x8097F180; // type:object size:0x4 +SymShowOptionsEndGame = .bss:0x8097F184; // type:object size:0x4 +SymShowOptionsExtras = .bss:0x8097F188; // type:object size:0x4 +SymShowOptionsVocal = .bss:0x8097F18C; // type:object size:0x4 +SymShowOverlay = .bss:0x8097F190; // type:object size:0x8 +SymShowPeakArrow = .bss:0x8097F198; // type:object size:0x8 +SymShowPose = .bss:0x8097F1A0; // type:object size:0x4 +SymShowProfiles = .bss:0x8097F1A4; // type:object size:0x8 +SymShowPurchaseUi = .bss:0x8097F1AC; // type:object size:0x4 +SymShowPurchaseUiForOffer = .bss:0x8097F1B0; // type:object size:0x4 +SymShowRange = .bss:0x8097F1B4; // type:object size:0x4 +SymShowRegisterWiiprofile = .bss:0x8097F1B8; // type:object size:0x4 +SymShowSafeArea = .bss:0x8097F1BC; // type:object size:0x4 +SymShowSaveIcon = .bss:0x8097F1C0; // type:object size:0x4 +SymShowSaveloadmgrAutosaveConfirm = .bss:0x8097F1C4; // type:object size:0x4 +SymShowSaveloadmgrNotIdle = .bss:0x8097F1C8; // type:object size:0x4 +SymShowSaveloadmgrNotMeta = .bss:0x8097F1CC; // type:object size:0x14 +SymShowSignInWait = .bss:0x8097F1E0; // type:object size:0x4 +SymShowSongOptions = .bss:0x8097F1E4; // type:object size:0x4 +SymShowSpheres = .bss:0x8097F1E8; // type:object size:0x4 +SymShowState = .bss:0x8097F1EC; // type:object size:0x4 +SymShowSwitchWiiprofile = .bss:0x8097F1F0; // type:object size:0x4 +SymShowText = .bss:0x8097F1F4; // type:object size:0x4 +SymShowToggleNoFailDenial = .bss:0x8097F1F8; // type:object size:0x14 +SymShowWaitWii = .bss:0x8097F20C; // type:object size:0x4 +SymShowWiiprofileConfirm = .bss:0x8097F210; // type:object size:0x4 +SymShowWiiprofileFail = .bss:0x8097F214; // type:object size:0x4 +SymShowWiiprofileFailBusy = .bss:0x8097F218; // type:object size:0x4 +SymShowWiiprofileList = .bss:0x8097F21C; // type:object size:0x4 +SymShowWiiprofileOptions = .bss:0x8097F220; // type:object size:0x4 +SymShowWiiprofileSwapFail = .bss:0x8097F224; // type:object size:0x8 +SymShowing = .bss:0x8097F22C; // type:object size:0x14 +SymShows = .bss:0x8097F240; // type:object size:0x4 +SymShrinkKeys = .bss:0x8097F244; // type:object size:0x4 +SymShrinkRatio = .bss:0x8097F248; // type:object size:0x4 +SymShrinkVerts = .bss:0x8097F24C; // type:object size:0x4 +SymShuffleSetlist = .bss:0x8097F250; // type:object size:0x8 +SymShuttleActive = .bss:0x8097F258; // type:object size:0x4 +SymSideAxis = .bss:0x8097F25C; // type:object size:0x4 +SymSideLength = .bss:0x8097F260; // type:object size:0x4 +SymSids = .bss:0x8097F264; // type:object size:0x4 data:4byte +SymSignOut = .bss:0x8097F268; // type:object size:0x4 data:4byte +SymSignin = .bss:0x8097F26C; // type:object size:0x4 +SymSigninChanged = .bss:0x8097F270; // type:object size:0x4 data:4byte +SymSigningInUser = .bss:0x8097F274; // type:object size:0x4 data:4byte +SymSimulate = .bss:0x8097F278; // type:object size:0x8 +SymSimulatedNet = .bss:0x8097F280; // type:object size:0x8 +SymSize = .bss:0x8097F288; // type:object size:0x4 +SymSizeKb = .bss:0x8097F28C; // type:object size:0x4 +SymSizes = .bss:0x8097F290; // type:object size:0x8 +SymSkin = .bss:0x8097F298; // type:object size:0x4 +SymSkinColor = .bss:0x8097F29C; // type:object size:0x4 +SymSkipCancel = .bss:0x8097F2A0; // type:object size:0x4 +SymSkipConfirm = .bss:0x8097F2A4; // type:object size:0x8 +SymSkipPushDialog = .bss:0x8097F2AC; // type:object size:0x4 +SymSkipSong = .bss:0x8097F2B0; // type:object size:0x8 +SymSkipToFocused = .bss:0x8097F2B8; // type:object size:0x4 +SymSkipToNextShortcut = .bss:0x8097F2BC; // type:object size:0x4 +SymSkipToPrevShortcut = .bss:0x8097F2C0; // type:object size:0x4 +SymSkipToShortcut = .bss:0x8097F2C4; // type:object size:0x4 +SymSkipToUnfocused = .bss:0x8097F2C8; // type:object size:0x4 +SymSkippedSong = .bss:0x8097F2CC; // type:object size:0x4 +SymSlaves = .bss:0x8097F2D0; // type:object size:0x4 +SymSleep = .bss:0x8097F2D4; // type:object size:0x4 +SymSleeve = .bss:0x8097F2D8; // type:object size:0x4 +SymSlide = .bss:0x8097F2DC; // type:object size:0x4 +SymSlider = .bss:0x8097F2E0; // type:object size:0x8 +SymSlotDrawType = .bss:0x8097F2E8; // type:object size:0x8 +SymSlotView = .bss:0x8097F2F0; // type:object size:0x4 +SymSlots = .bss:0x8097F2F4; // type:object size:0x8 +SymSmasherList = .bss:0x8097F2FC; // type:object size:0x4 data:4byte +SymSmasherPlate = .bss:0x8097F300; // type:object size:0x4 +SymSmokeIntensity = .bss:0x8097F304; // type:object size:0x8 +SymSnap = .bss:0x8097F30C; // type:object size:0x8 +SymSnapToValue = .bss:0x8097F314; // type:object size:0xC +SymSolo = .bss:0x8097F320; // type:object size:0x4 data:4byte +SymSoloButtonPercent = .bss:0x8097F324; // type:object size:0x4 +SymSoloButtonedSoloStatTrackerContribution = .bss:0x8097F328; // type:object size:0x8 data:4byte +SymSoloInstarankGroup = .bss:0x8097F330; // type:object size:0x4 data:4byte +SymSoloPercent = .bss:0x8097F334; // type:object size:0x4 +SymSoloPercentage = .bss:0x8097F338; // type:object size:0x8 +SymSoloScore = .bss:0x8097F340; // type:object size:0x4 data:4byte +SymSong = .bss:0x8097F344; // type:object size:0x8 data:4byte +SymSongArtistFmt = .bss:0x8097F34C; // type:object size:0x4 data:4byte +SymSongArtistFmtNumber = .bss:0x8097F350; // type:object size:0x14 data:4byte +SymSongEndFrame = .bss:0x8097F364; // type:object size:0x8 +SymSongFilePath = .bss:0x8097F36C; // type:object size:0x8 +SymSongGroupings = .bss:0x8097F374; // type:object size:0x4 data:4byte +SymSongId = .bss:0x8097F378; // type:object size:0x8 data:4byte +SymSongInfoCacheButtonCancel = .bss:0x8097F380; // type:object size:0x4 +SymSongInfoCacheButtonCorruptOverwrite = .bss:0x8097F384; // type:object size:0x4 +SymSongInfoCacheButtonCreate = .bss:0x8097F388; // type:object size:0x4 +SymSongInfoCacheCorrupt = .bss:0x8097F38C; // type:object size:0x4 data:4byte +SymSongInfoCacheCreate = .bss:0x8097F390; // type:object size:0x4 data:4byte +SymSongInfoCacheMissing = .bss:0x8097F394; // type:object size:0x4 data:4byte +SymSongInfoCacheName = .bss:0x8097F398; // type:object size:0x4 data:4byte +SymSongKey = .bss:0x8097F39C; // type:object size:0x4 data:4byte +SymSongLength = .bss:0x8097F3A0; // type:object size:0x4 data:4byte +SymSongLengthShort = .bss:0x8097F3A4; // type:object size:0x4 data:4byte +SymSongLengths = .bss:0x8097F3A8; // type:object size:0x4 data:4byte +SymSongMgr = .bss:0x8097F3AC; // type:object size:0x4 data:4byte +SymSongMgrFull = .bss:0x8097F3B0; // type:object size:0x4 data:4byte +SymSongName = .bss:0x8097F3B4; // type:object size:0x8 data:4byte +SymSongOffset = .bss:0x8097F3BC; // type:object size:0x4 +SymSongOwner = .bss:0x8097F3C0; // type:object size:0x4 +SymSongPath = .bss:0x8097F3C4; // type:object size:0x4 +SymSongScrollSpeed = .bss:0x8097F3C8; // type:object size:0x4 data:4byte +SymSongSelect = .bss:0x8097F3CC; // type:object size:0x8 data:4byte +SymSongSelectSong = .bss:0x8097F3D4; // type:object size:0x4 +SymSongSelectSongs = .bss:0x8097F3D8; // type:object size:0x4 +SymSongSpecific = .bss:0x8097F3DC; // type:object size:0x8 +SymSongTonality = .bss:0x8097F3E4; // type:object size:0x8 data:4byte +SymSongresultsHeaderContinued = .bss:0x8097F3EC; // type:object size:0x4 data:4byte +SymSongresultsNodata = .bss:0x8097F3F0; // type:object size:0x4 data:4byte +SymSongs = .bss:0x8097F3F4; // type:object size:0x8 data:4byte +SymSortDraws = .bss:0x8097F3FC; // type:object size:0x4 +SymSortGroups = .bss:0x8097F400; // type:object size:0x4 +SymSortName = .bss:0x8097F404; // type:object size:0x4 +SymSortPolls = .bss:0x8097F408; // type:object size:0x4 +SymSortTargets = .bss:0x8097F40C; // type:object size:0x4 +SymSortXfms = .bss:0x8097F410; // type:object size:0x4 +SymSounds = .bss:0x8097F414; // type:object size:0x4 +SymSource = .bss:0x8097F418; // type:object size:0x4 +SymSourceRadius = .bss:0x8097F41C; // type:object size:0x4 +SymSpaceLoop = .bss:0x8097F420; // type:object size:0x4 +SymSpacing = .bss:0x8097F424; // type:object size:0x1C +SymSpeed = .bss:0x8097F440; // type:object size:0x4 +SymSphere = .bss:0x8097F444; // type:object size:0x4 +SymSphereBase = .bss:0x8097F448; // type:object size:0x8 +SymSpinAnim = .bss:0x8097F450; // type:object size:0x4 +SymSpinBeginFrame = .bss:0x8097F454; // type:object size:0x4 +SymSpinEndFrame = .bss:0x8097F458; // type:object size:0x4 +SymSpinRestFrame = .bss:0x8097F45C; // type:object size:0x4 +SymSpinSpeed = .bss:0x8097F460; // type:object size:0x4 +SymSpine = .bss:0x8097F464; // type:object size:0x4 +SymSplice = .bss:0x8097F468; // type:object size:0x4 +SymSpline = .bss:0x8097F46C; // type:object size:0xC +SymSpotBass = .bss:0x8097F478; // type:object size:0x4 +SymSpotDrums = .bss:0x8097F47C; // type:object size:0x4 +SymSpotGuitar = .bss:0x8097F480; // type:object size:0x4 +SymSpotHeight = .bss:0x8097F484; // type:object size:0x8 +SymSpotKeyboard = .bss:0x8097F48C; // type:object size:0x4 +SymSpotMaterial = .bss:0x8097F490; // type:object size:0x4 +SymSpotScale = .bss:0x8097F494; // type:object size:0x4 +SymSpotTarget = .bss:0x8097F498; // type:object size:0x4 +SymSpotVocal = .bss:0x8097F49C; // type:object size:0x4 +SymSpotlight = .bss:0x8097F4A0; // type:object size:0x4 +SymSpotlightDrawer = .bss:0x8097F4A4; // type:object size:0x4 +SymSpotlightDrawerEntries = .bss:0x8097F4A8; // type:object size:0x4 +SymSpotlightEntries = .bss:0x8097F4AC; // type:object size:0x4 +SymSpotlightFail = .bss:0x8097F4B0; // type:object size:0x4 +SymSpotlightFailGuilty = .bss:0x8097F4B4; // type:object size:0x4 +SymSpotlightPhraseSuccess = .bss:0x8097F4B8; // type:object size:0x4 +SymSpotlightPhraseSuccessTrig = .bss:0x8097F4BC; // type:object size:0x4 +SymSpotlightSparklesOnlyTrig = .bss:0x8097F4C0; // type:object size:0x4 +SymSpuOverhead = .bss:0x8097F4C4; // type:object size:0x8 +SymSrc = .bss:0x8097F4CC; // type:object size:0x4 +SymSrcOne = .bss:0x8097F4D0; // type:object size:0x4 +SymSrcTwo = .bss:0x8097F4D4; // type:object size:0x4 +SymStage = .bss:0x8097F4D8; // type:object size:0x4 +SymStagekitFog = .bss:0x8097F4DC; // type:object size:0x8 +SymStar = .bss:0x8097F4E4; // type:object size:0x4 data:4byte +SymStarDeploy = .bss:0x8097F4E8; // type:object size:0x4 +SymStarDeployStop = .bss:0x8097F4EC; // type:object size:0x4 +SymStarDisplay = .bss:0x8097F4F0; // type:object size:0x8 +SymStarPowerMeter = .bss:0x8097F4F8; // type:object size:0x4 +SymStarRating = .bss:0x8097F4FC; // type:object size:0x4 +SymStarType = .bss:0x8097F500; // type:object size:0x4 +SymStars = .bss:0x8097F504; // type:object size:0x4 data:4byte +SymStars0 = .bss:0x8097F508; // type:object size:0x4 data:4byte +SymStars1 = .bss:0x8097F50C; // type:object size:0x4 data:4byte +SymStars2 = .bss:0x8097F510; // type:object size:0x4 data:4byte +SymStars3 = .bss:0x8097F514; // type:object size:0x4 data:4byte +SymStars4 = .bss:0x8097F518; // type:object size:0x4 data:4byte +SymStars5 = .bss:0x8097F51C; // type:object size:0x4 data:4byte +SymStars6 = .bss:0x8097F520; // type:object size:0x4 data:4byte +SymStart = .bss:0x8097F524; // type:object size:0x4 +SymStartAlpha = .bss:0x8097F528; // type:object size:0x4 +SymStartAlphaHigh = .bss:0x8097F52C; // type:object size:0x4 +SymStartAlphaLow = .bss:0x8097F530; // type:object size:0xC +SymStartBackup = .bss:0x8097F53C; // type:object size:0x4 +SymStartBeat = .bss:0x8097F540; // type:object size:0x4 +SymStartChordbook = .bss:0x8097F544; // type:object size:0x4 +SymStartColor = .bss:0x8097F548; // type:object size:0x4 +SymStartColorHigh = .bss:0x8097F54C; // type:object size:0x4 +SymStartColorLow = .bss:0x8097F550; // type:object size:0x4 +SymStartCount = .bss:0x8097F554; // type:object size:0xC +SymStartFade = .bss:0x8097F560; // type:object size:0x4 +SymStartFrame = .bss:0x8097F564; // type:object size:0x4 +SymStartGame = .bss:0x8097F568; // type:object size:0x8 +SymStartInSetlistBrowser = .bss:0x8097F570; // type:object size:0x4 +SymStartLoad = .bss:0x8097F574; // type:object size:0x4 +SymStartLoadSong = .bss:0x8097F578; // type:object size:0x4 +SymStartLock = .bss:0x8097F57C; // type:object size:0x10 +SymStartMic = .bss:0x8097F58C; // type:object size:0x4 +SymStartOffset = .bss:0x8097F590; // type:object size:0x4 +SymStartRank = .bss:0x8097F594; // type:object size:0x8 data:4byte +SymStartRefresh = .bss:0x8097F59C; // type:object size:0x4 +SymStartSection = .bss:0x8097F5A0; // type:object size:0x4 data:4byte +SymStartSize = .bss:0x8097F5A4; // type:object size:0x10 +SymStartSync = .bss:0x8097F5B4; // type:object size:0x4 +SymStartSyncWithExternalBlock = .bss:0x8097F5B8; // type:object size:0x4 +SymStartTest = .bss:0x8097F5BC; // type:object size:0x8 +SymStartVenueShot = .bss:0x8097F5C4; // type:object size:0x4 +SymStartingOption = .bss:0x8097F5C8; // type:object size:0x4 +SymState = .bss:0x8097F5CC; // type:object size:0x4 +SymStateHandlers = .bss:0x8097F5D0; // type:object size:0x8 data:4byte +SymStaticComingAlpha = .bss:0x8097F5D8; // type:object size:0x8 +SymStaticNowAlpha = .bss:0x8097F5E0; // type:object size:0x4 +SymStaticPastAlpha = .bss:0x8097F5E4; // type:object size:0x4 +SymStaticPreviewAlpha = .bss:0x8097F5E8; // type:object size:0x4 +SymStatsFinalized = .bss:0x8097F5EC; // type:object size:0x4 +SymStatsSynced = .bss:0x8097F5F0; // type:object size:0xC +SymSteps = .bss:0x8097F5FC; // type:object size:0x8 +SymStickerCategory = .bss:0x8097F604; // type:object size:0x4 +SymStickerIdx = .bss:0x8097F608; // type:object size:0x4 +SymStiffness = .bss:0x8097F60C; // type:object size:0x4 +SymStillClip = .bss:0x8097F610; // type:object size:0x4 +SymStop = .bss:0x8097F614; // type:object size:0x4 +SymStopAllSfx = .bss:0x8097F618; // type:object size:0x8 +SymStopAnimation = .bss:0x8097F620; // type:object size:0x4 +SymStopAnims = .bss:0x8097F624; // type:object size:0x4 +SymStopAutoScroll = .bss:0x8097F628; // type:object size:0x8 +SymStopCrowdCloseup = .bss:0x8097F630; // type:object size:0x4 +SymStopDeploy = .bss:0x8097F634; // type:object size:0x4 +SymStopDeployTrig = .bss:0x8097F638; // type:object size:0x4 +SymStopMic = .bss:0x8097F63C; // type:object size:0x4 +SymStopMics = .bss:0x8097F640; // type:object size:0x4 +SymStopPlaybackAllMics = .bss:0x8097F644; // type:object size:0x8 +SymStopSearching = .bss:0x8097F64C; // type:object size:0x4 +SymStopSeq = .bss:0x8097F650; // type:object size:0x4 +SymStopSequence = .bss:0x8097F654; // type:object size:0x8 +SymStore = .bss:0x8097F65C; // type:object size:0xC data:4byte +SymStoreConfiguration = .bss:0x8097F668; // type:object size:0x8 +SymStoreDownloaded = .bss:0x8097F670; // type:object size:0x4 data:4byte +SymStoreErrorLiveServer = .bss:0x8097F674; // type:object size:0x4 data:4byte +SymStoreFamousBy = .bss:0x8097F678; // type:object size:0x4 data:4byte +SymStoreFocusComponent = .bss:0x8097F67C; // type:object size:0x8 +SymStoreLoadFailed = .bss:0x8097F684; // type:object size:0x4 data:4byte +SymStoreMode = .bss:0x8097F688; // type:object size:0x4 +SymStoreNew = .bss:0x8097F68C; // type:object size:0x4 data:4byte +SymStoreNextChunk = .bss:0x8097F690; // type:object size:0x4 data:4byte +SymStorePreviousChunk = .bss:0x8097F694; // type:object size:0x4 data:4byte +SymStorePurchased = .bss:0x8097F698; // type:object size:0x8 data:4byte +SymStoreReleaseDateFormat = .bss:0x8097F6A0; // type:object size:0x4 data:4byte +SymStoreUnavailable = .bss:0x8097F6A4; // type:object size:0x4 data:4byte +SymStoreUndo = .bss:0x8097F6A8; // type:object size:0x4 +SymStoreUpgradeAvailable = .bss:0x8097F6AC; // type:object size:0xC data:4byte +SymStoreVariousArtists = .bss:0x8097F6B8; // type:object size:0x4 data:4byte +SymStrands = .bss:0x8097F6BC; // type:object size:0x8 +SymStreak = .bss:0x8097F6C4; // type:object size:0x4 +SymStreakCountStatTrackerContribution = .bss:0x8097F6C8; // type:object size:0x4 data:4byte +SymStreakFocusTrackerExplanation = .bss:0x8097F6CC; // type:object size:0x8 data:4byte +SymStreakFocusTrackerProgress = .bss:0x8097F6D4; // type:object size:0x4 +SymStreakFocusTrackerProgress1 = .bss:0x8097F6D8; // type:object size:0x4 +SymStreakLengthMultiplier = .bss:0x8097F6DC; // type:object size:0x4 data:4byte +SymStreakMeter = .bss:0x8097F6E0; // type:object size:0x4 +SymStreakMeterOffset = .bss:0x8097F6E4; // type:object size:0x4 +SymStreakMeterTilt = .bss:0x8097F6E8; // type:object size:0x4 +SymStreakMultiplier = .bss:0x8097F6EC; // type:object size:0x4 +SymStreakMultiplierFmt = .bss:0x8097F6F0; // type:object size:0x4 data:4byte +SymStreakTrackerExplanation = .bss:0x8097F6F4; // type:object size:0x4 data:4byte +SymStreakTrackerProgress = .bss:0x8097F6F8; // type:object size:0x4 +SymStreakTrackerProgress1 = .bss:0x8097F6FC; // type:object size:0x4 +SymStream = .bss:0x8097F700; // type:object size:0x8 +SymStretch = .bss:0x8097F708; // type:object size:0x4 +SymStretchScale = .bss:0x8097F70C; // type:object size:0x4 +SymStrictAngDelta = .bss:0x8097F710; // type:object size:0x4 +SymStrictRadiusDelta = .bss:0x8097F714; // type:object size:0x4 +SymString = .bss:0x8097F718; // type:object size:0x4 data:4byte +SymString0 = .bss:0x8097F71C; // type:object size:0x4 +SymString0Fret = .bss:0x8097F720; // type:object size:0x4 +SymString1 = .bss:0x8097F724; // type:object size:0x4 +SymString1Fret = .bss:0x8097F728; // type:object size:0x4 +SymString2 = .bss:0x8097F72C; // type:object size:0x4 +SymString2Fret = .bss:0x8097F730; // type:object size:0x4 +SymString3 = .bss:0x8097F734; // type:object size:0x4 +SymString3Fret = .bss:0x8097F738; // type:object size:0x4 +SymString4 = .bss:0x8097F73C; // type:object size:0x4 +SymString4Fret = .bss:0x8097F740; // type:object size:0x4 +SymString5 = .bss:0x8097F744; // type:object size:0x4 +SymString5Fret = .bss:0x8097F748; // type:object size:0x4 +SymStringContainer = .bss:0x8097F74C; // type:object size:0x8 data:4byte +SymStrum = .bss:0x8097F754; // type:object size:0x4 +SymStrummedDown = .bss:0x8097F758; // type:object size:0x4 +SymStrummedUp = .bss:0x8097F75C; // type:object size:0xC +SymSubdirs = .bss:0x8097F768; // type:object size:0x4 +SymSubgenre = .bss:0x8097F76C; // type:object size:0x4 +SymSubsamples = .bss:0x8097F770; // type:object size:0x4 +SymSubwayVenues = .bss:0x8097F774; // type:object size:0x4 +SymSucceed = .bss:0x8097F778; // type:object size:0x4 +SymSuccess = .bss:0x8097F77C; // type:object size:0xC data:4byte +SymSuccessReward = .bss:0x8097F788; // type:object size:0x4 data:4byte +SymSuccessSymbol = .bss:0x8097F78C; // type:object size:0x4 data:4byte +SymSuperStreak = .bss:0x8097F790; // type:object size:0x4 +SymSupported = .bss:0x8097F794; // type:object size:0x4 data:4byte +SymSupportedEvents = .bss:0x8097F798; // type:object size:0x4 +SymSurfaceMat = .bss:0x8097F79C; // type:object size:0x4 +SymSurfaceMesh = .bss:0x8097F7A0; // type:object size:0x4 +SymSurfaceTexture = .bss:0x8097F7A4; // type:object size:0x8 +SymSustainGemsCount = .bss:0x8097F7AC; // type:object size:0x4 data:4byte +SymSustainGemsHitCompletely = .bss:0x8097F7B0; // type:object size:0x4 data:4byte +SymSustainGemsHitPartially = .bss:0x8097F7B4; // type:object size:0x4 data:4byte +SymSustainLevel = .bss:0x8097F7B8; // type:object size:0x4 +SymSustainMode = .bss:0x8097F7BC; // type:object size:0x4 +SymSustainRate = .bss:0x8097F7C0; // type:object size:0x4 +SymSwapLayers = .bss:0x8097F7C4; // type:object size:0x8 +SymSwing = .bss:0x8097F7CC; // type:object size:0x4 +SymSwitchToIndex = .bss:0x8097F7D0; // type:object size:0x4 +SymSwitchToNew = .bss:0x8097F7D4; // type:object size:0x4 +SymSym = .bss:0x8097F7D8; // type:object size:0xC data:4byte +SymSyncAnim = .bss:0x8097F7E4; // type:object size:0x4 +SymSyncColor = .bss:0x8097F7E8; // type:object size:0x4 +SymSyncColorFade = .bss:0x8097F7EC; // type:object size:0x4 +SymSyncGameTimer = .bss:0x8097F7F0; // type:object size:0x4 +SymSyncHarmScore = .bss:0x8097F7F4; // type:object size:0x8 +SymSyncObjects = .bss:0x8097F7FC; // type:object size:0x4 +SymSyncPlayMode = .bss:0x8097F800; // type:object size:0x4 +SymSyncScore = .bss:0x8097F804; // type:object size:0x4 +SymSyncScreen = .bss:0x8097F808; // type:object size:0x4 +SymSyncState = .bss:0x8097F80C; // type:object size:0x4 +SymSyncTilt = .bss:0x8097F810; // type:object size:0x8 +SymSyncType = .bss:0x8097F818; // type:object size:0x4 +SymSyncVolume = .bss:0x8097F81C; // type:object size:0x4 +SymSyncWithResource = .bss:0x8097F820; // type:object size:0x4 +SymSynth = .bss:0x8097F824; // type:object size:0x4 data:4byte +SymSynthSample = .bss:0x8097F828; // type:object size:0x4 +SymSystemMs = .bss:0x8097F82C; // type:object size:0x4 data:4byte +SymSystemUserBlocksFree = .bss:0x8097F830; // type:object size:0x4 +SymT = .bss:0x8097F834; // type:object size:0xC +SymTakePortrait = .bss:0x8097F840; // type:object size:0x4 +SymTambourine = .bss:0x8097F844; // type:object size:0x8 data:4byte +SymTarget = .bss:0x8097F84C; // type:object size:0x8 data:4byte +SymTargetObject = .bss:0x8097F854; // type:object size:0x8 +SymTargetProgress = .bss:0x8097F85C; // type:object size:0x4 data:4byte +SymTargetPtr = .bss:0x8097F860; // type:object size:0x4 +SymTargetRadius = .bss:0x8097F864; // type:object size:0x4 +SymTargetShadow = .bss:0x8097F868; // type:object size:0x8 +SymTargets = .bss:0x8097F870; // type:object size:0x2C +SymTeleport = .bss:0x8097F89C; // type:object size:0xC +SymTempo = .bss:0x8097F8A8; // type:object size:0x4 data:4byte +SymTempoSync = .bss:0x8097F8AC; // type:object size:0x4 data:4byte +SymTertiaryColor = .bss:0x8097F8B0; // type:object size:0x1C +SymTestAnimationTime = .bss:0x8097F8CC; // type:object size:0x8 +SymTestClip = .bss:0x8097F8D4; // type:object size:0x8 +SymTestColor = .bss:0x8097F8DC; // type:object size:0x8 +SymTestDelta = .bss:0x8097F8E4; // type:object size:0x4 +SymTestDisableElements = .bss:0x8097F8E8; // type:object size:0x4 +SymTestDrawGroups = .bss:0x8097F8EC; // type:object size:0x4 +SymTestEvent = .bss:0x8097F8F0; // type:object size:0x8 +SymTestGapSize = .bss:0x8097F8F8; // type:object size:0x4 +SymTestGridSpan = .bss:0x8097F8FC; // type:object size:0x4 +SymTestLightPreset1 = .bss:0x8097F900; // type:object size:0x4 +SymTestLightPreset2 = .bss:0x8097F904; // type:object size:0x4 +SymTestListState = .bss:0x8097F908; // type:object size:0x4 +SymTestMaterialTextures = .bss:0x8097F90C; // type:object size:0x4 +SymTestMode = .bss:0x8097F910; // type:object size:0x4 +SymTestMultiplier = .bss:0x8097F914; // type:object size:0x8 +SymTestNumData = .bss:0x8097F91C; // type:object size:0x4 +SymTestNumDisplay = .bss:0x8097F920; // type:object size:0xC +SymTestPrefab = .bss:0x8097F92C; // type:object size:0x10 +SymTestScroll = .bss:0x8097F93C; // type:object size:0x4 +SymTestScrollTime = .bss:0x8097F940; // type:object size:0x8 +SymTestTexturePaths = .bss:0x8097F948; // type:object size:0x4 +SymTestTextureSize = .bss:0x8097F94C; // type:object size:0x4 +SymTestTourEndingVenue = .bss:0x8097F950; // type:object size:0xC +SymTestWeight = .bss:0x8097F95C; // type:object size:0x4 +SymTestWithMic = .bss:0x8097F960; // type:object size:0x10 +SymTex = .bss:0x8097F970; // type:object size:0x4 +SymTexBlender = .bss:0x8097F974; // type:object size:0x4 +SymTexFile = .bss:0x8097F978; // type:object size:0x8 +SymTexPath = .bss:0x8097F980; // type:object size:0x8 +SymTexType = .bss:0x8097F988; // type:object size:0x8 +SymTexXfm = .bss:0x8097F990; // type:object size:0x4 +SymTexMovie = .bss:0x8097F994; // type:object size:0x4 +SymTexRenderer = .bss:0x8097F998; // type:object size:0x4 +SymText = .bss:0x8097F99C; // type:object size:0x4 +SymTextAlignment = .bss:0x8097F9A0; // type:object size:0x4 +SymTextColor = .bss:0x8097F9A4; // type:object size:0x4 +SymTextLabel = .bss:0x8097F9A8; // type:object size:0x4 data:4byte +SymTextObj = .bss:0x8097F9AC; // type:object size:0x4 +SymTextSize = .bss:0x8097F9B0; // type:object size:0x4 +SymTextToken = .bss:0x8097F9B4; // type:object size:0x4 +SymTextEntry = .bss:0x8097F9B8; // type:object size:0x4 +SymTexture = .bss:0x8097F9BC; // type:object size:0x4 +SymTextureOwner = .bss:0x8097F9C0; // type:object size:0x4 +SymTextureXfm = .bss:0x8097F9C4; // type:object size:0x4 +SymTextures = .bss:0x8097F9C8; // type:object size:0xC +SymThreshold = .bss:0x8097F9D4; // type:object size:0x4 +SymThumbBottomBone = .bss:0x8097F9D8; // type:object size:0x4 data:4byte +SymThumbGroup = .bss:0x8097F9DC; // type:object size:0x4 data:4byte +SymThumbTopBone = .bss:0x8097F9E0; // type:object size:0x8 data:4byte +SymTieWindow = .bss:0x8097F9E8; // type:object size:0x4 data:4byte +SymTier = .bss:0x8097F9EC; // type:object size:0x4 data:4byte +SymTilt = .bss:0x8097F9F0; // type:object size:0xC +SymTime = .bss:0x8097F9FC; // type:object size:0x4 +SymTimeBetween = .bss:0x8097FA00; // type:object size:0x4 +SymTimeEndUnits = .bss:0x8097FA04; // type:object size:0x4 data:4byte +SymTimeEndVal = .bss:0x8097FA08; // type:object size:0xC data:4byte +SymTimeLoop = .bss:0x8097FA14; // type:object size:0xC +SymTimeStamp = .bss:0x8097FA20; // type:object size:0x4 data:4byte +SymTimeTilNext = .bss:0x8097FA24; // type:object size:0x10 +SymTimesRevived = .bss:0x8097FA34; // type:object size:0x4 +SymTimesSaved = .bss:0x8097FA38; // type:object size:0x4 data:4byte +SymTitle = .bss:0x8097FA3C; // type:object size:0x8 +SymTitleLabel = .bss:0x8097FA44; // type:object size:0x4 data:4byte +SymTitleName = .bss:0x8097FA48; // type:object size:0x4 +SymTitles = .bss:0x8097FA4C; // type:object size:0x8 data:4byte +SymToggleAllChecked = .bss:0x8097FA54; // type:object size:0x4 +SymToggleAllPostprocs = .bss:0x8097FA58; // type:object size:0x4 +SymToggleAo = .bss:0x8097FA5C; // type:object size:0x4 +SymToggleAssetName = .bss:0x8097FA60; // type:object size:0x8 +SymToggleBlockLogin = .bss:0x8097FA68; // type:object size:0xC +SymToggleChecked = .bss:0x8097FA74; // type:object size:0x4 +SymToggleCymbal = .bss:0x8097FA78; // type:object size:0x8 +SymToggleDeploying = .bss:0x8097FA80; // type:object size:0x1C +SymToggleGuidePart = .bss:0x8097FA9C; // type:object size:0x4 +SymToggleHeap = .bss:0x8097FAA0; // type:object size:0x8 +SymToggleHihatPedal = .bss:0x8097FAA8; // type:object size:0x4 +SymToggleHud = .bss:0x8097FAAC; // type:object size:0x4 +SymToggleInGame = .bss:0x8097FAB0; // type:object size:0x4 +SymToggleInstrumentSynth = .bss:0x8097FAB4; // type:object size:0x10 +SymToggleLeftyFlip = .bss:0x8097FAC4; // type:object size:0x4 +SymToggleLightingEvents = .bss:0x8097FAC8; // type:object size:0x8 +SymToggleLockedCache = .bss:0x8097FAD0; // type:object size:0x4 +SymToggleLogging = .bss:0x8097FAD4; // type:object size:0x4 +SymToggleMetronome = .bss:0x8097FAD8; // type:object size:0x4 +SymToggleModifierEnabled = .bss:0x8097FADC; // type:object size:0x4 +SymToggleMuteMaster = .bss:0x8097FAE0; // type:object size:0x4 +SymToggleMuteStatus = .bss:0x8097FAE4; // type:object size:0x4 +SymToggleMuteUser = .bss:0x8097FAE8; // type:object size:0x8 +SymToggleNoFills = .bss:0x8097FAF0; // type:object size:0x4 +SymToggleNowbar = .bss:0x8097FAF4; // type:object size:0x8 +SymToggleOverlay = .bss:0x8097FAFC; // type:object size:0x4 +SymToggleOverlayPosition = .bss:0x8097FB00; // type:object size:0x8 +SymTogglePitched = .bss:0x8097FB08; // type:object size:0x8 +SymToggleRunning = .bss:0x8097FB10; // type:object size:0x8 +SymToggleShowParticle = .bss:0x8097FB18; // type:object size:0x8 +SymToggleSoloQuantize = .bss:0x8097FB20; // type:object size:0x4 +SymToggleSpotlight = .bss:0x8097FB24; // type:object size:0x4 +SymToggleSurface = .bss:0x8097FB28; // type:object size:0xC +SymToggleTimers = .bss:0x8097FB34; // type:object size:0x4 +SymToggleTimersVerbose = .bss:0x8097FB38; // type:object size:0xC +SymToggleVocalStyle = .bss:0x8097FB44; // type:object size:0x4 +SymToggleWiiSpeak = .bss:0x8097FB48; // type:object size:0x4 +SymToken = .bss:0x8097FB4C; // type:object size:0xC data:4byte +SymTokenRedemptionError = .bss:0x8097FB58; // type:object size:0x4 data:4byte +SymTokenRedemptionNotFound = .bss:0x8097FB5C; // type:object size:0x4 data:4byte +SymTokenRedemptionOtherPlayer = .bss:0x8097FB60; // type:object size:0x4 data:4byte +SymTokenRedemptionPurchased = .bss:0x8097FB64; // type:object size:0x4 data:4byte +SymTokenRedemptionReady = .bss:0x8097FB68; // type:object size:0x4 data:4byte +SymTokenRedemptionTooEarly = .bss:0x8097FB6C; // type:object size:0x4 data:4byte +SymTokenRedemptionTooLate = .bss:0x8097FB70; // type:object size:0x4 data:4byte +SymTokenRedemptionWrongPlatform = .bss:0x8097FB74; // type:object size:0x4 data:4byte +SymTolerance = .bss:0x8097FB78; // type:object size:0x8 +SymToneMap = .bss:0x8097FB80; // type:object size:0x4 +SymTonic = .bss:0x8097FB84; // type:object size:0x8C +SymTop = .bss:0x8097FC10; // type:object size:0x4 +SymTopBone = .bss:0x8097FC14; // type:object size:0x4 data:4byte +SymTopHeight = .bss:0x8097FC18; // type:object size:0x4 +SymTopLeftHighlightBone = .bss:0x8097FC1C; // type:object size:0x4 +SymTopOutliers = .bss:0x8097FC20; // type:object size:0x4 +SymTopRadius = .bss:0x8097FC24; // type:object size:0x4 +SymTopRightHighlightBone = .bss:0x8097FC28; // type:object size:0x4 +SymTopSideBorder = .bss:0x8097FC2C; // type:object size:0x4 +SymTopSleeve = .bss:0x8097FC30; // type:object size:0x4 +SymTopY = .bss:0x8097FC34; // type:object size:0x4 +SymTopleftBone = .bss:0x8097FC38; // type:object size:0x4 data:4byte +SymTopradius = .bss:0x8097FC3C; // type:object size:0x4 +SymToprightBone = .bss:0x8097FC40; // type:object size:0x4 data:4byte +SymTorsion = .bss:0x8097FC44; // type:object size:0x4 +SymTorso = .bss:0x8097FC48; // type:object size:0x4 +SymTotAwesomes = .bss:0x8097FC4C; // type:object size:0x4 data:4byte +SymTotBassHopos = .bss:0x8097FC50; // type:object size:0x4 data:4byte +SymTotDoubleAwesomes = .bss:0x8097FC54; // type:object size:0x4 data:4byte +SymTotGemsSmashed = .bss:0x8097FC58; // type:object size:0x4 data:4byte +SymTotGuitarHopos = .bss:0x8097FC5C; // type:object size:0x4 data:4byte +SymTotSaves = .bss:0x8097FC60; // type:object size:0x4 data:4byte +SymTotSongsPlayed = .bss:0x8097FC64; // type:object size:0x4 data:4byte +SymTotTimesRevived = .bss:0x8097FC68; // type:object size:0x4 data:4byte +SymTotTripleAwesomes = .bss:0x8097FC6C; // type:object size:0x4 data:4byte +SymTotUpstrums = .bss:0x8097FC70; // type:object size:0x4 data:4byte +SymTotal = .bss:0x8097FC74; // type:object size:0x4 +SymTotalAwesomes = .bss:0x8097FC78; // type:object size:0x4 +SymTotalBreHits = .bss:0x8097FC7C; // type:object size:0x4 +SymTotalDoubleAwesomes = .bss:0x8097FC80; // type:object size:0x4 +SymTotalDrumrolls = .bss:0x8097FC84; // type:object size:0x4 +SymTotalDuration = .bss:0x8097FC88; // type:object size:0x4 +SymTotalDurationSeconds = .bss:0x8097FC8C; // type:object size:0x4 +SymTotalGems = .bss:0x8097FC90; // type:object size:0x4 +SymTotalHopos = .bss:0x8097FC94; // type:object size:0x4 +SymTotalMultiplierDuration = .bss:0x8097FC98; // type:object size:0x4 data:4byte +SymTotalOdDuration = .bss:0x8097FC9C; // type:object size:0x4 data:4byte +SymTotalOverdriveDeploys = .bss:0x8097FCA0; // type:object size:0x4 +SymTotalOverdrivePhrases = .bss:0x8097FCA4; // type:object size:0x4 +SymTotalOverdriveTime = .bss:0x8097FCA8; // type:object size:0x4 +SymTotalProDrumrolls = .bss:0x8097FCAC; // type:object size:0x4 +SymTotalSaves = .bss:0x8097FCB0; // type:object size:0xC +SymTotalSongsPlayed = .bss:0x8097FCBC; // type:object size:0x4 +SymTotalStars = .bss:0x8097FCC0; // type:object size:0x4 +SymTotalTick = .bss:0x8097FCC4; // type:object size:0x4 +SymTotalTimesRevived = .bss:0x8097FCC8; // type:object size:0x4 +SymTotalTripleAwesomes = .bss:0x8097FCCC; // type:object size:0x4 +SymTotalUnisonPhrases = .bss:0x8097FCD0; // type:object size:0x4 +SymTotalUpstrums = .bss:0x8097FCD4; // type:object size:0x4 +SymTour = .bss:0x8097FCD8; // type:object size:0x4 data:4byte +SymTourCustomSong = .bss:0x8097FCDC; // type:object size:0x4 data:4byte +SymTourCustomizePostScreen = .bss:0x8097FCE0; // type:object size:0x4 +SymTourDescSongcount = .bss:0x8097FCE4; // type:object size:0x4 data:4byte +SymTourFinishedBronzeMedal = .bss:0x8097FCE8; // type:object size:0x4 data:4byte +SymTourFinishedGoldMedal = .bss:0x8097FCEC; // type:object size:0x4 data:4byte +SymTourFinishedNoMedal = .bss:0x8097FCF0; // type:object size:0x4 data:4byte +SymTourFinishedSilverMedal = .bss:0x8097FCF4; // type:object size:0x4 data:4byte +SymTourGigTotal = .bss:0x8097FCF8; // type:object size:0x4 data:4byte +SymTourGoalAccuracyGoalFormat = .bss:0x8097FCFC; // type:object size:0x4 data:4byte +SymTourGoalAccuracyPlayerContributionFormat = .bss:0x8097FD00; // type:object size:0x4 data:4byte +SymTourGoalAccuracyResultFormat = .bss:0x8097FD04; // type:object size:0x4 data:4byte +SymTourGoalBandPerfectSectionGoalFormat = .bss:0x8097FD08; // type:object size:0x4 data:4byte +SymTourGoalBandPerfectSectionResultFormat = .bss:0x8097FD0C; // type:object size:0x4 data:4byte +SymTourGoalBandPerfectSectionResultFormat1 = .bss:0x8097FD10; // type:object size:0x4 +SymTourGoalBandStreakGoalFormat = .bss:0x8097FD14; // type:object size:0x4 data:4byte +SymTourGoalBandStreakPlayerContributionFormat = .bss:0x8097FD18; // type:object size:0x8 data:4byte +SymTourGoalFocusGoalFormat = .bss:0x8097FD20; // type:object size:0x4 data:4byte +SymTourGoalFocusPlayerContributionFormat = .bss:0x8097FD24; // type:object size:0x4 data:4byte +SymTourGoalFocusResultFormat = .bss:0x8097FD28; // type:object size:0x4 data:4byte +SymTourGoalOdTimerGoalFormat = .bss:0x8097FD2C; // type:object size:0x4 data:4byte +SymTourGoalOdTimerResultFormat = .bss:0x8097FD30; // type:object size:0x4 data:4byte +SymTourInprogress = .bss:0x8097FD34; // type:object size:0x4 data:4byte +SymTourLocked = .bss:0x8097FD38; // type:object size:0x4 data:4byte +SymTourMostStars = .bss:0x8097FD3C; // type:object size:0x4 +SymTourQuestTypeTimesCompleted = .bss:0x8097FD40; // type:object size:0x4 +SymTourRandomSong = .bss:0x8097FD44; // type:object size:0x4 data:4byte +SymTourSetlistCustom = .bss:0x8097FD48; // type:object size:0x4 data:4byte +SymTourSetlistFixed = .bss:0x8097FD4C; // type:object size:0x4 data:4byte +SymTourSetlistRandom = .bss:0x8097FD50; // type:object size:0x4 data:4byte +SymTourShowPostSeldiffScreen = .bss:0x8097FD54; // type:object size:0x4 data:4byte +SymTourStarsBronzeGoal = .bss:0x8097FD58; // type:object size:0x4 data:4byte +SymTourStarsFractionFmt = .bss:0x8097FD5C; // type:object size:0x4 data:4byte +SymTourStarsGoldGoal = .bss:0x8097FD60; // type:object size:0x4 data:4byte +SymTourStarsSilverGoal = .bss:0x8097FD64; // type:object size:0x4 data:4byte +SymTourStarsSimpleFmt = .bss:0x8097FD68; // type:object size:0x4 data:4byte +SymTourTimesMaxedStars = .bss:0x8097FD6C; // type:object size:0x4 +SymTourTotSongsPlayed = .bss:0x8097FD70; // type:object size:0x4 data:4byte +SymTourTotalPlayed = .bss:0x8097FD74; // type:object size:0x4 +SymTourTotalSongsPlayed = .bss:0x8097FD78; // type:object size:0x4 +SymTourdescBronzeStarcountNeeded = .bss:0x8097FD7C; // type:object size:0x4 data:4byte +SymTourdescGoldStarcountNeeded = .bss:0x8097FD80; // type:object size:0x4 data:4byte +SymTourdescMaxStarcountNeeded = .bss:0x8097FD84; // type:object size:0x4 data:4byte +SymTourdescSilverStarcountNeeded = .bss:0x8097FD88; // type:object size:0x4 data:4byte +SymTourdescStarsNeeded = .bss:0x8097FD8C; // type:object size:0x14 data:4byte +SymTrack = .bss:0x8097FDA0; // type:object size:0x4 +SymTrackBottom = .bss:0x8097FDA4; // type:object size:0x8 +SymTrackEnv = .bss:0x8097FDAC; // type:object size:0x4 +SymTrackIn = .bss:0x8097FDB0; // type:object size:0x4 +SymTrackInNow = .bss:0x8097FDB4; // type:object size:0x4 +SymTrackLeft = .bss:0x8097FDB8; // type:object size:0x4 +SymTrackOut = .bss:0x8097FDBC; // type:object size:0x4 +SymTrackOutNow = .bss:0x8097FDC0; // type:object size:0x4 +SymTrackPitch = .bss:0x8097FDC4; // type:object size:0x4 +SymTrackReset = .bss:0x8097FDC8; // type:object size:0x4 +SymTrackRight = .bss:0x8097FDCC; // type:object size:0x4 +SymTrackTop = .bss:0x8097FDD0; // type:object size:0x18 +SymTrackerIntegerTarget = .bss:0x8097FDE8; // type:object size:0x4 data:4byte +SymTrackerPercentage = .bss:0x8097FDEC; // type:object size:0x4 data:4byte +SymTrackerPercentageMissing = .bss:0x8097FDF0; // type:object size:0x4 data:4byte +SymTrackerPercentageTarget = .bss:0x8097FDF4; // type:object size:0x4 data:4byte +SymTrackerTimeRemaining = .bss:0x8097FDF8; // type:object size:0x4 data:4byte +SymTrackerTimeTarget = .bss:0x8097FDFC; // type:object size:0x4 data:4byte +SymTracks = .bss:0x8097FE00; // type:object size:0x8 data:4byte +SymTrainer = .bss:0x8097FE08; // type:object size:0x4 data:4byte +SymTrainerDrums = .bss:0x8097FE0C; // type:object size:0x4 +SymTrainerProKeyboard = .bss:0x8097FE10; // type:object size:0x4 +SymTrainerProgress = .bss:0x8097FE14; // type:object size:0x4 data:4byte +SymTrainerProvider = .bss:0x8097FE18; // type:object size:0x4 +SymTrainerRealGuitar = .bss:0x8097FE1C; // type:object size:0x4 +SymTrainerVocals = .bss:0x8097FE20; // type:object size:0x4 +SymTrans = .bss:0x8097FE24; // type:object size:0x4 +SymTransConstraint = .bss:0x8097FE28; // type:object size:0x4 +SymTransGroup = .bss:0x8097FE2C; // type:object size:0x4 +SymTransParent = .bss:0x8097FE30; // type:object size:0x4 +SymTransTarget = .bss:0x8097FE34; // type:object size:0x4 +SymTransX = .bss:0x8097FE38; // type:object size:0x4 +SymTransY = .bss:0x8097FE3C; // type:object size:0x4 +SymTransZ = .bss:0x8097FE40; // type:object size:0x4 +SymTransfer = .bss:0x8097FE44; // type:object size:0x8 +SymTransitionCamshotDone = .bss:0x8097FE4C; // type:object size:0x4 +SymTransitionScreen = .bss:0x8097FE50; // type:object size:0x4 +SymTransitions = .bss:0x8097FE54; // type:object size:0x8 +SymTranspose = .bss:0x8097FE5C; // type:object size:0x4 data:4byte +SymTransposeSpread = .bss:0x8097FE60; // type:object size:0x4 +SymTriFrame = .bss:0x8097FE64; // type:object size:0x4 data:4byte +SymTrigger = .bss:0x8097FE68; // type:object size:0x4 data:4byte +SymTriggerDebugPool = .bss:0x8097FE6C; // type:object size:0x4 +SymTriggerDisbandEvent = .bss:0x8097FE70; // type:object size:0xC +SymTriggerEvent = .bss:0x8097FE7C; // type:object size:0x8 +SymTriggerMappings = .bss:0x8097FE84; // type:object size:0x4 +SymTriggerMessage = .bss:0x8097FE88; // type:object size:0x4 +SymTriggerOrder = .bss:0x8097FE8C; // type:object size:0x4 +SymTriggerPools = .bss:0x8097FE90; // type:object size:0x4 +SymTriggerSongCompletion = .bss:0x8097FE94; // type:object size:0x4 +SymTriggerSound = .bss:0x8097FE98; // type:object size:0x4 +SymTriggerpoolToCreatefor = .bss:0x8097FE9C; // type:object size:0x4 +SymTriggers = .bss:0x8097FEA0; // type:object size:0x4 +SymTriggersToReset = .bss:0x8097FEA4; // type:object size:0x4 +SymTrillCount = .bss:0x8097FEA8; // type:object size:0xC data:4byte +SymTrillsHitCompletely = .bss:0x8097FEB4; // type:object size:0x4 data:4byte +SymTrillsHitPartially = .bss:0x8097FEB8; // type:object size:0x4 data:4byte +SymTripleAwesomes = .bss:0x8097FEBC; // type:object size:0x4 +SymTripleHarmonyHit = .bss:0x8097FEC0; // type:object size:0x4 data:4byte +SymTripleHarmonyPhraseCount = .bss:0x8097FEC4; // type:object size:0x8 data:4byte +SymTubeStyle = .bss:0x8097FECC; // type:object size:0xC +SymTuningOffsetCents = .bss:0x8097FED8; // type:object size:0x4 data:4byte +SymTutReset = .bss:0x8097FEDC; // type:object size:0x4 +SymTutorial = .bss:0x8097FEE0; // type:object size:0x4 data:4byte +SymTutorialSeconds = .bss:0x8097FEE4; // type:object size:0x4 +SymTwist = .bss:0x8097FEE8; // type:object size:0x4 +SymTwist1 = .bss:0x8097FEEC; // type:object size:0x4 +SymTwist2 = .bss:0x8097FEF0; // type:object size:0x4 +SymTwoColor = .bss:0x8097FEF4; // type:object size:0x4 +SymTwoColorDiffuse = .bss:0x8097FEF8; // type:object size:0x4 +SymTwoColorInterp = .bss:0x8097FEFC; // type:object size:0x4 +SymTwoColorMask = .bss:0x8097FF00; // type:object size:0x4 +SymType = .bss:0x8097FF04; // type:object size:0x4 data:4byte +SymTypes = .bss:0x8097FF08; // type:object size:0x4 data:4byte +SymUgc = .bss:0x8097FF0C; // type:object size:0x4 data:4byte +SymUgcPlus = .bss:0x8097FF10; // type:object size:0xC +SymUiDeltaSeconds = .bss:0x8097FF1C; // type:object size:0x4 +SymUiEnterBack = .bss:0x8097FF20; // type:object size:0x4 data:4byte +SymUiEnterForward = .bss:0x8097FF24; // type:object size:0x4 data:4byte +SymUiExitBack = .bss:0x8097FF28; // type:object size:0x4 data:4byte +SymUiExitForward = .bss:0x8097FF2C; // type:object size:0x4 data:4byte +SymUiSeconds = .bss:0x8097FF30; // type:object size:0x4 +SymUiPanel = .bss:0x8097FF34; // type:object size:0x4 +SymUlidTrackDown = .bss:0x8097FF38; // type:object size:0x4 +SymUlidTrackUp = .bss:0x8097FF3C; // type:object size:0x4 +SymUnChoose = .bss:0x8097FF40; // type:object size:0x8 +SymUndiesDirty = .bss:0x8097FF48; // type:object size:0x4 +SymUndo = .bss:0x8097FF4C; // type:object size:0x4 +SymUndoHandledBy = .bss:0x8097FF50; // type:object size:0x4 +SymUnexpected = .bss:0x8097FF54; // type:object size:0x4 data:4byte +SymUnfocusedBackgroundGroup = .bss:0x8097FF58; // type:object size:0x4 +SymUnhandled = .bss:0x8097FF5C; // type:object size:0x14 data:4byte +SymUnison = .bss:0x8097FF70; // type:object size:0x4 data:4byte +SymUnisonEnd = .bss:0x8097FF74; // type:object size:0x8 +SymUnisonPercent = .bss:0x8097FF7C; // type:object size:0x4 +SymUnisonPhraseCount = .bss:0x8097FF80; // type:object size:0x4 data:4byte +SymUnisonPhrases = .bss:0x8097FF84; // type:object size:0x4 +SymUnisonPhrasesCompleted = .bss:0x8097FF88; // type:object size:0x4 data:4byte +SymUnisonStatTrackerContribution = .bss:0x8097FF8C; // type:object size:0x4 data:4byte +SymUnisonSucceed = .bss:0x8097FF90; // type:object size:0x4 +SymUnisonTrio = .bss:0x8097FF94; // type:object size:0x4 +SymUnitizeNormals = .bss:0x8097FF98; // type:object size:0x4 +SymUnits = .bss:0x8097FF9C; // type:object size:0x4 data:4byte +SymUnitsToken = .bss:0x8097FFA0; // type:object size:0x4 data:4byte +SymUnitsTokenSingular = .bss:0x8097FFA4; // type:object size:0x4 data:4byte +SymUnknown = .bss:0x8097FFA8; // type:object size:0x4 data:4byte +SymUnknownSong = .bss:0x8097FFAC; // type:object size:0x4 data:4byte +SymUnload = .bss:0x8097FFB0; // type:object size:0x8 +SymUnloadAsync = .bss:0x8097FFB8; // type:object size:0x4 data:4byte +SymUnloadPortraits = .bss:0x8097FFBC; // type:object size:0x4 +SymUnloadVenue = .bss:0x8097FFC0; // type:object size:0x4 +SymUnlockAllSongs = .bss:0x8097FFC4; // type:object size:0x4 +SymUnlockModifier = .bss:0x8097FFC8; // type:object size:0x8 +SymUnlockedFacePaint = .bss:0x8097FFD0; // type:object size:0x4 +SymUnlockedTattoos = .bss:0x8097FFD4; // type:object size:0x4 +SymUnmount = .bss:0x8097FFD8; // type:object size:0x4 +SymUnmute = .bss:0x8097FFDC; // type:object size:0x8 +SymUnparticipateUsers = .bss:0x8097FFE4; // type:object size:0x4 +SymUnpause = .bss:0x8097FFE8; // type:object size:0x4 +SymUnpauseGuideTrack = .bss:0x8097FFEC; // type:object size:0x8 +SymUnquote = .bss:0x8097FFF4; // type:object size:0x4 +SymUnregisterFocus = .bss:0x8097FFF8; // type:object size:0x4 +SymUnreviewed = .bss:0x8097FFFC; // type:object size:0x4 data:4byte +SymUnselect = .bss:0x80980000; // type:object size:0x4 +SymUnsetLoadedDir = .bss:0x80980004; // type:object size:0x4 +SymUp = .bss:0x80980008; // type:object size:0x4 +SymUpdate = .bss:0x8098000C; // type:object size:0x4 +SymUpdateAll = .bss:0x80980010; // type:object size:0x4 +SymUpdateAllMicLevels = .bss:0x80980014; // type:object size:0x4 +SymUpdateAssetProvider = .bss:0x80980018; // type:object size:0x4 +SymUpdateBattleInstarankHighscore1Label = .bss:0x8098001C; // type:object size:0x4 +SymUpdateBattleInstarankHighscore2Label = .bss:0x80980020; // type:object size:0x8 +SymUpdateBattleTypeLabel = .bss:0x80980028; // type:object size:0x8 +SymUpdateCharCache = .bss:0x80980030; // type:object size:0x4 +SymUpdateCharacterFromCharList = .bss:0x80980034; // type:object size:0x4 +SymUpdateCharacterFromStandinList = .bss:0x80980038; // type:object size:0x4 +SymUpdateCharacterList = .bss:0x8098003C; // type:object size:0x8 +SymUpdateConfiguration = .bss:0x80980044; // type:object size:0x4 +SymUpdateCurrentMajorLevelIcon = .bss:0x80980048; // type:object size:0x4 +SymUpdateDetails = .bss:0x8098004C; // type:object size:0x8 +SymUpdateEndgameInfo = .bss:0x80980054; // type:object size:0x4 +SymUpdateExcitement = .bss:0x80980058; // type:object size:0x4 +SymUpdateFinished = .bss:0x8098005C; // type:object size:0x4 +SymUpdateFinishedMedalLabel = .bss:0x80980060; // type:object size:0x8 +SymUpdateFromProfile = .bss:0x80980068; // type:object size:0x8 +SymUpdateGems = .bss:0x80980070; // type:object size:0x4 +SymUpdateGuideTrack = .bss:0x80980074; // type:object size:0x4 +SymUpdateGuitarFx = .bss:0x80980078; // type:object size:0x4 +SymUpdateHeaderLabel = .bss:0x8098007C; // type:object size:0x8 +SymUpdateInstarankHighscore1Label = .bss:0x80980084; // type:object size:0x4 +SymUpdateInstarankHighscore2Label = .bss:0x80980088; // type:object size:0x8 +SymUpdateInstarankRankLabel = .bss:0x80980090; // type:object size:0x4 +SymUpdateInstarankSoloHighscore1Label = .bss:0x80980094; // type:object size:0x4 +SymUpdateInstarankSoloHighscore2Label = .bss:0x80980098; // type:object size:0x8 +SymUpdateInstarankSoloRankLabel = .bss:0x809800A0; // type:object size:0x4 +SymUpdateJoinInProgress = .bss:0x809800A4; // type:object size:0x4 +SymUpdateKickUsersList = .bss:0x809800A8; // type:object size:0x4 +SymUpdateLeaderboard = .bss:0x809800AC; // type:object size:0x4 +SymUpdateLeftyFlip = .bss:0x809800B0; // type:object size:0x8 +SymUpdateMakeupProvider = .bss:0x809800B8; // type:object size:0x4 +SymUpdateMetaPerformer = .bss:0x809800BC; // type:object size:0x4 data:4byte +SymUpdateMicLevels = .bss:0x809800C0; // type:object size:0x4 +SymUpdateMostStars = .bss:0x809800C4; // type:object size:0x4 +SymUpdateMuteUsersList = .bss:0x809800C8; // type:object size:0x4 +SymUpdateNameLabel = .bss:0x809800CC; // type:object size:0x4 +SymUpdateNewAssetProvider = .bss:0x809800D0; // type:object size:0x4 +SymUpdateNextMajorLevelIcon = .bss:0x809800D4; // type:object size:0x4 +SymUpdateNextMedalLabel = .bss:0x809800D8; // type:object size:0xC +SymUpdatePartSelectList = .bss:0x809800E4; // type:object size:0x4 +SymUpdatePrimaryCurrentMajorLevelIcon = .bss:0x809800E8; // type:object size:0x4 +SymUpdatePrimaryNextMajorLevelIcon = .bss:0x809800EC; // type:object size:0x4 +SymUpdatePrimaryProgressMeter = .bss:0x809800F0; // type:object size:0x8 +SymUpdateProgressMeter = .bss:0x809800F8; // type:object size:0x4 +SymUpdateProgressWithCareerData = .bss:0x809800FC; // type:object size:0x4 +SymUpdateQuestGoalLabel = .bss:0x80980100; // type:object size:0x4 +SymUpdateQuestResultLabel = .bss:0x80980104; // type:object size:0x4 +SymUpdateReasonForAward = .bss:0x80980108; // type:object size:0x4 +SymUpdateReview = .bss:0x8098010C; // type:object size:0x4 +SymUpdateSetlistLabel = .bss:0x80980110; // type:object size:0x4 +SymUpdateSongname = .bss:0x80980114; // type:object size:0x4 +SymUpdateSphere = .bss:0x80980118; // type:object size:0xC +SymUpdateTitle = .bss:0x80980124; // type:object size:0x4 +SymUpdateTitleAndContents = .bss:0x80980128; // type:object size:0x4 +SymUpdateTourDisplay = .bss:0x8098012C; // type:object size:0x4 data:4byte +SymUpdateTourPlayerContributionLabel = .bss:0x80980130; // type:object size:0x10 +SymUpdateVocalStyle = .bss:0x80980140; // type:object size:0x4 +SymUpdatedTitleAndContents = .bss:0x80980144; // type:object size:0x4 +SymUpgrade = .bss:0x80980148; // type:object size:0x4 +SymUpgradeDownloaded = .bss:0x8098014C; // type:object size:0x8 +SymUpgradeInLibrary = .bss:0x80980154; // type:object size:0x4 +SymUpgradePurchased = .bss:0x80980158; // type:object size:0x4 +SymUpgradeVersion = .bss:0x8098015C; // type:object size:0x14 data:4byte +SymUploadDebugStats = .bss:0x80980170; // type:object size:0x30 +SymUpperArm = .bss:0x809801A0; // type:object size:0x4 +SymUpperCaseAZ = .bss:0x809801A4; // type:object size:0x4 +SymUpperEuro = .bss:0x809801A8; // type:object size:0x4 +SymUpperFreq = .bss:0x809801AC; // type:object size:0x4 +SymUpperLid = .bss:0x809801B0; // type:object size:0x4 +SymUpperLidBlink = .bss:0x809801B4; // type:object size:0x4 +SymUpstrumPercent = .bss:0x809801B8; // type:object size:0x4 +SymUpstrumPercentStatTrackerContribution = .bss:0x809801BC; // type:object size:0x4 data:4byte +SymUpstrumStatTrackerContribution = .bss:0x809801C0; // type:object size:0x8 data:4byte +SymUseColorAdjust = .bss:0x809801C8; // type:object size:0x4 +SymUseConnectedControllers = .bss:0x809801CC; // type:object size:0x8 +SymUseDepthOfField = .bss:0x809801D4; // type:object size:0x4 +SymUseFreeCam = .bss:0x809801D8; // type:object size:0x4 +SymUseHighlightMesh = .bss:0x809801DC; // type:object size:0x4 +SymUseJoypad = .bss:0x809801E0; // type:object size:0x8 +SymUseMicStandClips = .bss:0x809801E8; // type:object size:0x4 +SymUseMidiMode = .bss:0x809801EC; // type:object size:0x4 data:4byte +SymUseParentRotation = .bss:0x809801F0; // type:object size:0xC +SymUseRealtimeGaps = .bss:0x809801FC; // type:object size:0xC +SymUseSpecifiedCam = .bss:0x80980208; // type:object size:0x4 +SymUser = .bss:0x8098020C; // type:object size:0x4 +SymUserBlocksFree = .bss:0x80980210; // type:object size:0x4 +SymUserBlocksNeeded = .bss:0x80980214; // type:object size:0x4 +SymUserCanDoInput = .bss:0x80980218; // type:object size:0x4 +SymUserHasOnlinePrivilege = .bss:0x8098021C; // type:object size:0x8 +SymUsids = .bss:0x80980224; // type:object size:0x14 data:4byte +SymUv = .bss:0x80980238; // type:object size:0x8 +SymValidPracticeSections = .bss:0x80980240; // type:object size:0xC +SymValue = .bss:0x8098024C; // type:object size:0x8 +SymValueFromFrame = .bss:0x80980254; // type:object size:0x4 +SymValueFromIndex = .bss:0x80980258; // type:object size:0x4 +SymVanVenues = .bss:0x8098025C; // type:object size:0x4 +SymVar = .bss:0x80980260; // type:object size:0x4 data:4byte +SymVariableBlendPct = .bss:0x80980264; // type:object size:0x14 +SymVenue = .bss:0x80980278; // type:object size:0x8 data:4byte +SymVenues = .bss:0x80980280; // type:object size:0x8 data:4byte +SymVenuesVideo = .bss:0x80980288; // type:object size:0xC data:4byte +SymVerifyBandName = .bss:0x80980294; // type:object size:0x4 +SymVerifyCharName = .bss:0x80980298; // type:object size:0x8 +SymVerse = .bss:0x809802A0; // type:object size:0x4 data:4byte +SymVersion = .bss:0x809802A4; // type:object size:0x4 data:4byte +SymVert = .bss:0x809802A8; // type:object size:0x4 +SymVertical = .bss:0x809802AC; // type:object size:0x4 +SymVerticalStretch = .bss:0x809802B0; // type:object size:0x4 +SymVerts = .bss:0x809802B4; // type:object size:0x8 +SymVideoEnable = .bss:0x809802BC; // type:object size:0x4 +SymVideoVenuePostproc = .bss:0x809802C0; // type:object size:0x4 +SymVideoVenues = .bss:0x809802C4; // type:object size:0x8 data:4byte +SymView = .bss:0x809802CC; // type:object size:0x4 +SymViewDirection = .bss:0x809802D0; // type:object size:0x4 +SymViewFreeze = .bss:0x809802D4; // type:object size:0x4 +SymViewKeyframe = .bss:0x809802D8; // type:object size:0x4 +SymViewSetlists = .bss:0x809802DC; // type:object size:0x4 data:4byte +SymViewSetlistsByLine = .bss:0x809802E0; // type:object size:0x4 data:4byte +SymViewSettingsProvider = .bss:0x809802E4; // type:object size:0x4 +SymViewSongs = .bss:0x809802E8; // type:object size:0x4 data:4byte +SymViewSongsByLine = .bss:0x809802EC; // type:object size:0x4 data:4byte +SymViewTimeEasy = .bss:0x809802F0; // type:object size:0x4 +SymViewTimeExpert = .bss:0x809802F4; // type:object size:0x8 +SymViewingSetlists = .bss:0x809802FC; // type:object size:0x8 +SymVignette = .bss:0x80980304; // type:object size:0x4 data:4byte +SymVignetteColor = .bss:0x80980308; // type:object size:0x4 +SymVignetteIntensity = .bss:0x8098030C; // type:object size:0x4 +SymVignetteOutroDone = .bss:0x80980310; // type:object size:0x8 +SymVignettes = .bss:0x80980318; // type:object size:0x4 data:4byte +SymVignetteviewerHiddenTitle = .bss:0x8098031C; // type:object size:0x8 +SymVocalGender = .bss:0x80980324; // type:object size:0x4 data:4byte +SymVocalHarmonyPrototype = .bss:0x80980328; // type:object size:0x4 +SymVocalPartMesh = .bss:0x8098032C; // type:object size:0x4 data:4byte +SymVocalPart1Mat = .bss:0x80980330; // type:object size:0x4 data:4byte +SymVocalPart2Mat = .bss:0x80980334; // type:object size:0x4 data:4byte +SymVocalPart3Mat = .bss:0x80980338; // type:object size:0x4 data:4byte +SymVocalParts = .bss:0x8098033C; // type:object size:0x4 data:4byte +SymVocalPercussion = .bss:0x80980340; // type:object size:0x8 +SymVocalTonicNote = .bss:0x80980348; // type:object size:0x8 data:4byte +SymVocals = .bss:0x80980350; // type:object size:0x4 data:4byte +SymVocalsConnectAMic = .bss:0x80980354; // type:object size:0x4 data:4byte +SymVocalsGrid = .bss:0x80980358; // type:object size:0x4 data:4byte +SymVocalsMicsDisconnected = .bss:0x8098035C; // type:object size:0x4 data:4byte +SymVocalsNet = .bss:0x80980360; // type:object size:0x4 +SymVoiceChatDisabled = .bss:0x80980364; // type:object size:0x4 data:4byte +SymVols = .bss:0x80980368; // type:object size:0x4 data:4byte +SymVolume = .bss:0x8098036C; // type:object size:0x4 data:4byte +SymVolumeSpread = .bss:0x80980370; // type:object size:0x4 +SymVoxConfiguration = .bss:0x80980374; // type:object size:0x4 +SymVoxRating0 = .bss:0x80980378; // type:object size:0x4 data:4byte +SymVoxRating1 = .bss:0x8098037C; // type:object size:0x4 data:4byte +SymVoxRating2 = .bss:0x80980380; // type:object size:0x4 data:4byte +SymVoxRating3 = .bss:0x80980384; // type:object size:0x4 data:4byte +SymVoxRating4 = .bss:0x80980388; // type:object size:0x4 data:4byte +SymVoxRating5 = .bss:0x8098038C; // type:object size:0x4 data:4byte +SymVoxRating6 = .bss:0x80980390; // type:object size:0x4 data:4byte +SymW = .bss:0x80980394; // type:object size:0x4 +SymWait = .bss:0x80980398; // type:object size:0x4 data:4byte +SymWaitFor = .bss:0x8098039C; // type:object size:0x4 data:4byte +SymWaitForEventReceived = .bss:0x809803A0; // type:object size:0x4 data:4byte +SymWaitSpread = .bss:0x809803A4; // type:object size:0x4 +SymWaitTimeout = .bss:0x809803A8; // type:object size:0x4 +SymWaiting = .bss:0x809803AC; // type:object size:0x8 data:4byte +SymWantCoda = .bss:0x809803B4; // type:object size:0x4 +SymWarnOnResort = .bss:0x809803B8; // type:object size:0x4 +SymWasNeverBad = .bss:0x809803BC; // type:object size:0x4 +SymWav = .bss:0x809803C0; // type:object size:0xC +SymWeight = .bss:0x809803CC; // type:object size:0x4 data:4byte +SymWeightOwner = .bss:0x809803D0; // type:object size:0x4 +SymWeightYawSpeed = .bss:0x809803D4; // type:object size:0x4 +SymWeights = .bss:0x809803D8; // type:object size:0x4 +SymWentBack = .bss:0x809803DC; // type:object size:0x4 +SymWetGain = .bss:0x809803E0; // type:object size:0x4 data:4byte +SymWhite = .bss:0x809803E4; // type:object size:0x8 +SymWhitePoint = .bss:0x809803EC; // type:object size:0xC +SymWidgetDrawType = .bss:0x809803F8; // type:object size:0x8 +SymWidth = .bss:0x80980400; // type:object size:0x10 +SymWiiDwcError1 = .bss:0x80980410; // type:object size:0x4 data:4byte +SymWiiDwcError10 = .bss:0x80980414; // type:object size:0x4 data:4byte +SymWiiDwcError2 = .bss:0x80980418; // type:object size:0x4 data:4byte +SymWiiDwcError3 = .bss:0x8098041C; // type:object size:0x4 data:4byte +SymWiiDwcError4 = .bss:0x80980420; // type:object size:0x4 data:4byte +SymWiiDwcError5 = .bss:0x80980424; // type:object size:0x4 data:4byte +SymWiiDwcError6 = .bss:0x80980428; // type:object size:0x4 data:4byte +SymWiiDwcError7 = .bss:0x8098042C; // type:object size:0x4 data:4byte +SymWiiDwcError8 = .bss:0x80980430; // type:object size:0x4 data:4byte +SymWiiDwcError9 = .bss:0x80980434; // type:object size:0x4 data:4byte +SymWiiErrorCode = .bss:0x80980438; // type:object size:0x4 data:4byte +SymWiiErrorNandWorn = .bss:0x8098043C; // type:object size:0x4 data:4byte +SymWiiErrorWc2401 = .bss:0x80980440; // type:object size:0x4 data:4byte +SymWiiErrorWc2402 = .bss:0x80980444; // type:object size:0x4 data:4byte +SymWiiErrorWc2403 = .bss:0x80980448; // type:object size:0x4 data:4byte +SymWiiErrorWc2404 = .bss:0x8098044C; // type:object size:0x4 data:4byte +SymWiiFriendsDefaultSetlistDescription = .bss:0x80980450; // type:object size:0x4 data:4byte +SymWiiFriendsDefaultSetlistName = .bss:0x80980454; // type:object size:0x8 data:4byte +SymWiiFriendsInviteReceived = .bss:0x8098045C; // type:object size:0x4 data:4byte +SymWiiFriendsInviteStatusReceived = .bss:0x80980460; // type:object size:0x4 data:4byte +SymWiiFriendsInviteStatusSent = .bss:0x80980464; // type:object size:0x4 data:4byte +SymWiiFriendsName = .bss:0x80980468; // type:object size:0x4 data:4byte +SymWiiFriendsNameMixedCase = .bss:0x8098046C; // type:object size:0x4 data:4byte +SymWiiFriendsStatusChannel = .bss:0x80980470; // type:object size:0x4 data:4byte +SymWiiFriendsStatusInSession = .bss:0x80980474; // type:object size:0x4 data:4byte +SymWiiFriendsStatusLoading = .bss:0x80980478; // type:object size:0x4 data:4byte +SymWiiFriendsStatusOffline = .bss:0x8098047C; // type:object size:0x4 data:4byte +SymWiiFriendsStatusOnline = .bss:0x80980480; // type:object size:0x18 +SymWiiprofileCreateErrorNewlyProfane = .bss:0x80980498; // type:object size:0x4 data:4byte +SymWiiprofileCreatenew = .bss:0x8098049C; // type:object size:0x4 data:4byte +SymWiiprofileGuest = .bss:0x809804A0; // type:object size:0x8 data:4byte +SymWin = .bss:0x809804A8; // type:object size:0x4 +SymWinMetric = .bss:0x809804AC; // type:object size:0x4 +SymWind = .bss:0x809804B0; // type:object size:0x4 +SymWindOwner = .bss:0x809804B4; // type:object size:0x10 +SymWorldEvent = .bss:0x809804C4; // type:object size:0xC +SymWorldPause = .bss:0x809804D0; // type:object size:0x4 +SymWorldUnpause = .bss:0x809804D4; // type:object size:0x4 +SymWorldFx = .bss:0x809804D8; // type:object size:0x4 data:4byte +SymWorldInstance = .bss:0x809804DC; // type:object size:0x4 +SymWorldObject = .bss:0x809804E0; // type:object size:0x4 data:4byte +SymWorstCase = .bss:0x809804E4; // type:object size:0x4 +SymWrapWidth = .bss:0x809804E8; // type:object size:0x4 +SymWrapperText = .bss:0x809804EC; // type:object size:0x4 +SymWrist = .bss:0x809804F0; // type:object size:0x4 +SymWristRadians = .bss:0x809804F4; // type:object size:0x18 +SymX = .bss:0x8098050C; // type:object size:0x4 +SymXOffset = .bss:0x80980510; // type:object size:0x18 +SymXlspFilter = .bss:0x80980528; // type:object size:0x4 data:4byte +SymXlspServiceId = .bss:0x8098052C; // type:object size:0x4 data:4byte +SymXsection = .bss:0x80980530; // type:object size:0x8 +SymXy = .bss:0x80980538; // type:object size:0x4 +SymY = .bss:0x8098053C; // type:object size:0x4 +SymYFov = .bss:0x80980540; // type:object size:0x4 data:4byte +SymYOffset = .bss:0x80980544; // type:object size:0x4 +SymYPerSecond = .bss:0x80980548; // type:object size:0x4 +SymYRadius = .bss:0x8098054C; // type:object size:0xC +SymYawHigh = .bss:0x80980558; // type:object size:0x8 +SymYawLow = .bss:0x80980560; // type:object size:0x4 +SymYearFormat = .bss:0x80980564; // type:object size:0x4 data:4byte +SymYearRecorded = .bss:0x80980568; // type:object size:0x4 data:4byte +SymYearReleased = .bss:0x8098056C; // type:object size:0x4 data:4byte +SymYellow = .bss:0x80980570; // type:object size:0x8 +SymZ = .bss:0x80980578; // type:object size:0x8 +SymZOffset = .bss:0x80980580; // type:object size:0x4 +SymZRange = .bss:0x80980584; // type:object size:0x8 +SymZeroLength = .bss:0x8098058C; // type:object size:0x4 +SymZeroSphere = .bss:0x80980590; // type:object size:0x4 +SymZeroTime = .bss:0x80980594; // type:object size:0xC +SymZoomFov = .bss:0x809805A0; // type:object size:0xC +SymZw = .bss:0x809805AC; // type:object size:0x8 +SymSinks = .bss:0x809805B4; // type:object size:0x4 +SymObj = .bss:0x809805B8; // type:object size:0x4 +SymEventSinks = .bss:0x809805BC; // type:object size:0x4 +SymHandler = .bss:0x809805C0; // type:object size:0x4 +SymProfilePreDeleteMsg = .bss:0x809805C4; // type:object size:0x4 data:4byte +SymGetGender = .bss:0x809805C8; // type:object size:0x4 +SymGetColorPalette = .bss:0x809805CC; // type:object size:0x4 +SymGetCurrentColor = .bss:0x809805D0; // type:object size:0x4 +SymPreviewColor = .bss:0x809805D4; // type:object size:0xC +SymSetAutohide = .bss:0x809805E0; // type:object size:0x4 +SymShowChoosePartWait = .bss:0x809805E4; // type:object size:0x4 +SymGetCurrentFilterName = .bss:0x809805E8; // type:object size:0x8 +SymGetCriticalUser = .bss:0x809805F0; // type:object size:0x4 +SymHasCheated = .bss:0x809805F4; // type:object size:0x4 +SymTrainerProDrums = .bss:0x809805F8; // type:object size:0x4 +SymIsCharacterLoading = .bss:0x809805FC; // type:object size:0x4 +SymSetCurrentOutfitPiece = .bss:0x80980600; // type:object size:0x4 +SymFinalizeChanges = .bss:0x80980604; // type:object size:0x4 +SymFinalizedColors = .bss:0x80980608; // type:object size:0x4 +SymHasTransitionEvent = .bss:0x8098060C; // type:object size:0x1C +SymUseSaveValue = .bss:0x80980628; // type:object size:0x4 data:4byte +SymBias = .bss:0x8098062C; // type:object size:0x4 +SymInClothingState = .bss:0x80980630; // type:object size:0x4 +SymPadLost = .bss:0x80980634; // type:object size:0x4 data:4byte +SymRemoteTrackerPlayerProgress = .bss:0x80980638; // type:object size:0x4 +SymPartLaunchers = .bss:0x8098063C; // type:object size:0x4 +SymHasDialogEvent = .bss:0x80980640; // type:object size:0x20 +SymResourceMat = .bss:0x80980660; // type:object size:0x4 +SymWrinkleBlender = .bss:0x80980664; // type:object size:0x4 +SymSetForceSelectProxiedSubparts = .bss:0x80980668; // type:object size:0x4 +SymGetForceSelectProxiedSubparts = .bss:0x8098066C; // type:object size:0x8 +SymArtId = .bss:0x80980674; // type:object size:0x4 data:4byte +SymAllowInputPerformanceMode = .bss:0x80980678; // type:object size:0x4 data:4byte +SymHasBattleHighscore = .bss:0x8098067C; // type:object size:0x4 +SymGetSoloScoreTypeIcon = .bss:0x80980680; // type:object size:0x4 +SymGotoShot = .bss:0x80980684; // type:object size:0x4 +SymWeeks = .bss:0x80980688; // type:object size:0x4 +SymHours = .bss:0x8098068C; // type:object size:0x4 +SymMinutes = .bss:0x80980690; // type:object size:0x4 +SymSetExpirationUnitsCheat = .bss:0x80980694; // type:object size:0x4 +SymSetExpirationValCheat = .bss:0x80980698; // type:object size:0x4 +SymTourGoalBandStreakPlayerContributionFormat1 = .bss:0x8098069C; // type:object size:0x4 data:4byte +SymTickEvery = .bss:0x809806A0; // type:object size:0x4 +SymTickTrigger = .bss:0x809806A4; // type:object size:0x20 +SymAreCurrentFiltersValid = .bss:0x809806C4; // type:object size:0x4 +SymCustomizeNew = .bss:0x809806C8; // type:object size:0x4 data:4byte +SymDisabledAlphaScale = .bss:0x809806CC; // type:object size:0x4 +SymFill = .bss:0x809806D0; // type:object size:0x4 data:4byte +SymFinalizeBodyChanges = .bss:0x809806D4; // type:object size:0x4 +SymFinalizeCharCreatorChanges = .bss:0x809806D8; // type:object size:0x4 +SymGetBattleTimeLeft = .bss:0x809806DC; // type:object size:0x4 +SymHasValidBandScore = .bss:0x809806E0; // type:object size:0x4 +SymHasValidUserScore = .bss:0x809806E4; // type:object size:0x4 +SymHideClothes = .bss:0x809806E8; // type:object size:0x4 +SymLaunchFilter = .bss:0x809806EC; // type:object size:0x4 data:4byte +SymLaunchPartDifficultySym = .bss:0x809806F0; // type:object size:0x4 data:4byte +SymLbGlobal = .bss:0x809806F4; // type:object size:0x4 data:4byte +SymPollMaster = .bss:0x809806F8; // type:object size:0x4 +SymSetSongCount = .bss:0x809806FC; // type:object size:0x4 +SymSharedGroup = .bss:0x80980700; // type:object size:0x4 +SymShowClothes = .bss:0x80980704; // type:object size:0x24 +SymAllSetlistSongsHaveScoreType = .bss:0x80980728; // type:object size:0x4 +SymEnergyReady = .bss:0x8098072C; // type:object size:0x4 +SymFillLane1Anim = .bss:0x80980730; // type:object size:0x4 +SymFillLane2Anim = .bss:0x80980734; // type:object size:0x4 +SymFillLane3Anim = .bss:0x80980738; // type:object size:0x4 +SymFillLane4Anim = .bss:0x8098073C; // type:object size:0x4 +SymHasPlayer = .bss:0x80980740; // type:object size:0x4 +SymHasRemoteUsers = .bss:0x80980744; // type:object size:0x4 +SymLeftLabel = .bss:0x80980748; // type:object size:0x4 data:4byte +SymLlidTrackRotate = .bss:0x8098074C; // type:object size:0x4 +SymRequiredPaddingOverride = .bss:0x80980750; // type:object size:0x4 data:4byte +SymRightLabel = .bss:0x80980754; // type:object size:0x4 data:4byte +SymSetDefaultOption = .bss:0x80980758; // type:object size:0x4 +SymSetIconAndProfileName = .bss:0x8098075C; // type:object size:0x4 +SymSetNoOverdrive = .bss:0x80980760; // type:object size:0x4 +SymSetNoUserMode = .bss:0x80980764; // type:object size:0x4 +SymSetOfferDescription = .bss:0x80980768; // type:object size:0x4 +SymTestEnergy = .bss:0x8098076C; // type:object size:0x4 +SymShowOptionsWiispeak = .bss:0x80980770; // type:object size:0x4 +SymHasValidBones = .bss:0x80980774; // type:object size:0x4 +SymPreClear = .bss:0x80980778; // type:object size:0x4 +SymAddFileMerger = .bss:0x8098077C; // type:object size:0x4 +SymCopyGeomFromOwner = .bss:0x80980780; // type:object size:0x4 +SymCurrentOutfitProvider = .bss:0x80980784; // type:object size:0x4 +SymErrorSetlistDescriptionEmpty = .bss:0x80980788; // type:object size:0x4 data:4byte +SymErrorSetlistTitleEmpty = .bss:0x8098078C; // type:object size:0x4 data:4byte +SymFans = .bss:0x80980790; // type:object size:0x4 data:4byte +SymFocusStreakMaxNoteGapMs = .bss:0x80980794; // type:object size:0x4 data:4byte +SymGetAssetShot = .bss:0x80980798; // type:object size:0x4 +SymGetCurrentShortcutIx = .bss:0x8098079C; // type:object size:0x4 +SymGetGoalDesc = .bss:0x809807A0; // type:object size:0x4 +SymGetGoalUnits = .bss:0x809807A4; // type:object size:0x4 +SymHideCategories = .bss:0x809807A8; // type:object size:0x4 +SymLightpresetInterpEnabled = .bss:0x809807AC; // type:object size:0x4 +SymRebuildRestrictedData = .bss:0x809807B0; // type:object size:0x4 +SymRemoteStatusLeaderControlling = .bss:0x809807B4; // type:object size:0x4 data:4byte +SymRemoteStatusWaitingOnLeader = .bss:0x809807B8; // type:object size:0x4 data:4byte +SymRestoreCategories = .bss:0x809807BC; // type:object size:0x4 +SymSetupCurrentOutfit = .bss:0x809807C0; // type:object size:0x4 +SymSongSelectFunctions = .bss:0x809807C4; // type:object size:0x4 data:4byte +SymStompPresets = .bss:0x809807C8; // type:object size:0x4 +SymSyncSharedSongs = .bss:0x809807CC; // type:object size:0x8 +SymUpdateCurrentOutfitProvider = .bss:0x809807D4; // type:object size:0x4 +SymSetPitchMucker = .bss:0x809807D8; // type:object size:0x14 +SymCampaignMeterProgress = .bss:0x809807EC; // type:object size:0x4 data:4byte +SymCampaignMeterProgressSimple = .bss:0x809807F0; // type:object size:0x4 data:4byte +SymConcealNow = .bss:0x809807F4; // type:object size:0x8 +SymCurrentOption = .bss:0x809807FC; // type:object size:0x8 +SymHasReachedCampaignLevel = .bss:0x80980804; // type:object size:0x4 +SymIsAssetPatchable = .bss:0x80980808; // type:object size:0x4 +SymMaxWeights = .bss:0x8098080C; // type:object size:0x4 +SymMinWeights = .bss:0x80980810; // type:object size:0xC +SymNumOptions = .bss:0x8098081C; // type:object size:0x4 +SymRemoteTrackerDeploy = .bss:0x80980820; // type:object size:0x4 +SymRemoteTrackerPlayerDisplay = .bss:0x80980824; // type:object size:0x4 +SymRemoteTrackerSectionComplete = .bss:0x80980828; // type:object size:0x4 +SymSetUseExtendedMicArrows = .bss:0x8098082C; // type:object size:0x8 +SymStartWithMenu = .bss:0x80980834; // type:object size:0x4 +SymStartingPatchIx = .bss:0x80980838; // type:object size:0x8 +SymUpdateCampaignMeterProgress = .bss:0x80980840; // type:object size:0x4 +SymEnterLegend = .bss:0x80980844; // type:object size:0x4 data:4byte +SymGetDefaultCharIndex = .bss:0x80980848; // type:object size:0x4 +SymRefreshStandinList = .bss:0x8098084C; // type:object size:0x4 +SymSessionGuid = .bss:0x80980850; // type:object size:0x4 data:4byte +SymSetDefaultOptionIndex = .bss:0x80980854; // type:object size:0x4 +SymSpeedRatio = .bss:0x80980858; // type:object size:0x8 data:4byte +SymCrashCymbal = .bss:0x80980860; // type:object size:0x4 data:4byte +SymFinding = .bss:0x80980864; // type:object size:0x4 +SymModNohud = .bss:0x80980868; // type:object size:0x4 data:4byte +SymSetAllowsButtonPulse = .bss:0x8098086C; // type:object size:0x4 +SymSetPartyMicOptionsShowing = .bss:0x80980870; // type:object size:0x4 +SymUpgradeMidiFile = .bss:0x80980874; // type:object size:0x4 +SymRandomizeIndex = .bss:0x80980878; // type:object size:0x8 +SymEnableBlink = .bss:0x80980880; // type:object size:0x4 +SymAllDoubleAwesomes = .bss:0x80980884; // type:object size:0x4 +SymAllMachinesHaveSameNetUiState = .bss:0x80980888; // type:object size:0x4 +SymAllTripleAwesomes = .bss:0x8098088C; // type:object size:0xC +SymHasUpgrade = .bss:0x80980898; // type:object size:0x4 +SymPendingState = .bss:0x8098089C; // type:object size:0x4 +SymResetNewCharacterPreview = .bss:0x809808A0; // type:object size:0x4 +SymHandleGenderChanged = .bss:0x809808A4; // type:object size:0xC +SymModDrumFills = .bss:0x809808B0; // type:object size:0x4 data:4byte +SymModDrumSurfaceNavigation = .bss:0x809808B4; // type:object size:0x4 data:4byte +SymModMissSounds = .bss:0x809808B8; // type:object size:0x8 data:4byte +SymRemoteTrackerEndDeployStreak = .bss:0x809808C0; // type:object size:0x4 +SymRemoteTrackerEndStreak = .bss:0x809808C4; // type:object size:0x4 +SymErrorBattleTitleProfane = .bss:0x809808C8; // type:object size:0x4 data:4byte +SymErrorBattleDescriptionProfane = .bss:0x809808CC; // type:object size:0x4 data:4byte +SymMakeSureSetlistIsValid = .bss:0x809808D0; // type:object size:0x4 +SymSetScrollUser = .bss:0x809808D4; // type:object size:0x4 +SymCacheLists = .bss:0x809808D8; // type:object size:0x4 +SymConcealAllLists = .bss:0x809808DC; // type:object size:0x4 +SymShouldStartBrowserAtBottom = .bss:0x809808E0; // type:object size:0x4 +SymClearData = .bss:0x809808E4; // type:object size:0x4 +SymFillWidth = .bss:0x809808E8; // type:object size:0x4 +SymSetCurrentCharacterPatch = .bss:0x809808EC; // type:object size:0x4 +SymHasPatch = .bss:0x809808F0; // type:object size:0x4 +SymLaunchableRequiresBreAbility = .bss:0x809808F4; // type:object size:0x4 data:4byte +SymAssetProviderHasAsset = .bss:0x809808F8; // type:object size:0x4 +SymDimData = .bss:0x809808FC; // type:object size:0x4 +SymGetPreviousOffers = .bss:0x80980900; // type:object size:0x4 +SymIsBonus = .bss:0x80980904; // type:object size:0x4 data:4byte +SymJoiningAllowedInTransition = .bss:0x80980908; // type:object size:0x4 data:4byte +SymMultiSelect = .bss:0x8098090C; // type:object size:0x4 +SymMultiUnselect = .bss:0x80980910; // type:object size:0x4 +SymOverridePlayMode = .bss:0x80980914; // type:object size:0x4 +SymPassiveMessagePreloadFailed = .bss:0x80980918; // type:object size:0x4 data:4byte +SymRestartHighlightMatanim = .bss:0x8098091C; // type:object size:0x4 +SymSetReadyForExit = .bss:0x80980920; // type:object size:0x4 +SymTokenErrorNoPreviousOffers = .bss:0x80980924; // type:object size:0x4 data:4byte +SymTriggerSkipSongMsg = .bss:0x80980928; // type:object size:0x4 +SymUndimData = .bss:0x8098092C; // type:object size:0x8 +SymReportSortAndFilters = .bss:0x80980934; // type:object size:0x4 +SymSort = .bss:0x80980938; // type:object size:0x8 data:4byte +SymSetSourceToBackup = .bss:0x80980940; // type:object size:0x4 +SymSetIsWaitingToFinalize = .bss:0x80980944; // type:object size:0x4 +SymIsWaitingToFinalize = .bss:0x80980948; // type:object size:0x4 +SymSetIsWaitingToLeave = .bss:0x8098094C; // type:object size:0x4 +SymIsWaitingToLeave = .bss:0x80980950; // type:object size:0x4 +SymEarnAccomplishmentForAll = .bss:0x80980954; // type:object size:0x4 +SymRecomposeCharsWithPatchIx = .bss:0x80980958; // type:object size:0x4 +SymReskin = .bss:0x8098095C; // type:object size:0x4 +SymFirstShotOk = .bss:0x80980960; // type:object size:0x4 +SymSetShortcutData = .bss:0x80980964; // type:object size:0x4 +SymApplyShortcutProvider = .bss:0x80980968; // type:object size:0x4 +SymHandKeyboardOffset = .bss:0x8098096C; // type:object size:0x4 +SymHandThumbRotation = .bss:0x80980970; // type:object size:0x4 +SymHandPinkyRotation = .bss:0x80980974; // type:object size:0x4 +SymHandMoveForward = .bss:0x80980978; // type:object size:0x4 +SymHandDestOffset = .bss:0x8098097C; // type:object size:0x4 +SymAbstractWipeIn = .bss:0x80980980; // type:object size:0x8 +SymAverageMsError = .bss:0x80980988; // type:object size:0x4 data:4byte +SymTracksExtended = .bss:0x8098098C; // type:object size:0x4 +SymGetNumTracks = .bss:0x80980990; // type:object size:0x4 +SymMarkGemsAsProcessed = .bss:0x80980994; // type:object size:0x4 +SymRefreshToMainState = .bss:0x80980998; // type:object size:0x4 +SymRefreshToStandinsState = .bss:0x8098099C; // type:object size:0x4 +SymHideConnectControllerMesh = .bss:0x809809A0; // type:object size:0x4 data:4byte +SymPrintParentalPin = .bss:0x809809A4; // type:object size:0x4 +SymGetRestartAllowed = .bss:0x809809A8; // type:object size:0x4 +SymTrPid = .bss:0x809809AC; // type:object size:0x8 data:4byte +SymPlayerBass0 = .bss:0x809809B4; // type:object size:0x4 data:4byte +SymPlayerKeyboard0 = .bss:0x809809B8; // type:object size:0x4 data:4byte +SymPlayerGuitar0 = .bss:0x809809BC; // type:object size:0x4 data:4byte +SymAccHmxRecommends2 = .bss:0x809809C0; // type:object size:0x4 data:4byte +SymGroup2 = .bss:0x809809C4; // type:object size:0x4 data:4byte +SymMovie2 = .bss:0x809809C8; // type:object size:0x4 data:4byte +SymTrack2 = .bss:0x809809CC; // type:object size:0x4 +SymTex2 = .bss:0x809809D0; // type:object size:0x4 +SymMat2 = .bss:0x809809D4; // type:object size:0x4 +SymView2 = .bss:0x809809D8; // type:object size:0x4 +SymCam2 = .bss:0x809809DC; // type:object size:0x4 +SymCharacter = .bss:0x809809E0; // type:object size:0x4 +SymPropanim = .bss:0x809809E4; // type:object size:0x4 +SymSampleRate = .bss:0x809809E8; // type:object size:0x4 +SymFont2 = .bss:0x809809EC; // type:object size:0x4 +SymObject2 = .bss:0x809809F0; // type:object size:0x4 +SymText2 = .bss:0x809809F4; // type:object size:0x4 +SymArena = .bss:0x809809F8; // type:object size:0xC +SymDefault = .bss:0x80980A04; // type:object size:0x4 data:4byte +SymParent2 = .bss:0x80980A08; // type:object size:0x4 data:4byte +SymAbstractWipe = .bss:0x80980A0C; // type:object size:0x4 +SymAccAccountlink = .bss:0x80980A10; // type:object size:0x4 data:4byte +SymAccBandcreate = .bss:0x80980A14; // type:object size:0x4 +SymAccBandlogo = .bss:0x80980A18; // type:object size:0x4 data:4byte +SymAccCalibrate = .bss:0x80980A1C; // type:object size:0x4 +SymAccCharactercreate = .bss:0x80980A20; // type:object size:0x4 data:4byte +SymAccCreatesetlist = .bss:0x80980A24; // type:object size:0x4 data:4byte +SymAccGuitartutorial01 = .bss:0x80980A28; // type:object size:0x4 +SymAccGuitartutorial02 = .bss:0x80980A2C; // type:object size:0x4 +SymAccGuitartutorial03 = .bss:0x80980A30; // type:object size:0x4 +SymAccHmxrecommends = .bss:0x80980A34; // type:object size:0x4 +SymAccId = .bss:0x80980A38; // type:object size:0x4 data:4byte +SymAccJoinalabel = .bss:0x80980A3C; // type:object size:0x4 +SymAccMultiplayersession = .bss:0x80980A40; // type:object size:0x4 data:4byte +SymAccSecret = .bss:0x80980A44; // type:object size:0x4 data:4byte +SymAccSecretDesc = .bss:0x80980A48; // type:object size:0x4 data:4byte +SymAccSecretdesc = .bss:0x80980A4C; // type:object size:0x4 data:4byte +SymAccStandins = .bss:0x80980A50; // type:object size:0x4 data:4byte +SymAccStartalabel = .bss:0x80980A54; // type:object size:0x4 +SymAcceleration = .bss:0x80980A58; // type:object size:0x4 +SymAcceptCurChecked = .bss:0x80980A5C; // type:object size:0x4 +SymAcceptInvitation = .bss:0x80980A60; // type:object size:0x4 +SymAccessAccomplishmentProgress = .bss:0x80980A64; // type:object size:0x8 +SymAccomplishmentType = .bss:0x80980A6C; // type:object size:0x4 data:4byte +SymAccumulatedScore = .bss:0x80980A70; // type:object size:0x4 +SymAccuracy = .bss:0x80980A74; // type:object size:0x4 +SymAccuracyFocusTrackerExplanation = .bss:0x80980A78; // type:object size:0x4 data:4byte +SymAccuracyFocusTrackerProgress = .bss:0x80980A7C; // type:object size:0x4 data:4byte +SymAchievementProgress = .bss:0x80980A80; // type:object size:0x8 data:4byte +SymActOnUserProfile = .bss:0x80980A88; // type:object size:0x4 +SymActOnUserProfileConfirm = .bss:0x80980A8C; // type:object size:0x4 +SymAction = .bss:0x80980A90; // type:object size:0x4 +SymActionChars = .bss:0x80980A94; // type:object size:0x4 data:4byte +SymActivate = .bss:0x80980A98; // type:object size:0x4 +SymActive = .bss:0x80980A9C; // type:object size:0x4 data:4byte +SymActiveDisabledColor = .bss:0x80980AA0; // type:object size:0x4 +SymActiveFocusedColor = .bss:0x80980AA4; // type:object size:0x4 +SymActiveNormalColor = .bss:0x80980AA8; // type:object size:0x4 +SymActiveParticles = .bss:0x80980AAC; // type:object size:0x4 +SymActivePlayer = .bss:0x80980AB0; // type:object size:0x4 +SymActiveScoreType = .bss:0x80980AB4; // type:object size:0x4 +SymActiveSelectedColor = .bss:0x80980AB8; // type:object size:0x4 +SymActiveSelectingColor = .bss:0x80980ABC; // type:object size:0x8 +SymAdd3DCrowd = .bss:0x80980AC4; // type:object size:0x8 +SymAddAward = .bss:0x80980ACC; // type:object size:0x8 +SymAddClip = .bss:0x80980AD4; // type:object size:0x4 +SymAddContent = .bss:0x80980AD8; // type:object size:0xC +SymAddEmitRate = .bss:0x80980AE4; // type:object size:0x4 +SymAddFader = .bss:0x80980AE8; // type:object size:0x8 +SymAddInstance = .bss:0x80980AF0; // type:object size:0x4 +SymAddInterest = .bss:0x80980AF4; // type:object size:0x4 +SymAddKeys = .bss:0x80980AF8; // type:object size:0x4 +SymAddLocalUser = .bss:0x80980AFC; // type:object size:0x4 +SymAddLocalUserResultMsg = .bss:0x80980B00; // type:object size:0x4 +SymAddMap = .bss:0x80980B04; // type:object size:0x4 +SymAddMeshInstance = .bss:0x80980B08; // type:object size:0x4 +SymAddMessage = .bss:0x80980B0C; // type:object size:0x4 +SymAddMessageSe = .bss:0x80980B10; // type:object size:0x10 +SymAddNames = .bss:0x80980B20; // type:object size:0x8 +SymAddObject = .bss:0x80980B28; // type:object size:0x8 +SymAddPanel = .bss:0x80980B30; // type:object size:0x4 +SymAddRecentSong = .bss:0x80980B34; // type:object size:0x4 +SymAddRotKey = .bss:0x80980B38; // type:object size:0x4 +SymAddScaleKey = .bss:0x80980B3C; // type:object size:0x4 +SymAddSection = .bss:0x80980B40; // type:object size:0x4 +SymAddSink = .bss:0x80980B44; // type:object size:0x8 +SymAddSymbolKey = .bss:0x80980B4C; // type:object size:0x4 +SymAddTarget = .bss:0x80980B50; // type:object size:0x4 +SymAddTestWidget = .bss:0x80980B54; // type:object size:0x4 +SymAddTex = .bss:0x80980B58; // type:object size:0x4 +SymAddTextInstance = .bss:0x80980B5C; // type:object size:0x4 +SymAddTransKey = .bss:0x80980B60; // type:object size:0x4 +SymAddTriggerPool = .bss:0x80980B64; // type:object size:0xC +SymAddXfm = .bss:0x80980B70; // type:object size:0x4 +SymAddXfms = .bss:0x80980B74; // type:object size:0x4 +SymAdditionalObjects = .bss:0x80980B78; // type:object size:0x4 +SymAdjustForVocalPhrases = .bss:0x80980B7C; // type:object size:0x4 +SymAdjustHeight = .bss:0x80980B80; // type:object size:0x4 +SymAdsr = .bss:0x80980B84; // type:object size:0x4 +SymAdvanceFromFinding = .bss:0x80980B88; // type:object size:0x4 +SymAdvanceSong = .bss:0x80980B8C; // type:object size:0x4 +SymAdvanceTarget = .bss:0x80980B90; // type:object size:0x4 data:4byte +SymAdvertisement = .bss:0x80980B94; // type:object size:0x4 data:4byte +SymAlbum = .bss:0x80980B98; // type:object size:0x4 +SymAlbumArt = .bss:0x80980B9C; // type:object size:0x4 data:4byte +SymAlbumArtPath = .bss:0x80980BA0; // type:object size:0x8 +SymAlbumLink = .bss:0x80980BA8; // type:object size:0x4 +SymAlbumName = .bss:0x80980BAC; // type:object size:0x4 data:4byte +SymAlbumTex = .bss:0x80980BB0; // type:object size:0x4 +SymAlbumTrackNumber = .bss:0x80980BB4; // type:object size:0x4 data:4byte +SymAlign = .bss:0x80980BB8; // type:object size:0x4 data:4byte +SymAlignment = .bss:0x80980BBC; // type:object size:0x4 +SymAll = .bss:0x80980BC0; // type:object size:0xC +SymAllSectionsFinished = .bss:0x80980BCC; // type:object size:0x4 +SymAllSlotsReadyToPlay = .bss:0x80980BD0; // type:object size:0x8 +SymAllowAlpha = .bss:0x80980BD8; // type:object size:0x4 +SymAllowCacheWrite = .bss:0x80980BDC; // type:object size:0x4 +SymAllowColor = .bss:0x80980BE0; // type:object size:0x4 +SymAllowEditText = .bss:0x80980BE4; // type:object size:0xC +SymAllowPreviewDownload = .bss:0x80980BF0; // type:object size:0x4 +SymAllowRemoteExit = .bss:0x80980BF4; // type:object size:0x4 +SymAllowRepeats = .bss:0x80980BF8; // type:object size:0x4 +SymAllowRoll = .bss:0x80980BFC; // type:object size:0x8 +SymAllowSoloScores = .bss:0x80980C04; // type:object size:0x4 +SymAllowUgc = .bss:0x80980C08; // type:object size:0x4 data:4byte +SymAllowableLightsApprox = .bss:0x80980C0C; // type:object size:0x4 +SymAllowableLightsReal = .bss:0x80980C10; // type:object size:0x4 +SymAllowableNextShots = .bss:0x80980C14; // type:object size:0x4 +SymAllowedDrawable = .bss:0x80980C18; // type:object size:0x4 +SymAllowedNextPass = .bss:0x80980C1C; // type:object size:0x4 +SymAllowedNormalMap = .bss:0x80980C20; // type:object size:0x4 +SymAllowedObjects = .bss:0x80980C24; // type:object size:0x4 +SymAllowedTransitionActions = .bss:0x80980C28; // type:object size:0x4 data:4byte +SymAlpha = .bss:0x80980C2C; // type:object size:0x8 +SymAlphaMax = .bss:0x80980C34; // type:object size:0x4 +SymAlphaMin = .bss:0x80980C38; // type:object size:0x4 +SymAlphaShortcuts = .bss:0x80980C3C; // type:object size:0x4 data:4byte +SymAlphaThreshold = .bss:0x80980C40; // type:object size:0x8 +SymAltAlpha = .bss:0x80980C48; // type:object size:0x8 +SymAltDirs = .bss:0x80980C50; // type:object size:0x4 data:4byte +SymAltFontResourceName = .bss:0x80980C54; // type:object size:0x4 +SymAltItalics = .bss:0x80980C58; // type:object size:0x4 +SymAltKerning = .bss:0x80980C5C; // type:object size:0x4 +SymAltMatVariation = .bss:0x80980C60; // type:object size:0x8 +SymAltStyleEnabled = .bss:0x80980C68; // type:object size:0x4 +SymAltTextColor = .bss:0x80980C6C; // type:object size:0x4 +SymAltTextSize = .bss:0x80980C70; // type:object size:0x4 +SymAltZOffset = .bss:0x80980C74; // type:object size:0x4 +SymAlternateDriver = .bss:0x80980C78; // type:object size:0x4 +SymAlternatePath = .bss:0x80980C7C; // type:object size:0x4 data:4byte +SymAlwaysIkElbow = .bss:0x80980C80; // type:object size:0x4 +SymAlwaysLoad = .bss:0x80980C84; // type:object size:0x4 data:4byte +SymAlwaysShow = .bss:0x80980C88; // type:object size:0x8 +SymAlwaysVisible = .bss:0x80980C90; // type:object size:0x4 data:4byte +SymAmbientAlpha = .bss:0x80980C94; // type:object size:0x4 +SymAmbientColor = .bss:0x80980C98; // type:object size:0x4 +SymAmbientFogOwner = .bss:0x80980C9C; // type:object size:0x4 +SymAmbientOcclusion = .bss:0x80980CA0; // type:object size:0x4 +SymAmount = .bss:0x80980CA4; // type:object size:0x10 +SymAngRadius = .bss:0x80980CB4; // type:object size:0x4 +SymAngle = .bss:0x80980CB8; // type:object size:0x4 +SymAngleOffset = .bss:0x80980CBC; // type:object size:0x4 +SymAnim = .bss:0x80980CC0; // type:object size:0x4 +SymAnimBlendMax = .bss:0x80980CC4; // type:object size:0x4 +SymAnimBlendWeightable = .bss:0x80980CC8; // type:object size:0x4 +SymAnimCycleFrames = .bss:0x80980CCC; // type:object size:0x4 +SymAnimDelay = .bss:0x80980CD0; // type:object size:0x4 +SymAnimFrame = .bss:0x80980CD4; // type:object size:0x4 +SymAnimGroup = .bss:0x80980CD8; // type:object size:0x4 +SymAnimHalfOff = .bss:0x80980CDC; // type:object size:0x4 +SymAnimNumCycles = .bss:0x80980CE0; // type:object size:0x4 +SymAnimPeriod = .bss:0x80980CE4; // type:object size:0x4 +SymAnimRestingFrame = .bss:0x80980CE8; // type:object size:0x4 +SymAnimTempo = .bss:0x80980CEC; // type:object size:0x4 data:4byte +SymAnimTime = .bss:0x80980CF0; // type:object size:0x4 +SymAnimTrigger = .bss:0x80980CF4; // type:object size:0x4 +SymAnimate = .bss:0x80980CF8; // type:object size:0x4 +SymAnimateColorFromPreset = .bss:0x80980CFC; // type:object size:0x4 +SymAnimateFromPreset = .bss:0x80980D00; // type:object size:0x8 +SymAnimateOrientationFromPreset = .bss:0x80980D08; // type:object size:0x4 +SymAnimatePositionFromPreset = .bss:0x80980D0C; // type:object size:0x4 +SymAnimateRangeFromPreset = .bss:0x80980D10; // type:object size:0x4 +SymAnimateToValue = .bss:0x80980D14; // type:object size:0x8 +SymAnimationGenre = .bss:0x80980D1C; // type:object size:0x4 +SymAnims = .bss:0x80980D20; // type:object size:0x4 +SymAnimsDuringNextshots = .bss:0x80980D24; // type:object size:0x8 +SymAnnounce = .bss:0x80980D2C; // type:object size:0x4 data:4byte +SymAny = .bss:0x80980D30; // type:object size:0x4 data:4byte +SymAnyChecked = .bss:0x80980D34; // type:object size:0x4 +SymAoStrength = .bss:0x80980D38; // type:object size:0x8 +SymApply = .bss:0x80980D40; // type:object size:0x4 +SymApplyArrowStyle = .bss:0x80980D44; // type:object size:0x4 +SymApplyFontStyle = .bss:0x80980D48; // type:object size:0x4 +SymApplyOverrideAdditively = .bss:0x80980D4C; // type:object size:0x8 +SymAreAllTourGigsComplete = .bss:0x80980D54; // type:object size:0x4 +SymAreCreditsPending = .bss:0x80980D58; // type:object size:0x4 +SymAreFillsForced = .bss:0x80980D5C; // type:object size:0x4 +SymAreInvitesAllowed = .bss:0x80980D60; // type:object size:0x4 +SymAreSfxEnabled = .bss:0x80980D64; // type:object size:0x4 +SymAreaStrum = .bss:0x80980D68; // type:object size:0x4 +SymArpeggio = .bss:0x80980D6C; // type:object size:0x4 data:4byte +SymArray = .bss:0x80980D70; // type:object size:0x4 data:4byte +SymArrowA = .bss:0x80980D74; // type:object size:0x4 data:4byte +SymArrowB = .bss:0x80980D78; // type:object size:0x4 data:4byte +SymArrowC = .bss:0x80980D7C; // type:object size:0x4 data:4byte +SymArrowHide = .bss:0x80980D80; // type:object size:0x4 +SymArrowNum = .bss:0x80980D84; // type:object size:0x4 +SymArrowShow = .bss:0x80980D88; // type:object size:0x4 +SymArrowSmoothing = .bss:0x80980D8C; // type:object size:0x4 +SymArrowStyle = .bss:0x80980D90; // type:object size:0xC +SymArt = .bss:0x80980D9C; // type:object size:0x4 data:4byte +SymArtist = .bss:0x80980DA0; // type:object size:0x4 data:4byte +SymArtistSpecificProbability = .bss:0x80980DA4; // type:object size:0x4 data:4byte +SymArtists = .bss:0x80980DA8; // type:object size:0x4 data:4byte +SymAspect = .bss:0x80980DAC; // type:object size:0x4 +SymAsset = .bss:0x80980DB0; // type:object size:0x4 +SymAssetHintAward = .bss:0x80980DB4; // type:object size:0x4 data:4byte +SymAssetHintCampaignlevel = .bss:0x80980DB8; // type:object size:0x4 data:4byte +SymAssetHintGoal = .bss:0x80980DBC; // type:object size:0x4 data:4byte +SymAssetHintGoalcategory = .bss:0x80980DC0; // type:object size:0x4 data:4byte +SymAssetHintGoalgroup = .bss:0x80980DC4; // type:object size:0x4 data:4byte +SymAssetProvider = .bss:0x80980DC8; // type:object size:0xC +SymAssignRandomColors = .bss:0x80980DD4; // type:object size:0x4 +SymAsyncLoad = .bss:0x80980DD8; // type:object size:0x4 +SymAttachMesh = .bss:0x80980DDC; // type:object size:0x4 +SymAttachToImportfont = .bss:0x80980DE0; // type:object size:0x4 +SymAttachment = .bss:0x80980DE4; // type:object size:0x4 +SymAttack = .bss:0x80980DE8; // type:object size:0x4 +SymAttackMode = .bss:0x80980DEC; // type:object size:0x4 +SymAttackRate = .bss:0x80980DF0; // type:object size:0x4 +SymAttackSmoothing = .bss:0x80980DF4; // type:object size:0x4 +SymAttemptDisconnect = .bss:0x80980DF8; // type:object size:0x4 +SymAttemptRegisterOnline = .bss:0x80980DFC; // type:object size:0x4 +SymAttemptRemoveUser = .bss:0x80980E00; // type:object size:0x4 +SymAttemptShowCharDelete = .bss:0x80980E04; // type:object size:0x8 +SymAttemptToAddUser = .bss:0x80980E0C; // type:object size:0x4 +SymAttemptToggleAutoVocals = .bss:0x80980E10; // type:object size:0x14 +SymAudioEnable = .bss:0x80980E24; // type:object size:0x4 +SymAudioVolDb = .bss:0x80980E28; // type:object size:0x4 +SymAuthor = .bss:0x80980E2C; // type:object size:0x4 +SymAutoAssignMissingSlots = .bss:0x80980E30; // type:object size:0x8 +SymAutoPlay = .bss:0x80980E38; // type:object size:0x4 +SymAutoReveal = .bss:0x80980E3C; // type:object size:0x8 +SymAutoScroll = .bss:0x80980E44; // type:object size:0x4 +SymAutoScrollPause = .bss:0x80980E48; // type:object size:0x4 +SymAutoScrollSendMessages = .bss:0x80980E4C; // type:object size:0x4 +SymAutoVocalsConfirm = .bss:0x80980E50; // type:object size:0x4 data:4byte +SymAutoWah = .bss:0x80980E54; // type:object size:0x4 data:4byte +SymAutoWeight = .bss:0x80980E58; // type:object size:0x4 +SymAutoload = .bss:0x80980E5C; // type:object size:0x4 +SymAutoplay = .bss:0x80980E60; // type:object size:0x8 +SymAutosave = .bss:0x80980E68; // type:object size:0x10 +SymAverage = .bss:0x80980E78; // type:object size:0x4 +SymAverageBeatsPerSec = .bss:0x80980E7C; // type:object size:0x4 +SymAvgIntervalSecs = .bss:0x80980E80; // type:object size:0x4 +SymAvgPan = .bss:0x80980E84; // type:object size:0x4 +SymAvgTranspose = .bss:0x80980E88; // type:object size:0x4 +SymAvgVolume = .bss:0x80980E8C; // type:object size:0x4 +SymAvgWaitSeconds = .bss:0x80980E90; // type:object size:0x4 +SymAward = .bss:0x80980E94; // type:object size:0x4 data:4byte +SymAwardGeneric = .bss:0x80980E98; // type:object size:0x4 data:4byte +SymAwardGenericdesc = .bss:0x80980E9C; // type:object size:0x4 data:4byte +SymAwards = .bss:0x80980EA0; // type:object size:0x4 data:4byte +SymAwardsourceMultiple = .bss:0x80980EA4; // type:object size:0x4 +SymAwesomes = .bss:0x80980EA8; // type:object size:0x8 +SymB = .bss:0x80980EB0; // type:object size:0x4 +SymBack = .bss:0x80980EB4; // type:object size:0x4 +SymBackMat = .bss:0x80980EB8; // type:object size:0x10 +SymBackupCheck = .bss:0x80980EC8; // type:object size:0x8 +SymBackupIsFinished = .bss:0x80980ED0; // type:object size:0x4 +SymBackupPercent = .bss:0x80980ED4; // type:object size:0x4 +SymBakeOutAsTopLevel = .bss:0x80980ED8; // type:object size:0x4 +SymBakeOutFacing = .bss:0x80980EDC; // type:object size:0x4 +SymBand = .bss:0x80980EE0; // type:object size:0x4 data:4byte +SymBandDefaultName = .bss:0x80980EE4; // type:object size:0x4 data:4byte +SymBandEmptyname = .bss:0x80980EE8; // type:object size:0x4 data:4byte +SymBandEnergy = .bss:0x80980EEC; // type:object size:0x4 +SymBandFailCue = .bss:0x80980EF0; // type:object size:0x4 data:4byte +SymBandLogo = .bss:0x80980EF4; // type:object size:0x4 +SymBandMask = .bss:0x80980EF8; // type:object size:0x4 data:4byte +SymBandMultiplier = .bss:0x80980EFC; // type:object size:0x4 +SymBandPerformer = .bss:0x80980F00; // type:object size:0x4 +SymBandUploadEvent = .bss:0x80980F04; // type:object size:0x8 data:4byte +SymBandana = .bss:0x80980F0C; // type:object size:0x4 +SymBandButton = .bss:0x80980F10; // type:object size:0x4 data:4byte +SymBandFx = .bss:0x80980F14; // type:object size:0x4 +SymBandLabel = .bss:0x80980F18; // type:object size:0x4 data:4byte +SymBandMeshLauncher = .bss:0x80980F1C; // type:object size:0x4 +SymBandPicture = .bss:0x80980F20; // type:object size:0x4 data:4byte +SymBandPlacer = .bss:0x80980F24; // type:object size:0x4 data:4byte +SymBandSlider = .bss:0x80980F28; // type:object size:0x4 data:4byte +SymBandTextEntry = .bss:0x80980F2C; // type:object size:0x4 data:4byte +SymBank = .bss:0x80980F30; // type:object size:0x8 data:4byte +SymBase = .bss:0x80980F38; // type:object size:0x4 +SymBaseCrossSection = .bss:0x80980F3C; // type:object size:0x4 +SymBaseDistance = .bss:0x80980F40; // type:object size:0x4 +SymBaseHeight = .bss:0x80980F44; // type:object size:0x4 +SymBaseIntensity = .bss:0x80980F48; // type:object size:0x8 +SymBaseKerning = .bss:0x80980F50; // type:object size:0x4 +SymBaseLength = .bss:0x80980F54; // type:object size:0x4 +SymBaseMap = .bss:0x80980F58; // type:object size:0x4 +SymBasePoints = .bss:0x80980F5C; // type:object size:0x4 data:4byte +SymBaseWeight = .bss:0x80980F60; // type:object size:0x4 +SymBaseWidth = .bss:0x80980F64; // type:object size:0x4 +SymBasicCleanup = .bss:0x80980F68; // type:object size:0x4 +SymBass = .bss:0x80980F6C; // type:object size:0x4 data:4byte +SymBassIntensity = .bss:0x80980F70; // type:object size:0x4 +SymBassSuperStreakOffTrig = .bss:0x80980F74; // type:object size:0x4 +SymBassSuperStreakOnTrig = .bss:0x80980F78; // type:object size:0x4 +SymBattleDefaultDesc = .bss:0x80980F7C; // type:object size:0x4 data:4byte +SymBattleDefaultName = .bss:0x80980F80; // type:object size:0x4 data:4byte +SymBattleFriend = .bss:0x80980F84; // type:object size:0x4 data:4byte +SymBattleFriendArchived = .bss:0x80980F88; // type:object size:0x4 data:4byte +SymBattleHarmonix = .bss:0x80980F8C; // type:object size:0x4 data:4byte +SymBattleHarmonixArchived = .bss:0x80980F90; // type:object size:0x4 data:4byte +SymBattleId = .bss:0x80980F94; // type:object size:0x4 data:4byte +SymBattleInstrumentFmt = .bss:0x80980F98; // type:object size:0x4 data:4byte +SymBattleTimeLeftDay = .bss:0x80980F9C; // type:object size:0x4 data:4byte +SymBattleTimeLeftDays = .bss:0x80980FA0; // type:object size:0x4 data:4byte +SymBattleTimeLeftHour = .bss:0x80980FA4; // type:object size:0x4 data:4byte +SymBattleTimeLeftHours = .bss:0x80980FA8; // type:object size:0x4 data:4byte +SymBattleTimeLeftMinute = .bss:0x80980FAC; // type:object size:0x4 data:4byte +SymBattleTimeLeftMinutes = .bss:0x80980FB0; // type:object size:0x4 data:4byte +SymBattleTimeLeftNone = .bss:0x80980FB4; // type:object size:0x4 data:4byte +SymBattleTimeLeftSecond = .bss:0x80980FB8; // type:object size:0x4 data:4byte +SymBattleTimeLeftSeconds = .bss:0x80980FBC; // type:object size:0x4 data:4byte +SymBattleTimeLeftWeek = .bss:0x80980FC0; // type:object size:0x4 data:4byte +SymBattleTimeLeftWeeks = .bss:0x80980FC4; // type:object size:0x4 data:4byte +SymBeard = .bss:0x80980FC8; // type:object size:0x4 data:4byte +SymBeat = .bss:0x80980FCC; // type:object size:0x4 +SymBeatAlign = .bss:0x80980FD0; // type:object size:0x4 +SymBeatFrac = .bss:0x80980FD4; // type:object size:0x4 data:4byte +SymBeatScale = .bss:0x80980FD8; // type:object size:0x8 +SymBeatToSecLength = .bss:0x80980FE0; // type:object size:0x4 +SymBeatsPerWeight = .bss:0x80980FE4; // type:object size:0x8 +SymBeginOverrideFlow = .bss:0x80980FEC; // type:object size:0x4 +SymBend = .bss:0x80980FF0; // type:object size:0x4 +SymBestAccuracy = .bss:0x80980FF4; // type:object size:0x4 +SymBestBandScore = .bss:0x80980FF8; // type:object size:0x4 +SymBestDrumrollPercent = .bss:0x80980FFC; // type:object size:0x4 +SymBestHoposPercent = .bss:0x80981000; // type:object size:0x4 +SymBestKickPercent = .bss:0x80981004; // type:object size:0x4 +SymBestOdDeploymentCount = .bss:0x80981008; // type:object size:0x4 data:4byte +SymBestPercussionPercent = .bss:0x8098100C; // type:object size:0x4 +SymBestProKickPercent = .bss:0x80981010; // type:object size:0x4 +SymBestScore = .bss:0x80981014; // type:object size:0x4 +SymBestSolo = .bss:0x80981018; // type:object size:0x4 +SymBestStreak = .bss:0x8098101C; // type:object size:0x4 +SymBestStreakMultipliersCount = .bss:0x80981020; // type:object size:0x4 data:4byte +SymBik = .bss:0x80981024; // type:object size:0x4 +SymBinkMovieFile = .bss:0x80981028; // type:object size:0x8 +SymBitmap = .bss:0x80981030; // type:object size:0x4 +SymBitmapList = .bss:0x80981034; // type:object size:0x4 +SymBitmapOverrides = .bss:0x80981038; // type:object size:0x4 +SymBitmapSaveName = .bss:0x8098103C; // type:object size:0x4 +SymBitmapSavePath = .bss:0x80981040; // type:object size:0x8 +SymBlank = .bss:0x80981048; // type:object size:0x4 +SymBleedTest = .bss:0x8098104C; // type:object size:0x4 +SymBlend = .bss:0x80981050; // type:object size:0x8 data:4byte +SymBlendEase = .bss:0x80981058; // type:object size:0x4 +SymBlendEaseMode = .bss:0x8098105C; // type:object size:0x8 +SymBlendOverridePct = .bss:0x80981064; // type:object size:0x4 +SymBlendWidth = .bss:0x80981068; // type:object size:0x4 +SymBlinkClipLeft = .bss:0x8098106C; // type:object size:0x4 +SymBlinkClipLeft2 = .bss:0x80981070; // type:object size:0x4 +SymBlinkClipRight = .bss:0x80981074; // type:object size:0x4 +SymBlinkClipRight2 = .bss:0x80981078; // type:object size:0x4 +SymBlockAllInput = .bss:0x8098107C; // type:object size:0x8 data:4byte +SymBlockLogin = .bss:0x80981084; // type:object size:0x8 +SymBlockTransition = .bss:0x8098108C; // type:object size:0x4 +SymBloomColor = .bss:0x80981090; // type:object size:0x4 +SymBloomGlare = .bss:0x80981094; // type:object size:0x4 +SymBloomIntensity = .bss:0x80981098; // type:object size:0x4 +SymBloomStreak = .bss:0x8098109C; // type:object size:0x4 +SymBloomStreakAngle = .bss:0x809810A0; // type:object size:0x4 +SymBloomStreakAttenuation = .bss:0x809810A4; // type:object size:0x4 +SymBloomThreshold = .bss:0x809810A8; // type:object size:0x4 +SymBlue = .bss:0x809810AC; // type:object size:0x4 +SymBlurDepth = .bss:0x809810B0; // type:object size:0x4 +SymBoiId = .bss:0x809810B4; // type:object size:0x4 data:4byte +SymBold = .bss:0x809810B8; // type:object size:0x4 +SymBone = .bss:0x809810BC; // type:object size:0x4 +SymBones = .bss:0x809810C0; // type:object size:0x8 +SymBonus = .bss:0x809810C8; // type:object size:0x4 data:4byte +SymBotradius = .bss:0x809810CC; // type:object size:0x4 +SymBottom = .bss:0x809810D0; // type:object size:0x4 +SymBottomBone = .bss:0x809810D4; // type:object size:0x4 data:4byte +SymBottomBorder = .bss:0x809810D8; // type:object size:0x4 +SymBottomHeight = .bss:0x809810DC; // type:object size:0x4 +SymBottomLeftHighlightBone = .bss:0x809810E0; // type:object size:0x4 +SymBottomOutliers = .bss:0x809810E4; // type:object size:0x4 +SymBottomRadius = .bss:0x809810E8; // type:object size:0x4 +SymBottomRightHighlightBone = .bss:0x809810EC; // type:object size:0x4 +SymBottomScreen = .bss:0x809810F0; // type:object size:0x4 +SymBottomSideBorder = .bss:0x809810F4; // type:object size:0x4 +SymBottomY = .bss:0x809810F8; // type:object size:0x4 +SymBottomleftBone = .bss:0x809810FC; // type:object size:0x4 data:4byte +SymBottomrightBone = .bss:0x80981100; // type:object size:0x4 data:4byte +SymBounce = .bss:0x80981104; // type:object size:0x4 +SymBounding = .bss:0x80981108; // type:object size:0x8 +SymBoutique = .bss:0x80981110; // type:object size:0x4 data:4byte +SymBoutiqueBoss = .bss:0x80981114; // type:object size:0x4 +SymBoutiquePremium = .bss:0x80981118; // type:object size:0x4 +SymBoutiqueRomantic = .bss:0x8098111C; // type:object size:0x4 +SymBoutiqueScrapper = .bss:0x80981120; // type:object size:0x4 +SymBoutiqueSheathed = .bss:0x80981124; // type:object size:0x4 +SymBoutiqueShowman = .bss:0x80981128; // type:object size:0x4 +SymBoutiqueThatstore = .bss:0x8098112C; // type:object size:0x4 +SymBoutiqueTshirts = .bss:0x80981130; // type:object size:0x4 +SymBoutiqueWarrior = .bss:0x80981134; // type:object size:0x4 +SymBox = .bss:0x80981138; // type:object size:0x4 +SymBoxExtent1 = .bss:0x8098113C; // type:object size:0x4 +SymBoxExtent2 = .bss:0x80981140; // type:object size:0x4 +SymBpm = .bss:0x80981144; // type:object size:0x8 +SymBreakStreak = .bss:0x8098114C; // type:object size:0x8 +SymBridge = .bss:0x80981154; // type:object size:0x4 +SymBrighten = .bss:0x80981158; // type:object size:0x4 +SymBrightness = .bss:0x8098115C; // type:object size:0x4 +SymBroadcast = .bss:0x80981160; // type:object size:0x4 data:4byte +SymBrowHeight = .bss:0x80981164; // type:object size:0x4 +SymBrowSeparation = .bss:0x80981168; // type:object size:0x4 +SymBrown = .bss:0x8098116C; // type:object size:0x4 +SymBrowserGroup = .bss:0x80981170; // type:object size:0x4 data:4byte +SymBrowserSubgroup = .bss:0x80981174; // type:object size:0x4 data:4byte +SymBubblePeriod = .bss:0x80981178; // type:object size:0x4 +SymBubbleSize = .bss:0x8098117C; // type:object size:0x8 +SymBuildList = .bss:0x80981184; // type:object size:0x4 +SymBuildListNoGrouping = .bss:0x80981188; // type:object size:0x8 +SymBusVenues = .bss:0x80981190; // type:object size:0x8 +SymButtonDown = .bss:0x80981198; // type:object size:0x4 +SymButtonToggle = .bss:0x8098119C; // type:object size:0x4 data:4byte +SymButtonEx = .bss:0x809811A0; // type:object size:0x8 +SymByArtist = .bss:0x809811A8; // type:object size:0x8 +SymByDifficulty = .bss:0x809811B0; // type:object size:0x8 +SymByLocation = .bss:0x809811B8; // type:object size:0x4 +SymByPlays = .bss:0x809811BC; // type:object size:0x4 +SymByRank = .bss:0x809811C0; // type:object size:0x4 +SymByRecent = .bss:0x809811C4; // type:object size:0x4 +SymByReview = .bss:0x809811C8; // type:object size:0x4 +SymBySong = .bss:0x809811CC; // type:object size:0x4 +SymByStars = .bss:0x809811D0; // type:object size:0x4 +SymBypass = .bss:0x809811D4; // type:object size:0xC +SymCacheMgrMountResult = .bss:0x809811E0; // type:object size:0x4 +SymCacheMgrUnmountResult = .bss:0x809811E4; // type:object size:0x8 +SymCacheWriteResult = .bss:0x809811EC; // type:object size:0x4 +SymCalAudioDescCalbert = .bss:0x809811F0; // type:object size:0x4 data:4byte +SymCalAudioDescDrum = .bss:0x809811F4; // type:object size:0x4 data:4byte +SymCalAudioDescGuitar = .bss:0x809811F8; // type:object size:0x4 data:4byte +SymCalAudioDescPad = .bss:0x809811FC; // type:object size:0x4 data:4byte +SymCalAudioTitle = .bss:0x80981200; // type:object size:0x4 data:4byte +SymCalAuto = .bss:0x80981204; // type:object size:0x4 +SymCalHwAudioTitle = .bss:0x80981208; // type:object size:0x4 data:4byte +SymCalHwVideoTitle = .bss:0x8098120C; // type:object size:0x4 data:4byte +SymCalManual = .bss:0x80981210; // type:object size:0x4 +SymCalNumbers = .bss:0x80981214; // type:object size:0x4 +SymCalVideoDescCalbert = .bss:0x80981218; // type:object size:0x4 data:4byte +SymCalVideoDescDrum = .bss:0x8098121C; // type:object size:0x4 data:4byte +SymCalVideoDescGuitar = .bss:0x80981220; // type:object size:0x4 data:4byte +SymCalVideoDescPad = .bss:0x80981224; // type:object size:0x4 data:4byte +SymCalVideoTitle = .bss:0x80981228; // type:object size:0x4 data:4byte +SymCalcBoundingSphere = .bss:0x8098122C; // type:object size:0xC +SymCalculateDownloadBlockInfo = .bss:0x80981238; // type:object size:0x4 +SymCall = .bss:0x8098123C; // type:object size:0x4 +SymCallbackObject = .bss:0x80981240; // type:object size:0x8 +SymCamPostproc = .bss:0x80981248; // type:object size:0x8 +SymCamTeleport = .bss:0x80981250; // type:object size:0x4 +SymCameraRandomSeed = .bss:0x80981254; // type:object size:0x4 +SymCameraSource = .bss:0x80981258; // type:object size:0x4 +SymCameraWeight = .bss:0x8098125C; // type:object size:0x4 +SymCampaign = .bss:0x80981260; // type:object size:0x4 data:4byte +SymCampaignAwardEarnedByCategory = .bss:0x80981264; // type:object size:0x4 data:4byte +SymCampaignAwardEarnedByGoal = .bss:0x80981268; // type:object size:0x4 data:4byte +SymCampaignAwardEarnedByGroup = .bss:0x8098126C; // type:object size:0x4 data:4byte +SymCampaignAwardEarnedByLevel = .bss:0x80981270; // type:object size:0x8 data:4byte +SymCampaignEndgameGoalComplete = .bss:0x80981278; // type:object size:0x4 data:4byte +SymCampaignEndgameGoalCompleteAnd1More = .bss:0x8098127C; // type:object size:0x4 data:4byte +SymCampaignEndgameGoalCompleteAndMore = .bss:0x80981280; // type:object size:0x4 data:4byte +SymCampaignEndgameGoalNoprogress = .bss:0x80981284; // type:object size:0x4 data:4byte +SymCampaignEndgameGoalProgress = .bss:0x80981288; // type:object size:0x4 data:4byte +SymCampaignEndgameGoalProgressReward = .bss:0x8098128C; // type:object size:0xC data:4byte +SymCampaignEndgameUserCongrats = .bss:0x80981298; // type:object size:0x4 data:4byte +SymCampaignEndgameUserNoprogress = .bss:0x8098129C; // type:object size:0x4 data:4byte +SymCampaignEndgameUserProgress = .bss:0x809812A0; // type:object size:0x4 data:4byte +SymCampaignGoalunitsDefault = .bss:0x809812A4; // type:object size:0x4 data:4byte +SymCampaignGoalunitsSingularDefault = .bss:0x809812A8; // type:object size:0x4 data:4byte +SymCampaignLevel = .bss:0x809812AC; // type:object size:0x4 data:4byte +SymCampaignMetascore = .bss:0x809812B0; // type:object size:0x4 +SymCampaignRewardvignetteFestivalReplayScreen = .bss:0x809812B4; // type:object size:0x4 +SymCampaignlevelBus = .bss:0x809812B8; // type:object size:0x8 data:4byte +SymCampaignlevelJet = .bss:0x809812C0; // type:object size:0x4 data:4byte +SymCampaignlevelVan = .bss:0x809812C4; // type:object size:0xC data:4byte +SymCanBeEarnedWithNoFail = .bss:0x809812D0; // type:object size:0x4 data:4byte +SymCanChangePrimaryProfile = .bss:0x809812D4; // type:object size:0x4 +SymCanChangeSongReview = .bss:0x809812D8; // type:object size:0x4 +SymCanDeploy = .bss:0x809812DC; // type:object size:0x4 +SymCanEditCharacter = .bss:0x809812E0; // type:object size:0x4 +SymCanEquipAward = .bss:0x809812E4; // type:object size:0x4 +SymCanGetAchievements = .bss:0x809812E8; // type:object size:0x4 +SymCanHaveFocus = .bss:0x809812EC; // type:object size:0x4 +SymCanHeadersBeSelected = .bss:0x809812F0; // type:object size:0x4 +SymCanLaunchGoal = .bss:0x809812F4; // type:object size:0x4 +SymCanLaunchSelectedEntry = .bss:0x809812F8; // type:object size:0x4 +SymCanNavigateList = .bss:0x809812FC; // type:object size:0x4 +SymCanResumeSongs = .bss:0x80981300; // type:object size:0x4 +SymCanRowsBeSelected = .bss:0x80981304; // type:object size:0x4 +SymCanSaveData = .bss:0x80981308; // type:object size:0x4 +SymCanSaveSetlists = .bss:0x8098130C; // type:object size:0x4 +SymCanSelectMultipleOptions = .bss:0x80981310; // type:object size:0x4 +SymCanSkipSongs = .bss:0x80981314; // type:object size:0x4 +SymCanStop = .bss:0x80981318; // type:object size:0x4 +SymCanUserPause = .bss:0x8098131C; // type:object size:0x4 +SymCancelArt = .bss:0x80981320; // type:object size:0x4 +SymCancelCurrentOperation = .bss:0x80981324; // type:object size:0x4 +SymCancelFind = .bss:0x80981328; // type:object size:0x4 +SymCancelLeaderboardTimer = .bss:0x8098132C; // type:object size:0x4 +SymCancelLinkingCode = .bss:0x80981330; // type:object size:0x4 +SymCancelMerge = .bss:0x80981334; // type:object size:0x4 +SymCancelProfile = .bss:0x80981338; // type:object size:0x4 +SymCancelWiiProfileSelector = .bss:0x8098133C; // type:object size:0x4 +SymCapsMode = .bss:0x80981340; // type:object size:0x4 +SymCaptureAfter = .bss:0x80981344; // type:object size:0x4 +SymCaptureBefore = .bss:0x80981348; // type:object size:0x4 +SymCareerAssetHint = .bss:0x8098134C; // type:object size:0x4 data:4byte +SymCareerAssetOr = .bss:0x80981350; // type:object size:0x4 data:4byte +SymCareerFills = .bss:0x80981354; // type:object size:0x4 +SymCareerHeaderCategory = .bss:0x80981358; // type:object size:0x4 data:4byte +SymCareerHeaderGroup = .bss:0x8098135C; // type:object size:0x4 data:4byte +SymCareerHeaderMain = .bss:0x80981360; // type:object size:0x4 data:4byte +SymCareerLevel = .bss:0x80981364; // type:object size:0x4 data:4byte +SymCareerLevel1 = .bss:0x80981368; // type:object size:0x4 data:4byte +SymCareerLevel2 = .bss:0x8098136C; // type:object size:0x4 data:4byte +SymCareerLevel3 = .bss:0x80981370; // type:object size:0x4 data:4byte +SymCareerLevel4 = .bss:0x80981374; // type:object size:0x4 data:4byte +SymCareerLevel5 = .bss:0x80981378; // type:object size:0x4 data:4byte +SymCareerLevel6 = .bss:0x8098137C; // type:object size:0x4 data:4byte +SymCareerLevel7 = .bss:0x80981380; // type:object size:0x4 data:4byte +SymCareerLevel8 = .bss:0x80981384; // type:object size:0x4 data:4byte +SymCareerScore = .bss:0x80981388; // type:object size:0x4 +SymCareerScoreCapped = .bss:0x8098138C; // type:object size:0x8 +SymCategory = .bss:0x80981394; // type:object size:0x4 data:4byte +SymCategoryProvider = .bss:0x80981398; // type:object size:0x4 +SymCellHeight = .bss:0x8098139C; // type:object size:0x4 +SymCellWidth = .bss:0x809813A0; // type:object size:0x8 +SymCenterWithLabel = .bss:0x809813A8; // type:object size:0x4 +SymCentered = .bss:0x809813AC; // type:object size:0x4 +SymCenternote = .bss:0x809813B0; // type:object size:0x8 +SymChainMultipliers = .bss:0x809813B8; // type:object size:0x4 data:4byte +SymChallengeSpecificData = .bss:0x809813BC; // type:object size:0x4 data:4byte +SymChallengeSuccess = .bss:0x809813C0; // type:object size:0x8 +SymChangeDifficulty = .bss:0x809813C8; // type:object size:0x4 +SymChangeFaceGroup = .bss:0x809813CC; // type:object size:0x4 +SymChangePropPath = .bss:0x809813D0; // type:object size:0x4 +SymChangedBy = .bss:0x809813D4; // type:object size:0x4 +SymChanges = .bss:0x809813D8; // type:object size:0x4 +SymChannel1 = .bss:0x809813DC; // type:object size:0x4 +SymChannel2 = .bss:0x809813E0; // type:object size:0x4 +SymChannels = .bss:0x809813E4; // type:object size:0x4 +SymCharCreatenew = .bss:0x809813E8; // type:object size:0x4 data:4byte +SymCharData = .bss:0x809813EC; // type:object size:0x4 data:4byte +SymCharFilePath = .bss:0x809813F0; // type:object size:0x4 +SymCharHeader = .bss:0x809813F4; // type:object size:0x4 data:4byte +SymCharPrefab = .bss:0x809813F8; // type:object size:0x8 data:4byte +SymCharacterEmptyname = .bss:0x80981400; // type:object size:0x4 data:4byte +SymCharacterName = .bss:0x80981404; // type:object size:0x4 +SymCharacterNamesFemale = .bss:0x80981408; // type:object size:0x4 data:4byte +SymCharacterNamesMale = .bss:0x8098140C; // type:object size:0x8 data:4byte +SymCharacters = .bss:0x80981414; // type:object size:0x4 +SymCharactersAreLoading = .bss:0x80981418; // type:object size:0x8 +SymCharClip = .bss:0x80981420; // type:object size:0x4 +SymCharClipSamples = .bss:0x80981424; // type:object size:0x4 +SymChars = .bss:0x80981428; // type:object size:0x4 +SymCharsDir = .bss:0x8098142C; // type:object size:0x4 +SymCharsInMap = .bss:0x80981430; // type:object size:0x8 +SymCharTransCopy = .bss:0x80981438; // type:object size:0x4 +SymCharTransDraw = .bss:0x8098143C; // type:object size:0x4 +SymCharWeightSetter = .bss:0x80981440; // type:object size:0x4 +SymCheatCycleChallenge = .bss:0x80981444; // type:object size:0x4 +SymCheatCycleSetlist = .bss:0x80981448; // type:object size:0x8 +SymCheatNextCampaignLevel = .bss:0x80981450; // type:object size:0xC +SymCheatSupported = .bss:0x8098145C; // type:object size:0x8 data:4byte +SymCheatToggleFinale = .bss:0x80981464; // type:object size:0x8 +SymCheatWinQuest = .bss:0x8098146C; // type:object size:0x4 +SymCheatWinTour = .bss:0x80981470; // type:object size:0xC +SymCheckContentSize = .bss:0x8098147C; // type:object size:0x8 +SymCheckForKickoutCondition = .bss:0x80981484; // type:object size:0x4 +SymCheckForTourGoals = .bss:0x80981488; // type:object size:0x8 +SymCheckIsLoaded = .bss:0x80981490; // type:object size:0x4 +SymCheckIsSynced = .bss:0x80981494; // type:object size:0x10 +SymCheckMesh = .bss:0x809814A4; // type:object size:0x4 data:4byte +SymCheckOut = .bss:0x809814A8; // type:object size:0x4 +SymCheckPoints = .bss:0x809814AC; // type:object size:0x4 +SymCheckProfileForMessageTicker = .bss:0x809814B0; // type:object size:0x4 +SymCheckProfileName = .bss:0x809814B4; // type:object size:0x4 +SymCheckProfileNameOnline = .bss:0x809814B8; // type:object size:0x4 +SymCheckPurchasable = .bss:0x809814BC; // type:object size:0x4 +SymCheckPurchaseSync = .bss:0x809814C0; // type:object size:0x8 +SymCheckRequestedDownloadSize = .bss:0x809814C8; // type:object size:0x4 +SymCheckTriggerAutoVocalsConfirm = .bss:0x809814CC; // type:object size:0x4 +SymChecked = .bss:0x809814D0; // type:object size:0x8 +SymChildren = .bss:0x809814D8; // type:object size:0x4 +SymChin = .bss:0x809814DC; // type:object size:0x4 data:4byte +SymChinHeight = .bss:0x809814E0; // type:object size:0x4 +SymChinNum = .bss:0x809814E4; // type:object size:0x4 +SymChinWidth = .bss:0x809814E8; // type:object size:0xC +SymChoosing = .bss:0x809814F4; // type:object size:0x4 data:4byte +SymChord = .bss:0x809814F8; // type:object size:0x4 data:4byte +SymChordFret = .bss:0x809814FC; // type:object size:0x8 data:4byte +SymChordLabel = .bss:0x80981504; // type:object size:0x4 data:4byte +SymChordLabelPosOffset = .bss:0x80981508; // type:object size:0x4 +SymChordSourceMesh = .bss:0x8098150C; // type:object size:0xC +SymChromaticAberrationOffset = .bss:0x80981518; // type:object size:0x4 +SymChromaticSharpen = .bss:0x8098151C; // type:object size:0x8 +SymChunkSize = .bss:0x80981524; // type:object size:0x4 data:4byte +SymCircular = .bss:0x80981528; // type:object size:0x4 +SymCity = .bss:0x8098152C; // type:object size:0x4 data:4byte +SymClampHeight = .bss:0x80981530; // type:object size:0x14 +SymCleanup = .bss:0x80981544; // type:object size:0x4 +SymCleanupAfterBackup = .bss:0x80981548; // type:object size:0x4 +SymClear = .bss:0x8098154C; // type:object size:0x4 +SymClear3DCrowd = .bss:0x80981550; // type:object size:0x4 +SymClearActionToken = .bss:0x80981554; // type:object size:0x4 +SymClearActive = .bss:0x80981558; // type:object size:0x4 +SymClearAll = .bss:0x8098155C; // type:object size:0xC +SymClearAllParticles = .bss:0x80981568; // type:object size:0x8 +SymClearBones = .bss:0x80981570; // type:object size:0x4 +SymClearCallback = .bss:0x80981574; // type:object size:0x4 +SymClearCareerState = .bss:0x80981578; // type:object size:0x4 +SymClearColorB = .bss:0x8098157C; // type:object size:0x4 +SymClearColorG = .bss:0x80981580; // type:object size:0x4 +SymClearColorPacked = .bss:0x80981584; // type:object size:0x4 +SymClearColorR = .bss:0x80981588; // type:object size:0x4 +SymClearContext = .bss:0x8098158C; // type:object size:0x4 +SymClearCreditsPending = .bss:0x80981590; // type:object size:0x4 +SymClearCriticalUser = .bss:0x80981594; // type:object size:0x4 +SymClearCurrentBoutique = .bss:0x80981598; // type:object size:0x4 +SymClearCurrentClosetPanel = .bss:0x8098159C; // type:object size:0x4 +SymClearCurrentGoal = .bss:0x809815A0; // type:object size:0x4 +SymClearCurrentLesson = .bss:0x809815A4; // type:object size:0x4 +SymClearCurrentPreview = .bss:0x809815A8; // type:object size:0x4 +SymClearCurrentQuest = .bss:0x809815AC; // type:object size:0x8 +SymClearDrawGlitch = .bss:0x809815B4; // type:object size:0x4 +SymClearDwcError = .bss:0x809815B8; // type:object size:0x8 +SymClearEvents = .bss:0x809815C0; // type:object size:0x4 +SymClearExternalBlock = .bss:0x809815C4; // type:object size:0x4 +SymClearFilter = .bss:0x809815C8; // type:object size:0x4 +SymClearFirstNewAward = .bss:0x809815CC; // type:object size:0x4 +SymClearFirstNewRewardVignette = .bss:0x809815D0; // type:object size:0x4 +SymClearFromCache = .bss:0x809815D4; // type:object size:0x4 +SymClearGems = .bss:0x809815D8; // type:object size:0x4 +SymClearGoalInfo = .bss:0x809815DC; // type:object size:0x4 +SymClearGroup = .bss:0x809815E0; // type:object size:0x4 +SymClearHideList = .bss:0x809815E4; // type:object size:0x8 +SymClearHitStats = .bss:0x809815EC; // type:object size:0x4 +SymClearInstrument = .bss:0x809815F0; // type:object size:0x8 +SymClearLayer = .bss:0x809815F8; // type:object size:0x4 +SymClearList = .bss:0x809815FC; // type:object size:0x8 +SymClearNandContents = .bss:0x80981604; // type:object size:0x4 +SymClearNetError = .bss:0x80981608; // type:object size:0x4 +SymClearNewRewardVignetteFestival = .bss:0x8098160C; // type:object size:0x4 +SymClearNewStars = .bss:0x80981610; // type:object size:0x4 +SymClearObjects = .bss:0x80981614; // type:object size:0x4 +SymClearPendingInvitations = .bss:0x80981618; // type:object size:0x4 +SymClearPerformer = .bss:0x8098161C; // type:object size:0x4 +SymClearProfile = .bss:0x80981620; // type:object size:0x8 +SymClearScoreHistories = .bss:0x80981628; // type:object size:0x4 +SymClearSelections = .bss:0x8098162C; // type:object size:0x4 +SymClearSetlist = .bss:0x80981630; // type:object size:0x4 +SymClearSticker = .bss:0x80981634; // type:object size:0x4 +SymClearSymbolKeys = .bss:0x80981638; // type:object size:0x4 +SymClearSymbolKeysInRange = .bss:0x8098163C; // type:object size:0x4 +SymClearTasks = .bss:0x80981640; // type:object size:0x8 +SymClearTubes = .bss:0x80981648; // type:object size:0x4 +SymClearUser = .bss:0x8098164C; // type:object size:0x4 +SymClearVenues = .bss:0x80981650; // type:object size:0x4 +SymClearVram = .bss:0x80981654; // type:object size:0x4 data:4byte +SymClearWiiprofileCreatePending = .bss:0x80981658; // type:object size:0x4 +SymClickCheat = .bss:0x8098165C; // type:object size:0x4 +SymClip = .bss:0x80981660; // type:object size:0x10 +SymClipType = .bss:0x80981670; // type:object size:0xC +SymClips = .bss:0x8098167C; // type:object size:0x4 +SymClockwise = .bss:0x80981680; // type:object size:0x8 +SymCloseNintendoConnection = .bss:0x80981688; // type:object size:0xC +SymClosetTeleport = .bss:0x80981694; // type:object size:0x4 +SymCoda = .bss:0x80981698; // type:object size:0x4 +SymCodaBlown = .bss:0x8098169C; // type:object size:0x4 +SymCodaEnd = .bss:0x809816A0; // type:object size:0x4 +SymCodaEndScript = .bss:0x809816A4; // type:object size:0x4 +SymCodaFail = .bss:0x809816A8; // type:object size:0x4 +SymCodaPoints = .bss:0x809816AC; // type:object size:0x4 data:4byte +SymCodaSuccess = .bss:0x809816B0; // type:object size:0x4 +SymCode = .bss:0x809816B4; // type:object size:0x8 data:4byte +SymCoeff = .bss:0x809816BC; // type:object size:0x4 +SymCoeffs = .bss:0x809816C0; // type:object size:0xC +SymCollides = .bss:0x809816CC; // type:object size:0x4 +SymColor = .bss:0x809816D0; // type:object size:0x4 +SymColorFade = .bss:0x809816D4; // type:object size:0x4 +SymColorIdx = .bss:0x809816D8; // type:object size:0x4 +SymColorOverride = .bss:0x809816DC; // type:object size:0x4 +SymColorOwner = .bss:0x809816E0; // type:object size:0x4 +SymColorPalette = .bss:0x809816E4; // type:object size:0x4 +SymColor0 = .bss:0x809816E8; // type:object size:0x4 +SymColor1 = .bss:0x809816EC; // type:object size:0x4 +SymColor1Option = .bss:0x809816F0; // type:object size:0x4 +SymColor1Palette = .bss:0x809816F4; // type:object size:0x4 +SymColor2 = .bss:0x809816F8; // type:object size:0x4 +SymColor2Option = .bss:0x809816FC; // type:object size:0x4 +SymColor2Palette = .bss:0x80981700; // type:object size:0x4 +SymColors = .bss:0x80981704; // type:object size:0x4 +SymCombinedLabel = .bss:0x80981708; // type:object size:0x4 data:4byte +SymComesBefore = .bss:0x8098170C; // type:object size:0x4 +SymCommand = .bss:0x80981710; // type:object size:0x4 data:4byte +SymCommerceErrorCode = .bss:0x80981714; // type:object size:0x4 +SymCommercePercent = .bss:0x80981718; // type:object size:0x4 +SymCompRatio = .bss:0x8098171C; // type:object size:0x4 +SymCompareEdgeVerts = .bss:0x80981720; // type:object size:0x4 +SymComplete = .bss:0x80981724; // type:object size:0x4 +SymCompleteLesson = .bss:0x80981728; // type:object size:0x4 +SymCompleteQuest = .bss:0x8098172C; // type:object size:0x4 +SymCompletedDoubleHarmonies = .bss:0x80981730; // type:object size:0x4 data:4byte +SymCompletedTripleHarmonies = .bss:0x80981734; // type:object size:0x10 data:4byte +SymCompositeTexture = .bss:0x80981744; // type:object size:0x8 +SymCompressTextures = .bss:0x8098174C; // type:object size:0x4 +SymCompression = .bss:0x80981750; // type:object size:0x4 +SymComputeAo = .bss:0x80981754; // type:object size:0x8 +SymConceal = .bss:0x8098175C; // type:object size:0x4 +SymConcealAnim = .bss:0x80981760; // type:object size:0x4 +SymConcealEntryDelay = .bss:0x80981764; // type:object size:0x4 +SymConcealScale = .bss:0x80981768; // type:object size:0x4 +SymConcealSound = .bss:0x8098176C; // type:object size:0x4 +SymConcealSoundDelay = .bss:0x80981770; // type:object size:0x4 +SymConcealStartDelay = .bss:0x80981774; // type:object size:0x4 +SymConditions = .bss:0x80981778; // type:object size:0x4 data:4byte +SymConfig = .bss:0x8098177C; // type:object size:0x4 +SymConfigurableMesh = .bss:0x80981780; // type:object size:0x4 +SymConfigurableObjects = .bss:0x80981784; // type:object size:0x4 +SymConfiguration = .bss:0x80981788; // type:object size:0x8 +SymConfigureMesh = .bss:0x80981790; // type:object size:0x4 +SymConfigureTracks = .bss:0x80981794; // type:object size:0x4 +SymConfirm = .bss:0x80981798; // type:object size:0x4 +SymConfirmChooseDiff = .bss:0x8098179C; // type:object size:0x4 +SymConfirmKick = .bss:0x809817A0; // type:object size:0x4 +SymConfirmSwapUserProfile = .bss:0x809817A4; // type:object size:0x4 +SymConnectedControllerSym = .bss:0x809817A8; // type:object size:0x4 +SymConnectedControllerType = .bss:0x809817AC; // type:object size:0x4 +SymConnectedTriggers = .bss:0x809817B0; // type:object size:0x4 data:4byte +SymConnectionStatusChanged = .bss:0x809817B4; // type:object size:0x4 data:4byte +SymConnections = .bss:0x809817B8; // type:object size:0x10 +SymConstrainWrist = .bss:0x809817C8; // type:object size:0x4 +SymConstraints = .bss:0x809817CC; // type:object size:0x4 +SymContent = .bss:0x809817D0; // type:object size:0xC data:4byte +SymContentName = .bss:0x809817DC; // type:object size:0x4 +SymContentNameFromSym = .bss:0x809817E0; // type:object size:0x4 +SymContext = .bss:0x809817E4; // type:object size:0x14 +SymContourCrossSection = .bss:0x809817F8; // type:object size:0x4 +SymContrast = .bss:0x809817FC; // type:object size:0x4 +SymControllerInfluence = .bss:0x80981800; // type:object size:0x4 +SymControllerList = .bss:0x80981804; // type:object size:0x4 +SymControllerMapping = .bss:0x80981808; // type:object size:0x4 data:4byte +SymControllerType = .bss:0x8098180C; // type:object size:0x4 +SymControllers = .bss:0x80981810; // type:object size:0x8 data:4byte +SymConvertFrames = .bss:0x80981818; // type:object size:0x8 +SymConvertToLayerIndex = .bss:0x80981820; // type:object size:0x4 +SymCoopBg = .bss:0x80981824; // type:object size:0x4 data:4byte +SymCoopBk = .bss:0x80981828; // type:object size:0x4 data:4byte +SymCoopGk = .bss:0x8098182C; // type:object size:0xC data:4byte +SymCopyBoundingSphere = .bss:0x80981838; // type:object size:0x4 +SymCopyCats = .bss:0x8098183C; // type:object size:0x8 +SymCopyFromPatch = .bss:0x80981844; // type:object size:0x8 +SymCopyKeys = .bss:0x8098184C; // type:object size:0x4 +SymCopyLocalTo = .bss:0x80981850; // type:object size:0x4 +SymCopyPrefab = .bss:0x80981854; // type:object size:0x4 +SymCopySphere = .bss:0x80981858; // type:object size:0x4 +SymCopyToPatch = .bss:0x8098185C; // type:object size:0x4 +SymCores = .bss:0x80981860; // type:object size:0x8 data:4byte +SymCostStr = .bss:0x80981868; // type:object size:0x4 +SymCountUp = .bss:0x8098186C; // type:object size:0x8 +SymCoverArtistFmt = .bss:0x80981874; // type:object size:0x8 data:4byte +SymCrash = .bss:0x8098187C; // type:object size:0x4 data:4byte +SymCrashFill = .bss:0x80981880; // type:object size:0x4 +SymCreateBattle = .bss:0x80981884; // type:object size:0x4 +SymCreateBattleSuccess = .bss:0x80981888; // type:object size:0x4 data:4byte +SymCreateController = .bss:0x8098188C; // type:object size:0x4 +SymCreateLayer = .bss:0x80981890; // type:object size:0x4 data:4byte +SymCreateProfile = .bss:0x80981894; // type:object size:0x4 +SymCreateSetlist = .bss:0x80981898; // type:object size:0x4 +SymCreateSetlistSuccess = .bss:0x8098189C; // type:object size:0x4 data:4byte +SymCreateVfCache = .bss:0x809818A0; // type:object size:0x4 +SymCredits = .bss:0x809818A4; // type:object size:0x4 +SymCriticalUserDropOut = .bss:0x809818A8; // type:object size:0x4 data:4byte +SymCrossfadeDuration = .bss:0x809818AC; // type:object size:0x4 data:4byte +SymCrowd = .bss:0x809818B0; // type:object size:0x8 +SymCrowdChannels = .bss:0x809818B8; // type:object size:0x4 data:4byte +SymCrowdClap = .bss:0x809818BC; // type:object size:0x8 +SymCrowdNoclap = .bss:0x809818C4; // type:object size:0x4 +SymCrowdRating = .bss:0x809818C8; // type:object size:0x4 +SymCrowdRatingActive = .bss:0x809818CC; // type:object size:0x4 +SymCrowdReacts = .bss:0x809818D0; // type:object size:0x4 +SymCrowdRotate = .bss:0x809818D4; // type:object size:0x4 +SymCrowds = .bss:0x809818D8; // type:object size:0xC +SymCubeTex = .bss:0x809818E4; // type:object size:0xC +SymCurBeat = .bss:0x809818F0; // type:object size:0xC +SymCurOffer = .bss:0x809818FC; // type:object size:0x4 +SymCurPostprocs = .bss:0x80981900; // type:object size:0x4 +SymCurShot = .bss:0x80981904; // type:object size:0x4 +SymCurSpot = .bss:0x80981908; // type:object size:0x4 +SymCurWorld = .bss:0x8098190C; // type:object size:0x4 +SymCurrent = .bss:0x80981910; // type:object size:0x4 +SymCurrentBackup = .bss:0x80981914; // type:object size:0x4 +SymCurrentDialogEvent = .bss:0x80981918; // type:object size:0x10 +SymCurrentNotesHitFraction = .bss:0x80981928; // type:object size:0x4 +SymCurrentOffer = .bss:0x8098192C; // type:object size:0x4 +SymCurrentOfferUpgrade = .bss:0x80981930; // type:object size:0x4 +SymCurrentPoints = .bss:0x80981934; // type:object size:0x4 +SymCurrentQuest = .bss:0x80981938; // type:object size:0x4 +SymCurrentQuestDescription = .bss:0x8098193C; // type:object size:0x4 +SymCurrentQuestDisplayName = .bss:0x80981940; // type:object size:0x4 +SymCurrentQuestFilter = .bss:0x80981944; // type:object size:0x4 +SymCurrentQuestLongDescription = .bss:0x80981948; // type:object size:0x4 +SymCurrentScreen = .bss:0x8098194C; // type:object size:0x4 +SymCurrentScreenChanged = .bss:0x80981950; // type:object size:0x4 +SymCurrentShot = .bss:0x80981954; // type:object size:0x4 +SymCurrentSong = .bss:0x80981958; // type:object size:0x4 data:4byte +SymCurrentStreak = .bss:0x8098195C; // type:object size:0x8 +SymCurrentTransitionEvent = .bss:0x80981964; // type:object size:0x4 +SymCurrentValue = .bss:0x80981968; // type:object size:0x8 +SymCustom = .bss:0x80981970; // type:object size:0x4 +SymCustomColors = .bss:0x80981974; // type:object size:0x4 +SymCustomLocation = .bss:0x80981978; // type:object size:0x4 data:4byte +SymCustomMusicLibraryTasks = .bss:0x8098197C; // type:object size:0x4 data:4byte +SymCustomizeAssetProgress = .bss:0x80981980; // type:object size:0x4 data:4byte +SymCutouts = .bss:0x80981984; // type:object size:0x4 +SymCycleCamera = .bss:0x80981988; // type:object size:0x10 +SymCycleMode = .bss:0x80981998; // type:object size:0x4 +SymCycleNextMessage = .bss:0x8098199C; // type:object size:0x8 +SymCycleShot = .bss:0x809819A4; // type:object size:0x4 +SymCycleTimeMs = .bss:0x809819A8; // type:object size:0xC +SymCymbalGemCount = .bss:0x809819B4; // type:object size:0x4 data:4byte +SymCymbalGemsHitOnCymbals = .bss:0x809819B8; // type:object size:0x4 data:4byte +SymCymbalGemsHitOnPads = .bss:0x809819BC; // type:object size:0x4 data:4byte +SymCymbalShiftButton = .bss:0x809819C0; // type:object size:0x4 data:4byte +SymDamping = .bss:0x809819C4; // type:object size:0x4 +SymDampingConstant = .bss:0x809819C8; // type:object size:0x10 +SymDartRulesetOverride = .bss:0x809819D8; // type:object size:0x4 +SymData = .bss:0x809819DC; // type:object size:0x4 +SymDataError = .bss:0x809819E0; // type:object size:0x4 data:4byte +SymDataIndex = .bss:0x809819E4; // type:object size:0x10 +SymDate = .bss:0x809819F4; // type:object size:0xC data:4byte +SymDebug = .bss:0x80981A00; // type:object size:0x18 +SymDebugDraw = .bss:0x80981A18; // type:object size:0x10 +SymDebugGetControllerTypeOverride = .bss:0x80981A28; // type:object size:0x4 +SymDebugGetUserFromPad = .bss:0x80981A2C; // type:object size:0x4 +SymDebugParsers = .bss:0x80981A30; // type:object size:0x8 +SymDebugSetControllerTypeOverride = .bss:0x80981A38; // type:object size:0x10 +SymDecayRate = .bss:0x80981A48; // type:object size:0x4 +SymDeclineInvitation = .bss:0x80981A4C; // type:object size:0xC +SymDefaultBitmapPath = .bss:0x80981A58; // type:object size:0x4 data:4byte +SymDefaultBlend = .bss:0x80981A5C; // type:object size:0x4 +SymDefaultCam = .bss:0x80981A60; // type:object size:0x4 +SymDefaultClipOrGroup = .bss:0x80981A64; // type:object size:0x4 +SymDefaultColor = .bss:0x80981A68; // type:object size:0x4 +SymDefaultEnabled = .bss:0x80981A6C; // type:object size:0x4 data:4byte +SymDefaultLoop = .bss:0x80981A70; // type:object size:0x4 +SymDefaultMat = .bss:0x80981A74; // type:object size:0x4 +SymDefaultPlayStarved = .bss:0x80981A78; // type:object size:0x4 +SymDefaultRankedMatch = .bss:0x80981A7C; // type:object size:0x4 +SymDefaultServer = .bss:0x80981A80; // type:object size:0x4 data:4byte +SymDefaultType = .bss:0x80981A84; // type:object size:0x4 data:4byte +SymDefaultValue = .bss:0x80981A88; // type:object size:0x4 data:4byte +SymDelay = .bss:0x80981A8C; // type:object size:0x4 data:4byte +SymDelayMs = .bss:0x80981A90; // type:object size:0x4 +SymDelayTime = .bss:0x80981A94; // type:object size:0x4 +SymDelayedEffect = .bss:0x80981A98; // type:object size:0x4 data:4byte +SymDeleteCharacter = .bss:0x80981A9C; // type:object size:0x4 +SymDeleteContent = .bss:0x80981AA0; // type:object size:0x4 +SymDeleteFailed = .bss:0x80981AA4; // type:object size:0x4 +SymDeleteFreeCam = .bss:0x80981AA8; // type:object size:0x4 +SymDeleteHighlightedSetlist = .bss:0x80981AAC; // type:object size:0x4 +SymDeleteLoader = .bss:0x80981AB0; // type:object size:0xC +SymDeleteOrphanedProfiles = .bss:0x80981ABC; // type:object size:0x4 +SymDeletePack = .bss:0x80981AC0; // type:object size:0x4 +SymDeleteRemaining = .bss:0x80981AC4; // type:object size:0x4 +SymDeleteSaves = .bss:0x80981AC8; // type:object size:0xC +SymDelta = .bss:0x80981AD4; // type:object size:0x4 +SymDeltaBeat = .bss:0x80981AD8; // type:object size:0x4 +SymDeltaChanged = .bss:0x80981ADC; // type:object size:0x4 +SymDeltaSeconds = .bss:0x80981AE0; // type:object size:0x4 +SymDeltaSize = .bss:0x80981AE4; // type:object size:0x4 +SymDeltaTutorialSeconds = .bss:0x80981AE8; // type:object size:0x4 +SymDemandLoad = .bss:0x80981AEC; // type:object size:0x4 +SymDemo = .bss:0x80981AF0; // type:object size:0x18 data:4byte +SymDensity = .bss:0x80981B08; // type:object size:0x8 +SymDeploy = .bss:0x80981B10; // type:object size:0x8 data:4byte +SymDeployCount = .bss:0x80981B18; // type:object size:0x4 +SymDeployCountTrackerProgress = .bss:0x80981B1C; // type:object size:0x4 +SymDeployCountTrackerProgress1 = .bss:0x80981B20; // type:object size:0x4 +SymDeployIfPossible = .bss:0x80981B24; // type:object size:0xC +SymDeployStatTrackerContribution = .bss:0x80981B30; // type:object size:0x4 data:4byte +SymDeployStatTrackerContribution1 = .bss:0x80981B34; // type:object size:0x4 data:4byte +SymDeployToSave = .bss:0x80981B38; // type:object size:0x4 data:4byte +SymDeployToSaveLefty = .bss:0x80981B3C; // type:object size:0x4 data:4byte +SymDeployTrig = .bss:0x80981B40; // type:object size:0x8 +SymDeploying = .bss:0x80981B48; // type:object size:0x4 +SymDepth = .bss:0x80981B4C; // type:object size:0x4 +SymDepthPct = .bss:0x80981B50; // type:object size:0x4 +SymDesc = .bss:0x80981B54; // type:object size:0x4 data:4byte +SymDescOverride = .bss:0x80981B58; // type:object size:0x4 data:4byte +SymDescription = .bss:0x80981B5C; // type:object size:0x4 data:4byte +SymDescriptionData = .bss:0x80981B60; // type:object size:0x4 +SymDeselect = .bss:0x80981B64; // type:object size:0xC +SymDesiredValue = .bss:0x80981B70; // type:object size:0x4 +SymDest = .bss:0x80981B74; // type:object size:0x4 data:4byte +SymDestPos = .bss:0x80981B78; // type:object size:0x4 +SymDestScreen = .bss:0x80981B7C; // type:object size:0x4 data:4byte +SymDestroyCommerce = .bss:0x80981B80; // type:object size:0x4 +SymDestructiveTransitionEvents = .bss:0x80981B84; // type:object size:0x4 data:4byte +SymDetailComponentParent = .bss:0x80981B88; // type:object size:0x4 data:4byte +SymDetailTypes = .bss:0x80981B8C; // type:object size:0x4 data:4byte +SymDetailsFooterSize = .bss:0x80981B90; // type:object size:0x4 data:4byte +SymDetailsPageSize = .bss:0x80981B94; // type:object size:0x4 data:4byte +SymDetailsScrollGroup = .bss:0x80981B98; // type:object size:0x4 data:4byte +SymDetailsScrollStep = .bss:0x80981B9C; // type:object size:0x8 data:4byte +SymDeu = .bss:0x80981BA4; // type:object size:0xC data:4byte +SymDialogEvents = .bss:0x80981BB0; // type:object size:0x4 data:4byte +SymDialogLabel = .bss:0x80981BB4; // type:object size:0x4 +SymDidMicsChange = .bss:0x80981BB8; // type:object size:0x4 +SymDidStorageChange = .bss:0x80981BBC; // type:object size:0x4 +SymDiff = .bss:0x80981BC0; // type:object size:0x4 +SymDiffLabels = .bss:0x80981BC4; // type:object size:0x4 data:4byte +SymDifficulty = .bss:0x80981BC8; // type:object size:0x4 data:4byte +SymDifficultyAnim = .bss:0x80981BCC; // type:object size:0x4 data:4byte +SymDifficultyToken = .bss:0x80981BD0; // type:object size:0x4 data:4byte +SymDiffuseTex = .bss:0x80981BD4; // type:object size:0x4 +SymDiffusion = .bss:0x80981BD8; // type:object size:0x4 +SymDim = .bss:0x80981BDC; // type:object size:0x4 data:4byte +SymDir = .bss:0x80981BE0; // type:object size:0x8 +SymDirty = .bss:0x80981BE8; // type:object size:0x4 +SymDisable = .bss:0x80981BEC; // type:object size:0x4 data:4byte +SymDisableAll = .bss:0x80981BF0; // type:object size:0x4 +SymDisableAutosave = .bss:0x80981BF4; // type:object size:0x4 +SymDisableController = .bss:0x80981BF8; // type:object size:0x4 +SymDisableData = .bss:0x80981BFC; // type:object size:0x14 +SymDisableFills = .bss:0x80981C10; // type:object size:0x4 +SymDisableFillsDeployBandEnergy = .bss:0x80981C14; // type:object size:0x8 +SymDisablePauseMs = .bss:0x80981C1C; // type:object size:0x4 data:4byte +SymDisablePhraseBonus = .bss:0x80981C20; // type:object size:0x4 +SymDisablePicking = .bss:0x80981C24; // type:object size:0x4 +SymDisablePlayer = .bss:0x80981C28; // type:object size:0xC +SymDisableSlot = .bss:0x80981C34; // type:object size:0x8 +SymDisabled = .bss:0x80981C3C; // type:object size:0x4 +SymDisabledColor = .bss:0x80981C40; // type:object size:0x4 +SymDisband = .bss:0x80981C44; // type:object size:0x4 data:4byte +SymDisbandError = .bss:0x80981C48; // type:object size:0x4 data:4byte +SymDiscError = .bss:0x80981C4C; // type:object size:0x4 data:4byte +SymDiscUpdate = .bss:0x80981C50; // type:object size:0x8 data:4byte +SymDisconnect = .bss:0x80981C58; // type:object size:0x4 +SymDisconnectedAtStart = .bss:0x80981C5C; // type:object size:0x4 +SymDisconnectedTriggers = .bss:0x80981C60; // type:object size:0x4 data:4byte +SymDismissCymbalMessage = .bss:0x80981C64; // type:object size:0x4 +SymDismissDialogEvent = .bss:0x80981C68; // type:object size:0x4 +SymDismissTransitionEvent = .bss:0x80981C6C; // type:object size:0xC +SymDisplayChord = .bss:0x80981C78; // type:object size:0x4 +SymDisplayCrowdRating = .bss:0x80981C7C; // type:object size:0xC +SymDisplayMode = .bss:0x80981C88; // type:object size:0x8 +SymDisplayNum = .bss:0x80981C90; // type:object size:0x4 +SymDisplayRate = .bss:0x80981C94; // type:object size:0x8 data:4byte +SymDistAmount = .bss:0x80981C9C; // type:object size:0x8 +SymDistribute = .bss:0x80981CA4; // type:object size:0x4 +SymDistributeChildren = .bss:0x80981CA8; // type:object size:0x4 +SymDlc = .bss:0x80981CAC; // type:object size:0x4 data:4byte +SymDlcContent = .bss:0x80981CB0; // type:object size:0x4 data:4byte +SymDlcRestoreCorrupt = .bss:0x80981CB4; // type:object size:0x4 data:4byte +SymDlcRestoreCorruptName = .bss:0x80981CB8; // type:object size:0x4 data:4byte +SymDlcRestoreFailed = .bss:0x80981CBC; // type:object size:0x4 data:4byte +SymDlcRestoreFailedName = .bss:0x80981CC0; // type:object size:0x4 data:4byte +SymDlcRestoreIncompatible = .bss:0x80981CC4; // type:object size:0x8 data:4byte +SymDlcRestoreNolicense = .bss:0x80981CCC; // type:object size:0x8 data:4byte +SymDlcRestoreOutofdate = .bss:0x80981CD4; // type:object size:0x4 data:4byte +SymDlcRestoreSdcardremoved = .bss:0x80981CD8; // type:object size:0x4 data:4byte +SymDlcRestoreCorruptContent = .bss:0x80981CDC; // type:object size:0x4 data:4byte +SymDoNotCompress = .bss:0x80981CE0; // type:object size:0x4 +SymDoesAnyUserHaveOnlinePrivilege = .bss:0x80981CE4; // type:object size:0x8 +SymDoesTourHaveLeaderboard = .bss:0x80981CEC; // type:object size:0x4 +SymDoesTourStatusExist = .bss:0x80981CF0; // type:object size:0x4 +SymDone = .bss:0x80981CF4; // type:object size:0x4 +SymDoneEditing = .bss:0x80981CF8; // type:object size:0xC +SymDoubleAwesomes = .bss:0x80981D04; // type:object size:0x4 +SymDoubleHarmonyHit = .bss:0x80981D08; // type:object size:0x4 data:4byte +SymDoubleHarmonyPhraseCount = .bss:0x80981D0C; // type:object size:0x4 data:4byte +SymDown = .bss:0x80981D10; // type:object size:0x4 +SymDownloadContent = .bss:0x80981D14; // type:object size:0x4 +SymDownloadPack = .bss:0x80981D18; // type:object size:0x4 +SymDownloadPreviewFile = .bss:0x80981D1C; // type:object size:0x4 +SymDrag = .bss:0x80981D20; // type:object size:0x4 +SymDraw = .bss:0x80981D24; // type:object size:0x4 +SymDrawGroup = .bss:0x80981D28; // type:object size:0x4 +SymDrawList = .bss:0x80981D2C; // type:object size:0x4 +SymDrawOnly = .bss:0x80981D30; // type:object size:0x4 +SymDrawOrder = .bss:0x80981D34; // type:object size:0x4 +SymDrawOverrides = .bss:0x80981D38; // type:object size:0x4 +SymDrawPreClear = .bss:0x80981D3C; // type:object size:0x8 +SymDrawSampleChord = .bss:0x80981D44; // type:object size:0x4 +SymDrawTab = .bss:0x80981D48; // type:object size:0x8 +SymDrawable = .bss:0x80981D50; // type:object size:0x4 +SymDraws = .bss:0x80981D54; // type:object size:0xC +SymDrive = .bss:0x80981D60; // type:object size:0x4 +SymDriver = .bss:0x80981D64; // type:object size:0x4 +SymDrum = .bss:0x80981D68; // type:object size:0x4 data:4byte +SymDrumBank = .bss:0x80981D6C; // type:object size:0x4 data:4byte +SymDrumFillResetTrig = .bss:0x80981D70; // type:object size:0x4 +SymDrumFreestyle = .bss:0x80981D74; // type:object size:0x4 data:4byte +SymDrumIntensity = .bss:0x80981D78; // type:object size:0x4 +SymDrumMash1Anim = .bss:0x80981D7C; // type:object size:0x4 +SymDrumMash2Anim = .bss:0x80981D80; // type:object size:0x4 +SymDrumMash2ndPassActivateAnim = .bss:0x80981D84; // type:object size:0x4 +SymDrumMash3Anim = .bss:0x80981D88; // type:object size:0x4 +SymDrumMash4Anim = .bss:0x80981D8C; // type:object size:0x4 +SymDrumMashHitAnimGrp = .bss:0x80981D90; // type:object size:0x4 +SymDrumPro = .bss:0x80981D94; // type:object size:0x4 data:4byte +SymDrumSolo = .bss:0x80981D98; // type:object size:0xC data:4byte +SymDrumVenue = .bss:0x80981DA4; // type:object size:0x4 +SymDrums = .bss:0x80981DA8; // type:object size:0x4 +SymDryGain = .bss:0x80981DAC; // type:object size:0x10 data:4byte +SymDump = .bss:0x80981DBC; // type:object size:0xC data:4byte +SymDumpLoadedDirs = .bss:0x80981DC8; // type:object size:0x8 +SymDumpPlates = .bss:0x80981DD0; // type:object size:0x18 +SymDupeLayer = .bss:0x80981DE8; // type:object size:0x4 +SymDuplicatePatch = .bss:0x80981DEC; // type:object size:0x4 +SymDuration = .bss:0x80981DF0; // type:object size:0x4 +SymDurationSeconds = .bss:0x80981DF4; // type:object size:0x8 +SymDynamicPrereqs = .bss:0x80981DFC; // type:object size:0x4 data:4byte +SymE3CheatAutoplay = .bss:0x80981E00; // type:object size:0x4 +SymEarlyLate = .bss:0x80981E04; // type:object size:0x4 +SymEarnAccomplishment = .bss:0x80981E08; // type:object size:0x4 +SymEarrings = .bss:0x80981E0C; // type:object size:0x4 +SymEasy = .bss:0x80981E10; // type:object size:0x4 data:4byte +SymEccentricity = .bss:0x80981E14; // type:object size:0x4 +SymEchoMsgs = .bss:0x80981E18; // type:object size:0x10 +SymEditLayer = .bss:0x80981E28; // type:object size:0x4 +SymEditLayerIdx = .bss:0x80981E2C; // type:object size:0x4 +SymEditSetlist = .bss:0x80981E30; // type:object size:0x4 data:4byte +SymEditSetlistSuccess = .bss:0x80981E34; // type:object size:0x8 data:4byte +SymEditingPatch = .bss:0x80981E3C; // type:object size:0x4 data:4byte +SymEditingSetlist = .bss:0x80981E40; // type:object size:0x4 +SymEditor = .bss:0x80981E44; // type:object size:0x8 data:4byte +SymEffectSelector = .bss:0x80981E4C; // type:object size:0x4 +SymEffector = .bss:0x80981E50; // type:object size:0x4 +SymEffectors = .bss:0x80981E54; // type:object size:0x4 +SymEgPercentFormat = .bss:0x80981E58; // type:object size:0x4 data:4byte +SymEighth = .bss:0x80981E5C; // type:object size:0x4 +SymElbow = .bss:0x80981E60; // type:object size:0x4 +SymElbowCollide = .bss:0x80981E64; // type:object size:0x4 +SymElbowSwing = .bss:0x80981E68; // type:object size:0x4 +SymElementSpacing = .bss:0x80981E6C; // type:object size:0x8 +SymEmissiveMap = .bss:0x80981E74; // type:object size:0x4 +SymEmissiveMultiplier = .bss:0x80981E78; // type:object size:0x4 +SymEmitRate = .bss:0x80981E7C; // type:object size:0x8 +SymEmptyBandEnergy = .bss:0x80981E84; // type:object size:0x4 +SymEmptyIconOverride = .bss:0x80981E88; // type:object size:0x4 +SymEmptyLayerIx = .bss:0x80981E8C; // type:object size:0x8 +SymEmptyStarPower = .bss:0x80981E94; // type:object size:0x4 +SymEmulateFps = .bss:0x80981E98; // type:object size:0x4 +SymEnable = .bss:0x80981E9C; // type:object size:0x4 data:4byte +SymEnableAutoVocals = .bss:0x80981EA0; // type:object size:0x4 +SymEnableAutosave = .bss:0x80981EA4; // type:object size:0x8 +SymEnableData = .bss:0x80981EAC; // type:object size:0x10 +SymEnableFills = .bss:0x80981EBC; // type:object size:0x4 +SymEnableFillsDeployBandEnergy = .bss:0x80981EC0; // type:object size:0x4 +SymEnableGuideTrack = .bss:0x80981EC4; // type:object size:0x8 +SymEnableMetronome = .bss:0x80981ECC; // type:object size:0x4 data:4byte +SymEnablePartScoring = .bss:0x80981ED0; // type:object size:0x4 +SymEnablePhraseBonus = .bss:0x80981ED4; // type:object size:0x4 +SymEnablePlayer = .bss:0x80981ED8; // type:object size:0x4 +SymEnableProfanityCheck = .bss:0x80981EDC; // type:object size:0x4 +SymEnableSfx = .bss:0x80981EE0; // type:object size:0x4 +SymEnableSlot = .bss:0x80981EE4; // type:object size:0x4 +SymEnableSwings = .bss:0x80981EE8; // type:object size:0x4 +SymEnableTime = .bss:0x80981EEC; // type:object size:0xC +SymEnabled = .bss:0x80981EF8; // type:object size:0x4 +SymEnabledAtStart = .bss:0x80981EFC; // type:object size:0x4 +SymEnabledState = .bss:0x80981F00; // type:object size:0x4 +SymEncoding = .bss:0x80981F04; // type:object size:0x4 data:4byte +SymEnd = .bss:0x80981F08; // type:object size:0x4 +SymEndAlpha = .bss:0x80981F0C; // type:object size:0x4 +SymEndAlphaHigh = .bss:0x80981F10; // type:object size:0x4 +SymEndAlphaLow = .bss:0x80981F14; // type:object size:0x4 +SymEndBeat = .bss:0x80981F18; // type:object size:0x8 +SymEndColor = .bss:0x80981F20; // type:object size:0x4 +SymEndColorHigh = .bss:0x80981F24; // type:object size:0x4 +SymEndColorLow = .bss:0x80981F28; // type:object size:0xC +SymEndFrame = .bss:0x80981F34; // type:object size:0x4 +SymEndGame = .bss:0x80981F38; // type:object size:0x4 +SymEndGameCrowdlevel = .bss:0x80981F3C; // type:object size:0x4 data:4byte +SymEndGameOverdrive = .bss:0x80981F40; // type:object size:0x4 data:4byte +SymEndGameScore = .bss:0x80981F44; // type:object size:0x14 data:4byte +SymEndOffset = .bss:0x80981F58; // type:object size:0x4 +SymEndOverrideFlow = .bss:0x80981F5C; // type:object size:0x4 +SymEndRank = .bss:0x80981F60; // type:object size:0x8 data:4byte +SymEndTest = .bss:0x80981F68; // type:object size:0x4 +SymEndTime = .bss:0x80981F6C; // type:object size:0x8 +SymEndgameAvgMultiplier = .bss:0x80981F74; // type:object size:0x4 data:4byte +SymEndgameFeedback = .bss:0x80981F78; // type:object size:0x4 +SymEndgameHitCount = .bss:0x80981F7C; // type:object size:0x4 data:4byte +SymEndgameNoteStreak = .bss:0x80981F80; // type:object size:0x4 +SymEndgamePhraseStreak = .bss:0x80981F84; // type:object size:0x4 +SymEndgamePlayerNoteshitFmt = .bss:0x80981F88; // type:object size:0x8 data:4byte +SymEng = .bss:0x80981F90; // type:object size:0x4 data:4byte +SymEnter = .bss:0x80981F94; // type:object size:0x4 data:4byte +SymEnterCloset = .bss:0x80981F98; // type:object size:0x4 +SymEnterCoda = .bss:0x80981F9C; // type:object size:0x4 +SymEnterVenue = .bss:0x80981FA0; // type:object size:0x4 +SymEnterVignette = .bss:0x80981FA4; // type:object size:0x14 +SymEnvOverride = .bss:0x80981FB8; // type:object size:0x8 +SymEnviron3D = .bss:0x80981FC0; // type:object size:0xC +SymEnvironment = .bss:0x80981FCC; // type:object size:0x4 +SymEnvironmentEntries = .bss:0x80981FD0; // type:object size:0x4 +SymEquipAward = .bss:0x80981FD4; // type:object size:0x4 +SymErrorBattleLimitReached = .bss:0x80981FD8; // type:object size:0x4 data:4byte +SymErrorFindPlayersWithAutoVocals = .bss:0x80981FDC; // type:object size:0x4 data:4byte +SymErrorMessage = .bss:0x80981FE0; // type:object size:0xC data:4byte +SymErrorSetlistDescriptionProfane = .bss:0x80981FEC; // type:object size:0x4 data:4byte +SymErrorSetlistLimitReached = .bss:0x80981FF0; // type:object size:0x4 data:4byte +SymErrorSetlistTitleProfane = .bss:0x80981FF4; // type:object size:0x4 data:4byte +SymErrorSetlistUnknown = .bss:0x80981FF8; // type:object size:0x4 data:4byte +SymEsl = .bss:0x80981FFC; // type:object size:0xC data:4byte +SymEvent = .bss:0x80982008; // type:object size:0x8 +SymEvents = .bss:0x80982010; // type:object size:0x8 +SymExcitement = .bss:0x80982018; // type:object size:0x8 +SymExists = .bss:0x80982020; // type:object size:0x4 +SymExitError = .bss:0x80982024; // type:object size:0x4 +SymExiting = .bss:0x80982028; // type:object size:0x4 +SymExpAttack = .bss:0x8098202C; // type:object size:0x4 +SymExpRatio = .bss:0x80982030; // type:object size:0x4 +SymExpRelease = .bss:0x80982034; // type:object size:0x4 +SymExpand = .bss:0x80982038; // type:object size:0x8 +SymExpert = .bss:0x80982040; // type:object size:0x4 +SymExpirationData = .bss:0x80982044; // type:object size:0x4 data:4byte +SymExportAll = .bss:0x80982048; // type:object size:0x8 +SymExposure = .bss:0x80982050; // type:object size:0x4 +SymExtendedCustomEntries = .bss:0x80982054; // type:object size:0x4 +SymExtendedLabelEntries = .bss:0x80982058; // type:object size:0x4 +SymExtendedMeshEntries = .bss:0x8098205C; // type:object size:0x4 +SymExtendedTriggers = .bss:0x80982060; // type:object size:0x4 data:4byte +SymExtent = .bss:0x80982064; // type:object size:0x4 +SymExtraAuthoring = .bss:0x80982068; // type:object size:0x10 data:4byte +SymExtras = .bss:0x80982078; // type:object size:0x4 +SymEye = .bss:0x8098207C; // type:object size:0x4 data:4byte +SymEyeColor = .bss:0x80982080; // type:object size:0x4 +SymEyeHeight = .bss:0x80982084; // type:object size:0x4 +SymEyeNum = .bss:0x80982088; // type:object size:0x4 +SymEyeRotation = .bss:0x8098208C; // type:object size:0x4 +SymEyeSeparation = .bss:0x80982090; // type:object size:0x4 +SymEyebrows = .bss:0x80982094; // type:object size:0x4 data:4byte +SymEyes = .bss:0x80982098; // type:object size:0x8 +SymFaceServo = .bss:0x809820A0; // type:object size:0x4 +SymFacehair = .bss:0x809820A4; // type:object size:0x4 data:4byte +SymFacehairProvider = .bss:0x809820A8; // type:object size:0x4 +SymFacetypeProvider = .bss:0x809820AC; // type:object size:0x8 +SymFacingCamera = .bss:0x809820B4; // type:object size:0x8 +SymFade = .bss:0x809820BC; // type:object size:0x4 +SymFadeEnd = .bss:0x809820C0; // type:object size:0x4 +SymFadeIn = .bss:0x809820C4; // type:object size:0x4 +SymFadeInTrigger = .bss:0x809820C8; // type:object size:0x4 data:4byte +SymFadeMax = .bss:0x809820CC; // type:object size:0x4 data:4byte +SymFadeOffset = .bss:0x809820D0; // type:object size:0x4 +SymFadeOut = .bss:0x809820D4; // type:object size:0x4 +SymFadeOutTrigger = .bss:0x809820D8; // type:object size:0x4 data:4byte +SymFadeRef = .bss:0x809820DC; // type:object size:0x8 +SymFadeSongIn = .bss:0x809820E4; // type:object size:0x4 +SymFadeSongOut = .bss:0x809820E8; // type:object size:0x8 +SymFadeStart = .bss:0x809820F0; // type:object size:0x4 +SymFaders = .bss:0x809820F4; // type:object size:0x4 +SymFail = .bss:0x809820F8; // type:object size:0x18 +SymFailedDeploy = .bss:0x80982110; // type:object size:0x4 +SymFailedFeedback = .bss:0x80982114; // type:object size:0x4 +SymFailedJoinInProgress = .bss:0x80982118; // type:object size:0x4 +SymFailedTask = .bss:0x8098211C; // type:object size:0x4 +SymFailureReward = .bss:0x80982120; // type:object size:0x4 data:4byte +SymFake = .bss:0x80982124; // type:object size:0x4 data:4byte +SymFakeComponentScroll = .bss:0x80982128; // type:object size:0x4 +SymFakeComponentSelect = .bss:0x8098212C; // type:object size:0x8 +SymFakeControllers = .bss:0x80982134; // type:object size:0x8 data:4byte +SymFakeEarnSelected = .bss:0x8098213C; // type:object size:0xC +SymFakeWin = .bss:0x80982148; // type:object size:0x4 +SymFalloffStart = .bss:0x8098214C; // type:object size:0x4 +SymFancy = .bss:0x80982150; // type:object size:0x4 +SymFarMap = .bss:0x80982154; // type:object size:0x4 +SymFarPlane = .bss:0x80982158; // type:object size:0x4 data:4byte +SymFastForward = .bss:0x8098215C; // type:object size:0x8 +SymFeedback = .bss:0x80982164; // type:object size:0xC +SymFeedbackPct = .bss:0x80982170; // type:object size:0x4 +SymFeedbackStateHarm1 = .bss:0x80982174; // type:object size:0x4 +SymFeedbackStateHarm2 = .bss:0x80982178; // type:object size:0x4 +SymFeedbackStateLead = .bss:0x8098217C; // type:object size:0x4 +SymFeet = .bss:0x80982180; // type:object size:0x4 +SymFemale = .bss:0x80982184; // type:object size:0x4 data:4byte +SymFemaleFeetNaked = .bss:0x80982188; // type:object size:0x4 +SymFemaleHandsNaked = .bss:0x8098218C; // type:object size:0x4 +SymFemalebraCotton = .bss:0x80982190; // type:object size:0x4 +SymFemaleundiesCotton = .bss:0x80982194; // type:object size:0x4 +SymFestival = .bss:0x80982198; // type:object size:0x4 +SymFestivalReward = .bss:0x8098219C; // type:object size:0x4 +SymFetchLinkingCode = .bss:0x809821A0; // type:object size:0x4 +SymFetchRecommendations = .bss:0x809821A4; // type:object size:0x4 +SymFflip = .bss:0x809821A8; // type:object size:0x4 +SymFieldOfView = .bss:0x809821AC; // type:object size:0x4 +SymFile = .bss:0x809821B0; // type:object size:0x8 data:4byte +SymFileExists = .bss:0x809821B8; // type:object size:0x4 +SymFilePath = .bss:0x809821BC; // type:object size:0xC +SymFillBandEnergy = .bss:0x809821C8; // type:object size:0x4 +SymFillColorsGrp = .bss:0x809821CC; // type:object size:0x8 +SymFillHit1Trig = .bss:0x809821D4; // type:object size:0x4 +SymFillHit2Trig = .bss:0x809821D8; // type:object size:0x4 +SymFillHit3Trig = .bss:0x809821DC; // type:object size:0x4 +SymFillHitCount = .bss:0x809821E0; // type:object size:0x8 +SymFillReset = .bss:0x809821E8; // type:object size:0x4 +SymFillStarPower = .bss:0x809821EC; // type:object size:0x4 +SymFillWithSafeWhite = .bss:0x809821F0; // type:object size:0x4 +SymFilter = .bss:0x809821F4; // type:object size:0x4 data:4byte +SymFilterAny = .bss:0x809821F8; // type:object size:0x4 data:4byte +SymFilterBones = .bss:0x809821FC; // type:object size:0x4 +SymFilterContext = .bss:0x80982200; // type:object size:0x4 +SymFilterDynamicArtist = .bss:0x80982204; // type:object size:0x4 +SymFilterFlags = .bss:0x80982208; // type:object size:0x8 +SymFilterNames = .bss:0x80982210; // type:object size:0x4 +SymFilterNone = .bss:0x80982214; // type:object size:0x4 data:4byte +SymFilterSettingDecades = .bss:0x80982218; // type:object size:0x4 data:4byte +SymFilterSettingDifficulties = .bss:0x8098221C; // type:object size:0x4 data:4byte +SymFilterSettingGenres = .bss:0x80982220; // type:object size:0x4 data:4byte +SymFilterSettingKeys = .bss:0x80982224; // type:object size:0x4 data:4byte +SymFilterSettingLengths = .bss:0x80982228; // type:object size:0x4 data:4byte +SymFilterSettingProGuitar = .bss:0x8098222C; // type:object size:0x4 data:4byte +SymFilterSettingRatings = .bss:0x80982230; // type:object size:0x4 data:4byte +SymFilterSettingSources = .bss:0x80982234; // type:object size:0x4 data:4byte +SymFilterSettingVocalParts = .bss:0x80982238; // type:object size:0x4 data:4byte +SymFilters = .bss:0x8098223C; // type:object size:0x8 data:4byte +SymFinalizeCharacter = .bss:0x80982244; // type:object size:0x4 +SymFinalizeStats = .bss:0x80982248; // type:object size:0x4 +SymFind = .bss:0x8098224C; // type:object size:0x4 +SymFindAlbum = .bss:0x80982250; // type:object size:0xC +SymFindClip = .bss:0x8098225C; // type:object size:0x4 +SymFindInterestObjects = .bss:0x80982260; // type:object size:0x8 +SymFindOffer = .bss:0x80982268; // type:object size:0x8 +SymFindPack = .bss:0x80982270; // type:object size:0x4 +SymFindPlayers = .bss:0x80982274; // type:object size:0x4 +SymFindPools = .bss:0x80982278; // type:object size:0x4 +SymFindShot = .bss:0x8098227C; // type:object size:0x4 +SymFindTarget = .bss:0x80982280; // type:object size:0x8 +SymFindingAdditionalContent = .bss:0x80982288; // type:object size:0x4 data:4byte +SymFindingAdditionalProgress = .bss:0x8098228C; // type:object size:0x4 data:4byte +SymFinger = .bss:0x80982290; // type:object size:0x4 +SymFingerSourceMesh = .bss:0x80982294; // type:object size:0x4 +SymFingersDown = .bss:0x80982298; // type:object size:0x4 +SymFingersUp = .bss:0x8098229C; // type:object size:0x4 +SymFinishCheckout = .bss:0x809822A0; // type:object size:0x4 +SymFinishCount = .bss:0x809822A4; // type:object size:0x4 +SymFinishCymbalSelection = .bss:0x809822A8; // type:object size:0x4 +SymFinishPatchEdit = .bss:0x809822AC; // type:object size:0x4 +SymFinishes = .bss:0x809822B0; // type:object size:0x8 data:4byte +SymFirst = .bss:0x809822B8; // type:object size:0x8 +SymFirstCharArtist = .bss:0x809822C0; // type:object size:0x4 +SymFirstCharName = .bss:0x809822C4; // type:object size:0x4 +SymFirstClip = .bss:0x809822C8; // type:object size:0x4 +SymFirstExtraOffer = .bss:0x809822CC; // type:object size:0x4 +SymFirstPlayingClip = .bss:0x809822D0; // type:object size:0x8 +SymFirstShowing = .bss:0x809822D8; // type:object size:0x4 +SymFirstSpot = .bss:0x809822DC; // type:object size:0x4 +SymFitType = .bss:0x809822E0; // type:object size:0x4 +SymFiveWayControllers = .bss:0x809822E4; // type:object size:0x10 data:4byte +SymFixedLength = .bss:0x809822F4; // type:object size:0x8 +SymFixedset1 = .bss:0x809822FC; // type:object size:0x4 data:4byte +SymFlagParser = .bss:0x80982300; // type:object size:0x4 +SymFlagString = .bss:0x80982304; // type:object size:0x4 +SymFlags = .bss:0x80982308; // type:object size:0x4 data:4byte +SymFlagsAny = .bss:0x8098230C; // type:object size:0x4 data:4byte +SymFlagsExact = .bss:0x80982310; // type:object size:0x4 +SymFlareEnabled = .bss:0x80982314; // type:object size:0x4 +SymFlareMaterial = .bss:0x80982318; // type:object size:0x4 +SymFlareOffset = .bss:0x8098231C; // type:object size:0x4 +SymFlareRange = .bss:0x80982320; // type:object size:0x4 +SymFlareSize = .bss:0x80982324; // type:object size:0x4 +SymFlareSteps = .bss:0x80982328; // type:object size:0x4 +SymFlareVisibilityTest = .bss:0x8098232C; // type:object size:0x8 +SymFlavor = .bss:0x80982334; // type:object size:0x4 data:4byte +SymFlickerIntensity = .bss:0x80982338; // type:object size:0x4 +SymFlickerSecsRange = .bss:0x8098233C; // type:object size:0x4 +SymFlip = .bss:0x80982340; // type:object size:0x4 +SymFlipX = .bss:0x80982344; // type:object size:0x4 +SymFlipY = .bss:0x80982348; // type:object size:0x4 +SymFloat = .bss:0x8098234C; // type:object size:0x4 data:4byte +SymFloatStars = .bss:0x80982350; // type:object size:0x4 +SymFloatTotalStars = .bss:0x80982354; // type:object size:0x10 +SymFocalTarget = .bss:0x80982364; // type:object size:0x4 +SymFocus = .bss:0x80982368; // type:object size:0x4 data:4byte +SymFocusAnim = .bss:0x8098236C; // type:object size:0x4 data:4byte +SymFocusBlurMultiplier = .bss:0x80982370; // type:object size:0x4 +SymFocusComponent = .bss:0x80982374; // type:object size:0x4 +SymFocusDelayMs = .bss:0x80982378; // type:object size:0x1C data:4byte +SymFocusName = .bss:0x80982394; // type:object size:0x4 +SymFocusPanel = .bss:0x80982398; // type:object size:0x8 +SymFocusStreakLengthMultiplier = .bss:0x809823A0; // type:object size:0x8 data:4byte +SymFocusedBackgroundGroup = .bss:0x809823A8; // type:object size:0x4 +SymFocusedColor = .bss:0x809823AC; // type:object size:0x4 +SymFogColor = .bss:0x809823B0; // type:object size:0x4 +SymFogEnable = .bss:0x809823B4; // type:object size:0x4 +SymFogEnd = .bss:0x809823B8; // type:object size:0x4 +SymFogStart = .bss:0x809823BC; // type:object size:0x4 +SymFont = .bss:0x809823C0; // type:object size:0x4 +SymFontCharset = .bss:0x809823C4; // type:object size:0x4 +SymFontMatVariation = .bss:0x809823C8; // type:object size:0x4 +SymFontName = .bss:0x809823CC; // type:object size:0x4 +SymFontPctSize = .bss:0x809823D0; // type:object size:0x4 +SymFontPixelSize = .bss:0x809823D4; // type:object size:0x4 +SymFontPointSize = .bss:0x809823D8; // type:object size:0x4 +SymFontQuality = .bss:0x809823DC; // type:object size:0x4 +SymFontStyle = .bss:0x809823E0; // type:object size:0xC +SymFontSupersample = .bss:0x809823EC; // type:object size:0x4 +SymFontToImportFrom = .bss:0x809823F0; // type:object size:0xC +SymForallKeyframes = .bss:0x809823FC; // type:object size:0x4 +SymForce = .bss:0x80982400; // type:object size:0x4 +SymForce3DCrowd = .bss:0x80982404; // type:object size:0x4 +SymForceBlink = .bss:0x80982408; // type:object size:0x4 +SymForceChooseIndex = .bss:0x8098240C; // type:object size:0x4 +SymForceCurrentInterp = .bss:0x80982410; // type:object size:0x4 +SymForceDeploy = .bss:0x80982414; // type:object size:0x4 +SymForceDir = .bss:0x80982418; // type:object size:0x4 +SymForceExit = .bss:0x8098241C; // type:object size:0x4 data:4byte +SymForceFill = .bss:0x80982420; // type:object size:0x4 +SymForceInterest = .bss:0x80982424; // type:object size:0x4 +SymForceInterestNamed = .bss:0x80982428; // type:object size:0x4 +SymForceLod = .bss:0x8098242C; // type:object size:0x4 +SymForceLogout = .bss:0x80982430; // type:object size:0x4 +SymForceMicGain = .bss:0x80982434; // type:object size:0x4 +SymForceMicOutputGain = .bss:0x80982438; // type:object size:0x8 +SymForceMips = .bss:0x80982440; // type:object size:0x4 +SymForceMixedMode = .bss:0x80982444; // type:object size:0x4 data:4byte +SymForceNextPlayIndex = .bss:0x80982448; // type:object size:0x14 +SymForcePreset = .bss:0x8098245C; // type:object size:0x8 +SymForceShot = .bss:0x80982464; // type:object size:0x8 +SymForceTwoPresets = .bss:0x8098246C; // type:object size:0x4 +SymForceVertical = .bss:0x80982470; // type:object size:0x4 +SymForeachActivePlayer = .bss:0x80982474; // type:object size:0x4 +SymForeachConfigurableObject = .bss:0x80982478; // type:object size:0x8 +SymForeachFrame = .bss:0x80982480; // type:object size:0x4 +SymForeachKeyframe = .bss:0x80982484; // type:object size:0x4 +SymForeachLocalPlayer = .bss:0x80982488; // type:object size:0x4 +SymForeachLocalUser = .bss:0x8098248C; // type:object size:0x4 +SymForeachMachine = .bss:0x80982490; // type:object size:0x8 +SymForeachPanel = .bss:0x80982498; // type:object size:0x4 +SymForeachPlayer = .bss:0x8098249C; // type:object size:0x4 +SymForeachScreen = .bss:0x809824A0; // type:object size:0x4 +SymForeachTarget = .bss:0x809824A4; // type:object size:0x10 +SymForeachTrack = .bss:0x809824B4; // type:object size:0x4 +SymForeachUser = .bss:0x809824B8; // type:object size:0x4 +SymForgetGenedFonts = .bss:0x809824BC; // type:object size:0x4 +SymForwardEvent = .bss:0x809824C0; // type:object size:0x8 +SymFrame = .bss:0x809824C8; // type:object size:0x4 +SymFrameDrive = .bss:0x809824CC; // type:object size:0x4 +SymFrameFromIndex = .bss:0x809824D0; // type:object size:0x4 +SymFrames = .bss:0x809824D4; // type:object size:0x4 +SymFramesBuffered = .bss:0x809824D8; // type:object size:0x4 +SymFramesPerSec = .bss:0x809824DC; // type:object size:0x4 +SymFre = .bss:0x809824E0; // type:object size:0x4 data:4byte +SymFreeze = .bss:0x809824E4; // type:object size:0x8 +SymFreezePose = .bss:0x809824EC; // type:object size:0x4 +SymFrequency = .bss:0x809824F0; // type:object size:0x4 data:4byte +SymFretHeight1 = .bss:0x809824F4; // type:object size:0x4 +SymFretHeight2 = .bss:0x809824F8; // type:object size:0x4 +SymFretHeight3 = .bss:0x809824FC; // type:object size:0x4 +SymFretHeight4 = .bss:0x80982500; // type:object size:0x4 +SymFretHeight5 = .bss:0x80982504; // type:object size:0x4 +SymFretHeight6 = .bss:0x80982508; // type:object size:0x4 +SymFretNum = .bss:0x8098250C; // type:object size:0x4 data:4byte +SymFretPosOffset0 = .bss:0x80982510; // type:object size:0x4 +SymFretPosOffset1 = .bss:0x80982514; // type:object size:0x4 +SymFretPosOffset2 = .bss:0x80982518; // type:object size:0x4 +SymFretPosOffset3 = .bss:0x8098251C; // type:object size:0x4 +SymFretPosOffset4 = .bss:0x80982520; // type:object size:0x4 +SymFriction = .bss:0x80982524; // type:object size:0x4 +SymFriendsScreenEvent = .bss:0x80982528; // type:object size:0x4 data:4byte +SymFront = .bss:0x8098252C; // type:object size:0x4 +SymFrozen = .bss:0x80982530; // type:object size:0x4 +SymFullCombo = .bss:0x80982534; // type:object size:0x4 +SymFunc = .bss:0x80982538; // type:object size:0x10 data:4byte +SymFxCore = .bss:0x80982548; // type:object size:0x4 +SymGainFocus = .bss:0x8098254C; // type:object size:0x4 data:4byte +SymGame = .bss:0x80982550; // type:object size:0x4 +SymGameCam = .bss:0x80982554; // type:object size:0x4 +SymGameLost = .bss:0x80982558; // type:object size:0x4 +SymGameOrigin = .bss:0x8098255C; // type:object size:0x4 data:4byte +SymGameOutro = .bss:0x80982560; // type:object size:0x4 +SymGameOver = .bss:0x80982564; // type:object size:0x8 +SymGameRules = .bss:0x8098256C; // type:object size:0x4 data:4byte +SymGameScreen = .bss:0x80982570; // type:object size:0x4 data:4byte +SymGameSkip = .bss:0x80982574; // type:object size:0x4 +SymGameType = .bss:0x80982578; // type:object size:0x4 +SymGameWon = .bss:0x8098257C; // type:object size:0x4 +SymGameWonFinale = .bss:0x80982580; // type:object size:0x8 +SymGamemode = .bss:0x80982588; // type:object size:0x8 +SymGateThreshold = .bss:0x80982590; // type:object size:0x4 +SymGatherUistats = .bss:0x80982594; // type:object size:0x8 data:4byte +SymGemMash0Anim = .bss:0x8098259C; // type:object size:0x4 +SymGemMash1Anim = .bss:0x809825A0; // type:object size:0x4 +SymGemMash2Anim = .bss:0x809825A4; // type:object size:0x4 +SymGemMash3Anim = .bss:0x809825A8; // type:object size:0x4 +SymGemMash4Anim = .bss:0x809825AC; // type:object size:0x8 +SymGemTrackDirId = .bss:0x809825B4; // type:object size:0x4 +SymGemTracksSize = .bss:0x809825B8; // type:object size:0x4 +SymGenHideList = .bss:0x809825BC; // type:object size:0x4 +SymGender = .bss:0x809825C0; // type:object size:0x4 data:4byte +SymGenderChanged = .bss:0x809825C4; // type:object size:0x4 +SymGenedFonts = .bss:0x809825C8; // type:object size:0x4 +SymGenerate = .bss:0x809825CC; // type:object size:0x4 +SymGenerateChordShape = .bss:0x809825D0; // type:object size:0x4 +SymGenerateOg = .bss:0x809825D4; // type:object size:0xC +SymGenerator = .bss:0x809825E0; // type:object size:0x4 data:4byte +SymGeneric = .bss:0x809825E4; // type:object size:0x8 +SymGenericString = .bss:0x809825EC; // type:object size:0x4 data:4byte +SymGenericUsb = .bss:0x809825F0; // type:object size:0x4 +SymGenre = .bss:0x809825F4; // type:object size:0x4 data:4byte +SymGeomOwner = .bss:0x809825F8; // type:object size:0xC +SymGetAccomplishmentDescription = .bss:0x80982604; // type:object size:0x4 +SymGetAccomplishmentFanvalueToken = .bss:0x80982608; // type:object size:0x4 +SymGetAccomplishmentName = .bss:0x8098260C; // type:object size:0x4 +SymGetAccomplishmentProgress = .bss:0x80982610; // type:object size:0x4 +SymGetAccuracy = .bss:0x80982614; // type:object size:0x4 +SymGetActiveScoreType = .bss:0x80982618; // type:object size:0x4 +SymGetAllUnlocked = .bss:0x8098261C; // type:object size:0x4 +SymGetAltmaterialVariations = .bss:0x80982620; // type:object size:0xC +SymGetAnnouncement = .bss:0x8098262C; // type:object size:0x8 +SymGetArtTex = .bss:0x80982634; // type:object size:0x4 +SymGetAssociatedUser = .bss:0x80982638; // type:object size:0x10 +SymGetAutoplayOffset = .bss:0x80982648; // type:object size:0x4 +SymGetAward = .bss:0x8098264C; // type:object size:0x4 +SymGetAwardDescription = .bss:0x80982650; // type:object size:0x4 +SymGetAwardIcon = .bss:0x80982654; // type:object size:0x4 +SymGetAwardName = .bss:0x80982658; // type:object size:0x4 +SymGetAwardReason = .bss:0x8098265C; // type:object size:0x4 +SymGetBackScreen = .bss:0x80982660; // type:object size:0x4 +SymGetBackgroundVolume = .bss:0x80982664; // type:object size:0x4 +SymGetBackgroundVolumeDb = .bss:0x80982668; // type:object size:0x4 +SymGetBandLogoTex = .bss:0x8098266C; // type:object size:0x4 +SymGetBandName = .bss:0x80982670; // type:object size:0x8 +SymGetBaseSongStars = .bss:0x80982678; // type:object size:0x4 +SymGetBassBoost = .bss:0x8098267C; // type:object size:0x4 +SymGetBattleInstrumentMask = .bss:0x80982680; // type:object size:0x4 +SymGetBattleName = .bss:0x80982684; // type:object size:0x4 +SymGetBattleScore = .bss:0x80982688; // type:object size:0x8 +SymGetBestPercentage = .bss:0x80982690; // type:object size:0x4 +SymGetBitmapList = .bss:0x80982694; // type:object size:0x4 +SymGetBitmapPath = .bss:0x80982698; // type:object size:0x4 +SymGetBlocksAfterDownload = .bss:0x8098269C; // type:object size:0x4 +SymGetBookmarkers = .bss:0x809826A0; // type:object size:0x4 +SymGetBronzeMedalGoal = .bss:0x809826A4; // type:object size:0x4 +SymGetBronzeMedalIcon = .bss:0x809826A8; // type:object size:0x4 +SymGetBuild = .bss:0x809826AC; // type:object size:0x4 +SymGetByline = .bss:0x809826B0; // type:object size:0x4 +SymGetCalibrationMode = .bss:0x809826B4; // type:object size:0x4 +SymGetCampaignLevel = .bss:0x809826B8; // type:object size:0x4 +SymGetCampaignLevelAdvertisement = .bss:0x809826BC; // type:object size:0x4 +SymGetCampaignLevelIcon = .bss:0x809826C0; // type:object size:0x4 +SymGetCareerScore = .bss:0x809826C4; // type:object size:0x4 +SymGetCareerState = .bss:0x809826C8; // type:object size:0x4 +SymGetCatList = .bss:0x809826CC; // type:object size:0x4 +SymGetCategoryGroup = .bss:0x809826D0; // type:object size:0x8 +SymGetChallengeName = .bss:0x809826D8; // type:object size:0x4 +SymGetChallengeRestriction = .bss:0x809826DC; // type:object size:0x4 +SymGetChallengestars = .bss:0x809826E0; // type:object size:0x4 +SymGetChannel = .bss:0x809826E4; // type:object size:0x8 +SymGetCharProvider = .bss:0x809826EC; // type:object size:0x4 +SymGetCharacter = .bss:0x809826F0; // type:object size:0x8 +SymGetCheatMetaLevel = .bss:0x809826F8; // type:object size:0x4 +SymGetChildren = .bss:0x809826FC; // type:object size:0x8 +SymGetClip = .bss:0x80982704; // type:object size:0x4 +SymGetClipOrGroupList = .bss:0x80982708; // type:object size:0x4 +SymGetCompletedSong = .bss:0x8098270C; // type:object size:0x4 +SymGetConfig = .bss:0x80982710; // type:object size:0x4 +SymGetConsoleOverrideStr = .bss:0x80982714; // type:object size:0x4 +SymGetContentPoints = .bss:0x80982718; // type:object size:0x4 +SymGetContentSize = .bss:0x8098271C; // type:object size:0x4 +SymGetContextFlags = .bss:0x80982720; // type:object size:0x4 +SymGetControllerSym = .bss:0x80982724; // type:object size:0x4 +SymGetControllerType = .bss:0x80982728; // type:object size:0x4 +SymGetCount = .bss:0x8098272C; // type:object size:0x4 +SymGetCrowdVolume = .bss:0x80982730; // type:object size:0x4 +SymGetCrowdVolumeDb = .bss:0x80982734; // type:object size:0x8 +SymGetCurrSection = .bss:0x8098273C; // type:object size:0x4 +SymGetCurrentBoutique = .bss:0x80982740; // type:object size:0x4 +SymGetCurrentGigNum = .bss:0x80982744; // type:object size:0x4 +SymGetCurrentGoal = .bss:0x80982748; // type:object size:0x4 +SymGetCurrentGoalDescription = .bss:0x8098274C; // type:object size:0x4 +SymGetCurrentGoalIcon = .bss:0x80982750; // type:object size:0x4 +SymGetCurrentLesson = .bss:0x80982754; // type:object size:0x4 +SymGetCurrentMakeup = .bss:0x80982758; // type:object size:0x4 +SymGetCurrentPointsForNextCampaignLevel = .bss:0x8098275C; // type:object size:0x4 +SymGetCurrentQuestSuccessMsg = .bss:0x80982760; // type:object size:0x8 +SymGetCurrentShouldShowDenominator = .bss:0x80982768; // type:object size:0x4 +SymGetCurrentSongIndex = .bss:0x8098276C; // type:object size:0x4 +SymGetCurrentSongPreview = .bss:0x80982770; // type:object size:0x4 +SymGetCurrentSortName = .bss:0x80982774; // type:object size:0x8 +SymGetCurrentUnits = .bss:0x8098277C; // type:object size:0x4 +SymGetCurrentValue = .bss:0x80982780; // type:object size:0x4 +SymGetCurrentView = .bss:0x80982784; // type:object size:0x4 +SymGetCurworld = .bss:0x80982788; // type:object size:0x10 +SymGetDefaultVkName = .bss:0x80982798; // type:object size:0x4 +SymGetDeleteResult = .bss:0x8098279C; // type:object size:0x4 +SymGetDeployFailed = .bss:0x809827A0; // type:object size:0x4 +SymGetDescription = .bss:0x809827A4; // type:object size:0x8 +SymGetDialogFocusOption = .bss:0x809827AC; // type:object size:0x4 +SymGetDialogMsg = .bss:0x809827B0; // type:object size:0x4 +SymGetDialogOpt1 = .bss:0x809827B4; // type:object size:0x4 +SymGetDialogOpt2 = .bss:0x809827B8; // type:object size:0x4 +SymGetDialogOpt3 = .bss:0x809827BC; // type:object size:0x4 +SymGetDifficulty = .bss:0x809827C0; // type:object size:0x4 +SymGetDifficultyFromLessonName = .bss:0x809827C4; // type:object size:0x4 +SymGetDifficultySym = .bss:0x809827C8; // type:object size:0x4 +SymGetDir = .bss:0x809827CC; // type:object size:0x8 +SymGetDisplayGoal = .bss:0x809827D4; // type:object size:0x4 +SymGetDlcmotd = .bss:0x809827D8; // type:object size:0x4 +SymGetDolby = .bss:0x809827DC; // type:object size:0x4 +SymGetDoubleHarmonyHit = .bss:0x809827E0; // type:object size:0x4 +SymGetDoubleHarmonyTotal = .bss:0x809827E4; // type:object size:0x4 +SymGetDraws = .bss:0x809827E8; // type:object size:0xC +SymGetDwcError = .bss:0x809827F4; // type:object size:0x4 +SymGetEditLayerListIndex = .bss:0x809827F8; // type:object size:0x4 +SymGetEnd = .bss:0x809827FC; // type:object size:0x4 +SymGetExcessAudioLag = .bss:0x80982800; // type:object size:0x4 +SymGetExcessVideoLag = .bss:0x80982804; // type:object size:0x4 +SymGetExpirationListSym = .bss:0x80982808; // type:object size:0x4 +SymGetEyeColor = .bss:0x8098280C; // type:object size:0x4 +SymGetEyebrows = .bss:0x80982810; // type:object size:0x4 +SymGetEyebrowsSelected = .bss:0x80982814; // type:object size:0x4 +SymGetFace = .bss:0x80982818; // type:object size:0x4 +SymGetFaceOptionsSelected = .bss:0x8098281C; // type:object size:0x4 +SymGetFaceOverrides = .bss:0x80982820; // type:object size:0x4 +SymGetFacehair = .bss:0x80982824; // type:object size:0x8 +SymGetFanCount = .bss:0x8098282C; // type:object size:0x4 +SymGetFeatureIndex = .bss:0x80982830; // type:object size:0x4 +SymGetFilterLocked = .bss:0x80982834; // type:object size:0x8 +SymGetFirstEmptyPatch = .bss:0x8098283C; // type:object size:0x4 +SymGetFirstFlags = .bss:0x80982840; // type:object size:0x4 +SymGetFirstPlayingFlags = .bss:0x80982844; // type:object size:0x4 +SymGetFirstTrack = .bss:0x80982848; // type:object size:0x4 +SymGetFirstUserAllowingInputToShell = .bss:0x8098284C; // type:object size:0x4 +SymGetFlavorText = .bss:0x80982850; // type:object size:0x4 +SymGetFocusComponent = .bss:0x80982854; // type:object size:0x4 +SymGetFocusableComponents = .bss:0x80982858; // type:object size:0x8 +SymGetForcedSetlist = .bss:0x80982860; // type:object size:0x4 +SymGetForegroundVolume = .bss:0x80982864; // type:object size:0x4 +SymGetForegroundVolumeDb = .bss:0x80982868; // type:object size:0x4 +SymGetFractionCompleted = .bss:0x8098286C; // type:object size:0x4 +SymGetFreeBlocks = .bss:0x80982870; // type:object size:0x4 +SymGetFreeCam = .bss:0x80982874; // type:object size:0x8 +SymGetFret = .bss:0x8098287C; // type:object size:0x8 +SymGetFriendName = .bss:0x80982884; // type:object size:0x8 +SymGetFxVolume = .bss:0x8098288C; // type:object size:0x4 +SymGetFxVolumeDb = .bss:0x80982890; // type:object size:0x4 +SymGetGameplayOptions = .bss:0x80982894; // type:object size:0x4 +SymGetGemCount = .bss:0x80982898; // type:object size:0x4 +SymGetGemIsNoStrum = .bss:0x8098289C; // type:object size:0x4 +SymGetGemIsSustained = .bss:0x809828A0; // type:object size:0x4 +SymGetGemResult = .bss:0x809828A4; // type:object size:0x8 +SymGetGemTrack = .bss:0x809828AC; // type:object size:0xC +SymGetGigFlavor = .bss:0x809828B8; // type:object size:0x4 +SymGetGigMaxStars = .bss:0x809828BC; // type:object size:0x4 +SymGetGigSongcount = .bss:0x809828C0; // type:object size:0x4 +SymGetGigSpecificIntro = .bss:0x809828C4; // type:object size:0x4 +SymGetGigSpecificOutro = .bss:0x809828C8; // type:object size:0x4 +SymGetGigStars = .bss:0x809828CC; // type:object size:0x4 +SymGetGigTotalStars = .bss:0x809828D0; // type:object size:0x4 +SymGetGlasses = .bss:0x809828D4; // type:object size:0x4 +SymGetGoal = .bss:0x809828D8; // type:object size:0x4 +SymGetGoalCategory = .bss:0x809828DC; // type:object size:0x4 +SymGetGoalIcon = .bss:0x809828E0; // type:object size:0x4 +SymGetGoldMedalGoal = .bss:0x809828E4; // type:object size:0x4 +SymGetGoldMedalIcon = .bss:0x809828E8; // type:object size:0x4 +SymGetGuidePart = .bss:0x809828EC; // type:object size:0x4 +SymGetHair = .bss:0x809828F0; // type:object size:0x4 +SymGetHardcoreIconLevel = .bss:0x809828F4; // type:object size:0x4 +SymGetHasSeenFirstTimeCalibration = .bss:0x809828F8; // type:object size:0x4 +SymGetHasSeenFirstTimeInstruments = .bss:0x809828FC; // type:object size:0x8 +SymGetHeight = .bss:0x80982904; // type:object size:0x4 +SymGetHighlightIx = .bss:0x80982908; // type:object size:0x4 +SymGetHighlightedNode = .bss:0x8098290C; // type:object size:0x4 +SymGetHistoryProvider = .bss:0x80982910; // type:object size:0x4 +SymGetHitPercentage = .bss:0x80982914; // type:object size:0x4 +SymGetIconHardcoreStatus = .bss:0x80982918; // type:object size:0x4 +SymGetInGameExtraVideoLatency = .bss:0x8098291C; // type:object size:0x4 +SymGetInGameSyncOffsetAdjustment = .bss:0x80982920; // type:object size:0x4 +SymGetIndex = .bss:0x80982924; // type:object size:0x4 +SymGetInodes = .bss:0x80982928; // type:object size:0x4 +SymGetInstIcon = .bss:0x8098292C; // type:object size:0x4 data:4byte +SymGetInstrumentIcon = .bss:0x80982930; // type:object size:0x4 +SymGetInstrumentListSym = .bss:0x80982934; // type:object size:0x4 +SymGetInstrumentMask = .bss:0x80982938; // type:object size:0x8 +SymGetInviteAccepted = .bss:0x80982940; // type:object size:0x4 +SymGetJoypadExtraLag = .bss:0x80982944; // type:object size:0x4 +SymGetLastHitFraction = .bss:0x80982948; // type:object size:0x4 +SymGetLastInviteResult = .bss:0x8098294C; // type:object size:0x4 +SymGetLastOfflineScore = .bss:0x80982950; // type:object size:0x4 +SymGetLastOfflineSoloScore = .bss:0x80982954; // type:object size:0x4 +SymGetLastResult = .bss:0x80982958; // type:object size:0x4 +SymGetLastResultValue = .bss:0x8098295C; // type:object size:0x4 +SymGetLastTouchedDateString = .bss:0x80982960; // type:object size:0x4 +SymGetLastVenueClass = .bss:0x80982964; // type:object size:0x4 +SymGetLeaderProfileName = .bss:0x80982968; // type:object size:0x4 +SymGetLeaderUser = .bss:0x8098296C; // type:object size:0x4 +SymGetLeaderboard = .bss:0x80982970; // type:object size:0x4 +SymGetLefty = .bss:0x80982974; // type:object size:0x4 +SymGetLegendMode = .bss:0x80982978; // type:object size:0x4 +SymGetLengthMs = .bss:0x8098297C; // type:object size:0x8 +SymGetLessonCompleteSpeed = .bss:0x80982984; // type:object size:0x4 +SymGetLocalPos = .bss:0x80982988; // type:object size:0x4 +SymGetLocalPosIndex = .bss:0x8098298C; // type:object size:0x4 +SymGetLocalRot = .bss:0x80982990; // type:object size:0x4 +SymGetLocalRotIndex = .bss:0x80982994; // type:object size:0x4 +SymGetLocalScale = .bss:0x80982998; // type:object size:0x4 +SymGetLocalScaleIndex = .bss:0x8098299C; // type:object size:0x8 +SymGetMakingSetlist = .bss:0x809829A4; // type:object size:0x4 +SymGetMakingSetlistToken = .bss:0x809829A8; // type:object size:0x4 +SymGetMapScreen = .bss:0x809829AC; // type:object size:0x4 +SymGetMatForData = .bss:0x809829B0; // type:object size:0x4 +SymGetMatchingDude = .bss:0x809829B4; // type:object size:0x4 +SymGetMaterialVariations = .bss:0x809829B8; // type:object size:0x4 +SymGetMaxCharacters = .bss:0x809829BC; // type:object size:0x4 +SymGetMaxSetlistSize = .bss:0x809829C0; // type:object size:0x4 +SymGetMaxSongCount = .bss:0x809829C4; // type:object size:0x4 +SymGetMaxValue = .bss:0x809829C8; // type:object size:0x4 +SymGetMenuProvider = .bss:0x809829CC; // type:object size:0x4 +SymGetMenuWaiting = .bss:0x809829D0; // type:object size:0x4 +SymGetMessageProvider = .bss:0x809829D4; // type:object size:0x4 +SymGetMessageToken = .bss:0x809829D8; // type:object size:0x8 +SymGetMetaData = .bss:0x809829E0; // type:object size:0x8 +SymGetMetronomeVolume = .bss:0x809829E8; // type:object size:0x8 +SymGetMicVol = .bss:0x809829F0; // type:object size:0x4 +SymGetMidiParsers = .bss:0x809829F4; // type:object size:0x4 +SymGetMinimumDifficulty = .bss:0x809829F8; // type:object size:0x4 +SymGetMode = .bss:0x809829FC; // type:object size:0x4 +SymGetModeFromLessonName = .bss:0x80982A00; // type:object size:0x4 +SymGetModeFromTrackType = .bss:0x80982A04; // type:object size:0x4 +SymGetModeName = .bss:0x80982A08; // type:object size:0x4 +SymGetModeSymbol = .bss:0x80982A0C; // type:object size:0x4 +SymGetMotd = .bss:0x80982A10; // type:object size:0x4 +SymGetMultiplierActive = .bss:0x80982A14; // type:object size:0x8 +SymGetName = .bss:0x80982A1C; // type:object size:0x4 +SymGetNameForFirstNewRewardVignette = .bss:0x80982A20; // type:object size:0x4 +SymGetNandFreeBlocks = .bss:0x80982A24; // type:object size:0x4 +SymGetNeededBlocks = .bss:0x80982A28; // type:object size:0x4 +SymGetNetErrorString = .bss:0x80982A2C; // type:object size:0x4 +SymGetNetErrorStringStore = .bss:0x80982A30; // type:object size:0x4 +SymGetNetRandomSeed = .bss:0x80982A34; // type:object size:0x4 +SymGetNetSetlistArt = .bss:0x80982A38; // type:object size:0x4 +SymGetNetUiState = .bss:0x80982A3C; // type:object size:0x4 +SymGetNetUiStateParam = .bss:0x80982A40; // type:object size:0x8 +SymGetNewnameResult = .bss:0x80982A48; // type:object size:0x4 +SymGetNextCampaignLevel = .bss:0x80982A4C; // type:object size:0x4 +SymGetNextCity = .bss:0x80982A50; // type:object size:0x4 +SymGetNextHintToShow = .bss:0x80982A54; // type:object size:0x4 +SymGetNextPlayIndex = .bss:0x80982A58; // type:object size:0x4 +SymGetNextResult = .bss:0x80982A5C; // type:object size:0x4 +SymGetNextScreen = .bss:0x80982A60; // type:object size:0x8 +SymGetNodeType = .bss:0x80982A68; // type:object size:0x4 +SymGetNormalDisplayLength = .bss:0x80982A6C; // type:object size:0x4 +SymGetNotesHitFraction = .bss:0x80982A70; // type:object size:0x4 +SymGetNotesPct = .bss:0x80982A74; // type:object size:0x8 +SymGetNumAssets = .bss:0x80982A7C; // type:object size:0x10 +SymGetNumChars = .bss:0x80982A8C; // type:object size:0x4 +SymGetNumCompleted = .bss:0x80982A90; // type:object size:0x4 +SymGetNumCompletedGigs = .bss:0x80982A94; // type:object size:0x4 +SymGetNumCompletedGoals = .bss:0x80982A98; // type:object size:0x8 +SymGetNumGemsFloat = .bss:0x80982AA0; // type:object size:0x4 +SymGetNumGoals = .bss:0x80982AA4; // type:object size:0x4 +SymGetNumLocalParticipants = .bss:0x80982AA8; // type:object size:0x8 +SymGetNumParticipants = .bss:0x80982AB0; // type:object size:0x4 +SymGetNumPhrases = .bss:0x80982AB4; // type:object size:0x4 +SymGetNumProfiles = .bss:0x80982AB8; // type:object size:0x4 +SymGetNumSections = .bss:0x80982ABC; // type:object size:0x4 +SymGetNumStars = .bss:0x80982AC0; // type:object size:0x4 +SymGetNumStarsForTourStatus = .bss:0x80982AC4; // type:object size:0x4 +SymGetNwc24ErrorText = .bss:0x80982AC8; // type:object size:0x4 +SymGetObj = .bss:0x80982ACC; // type:object size:0x4 +SymGetOccluded = .bss:0x80982AD0; // type:object size:0x4 +SymGetOffer = .bss:0x80982AD4; // type:object size:0x4 +SymGetOffersForToken = .bss:0x80982AD8; // type:object size:0x4 +SymGetOutfit = .bss:0x80982ADC; // type:object size:0x8 +SymGetOverride = .bss:0x80982AE4; // type:object size:0x4 +SymGetOverscan = .bss:0x80982AE8; // type:object size:0x4 +SymGetOwner = .bss:0x80982AEC; // type:object size:0x4 +SymGetOwnerProfile = .bss:0x80982AF0; // type:object size:0x4 +SymGetOwnerUserOfGuestUser = .bss:0x80982AF4; // type:object size:0x4 +SymGetPadExtraLag = .bss:0x80982AF8; // type:object size:0x4 +SymGetPadNum = .bss:0x80982AFC; // type:object size:0x4 +SymGetPadType = .bss:0x80982B00; // type:object size:0x8 +SymGetPanelFromSlotNum = .bss:0x80982B08; // type:object size:0x4 +SymGetPatchMenuReturnState = .bss:0x80982B0C; // type:object size:0x4 +SymGetPatchTex = .bss:0x80982B10; // type:object size:0x8 +SymGetPathName = .bss:0x80982B18; // type:object size:0x4 +SymGetPauseMenu = .bss:0x80982B1C; // type:object size:0x4 +SymGetPaused = .bss:0x80982B20; // type:object size:0x4 +SymGetPeakValue = .bss:0x80982B24; // type:object size:0x4 +SymGetPerformanceAward = .bss:0x80982B28; // type:object size:0x4 +SymGetPictureTex = .bss:0x80982B2C; // type:object size:0x4 +SymGetPlatformAudioLatency = .bss:0x80982B30; // type:object size:0x4 +SymGetPlatformVideoLatency = .bss:0x80982B34; // type:object size:0x4 +SymGetPlayAllTracks = .bss:0x80982B38; // type:object size:0x4 +SymGetPlayFlags = .bss:0x80982B3C; // type:object size:0x4 +SymGetPlayer = .bss:0x80982B40; // type:object size:0x4 +SymGetPlayerConfig = .bss:0x80982B44; // type:object size:0x4 +SymGetPlayerDifficulty = .bss:0x80982B48; // type:object size:0x4 +SymGetPlayerName = .bss:0x80982B4C; // type:object size:0x4 +SymGetPos = .bss:0x80982B50; // type:object size:0x8 +SymGetPossessiveSuffix = .bss:0x80982B58; // type:object size:0x8 +SymGetPracticeHitPercentage = .bss:0x80982B60; // type:object size:0x4 +SymGetPreferredScoreType = .bss:0x80982B64; // type:object size:0x4 +SymGetPregigTotalStars = .bss:0x80982B68; // type:object size:0x4 +SymGetPrimaryBandLogoTex = .bss:0x80982B6C; // type:object size:0x4 +SymGetPrimaryBandName = .bss:0x80982B70; // type:object size:0x4 +SymGetPrimaryCampaignLevel = .bss:0x80982B74; // type:object size:0x4 +SymGetPrimaryFanCount = .bss:0x80982B78; // type:object size:0x4 +SymGetPrimaryMetascore = .bss:0x80982B7C; // type:object size:0x4 +SymGetPrimaryProfile = .bss:0x80982B80; // type:object size:0x4 +SymGetPrimaryProfileName = .bss:0x80982B84; // type:object size:0x4 +SymGetProfile = .bss:0x80982B88; // type:object size:0x4 +SymGetProfileFromPad = .bss:0x80982B8C; // type:object size:0x8 +SymGetProfileName = .bss:0x80982B94; // type:object size:0x4 +SymGetProfilesProvider = .bss:0x80982B98; // type:object size:0x4 +SymGetProgressOwnerName = .bss:0x80982B9C; // type:object size:0x8 +SymGetPropertyValue = .bss:0x80982BA4; // type:object size:0x4 +SymGetQuitToken = .bss:0x80982BA8; // type:object size:0x4 +SymGetRandomName = .bss:0x80982BAC; // type:object size:0x4 +SymGetRecentInstrumentMask = .bss:0x80982BB0; // type:object size:0x4 +SymGetRecommendationTex = .bss:0x80982BB4; // type:object size:0x4 +SymGetRecord = .bss:0x80982BB8; // type:object size:0xC +SymGetRegion = .bss:0x80982BC4; // type:object size:0x4 +SymGetRegisteredCount = .bss:0x80982BC8; // type:object size:0x8 +SymGetRenderTextures = .bss:0x80982BD0; // type:object size:0x4 +SymGetRequestedDownloadBlocks = .bss:0x80982BD4; // type:object size:0x4 +SymGetRequestPrefix = .bss:0x80982BD8; // type:object size:0x4 +SymGetResourceDir = .bss:0x80982BDC; // type:object size:0x4 +SymGetResourcesPath = .bss:0x80982BE0; // type:object size:0x4 +SymGetResult = .bss:0x80982BE4; // type:object size:0x4 +SymGetResultForUser = .bss:0x80982BE8; // type:object size:0x4 +SymGetReturnScreen = .bss:0x80982BEC; // type:object size:0x4 +SymGetReview = .bss:0x80982BF0; // type:object size:0x4 +SymGetRot = .bss:0x80982BF4; // type:object size:0x4 +SymGetRowMatPath = .bss:0x80982BF8; // type:object size:0x4 +SymGetSampleMem = .bss:0x80982BFC; // type:object size:0x4 +SymGetSaveData = .bss:0x80982C00; // type:object size:0x4 +SymGetSavedCount = .bss:0x80982C04; // type:object size:0x4 +SymGetScale = .bss:0x80982C08; // type:object size:0x8 +SymGetScore = .bss:0x80982C10; // type:object size:0x4 +SymGetScorePart = .bss:0x80982C14; // type:object size:0x4 +SymGetScoretype = .bss:0x80982C18; // type:object size:0x4 +SymGetScreen = .bss:0x80982C1C; // type:object size:0x4 +SymGetSdFreeBlocks = .bss:0x80982C20; // type:object size:0x4 +SymGetSecondPedalHihat = .bss:0x80982C24; // type:object size:0x4 +SymGetSection = .bss:0x80982C28; // type:object size:0x4 +SymGetSectionAtMs = .bss:0x80982C2C; // type:object size:0x4 +SymGetSectionBounds = .bss:0x80982C30; // type:object size:0x4 +SymGetSectionBoundsTick = .bss:0x80982C34; // type:object size:0x4 +SymGetSectionEndMs = .bss:0x80982C38; // type:object size:0x4 +SymGetSectionName = .bss:0x80982C3C; // type:object size:0x4 +SymGetSectionStartMs = .bss:0x80982C40; // type:object size:0x4 +SymGetSelectedGoal = .bss:0x80982C44; // type:object size:0x4 +SymGetSelectedStandin = .bss:0x80982C48; // type:object size:0x4 +SymGetSelectedTour = .bss:0x80982C4C; // type:object size:0x4 +SymGetSenderName = .bss:0x80982C50; // type:object size:0xC +SymGetSessionMgr = .bss:0x80982C5C; // type:object size:0x4 +SymGetSetlist = .bss:0x80982C60; // type:object size:0x4 +SymGetSetlistTypeSym = .bss:0x80982C64; // type:object size:0x4 +SymGetShortcutArray = .bss:0x80982C68; // type:object size:0x4 +SymGetShortcutProvider = .bss:0x80982C6C; // type:object size:0x4 +SymGetShouldShowWiiFriendsPrompt = .bss:0x80982C70; // type:object size:0x4 +SymGetSigninChangedMask = .bss:0x80982C74; // type:object size:0x4 +SymGetSigninMask = .bss:0x80982C78; // type:object size:0x4 +SymGetSilverMedalGoal = .bss:0x80982C7C; // type:object size:0x4 +SymGetSilverMedalIcon = .bss:0x80982C80; // type:object size:0x4 +SymGetSingerAutoplayPart = .bss:0x80982C84; // type:object size:0x4 +SymGetSingerAutoplayVariationMagnitude = .bss:0x80982C88; // type:object size:0x4 +SymGetSingerCount = .bss:0x80982C8C; // type:object size:0x4 +SymGetSingerRankedPart = .bss:0x80982C90; // type:object size:0x4 +SymGetSingerRankedPercentage = .bss:0x80982C94; // type:object size:0x4 +SymGetSize = .bss:0x80982C98; // type:object size:0x4 +SymGetSkinTone = .bss:0x80982C9C; // type:object size:0x4 +SymGetSlot = .bss:0x80982CA0; // type:object size:0x8 +SymGetSlotNum = .bss:0x80982CA8; // type:object size:0x4 +SymGetSmasher = .bss:0x80982CAC; // type:object size:0x4 +SymGetSmasherPlate = .bss:0x80982CB0; // type:object size:0x10 +SymGetSongCount = .bss:0x80982CC0; // type:object size:0x4 +SymGetSongFromLessonName = .bss:0x80982CC4; // type:object size:0x8 +SymGetSongMs = .bss:0x80982CCC; // type:object size:0x4 +SymGetSongNumVocalParts = .bss:0x80982CD0; // type:object size:0x4 +SymGetSongQuestStars = .bss:0x80982CD4; // type:object size:0x4 +SymGetSongToTaskmgrMs = .bss:0x80982CD8; // type:object size:0x4 +SymGetSongToTaskmgrMsRaw = .bss:0x80982CDC; // type:object size:0x4 +SymGetSongTotalStars = .bss:0x80982CE0; // type:object size:0x4 +SymGetSongcount = .bss:0x80982CE4; // type:object size:0x4 +SymGetSongsCompleted = .bss:0x80982CE8; // type:object size:0x4 +SymGetSongsFromMusicLibrary = .bss:0x80982CEC; // type:object size:0x4 +SymGetSongstars = .bss:0x80982CF0; // type:object size:0x4 +SymGetSortList = .bss:0x80982CF4; // type:object size:0x4 +SymGetSphere = .bss:0x80982CF8; // type:object size:0x4 +SymGetStandinProvider = .bss:0x80982CFC; // type:object size:0x4 +SymGetStarCount = .bss:0x80982D00; // type:object size:0x4 +SymGetStars = .bss:0x80982D04; // type:object size:0x4 +SymGetStarsEarned = .bss:0x80982D08; // type:object size:0x4 +SymGetStarsForGig = .bss:0x80982D0C; // type:object size:0x4 +SymGetStart = .bss:0x80982D10; // type:object size:0x8 +SymGetState = .bss:0x80982D18; // type:object size:0xC +SymGetString = .bss:0x80982D24; // type:object size:0x4 +SymGetStringTrans = .bss:0x80982D28; // type:object size:0x4 +SymGetStringWidth = .bss:0x80982D2C; // type:object size:0x8 +SymGetSynapseEnabled = .bss:0x80982D34; // type:object size:0x4 +SymGetSyncOffset = .bss:0x80982D38; // type:object size:0x4 +SymGetSyncOffsetRaw = .bss:0x80982D3C; // type:object size:0x4 +SymGetSyncPresetIx = .bss:0x80982D40; // type:object size:0x4 +SymGetTestQuality = .bss:0x80982D44; // type:object size:0x4 +SymGetTestResult = .bss:0x80982D48; // type:object size:0x4 +SymGetTex = .bss:0x80982D4C; // type:object size:0x4 +SymGetTextSize = .bss:0x80982D50; // type:object size:0xC +SymGetTimesFailed = .bss:0x80982D5C; // type:object size:0x4 +SymGetTitle = .bss:0x80982D60; // type:object size:0x4 +SymGetTitleInfo = .bss:0x80982D64; // type:object size:0x4 +SymGetTitleToken = .bss:0x80982D68; // type:object size:0x4 +SymGetToken = .bss:0x80982D6C; // type:object size:0x8 +SymGetTotal = .bss:0x80982D74; // type:object size:0x4 +SymGetTotalGigs = .bss:0x80982D78; // type:object size:0x4 +SymGetTotalMs = .bss:0x80982D7C; // type:object size:0x4 +SymGetTotalPhrasesFloat = .bss:0x80982D80; // type:object size:0x4 +SymGetTotalPointsForNextCampaignLevel = .bss:0x80982D84; // type:object size:0x4 +SymGetTotalQuestStars = .bss:0x80982D88; // type:object size:0x4 +SymGetTotalScore = .bss:0x80982D8C; // type:object size:0x4 +SymGetTotalSongStars = .bss:0x80982D90; // type:object size:0x4 +SymGetTotalStarsCapped = .bss:0x80982D94; // type:object size:0x4 +SymGetTotalStarsForTour = .bss:0x80982D98; // type:object size:0x4 +SymGetTotalStarsPossibleForCurrentGig = .bss:0x80982D9C; // type:object size:0x4 +SymGetTourConclusionText = .bss:0x80982DA0; // type:object size:0x4 +SymGetTourGigguideMap = .bss:0x80982DA4; // type:object size:0x4 +SymGetTourLeaderboardGoal = .bss:0x80982DA8; // type:object size:0x4 +SymGetTourName = .bss:0x80982DAC; // type:object size:0x4 +SymGetTourStatus = .bss:0x80982DB0; // type:object size:0x4 +SymGetTourTotalStars = .bss:0x80982DB4; // type:object size:0x4 +SymGetTourWelcome = .bss:0x80982DB8; // type:object size:0x8 +SymGetTrackDir = .bss:0x80982DC0; // type:object size:0x4 +SymGetTrackIcon = .bss:0x80982DC4; // type:object size:0x4 +SymGetTrackSym = .bss:0x80982DC8; // type:object size:0x4 +SymGetTrackType = .bss:0x80982DCC; // type:object size:0x4 +SymGetTrackTypeFromLessonName = .bss:0x80982DD0; // type:object size:0x4 +SymGetTripleHarmonyHit = .bss:0x80982DD4; // type:object size:0x4 +SymGetTripleHarmonyTotal = .bss:0x80982DD8; // type:object size:0x10 +SymGetUiState = .bss:0x80982DE8; // type:object size:0x4 +SymGetUnregisteredCount = .bss:0x80982DEC; // type:object size:0x4 +SymGetUser = .bss:0x80982DF0; // type:object size:0x4 +SymGetUserFromPadNum = .bss:0x80982DF4; // type:object size:0x4 +SymGetUserFromSlot = .bss:0x80982DF8; // type:object size:0x4 +SymGetUserFromTrackNum = .bss:0x80982DFC; // type:object size:0x4 +SymGetUserMachine = .bss:0x80982E00; // type:object size:0x4 +SymGetUserName = .bss:0x80982E04; // type:object size:0x4 +SymGetUserSlot = .bss:0x80982E08; // type:object size:0x4 +SymGetUserWiiprofile = .bss:0x80982E0C; // type:object size:0x4 +SymGetUserWithInvalidController = .bss:0x80982E10; // type:object size:0x4 +SymGetUsingWiiFriends = .bss:0x80982E14; // type:object size:0xC +SymGetVenue = .bss:0x80982E20; // type:object size:0x4 +SymGetVenueClass = .bss:0x80982E24; // type:object size:0x4 +SymGetVenueOverride = .bss:0x80982E28; // type:object size:0x8 +SymGetVertNorm = .bss:0x80982E30; // type:object size:0x4 +SymGetVertPos = .bss:0x80982E34; // type:object size:0x4 +SymGetVertUv = .bss:0x80982E38; // type:object size:0x10 +SymGetVocalCueVolume = .bss:0x80982E48; // type:object size:0x4 +SymGetVocalCueVolumeDb = .bss:0x80982E4C; // type:object size:0x4 +SymGetVocalPartBias = .bss:0x80982E50; // type:object size:0x4 +SymGetVocalPartPercentage = .bss:0x80982E54; // type:object size:0x4 +SymGetVocalStyle = .bss:0x80982E58; // type:object size:0x4 +SymGetVocalVolume = .bss:0x80982E5C; // type:object size:0x4 +SymGetVoiceChatVolume = .bss:0x80982E60; // type:object size:0x4 +SymGetVoiceChatVolumeDb = .bss:0x80982E64; // type:object size:0x4 +SymGetWasLaunchedIntoMusiclibrary = .bss:0x80982E68; // type:object size:0x4 +SymGetWearing = .bss:0x80982E6C; // type:object size:0x4 +SymGetWeight = .bss:0x80982E70; // type:object size:0x4 +SymGetWiiprofile = .bss:0x80982E74; // type:object size:0x4 +SymGetWiiprofileLastIndex = .bss:0x80982E78; // type:object size:0x4 +SymGetWiiprofileListMode = .bss:0x80982E7C; // type:object size:0x4 +SymGetWiiprofileListSelectedName = .bss:0x80982E80; // type:object size:0x4 +SymGetWiiprofileState = .bss:0x80982E84; // type:object size:0x4 +SymGetWiispeakEchoSuppression = .bss:0x80982E88; // type:object size:0x4 +SymGetWiispeakFriendsVolume = .bss:0x80982E8C; // type:object size:0x4 +SymGetWiispeakHeadphoneMode = .bss:0x80982E90; // type:object size:0x4 +SymGetWiispeakMicrophoneSensitivity = .bss:0x80982E94; // type:object size:0x4 +SymGetWiispeakToggle = .bss:0x80982E98; // type:object size:0x4 +SymGetWorld = .bss:0x80982E9C; // type:object size:0x4 +SymGetWorldForward = .bss:0x80982EA0; // type:object size:0x4 +SymGetWorldPos = .bss:0x80982EA4; // type:object size:0x4 +SymGetWorldRot = .bss:0x80982EA8; // type:object size:0x4 +SymGig = .bss:0x80982EAC; // type:object size:0x4 data:4byte +SymGigGroup = .bss:0x80982EB0; // type:object size:0x4 data:4byte +SymGigTier = .bss:0x80982EB4; // type:object size:0x4 data:4byte +SymGigguideMap = .bss:0x80982EB8; // type:object size:0x4 data:4byte +SymGigs = .bss:0x80982EBC; // type:object size:0x4 data:4byte +SymGlasses = .bss:0x80982EC0; // type:object size:0x4 data:4byte +SymGlob = .bss:0x80982EC4; // type:object size:0x4 data:4byte +SymGlobalOptionsButtonCancel = .bss:0x80982EC8; // type:object size:0x4 +SymGlobalOptionsButtonCorruptOverwrite = .bss:0x80982ECC; // type:object size:0x4 +SymGlobalOptionsButtonCreate = .bss:0x80982ED0; // type:object size:0x4 +SymGlobalOptionsCacheName = .bss:0x80982ED4; // type:object size:0x4 data:4byte +SymGlobalOptionsCorrupt = .bss:0x80982ED8; // type:object size:0x4 data:4byte +SymGlobalOptionsCreate = .bss:0x80982EDC; // type:object size:0x4 data:4byte +SymGlobalOptionsMissing = .bss:0x80982EE0; // type:object size:0x4 data:4byte +SymGlobalOptionsNeedsSave = .bss:0x80982EE4; // type:object size:0x4 +SymGlobally = .bss:0x80982EE8; // type:object size:0x8 +SymGlowAlpha = .bss:0x80982EF0; // type:object size:0x4 data:4byte +SymGlowMesh1 = .bss:0x80982EF4; // type:object size:0x4 +SymGlowMesh2 = .bss:0x80982EF8; // type:object size:0x4 +SymGlowSize = .bss:0x80982EFC; // type:object size:0x4 data:4byte +SymGlowSpot = .bss:0x80982F00; // type:object size:0x4 +SymGlowWidgets = .bss:0x80982F04; // type:object size:0x4 +SymGoBackScreen = .bss:0x80982F08; // type:object size:0x4 data:4byte +SymGoToFriendsScreen = .bss:0x80982F0C; // type:object size:0x4 +SymGoToImportFriendsScreen = .bss:0x80982F10; // type:object size:0x4 +SymGoalFiltersongUnknown = .bss:0x80982F14; // type:object size:0x4 data:4byte +SymGotServerFriendData = .bss:0x80982F18; // type:object size:0x4 +SymGotoArtMakerShot = .bss:0x80982F1C; // type:object size:0x8 +SymGotoScreen = .bss:0x80982F24; // type:object size:0x4 +SymGotoTrainer = .bss:0x80982F28; // type:object size:0x8 +SymGradeDistance1 = .bss:0x80982F30; // type:object size:0x4 +SymGradeDistance2 = .bss:0x80982F34; // type:object size:0x4 +SymGradeDistance3 = .bss:0x80982F38; // type:object size:0x4 +SymGradeDistance4 = .bss:0x80982F3C; // type:object size:0x4 +SymGradeDistance5 = .bss:0x80982F40; // type:object size:0x4 +SymGradientMap = .bss:0x80982F44; // type:object size:0x4 +SymGradientMapEnd = .bss:0x80982F48; // type:object size:0x4 +SymGradientMapIndex = .bss:0x80982F4C; // type:object size:0x4 +SymGradientMapOpacity = .bss:0x80982F50; // type:object size:0x4 +SymGradientMapStart = .bss:0x80982F54; // type:object size:0x4 +SymGravity = .bss:0x80982F58; // type:object size:0x4 +SymGreen = .bss:0x80982F5C; // type:object size:0x4 +SymGreenday = .bss:0x80982F60; // type:object size:0x18 data:4byte +SymGridSpan = .bss:0x80982F78; // type:object size:0x4 +SymGround = .bss:0x80982F7C; // type:object size:0x4 +SymGroup = .bss:0x80982F80; // type:object size:0x4 data:4byte +SymGroupName = .bss:0x80982F84; // type:object size:0x4 +SymGroupOverride = .bss:0x80982F88; // type:object size:0x4 +SymGroups = .bss:0x80982F8C; // type:object size:0x4 +SymGrowRatio = .bss:0x80982F90; // type:object size:0x4 +SymGs = .bss:0x80982F94; // type:object size:0x4 data:4byte +SymGuid = .bss:0x80982F98; // type:object size:0x4 data:4byte +SymGuidePitchVolume = .bss:0x80982F9C; // type:object size:0x4 data:4byte +SymGuideShowing = .bss:0x80982FA0; // type:object size:0x4 +SymGuitar = .bss:0x80982FA4; // type:object size:0x4 data:4byte +SymGuitarIntensity = .bss:0x80982FA8; // type:object size:0x4 +SymGuitarShiftButton = .bss:0x80982FAC; // type:object size:0x4 data:4byte +SymGuitarSustainXScale = .bss:0x80982FB0; // type:object size:0x4 +SymGuitarSustainYPos = .bss:0x80982FB4; // type:object size:0x4 +SymH = .bss:0x80982FB8; // type:object size:0x24 +SymH2h = .bss:0x80982FDC; // type:object size:0x4 data:4byte +SymHair = .bss:0x80982FE0; // type:object size:0x8 data:4byte +SymHalfTime = .bss:0x80982FE8; // type:object size:0x4 +SymHallOfTimeColor = .bss:0x80982FEC; // type:object size:0x4 +SymHallOfTimeMix = .bss:0x80982FF0; // type:object size:0x4 +SymHallOfTimeRate = .bss:0x80982FF4; // type:object size:0x4 +SymHallOfTimeType = .bss:0x80982FF8; // type:object size:0x10 +SymHand = .bss:0x80983008; // type:object size:0xC +SymHandleEventresponse = .bss:0x80983014; // type:object size:0x4 +SymHandleEventresponseStart = .bss:0x80983018; // type:object size:0x4 +SymHandleFilterSelected = .bss:0x8098301C; // type:object size:0x4 +SymHandleLeaderToggledFilters = .bss:0x80983020; // type:object size:0x4 +SymHandleNewSong = .bss:0x80983024; // type:object size:0x4 +SymHandleQuestFinished = .bss:0x80983028; // type:object size:0x4 +SymHandleSignOuts = .bss:0x8098302C; // type:object size:0x4 data:4byte +SymHandleSongCompletionWithInvalidScore = .bss:0x80983030; // type:object size:0x4 +SymHandmadeFont = .bss:0x80983034; // type:object size:0x4 +SymHands = .bss:0x80983038; // type:object size:0x4 +SymHard = .bss:0x8098303C; // type:object size:0x14 +SymHardwareMode = .bss:0x80983050; // type:object size:0x4 +SymHarmonic = .bss:0x80983054; // type:object size:0x4 +SymHarmonix = .bss:0x80983058; // type:object size:0x4 data:4byte +SymHarmony = .bss:0x8098305C; // type:object size:0x4 +SymHarmony1Back = .bss:0x80983060; // type:object size:0x4 data:4byte +SymHarmony1Front = .bss:0x80983064; // type:object size:0x4 data:4byte +SymHarmony1Glow = .bss:0x80983068; // type:object size:0x4 data:4byte +SymHarmony1Phoneme = .bss:0x8098306C; // type:object size:0x4 data:4byte +SymHarmony2 = .bss:0x80983070; // type:object size:0x4 data:4byte +SymHarmony2Back = .bss:0x80983074; // type:object size:0x4 data:4byte +SymHarmony2Front = .bss:0x80983078; // type:object size:0x4 data:4byte +SymHarmony2Glow = .bss:0x8098307C; // type:object size:0x4 data:4byte +SymHarmony2Phoneme = .bss:0x80983080; // type:object size:0x4 data:4byte +SymHarmony3 = .bss:0x80983084; // type:object size:0x4 data:4byte +SymHarmonyComing = .bss:0x80983088; // type:object size:0x4 +SymHarmonyDeployMat = .bss:0x8098308C; // type:object size:0x4 +SymHarmonyFx = .bss:0x80983090; // type:object size:0x4 +SymHarmonyLyricHeight = .bss:0x80983094; // type:object size:0x4 +SymHarmonyLyricMesh = .bss:0x80983098; // type:object size:0x4 +SymHarmonyLyrics = .bss:0x8098309C; // type:object size:0x4 +SymHarmonyNow = .bss:0x809830A0; // type:object size:0x4 +SymHarmonyOdComing = .bss:0x809830A4; // type:object size:0x4 +SymHarmonyOdNow = .bss:0x809830A8; // type:object size:0x4 +SymHarmonyOdPast = .bss:0x809830AC; // type:object size:0x4 +SymHarmonyPast = .bss:0x809830B0; // type:object size:0x4 +SymHarmonyPhonemeText = .bss:0x809830B4; // type:object size:0x4 data:4byte +SymHarmonyStaticComing = .bss:0x809830B8; // type:object size:0x4 +SymHarmonyStaticNow = .bss:0x809830BC; // type:object size:0x4 +SymHarmonyStaticOdComing = .bss:0x809830C0; // type:object size:0x4 +SymHarmonyStaticOdNow = .bss:0x809830C4; // type:object size:0x4 +SymHarmonyStaticOdPast = .bss:0x809830C8; // type:object size:0x4 +SymHarmonyStaticOdPreview = .bss:0x809830CC; // type:object size:0x4 +SymHarmonyStaticPast = .bss:0x809830D0; // type:object size:0x4 +SymHarmonyStaticPreview = .bss:0x809830D4; // type:object size:0x4 +SymHarmonyText = .bss:0x809830D8; // type:object size:0x8 data:4byte +SymHasActiveDestructiveEvent = .bss:0x809830E0; // type:object size:0x4 +SymHasActiveDialogEvent = .bss:0x809830E4; // type:object size:0x4 +SymHasActiveTransitionEvent = .bss:0x809830E8; // type:object size:0x4 +SymHasAnnouncement = .bss:0x809830EC; // type:object size:0x4 +SymHasAnyPatches = .bss:0x809830F0; // type:object size:0x4 +SymHasAsFriend = .bss:0x809830F4; // type:object size:0x4 +SymHasAssetOffer = .bss:0x809830F8; // type:object size:0x4 +SymHasAvailableAlbum = .bss:0x809830FC; // type:object size:0x8 +SymHasAvailablePack = .bss:0x80983104; // type:object size:0x4 +SymHasAvailableUpgrade = .bss:0x80983108; // type:object size:0x4 +SymHasAward = .bss:0x8098310C; // type:object size:0x4 +SymHasAwardIcon = .bss:0x80983110; // type:object size:0x4 +SymHasBandInfo = .bss:0x80983114; // type:object size:0x4 +SymHasBandNameBeenSet = .bss:0x80983118; // type:object size:0x8 +SymHasBattle = .bss:0x80983120; // type:object size:0x4 +SymHasBattlesInfo = .bss:0x80983124; // type:object size:0x4 +SymHasBronzeMedal = .bss:0x80983128; // type:object size:0x4 +SymHasChallenge = .bss:0x8098312C; // type:object size:0x4 +SymHasChar = .bss:0x80983130; // type:object size:0x4 +SymHasChords = .bss:0x80983134; // type:object size:0x4 +SymHasClip = .bss:0x80983138; // type:object size:0x4 +SymHasCompletedGoal = .bss:0x8098313C; // type:object size:0x8 +SymHasCorrectPlayercount = .bss:0x80983144; // type:object size:0x4 +SymHasCurrentGoal = .bss:0x80983148; // type:object size:0x8 +SymHasDisplayGoal = .bss:0x80983150; // type:object size:0x8 +SymHasFreeCam = .bss:0x80983158; // type:object size:0x4 +SymHasGenre = .bss:0x8098315C; // type:object size:0x4 +SymHasGigSpecificIntro = .bss:0x80983160; // type:object size:0x4 +SymHasGigSpecificOutro = .bss:0x80983164; // type:object size:0x4 +SymHasGoalIcon = .bss:0x80983168; // type:object size:0x4 +SymHasGoldMedal = .bss:0x8098316C; // type:object size:0x4 +SymHasGroup = .bss:0x80983170; // type:object size:0x4 +SymHasHeaderData = .bss:0x80983174; // type:object size:0x4 +SymHasHighlightMesh = .bss:0x80983178; // type:object size:0x4 +SymHasHighscore = .bss:0x8098317C; // type:object size:0x4 +SymHasHintsToShow = .bss:0x80983180; // type:object size:0x4 +SymHasKeys = .bss:0x80983184; // type:object size:0x4 +SymHasLayers = .bss:0x80983188; // type:object size:0x4 +SymHasLeaderUser = .bss:0x8098318C; // type:object size:0x4 +SymHasLeaderboard = .bss:0x80983190; // type:object size:0x4 +SymHasLicense = .bss:0x80983194; // type:object size:0x4 +SymHasLocalPlayer = .bss:0x80983198; // type:object size:0x4 +SymHasMessages = .bss:0x8098319C; // type:object size:0x4 +SymHasNetError = .bss:0x809831A0; // type:object size:0x4 +SymHasNetPlayer = .bss:0x809831A4; // type:object size:0x4 +SymHasNewAssets = .bss:0x809831A8; // type:object size:0x4 +SymHasNewAwards = .bss:0x809831AC; // type:object size:0x4 +SymHasNewRewardVignetteFestival = .bss:0x809831B0; // type:object size:0x4 +SymHasNewRewardVignettes = .bss:0x809831B4; // type:object size:0x4 +SymHasNwc24LibFailed = .bss:0x809831B8; // type:object size:0x4 +SymHasObject = .bss:0x809831BC; // type:object size:0x4 +SymHasOnlinePrivilege = .bss:0x809831C0; // type:object size:0x4 +SymHasOnlineScoring = .bss:0x809831C4; // type:object size:0x4 +SymHasPanel = .bss:0x809831C8; // type:object size:0x4 +SymHasPart = .bss:0x809831CC; // type:object size:0x4 +SymHasPartNo = .bss:0x809831D0; // type:object size:0x4 data:4byte +SymHasPartYes = .bss:0x809831D4; // type:object size:0x4 data:4byte +SymHasPerformer = .bss:0x809831D8; // type:object size:0x4 +SymHasPreviewArt = .bss:0x809831DC; // type:object size:0x4 +SymHasPreviewAudio = .bss:0x809831E0; // type:object size:0x4 +SymHasPrimaryProfile = .bss:0x809831E4; // type:object size:0x8 +SymHasRating = .bss:0x809831EC; // type:object size:0x8 +SymHasRoleInfo = .bss:0x809831F4; // type:object size:0x4 +SymHasScoreReachedCampaignLevel = .bss:0x809831F8; // type:object size:0x4 +SymHasSeenHint = .bss:0x809831FC; // type:object size:0x4 +SymHasSetlist = .bss:0x80983200; // type:object size:0x4 +SymHasShortcuts = .bss:0x80983204; // type:object size:0x4 +SymHasSilverMedal = .bss:0x80983208; // type:object size:0x4 +SymHasSoloHighscore = .bss:0x8098320C; // type:object size:0x4 +SymHasSong = .bss:0x80983210; // type:object size:0x8 +SymHasSpace = .bss:0x80983218; // type:object size:0x4 +SymHasSticker = .bss:0x8098321C; // type:object size:0x4 +SymHasSyncPermission = .bss:0x80983220; // type:object size:0x4 +SymHasTargets = .bss:0x80983224; // type:object size:0x4 +SymHasUnlinkedMotd = .bss:0x80983228; // type:object size:0x4 +SymHasUnlockedModifier = .bss:0x8098322C; // type:object size:0x4 +SymHasUser = .bss:0x80983230; // type:object size:0x4 +SymHasUserSigninChanged = .bss:0x80983234; // type:object size:0x4 +SymHasValidBattleInstarankData = .bss:0x80983238; // type:object size:0x4 +SymHasValidInstarankData = .bss:0x8098323C; // type:object size:0x4 +SymHasValidUser = .bss:0x80983240; // type:object size:0x4 +SymHasVocalParts = .bss:0x80983244; // type:object size:0x4 +SymHasWritePermission = .bss:0x80983248; // type:object size:0x4 +SymHat = .bss:0x8098324C; // type:object size:0x4 +SymHaveCalbertConnected = .bss:0x80983250; // type:object size:0x8 +SymHead = .bss:0x80983258; // type:object size:0x8 data:4byte +SymHeadLookat = .bss:0x80983260; // type:object size:0x4 +SymHeadLookatWeight = .bss:0x80983264; // type:object size:0x4 +SymHeadMat = .bss:0x80983268; // type:object size:0x4 +SymHeader = .bss:0x8098326C; // type:object size:0x4 data:4byte +SymHeaderCareerInstrumentMask = .bss:0x80983270; // type:object size:0x4 +SymHeaderCareerScore = .bss:0x80983274; // type:object size:0x4 +SymHeaderCareerStars = .bss:0x80983278; // type:object size:0x4 +SymHeaderContinued = .bss:0x8098327C; // type:object size:0x4 data:4byte +SymHeaderPossibleStars = .bss:0x80983280; // type:object size:0x4 +SymHeading = .bss:0x80983284; // type:object size:0x4 +SymHeading2 = .bss:0x80983288; // type:object size:0x4 +SymHeads = .bss:0x8098328C; // type:object size:0x4 +SymHeap = .bss:0x80983290; // type:object size:0x4 data:4byte +SymHeight = .bss:0x80983294; // type:object size:0x4 data:4byte +SymHeldButtons = .bss:0x80983298; // type:object size:0x4 data:4byte +SymHiEmitRate = .bss:0x8098329C; // type:object size:0x4 +SymHiResScreen = .bss:0x809832A0; // type:object size:0x4 +SymHidden = .bss:0x809832A4; // type:object size:0x4 data:4byte +SymHiddenPartAlpha = .bss:0x809832A8; // type:object size:0x4 +SymHiddenTriggers = .bss:0x809832AC; // type:object size:0x4 data:4byte +SymHide = .bss:0x809832B0; // type:object size:0x4 +SymHideDelays = .bss:0x809832B4; // type:object size:0x4 +SymHideDenominator = .bss:0x809832B8; // type:object size:0x4 +SymHideList = .bss:0x809832BC; // type:object size:0x8 +SymHideMessage = .bss:0x809832C4; // type:object size:0x10 +SymHidePeakArrow = .bss:0x809832D4; // type:object size:0x4 +SymHideProgress = .bss:0x809832D8; // type:object size:0x4 data:4byte +SymHideSaveIcon = .bss:0x809832DC; // type:object size:0x4 +SymHideScore = .bss:0x809832E0; // type:object size:0x8 +SymHides = .bss:0x809832E8; // type:object size:0x4 +SymHighCut = .bss:0x809832EC; // type:object size:0x4 +SymHighFrequency = .bss:0x809832F0; // type:object size:0x4 +SymHighFretGemCount = .bss:0x809832F4; // type:object size:0x4 data:4byte +SymHighGain = .bss:0x809832F8; // type:object size:0x4 +SymHighGemsHitHigh = .bss:0x809832FC; // type:object size:0x4 data:4byte +SymHighGemsHitLow = .bss:0x80983300; // type:object size:0x4 data:4byte +SymHighPassCutoff = .bss:0x80983304; // type:object size:0x4 +SymHighPassReso = .bss:0x80983308; // type:object size:0x4 +SymHighlight = .bss:0x8098330C; // type:object size:0x4 +SymHighlightDisabledColor = .bss:0x80983310; // type:object size:0x4 +SymHighlightFocusedColor = .bss:0x80983314; // type:object size:0x4 +SymHighlightMeshGroup = .bss:0x80983318; // type:object size:0x4 +SymHighlightNodeAtIx = .bss:0x8098331C; // type:object size:0x4 data:4byte +SymHighlightNormalColor = .bss:0x80983320; // type:object size:0x4 +SymHighlightObjects = .bss:0x80983324; // type:object size:0x4 +SymHighlightSelectedColor = .bss:0x80983328; // type:object size:0x4 +SymHighlightSelectingColor = .bss:0x8098332C; // type:object size:0x4 +SymHighlightStyle = .bss:0x80983330; // type:object size:0x10 +SymHintGoalcompleteScreen = .bss:0x80983340; // type:object size:0x14 data:4byte +SymHit = .bss:0x80983354; // type:object size:0x4 data:4byte +SymHitBre = .bss:0x80983358; // type:object size:0x4 +SymHitCount = .bss:0x8098335C; // type:object size:0x4 data:4byte +SymHitNotify = .bss:0x80983360; // type:object size:0x4 +SymHitStreakCount = .bss:0x80983364; // type:object size:0x4 data:4byte +SymHitStreakDuration = .bss:0x80983368; // type:object size:0x4 data:4byte +SymHitStreakStart = .bss:0x8098336C; // type:object size:0x4 data:4byte +SymHoldNote = .bss:0x80983370; // type:object size:0x4 data:4byte +SymHomeMenuActive = .bss:0x80983374; // type:object size:0x4 +SymHomePauseVoices = .bss:0x80983378; // type:object size:0x4 +SymHookup = .bss:0x8098337C; // type:object size:0x4 +SymHookupFlags = .bss:0x80983380; // type:object size:0x4 +SymHopo = .bss:0x80983384; // type:object size:0x4 +SymHopoGemCount = .bss:0x80983388; // type:object size:0x4 data:4byte +SymHopoGemsHopoed = .bss:0x8098338C; // type:object size:0x8 data:4byte +SymHopoPercentStatTrackerContribution = .bss:0x80983394; // type:object size:0x4 data:4byte +SymHopoStatTrackerContribution = .bss:0x80983398; // type:object size:0x4 data:4byte +SymHopoTail = .bss:0x8098339C; // type:object size:0x4 +SymHopoTailMiss = .bss:0x809833A0; // type:object size:0x4 +SymHopoThreshold = .bss:0x809833A4; // type:object size:0x4 data:4byte +SymHoposPercent = .bss:0x809833A8; // type:object size:0x8 +SymHorizontal = .bss:0x809833B0; // type:object size:0x4 +SymHostRestartLastSong = .bss:0x809833B4; // type:object size:0x8 +SymHud = .bss:0x809833BC; // type:object size:0x4 +SymHudFilename = .bss:0x809833C0; // type:object size:0x8 +SymHue = .bss:0x809833C8; // type:object size:0x1C +SymIcon = .bss:0x809833E4; // type:object size:0x4 data:4byte +SymIcon0Val = .bss:0x809833E8; // type:object size:0x4 +SymIcon1Val = .bss:0x809833EC; // type:object size:0x4 +SymIcon2Val = .bss:0x809833F0; // type:object size:0x4 +SymIcon3Val = .bss:0x809833F4; // type:object size:0x4 +SymIcon4Val = .bss:0x809833F8; // type:object size:0x4 +SymIconOverride = .bss:0x809833FC; // type:object size:0x4 data:4byte +SymIconsLabel = .bss:0x80983400; // type:object size:0x4 data:4byte +SymId = .bss:0x80983404; // type:object size:0x4 data:4byte +SymIgnore = .bss:0x80983408; // type:object size:0x14 +SymIgnoreWiiSpeakFriends = .bss:0x8098341C; // type:object size:0x4 +SymIkObject = .bss:0x80983420; // type:object size:0x4 +SymImage = .bss:0x80983424; // type:object size:0x4 +SymImmediateRetract = .bss:0x80983428; // type:object size:0x4 +SymImportFromImportfont = .bss:0x8098342C; // type:object size:0x4 +SymImposterHeight = .bss:0x80983430; // type:object size:0x4 +SymInAnim = .bss:0x80983434; // type:object size:0x4 +SymInCloset = .bss:0x80983438; // type:object size:0x4 +SymInFreestyleSection = .bss:0x8098343C; // type:object size:0x4 +SymInGame = .bss:0x80983440; // type:object size:0x4 +SymInGroups = .bss:0x80983444; // type:object size:0x4 +SymInHi = .bss:0x80983448; // type:object size:0x4 +SymInIntro = .bss:0x8098344C; // type:object size:0x4 +SymInLibrary = .bss:0x80983450; // type:object size:0x4 +SymInLo = .bss:0x80983454; // type:object size:0x4 +SymInLock = .bss:0x80983458; // type:object size:0x4 +SymInMode = .bss:0x8098345C; // type:object size:0x4 +SymInOverrideFlow = .bss:0x80983460; // type:object size:0x4 +SymInRgRoll = .bss:0x80983464; // type:object size:0x4 +SymInRgTrill = .bss:0x80983468; // type:object size:0x4 +SymInRoll = .bss:0x8098346C; // type:object size:0x4 +SymInSong = .bss:0x80983470; // type:object size:0x4 +SymInStarMode = .bss:0x80983474; // type:object size:0x8 +SymInTourEnding = .bss:0x8098347C; // type:object size:0x4 +SymInTrackMode = .bss:0x80983480; // type:object size:0x4 +SymInTransition = .bss:0x80983484; // type:object size:0x4 +SymInTrill = .bss:0x80983488; // type:object size:0x4 +SymInUse = .bss:0x8098348C; // type:object size:0x4 +SymInVocalMode = .bss:0x80983490; // type:object size:0x4 +SymInWaitingLock = .bss:0x80983494; // type:object size:0x4 +SymInactiveDisabledColor = .bss:0x80983498; // type:object size:0x4 +SymInactiveFocusedColor = .bss:0x8098349C; // type:object size:0x4 +SymInactiveNormalColor = .bss:0x809834A0; // type:object size:0x4 +SymInactiveSelectedColor = .bss:0x809834A4; // type:object size:0x4 +SymInactiveSelectingColor = .bss:0x809834A8; // type:object size:0x4 +SymIncGuidePart = .bss:0x809834AC; // type:object size:0x4 +SymIncScorePart = .bss:0x809834B0; // type:object size:0x4 +SymIncSection = .bss:0x809834B4; // type:object size:0x4 +SymIncomingMsg = .bss:0x809834B8; // type:object size:0xC data:4byte +SymIncrementSongReview = .bss:0x809834C4; // type:object size:0x8 +SymIndex = .bss:0x809834CC; // type:object size:0x4 +SymIndexFromFrame = .bss:0x809834D0; // type:object size:0x4 +SymIndexedSong = .bss:0x809834D4; // type:object size:0x10 +SymInertia = .bss:0x809834E4; // type:object size:0x8 +SymIngamedescOverride = .bss:0x809834EC; // type:object size:0x4 data:4byte +SymInit = .bss:0x809834F0; // type:object size:0x4 +SymInitCommerce = .bss:0x809834F4; // type:object size:0x4 +SymInitNintendoConnection = .bss:0x809834F8; // type:object size:0x8 +SymInitPanels = .bss:0x80983500; // type:object size:0x4 +SymInitPreDownload = .bss:0x80983504; // type:object size:0x4 +SymInitSections = .bss:0x80983508; // type:object size:0x4 +SymInitialShot = .bss:0x8098350C; // type:object size:0x4 +SymInitialize = .bss:0x80983510; // type:object size:0x4 +SymInitializeContent = .bss:0x80983514; // type:object size:0x4 +SymInitializeNextGig = .bss:0x80983518; // type:object size:0x4 +SymInitializeSongReviewDisplay = .bss:0x8098351C; // type:object size:0x4 +SymInitializeTour = .bss:0x80983520; // type:object size:0x4 +SymInlineHelpFmt = .bss:0x80983524; // type:object size:0x4 data:4byte +SymInlineProxy = .bss:0x80983528; // type:object size:0x4 +SymInnerRadius = .bss:0x8098352C; // type:object size:0x4 +SymInnerVolume = .bss:0x80983530; // type:object size:0x4 +SymInputGain = .bss:0x80983534; // type:object size:0x4 +SymInputStatusChanged = .bss:0x80983538; // type:object size:0x8 data:4byte +SymInsertIdle = .bss:0x80983540; // type:object size:0x4 +SymInstANet = .bss:0x80983544; // type:object size:0x4 +SymInstBNet = .bss:0x80983548; // type:object size:0x4 +SymInstCNet = .bss:0x8098354C; // type:object size:0x4 +SymInstDNet = .bss:0x80983550; // type:object size:0x14 +SymInstaRank = .bss:0x80983564; // type:object size:0x8 data:4byte +SymInstallFilter = .bss:0x8098356C; // type:object size:0x8 +SymInstanceFile = .bss:0x80983574; // type:object size:0x8 +SymInstarankFriendBeat = .bss:0x8098357C; // type:object size:0x4 data:4byte +SymInstarankFriendBeatAndMore = .bss:0x80983580; // type:object size:0x4 data:4byte +SymInstarankHighscorePercentile = .bss:0x80983584; // type:object size:0x4 data:4byte +SymInstarankHighscoreRank = .bss:0x80983588; // type:object size:0x4 data:4byte +SymInstarankNofriendBeat = .bss:0x8098358C; // type:object size:0x4 data:4byte +SymInstarankPercentile = .bss:0x80983590; // type:object size:0x8 data:4byte +SymInstarankPreviousbestRank = .bss:0x80983598; // type:object size:0x4 data:4byte +SymInstarankRank = .bss:0x8098359C; // type:object size:0x4 data:4byte +SymInstarankRivalClose = .bss:0x809835A0; // type:object size:0x4 data:4byte +SymInstarankRivalPercentile = .bss:0x809835A4; // type:object size:0x4 data:4byte +SymInstarankRivalRank = .bss:0x809835A8; // type:object size:0x8 data:4byte +SymInstrument = .bss:0x809835B0; // type:object size:0x4 data:4byte +SymInstrumentA = .bss:0x809835B4; // type:object size:0x4 +SymInstrumentB = .bss:0x809835B8; // type:object size:0x4 +SymInstrumentC = .bss:0x809835BC; // type:object size:0x4 +SymInstrumentColorOverride = .bss:0x809835C0; // type:object size:0x4 +SymInstrumentD = .bss:0x809835C4; // type:object size:0x4 +SymInstrumentFinishProvider = .bss:0x809835C8; // type:object size:0x4 +SymInstrumentIcon = .bss:0x809835CC; // type:object size:0x4 data:4byte +SymInstrumentIcons = .bss:0x809835D0; // type:object size:0x4 data:4byte +SymInstrumentLabel = .bss:0x809835D4; // type:object size:0x4 data:4byte +SymInstrumentMapping = .bss:0x809835D8; // type:object size:0x8 data:4byte +SymInstrumentSpecific = .bss:0x809835E0; // type:object size:0x4 data:4byte +SymInstrumentState = .bss:0x809835E4; // type:object size:0x4 +SymInstrumentType = .bss:0x809835E8; // type:object size:0x4 +SymInstruments = .bss:0x809835EC; // type:object size:0x4 +SymInt = .bss:0x809835F0; // type:object size:0x4 data:4byte +SymIntensity = .bss:0x809835F4; // type:object size:0x4 +SymIntensityRate = .bss:0x809835F8; // type:object size:0x4 +SymInterest = .bss:0x809835FC; // type:object size:0x4 +SymInterestToForce = .bss:0x80983600; // type:object size:0x4 +SymInterests = .bss:0x80983604; // type:object size:0x4 +SymInternalSetlists = .bss:0x80983608; // type:object size:0x4 data:4byte +SymInterp = .bss:0x8098360C; // type:object size:0x4 +SymInterpHandler = .bss:0x80983610; // type:object size:0x4 +SymInterpType = .bss:0x80983614; // type:object size:0x4 +SymInterstitials = .bss:0x80983618; // type:object size:0x4 data:4byte +SymIntervalSpread = .bss:0x8098361C; // type:object size:0x4 +SymIntro = .bss:0x80983620; // type:object size:0x4 data:4byte +SymIntroName = .bss:0x80983624; // type:object size:0x4 +SymIntroTrig = .bss:0x80983628; // type:object size:0x4 +SymIntroVignette = .bss:0x8098362C; // type:object size:0x8 data:4byte +SymInvalidPracticeSections = .bss:0x80983634; // type:object size:0x8 +SymInvertChordShape = .bss:0x8098363C; // type:object size:0x8 +SymInvisible = .bss:0x80983644; // type:object size:0x4 data:4byte +SymInviteAccepted = .bss:0x80983648; // type:object size:0x4 data:4byte +SymInviteBody = .bss:0x8098364C; // type:object size:0xC data:4byte +SymInviteFriend = .bss:0x80983658; // type:object size:0x4 +SymInviteSubject = .bss:0x8098365C; // type:object size:0xC data:4byte +SymIrAmongAll = .bss:0x80983668; // type:object size:0x4 data:4byte +SymIrAmongFriends = .bss:0x8098366C; // type:object size:0x8 data:4byte +SymIsAccomplishmentSecret = .bss:0x80983674; // type:object size:0x4 +SymIsActive = .bss:0x80983678; // type:object size:0x4 +SymIsActiveUser = .bss:0x8098367C; // type:object size:0x4 +SymIsAnimating = .bss:0x80983680; // type:object size:0x4 +SymIsAnyLocalSlotAllowingInputToShell = .bss:0x80983684; // type:object size:0x4 +SymIsAnySlotAllowingInputToShell = .bss:0x80983688; // type:object size:0x4 +SymIsAnySlotJoinable = .bss:0x8098368C; // type:object size:0x4 +SymIsAnyUserSignedInAndConnected = .bss:0x80983690; // type:object size:0x4 +SymIsAutomatic = .bss:0x80983694; // type:object size:0x4 data:4byte +SymIsAutosaveEnabled = .bss:0x80983698; // type:object size:0x4 +SymIsAvailable = .bss:0x8098369C; // type:object size:0x4 +SymIsBandNoFailSet = .bss:0x809836A0; // type:object size:0x4 +SymIsBattle = .bss:0x809836A4; // type:object size:0x4 +SymIsBlocking = .bss:0x809836A8; // type:object size:0x4 +SymIsBusy = .bss:0x809836AC; // type:object size:0x8 +SymIsCharCustomizable = .bss:0x809836B4; // type:object size:0x4 +SymIsCheatOn = .bss:0x809836B8; // type:object size:0x4 +SymIsCheating = .bss:0x809836BC; // type:object size:0x4 data:4byte +SymIsCheckingProfanity = .bss:0x809836C0; // type:object size:0x4 +SymIsChunk = .bss:0x809836C4; // type:object size:0x4 +SymIsCompletelyUnavailable = .bss:0x809836C8; // type:object size:0x8 +SymIsCone = .bss:0x809836D0; // type:object size:0x8 +SymIsConnected = .bss:0x809836D8; // type:object size:0x4 +SymIsCorrectController = .bss:0x809836DC; // type:object size:0x4 +SymIsCurrentAssetPatchable = .bss:0x809836E0; // type:object size:0x4 +SymIsCurrentOperation = .bss:0x809836E4; // type:object size:0x4 +SymIsCurrentQuestCustom = .bss:0x809836E8; // type:object size:0x4 +SymIsCymbalSelected = .bss:0x809836EC; // type:object size:0x4 +SymIsDelay = .bss:0x809836F0; // type:object size:0x8 +SymIsDemo = .bss:0x809836F8; // type:object size:0x4 +SymIsDeploying = .bss:0x809836FC; // type:object size:0x8 +SymIsDisableWriting = .bss:0x80983704; // type:object size:0x4 +SymIsDone = .bss:0x80983708; // type:object size:0x4 +SymIsDownload = .bss:0x8098370C; // type:object size:0x4 +SymIsDownloaded = .bss:0x80983710; // type:object size:0x4 +SymIsDownloading = .bss:0x80983714; // type:object size:0x4 +SymIsDownloadingFile = .bss:0x80983718; // type:object size:0x4 +SymIsEnabled = .bss:0x8098371C; // type:object size:0x4 +SymIsEthernetCableConnected = .bss:0x80983720; // type:object size:0x4 +SymIsFinding = .bss:0x80983724; // type:object size:0x4 +SymIsFirstSong = .bss:0x80983728; // type:object size:0x4 +SymIsFriendAlreadyInvited = .bss:0x8098372C; // type:object size:0x4 +SymIsFriendInSession = .bss:0x80983730; // type:object size:0x4 +SymIsFriendOffline = .bss:0x80983734; // type:object size:0x4 +SymIsFull = .bss:0x80983738; // type:object size:0x4 +SymIsGameOver = .bss:0x8098373C; // type:object size:0x8 +SymIsIdle = .bss:0x80983744; // type:object size:0x4 +SymIsInGame = .bss:0x80983748; // type:object size:0x8 +SymIsInTrackMode = .bss:0x80983750; // type:object size:0x4 +SymIsInitialLoadDone = .bss:0x80983754; // type:object size:0x4 +SymIsInstrumentSynthOn = .bss:0x80983758; // type:object size:0x4 +SymIsInternal = .bss:0x8098375C; // type:object size:0x8 data:4byte +SymIsInvalidScore = .bss:0x80983764; // type:object size:0x4 +SymIsInvitationPending = .bss:0x80983768; // type:object size:0x4 +SymIsInvitationPendingFromFriend = .bss:0x8098376C; // type:object size:0x4 +SymIsIxActive = .bss:0x80983770; // type:object size:0x4 +SymIsJoining = .bss:0x80983774; // type:object size:0x8 +SymIsLastCampaignLevel = .bss:0x8098377C; // type:object size:0x4 +SymIsLastSong = .bss:0x80983780; // type:object size:0x4 +SymIsLeaderLocal = .bss:0x80983784; // type:object size:0x4 +SymIsLessonComplete = .bss:0x80983788; // type:object size:0x4 +SymIsLoaded = .bss:0x8098378C; // type:object size:0x4 +SymIsLoading = .bss:0x80983790; // type:object size:0x4 +SymIsLoadingStickers = .bss:0x80983794; // type:object size:0x4 +SymIsLocal = .bss:0x80983798; // type:object size:0x4 +SymIsLocalSetlist = .bss:0x8098379C; // type:object size:0x4 +SymIsLocked = .bss:0x809837A0; // type:object size:0x4 +SymIsMajorLevel = .bss:0x809837A4; // type:object size:0x4 data:4byte +SymIsMenuShown = .bss:0x809837A8; // type:object size:0x4 +SymIsMessageHiding = .bss:0x809837AC; // type:object size:0x4 +SymIsMetadataLoaded = .bss:0x809837B0; // type:object size:0x4 +SymIsModifierActive = .bss:0x809837B4; // type:object size:0x4 +SymIsModifierDelayedEffect = .bss:0x809837B8; // type:object size:0x4 +SymIsMounted = .bss:0x809837BC; // type:object size:0x4 +SymIsMusicVideo = .bss:0x809837C0; // type:object size:0x4 +SymIsNet = .bss:0x809837C4; // type:object size:0x4 +SymIsNetSetlist = .bss:0x809837C8; // type:object size:0x4 +SymIsNewRelease = .bss:0x809837CC; // type:object size:0x4 +SymIsNoFailActive = .bss:0x809837D0; // type:object size:0x4 +SymIsNonVocalistInVocalsSlot = .bss:0x809837D4; // type:object size:0x4 +SymIsNowUsingVocalHarmony = .bss:0x809837D8; // type:object size:0x4 +SymIsOnTour = .bss:0x809837DC; // type:object size:0x4 +SymIsOnline = .bss:0x809837E0; // type:object size:0x4 data:4byte +SymIsOnlineEnabled = .bss:0x809837E4; // type:object size:0x4 +SymIsOnlineRestricted = .bss:0x809837E8; // type:object size:0x8 +SymIsPartiallyDownloaded = .bss:0x809837F0; // type:object size:0x4 +SymIsPartiallyPurchased = .bss:0x809837F4; // type:object size:0x4 +SymIsParticipating = .bss:0x809837F8; // type:object size:0x8 +SymIsPaused = .bss:0x80983800; // type:object size:0x4 +SymIsPlaying = .bss:0x80983804; // type:object size:0x4 +SymIsPlayingDemo = .bss:0x80983808; // type:object size:0x4 +SymIsPlaytest = .bss:0x8098380C; // type:object size:0x4 data:4byte +SymIsPossessiveSuffixNeeded = .bss:0x80983810; // type:object size:0x4 +SymIsPrimaryUserOnLastCampaignLevel = .bss:0x80983814; // type:object size:0x4 +SymIsProcessingInput = .bss:0x80983818; // type:object size:0x4 +SymIsProfileNameInvalid = .bss:0x8098381C; // type:object size:0x4 +SymIsProfileNameTaken = .bss:0x80983820; // type:object size:0x4 +SymIsProfileOwner = .bss:0x80983824; // type:object size:0x4 +SymIsProxy = .bss:0x80983828; // type:object size:0x4 +SymIsPurchased = .bss:0x8098382C; // type:object size:0x4 +SymIsQuestWon = .bss:0x80983830; // type:object size:0x4 +SymIsQuitToken = .bss:0x80983834; // type:object size:0x4 +SymIsReferenced = .bss:0x80983838; // type:object size:0x4 +SymIsRefreshingContent = .bss:0x8098383C; // type:object size:0x4 +SymIsResource = .bss:0x80983840; // type:object size:0x8 +SymIsRevealed = .bss:0x80983848; // type:object size:0x4 +SymIsRightHand = .bss:0x8098384C; // type:object size:0x4 +SymIsScrollSelected = .bss:0x80983850; // type:object size:0x4 +SymIsScrolling = .bss:0x80983854; // type:object size:0x4 +SymIsScrollingDown = .bss:0x80983858; // type:object size:0x4 +SymIsSdcardInserted = .bss:0x8098385C; // type:object size:0x4 +SymIsSecret = .bss:0x80983860; // type:object size:0x4 data:4byte +SymIsSetComplete = .bss:0x80983864; // type:object size:0x4 +SymIsShared = .bss:0x80983868; // type:object size:0x4 +SymIsSignedInOnline = .bss:0x8098386C; // type:object size:0x4 +SymIsSongMounted = .bss:0x80983870; // type:object size:0x4 +SymIsSpecial = .bss:0x80983874; // type:object size:0x4 data:4byte +SymIsStereo = .bss:0x80983878; // type:object size:0x4 +SymIsTest = .bss:0x8098387C; // type:object size:0x4 +SymIsTimedMovie = .bss:0x80983880; // type:object size:0x8 data:4byte +SymIsTop = .bss:0x80983888; // type:object size:0x4 +SymIsTourAvailable = .bss:0x8098388C; // type:object size:0x4 +SymIsTourComplete = .bss:0x80983890; // type:object size:0x8 +SymIsUgc = .bss:0x80983898; // type:object size:0x4 +SymIsUnderway = .bss:0x8098389C; // type:object size:0x4 +SymIsUnloaded = .bss:0x809838A0; // type:object size:0x4 +SymIsUnlockingModifiers = .bss:0x809838A4; // type:object size:0x4 +SymIsUp = .bss:0x809838A8; // type:object size:0x4 +SymIsUserAGuest = .bss:0x809838AC; // type:object size:0x4 +SymIsUserAWiiguest = .bss:0x809838B0; // type:object size:0x4 +SymIsUserOnCorrectInstrument = .bss:0x809838B4; // type:object size:0x4 +SymIsUserOnLastCampaignLevel = .bss:0x809838B8; // type:object size:0x4 +SymIsUserSignedIn = .bss:0x809838BC; // type:object size:0x4 +SymIsUserSignedIntoLive = .bss:0x809838C0; // type:object size:0x4 +SymIsUsingPersistentData = .bss:0x809838C4; // type:object size:0x4 +SymIsValidButtonForShell = .bss:0x809838C8; // type:object size:0x8 +SymIsWaiting = .bss:0x809838D0; // type:object size:0x4 +SymIsWaitingOnEnum = .bss:0x809838D4; // type:object size:0x4 +SymIsWhite = .bss:0x809838D8; // type:object size:0x4 data:4byte +SymIsWiiprofileCreatePending = .bss:0x809838DC; // type:object size:0x4 +SymIsWiiprofileDeleteQueueFull = .bss:0x809838E0; // type:object size:0x4 +SymIsWiiprofileFull = .bss:0x809838E4; // type:object size:0x4 +SymIsWinning = .bss:0x809838E8; // type:object size:0x10 +SymIsolateVocalPart = .bss:0x809838F8; // type:object size:0x4 +SymIta = .bss:0x809838FC; // type:object size:0x4 data:4byte +SymItalics = .bss:0x80983900; // type:object size:0x8 +SymIterate = .bss:0x80983908; // type:object size:0x8 +SymIterateFrac = .bss:0x80983910; // type:object size:0x10 +SymIterateSelf = .bss:0x80983920; // type:object size:0x4 +SymIterateShot = .bss:0x80983924; // type:object size:0x4 +SymIxToLeaderboardIx = .bss:0x80983928; // type:object size:0x4 +SymJawHeight = .bss:0x8098392C; // type:object size:0x4 +SymJawWidth = .bss:0x80983930; // type:object size:0x4 +SymJetVenues = .bss:0x80983934; // type:object size:0x4 +SymJitter = .bss:0x80983938; // type:object size:0x10 +SymJoin = .bss:0x80983948; // type:object size:0x4 +SymJoinInProgress = .bss:0x8098394C; // type:object size:0x4 +SymJoinInvite = .bss:0x80983950; // type:object size:0x4 +SymJoinResult = .bss:0x80983954; // type:object size:0x4 data:4byte +SymJoiningAllowed = .bss:0x80983958; // type:object size:0xC data:4byte +SymJoypad = .bss:0x80983964; // type:object size:0x4 data:4byte +SymJoypadGuitar = .bss:0x80983968; // type:object size:0x4 +SymJpn = .bss:0x8098396C; // type:object size:0x4 +SymJump = .bss:0x80983970; // type:object size:0x4 +SymJumpTo = .bss:0x80983974; // type:object size:0x4 +SymJustListedContentSetsPrices = .bss:0x80983978; // type:object size:0x4 +SymKaleidoscopeAngle = .bss:0x8098397C; // type:object size:0x4 +SymKaleidoscopeComplexity = .bss:0x80983980; // type:object size:0x4 +SymKaleidoscopeFlipUVs = .bss:0x80983984; // type:object size:0x4 +SymKaleidoscopeRadius = .bss:0x80983988; // type:object size:0x4 +SymKaleidoscopeSize = .bss:0x8098398C; // type:object size:0x4 +SymKeepMeshData = .bss:0x80983990; // type:object size:0x4 +SymKerning = .bss:0x80983994; // type:object size:0x4 +SymKey = .bss:0x80983998; // type:object size:0x4 +SymKeyKeysOnGuitar = .bss:0x8098399C; // type:object size:0x4 data:4byte +SymKeyMissLeft = .bss:0x809839A0; // type:object size:0x4 +SymKeyMissRight = .bss:0x809839A4; // type:object size:0x4 +SymKeyUnlockedFacePaint = .bss:0x809839A8; // type:object size:0x4 data:4byte +SymKeyUnlockedTattoos = .bss:0x809839AC; // type:object size:0x4 data:4byte +SymKeyVideoVenues = .bss:0x809839B0; // type:object size:0x4 data:4byte +SymKeyboard = .bss:0x809839B4; // type:object size:0x4 data:4byte +SymKeyboardAllowedChars = .bss:0x809839B8; // type:object size:0x4 data:4byte +SymKeyboardIntensity = .bss:0x809839BC; // type:object size:0x4 +SymKeyboardRefBone = .bss:0x809839C0; // type:object size:0x4 +SymKeyframes = .bss:0x809839C4; // type:object size:0x4 +SymKeys = .bss:0x809839C8; // type:object size:0x4 data:4byte +SymKeysOwner = .bss:0x809839CC; // type:object size:0x8 +SymKeysType = .bss:0x809839D4; // type:object size:0x4 +SymKickDrummerResetTrig = .bss:0x809839D8; // type:object size:0x4 +SymKickDrummerTrig = .bss:0x809839DC; // type:object size:0x8 +SymKickPassCounter = .bss:0x809839E4; // type:object size:0x4 +SymKickPlayer = .bss:0x809839E8; // type:object size:0x8 +SymKickUser = .bss:0x809839F0; // type:object size:0xC +SymLabel = .bss:0x809839FC; // type:object size:0x4 data:4byte +SymLabelEx = .bss:0x80983A00; // type:object size:0x8 +SymLagGo = .bss:0x80983A08; // type:object size:0x4 data:4byte +SymLanguage = .bss:0x80983A0C; // type:object size:0x4 data:4byte +SymLastDnsError = .bss:0x80983A10; // type:object size:0x4 +SymLastDwcError = .bss:0x80983A14; // type:object size:0x4 +SymLastGennedNg = .bss:0x80983A18; // type:object size:0x4 +SymLastMax = .bss:0x80983A1C; // type:object size:0x4 +SymLastMin = .bss:0x80983A20; // type:object size:0x4 +SymLastNhttpError = .bss:0x80983A24; // type:object size:0x4 +SymLastProcCmds = .bss:0x80983A28; // type:object size:0x4 +SymLastSong = .bss:0x80983A2C; // type:object size:0x4 +SymLastTargetPassed = .bss:0x80983A30; // type:object size:0x8 data:4byte +SymLatin1 = .bss:0x80983A38; // type:object size:0x4 +SymLaunch = .bss:0x80983A3C; // type:object size:0x4 +SymLaunchGoal = .bss:0x80983A40; // type:object size:0x4 +SymLaunchPart = .bss:0x80983A44; // type:object size:0x4 +SymLaunchParticles = .bss:0x80983A48; // type:object size:0x4 +SymLaunchParts = .bss:0x80983A4C; // type:object size:0x4 +SymLaunchSelectedEntry = .bss:0x80983A50; // type:object size:0x4 +SymLaunchableControllerTypes = .bss:0x80983A54; // type:object size:0x4 data:4byte +SymLaunchableDifficulty = .bss:0x80983A58; // type:object size:0x4 data:4byte +SymLaunchablePlayercountMax = .bss:0x80983A5C; // type:object size:0x4 data:4byte +SymLaunchablePlayercountMin = .bss:0x80983A60; // type:object size:0x4 data:4byte +SymLaunchableRequiresUnisonAbility = .bss:0x80983A64; // type:object size:0x4 data:4byte +SymLaunchableScoretype = .bss:0x80983A68; // type:object size:0x4 data:4byte +SymLayerOptional = .bss:0x80983A6C; // type:object size:0x4 +SymLayerOptions = .bss:0x80983A70; // type:object size:0x4 data:4byte +SymLayerProvider = .bss:0x80983A74; // type:object size:0x4 +SymLayerDir = .bss:0x80983A78; // type:object size:0x4 +SymLayers = .bss:0x80983A7C; // type:object size:0x10 +SymLbFriends = .bss:0x80983A8C; // type:object size:0x4 data:4byte +SymLbMode = .bss:0x80983A90; // type:object size:0xC data:4byte +SymLbType = .bss:0x80983A9C; // type:object size:0x4 data:4byte +SymLead = .bss:0x80983AA0; // type:object size:0x4 +SymLeadBack = .bss:0x80983AA4; // type:object size:0x4 data:4byte +SymLeadComing = .bss:0x80983AA8; // type:object size:0x4 +SymLeadDeployMat = .bss:0x80983AAC; // type:object size:0x4 +SymLeadFront = .bss:0x80983AB0; // type:object size:0x4 data:4byte +SymLeadGlow = .bss:0x80983AB4; // type:object size:0x4 data:4byte +SymLeadLyricHeight = .bss:0x80983AB8; // type:object size:0x4 +SymLeadLyricMesh = .bss:0x80983ABC; // type:object size:0x4 +SymLeadLyrics = .bss:0x80983AC0; // type:object size:0x4 +SymLeadNow = .bss:0x80983AC4; // type:object size:0x4 +SymLeadOdComing = .bss:0x80983AC8; // type:object size:0x4 +SymLeadOdNow = .bss:0x80983ACC; // type:object size:0x4 +SymLeadOdPast = .bss:0x80983AD0; // type:object size:0x4 +SymLeadPast = .bss:0x80983AD4; // type:object size:0x4 +SymLeadPhoneme = .bss:0x80983AD8; // type:object size:0x4 data:4byte +SymLeadPhonemeText = .bss:0x80983ADC; // type:object size:0x4 data:4byte +SymLeadStaticComing = .bss:0x80983AE0; // type:object size:0x4 +SymLeadStaticNow = .bss:0x80983AE4; // type:object size:0x4 +SymLeadStaticOdComing = .bss:0x80983AE8; // type:object size:0x4 +SymLeadStaticOdNow = .bss:0x80983AEC; // type:object size:0x4 +SymLeadStaticOdPast = .bss:0x80983AF0; // type:object size:0x4 +SymLeadStaticOdPreview = .bss:0x80983AF4; // type:object size:0x4 +SymLeadStaticPast = .bss:0x80983AF8; // type:object size:0x4 +SymLeadStaticPreview = .bss:0x80983AFC; // type:object size:0x4 +SymLeadText = .bss:0x80983B00; // type:object size:0x4 data:4byte +SymLeaderboard = .bss:0x80983B04; // type:object size:0x4 data:4byte +SymLeaderboardGoal = .bss:0x80983B08; // type:object size:0x4 data:4byte +SymLeaderboardIxToIx = .bss:0x80983B0C; // type:object size:0x4 +SymLeading = .bss:0x80983B10; // type:object size:0x4 +SymLearn = .bss:0x80983B14; // type:object size:0x4 +SymLearnPro = .bss:0x80983B18; // type:object size:0x8 +SymLeaveArtMakerShot = .bss:0x80983B20; // type:object size:0x4 +SymLeaveCharDelete = .bss:0x80983B24; // type:object size:0x4 +SymLeaveChooseDifficulty = .bss:0x80983B28; // type:object size:0x4 +SymLeaveChoosePart = .bss:0x80983B2C; // type:object size:0x4 +SymLeaveChoosePartWait = .bss:0x80983B30; // type:object size:0x4 +SymLeaveDifficultyConfirmation = .bss:0x80983B34; // type:object size:0x4 +SymLeaveKickConfirmation = .bss:0x80983B38; // type:object size:0x4 +SymLeaveOptions = .bss:0x80983B3C; // type:object size:0x4 +SymLeaveReadyToPlay = .bss:0x80983B40; // type:object size:0x8 +SymLeaveSignInWait = .bss:0x80983B48; // type:object size:0x4 +SymLeaveState = .bss:0x80983B4C; // type:object size:0x4 +SymLeaveWaitWii = .bss:0x80983B50; // type:object size:0x24 +SymLeft = .bss:0x80983B74; // type:object size:0x8 data:4byte +SymLeftDecoMesh = .bss:0x80983B7C; // type:object size:0x4 +SymLeftEnd = .bss:0x80983B80; // type:object size:0xC +SymLeftOpaque = .bss:0x80983B8C; // type:object size:0x4 +SymLeftOut = .bss:0x80983B90; // type:object size:0x4 +SymLefty = .bss:0x80983B94; // type:object size:0x4 +SymLeftyFlip = .bss:0x80983B98; // type:object size:0x4 data:4byte +SymLegacyFadeIn = .bss:0x80983B9C; // type:object size:0x4 +SymLego = .bss:0x80983BA0; // type:object size:0x4 data:4byte +SymLegs = .bss:0x80983BA4; // type:object size:0x4 +SymLength = .bss:0x80983BA8; // type:object size:0x4 +SymLengthBeats = .bss:0x80983BAC; // type:object size:0x4 +SymLengthMs = .bss:0x80983BB0; // type:object size:0x8 +SymLengthSeconds = .bss:0x80983BB8; // type:object size:0x4 +SymLength0 = .bss:0x80983BBC; // type:object size:0x4 +SymLength1 = .bss:0x80983BC0; // type:object size:0x4 +SymLensMat1 = .bss:0x80983BC4; // type:object size:0x4 +SymLensMat2 = .bss:0x80983BC8; // type:object size:0x4 +SymLensMatNeutral = .bss:0x80983BCC; // type:object size:0x4 +SymLensMaterial = .bss:0x80983BD0; // type:object size:0x4 +SymLensMesh = .bss:0x80983BD4; // type:object size:0x4 +SymLensMm = .bss:0x80983BD8; // type:object size:0x4 +SymLensOffset = .bss:0x80983BDC; // type:object size:0x4 +SymLensPreset = .bss:0x80983BE0; // type:object size:0x4 +SymLensSize = .bss:0x80983BE4; // type:object size:0x4 +SymLessonCategory = .bss:0x80983BE8; // type:object size:0x4 data:4byte +SymLessonComplete = .bss:0x80983BEC; // type:object size:0x4 +SymLessonCompleteSpeed = .bss:0x80983BF0; // type:object size:0x4 +SymLessonProvider = .bss:0x80983BF4; // type:object size:0x4 +SymLessons = .bss:0x80983BF8; // type:object size:0x4 data:4byte +SymLevel = .bss:0x80983BFC; // type:object size:0x4 +SymLevelAnims = .bss:0x80983C00; // type:object size:0x4 data:4byte +SymLevelColors = .bss:0x80983C04; // type:object size:0x8 +SymLfoFreq = .bss:0x80983C0C; // type:object size:0x4 +SymLife = .bss:0x80983C10; // type:object size:0x4 +SymLight = .bss:0x80983C14; // type:object size:0x4 +SymLightCan = .bss:0x80983C18; // type:object size:0x4 +SymLightCanOffset = .bss:0x80983C1C; // type:object size:0x4 +SymLightCanSort = .bss:0x80983C20; // type:object size:0x4 +SymLightEntries = .bss:0x80983C24; // type:object size:0x4 +SymLightInfluence = .bss:0x80983C28; // type:object size:0x4 +SymLightness = .bss:0x80983C2C; // type:object size:0x4 +SymLightpreset = .bss:0x80983C30; // type:object size:0x4 +SymLightpresetInterp = .bss:0x80983C34; // type:object size:0x4 +SymLightpresetKeyframe = .bss:0x80983C38; // type:object size:0x4 +SymLightpresetKeyframeInterp = .bss:0x80983C3C; // type:object size:0x4 +SymLightsApprox = .bss:0x80983C40; // type:object size:0x4 +SymLightsReal = .bss:0x80983C44; // type:object size:0x4 +SymLimitUserSignin = .bss:0x80983C48; // type:object size:0x4 data:4byte +SymLine = .bss:0x80983C4C; // type:object size:0x8 data:4byte +SymLinearize = .bss:0x80983C54; // type:object size:0x4 +SymLips = .bss:0x80983C58; // type:object size:0x4 +SymLipsync = .bss:0x80983C5C; // type:object size:0x4 +SymList = .bss:0x80983C60; // type:object size:0x4 +SymListAllNextShots = .bss:0x80983C64; // type:object size:0x4 +SymListAnimGroups = .bss:0x80983C68; // type:object size:0x4 +SymListAttached = .bss:0x80983C6C; // type:object size:0xC +SymListClips = .bss:0x80983C78; // type:object size:0x4 +SymListDircuts = .bss:0x80983C7C; // type:object size:0x4 +SymListDrumVenues = .bss:0x80983C80; // type:object size:0x8 +SymListGuid = .bss:0x80983C88; // type:object size:0x10 data:4byte +SymListOutfits = .bss:0x80983C98; // type:object size:0x8 +SymListTargets = .bss:0x80983CA0; // type:object size:0x4 +SymListVenueAnimGroups = .bss:0x80983CA4; // type:object size:0x8 +SymListXOffset = .bss:0x80983CAC; // type:object size:0x4 +SymListYOffset = .bss:0x80983CB0; // type:object size:0x4 +SymListener = .bss:0x80983CB4; // type:object size:0xC +SymLlidTrackDown = .bss:0x80983CC0; // type:object size:0x4 +SymLlidTrackUp = .bss:0x80983CC4; // type:object size:0x4 +SymLoad = .bss:0x80983CC8; // type:object size:0x4 +SymLoadArt = .bss:0x80983CCC; // type:object size:0x4 +SymLoadCharacter = .bss:0x80983CD0; // type:object size:0x8 +SymLoadDircut = .bss:0x80983CD8; // type:object size:0x4 +SymLoadFestival = .bss:0x80983CDC; // type:object size:0x4 +SymLoadMetadata = .bss:0x80983CE0; // type:object size:0x4 +SymLoadOk = .bss:0x80983CE4; // type:object size:0x4 +SymLoadPortraits = .bss:0x80983CE8; // type:object size:0x8 +SymLoadSong = .bss:0x80983CF0; // type:object size:0x4 +SymLoadSongMetadata = .bss:0x80983CF4; // type:object size:0x8 +SymLoadVenue = .bss:0x80983CFC; // type:object size:0x4 +SymLoaded = .bss:0x80983D00; // type:object size:0x4 +SymLoadedDir = .bss:0x80983D04; // type:object size:0x8 +SymLoadingAdditionalContent = .bss:0x80983D0C; // type:object size:0x4 data:4byte +SymLoadingAdditionalProgress = .bss:0x80983D10; // type:object size:0x4 data:4byte +SymLoadingLoad = .bss:0x80983D14; // type:object size:0x4 +SymLocal = .bss:0x80983D18; // type:object size:0x4 data:4byte +SymLocalUserLeft = .bss:0x80983D1C; // type:object size:0x4 +SymLocalVocalistPlayerCount = .bss:0x80983D20; // type:object size:0x4 data:4byte +SymLocale = .bss:0x80983D24; // type:object size:0x4 data:4byte +SymLocaleDecimalSeparator = .bss:0x80983D28; // type:object size:0x4 data:4byte +SymLocaleSeparator = .bss:0x80983D2C; // type:object size:0x8 data:4byte +SymLocalizeHeading = .bss:0x80983D34; // type:object size:0x4 data:4byte +SymLock = .bss:0x80983D38; // type:object size:0x4 +SymLocked = .bss:0x80983D3C; // type:object size:0x4 +SymLod = .bss:0x80983D40; // type:object size:0x4 +SymLodAnim = .bss:0x80983D44; // type:object size:0x4 +SymLodChars = .bss:0x80983D48; // type:object size:0x4 +SymLodScreenSize = .bss:0x80983D4C; // type:object size:0x4 +SymLods = .bss:0x80983D50; // type:object size:0x4 +SymLogin = .bss:0x80983D54; // type:object size:0x4 +SymLogoGlowAnim = .bss:0x80983D58; // type:object size:0x4 +SymLogout = .bss:0x80983D5C; // type:object size:0x4 +SymLoneOffer = .bss:0x80983D60; // type:object size:0x4 +SymLongdescOverride = .bss:0x80983D64; // type:object size:0x4 data:4byte +SymLongestMultiplierMs = .bss:0x80983D68; // type:object size:0x4 +SymLongestStreak = .bss:0x80983D6C; // type:object size:0x14 +SymLoop = .bss:0x80983D80; // type:object size:0x4 data:4byte +SymLoopEnd = .bss:0x80983D84; // type:object size:0x4 +SymLoopEndSample = .bss:0x80983D88; // type:object size:0x4 +SymLoopKeyframe = .bss:0x80983D8C; // type:object size:0x4 +SymLoopStart = .bss:0x80983D90; // type:object size:0x4 +SymLoopStartSample = .bss:0x80983D94; // type:object size:0x4 +SymLooped = .bss:0x80983D98; // type:object size:0x4 +SymLooping = .bss:0x80983D9C; // type:object size:0x4 +SymLose = .bss:0x80983DA0; // type:object size:0x4 +SymLoseFocus = .bss:0x80983DA4; // type:object size:0x8 data:4byte +SymLost = .bss:0x80983DAC; // type:object size:0x4 +SymLostConnection = .bss:0x80983DB0; // type:object size:0x4 data:4byte +SymLowCut = .bss:0x80983DB4; // type:object size:0x4 +SymLowFrequency = .bss:0x80983DB8; // type:object size:0x4 +SymLowGain = .bss:0x80983DBC; // type:object size:0x4 +SymLowPassCutoff = .bss:0x80983DC0; // type:object size:0x4 +SymLowPassReso = .bss:0x80983DC4; // type:object size:0x4 +SymLowerCaseAZ = .bss:0x80983DC8; // type:object size:0x4 +SymLowerEuro = .bss:0x80983DCC; // type:object size:0x4 +SymLowerFreq = .bss:0x80983DD0; // type:object size:0x4 +SymLowerLid = .bss:0x80983DD4; // type:object size:0x4 +SymLowerLidBlink = .bss:0x80983DD8; // type:object size:0x4 +SymLuminanceMap = .bss:0x80983DDC; // type:object size:0x4 +SymLx = .bss:0x80983DE0; // type:object size:0x4 data:4byte +SymLy = .bss:0x80983DE4; // type:object size:0x4 data:4byte +SymM = .bss:0x80983DE8; // type:object size:0x4 +SymMachineId = .bss:0x80983DEC; // type:object size:0x8 +SymMagic = .bss:0x80983DF4; // type:object size:0x4 +SymMainHubScreen = .bss:0x80983DF8; // type:object size:0x8 +SymMainPerformer = .bss:0x80983E00; // type:object size:0xC +SymMakeASetlist = .bss:0x80983E0C; // type:object size:0x4 data:4byte +SymMakeASetlistByLine = .bss:0x80983E10; // type:object size:0x18 data:4byte +SymMakeupProvider = .bss:0x80983E28; // type:object size:0x4 +SymMakingSetlist = .bss:0x80983E2C; // type:object size:0x4 +SymMale = .bss:0x80983E30; // type:object size:0x4 data:4byte +SymMaleFeetNaked = .bss:0x80983E34; // type:object size:0x4 +SymMaleHandsNaked = .bss:0x80983E38; // type:object size:0x4 +SymMaleTorsoNaked = .bss:0x80983E3C; // type:object size:0x4 +SymManage = .bss:0x80983E40; // type:object size:0x4 +SymManual = .bss:0x80983E44; // type:object size:0x4 +SymManualSave = .bss:0x80983E48; // type:object size:0x4 +SymMap = .bss:0x80983E4C; // type:object size:0x4 data:4byte +SymMappingsOwner = .bss:0x80983E50; // type:object size:0x4 +SymMarginBottom = .bss:0x80983E54; // type:object size:0x4 data:4byte +SymMarginTop = .bss:0x80983E58; // type:object size:0x4 data:4byte +SymMarkerName = .bss:0x80983E5C; // type:object size:0x4 +SymMarkerSample = .bss:0x80983E60; // type:object size:0x4 +SymMarkers = .bss:0x80983E64; // type:object size:0x4 +SymMarkup = .bss:0x80983E68; // type:object size:0x8 +SymMarqueePath = .bss:0x80983E70; // type:object size:0x4 +SymMarqueeRotationMs = .bss:0x80983E74; // type:object size:0x4 data:4byte +SymMash = .bss:0x80983E78; // type:object size:0x4 data:4byte +SymMaster = .bss:0x80983E7C; // type:object size:0x4 data:4byte +SymMasterVol = .bss:0x80983E80; // type:object size:0x8 +SymMatOverrides = .bss:0x80983E88; // type:object size:0x4 +SymMatVariations = .bss:0x80983E8C; // type:object size:0x4 +SymMaterial = .bss:0x80983E90; // type:object size:0x4 +SymMats = .bss:0x80983E94; // type:object size:0x8 +SymMaxBlur = .bss:0x80983E9C; // type:object size:0x4 +SymMaxBurst = .bss:0x80983EA0; // type:object size:0x4 +SymMaxChars = .bss:0x80983EA4; // type:object size:0x4 +SymMaxDartsPerSequence = .bss:0x80983EA8; // type:object size:0x8 +SymMaxDiff = .bss:0x80983EB0; // type:object size:0x8 data:4byte +SymMaxDisplay = .bss:0x80983EB8; // type:object size:0x8 +SymMaxDistance = .bss:0x80983EC0; // type:object size:0x4 +SymMaxExtrapolation = .bss:0x80983EC4; // type:object size:0x4 +SymMaxGap = .bss:0x80983EC8; // type:object size:0x4 +SymMaxLength = .bss:0x80983ECC; // type:object size:0x4 +SymMaxLookTime = .bss:0x80983ED0; // type:object size:0x4 +SymMaxMs = .bss:0x80983ED4; // type:object size:0x4 data:4byte +SymMaxMultiplier = .bss:0x80983ED8; // type:object size:0x8 +SymMaxParticles = .bss:0x80983EE0; // type:object size:0x4 +SymMaxParts = .bss:0x80983EE4; // type:object size:0x4 +SymMaxPctComplete = .bss:0x80983EE8; // type:object size:0x4 data:4byte +SymMaxPitch = .bss:0x80983EEC; // type:object size:0x4 +SymMaxRadius = .bss:0x80983EF0; // type:object size:0x4 +SymMaxSecsBetweenDarts = .bss:0x80983EF4; // type:object size:0x4 +SymMaxSecsBetweenSequences = .bss:0x80983EF8; // type:object size:0x4 +SymMaxSimul = .bss:0x80983EFC; // type:object size:0x4 +SymMaxSlack = .bss:0x80983F00; // type:object size:0x4 +SymMaxSongCount = .bss:0x80983F04; // type:object size:0xC data:4byte +SymMaxTime = .bss:0x80983F10; // type:object size:0x4 +SymMaxValue = .bss:0x80983F14; // type:object size:0x4 data:4byte +SymMaxViewAngle = .bss:0x80983F18; // type:object size:0x8 +SymMaxWeightYaw = .bss:0x80983F20; // type:object size:0x8 +SymMaxX = .bss:0x80983F28; // type:object size:0x4 +SymMaxY = .bss:0x80983F2C; // type:object size:0x4 +SymMaxYaw = .bss:0x80983F30; // type:object size:0x4 +SymMaxZ = .bss:0x80983F34; // type:object size:0x4 +SymMaxed = .bss:0x80983F38; // type:object size:0x4 +SymMaxnote = .bss:0x80983F3C; // type:object size:0x4 +SymMaxvelo = .bss:0x80983F40; // type:object size:0x4 +SymMbt = .bss:0x80983F44; // type:object size:0x4 +SymMbtFromSeconds = .bss:0x80983F48; // type:object size:0x4 +SymMcAutoLoadCorrupt = .bss:0x80983F4C; // type:object size:0x4 data:4byte +SymMcAutoLoadMultipleSavesFoundFmt = .bss:0x80983F50; // type:object size:0x4 data:4byte +SymMcAutoLoadNewerVersion = .bss:0x80983F54; // type:object size:0x4 data:4byte +SymMcAutoLoadNewerVersionFmt = .bss:0x80983F58; // type:object size:0x4 data:4byte +SymMcAutoLoadNoSaveFoundFmt = .bss:0x80983F5C; // type:object size:0x4 data:4byte +SymMcAutoLoadNotOwner = .bss:0x80983F60; // type:object size:0x4 data:4byte +SymMcAutoLoadObsoleteVersion = .bss:0x80983F64; // type:object size:0x4 data:4byte +SymMcAutoLoadObsoleteVersionFmt = .bss:0x80983F68; // type:object size:0x4 data:4byte +SymMcAutosaveDisabled = .bss:0x80983F6C; // type:object size:0x4 data:4byte +SymMcAutosaveDisabledDone = .bss:0x80983F70; // type:object size:0x4 data:4byte +SymMcButtonCancel = .bss:0x80983F74; // type:object size:0x4 +SymMcButtonChooseDevice = .bss:0x80983F78; // type:object size:0x4 +SymMcButtonContinue = .bss:0x80983F7C; // type:object size:0x4 +SymMcButtonContinueNoSave = .bss:0x80983F80; // type:object size:0x4 +SymMcButtonCreateData = .bss:0x80983F84; // type:object size:0x8 +SymMcButtonDisableAutosave = .bss:0x80983F8C; // type:object size:0x4 +SymMcButtonNo = .bss:0x80983F90; // type:object size:0x4 +SymMcButtonOverwrite = .bss:0x80983F94; // type:object size:0x8 +SymMcButtonYes = .bss:0x80983F9C; // type:object size:0x4 +SymMcLoadDeviceMissingFmt = .bss:0x80983FA0; // type:object size:0x4 data:4byte +SymMcLoadFailed = .bss:0x80983FA4; // type:object size:0x4 data:4byte +SymMcManualLoadConfirm = .bss:0x80983FA8; // type:object size:0x4 data:4byte +SymMcManualLoadConfirmUnsaved = .bss:0x80983FAC; // type:object size:0x4 data:4byte +SymMcManualLoadConfirmUnsavedFmt = .bss:0x80983FB0; // type:object size:0x4 data:4byte +SymMcManualLoadCorrupt = .bss:0x80983FB4; // type:object size:0x4 data:4byte +SymMcManualLoadNoFile = .bss:0x80983FB8; // type:object size:0x4 data:4byte +SymMcManualLoadNoSelection = .bss:0x80983FBC; // type:object size:0x4 data:4byte +SymMcManualLoadNotOwner = .bss:0x80983FC0; // type:object size:0x4 data:4byte +SymMcManualLoadStorageMissing = .bss:0x80983FC4; // type:object size:0x4 data:4byte +SymMcManualSaveNoSelection = .bss:0x80983FC8; // type:object size:0x4 data:4byte +SymMcSaveConfirmOverwrite = .bss:0x80983FCC; // type:object size:0x4 data:4byte +SymMcSaveDeviceMissingFmt = .bss:0x80983FD0; // type:object size:0x4 data:4byte +SymMcSaveDisabledByCheat = .bss:0x80983FD4; // type:object size:0x4 data:4byte +SymMcSaveFailed = .bss:0x80983FD8; // type:object size:0x4 data:4byte +SymMcSaveNotEnoughSpace = .bss:0x80983FDC; // type:object size:0x4 data:4byte +SymMcSaveNotEnoughSpaceFmt = .bss:0x80983FE0; // type:object size:0x4 data:4byte +SymMePercentFormat = .bss:0x80983FE4; // type:object size:0x8 data:4byte +SymMeasureLengths = .bss:0x80983FEC; // type:object size:0x8 +SymMedium = .bss:0x80983FF4; // type:object size:0x4 +SymMemcard = .bss:0x80983FF8; // type:object size:0x4 data:4byte +SymMenuList = .bss:0x80983FFC; // type:object size:0xC data:4byte +SymMergeCharacter = .bss:0x80984008; // type:object size:0x8 +SymMerger = .bss:0x80984010; // type:object size:0x4 +SymMergerIndex = .bss:0x80984014; // type:object size:0x4 +SymMergers = .bss:0x80984018; // type:object size:0x4 +SymMesh = .bss:0x8098401C; // type:object size:0x4 +SymMeshEmitter = .bss:0x80984020; // type:object size:0x4 +SymMeshName = .bss:0x80984024; // type:object size:0x4 +SymMeshYBias = .bss:0x80984028; // type:object size:0x8 +SymMeshao = .bss:0x80984030; // type:object size:0x4 +SymMeshes = .bss:0x80984034; // type:object size:0x4 data:4byte +SymMeshesLeft = .bss:0x80984038; // type:object size:0x4 +SymMeshesRight = .bss:0x8098403C; // type:object size:0x4 +SymMeshesSpan = .bss:0x80984040; // type:object size:0x4 +SymMeshGenerator = .bss:0x80984044; // type:object size:0x4 +SymMeshname = .bss:0x80984048; // type:object size:0x4 +SymMessageLatestDlc = .bss:0x8098404C; // type:object size:0x4 data:4byte +SymMessageMotd = .bss:0x80984050; // type:object size:0x4 data:4byte +SymMessageMotdNoconnection = .bss:0x80984054; // type:object size:0x4 data:4byte +SymMessageMotdSignin = .bss:0x80984058; // type:object size:0x4 data:4byte +SymMessageOk = .bss:0x8098405C; // type:object size:0x4 +SymMessageRotationMs = .bss:0x80984060; // type:object size:0x8 data:4byte +SymMetaMusic = .bss:0x80984068; // type:object size:0x4 +SymMetaScore = .bss:0x8098406C; // type:object size:0x4 data:4byte +SymMetascoreValue = .bss:0x80984070; // type:object size:0x4 data:4byte +SymMeterAnim = .bss:0x80984074; // type:object size:0x8 data:4byte +SymMeterLabel = .bss:0x8098407C; // type:object size:0x4 data:4byte +SymMeterProgress = .bss:0x80984080; // type:object size:0x4 data:4byte +SymMeterProgressGenericWrapper = .bss:0x80984084; // type:object size:0x4 data:4byte +SymMeterProgressNoDenominator = .bss:0x80984088; // type:object size:0x4 data:4byte +SymMeterProgressPercent = .bss:0x8098408C; // type:object size:0xC data:4byte +SymMetronomeEnabled = .bss:0x80984098; // type:object size:0x8 +SymMic = .bss:0x809840A0; // type:object size:0x4 data:4byte +SymMicBody = .bss:0x809840A4; // type:object size:0x4 +SymMicEnergyNormalizer = .bss:0x809840A8; // type:object size:0x4 data:4byte +SymMicIntensity = .bss:0x809840AC; // type:object size:0x8 +SymMidAlpha = .bss:0x809840B4; // type:object size:0x4 +SymMidAlphaHigh = .bss:0x809840B8; // type:object size:0x4 +SymMidAlphaLow = .bss:0x809840BC; // type:object size:0x4 +SymMidBandwidth = .bss:0x809840C0; // type:object size:0x4 +SymMidColor = .bss:0x809840C4; // type:object size:0x4 +SymMidColorHigh = .bss:0x809840C8; // type:object size:0x4 +SymMidColorLow = .bss:0x809840CC; // type:object size:0x4 +SymMidColorRatio = .bss:0x809840D0; // type:object size:0x4 +SymMidFrequency = .bss:0x809840D4; // type:object size:0x4 +SymMidGain = .bss:0x809840D8; // type:object size:0x4 +SymMiddleCZPos = .bss:0x809840DC; // type:object size:0x8 +SymMidiAddPostproc = .bss:0x809840E4; // type:object size:0x4 +SymMidiAddPreset = .bss:0x809840E8; // type:object size:0x4 +SymMidiCleanupPresets = .bss:0x809840EC; // type:object size:0x4 +SymMidiFile = .bss:0x809840F0; // type:object size:0x4 data:4byte +SymMidiHarvestDircuts = .bss:0x809840F4; // type:object size:0x4 +SymMidiParser = .bss:0x809840F8; // type:object size:0x4 +SymMidiParserFlags = .bss:0x809840FC; // type:object size:0x4 +SymMidiParserGroup = .bss:0x80984100; // type:object size:0x4 +SymMidiSection = .bss:0x80984104; // type:object size:0x4 +SymMidiShotCat = .bss:0x80984108; // type:object size:0x10 +SymMiloReload = .bss:0x80984118; // type:object size:0x4 +SymMinBlur = .bss:0x8098411C; // type:object size:0x4 +SymMinDartsPerSequence = .bss:0x80984120; // type:object size:0x4 +SymMinDisplay = .bss:0x80984124; // type:object size:0x4 +SymMinDistance = .bss:0x80984128; // type:object size:0x8 +SymMinGap = .bss:0x80984130; // type:object size:0x4 +SymMinIntensity = .bss:0x80984134; // type:object size:0x4 +SymMinLength = .bss:0x80984138; // type:object size:0x4 +SymMinLookTime = .bss:0x8098413C; // type:object size:0x4 +SymMinPitch = .bss:0x80984140; // type:object size:0x4 +SymMinPitchRange = .bss:0x80984144; // type:object size:0x4 +SymMinRadius = .bss:0x80984148; // type:object size:0x4 +SymMinSecsBetweenDarts = .bss:0x8098414C; // type:object size:0x4 +SymMinSecsBetweenSequences = .bss:0x80984150; // type:object size:0x4 +SymMinSlack = .bss:0x80984154; // type:object size:0x4 +SymMinStars = .bss:0x80984158; // type:object size:0x4 data:4byte +SymMinTargetDist = .bss:0x8098415C; // type:object size:0x4 +SymMinTargetDistOverride = .bss:0x80984160; // type:object size:0x4 +SymMinThumbHeight = .bss:0x80984164; // type:object size:0x4 +SymMinTime = .bss:0x80984168; // type:object size:0x4 +SymMinValue = .bss:0x8098416C; // type:object size:0x8 data:4byte +SymMinWeightYaw = .bss:0x80984174; // type:object size:0x4 +SymMinX = .bss:0x80984178; // type:object size:0x4 +SymMinY = .bss:0x8098417C; // type:object size:0x4 +SymMinYaw = .bss:0x80984180; // type:object size:0x4 +SymMinZ = .bss:0x80984184; // type:object size:0x4 +SymMiniLeaderboardsTitleFriends = .bss:0x80984188; // type:object size:0x4 data:4byte +SymMinnote = .bss:0x8098418C; // type:object size:0x10 +SymMinus = .bss:0x8098419C; // type:object size:0x4 +SymMinvelo = .bss:0x809841A0; // type:object size:0x4 +SymMipMapK = .bss:0x809841A4; // type:object size:0x8 +SymMirrorCam = .bss:0x809841AC; // type:object size:0x4 +SymMirrorServo = .bss:0x809841B0; // type:object size:0x4 +SymMirrorX = .bss:0x809841B4; // type:object size:0x4 +SymMiss = .bss:0x809841B8; // type:object size:0x4 data:4byte +SymMissCount = .bss:0x809841BC; // type:object size:0x4 data:4byte +SymMissNotify = .bss:0x809841C0; // type:object size:0x8 +SymMissStreakCount = .bss:0x809841C8; // type:object size:0x4 data:4byte +SymMissingSongData = .bss:0x809841CC; // type:object size:0x4 data:4byte +SymMix = .bss:0x809841D0; // type:object size:0x8 data:4byte +SymModAutoVocals = .bss:0x809841D8; // type:object size:0x8 data:4byte +SymModDoublespeed = .bss:0x809841E0; // type:object size:0x4 data:4byte +SymModIndependentTrackSpeeds = .bss:0x809841E4; // type:object size:0x4 data:4byte +SymModNoFailBand = .bss:0x809841E8; // type:object size:0x4 data:4byte +SymModSectionNum = .bss:0x809841EC; // type:object size:0x4 +SymMode = .bss:0x809841F0; // type:object size:0x4 data:4byte +SymModeChanged = .bss:0x809841F4; // type:object size:0x8 data:4byte +SymModes = .bss:0x809841FC; // type:object size:0x4 data:4byte +SymModifierLockedName = .bss:0x80984200; // type:object size:0x4 data:4byte +SymModifiers = .bss:0x80984204; // type:object size:0x8 data:4byte +SymModifyLayer = .bss:0x8098420C; // type:object size:0x4 data:4byte +SymMogg = .bss:0x80984210; // type:object size:0x4 +SymMoggclip = .bss:0x80984214; // type:object size:0x4 +SymMoggclipMaps = .bss:0x80984218; // type:object size:0x4 +SymMonospace = .bss:0x8098421C; // type:object size:0x4 +SymMore = .bss:0x80984220; // type:object size:0x4 +SymMostOverdriveDeploys = .bss:0x80984224; // type:object size:0x4 +SymMostOverdriveTime = .bss:0x80984228; // type:object size:0x4 +SymMostUnisonPhrases = .bss:0x8098422C; // type:object size:0x4 +SymMotionBlurBlend = .bss:0x80984230; // type:object size:0x4 +SymMotionBlurExposure = .bss:0x80984234; // type:object size:0x4 +SymMotionBlurVelocity = .bss:0x80984238; // type:object size:0x4 +SymMotionBlurWeight = .bss:0x8098423C; // type:object size:0x10 +SymMount = .bss:0x8098424C; // type:object size:0x4 +SymMouth = .bss:0x80984250; // type:object size:0x4 data:4byte +SymMouthHeight = .bss:0x80984254; // type:object size:0x4 +SymMouthNum = .bss:0x80984258; // type:object size:0x4 +SymMouthWidth = .bss:0x8098425C; // type:object size:0x10 +SymMoveContext = .bss:0x8098426C; // type:object size:0x4 +SymMoveElbow = .bss:0x80984270; // type:object size:0x10 +SymMoveSelf = .bss:0x80984280; // type:object size:0xC +SymMoveXfms = .bss:0x8098428C; // type:object size:0x8 +SymMovie = .bss:0x80984294; // type:object size:0x4 data:4byte +SymMovieFile = .bss:0x80984298; // type:object size:0x4 +SymMs = .bss:0x8098429C; // type:object size:0x4 +SymMsPerBeat = .bss:0x809842A0; // type:object size:0x4 +SymMsgDuration = .bss:0x809842A4; // type:object size:0x4 data:4byte +SymMulti = .bss:0x809842A8; // type:object size:0x4 +SymMultiEvent = .bss:0x809842AC; // type:object size:0x4 +SymMultiplayer = .bss:0x809842B0; // type:object size:0x4 +SymMultiplier = .bss:0x809842B4; // type:object size:0x4 +SymMultisamplemaps = .bss:0x809842B8; // type:object size:0x4 +SymMuscle = .bss:0x809842BC; // type:object size:0x4 +SymMusicLibrary = .bss:0x809842C0; // type:object size:0x4 +SymMusicLibraryFilteredFmt = .bss:0x809842C4; // type:object size:0x4 data:4byte +SymMusicLibraryUnfilteredFmt = .bss:0x809842C8; // type:object size:0xC data:4byte +SymMusicLibraryVisible = .bss:0x809842D4; // type:object size:0x4 data:4byte +SymMusicSpeed = .bss:0x809842D8; // type:object size:0x4 +SymMusicStart = .bss:0x809842DC; // type:object size:0x4 +SymMustBeMultiplayerCapable = .bss:0x809842E0; // type:object size:0x4 data:4byte +SymMustBeOnline = .bss:0x809842E4; // type:object size:0x4 data:4byte +SymMustNotBeAGuest = .bss:0x809842E8; // type:object size:0x4 data:4byte +SymMute = .bss:0x809842EC; // type:object size:0x8 +SymMuteVolume = .bss:0x809842F4; // type:object size:0x4 data:4byte +SymMuteVolumeVocals = .bss:0x809842F8; // type:object size:0x4 data:4byte +SymMuteWinCues = .bss:0x809842FC; // type:object size:0x4 data:4byte +SymMutedStrum = .bss:0x80984300; // type:object size:0x4 data:4byte +SymMyTrackPanelDir = .bss:0x80984304; // type:object size:0x10 +SymName = .bss:0x80984314; // type:object size:0x1C data:4byte +SymNameOverride = .bss:0x80984330; // type:object size:0x4 data:4byte +SymNamingResultMsg = .bss:0x80984334; // type:object size:0x4 data:4byte +SymNavDown = .bss:0x80984338; // type:object size:0x4 +SymNavRight = .bss:0x8098433C; // type:object size:0x4 +SymNearMap = .bss:0x80984340; // type:object size:0x4 +SymNearPlane = .bss:0x80984344; // type:object size:0x4 data:4byte +SymNeedSongsDownload = .bss:0x80984348; // type:object size:0x4 +SymNeedSync = .bss:0x8098434C; // type:object size:0x4 +SymNeedleAnim = .bss:0x80984350; // type:object size:0x4 +SymNeedsBackup = .bss:0x80984354; // type:object size:0x4 +SymNeedsShopAccount = .bss:0x80984358; // type:object size:0x4 +SymNeedsUpload = .bss:0x8098435C; // type:object size:0x4 +SymNegLength = .bss:0x80984360; // type:object size:0x4 +SymNegativeIcon = .bss:0x80984364; // type:object size:0x4 data:4byte +SymNetSetlistArtReady = .bss:0x80984368; // type:object size:0x4 +SymNetSetlistsConnect = .bss:0x8098436C; // type:object size:0x4 data:4byte +SymNetSetlistsError = .bss:0x80984370; // type:object size:0x4 data:4byte +SymNetSetlistsGetting = .bss:0x80984374; // type:object size:0x4 data:4byte +SymNetTrackAlpha = .bss:0x80984378; // type:object size:0x4 +SymNeverAllowInput = .bss:0x8098437C; // type:object size:0x4 +SymNeverRefreshed = .bss:0x80984380; // type:object size:0x8 +SymNewAssetProvider = .bss:0x80984388; // type:object size:0x8 +SymNewRemoteUser = .bss:0x80984390; // type:object size:0x4 data:4byte +SymNewSpot = .bss:0x80984394; // type:object size:0x4 +SymNext = .bss:0x80984398; // type:object size:0x4 data:4byte +SymNextBeat = .bss:0x8098439C; // type:object size:0xC +SymNextKickMs = .bss:0x809843A8; // type:object size:0x4 +SymNextLink = .bss:0x809843AC; // type:object size:0x4 +SymNextPass = .bss:0x809843B0; // type:object size:0x4 +SymNextScreen = .bss:0x809843B4; // type:object size:0x4 data:4byte +SymNextSend = .bss:0x809843B8; // type:object size:0x4 +SymNextShot = .bss:0x809843BC; // type:object size:0x4 +SymNextShots = .bss:0x809843C0; // type:object size:0x4 +SymNextStartDelta = .bss:0x809843C4; // type:object size:0x8 +SymNextVal = .bss:0x809843CC; // type:object size:0xC +SymNoPart = .bss:0x809843D8; // type:object size:0x4 +SymNoPlayerMat = .bss:0x809843DC; // type:object size:0x8 data:4byte +SymNoSave = .bss:0x809843E4; // type:object size:0x4 +SymNoSaving = .bss:0x809843E8; // type:object size:0xC data:4byte +SymNoVenueOverride = .bss:0x809843F4; // type:object size:0x8 +SymNofailAllowed = .bss:0x809843FC; // type:object size:0x4 data:4byte +SymNoiseBaseScale = .bss:0x80984400; // type:object size:0x4 +SymNoiseIntensity = .bss:0x80984404; // type:object size:0x4 +SymNoiseMap = .bss:0x80984408; // type:object size:0x4 +SymNoiseMidtone = .bss:0x8098440C; // type:object size:0x4 +SymNoiseStationary = .bss:0x80984410; // type:object size:0x4 +SymNonDestructiveTransition = .bss:0x80984414; // type:object size:0x8 data:4byte +SymNone = .bss:0x8098441C; // type:object size:0x4 data:4byte +SymNoneBandana = .bss:0x80984420; // type:object size:0x4 +SymNoneEarrings = .bss:0x80984424; // type:object size:0x4 +SymNoneEyebrows = .bss:0x80984428; // type:object size:0x4 +SymNoneFacehair = .bss:0x8098442C; // type:object size:0x4 data:4byte +SymNoneGlasses = .bss:0x80984430; // type:object size:0x4 data:4byte +SymNoneHair = .bss:0x80984434; // type:object size:0x4 data:4byte +SymNoneHat = .bss:0x80984438; // type:object size:0x4 +SymNoneMakeup = .bss:0x8098443C; // type:object size:0x4 +SymNonePiercings = .bss:0x80984440; // type:object size:0x4 +SymNoneRings = .bss:0x80984444; // type:object size:0x4 +SymNoneWrists = .bss:0x80984448; // type:object size:0x10 +SymNormal = .bss:0x80984458; // type:object size:0x4 data:4byte +SymNormalColor = .bss:0x8098445C; // type:object size:0x10 +SymNormalizeLocal = .bss:0x8098446C; // type:object size:0x4 +SymNormals = .bss:0x80984470; // type:object size:0x4 +SymNose = .bss:0x80984474; // type:object size:0x4 data:4byte +SymNoseHeight = .bss:0x80984478; // type:object size:0x4 +SymNoseNum = .bss:0x8098447C; // type:object size:0x4 +SymNoseWidth = .bss:0x80984480; // type:object size:0x4 +SymNotYetAcquired = .bss:0x80984484; // type:object size:0x8 +SymNote1Hz = .bss:0x8098448C; // type:object size:0x4 +SymNote2Hz = .bss:0x80984490; // type:object size:0x4 +SymNote3Hz = .bss:0x80984494; // type:object size:0x4 +SymNotesHit = .bss:0x80984498; // type:object size:0x4 +SymNotesHitFraction = .bss:0x8098449C; // type:object size:0x4 data:4byte +SymNotesPerStreak = .bss:0x809844A0; // type:object size:0x8 +SymNowBar = .bss:0x809844A8; // type:object size:0x4 +SymNowBarMesh = .bss:0x809844AC; // type:object size:0x4 +SymNowBarWidth = .bss:0x809844B0; // type:object size:0x4 +SymNum = .bss:0x809844B4; // type:object size:0x4 +SymNumActivePlayers = .bss:0x809844B8; // type:object size:0x8 +SymNumBones = .bss:0x809844C0; // type:object size:0x8 +SymNumChecked = .bss:0x809844C8; // type:object size:0x4 +SymNumColorOptions = .bss:0x809844CC; // type:object size:0x4 +SymNumCompleted = .bss:0x809844D0; // type:object size:0x4 data:4byte +SymNumConnectedMics = .bss:0x809844D4; // type:object size:0x4 +SymNumData = .bss:0x809844D8; // type:object size:0x4 +SymNumDisplay = .bss:0x809844DC; // type:object size:0x4 +SymNumEvents = .bss:0x809844E0; // type:object size:0x4 +SymNumExtraOffers = .bss:0x809844E4; // type:object size:0x4 +SymNumFaces = .bss:0x809844E8; // type:object size:0x4 +SymNumFrames = .bss:0x809844EC; // type:object size:0x4 +SymNumHits = .bss:0x809844F0; // type:object size:0x4 +SymNumLayers = .bss:0x809844F4; // type:object size:0x4 +SymNumLessons = .bss:0x809844F8; // type:object size:0x4 data:4byte +SymNumLevels = .bss:0x809844FC; // type:object size:0x4 +SymNumMarkers = .bss:0x80984500; // type:object size:0x4 +SymNumOffers = .bss:0x80984504; // type:object size:0x4 +SymNumOpenSlots = .bss:0x80984508; // type:object size:0x4 +SymNumParts = .bss:0x8098450C; // type:object size:0x4 +SymNumPlayers = .bss:0x80984510; // type:object size:0x4 +SymNumPlayersFailed = .bss:0x80984514; // type:object size:0x4 +SymNumPoints = .bss:0x80984518; // type:object size:0x4 +SymNumPoses = .bss:0x8098451C; // type:object size:0x4 +SymNumRankTiers = .bss:0x80984520; // type:object size:0x10 +SymNumRotKeys = .bss:0x80984530; // type:object size:0x4 +SymNumRows = .bss:0x80984534; // type:object size:0x4 data:4byte +SymNumSamples = .bss:0x80984538; // type:object size:0x4 +SymNumScaleKeys = .bss:0x8098453C; // type:object size:0x8 +SymNumShots = .bss:0x80984544; // type:object size:0x4 +SymNumSimul = .bss:0x80984548; // type:object size:0x4 +SymNumSingers = .bss:0x8098454C; // type:object size:0x4 data:4byte +SymNumSlots = .bss:0x80984550; // type:object size:0xC +SymNumSongs = .bss:0x8098455C; // type:object size:0x4 data:4byte +SymNumSongsInContent = .bss:0x80984560; // type:object size:0x4 +SymNumStars = .bss:0x80984564; // type:object size:0x4 +SymNumSteps = .bss:0x80984568; // type:object size:0x4 +SymNumTracks = .bss:0x8098456C; // type:object size:0x4 +SymNumTransKeys = .bss:0x80984570; // type:object size:0x4 +SymNumUsers = .bss:0x80984574; // type:object size:0x4 +SymNumVerts = .bss:0x80984578; // type:object size:0x4 +SymNumVocalParts = .bss:0x8098457C; // type:object size:0x4 data:4byte +SymNumXfms = .bss:0x80984580; // type:object size:0x8 +SymNumbers09 = .bss:0x80984588; // type:object size:0x4 +SymNut = .bss:0x8098458C; // type:object size:0x4 +SymObject = .bss:0x80984590; // type:object size:0x8 data:4byte +SymObjects = .bss:0x80984598; // type:object size:0x4 data:4byte +SymOdPhraseCount = .bss:0x8098459C; // type:object size:0x4 data:4byte +SymOdPhrasesCompleted = .bss:0x809845A0; // type:object size:0x4 data:4byte +SymOff = .bss:0x809845A4; // type:object size:0x8 +SymOfferContentsProvider = .bss:0x809845AC; // type:object size:0x4 +SymOfferName = .bss:0x809845B0; // type:object size:0x8 +SymOfferProvider = .bss:0x809845B8; // type:object size:0x4 +SymOfferType = .bss:0x809845BC; // type:object size:0x4 +SymOffers = .bss:0x809845C0; // type:object size:0x4 data:4byte +SymOffersRemaining = .bss:0x809845C4; // type:object size:0x8 +SymOffset = .bss:0x809845CC; // type:object size:0x4 +SymOffsetPct = .bss:0x809845D0; // type:object size:0x4 +SymOffsetScale = .bss:0x809845D4; // type:object size:0x4 +SymOffset0 = .bss:0x809845D8; // type:object size:0x4 +SymOffset1 = .bss:0x809845DC; // type:object size:0x4 +SymOffset2 = .bss:0x809845E0; // type:object size:0x8 +SymOn = .bss:0x809845E8; // type:object size:0x4 +SymOnButtonHeld = .bss:0x809845EC; // type:object size:0x8 data:4byte +SymOnDownbeat = .bss:0x809845F4; // type:object size:0x4 +SymOnEnd = .bss:0x809845F8; // type:object size:0x4 +SymOnEnter = .bss:0x809845FC; // type:object size:0x4 +SymOnExit = .bss:0x80984600; // type:object size:0x4 +SymOnExtraLoaded = .bss:0x80984604; // type:object size:0x4 +SymOnFail = .bss:0x80984608; // type:object size:0x4 +SymOnFileLoaded = .bss:0x8098460C; // type:object size:0x4 +SymOnGameLost = .bss:0x80984610; // type:object size:0x4 +SymOnGameOver = .bss:0x80984614; // type:object size:0x4 +SymOnHighlight = .bss:0x80984618; // type:object size:0x4 +SymOnLose = .bss:0x8098461C; // type:object size:0x4 +SymOnMissPhrase = .bss:0x80984620; // type:object size:0x4 +SymOnNewTrack = .bss:0x80984624; // type:object size:0x4 +SymOnPostMerge = .bss:0x80984628; // type:object size:0x8 +SymOnStartStarpower = .bss:0x80984630; // type:object size:0x4 +SymOnStopStarpower = .bss:0x80984634; // type:object size:0x4 +SymOnSuccess = .bss:0x80984638; // type:object size:0x4 +SymOnTargetAngleThresh = .bss:0x8098463C; // type:object size:0x4 +SymOnUnload = .bss:0x80984640; // type:object size:0x8 +SymOnWin = .bss:0x80984648; // type:object size:0x4 +SymOnce = .bss:0x8098464C; // type:object size:0x4 data:4byte +SymOneshotPlayermin = .bss:0x80984650; // type:object size:0x4 data:4byte +SymOneshotSong = .bss:0x80984654; // type:object size:0x4 data:4byte +SymOnlineEnabled = .bss:0x80984658; // type:object size:0x8 +SymOnlyProjection = .bss:0x80984660; // type:object size:0x8 +SymOpenEnd = .bss:0x80984668; // type:object size:0x4 +SymOptimizeForPs3 = .bss:0x8098466C; // type:object size:0x4 +SymOptions = .bss:0x80984670; // type:object size:0x4 data:4byte +SymOrange = .bss:0x80984674; // type:object size:0xC +SymOrientation = .bss:0x80984680; // type:object size:0x8 +SymOutAnim = .bss:0x80984688; // type:object size:0x4 +SymOutHi = .bss:0x8098468C; // type:object size:0x4 +SymOutLo = .bss:0x80984690; // type:object size:0x4 +SymOuterRadius = .bss:0x80984694; // type:object size:0x4 +SymOuterVolume = .bss:0x80984698; // type:object size:0x4 +SymOutfit = .bss:0x8098469C; // type:object size:0x8 +SymOutfitProvider = .bss:0x809846A4; // type:object size:0x8 +SymOutputLevel = .bss:0x809846AC; // type:object size:0x4 +SymOutputTexture = .bss:0x809846B0; // type:object size:0x4 data:4byte +SymOutputTrans = .bss:0x809846B4; // type:object size:0x4 +SymOutroVignette = .bss:0x809846B8; // type:object size:0x8 data:4byte +SymOverdriveDeployTrackerProgress = .bss:0x809846C0; // type:object size:0x4 data:4byte +SymOverdriveMeter = .bss:0x809846C4; // type:object size:0x4 +SymOverdriveTrackerDescription = .bss:0x809846C8; // type:object size:0x4 data:4byte +SymOverdriveTrackerExplanation = .bss:0x809846CC; // type:object size:0x4 data:4byte +SymOverlayMat = .bss:0x809846D0; // type:object size:0x4 +SymOverlayShowing = .bss:0x809846D4; // type:object size:0x4 +SymOverlays = .bss:0x809846D8; // type:object size:0x4 +SymOverrideBoxEmitter = .bss:0x809846DC; // type:object size:0x4 +SymOverrideClip = .bss:0x809846E0; // type:object size:0x4 +SymOverrideDeltaSize = .bss:0x809846E4; // type:object size:0x4 +SymOverrideEmitDirection = .bss:0x809846E8; // type:object size:0x4 +SymOverrideEndColor = .bss:0x809846EC; // type:object size:0x4 +SymOverrideLife = .bss:0x809846F0; // type:object size:0x4 +SymOverrideMap = .bss:0x809846F4; // type:object size:0x4 +SymOverrideMeshEmitter = .bss:0x809846F8; // type:object size:0x4 +SymOverrideMidColor = .bss:0x809846FC; // type:object size:0x4 +SymOverrideOptions = .bss:0x80984700; // type:object size:0x4 +SymOverrideProxy = .bss:0x80984704; // type:object size:0x4 +SymOverrideSize = .bss:0x80984708; // type:object size:0x4 +SymOverrideSpeed = .bss:0x8098470C; // type:object size:0x4 +SymOverrideStartColor = .bss:0x80984710; // type:object size:0x4 +SymOverrideWeight = .bss:0x80984714; // type:object size:0x4 +SymOverridesMinTargetDist = .bss:0x80984718; // type:object size:0x4 +SymOvershellBass = .bss:0x8098471C; // type:object size:0x4 data:4byte +SymOvershellBlueCym = .bss:0x80984720; // type:object size:0x4 +SymOvershellCymbalsContinue = .bss:0x80984724; // type:object size:0x4 +SymOvershellDrums = .bss:0x80984728; // type:object size:0x4 data:4byte +SymOvershellDrumsPro = .bss:0x8098472C; // type:object size:0x4 data:4byte +SymOvershellEnableHihat = .bss:0x80984730; // type:object size:0x4 +SymOvershellGreenCym = .bss:0x80984734; // type:object size:0x4 +SymOvershellGuitar = .bss:0x80984738; // type:object size:0x4 data:4byte +SymOvershellKeys = .bss:0x8098473C; // type:object size:0x4 data:4byte +SymOvershellLeftyFlip = .bss:0x80984740; // type:object size:0x4 +SymOvershellRealBass = .bss:0x80984744; // type:object size:0x4 data:4byte +SymOvershellRealGuitar = .bss:0x80984748; // type:object size:0x4 data:4byte +SymOvershellRealKeys = .bss:0x8098474C; // type:object size:0x4 data:4byte +SymOvershellSelectProfile = .bss:0x80984750; // type:object size:0x4 data:4byte +SymOvershellSwapProfile = .bss:0x80984754; // type:object size:0x4 data:4byte +SymOvershellVocalHarmony = .bss:0x80984758; // type:object size:0x4 data:4byte +SymOvershellVocalSolo = .bss:0x8098475C; // type:object size:0x4 data:4byte +SymOvershellYellowCym = .bss:0x80984760; // type:object size:0x4 +SymOwner = .bss:0x80984764; // type:object size:0x4 +SymOwnerPanel = .bss:0x80984768; // type:object size:0x14 +SymP9TransDraw = .bss:0x8098477C; // type:object size:0x4 +SymPack = .bss:0x80984780; // type:object size:0x4 +SymPackFirstLetter = .bss:0x80984784; // type:object size:0x8 +SymPackLink = .bss:0x8098478C; // type:object size:0x4 +SymPackName = .bss:0x80984790; // type:object size:0x8 +SymPacked = .bss:0x80984798; // type:object size:0x4 +SymPad = .bss:0x8098479C; // type:object size:0x4 data:4byte +SymPadNum = .bss:0x809847A0; // type:object size:0x4 +SymPadShiftButton = .bss:0x809847A4; // type:object size:0x8 data:4byte +SymPageBreak = .bss:0x809847AC; // type:object size:0x4 data:4byte +SymPaginate = .bss:0x809847B0; // type:object size:0x4 +SymPan = .bss:0x809847B4; // type:object size:0x8 data:4byte +SymPanSpread = .bss:0x809847BC; // type:object size:0x4 +SymPanWidth = .bss:0x809847C0; // type:object size:0x4 +SymPanel = .bss:0x809847C4; // type:object size:0x8 +SymPanelDir = .bss:0x809847CC; // type:object size:0x4 data:4byte +SymPanels = .bss:0x809847D0; // type:object size:0x4 data:4byte +SymPans = .bss:0x809847D4; // type:object size:0xC data:4byte +SymParent = .bss:0x809847E0; // type:object size:0x4 +SymParentFirstFrame = .bss:0x809847E4; // type:object size:0x4 +SymParentList = .bss:0x809847E8; // type:object size:0x4 +SymParentMode = .bss:0x809847EC; // type:object size:0x4 data:4byte +SymParentOnly = .bss:0x809847F0; // type:object size:0x4 data:4byte +SymParentalControlActive = .bss:0x809847F4; // type:object size:0x10 +SymParser = .bss:0x80984804; // type:object size:0x4 +SymPart = .bss:0x80984808; // type:object size:0x4 +SymPartDifficultyFilter = .bss:0x8098480C; // type:object size:0x4 data:4byte +SymPartDifficultyScreen = .bss:0x80984810; // type:object size:0x4 +SymPartDifficultySym = .bss:0x80984814; // type:object size:0x4 data:4byte +SymPartPlaysInSet = .bss:0x80984818; // type:object size:0x4 +SymPartPlaysInSong = .bss:0x8098481C; // type:object size:0x4 +SymPart2Inst = .bss:0x80984820; // type:object size:0x4 +SymPart2Sing = .bss:0x80984824; // type:object size:0x4 +SymPart3Inst = .bss:0x80984828; // type:object size:0x4 +SymPart3Sing = .bss:0x8098482C; // type:object size:0x4 +SymPart4Inst = .bss:0x80984830; // type:object size:0x4 +SymPart4Sing = .bss:0x80984834; // type:object size:0x4 +SymParticipateUsers = .bss:0x80984838; // type:object size:0xC +SymPartLauncher = .bss:0x80984844; // type:object size:0x4 +SymPartySetlist = .bss:0x80984848; // type:object size:0x4 data:4byte +SymPartySetlistByLine = .bss:0x8098484C; // type:object size:0x4 data:4byte +SymPartyShuffle = .bss:0x80984850; // type:object size:0x10 data:4byte +SymPassiveMessageCompletedAccomplishmentCategory = .bss:0x80984860; // type:object size:0x4 data:4byte +SymPassiveMessageCompletedAccomplishmentGroup = .bss:0x80984864; // type:object size:0x4 data:4byte +SymPassiveMessageEarnedAccomplishment = .bss:0x80984868; // type:object size:0x4 data:4byte +SymPassiveMessageEarnedAccomplishments = .bss:0x8098486C; // type:object size:0xC data:4byte +SymPassiveMessageEarnedCampaignLevel = .bss:0x80984878; // type:object size:0x8 data:4byte +SymPassiveMessageInviteFailed = .bss:0x80984880; // type:object size:0x4 data:4byte +SymPassiveMessageInviteSentFail = .bss:0x80984884; // type:object size:0x4 data:4byte +SymPassiveMessageInviteSentSuccess = .bss:0x80984888; // type:object size:0xC data:4byte +SymPassiveMessageRemoteUserLeft = .bss:0x80984894; // type:object size:0x1C data:4byte +SymPassiveMsgChannel = .bss:0x809848B0; // type:object size:0x4 data:4byte +SymPassiveMsgPriority = .bss:0x809848B4; // type:object size:0x4 data:4byte +SymPatch = .bss:0x809848B8; // type:object size:0x4 +SymPatchChanged = .bss:0x809848BC; // type:object size:0x4 +SymPatchDir = .bss:0x809848C0; // type:object size:0x4 +SymPatchLayerFmt = .bss:0x809848C4; // type:object size:0x4 data:4byte +SymPatchNew = .bss:0x809848C8; // type:object size:0x4 data:4byte +SymPatchable = .bss:0x809848CC; // type:object size:0x4 data:4byte +SymPatches = .bss:0x809848D0; // type:object size:0x4 +SymPatchnum = .bss:0x809848D4; // type:object size:0x4 +SymPath = .bss:0x809848D8; // type:object size:0x4 +SymPathFrame = .bss:0x809848DC; // type:object size:0x4 +SymPathName = .bss:0x809848E0; // type:object size:0x4 +SymPause = .bss:0x809848E4; // type:object size:0x4 +SymPauseAllSfx = .bss:0x809848E8; // type:object size:0x8 +SymPauseGuideTrack = .bss:0x809848F0; // type:object size:0x4 +SymPauseOffscreen = .bss:0x809848F4; // type:object size:0x8 +SymPausePanel = .bss:0x809848FC; // type:object size:0xC +SymPaused = .bss:0x80984908; // type:object size:0xC +SymPeakRate = .bss:0x80984914; // type:object size:0x4 +SymPeakState = .bss:0x80984918; // type:object size:0x4 +SymPeakStateOffTrig = .bss:0x8098491C; // type:object size:0x4 +SymPeakStateOnTrig = .bss:0x80984920; // type:object size:0x4 +SymPeakValue = .bss:0x80984924; // type:object size:0x4 +SymPearljam = .bss:0x80984928; // type:object size:0x4 data:4byte +SymPeggedAnim1 = .bss:0x8098492C; // type:object size:0x4 +SymPeggedAnim2 = .bss:0x80984930; // type:object size:0x4 +SymPending = .bss:0x80984934; // type:object size:0x4 +SymPendingGroup = .bss:0x80984938; // type:object size:0x4 data:4byte +SymPendingVocals = .bss:0x8098493C; // type:object size:0x4 +SymPercentComplete = .bss:0x80984940; // type:object size:0x4 +SymPercentHit = .bss:0x80984944; // type:object size:0x4 +SymPercentHitGemsPractice = .bss:0x80984948; // type:object size:0x4 +SymPercentageText = .bss:0x8098494C; // type:object size:0x4 +SymPercentileFmt = .bss:0x80984950; // type:object size:0x8 data:4byte +SymPerfectDrumRolls = .bss:0x80984958; // type:object size:0x4 +SymPerfectHarmony = .bss:0x8098495C; // type:object size:0x4 data:4byte +SymPerfectOverdriveTrackerContribFormatVox = .bss:0x80984960; // type:object size:0x4 +SymPerfectOverdriveTrackerContribFormatVox1 = .bss:0x80984964; // type:object size:0x4 +SymPerfectOverdriveTrackerContributionFormat = .bss:0x80984968; // type:object size:0x4 +SymPerfectOverdriveTrackerContributionFormat1 = .bss:0x8098496C; // type:object size:0x4 +SymPerfectOverdriveTrackerDeploy = .bss:0x80984970; // type:object size:0x8 data:4byte +SymPerfectOverdriveTrackerGemProgress = .bss:0x80984978; // type:object size:0x4 +SymPerfectOverdriveTrackerVocalProgress = .bss:0x8098497C; // type:object size:0x4 +SymPerfectSectionBandTrackerSuccess = .bss:0x80984980; // type:object size:0x4 data:4byte +SymPerfectSectionTrackerDescription = .bss:0x80984984; // type:object size:0x4 data:4byte +SymPerfectSectionTrackerExplanation = .bss:0x80984988; // type:object size:0x4 data:4byte +SymPerfectSectionTrackerProgress = .bss:0x8098498C; // type:object size:0x4 +SymPerfectSectionTrackerProgress1 = .bss:0x80984990; // type:object size:0x4 +SymPerfectSoloWithSoloButtons = .bss:0x80984994; // type:object size:0x10 +SymPerformance = .bss:0x809849A4; // type:object size:0x4 data:4byte +SymPerformanceAwards = .bss:0x809849A8; // type:object size:0x4 data:4byte +SymPerformer = .bss:0x809849AC; // type:object size:0x4 +SymPeriod = .bss:0x809849B0; // type:object size:0x2C data:4byte +SymPermaProject = .bss:0x809849DC; // type:object size:0x18 +SymPhraseFeedbackTrig = .bss:0x809849F4; // type:object size:0xC +SymPickInterstitialBetweenScreens = .bss:0x80984A00; // type:object size:0x4 +SymPickNewShot = .bss:0x80984A04; // type:object size:0x8 +SymPickShot = .bss:0x80984A0C; // type:object size:0x4 +SymPictureEx = .bss:0x80984A10; // type:object size:0x4 +SymPid = .bss:0x80984A14; // type:object size:0x4 data:4byte +SymPieces = .bss:0x80984A18; // type:object size:0x8 +SymPiercing = .bss:0x80984A20; // type:object size:0x4 +SymPiercings = .bss:0x80984A24; // type:object size:0x4 +SymPingPongPct = .bss:0x80984A28; // type:object size:0x8 +SymPitchAndFamily = .bss:0x80984A30; // type:object size:0x4 +SymPitchBottom = .bss:0x80984A34; // type:object size:0x4 +SymPitchDisplayMargin = .bss:0x80984A38; // type:object size:0x4 +SymPitchGuides = .bss:0x80984A3C; // type:object size:0x4 data:4byte +SymPitchHigh = .bss:0x80984A40; // type:object size:0x8 +SymPitchLow = .bss:0x80984A48; // type:object size:0x4 +SymPitchRatio = .bss:0x80984A4C; // type:object size:0x4 +SymPitchTop = .bss:0x80984A50; // type:object size:0x4 +SymPitchWindow = .bss:0x80984A54; // type:object size:0x4 +SymPitchWindowHeight = .bss:0x80984A58; // type:object size:0x4 +SymPitchWindowMesh = .bss:0x80984A5C; // type:object size:0x4 +SymPitchWindowOverlay = .bss:0x80984A60; // type:object size:0x4 +SymPitched = .bss:0x80984A64; // type:object size:0x4 +SymPivot = .bss:0x80984A68; // type:object size:0x4 +SymPkgName = .bss:0x80984A6C; // type:object size:0x4 data:4byte +SymPlacementMesh = .bss:0x80984A70; // type:object size:0x4 data:4byte +SymPlacer = .bss:0x80984A74; // type:object size:0x4 +SymPlatform = .bss:0x80984A78; // type:object size:0x4 +SymPlatformMgr = .bss:0x80984A7C; // type:object size:0x4 data:4byte +SymPlatformOk = .bss:0x80984A80; // type:object size:0x4 +SymPlatformOnly = .bss:0x80984A84; // type:object size:0x4 +SymPlatformSizeKb = .bss:0x80984A88; // type:object size:0x4 +SymPlay = .bss:0x80984A8C; // type:object size:0x4 data:4byte +SymPlayBandDiedCue = .bss:0x80984A90; // type:object size:0x8 +SymPlayClip = .bss:0x80984A98; // type:object size:0x4 +SymPlayCrowdCloseup = .bss:0x80984A9C; // type:object size:0x4 +SymPlayEndOfAnims = .bss:0x80984AA0; // type:object size:0x4 +SymPlayGroup = .bss:0x80984AA4; // type:object size:0x4 +SymPlayGroupFlags = .bss:0x80984AA8; // type:object size:0x4 +SymPlayIntro = .bss:0x80984AAC; // type:object size:0x4 +SymPlayMode = .bss:0x80984AB0; // type:object size:0x4 +SymPlayMovie = .bss:0x80984AB4; // type:object size:0x4 +SymPlayMultipleClips = .bss:0x80984AB8; // type:object size:0x4 +SymPlayPreview = .bss:0x80984ABC; // type:object size:0x4 data:4byte +SymPlayPro = .bss:0x80984AC0; // type:object size:0x4 +SymPlaySeq = .bss:0x80984AC4; // type:object size:0x4 +SymPlaySequence = .bss:0x80984AC8; // type:object size:0x4 +SymPlaySetlist = .bss:0x80984ACC; // type:object size:0x4 data:4byte +SymPlaySetlistByLine = .bss:0x80984AD0; // type:object size:0x4 data:4byte +SymPlayShot5 = .bss:0x80984AD4; // type:object size:0x4 +SymPlayStartOfAnims = .bss:0x80984AD8; // type:object size:0x4 +SymPlayTambourine = .bss:0x80984ADC; // type:object size:0x8 +SymPlayVoiceover = .bss:0x80984AE4; // type:object size:0x4 +SymPlayer = .bss:0x80984AE8; // type:object size:0x2C data:4byte +SymPlayerDisabled = .bss:0x80984B14; // type:object size:0x4 +SymPlayerFeedback = .bss:0x80984B18; // type:object size:0x8 +SymPlayerIntro = .bss:0x80984B20; // type:object size:0x4 +SymPlayerMat = .bss:0x80984B24; // type:object size:0x4 data:4byte +SymPlayerMeshes = .bss:0x80984B28; // type:object size:0x4 data:4byte +SymPlayerName = .bss:0x80984B2C; // type:object size:0x4 +SymPlayerSaved = .bss:0x80984B30; // type:object size:0x4 +SymPlayer0EnableBlinks = .bss:0x80984B34; // type:object size:0x4 +SymPlayer0ForceBlink = .bss:0x80984B38; // type:object size:0x4 +SymPlayer0ForcedFocus = .bss:0x80984B3C; // type:object size:0x4 +SymPlayer1EnableBlinks = .bss:0x80984B40; // type:object size:0x4 +SymPlayer1ForceBlink = .bss:0x80984B44; // type:object size:0x4 +SymPlayer1ForcedFocus = .bss:0x80984B48; // type:object size:0x14 +SymPlayer2EnableBlinks = .bss:0x80984B5C; // type:object size:0x4 +SymPlayer2ForceBlink = .bss:0x80984B60; // type:object size:0x4 +SymPlayer2ForcedFocus = .bss:0x80984B64; // type:object size:0x14 +SymPlayer3EnableBlinks = .bss:0x80984B78; // type:object size:0x4 +SymPlayer3ForceBlink = .bss:0x80984B7C; // type:object size:0x4 +SymPlayer3ForcedFocus = .bss:0x80984B80; // type:object size:0x4 +SymPlayersSaved = .bss:0x80984B84; // type:object size:0x4 data:4byte +SymPlus = .bss:0x80984B88; // type:object size:0x8 +SymPointCollide = .bss:0x80984B90; // type:object size:0x8 +SymPointTest = .bss:0x80984B98; // type:object size:0x4 +SymPointValue = .bss:0x80984B9C; // type:object size:0x8 data:4byte +SymPoints = .bss:0x80984BA4; // type:object size:0x4 +SymPoll = .bss:0x80984BA8; // type:object size:0x4 +SymPolls = .bss:0x80984BAC; // type:object size:0x4 +SymPoolCategory = .bss:0x80984BB0; // type:object size:0x4 +SymPoolDebug = .bss:0x80984BB4; // type:object size:0x4 +SymPoolToActivate = .bss:0x80984BB8; // type:object size:0x4 +SymPoolToCreatefor = .bss:0x80984BBC; // type:object size:0x4 +SymPopAndShowFirstAward = .bss:0x80984BC0; // type:object size:0x4 +SymPopScreen = .bss:0x80984BC4; // type:object size:0x4 +SymPopSmasher = .bss:0x80984BC8; // type:object size:0x8 +SymPopupHelp = .bss:0x80984BD0; // type:object size:0x4 +SymPopupObject = .bss:0x80984BD4; // type:object size:0x4 +SymPort = .bss:0x80984BD8; // type:object size:0x8 data:4byte +SymPortraitBegin = .bss:0x80984BE0; // type:object size:0x4 +SymPortraitEnd = .bss:0x80984BE4; // type:object size:0x4 +SymPos = .bss:0x80984BE8; // type:object size:0x4 +SymPosLength = .bss:0x80984BEC; // type:object size:0x4 +SymPosToNextGroupPos = .bss:0x80984BF0; // type:object size:0x4 +SymPosToPrevGroupPos = .bss:0x80984BF4; // type:object size:0x4 +SymPosToShortcut = .bss:0x80984BF8; // type:object size:0x4 +SymPoseMesh = .bss:0x80984BFC; // type:object size:0x4 +SymPosition = .bss:0x80984C00; // type:object size:0x4 +SymPositionContext = .bss:0x80984C04; // type:object size:0x4 +SymPositiveIcon = .bss:0x80984C08; // type:object size:0x4 data:4byte +SymPostSetup = .bss:0x80984C0C; // type:object size:0x8 +SymPostproc = .bss:0x80984C14; // type:object size:0x4 +SymPostprocInterp = .bss:0x80984C18; // type:object size:0x4 +SymPostprocOverrides = .bss:0x80984C1C; // type:object size:0x4 +SymPostprocess = .bss:0x80984C20; // type:object size:0x4 data:4byte +SymPostprocsBeforeDraw = .bss:0x80984C24; // type:object size:0x4 +SymPractice = .bss:0x80984C28; // type:object size:0x14 data:4byte +SymPracticeMetronome = .bss:0x80984C3C; // type:object size:0x4 +SymPracticeMode = .bss:0x80984C40; // type:object size:0x4 +SymPracticeNewSection = .bss:0x80984C44; // type:object size:0x8 +SymPracticeSpeed = .bss:0x80984C4C; // type:object size:0x8 +SymPraticeSectionDebug = .bss:0x80984C54; // type:object size:0x4 +SymPreDelayMs = .bss:0x80984C58; // type:object size:0x8 +SymPrecachedFilter = .bss:0x80984C60; // type:object size:0x4 data:4byte +SymPreclear = .bss:0x80984C64; // type:object size:0x8 +SymPrefab = .bss:0x80984C6C; // type:object size:0x4 +SymPrefabMgr = .bss:0x80984C70; // type:object size:0x4 data:4byte +SymPrefabPortraitPathPrefix = .bss:0x80984C74; // type:object size:0x4 data:4byte +SymPrefabPortraitPathSuffix = .bss:0x80984C78; // type:object size:0x4 data:4byte +SymPrefabsList = .bss:0x80984C7C; // type:object size:0x4 +SymPreferredScoretype = .bss:0x80984C80; // type:object size:0x4 data:4byte +SymPreload = .bss:0x80984C84; // type:object size:0x4 +SymPreloadFiles = .bss:0x80984C88; // type:object size:0x4 data:4byte +SymPremiumAssetProvider = .bss:0x80984C8C; // type:object size:0x8 +SymPrepareAssetPatchEdit = .bss:0x80984C94; // type:object size:0x4 +SymPreparePatchEdit = .bss:0x80984C98; // type:object size:0x4 +SymPrereqs = .bss:0x80984C9C; // type:object size:0x10 data:4byte +SymPreserve = .bss:0x80984CAC; // type:object size:0x4 data:4byte +SymPreserveScale = .bss:0x80984CB0; // type:object size:0x4 +SymPreserveTruncText = .bss:0x80984CB4; // type:object size:0xC +SymPresetOverrides = .bss:0x80984CC0; // type:object size:0x4 +SymPrev = .bss:0x80984CC4; // type:object size:0x4 +SymPrevVal = .bss:0x80984CC8; // type:object size:0x4 +SymPrevailing = .bss:0x80984CCC; // type:object size:0x4 +SymPreview = .bss:0x80984CD0; // type:object size:0x4 data:4byte +SymPreviewArt = .bss:0x80984CD4; // type:object size:0x4 +SymPreviewAsset = .bss:0x80984CD8; // type:object size:0x4 +SymPreviewAudio = .bss:0x80984CDC; // type:object size:0x4 +SymPreviewClip = .bss:0x80984CE0; // type:object size:0x4 +SymPreviewFinish = .bss:0x80984CE4; // type:object size:0x4 +SymPreviewMakeup = .bss:0x80984CE8; // type:object size:0x4 +SymPreviewSample = .bss:0x80984CEC; // type:object size:0x4 +SymPreviewTriggers = .bss:0x80984CF0; // type:object size:0x4 data:4byte +SymPreviewVal = .bss:0x80984CF4; // type:object size:0x4 +SymPreviewWalk = .bss:0x80984CF8; // type:object size:0x4 +SymPreviousAward = .bss:0x80984CFC; // type:object size:0x4 +SymPreviouslyAcquired = .bss:0x80984D00; // type:object size:0x4 +SymPrice = .bss:0x80984D04; // type:object size:0x4 +SymPricesRemaining = .bss:0x80984D08; // type:object size:0x8 +SymPrimaryColor = .bss:0x80984D10; // type:object size:0x4 +SymPrimeDraw = .bss:0x80984D14; // type:object size:0x4 +SymPrint = .bss:0x80984D18; // type:object size:0x4 +SymPrintBasePoints = .bss:0x80984D1C; // type:object size:0x4 +SymPrintFaders = .bss:0x80984D20; // type:object size:0x4 +SymPrintHitStats = .bss:0x80984D24; // type:object size:0x4 +SymPrintHopoStats = .bss:0x80984D28; // type:object size:0x14 +SymPrintStarThresholds = .bss:0x80984D3C; // type:object size:0x8 +SymPriority = .bss:0x80984D44; // type:object size:0x4 +SymProSongLessonsKeyboard = .bss:0x80984D48; // type:object size:0x4 +SymProSongLessonsRealGuitar = .bss:0x80984D4C; // type:object size:0x4 +SymProbability = .bss:0x80984D50; // type:object size:0x4 data:4byte +SymProcLock = .bss:0x80984D54; // type:object size:0xC +SymProgress = .bss:0x80984D60; // type:object size:0x4 +SymProgressMs = .bss:0x80984D64; // type:object size:0x4 +SymProgressStep = .bss:0x80984D68; // type:object size:0xC data:4byte +SymProjectedBlend = .bss:0x80984D74; // type:object size:0x4 +SymProp = .bss:0x80984D78; // type:object size:0x4 +SymPropAnim2 = .bss:0x80984D7C; // type:object size:0x14 +SymProperty = .bss:0x80984D90; // type:object size:0x4 data:4byte +SymPropogateColoringToPresets = .bss:0x80984D94; // type:object size:0x4 +SymPropogateTargetingToPresets = .bss:0x80984D98; // type:object size:0x4 +SymProvideInstaRank = .bss:0x80984D9C; // type:object size:0x4 data:4byte +SymProxies = .bss:0x80984DA0; // type:object size:0x4 data:4byte +SymProximityEffect = .bss:0x80984DA4; // type:object size:0x4 +SymProximityFocus = .bss:0x80984DA8; // type:object size:0x4 +SymProxy = .bss:0x80984DAC; // type:object size:0x4 +SymProxyCalls = .bss:0x80984DB0; // type:object size:0x4 +SymProxyDir = .bss:0x80984DB4; // type:object size:0x4 +SymProxyFile = .bss:0x80984DB8; // type:object size:0x4 +SymProxyName = .bss:0x80984DBC; // type:object size:0x4 +SymProxySave = .bss:0x80984DC0; // type:object size:0xC +SymPs3ForceTrilinear = .bss:0x80984DCC; // type:object size:0xC +SymPs3PerPixelHides = .bss:0x80984DD8; // type:object size:0x4 +SymPs3PerPixelShows = .bss:0x80984DDC; // type:object size:0x10 +SymPulse = .bss:0x80984DEC; // type:object size:0x4 data:4byte +SymPulseAnim = .bss:0x80984DF0; // type:object size:0x4 +SymPunctuation = .bss:0x80984DF4; // type:object size:0x4 +SymPurchaseContent = .bss:0x80984DF8; // type:object size:0x4 +SymPurgeOldData = .bss:0x80984DFC; // type:object size:0x4 +SymPurple = .bss:0x80984E00; // type:object size:0x4 +SymPushHighlightToScreen = .bss:0x80984E04; // type:object size:0x4 +SymPushScreen = .bss:0x80984E08; // type:object size:0x4 +SymPushedScreens = .bss:0x80984E0C; // type:object size:0x4 +SymQpCareerSonginfo = .bss:0x80984E10; // type:object size:0x4 data:4byte +SymQpCoop = .bss:0x80984E14; // type:object size:0x4 data:4byte +SymQpPartyShuffle = .bss:0x80984E18; // type:object size:0x4 data:4byte +SymQpPractice = .bss:0x80984E1C; // type:object size:0x8 data:4byte +SymQuarter = .bss:0x80984E24; // type:object size:0x4 +SymQueueMessage = .bss:0x80984E28; // type:object size:0x4 +SymQueueRewardVignette = .bss:0x80984E2C; // type:object size:0x8 +SymRadio = .bss:0x80984E34; // type:object size:0x4 +SymRadius = .bss:0x80984E38; // type:object size:0x4 +SymRadius0 = .bss:0x80984E3C; // type:object size:0x4 +SymRadius1 = .bss:0x80984E40; // type:object size:0x4 +SymRadius2 = .bss:0x80984E44; // type:object size:0x4 +SymRandom = .bss:0x80984E48; // type:object size:0x4 +SymRandomSong = .bss:0x80984E4C; // type:object size:0x4 data:4byte +SymRandomSongByLine = .bss:0x80984E50; // type:object size:0x4 data:4byte +SymRandomXfms = .bss:0x80984E54; // type:object size:0x4 +SymRandomizeColors = .bss:0x80984E58; // type:object size:0x4 +SymRandomizeFace = .bss:0x80984E5C; // type:object size:0x4 +SymRandomizeGroups = .bss:0x80984E60; // type:object size:0x4 +SymRange = .bss:0x80984E64; // type:object size:0x4 data:4byte +SymRangeOffsetAnim = .bss:0x80984E68; // type:object size:0x4 +SymRangeScaleAnim = .bss:0x80984E6C; // type:object size:0x4 +SymRank = .bss:0x80984E70; // type:object size:0x4 data:4byte +SymRankNodata = .bss:0x80984E74; // type:object size:0x4 data:4byte +SymRankRanked = .bss:0x80984E78; // type:object size:0x4 data:4byte +SymRankTier = .bss:0x80984E7C; // type:object size:0x4 +SymRankTierForSong = .bss:0x80984E80; // type:object size:0x4 +SymRankTierToken = .bss:0x80984E84; // type:object size:0x4 +SymRankUnranked = .bss:0x80984E88; // type:object size:0x4 data:4byte +SymRanked = .bss:0x80984E8C; // type:object size:0x4 data:4byte +SymRate = .bss:0x80984E90; // type:object size:0x4 +SymRating = .bss:0x80984E94; // type:object size:0x4 data:4byte +SymRatingIcons = .bss:0x80984E98; // type:object size:0x4 data:4byte +SymRatingNum = .bss:0x80984E9C; // type:object size:0x8 +SymRawCrowdRating = .bss:0x80984EA4; // type:object size:0x8 +SymRb1 = .bss:0x80984EAC; // type:object size:0x4 data:4byte +SymRb1Dlc = .bss:0x80984EB0; // type:object size:0x4 +SymRb2 = .bss:0x80984EB4; // type:object size:0x4 data:4byte +SymRb3 = .bss:0x80984EB8; // type:object size:0x4 data:4byte +SymRb3Dlc = .bss:0x80984EBC; // type:object size:0x4 +SymReDownload = .bss:0x80984EC0; // type:object size:0x4 +SymReSort = .bss:0x80984EC4; // type:object size:0xC +SymRealBass = .bss:0x80984ED0; // type:object size:0x4 data:4byte +SymRealBassTuning = .bss:0x80984ED4; // type:object size:0x4 data:4byte +SymRealDrum = .bss:0x80984ED8; // type:object size:0x4 +SymRealGuitar = .bss:0x80984EDC; // type:object size:0x8 data:4byte +SymRealGuitarMash0Anim = .bss:0x80984EE4; // type:object size:0x4 +SymRealGuitarMash1Anim = .bss:0x80984EE8; // type:object size:0x4 +SymRealGuitarMash2Anim = .bss:0x80984EEC; // type:object size:0x4 +SymRealGuitarMash3Anim = .bss:0x80984EF0; // type:object size:0x4 +SymRealGuitarMash4Anim = .bss:0x80984EF4; // type:object size:0x4 +SymRealGuitarMash5Anim = .bss:0x80984EF8; // type:object size:0x8 +SymRealGuitarSustainXScale = .bss:0x80984F00; // type:object size:0x4 +SymRealGuitarSustainYPos = .bss:0x80984F04; // type:object size:0x4 +SymRealGuitarTuning = .bss:0x80984F08; // type:object size:0x4 data:4byte +SymRealKeys = .bss:0x80984F0C; // type:object size:0x4 data:4byte +SymRealKeysSustainXScale = .bss:0x80984F10; // type:object size:0x4 +SymRealKeysSustainYPos = .bss:0x80984F14; // type:object size:0x4 +SymRealign = .bss:0x80984F18; // type:object size:0xC +SymRebuild = .bss:0x80984F24; // type:object size:0x4 +SymRebuildAndSortSetlists = .bss:0x80984F28; // type:object size:0x4 +SymRebuildHud = .bss:0x80984F2C; // type:object size:0x8 +SymRecenter = .bss:0x80984F34; // type:object size:0x4 +SymRecenterAll = .bss:0x80984F38; // type:object size:0x4 +SymRecentlyAcquired = .bss:0x80984F3C; // type:object size:0x4 +SymRecommendationPath = .bss:0x80984F40; // type:object size:0x8 +SymRecompose = .bss:0x80984F48; // type:object size:0x10 +SymRecreateDefaults = .bss:0x80984F58; // type:object size:0x4 +SymRecvPointCubeTex = .bss:0x80984F5C; // type:object size:0x4 +SymRecvProjLights = .bss:0x80984F60; // type:object size:0xC +SymReenterScreen = .bss:0x80984F6C; // type:object size:0x8 +SymReferenceDistance = .bss:0x80984F74; // type:object size:0x4 +SymReferenceKerning = .bss:0x80984F78; // type:object size:0x4 +SymReferenceObject1 = .bss:0x80984F7C; // type:object size:0x4 +SymReferenceObject2 = .bss:0x80984F80; // type:object size:0x4 +SymReflect = .bss:0x80984F84; // type:object size:0x4 +SymRefractAngle = .bss:0x80984F88; // type:object size:0x4 +SymRefractDist = .bss:0x80984F8C; // type:object size:0x4 +SymRefractMap = .bss:0x80984F90; // type:object size:0x4 +SymRefractNormalMap = .bss:0x80984F94; // type:object size:0x4 +SymRefractPanning = .bss:0x80984F98; // type:object size:0x4 +SymRefractScale = .bss:0x80984F9C; // type:object size:0x4 +SymRefractStrength = .bss:0x80984FA0; // type:object size:0x4 +SymRefractVelocity = .bss:0x80984FA4; // type:object size:0x4 +SymRefractoryPeriod = .bss:0x80984FA8; // type:object size:0x4 +SymRefresh = .bss:0x80984FAC; // type:object size:0x4 +SymRefreshAll = .bss:0x80984FB0; // type:object size:0x4 +SymRefreshAllSettings = .bss:0x80984FB4; // type:object size:0x8 +SymRefreshBlocks = .bss:0x80984FBC; // type:object size:0x4 +SymRefreshCymbalProvider = .bss:0x80984FC0; // type:object size:0x4 +SymRefreshDone = .bss:0x80984FC4; // type:object size:0xC +SymRefreshForBackup = .bss:0x80984FD0; // type:object size:0xC +SymRefreshHighlightedChar = .bss:0x80984FDC; // type:object size:0x4 +SymRefreshHud = .bss:0x80984FE0; // type:object size:0x8 +SymRefreshNetSetlistArt = .bss:0x80984FE8; // type:object size:0x4 +SymRefreshPatchEdit = .bss:0x80984FEC; // type:object size:0x4 +SymRefreshScores = .bss:0x80984FF0; // type:object size:0x10 +SymRefreshSort = .bss:0x80985000; // type:object size:0x8 data:4byte +SymRefreshTrackButtons = .bss:0x80985008; // type:object size:0x8 +SymRegion = .bss:0x80985010; // type:object size:0x4 data:4byte +SymRegisterFocus = .bss:0x80985014; // type:object size:0x4 +SymRegisterForContent = .bss:0x80985018; // type:object size:0x4 data:4byte +SymRegisterProfile = .bss:0x8098501C; // type:object size:0x4 +SymRegulate = .bss:0x80985020; // type:object size:0x8 +SymRelative = .bss:0x80985028; // type:object size:0x4 +SymRelativeMotion = .bss:0x8098502C; // type:object size:0x4 +SymRelativeParent = .bss:0x80985030; // type:object size:0x4 +SymRelaxOnlineRestriction = .bss:0x80985034; // type:object size:0x4 +SymRelearnChords = .bss:0x80985038; // type:object size:0x4 +SymRelease = .bss:0x8098503C; // type:object size:0x4 +SymReleaseConfiguration = .bss:0x80985040; // type:object size:0x8 +SymReleaseDateStr = .bss:0x80985048; // type:object size:0x4 +SymReleaseMode = .bss:0x8098504C; // type:object size:0x4 +SymReleaseRate = .bss:0x80985050; // type:object size:0x4 +SymReleaseSmoothing = .bss:0x80985054; // type:object size:0x4 +SymReload = .bss:0x80985058; // type:object size:0x1C +SymRelockSongs = .bss:0x80985074; // type:object size:0x4 +SymRemote = .bss:0x80985078; // type:object size:0x4 data:4byte +SymRemoteAlreadySaved = .bss:0x8098507C; // type:object size:0x4 +SymRemoteBlowCoda = .bss:0x80985080; // type:object size:0x4 +SymRemoteCodaHit = .bss:0x80985084; // type:object size:0x4 +SymRemoteDeploy = .bss:0x80985088; // type:object size:0x4 +SymRemoteEnabledState = .bss:0x8098508C; // type:object size:0x4 +SymRemoteExit = .bss:0x80985090; // type:object size:0x4 data:4byte +SymRemoteFailUnisonPhrase = .bss:0x80985094; // type:object size:0x4 +SymRemoteFill = .bss:0x80985098; // type:object size:0x4 +SymRemoteFillHit = .bss:0x8098509C; // type:object size:0x4 +SymRemoteFinaleHit = .bss:0x809850A0; // type:object size:0x4 +SymRemoteFinishedSong = .bss:0x809850A4; // type:object size:0x4 +SymRemoteGuitarFx = .bss:0x809850A8; // type:object size:0x4 +SymRemoteHit = .bss:0x809850AC; // type:object size:0x4 +SymRemoteHitLastCodaGem = .bss:0x809850B0; // type:object size:0x4 +SymRemoteHitLastUnisonGem = .bss:0x809850B4; // type:object size:0x4 +SymRemoteMissNoises = .bss:0x809850B8; // type:object size:0x4 +SymRemotePenalize = .bss:0x809850BC; // type:object size:0x4 +SymRemotePhraseOver = .bss:0x809850C0; // type:object size:0x4 +SymRemoteScorePhrase = .bss:0x809850C4; // type:object size:0x4 +SymRemoteSoloEnd = .bss:0x809850C8; // type:object size:0x4 +SymRemoteSoloHit = .bss:0x809850CC; // type:object size:0x4 +SymRemoteSoloStart = .bss:0x809850D0; // type:object size:0x4 +SymRemoteStatus = .bss:0x809850D4; // type:object size:0x4 +SymRemoteStreak = .bss:0x809850D8; // type:object size:0x4 +SymRemoteTambourineSucceeding = .bss:0x809850DC; // type:object size:0x4 +SymRemoteTrackerFocus = .bss:0x809850E0; // type:object size:0x4 +SymRemoteUpdateCrowd = .bss:0x809850E4; // type:object size:0x4 +SymRemoteUpdateEnergy = .bss:0x809850E8; // type:object size:0x4 +SymRemoteUpdateScore = .bss:0x809850EC; // type:object size:0x4 +SymRemoteVocalEnergy = .bss:0x809850F0; // type:object size:0x4 +SymRemoteVocalState = .bss:0x809850F4; // type:object size:0x4 +SymRemoteWhammy = .bss:0x809850F8; // type:object size:0x4 +SymRemoveAllLights = .bss:0x809850FC; // type:object size:0x10 +SymRemoveContent = .bss:0x8098510C; // type:object size:0x10 +SymRemoveKeys = .bss:0x8098511C; // type:object size:0x4 +SymRemoveLastSongFromSetlist = .bss:0x80985120; // type:object size:0x4 +SymRemoveLight = .bss:0x80985124; // type:object size:0x4 +SymRemoveLocalUser = .bss:0x80985128; // type:object size:0xC +SymRemoveObject = .bss:0x80985134; // type:object size:0x4 +SymRemoveRotKeys = .bss:0x80985138; // type:object size:0x4 +SymRemoveSink = .bss:0x8098513C; // type:object size:0x8 +SymRemoveTransKeys = .bss:0x80985144; // type:object size:0x8 +SymRemoveUser = .bss:0x8098514C; // type:object size:0x4 +SymRemoveUsersRequiringSongOptions = .bss:0x80985150; // type:object size:0x4 +SymRemoveXfm = .bss:0x80985154; // type:object size:0x4 +SymRenameCharacter = .bss:0x80985158; // type:object size:0x4 +SymRenderTo = .bss:0x8098515C; // type:object size:0x4 +SymRenderedTex = .bss:0x80985160; // type:object size:0x4 +SymRepeat = .bss:0x80985164; // type:object size:0x8 data:4byte +SymReplaceFrame = .bss:0x8098516C; // type:object size:0x4 +SymReplaceKeyframe = .bss:0x80985170; // type:object size:0x4 +SymReplaceProfile = .bss:0x80985174; // type:object size:0x4 +SymReplaceTarget = .bss:0x80985178; // type:object size:0x4 +SymReplay = .bss:0x8098517C; // type:object size:0x4 +SymReqDelay = .bss:0x80985180; // type:object size:0x4 +SymRequest = .bss:0x80985184; // type:object size:0x8 +SymRequestInProgress = .bss:0x8098518C; // type:object size:0x4 +SymRequestNextChunk = .bss:0x80985190; // type:object size:0x4 +SymRequestOffers = .bss:0x80985194; // type:object size:0x4 +SymRequestPackResourceRequirements = .bss:0x80985198; // type:object size:0x4 +SymRequestPrevChunk = .bss:0x8098519C; // type:object size:0x4 +SymRequestPurchase = .bss:0x809851A0; // type:object size:0x4 +SymRequestResourceRequirements = .bss:0x809851A4; // type:object size:0x4 +SymRequireAllPlayers = .bss:0x809851A8; // type:object size:0x4 data:4byte +SymRequireFullEnergy = .bss:0x809851AC; // type:object size:0x4 data:4byte +SymRequireMaxMultiplier = .bss:0x809851B0; // type:object size:0x4 data:4byte +SymRequiredAccuracy = .bss:0x809851B4; // type:object size:0x4 data:4byte +SymRequiredCampaignLevel = .bss:0x809851B8; // type:object size:0x4 data:4byte +SymRequiredSongOptionsChosen = .bss:0x809851BC; // type:object size:0x4 +SymRequirementToken = .bss:0x809851C0; // type:object size:0x4 data:4byte +SymReserveLines = .bss:0x809851C4; // type:object size:0x4 +SymReset = .bss:0x809851C8; // type:object size:0x4 +SymResetActiveSetting = .bss:0x809851CC; // type:object size:0x4 +SymResetAll = .bss:0x809851D0; // type:object size:0x4 +SymResetAllSettings = .bss:0x809851D4; // type:object size:0x4 +SymResetAudio = .bss:0x809851D8; // type:object size:0x4 +SymResetCharacterPreview = .bss:0x809851DC; // type:object size:0x8 +SymResetCodaPoints = .bss:0x809851E4; // type:object size:0x4 +SymResetController = .bss:0x809851E8; // type:object size:0x4 +SymResetCrowdMeter = .bss:0x809851EC; // type:object size:0xC +SymResetDirections = .bss:0x809851F8; // type:object size:0xC +SymResetEvents = .bss:0x80985204; // type:object size:0x4 +SymResetFilters = .bss:0x80985208; // type:object size:0x8 +SymResetLastMenu = .bss:0x80985210; // type:object size:0x4 +SymResetMicsChanged = .bss:0x80985214; // type:object size:0xC +SymResetOnEnd = .bss:0x80985220; // type:object size:0x4 +SymResetPeaks = .bss:0x80985224; // type:object size:0x4 +SymResetPostproc = .bss:0x80985228; // type:object size:0x4 +SymResetPresets = .bss:0x8098522C; // type:object size:0x8 +SymResetScoring = .bss:0x80985234; // type:object size:0x4 +SymResetScreen = .bss:0x80985238; // type:object size:0x8 +SymResetSlotCam = .bss:0x80985240; // type:object size:0x4 +SymResetSongs = .bss:0x80985244; // type:object size:0x8 +SymResetTimingData = .bss:0x8098524C; // type:object size:0x4 +SymResetToBeat = .bss:0x80985250; // type:object size:0x8 +SymResetTourData = .bss:0x80985258; // type:object size:0x4 +SymResetTrig = .bss:0x8098525C; // type:object size:0x4 +SymResetTrigger = .bss:0x80985260; // type:object size:0x4 data:4byte +SymResetVelocities = .bss:0x80985264; // type:object size:0x8 +SymResetXfm = .bss:0x8098526C; // type:object size:0x4 +SymResonance = .bss:0x80985270; // type:object size:0x8 +SymResourceFile = .bss:0x80985278; // type:object size:0x4 data:4byte +SymResourceFmt = .bss:0x8098527C; // type:object size:0x4 data:4byte +SymResourceName = .bss:0x80985280; // type:object size:0x4 +SymResourceStarsLabel = .bss:0x80985284; // type:object size:0x4 data:4byte +SymResourceStarsMixedLabel = .bss:0x80985288; // type:object size:0x4 data:4byte +SymResourcesPath = .bss:0x8098528C; // type:object size:0x4 data:4byte +SymRestart = .bss:0x80985290; // type:object size:0x4 +SymRestartLeaderboardTimer = .bss:0x80985294; // type:object size:0x4 +SymRestartSection = .bss:0x80985298; // type:object size:0x8 +SymRestoreUndo = .bss:0x809852A0; // type:object size:0x4 +SymResumedNoScore = .bss:0x809852A4; // type:object size:0x4 +SymResync = .bss:0x809852A8; // type:object size:0xC +SymRetract = .bss:0x809852B4; // type:object size:0x4 +SymRetractTrig = .bss:0x809852B8; // type:object size:0x8 +SymReturnToMainMenu = .bss:0x809852C0; // type:object size:0x4 +SymReveal = .bss:0x809852C4; // type:object size:0x4 +SymRevealAnim = .bss:0x809852C8; // type:object size:0x4 +SymRevealEntryDelay = .bss:0x809852CC; // type:object size:0x4 +SymRevealScale = .bss:0x809852D0; // type:object size:0x4 +SymRevealSound = .bss:0x809852D4; // type:object size:0x4 +SymRevealSoundDelay = .bss:0x809852D8; // type:object size:0x4 +SymRevealStartDelay = .bss:0x809852DC; // type:object size:0x4 +SymReverbEnable = .bss:0x809852E0; // type:object size:0x4 +SymReverbMixDb = .bss:0x809852E4; // type:object size:0x4 +SymReview = .bss:0x809852E8; // type:object size:0x4 +SymReview1 = .bss:0x809852EC; // type:object size:0x4 data:4byte +SymReview2 = .bss:0x809852F0; // type:object size:0x4 data:4byte +SymReview3 = .bss:0x809852F4; // type:object size:0x4 data:4byte +SymReview4 = .bss:0x809852F8; // type:object size:0x4 data:4byte +SymReview5 = .bss:0x809852FC; // type:object size:0x4 data:4byte +SymReviewAnim = .bss:0x80985300; // type:object size:0x4 data:4byte +SymRewardVignettes = .bss:0x80985304; // type:object size:0x4 data:4byte +SymRgChordbookAShort = .bss:0x80985308; // type:object size:0x4 data:4byte +SymRgChordbookAString = .bss:0x8098530C; // type:object size:0x4 data:4byte +SymRgChordbookBShort = .bss:0x80985310; // type:object size:0x4 data:4byte +SymRgChordbookBString = .bss:0x80985314; // type:object size:0x4 data:4byte +SymRgChordbookDShort = .bss:0x80985318; // type:object size:0x4 data:4byte +SymRgChordbookDString = .bss:0x8098531C; // type:object size:0x4 data:4byte +SymRgChordbookFinger1 = .bss:0x80985320; // type:object size:0x4 data:4byte +SymRgChordbookFinger2 = .bss:0x80985324; // type:object size:0x4 data:4byte +SymRgChordbookFinger3 = .bss:0x80985328; // type:object size:0x4 data:4byte +SymRgChordbookFinger4 = .bss:0x8098532C; // type:object size:0x4 data:4byte +SymRgChordbookGShort = .bss:0x80985330; // type:object size:0x4 data:4byte +SymRgChordbookGString = .bss:0x80985334; // type:object size:0x4 data:4byte +SymRgChordbookHighEShort = .bss:0x80985338; // type:object size:0x4 data:4byte +SymRgChordbookHighEString = .bss:0x8098533C; // type:object size:0x4 data:4byte +SymRgChordbookLeftHandDoesntMatter = .bss:0x80985340; // type:object size:0x4 data:4byte +SymRgChordbookLowEShort = .bss:0x80985344; // type:object size:0x4 data:4byte +SymRgChordbookLowEString = .bss:0x80985348; // type:object size:0x4 data:4byte +SymRgChordbookStepBarre = .bss:0x8098534C; // type:object size:0x4 data:4byte +SymRgChordbookStepFinger = .bss:0x80985350; // type:object size:0x4 data:4byte +SymRgChordbookStepStrum = .bss:0x80985354; // type:object size:0x4 data:4byte +SymRgChordbookStrum = .bss:0x80985358; // type:object size:0x4 data:4byte +SymRight = .bss:0x8098535C; // type:object size:0x8 data:4byte +SymRightDecoMesh = .bss:0x80985364; // type:object size:0x4 +SymRightEnd = .bss:0x80985368; // type:object size:0xC +SymRightOpaque = .bss:0x80985374; // type:object size:0x4 +SymRightOut = .bss:0x80985378; // type:object size:0x10 +SymRings = .bss:0x80985388; // type:object size:0xC +SymRock = .bss:0x80985394; // type:object size:0x4 +SymRockCentralOpCompleteMsg = .bss:0x80985398; // type:object size:0x4 +SymRoleId = .bss:0x8098539C; // type:object size:0x8 data:4byte +SymRollCount = .bss:0x809853A4; // type:object size:0x4 data:4byte +SymRollsHitCompletely = .bss:0x809853A8; // type:object size:0x4 data:4byte +SymRoomSize = .bss:0x809853AC; // type:object size:0x4 +SymRoot = .bss:0x809853B0; // type:object size:0x14 data:4byte +SymRotateRecommendation = .bss:0x809853C4; // type:object size:0x4 +SymRotateSingerAutoplayPart = .bss:0x809853C8; // type:object size:0x4 +SymRotateSingerAutoplayVariationMagnitude = .bss:0x809853CC; // type:object size:0x4 +SymRotater = .bss:0x809853D0; // type:object size:0x4 +SymRotation = .bss:0x809853D4; // type:object size:0x4 +SymRotationContext = .bss:0x809853D8; // type:object size:0x4 +SymRpm = .bss:0x809853DC; // type:object size:0x4 +SymRpmDrag = .bss:0x809853E0; // type:object size:0x4 +SymRtComputeSpace = .bss:0x809853E4; // type:object size:0x8 +SymRunNetStartUtility = .bss:0x809853EC; // type:object size:0x8 +SymRunTest = .bss:0x809853F4; // type:object size:0x4 +SymRx = .bss:0x809853F8; // type:object size:0x4 data:4byte +SymRy = .bss:0x809853FC; // type:object size:0x4 data:4byte +SymSafeAnims = .bss:0x80985400; // type:object size:0x4 +SymSameAsHarmony1 = .bss:0x80985404; // type:object size:0x4 data:4byte +SymSample = .bss:0x80985408; // type:object size:0x4 +SymSampleLength = .bss:0x8098540C; // type:object size:0x4 +SymSaturation = .bss:0x80985410; // type:object size:0x8 +SymSaveAll = .bss:0x80985418; // type:object size:0x4 +SymSaveBmp = .bss:0x8098541C; // type:object size:0xC +SymSaveFromCloset = .bss:0x80985428; // type:object size:0xC +SymSaveObjects = .bss:0x80985434; // type:object size:0x4 +SymSavePlayer = .bss:0x80985438; // type:object size:0x4 +SymSavePrefab = .bss:0x8098543C; // type:object size:0x4 +SymSaveSize = .bss:0x80985440; // type:object size:0x4 data:4byte +SymSaveSong = .bss:0x80985444; // type:object size:0x4 +SymSaveValue = .bss:0x80985448; // type:object size:0x4 data:4byte +SymSavedCount = .bss:0x8098544C; // type:object size:0x4 +SymSaveloadAllComplete = .bss:0x80985450; // type:object size:0x4 +SymSaveloadDialogEvent = .bss:0x80985454; // type:object size:0x4 data:4byte +SymSaveloadSkipUpload = .bss:0x80985458; // type:object size:0x4 data:4byte +SymSaves = .bss:0x8098545C; // type:object size:0x4 +SymScalable = .bss:0x80985460; // type:object size:0x4 +SymScale = .bss:0x80985464; // type:object size:0x4 +SymScaleContext = .bss:0x80985468; // type:object size:0x8 +SymScaleObject = .bss:0x80985470; // type:object size:0x8 +SymScaleWithDistance = .bss:0x80985478; // type:object size:0x4 +SymScaleXfms = .bss:0x8098547C; // type:object size:0x4 +SymScore = .bss:0x80985480; // type:object size:0x4 data:4byte +SymScoreBreakdown = .bss:0x80985484; // type:object size:0x4 data:4byte +SymScoreDetailAccuracy = .bss:0x80985488; // type:object size:0x4 data:4byte +SymScoreDetailBand = .bss:0x8098548C; // type:object size:0x4 data:4byte +SymScoreDetailCoda = .bss:0x80985490; // type:object size:0x4 data:4byte +SymScoreDetailHarmony = .bss:0x80985494; // type:object size:0x4 data:4byte +SymScoreDetailOverdrive = .bss:0x80985498; // type:object size:0x4 data:4byte +SymScoreDetailSection = .bss:0x8098549C; // type:object size:0x8 data:4byte +SymScoreDetailSolos = .bss:0x809854A4; // type:object size:0x4 data:4byte +SymScoreDetailStreak = .bss:0x809854A8; // type:object size:0x8 data:4byte +SymScoreDetailSustains = .bss:0x809854B0; // type:object size:0x4 data:4byte +SymScoreDetailTambourine = .bss:0x809854B4; // type:object size:0x4 data:4byte +SymScoreDiff = .bss:0x809854B8; // type:object size:0x4 +SymScoreOnFinalGem = .bss:0x809854BC; // type:object size:0x4 +SymScoreType = .bss:0x809854C0; // type:object size:0x8 data:4byte +SymScrambleXfms = .bss:0x809854C8; // type:object size:0x8 +SymScreenAspect = .bss:0x809854D0; // type:object size:0xC +SymScreenHeight = .bss:0x809854DC; // type:object size:0x4 +SymScreenOffset = .bss:0x809854E0; // type:object size:0x4 +SymScreenRect = .bss:0x809854E4; // type:object size:0x4 +SymScreenSize = .bss:0x809854E8; // type:object size:0x4 +SymScreenWidth = .bss:0x809854EC; // type:object size:0x4 +SymScreens = .bss:0x809854F0; // type:object size:0x4 data:4byte +SymScript = .bss:0x809854F4; // type:object size:0x4 data:4byte +SymScroll = .bss:0x809854F8; // type:object size:0x4 +SymScrollAnim = .bss:0x809854FC; // type:object size:0xC +SymScrollExpandedDetails = .bss:0x80985508; // type:object size:0xC +SymScrollHighlightChange = .bss:0x80985514; // type:object size:0x4 +SymScrollLbDown = .bss:0x80985518; // type:object size:0x4 +SymScrollLbUp = .bss:0x8098551C; // type:object size:0x8 +SymScrollPastMaxDisplay = .bss:0x80985524; // type:object size:0x4 +SymScrollPastMinDisplay = .bss:0x80985528; // type:object size:0x4 +SymScrollTime = .bss:0x8098552C; // type:object size:0x10 +SymScrollbarHeight = .bss:0x8098553C; // type:object size:0x4 +SymScrollbarList = .bss:0x80985540; // type:object size:0x4 +SymScrollingComingAlpha = .bss:0x80985544; // type:object size:0x4 +SymScrollingNowAlpha = .bss:0x80985548; // type:object size:0x4 +SymScrollingPastAlpha = .bss:0x8098554C; // type:object size:0x4 +SymSdModeCheck = .bss:0x80985550; // type:object size:0x4 +SymSeams = .bss:0x80985554; // type:object size:0x4 +SymSearchFinished = .bss:0x80985558; // type:object size:0x4 data:4byte +SymSearchingInterval = .bss:0x8098555C; // type:object size:0x4 +SymSecOffset = .bss:0x80985560; // type:object size:0x4 +SymSecOffsetAll = .bss:0x80985564; // type:object size:0x4 +SymSecondSpot = .bss:0x80985568; // type:object size:0x4 +SymSecondaryButton = .bss:0x8098556C; // type:object size:0x4 data:4byte +SymSecondaryColor = .bss:0x80985570; // type:object size:0x4 +SymSecondaryTargets = .bss:0x80985574; // type:object size:0x4 +SymSecondaryToken = .bss:0x80985578; // type:object size:0x4 +SymSeconds = .bss:0x8098557C; // type:object size:0x4 +SymSecretCampaignlevelPrereq = .bss:0x80985580; // type:object size:0x4 data:4byte +SymSecretPrereqs = .bss:0x80985584; // type:object size:0x4 data:4byte +SymSection = .bss:0x80985588; // type:object size:0x4 data:4byte +SymSectionAfterLast = .bss:0x8098558C; // type:object size:0x4 +SymSectionBreakdown = .bss:0x80985590; // type:object size:0x4 data:4byte +SymSectionMappings = .bss:0x80985594; // type:object size:0x4 +SymSectionName = .bss:0x80985598; // type:object size:0x4 data:4byte +SymSections = .bss:0x8098559C; // type:object size:0x8 +SymSegments = .bss:0x809855A4; // type:object size:0x4 +SymSelect = .bss:0x809855A8; // type:object size:0x8 +SymSelectAsset = .bss:0x809855B0; // type:object size:0x4 +SymSelectCamera = .bss:0x809855B4; // type:object size:0x4 +SymSelectChar = .bss:0x809855B8; // type:object size:0x4 +SymSelectDifficulty = .bss:0x809855BC; // type:object size:0x4 +SymSelectDrumPart = .bss:0x809855C0; // type:object size:0x4 +SymSelectExtras = .bss:0x809855C4; // type:object size:0x4 +SymSelectFx = .bss:0x809855C8; // type:object size:0x4 +SymSelectGuestProfile = .bss:0x809855CC; // type:object size:0x4 +SymSelectHighlightedNode = .bss:0x809855D0; // type:object size:0x8 +SymSelectLbRow = .bss:0x809855D8; // type:object size:0xC +SymSelectPart = .bss:0x809855E4; // type:object size:0x4 +SymSelectPatch = .bss:0x809855E8; // type:object size:0xC +SymSelectRandomVenue = .bss:0x809855F4; // type:object size:0x4 +SymSelectRow = .bss:0x809855F8; // type:object size:0x4 +SymSelectSetting = .bss:0x809855FC; // type:object size:0x4 +SymSelectSettingOption = .bss:0x80985600; // type:object size:0x4 +SymSelectToScroll = .bss:0x80985604; // type:object size:0x4 +SymSelectTriggers = .bss:0x80985608; // type:object size:0x4 +SymSelectVenue = .bss:0x8098560C; // type:object size:0x4 +SymSelectVocalPart = .bss:0x80985610; // type:object size:0x4 +SymSelected = .bss:0x80985614; // type:object size:0x4 +SymSelectedAccomplishment = .bss:0x80985618; // type:object size:0x4 +SymSelectedColor = .bss:0x8098561C; // type:object size:0x4 +SymSelectedData = .bss:0x80985620; // type:object size:0x8 +SymSelectedPatch = .bss:0x80985628; // type:object size:0x4 +SymSelectedPatchIx = .bss:0x8098562C; // type:object size:0x4 +SymSelectedPos = .bss:0x80985630; // type:object size:0x4 +SymSelectedStickerIxFromList = .bss:0x80985634; // type:object size:0x4 +SymSelectedSym = .bss:0x80985638; // type:object size:0x4 +SymSelectingColor = .bss:0x8098563C; // type:object size:0x8 +SymSelfShadow = .bss:0x80985644; // type:object size:0x4 +SymSend = .bss:0x80985648; // type:object size:0x4 +SymSendBackSoundMsgToAll = .bss:0x8098564C; // type:object size:0x10 +SymSendMsg = .bss:0x8098565C; // type:object size:0x4 +SymSendMsgToAll = .bss:0x80985660; // type:object size:0x4 +SymSendNetGameplayMsg = .bss:0x80985664; // type:object size:0x4 +SymSendNetGameplayMsgToPlayer = .bss:0x80985668; // type:object size:0x4 +SymSendRemoteStats = .bss:0x8098566C; // type:object size:0x4 +SymSendRestartGameNetMsg = .bss:0x80985670; // type:object size:0x4 +SymSendResumeNoScoreGameNetMsg = .bss:0x80985674; // type:object size:0x4 +SymSendSetlistToMetaperformer = .bss:0x80985678; // type:object size:0x8 +SymServer = .bss:0x80985680; // type:object size:0x8 data:4byte +SymServers = .bss:0x80985688; // type:object size:0x8 data:4byte +SymServo = .bss:0x80985690; // type:object size:0x4 +SymSessionReady = .bss:0x80985694; // type:object size:0x4 data:4byte +SymSessionStatus = .bss:0x80985698; // type:object size:0x8 +SymSet3DCrowd = .bss:0x809856A0; // type:object size:0xC +SymSetActionToken = .bss:0x809856AC; // type:object size:0x4 +SymSetActiveRoster = .bss:0x809856B0; // type:object size:0x4 +SymSetActiveStatus = .bss:0x809856B4; // type:object size:0x4 +SymSetAlbumName = .bss:0x809856B8; // type:object size:0x4 +SymSetAlign = .bss:0x809856BC; // type:object size:0x4 +SymSetAlignment = .bss:0x809856C0; // type:object size:0x4 +SymSetAllDistances = .bss:0x809856C4; // type:object size:0x4 +SymSetAllTo3D = .bss:0x809856C8; // type:object size:0x4 +SymSetAllowAchievements = .bss:0x809856CC; // type:object size:0x4 +SymSetAllowRealGuitarFlow = .bss:0x809856D0; // type:object size:0x4 +SymSetAlternateFillMapping = .bss:0x809856D4; // type:object size:0x14 +SymSetArtistName = .bss:0x809856E8; // type:object size:0x4 +SymSetArtistNameFromShortname = .bss:0x809856EC; // type:object size:0x4 +SymSetAspect = .bss:0x809856F0; // type:object size:0x4 +SymSetAutoPlay = .bss:0x809856F4; // type:object size:0x4 +SymSetAutoPlayError = .bss:0x809856F8; // type:object size:0x8 +SymSetAutoSolo = .bss:0x80985700; // type:object size:0x4 +SymSetAutoVocalsConfirmAllowed = .bss:0x80985704; // type:object size:0x8 +SymSetAutoplayOffset = .bss:0x8098570C; // type:object size:0x4 +SymSetBackgroundVolume = .bss:0x80985710; // type:object size:0x4 +SymSetBandEnergy = .bss:0x80985714; // type:object size:0x4 +SymSetBandMessage = .bss:0x80985718; // type:object size:0x4 data:4byte +SymSetBandMultiplier = .bss:0x8098571C; // type:object size:0x4 +SymSetBandName = .bss:0x80985720; // type:object size:0x4 +SymSetBandNoFail = .bss:0x80985724; // type:object size:0x4 +SymSetBandwidth = .bss:0x80985728; // type:object size:0x4 +SymSetBaseCrowdFader = .bss:0x8098572C; // type:object size:0x4 +SymSetBaseDistance = .bss:0x80985730; // type:object size:0x4 +SymSetBaseSize = .bss:0x80985734; // type:object size:0x4 +SymSetBassBoost = .bss:0x80985738; // type:object size:0x4 +SymSetBattleInstrument = .bss:0x8098573C; // type:object size:0x4 +SymSetBattleInstrumentStr = .bss:0x80985740; // type:object size:0x4 +SymSetBattleTimeLeft = .bss:0x80985744; // type:object size:0x4 +SymSetBeatScale = .bss:0x80985748; // type:object size:0x4 +SymSetBitmap = .bss:0x8098574C; // type:object size:0x4 +SymSetBlockAllInput = .bss:0x80985750; // type:object size:0x4 +SymSetBlocking = .bss:0x80985754; // type:object size:0x4 +SymSetBonusGems = .bss:0x80985758; // type:object size:0x4 +SymSetBpm = .bss:0x8098575C; // type:object size:0x4 +SymSetBuild = .bss:0x80985760; // type:object size:0x4 +SymSetBurstInterval = .bss:0x80985764; // type:object size:0x4 +SymSetBurstLength = .bss:0x80985768; // type:object size:0x4 +SymSetBurstPeak = .bss:0x8098576C; // type:object size:0x10 +SymSetCamPos = .bss:0x8098577C; // type:object size:0x8 +SymSetCareerState = .bss:0x80985784; // type:object size:0x4 +SymSetCategory = .bss:0x80985788; // type:object size:0x8 +SymSetChallengeType = .bss:0x80985790; // type:object size:0x4 data:4byte +SymSetChannel = .bss:0x80985794; // type:object size:0x8 +SymSetCharacterHideHackEnabled = .bss:0x8098579C; // type:object size:0x4 +SymSetCheating = .bss:0x809857A0; // type:object size:0x4 +SymSetClearColor = .bss:0x809857A4; // type:object size:0x4 +SymSetClearColorPacked = .bss:0x809857A8; // type:object size:0x8 +SymSetClipFlags = .bss:0x809857B0; // type:object size:0x4 +SymSetCloth = .bss:0x809857B4; // type:object size:0x4 +SymSetColor = .bss:0x809857B8; // type:object size:0x4 +SymSetColors = .bss:0x809857BC; // type:object size:0x4 +SymSetCommerceCallback = .bss:0x809857C0; // type:object size:0x4 +SymSetConfig = .bss:0x809857C4; // type:object size:0x4 +SymSetConfiguration = .bss:0x809857C8; // type:object size:0x4 +SymSetConnected = .bss:0x809857CC; // type:object size:0x4 +SymSetConstraint = .bss:0x809857D0; // type:object size:0x4 +SymSetContext = .bss:0x809857D4; // type:object size:0x4 +SymSetContributesSongProgress = .bss:0x809857D8; // type:object size:0x4 +SymSetControllerType = .bss:0x809857DC; // type:object size:0x4 +SymSetCreditsPending = .bss:0x809857E0; // type:object size:0x4 +SymSetCriticalUser = .bss:0x809857E4; // type:object size:0x8 +SymSetCrowdFader = .bss:0x809857EC; // type:object size:0x4 +SymSetCrowdMeterActive = .bss:0x809857F0; // type:object size:0x4 +SymSetCrowdRating = .bss:0x809857F4; // type:object size:0x4 +SymSetCrowdRatingActive = .bss:0x809857F8; // type:object size:0x4 +SymSetCrowdSingVol = .bss:0x809857FC; // type:object size:0x4 +SymSetCrowdVolume = .bss:0x80985800; // type:object size:0x4 +SymSetCurrSection = .bss:0x80985804; // type:object size:0x4 +SymSetCurrent = .bss:0x80985808; // type:object size:0x4 +SymSetCurrentBoutique = .bss:0x8098580C; // type:object size:0x4 +SymSetCurrentClosetPanel = .bss:0x80985810; // type:object size:0x4 +SymSetCurrentLesson = .bss:0x80985814; // type:object size:0x4 +SymSetCurrentPreviewFile = .bss:0x80985818; // type:object size:0x4 +SymSetCurrentProgressSection = .bss:0x8098581C; // type:object size:0x8 +SymSetData = .bss:0x80985824; // type:object size:0x4 +SymSetDefaultClip = .bss:0x80985828; // type:object size:0x4 +SymSetDefaultColor = .bss:0x8098582C; // type:object size:0x4 +SymSetDefaultTaskWithBackScreen = .bss:0x80985830; // type:object size:0x4 +SymSetDefaults = .bss:0x80985834; // type:object size:0x4 +SymSetDescription = .bss:0x80985838; // type:object size:0x4 +SymSetDifficulty = .bss:0x8098583C; // type:object size:0x4 +SymSetDircut = .bss:0x80985840; // type:object size:0x4 +SymSetDirty = .bss:0x80985844; // type:object size:0x4 +SymSetDisbandStatus = .bss:0x80985848; // type:object size:0x4 +SymSetDisplayMode = .bss:0x8098584C; // type:object size:0x4 +SymSetDisplayStyle = .bss:0x80985850; // type:object size:0x4 data:4byte +SymSetDisplayType = .bss:0x80985854; // type:object size:0x4 data:4byte +SymSetDlcmotd = .bss:0x80985858; // type:object size:0x4 +SymSetDofDepthOffset = .bss:0x8098585C; // type:object size:0x4 +SymSetDofDepthScale = .bss:0x80985860; // type:object size:0x4 +SymSetDofMaxOffset = .bss:0x80985864; // type:object size:0x4 +SymSetDofMaxScale = .bss:0x80985868; // type:object size:0x4 +SymSetDofMinOffset = .bss:0x8098586C; // type:object size:0x4 +SymSetDofMinScale = .bss:0x80985870; // type:object size:0x4 +SymSetDofTint = .bss:0x80985874; // type:object size:0x4 +SymSetDofWidthScale = .bss:0x80985878; // type:object size:0x4 +SymSetDolby = .bss:0x8098587C; // type:object size:0x4 +SymSetDrag = .bss:0x80985880; // type:object size:0x4 +SymSetDrawManuallyControlledWidgets = .bss:0x80985884; // type:object size:0x4 +SymSetDropprob = .bss:0x80985888; // type:object size:0x8 +SymSetEditSetlistDesc = .bss:0x80985890; // type:object size:0x4 +SymSetEditSetlistName = .bss:0x80985894; // type:object size:0x4 +SymSetEditState = .bss:0x80985898; // type:object size:0x4 data:4byte +SymSetEmitRate = .bss:0x8098589C; // type:object size:0x4 +SymSetEnableVocalsOptions = .bss:0x809858A0; // type:object size:0x4 +SymSetEnd = .bss:0x809858A4; // type:object size:0x4 +SymSetEndColor = .bss:0x809858A8; // type:object size:0x4 +SymSetEndColorInt = .bss:0x809858AC; // type:object size:0x4 +SymSetEnergyAutomatically = .bss:0x809858B0; // type:object size:0x4 +SymSetExcessAudioLag = .bss:0x809858B4; // type:object size:0x4 +SymSetExcessVideoLag = .bss:0x809858B8; // type:object size:0x4 +SymSetExpirationToListSym = .bss:0x809858BC; // type:object size:0x4 +SymSetEyeColor = .bss:0x809858C0; // type:object size:0x4 +SymSetEyebrows = .bss:0x809858C4; // type:object size:0x4 +SymSetEyebrowsProvider = .bss:0x809858C8; // type:object size:0x4 +SymSetEyebrowsSelected = .bss:0x809858CC; // type:object size:0x4 +SymSetFace = .bss:0x809858D0; // type:object size:0x4 +SymSetFaceOption = .bss:0x809858D4; // type:object size:0x4 +SymSetFaceOptionsProvider = .bss:0x809858D8; // type:object size:0x4 +SymSetFaceOptionsSelected = .bss:0x809858DC; // type:object size:0x4 +SymSetFacehair = .bss:0x809858E0; // type:object size:0x4 +SymSetFacetype = .bss:0x809858E4; // type:object size:0x4 +SymSetFade = .bss:0x809858E8; // type:object size:0x4 +SymSetFakeHitGemsInFill = .bss:0x809858EC; // type:object size:0x8 +SymSetHomeMenuEnabled = .bss:0x809858F4; // type:object size:0x8 +SymSetPassiveErrorsEnabled = .bss:0x809858FC; // type:object size:0x4 +SymShowWiiProfileSelector = .bss:0x80985900; // type:object size:0x4 +SymSpecifyFirstSongContents = .bss:0x80985904; // type:object size:0x4 +SymSpecifyNextSongContents = .bss:0x80985908; // type:object size:0x4 +SymWiiErrorGeneric = .bss:0x8098590C; // type:object size:0x4 data:4byte +SymWiiErrorNwc24Generic = .bss:0x80985910; // type:object size:0x4 +SymWiiFriendsSessionEnded = .bss:0x80985914; // type:object size:0x4 data:4byte +gDefaultTempoMap = .bss:0x80985918; // type:object size:0x8 +lbl_80985920 = .bss:0x80985920; // type:object size:0x10 +lbl_80985930 = .bss:0x80985930; // type:object size:0x10 +lbl_80985940 = .bss:0x80985940; // type:object size:0x8 +lbl_80985948 = .bss:0x80985948; // type:object size:0x4 data:4byte +lbl_8098594C = .bss:0x8098594C; // type:object size:0x4 data:4byte +lbl_80985950 = .bss:0x80985950; // type:object size:0x4 data:4byte +lbl_80985954 = .bss:0x80985954; // type:object size:0x4 data:4byte +lbl_80985958 = .bss:0x80985958; // type:object size:0x4 data:4byte +lbl_8098595C = .bss:0x8098595C; // type:object size:0x4 data:4byte +lbl_80985960 = .bss:0x80985960; // type:object size:0x4 data:4byte +lbl_80985964 = .bss:0x80985964; // type:object size:0x4 data:4byte +lbl_80985968 = .bss:0x80985968; // type:object size:0x4 data:4byte +lbl_8098596C = .bss:0x8098596C; // type:object size:0x4 data:4byte +lbl_80985970 = .bss:0x80985970; // type:object size:0x4 data:4byte +lbl_80985974 = .bss:0x80985974; // type:object size:0x4 data:4byte +lbl_80985978 = .bss:0x80985978; // type:object size:0x4 data:4byte +lbl_8098597C = .bss:0x8098597C; // type:object size:0x4 data:4byte +lbl_80985980 = .bss:0x80985980; // type:object size:0x4 data:4byte +lbl_80985984 = .bss:0x80985984; // type:object size:0x4 data:4byte +lbl_80985988 = .bss:0x80985988; // type:object size:0x4 data:4byte +lbl_8098598C = .bss:0x8098598C; // type:object size:0x4 data:4byte +lbl_80985990 = .bss:0x80985990; // type:object size:0x4 data:4byte +lbl_80985994 = .bss:0x80985994; // type:object size:0x4 data:4byte +lbl_80985998 = .bss:0x80985998; // type:object size:0x4 data:4byte +lbl_8098599C = .bss:0x8098599C; // type:object size:0x4 data:4byte +lbl_809859A0 = .bss:0x809859A0; // type:object size:0x4 data:4byte +lbl_809859A4 = .bss:0x809859A4; // type:object size:0x4 data:4byte +lbl_809859A8 = .bss:0x809859A8; // type:object size:0x4 data:4byte +lbl_809859AC = .bss:0x809859AC; // type:object size:0x4 data:4byte +lbl_809859B0 = .bss:0x809859B0; // type:object size:0x4 data:4byte +lbl_809859B4 = .bss:0x809859B4; // type:object size:0x4 data:4byte +lbl_809859B8 = .bss:0x809859B8; // type:object size:0x8 data:4byte +lbl_809859C0 = .bss:0x809859C0; // type:object size:0x4 data:4byte +lbl_809859C4 = .bss:0x809859C4; // type:object size:0x4 data:4byte +lbl_809859C8 = .bss:0x809859C8; // type:object size:0x4 data:4byte +lbl_809859CC = .bss:0x809859CC; // type:object size:0x4 data:4byte +lbl_809859D0 = .bss:0x809859D0; // type:object size:0x10 +lbl_809859E0 = .bss:0x809859E0; // type:object size:0x8 +lbl_809859E8 = .bss:0x809859E8; // type:object size:0x10 +lbl_809859F8 = .bss:0x809859F8; // type:object size:0x20 +lbl_80985A18 = .bss:0x80985A18; // type:object size:0x10 +lbl_80985A28 = .bss:0x80985A28; // type:object size:0x8 +lbl_80985A30 = .bss:0x80985A30; // type:object size:0x18 data:4byte +lbl_80985A48 = .bss:0x80985A48; // type:object size:0x18 data:4byte +lbl_80985A60 = .bss:0x80985A60; // type:object size:0x10 +lbl_80985A70 = .bss:0x80985A70; // type:object size:0x8 +lbl_80985A78 = .bss:0x80985A78; // type:object size:0x18C data:4byte +lbl_80985C04 = .bss:0x80985C04; // type:object size:0x4 data:4byte +lbl_80985C08 = .bss:0x80985C08; // type:object size:0x10 data:4byte +lbl_80985C18 = .bss:0x80985C18; // type:object size:0x8 data:4byte +lbl_80985C20 = .bss:0x80985C20; // type:object size:0x4 data:4byte +lbl_80985C24 = .bss:0x80985C24; // type:object size:0x4 data:4byte +lbl_80985C28 = .bss:0x80985C28; // type:object size:0x4 data:4byte +lbl_80985C2C = .bss:0x80985C2C; // type:object size:0x34 data:4byte +lbl_80985C60 = .bss:0x80985C60; // type:object size:0x10 +lbl_80985C70 = .bss:0x80985C70; // type:object size:0x8 +lbl_80985C78 = .bss:0x80985C78; // type:object size:0x10 +lbl_80985C88 = .bss:0x80985C88; // type:object size:0x8 +lbl_80985C90 = .bss:0x80985C90; // type:object size:0x10 +lbl_80985CA0 = .bss:0x80985CA0; // type:object size:0x8 +lbl_80985CA8 = .bss:0x80985CA8; // type:object size:0x10 +lbl_80985CB8 = .bss:0x80985CB8; // type:object size:0x2EC +lbl_80985FA4 = .bss:0x80985FA4; // type:object size:0x4 data:4byte +lbl_80985FA8 = .bss:0x80985FA8; // type:object size:0x8 data:4byte +lbl_80985FB0 = .bss:0x80985FB0; // type:object size:0x60 data:4byte +lbl_80986010 = .bss:0x80986010; // type:object size:0x4 data:4byte +lbl_80986014 = .bss:0x80986014; // type:object size:0x4 data:4byte +lbl_80986018 = .bss:0x80986018; // type:object size:0x4 data:4byte +lbl_8098601C = .bss:0x8098601C; // type:object size:0x4 +lbl_80986020 = .bss:0x80986020; // type:object size:0x8 data:4byte +lbl_80986028 = .bss:0x80986028; // type:object size:0x8 data:4byte +lbl_80986030 = .bss:0x80986030; // type:object size:0x30 +lbl_80986060 = .bss:0x80986060; // type:object size:0x10 +lbl_80986070 = .bss:0x80986070; // type:object size:0x28 +lbl_80986098 = .bss:0x80986098; // type:object size:0x4 +lbl_8098609C = .bss:0x8098609C; // type:object size:0x1F8 +lbl_80986294 = .bss:0x80986294; // type:object size:0x4 data:4byte +lbl_80986298 = .bss:0x80986298; // type:object size:0x4 data:4byte +lbl_8098629C = .bss:0x8098629C; // type:object size:0x4 data:4byte +lbl_809862A0 = .bss:0x809862A0; // type:object size:0x18 data:4byte +lbl_809862B8 = .bss:0x809862B8; // type:object size:0x4 data:4byte +lbl_809862BC = .bss:0x809862BC; // type:object size:0x4 data:4byte +lbl_809862C0 = .bss:0x809862C0; // type:object size:0x18 +lbl_809862D8 = .bss:0x809862D8; // type:object size:0x8 data:4byte +lbl_809862E0 = .bss:0x809862E0; // type:object size:0xA8 data:4byte +lbl_80986388 = .bss:0x80986388; // type:object size:0x4 data:4byte +lbl_8098638C = .bss:0x8098638C; // type:object size:0x4 data:4byte +lbl_80986390 = .bss:0x80986390; // type:object size:0x4 data:4byte +lbl_80986394 = .bss:0x80986394; // type:object size:0x4 data:4byte +lbl_80986398 = .bss:0x80986398; // type:object size:0x4 data:4byte +lbl_8098639C = .bss:0x8098639C; // type:object size:0x4 data:4byte +lbl_809863A0 = .bss:0x809863A0; // type:object size:0x68 data:4byte +lbl_80986408 = .bss:0x80986408; // type:object size:0xA0 +lbl_809864A8 = .bss:0x809864A8; // type:object size:0x4 data:4byte +lbl_809864AC = .bss:0x809864AC; // type:object size:0x4 data:4byte +lbl_809864B0 = .bss:0x809864B0; // type:object size:0x4 data:4byte +lbl_809864B4 = .bss:0x809864B4; // type:object size:0x4 data:4byte +lbl_809864B8 = .bss:0x809864B8; // type:object size:0x4 data:4byte +lbl_809864BC = .bss:0x809864BC; // type:object size:0x4 data:4byte +lbl_809864C0 = .bss:0x809864C0; // type:object size:0x4 data:4byte +lbl_809864C4 = .bss:0x809864C4; // type:object size:0x4 data:4byte +lbl_809864C8 = .bss:0x809864C8; // type:object size:0x4 data:4byte +lbl_809864CC = .bss:0x809864CC; // type:object size:0xC +lbl_809864D8 = .bss:0x809864D8; // type:object size:0x8 +lbl_809864E0 = .bss:0x809864E0; // type:object size:0x10 +lbl_809864F0 = .bss:0x809864F0; // type:object size:0x8 +lbl_809864F8 = .bss:0x809864F8; // type:object size:0x10 +lbl_80986508 = .bss:0x80986508; // type:object size:0x310 +lbl_80986818 = .bss:0x80986818; // type:object size:0x4 data:4byte +lbl_8098681C = .bss:0x8098681C; // type:object size:0x4 data:4byte +lbl_80986820 = .bss:0x80986820; // type:object size:0x30 +lbl_80986850 = .bss:0x80986850; // type:object size:0x4 data:4byte +lbl_80986854 = .bss:0x80986854; // type:object size:0x4 data:4byte +lbl_80986858 = .bss:0x80986858; // type:object size:0x4 data:4byte +lbl_8098685C = .bss:0x8098685C; // type:object size:0x4 data:4byte +lbl_80986860 = .bss:0x80986860; // type:object size:0x4 data:4byte +lbl_80986864 = .bss:0x80986864; // type:object size:0x4 +lbl_80986868 = .bss:0x80986868; // type:object size:0x4 +lbl_8098686C = .bss:0x8098686C; // type:object size:0x4 +lbl_80986870 = .bss:0x80986870; // type:object size:0x200 data:4byte +lbl_80986A70 = .bss:0x80986A70; // type:object size:0x10 +lbl_80986A80 = .bss:0x80986A80; // type:object size:0x8 data:4byte +lbl_80986A88 = .bss:0x80986A88; // type:object size:0x4 data:4byte +lbl_80986A8C = .bss:0x80986A8C; // type:object size:0x4 data:4byte +lbl_80986A90 = .bss:0x80986A90; // type:object size:0xC data:4byte +lbl_80986A9C = .bss:0x80986A9C; // type:object size:0xEC data:4byte +lbl_80986B88 = .bss:0x80986B88; // type:object size:0x4 data:4byte +lbl_80986B8C = .bss:0x80986B8C; // type:object size:0x4 data:4byte +lbl_80986B90 = .bss:0x80986B90; // type:object size:0x8 +lbl_80986B98 = .bss:0x80986B98; // type:object size:0x10 +lbl_80986BA8 = .bss:0x80986BA8; // type:object size:0x8 +lbl_80986BB0 = .bss:0x80986BB0; // type:object size:0x10 +lbl_80986BC0 = .bss:0x80986BC0; // type:object size:0x8 +lbl_80986BC8 = .bss:0x80986BC8; // type:object size:0x10 +lbl_80986BD8 = .bss:0x80986BD8; // type:object size:0x8 +lbl_80986BE0 = .bss:0x80986BE0; // type:object size:0x10 +lbl_80986BF0 = .bss:0x80986BF0; // type:object size:0x8 +lbl_80986BF8 = .bss:0x80986BF8; // type:object size:0x4 data:4byte +lbl_80986BFC = .bss:0x80986BFC; // type:object size:0xC +lbl_80986C08 = .bss:0x80986C08; // type:object size:0x8 +lbl_80986C10 = .bss:0x80986C10; // type:object size:0x4 data:float +lbl_80986C14 = .bss:0x80986C14; // type:object size:0xC +lbl_80986C20 = .bss:0x80986C20; // type:object size:0x8 +lbl_80986C28 = .bss:0x80986C28; // type:object size:0x10 +lbl_80986C38 = .bss:0x80986C38; // type:object size:0x8 +lbl_80986C40 = .bss:0x80986C40; // type:object size:0x10 +lbl_80986C50 = .bss:0x80986C50; // type:object size:0x8 +lbl_80986C58 = .bss:0x80986C58; // type:object size:0x10 +lbl_80986C68 = .bss:0x80986C68; // type:object size:0x8 +lbl_80986C70 = .bss:0x80986C70; // type:object size:0x10 +lbl_80986C80 = .bss:0x80986C80; // type:object size:0x8 +lbl_80986C88 = .bss:0x80986C88; // type:object size:0x10 +lbl_80986C98 = .bss:0x80986C98; // type:object size:0x8 +lbl_80986CA0 = .bss:0x80986CA0; // type:object size:0x30 +lbl_80986CD0 = .bss:0x80986CD0; // type:object size:0x4 data:4byte +lbl_80986CD4 = .bss:0x80986CD4; // type:object size:0x4 data:4byte +lbl_80986CD8 = .bss:0x80986CD8; // type:object size:0x10 +lbl_80986CE8 = .bss:0x80986CE8; // type:object size:0x8 +lbl_80986CF0 = .bss:0x80986CF0; // type:object size:0x10 +lbl_80986D00 = .bss:0x80986D00; // type:object size:0x1F8 +lbl_80986EF8 = .bss:0x80986EF8; // type:object size:0x4 data:4byte +lbl_80986EFC = .bss:0x80986EFC; // type:object size:0x4 data:4byte +lbl_80986F00 = .bss:0x80986F00; // type:object size:0x4 data:4byte +lbl_80986F04 = .bss:0x80986F04; // type:object size:0x4 data:4byte +lbl_80986F08 = .bss:0x80986F08; // type:object size:0x8 data:4byte +lbl_80986F10 = .bss:0x80986F10; // type:object size:0x4 data:float +lbl_80986F14 = .bss:0x80986F14; // type:object size:0x4 data:float +lbl_80986F18 = .bss:0x80986F18; // type:object size:0x8 data:float +lbl_80986F20 = .bss:0x80986F20; // type:object size:0x10 +lbl_80986F30 = .bss:0x80986F30; // type:object size:0x8 +lbl_80986F38 = .bss:0x80986F38; // type:object size:0x4 +lbl_80986F3C = .bss:0x80986F3C; // type:object size:0xC +lbl_80986F48 = .bss:0x80986F48; // type:object size:0x8 +lbl_80986F50 = .bss:0x80986F50; // type:object size:0x10 +lbl_80986F60 = .bss:0x80986F60; // type:object size:0x8 +lbl_80986F68 = .bss:0x80986F68; // type:object size:0x4 data:4byte +lbl_80986F6C = .bss:0x80986F6C; // type:object size:0x4 data:4byte +lbl_80986F70 = .bss:0x80986F70; // type:object size:0x8 data:4byte +lbl_80986F78 = .bss:0x80986F78; // type:object size:0x8 data:4byte +lbl_80986F80 = .bss:0x80986F80; // type:object size:0x10 +lbl_80986F90 = .bss:0x80986F90; // type:object size:0x20 +lbl_80986FB0 = .bss:0x80986FB0; // type:object size:0xC +lbl_80986FBC = .bss:0x80986FBC; // type:object size:0x34 +lbl_80986FF0 = .bss:0x80986FF0; // type:object size:0x8 data:4byte +lbl_80986FF8 = .bss:0x80986FF8; // type:object size:0x30 +lbl_80987028 = .bss:0x80987028; // type:object size:0x4 data:4byte +lbl_8098702C = .bss:0x8098702C; // type:object size:0x4 data:4byte +lbl_80987030 = .bss:0x80987030; // type:object size:0x4 data:4byte +lbl_80987034 = .bss:0x80987034; // type:object size:0x4 data:4byte +lbl_80987038 = .bss:0x80987038; // type:object size:0x4 data:4byte +lbl_8098703C = .bss:0x8098703C; // type:object size:0x4 data:4byte +lbl_80987040 = .bss:0x80987040; // type:object size:0x4 data:4byte +lbl_80987044 = .bss:0x80987044; // type:object size:0x4 data:4byte +lbl_80987048 = .bss:0x80987048; // type:object size:0x4 data:4byte +lbl_8098704C = .bss:0x8098704C; // type:object size:0x4 data:4byte +lbl_80987050 = .bss:0x80987050; // type:object size:0x4 data:4byte +lbl_80987054 = .bss:0x80987054; // type:object size:0x4 data:4byte +lbl_80987058 = .bss:0x80987058; // type:object size:0x4 data:4byte +lbl_8098705C = .bss:0x8098705C; // type:object size:0x4 data:4byte +lbl_80987060 = .bss:0x80987060; // type:object size:0x4 data:4byte +lbl_80987064 = .bss:0x80987064; // type:object size:0x4 data:4byte +lbl_80987068 = .bss:0x80987068; // type:object size:0x4 data:4byte +lbl_8098706C = .bss:0x8098706C; // type:object size:0x4 data:4byte +lbl_80987070 = .bss:0x80987070; // type:object size:0x4 data:4byte +lbl_80987074 = .bss:0x80987074; // type:object size:0x4 data:4byte +lbl_80987078 = .bss:0x80987078; // type:object size:0x4 data:4byte +lbl_8098707C = .bss:0x8098707C; // type:object size:0x4 data:4byte +lbl_80987080 = .bss:0x80987080; // type:object size:0x4 data:4byte +lbl_80987084 = .bss:0x80987084; // type:object size:0x4 data:4byte +lbl_80987088 = .bss:0x80987088; // type:object size:0x4 data:4byte +lbl_8098708C = .bss:0x8098708C; // type:object size:0x4 data:4byte +lbl_80987090 = .bss:0x80987090; // type:object size:0x4 data:4byte +lbl_80987094 = .bss:0x80987094; // type:object size:0x4 data:4byte +lbl_80987098 = .bss:0x80987098; // type:object size:0x4 data:4byte +lbl_8098709C = .bss:0x8098709C; // type:object size:0x4 data:4byte +lbl_809870A0 = .bss:0x809870A0; // type:object size:0x4 data:4byte +lbl_809870A4 = .bss:0x809870A4; // type:object size:0x4 data:4byte +lbl_809870A8 = .bss:0x809870A8; // type:object size:0x4 data:4byte +lbl_809870AC = .bss:0x809870AC; // type:object size:0x4 data:4byte +lbl_809870B0 = .bss:0x809870B0; // type:object size:0x4 data:4byte +lbl_809870B4 = .bss:0x809870B4; // type:object size:0xD4 data:4byte +lbl_80987188 = .bss:0x80987188; // type:object size:0x8 data:4byte +lbl_80987190 = .bss:0x80987190; // type:object size:0x8 data:4byte +lbl_80987198 = .bss:0x80987198; // type:object size:0x10 +lbl_809871A8 = .bss:0x809871A8; // type:object size:0x70 +lbl_80987218 = .bss:0x80987218; // type:object size:0x60 +lbl_80987278 = .bss:0x80987278; // type:object size:0x8 data:4byte +lbl_80987280 = .bss:0x80987280; // type:object size:0x8 data:float +lbl_80987288 = .bss:0x80987288; // type:object size:0x4 +lbl_8098728C = .bss:0x8098728C; // type:object size:0x4 data:4byte +lbl_80987290 = .bss:0x80987290; // type:object size:0x4 data:4byte +lbl_80987294 = .bss:0x80987294; // type:object size:0x4 data:4byte +lbl_80987298 = .bss:0x80987298; // type:object size:0x4 data:4byte +lbl_8098729C = .bss:0x8098729C; // type:object size:0x4 +lbl_809872A0 = .bss:0x809872A0; // type:object size:0x4 +lbl_809872A4 = .bss:0x809872A4; // type:object size:0x8C +lbl_80987330 = .bss:0x80987330; // type:object size:0x4 data:4byte +lbl_80987334 = .bss:0x80987334; // type:object size:0x4C data:4byte +lbl_80987380 = .bss:0x80987380; // type:object size:0x8 data:4byte +lbl_80987388 = .bss:0x80987388; // type:object size:0x8 +lbl_80987390 = .bss:0x80987390; // type:object size:0x8 +lbl_80987398 = .bss:0x80987398; // type:object size:0x4 data:4byte +lbl_8098739C = .bss:0x8098739C; // type:object size:0x4 data:4byte +lbl_809873A0 = .bss:0x809873A0; // type:object size:0x4 +lbl_809873A4 = .bss:0x809873A4; // type:object size:0x4 +lbl_809873A8 = .bss:0x809873A8; // type:object size:0x18 data:4byte +lbl_809873C0 = .bss:0x809873C0; // type:object size:0x10 +lbl_809873D0 = .bss:0x809873D0; // type:object size:0x8 +lbl_809873D8 = .bss:0x809873D8; // type:object size:0x10 +lbl_809873E8 = .bss:0x809873E8; // type:object size:0x8 +lbl_809873F0 = .bss:0x809873F0; // type:object size:0x10 +lbl_80987400 = .bss:0x80987400; // type:object size:0x8 +lbl_80987408 = .bss:0x80987408; // type:object size:0x10 +lbl_80987418 = .bss:0x80987418; // type:object size:0x8 +lbl_80987420 = .bss:0x80987420; // type:object size:0x4 +lbl_80987424 = .bss:0x80987424; // type:object size:0xB4 +lbl_809874D8 = .bss:0x809874D8; // type:object size:0x4 data:4byte +lbl_809874DC = .bss:0x809874DC; // type:object size:0xC +lbl_809874E8 = .bss:0x809874E8; // type:object size:0x18 +lbl_80987500 = .bss:0x80987500; // type:object size:0x8 data:4byte +lbl_80987508 = .bss:0x80987508; // type:object size:0x1A8 +lbl_809876B0 = .bss:0x809876B0; // type:object size:0x30 data:4byte +lbl_809876E0 = .bss:0x809876E0; // type:object size:0x8 data:4byte +lbl_809876E8 = .bss:0x809876E8; // type:object size:0x10 +lbl_809876F8 = .bss:0x809876F8; // type:object size:0x8 +lbl_80987700 = .bss:0x80987700; // type:object size:0x8 data:4byte +lbl_80987708 = .bss:0x80987708; // type:object size:0x4 data:4byte +lbl_8098770C = .bss:0x8098770C; // type:object size:0x4 data:4byte +lbl_80987710 = .bss:0x80987710; // type:object size:0x68 +lbl_80987778 = .bss:0x80987778; // type:object size:0x8 data:4byte +lbl_80987780 = .bss:0x80987780; // type:object size:0x4 data:4byte +lbl_80987784 = .bss:0x80987784; // type:object size:0xC +lbl_80987790 = .bss:0x80987790; // type:object size:0x8 +lbl_80987798 = .bss:0x80987798; // type:object size:0x8 data:4byte +lbl_809877A0 = .bss:0x809877A0; // type:object size:0x8 data:4byte +lbl_809877A8 = .bss:0x809877A8; // type:object size:0x8 data:4byte +lbl_809877B0 = .bss:0x809877B0; // type:object size:0x10 +lbl_809877C0 = .bss:0x809877C0; // type:object size:0xB8 +lbl_80987878 = .bss:0x80987878; // type:object size:0x8 data:4byte +lbl_80987880 = .bss:0x80987880; // type:object size:0x8 data:4byte +lbl_80987888 = .bss:0x80987888; // type:object size:0xB0 +lbl_80987938 = .bss:0x80987938; // type:object size:0x10 +lbl_80987948 = .bss:0x80987948; // type:object size:0x8 +lbl_80987950 = .bss:0x80987950; // type:object size:0x8 data:4byte +lbl_80987958 = .bss:0x80987958; // type:object size:0x4 data:4byte +lbl_8098795C = .bss:0x8098795C; // type:object size:0x4 data:4byte +lbl_80987960 = .bss:0x80987960; // type:object size:0x10 +lbl_80987970 = .bss:0x80987970; // type:object size:0x100 +lbl_80987A70 = .bss:0x80987A70; // type:object size:0x10 +lbl_80987A80 = .bss:0x80987A80; // type:object size:0x8 +lbl_80987A88 = .bss:0x80987A88; // type:object size:0x138 +lbl_80987BC0 = .bss:0x80987BC0; // type:object size:0xC +lbl_80987BCC = .bss:0x80987BCC; // type:object size:0x1F4 +lbl_80987DC0 = .bss:0x80987DC0; // type:object size:0x10 +sParsers__10MidiParser = .bss:0x80987DD0; // type:object size:0x8 +mpStart__10MidiParser = .bss:0x80987DD8; // type:object size:0x4 data:4byte +lbl_80987DDC = .bss:0x80987DDC; // type:object size:0x8 data:4byte +mpPrevStartDelta__10MidiParser = .bss:0x80987DE4; // type:object size:0x8 data:4byte +mpVal__10MidiParser = .bss:0x80987DEC; // type:object size:0x14 data:4byte +mpData__10MidiParser = .bss:0x80987E00; // type:object size:0x4 data:4byte +lbl_80987E04 = .bss:0x80987E04; // type:object size:0x94 data:4byte +lbl_80987E98 = .bss:0x80987E98; // type:object size:0x8 data:4byte +lbl_80987EA0 = .bss:0x80987EA0; // type:object size:0x4 +lbl_80987EA4 = .bss:0x80987EA4; // type:object size:0x4 +lbl_80987EA8 = .bss:0x80987EA8; // type:object size:0x10 +lbl_80987EB8 = .bss:0x80987EB8; // type:object size:0x8 +lbl_80987EC0 = .bss:0x80987EC0; // type:object size:0x4 data:4byte +lbl_80987EC4 = .bss:0x80987EC4; // type:object size:0x4 data:4byte +lbl_80987EC8 = .bss:0x80987EC8; // type:object size:0x10 data:4byte +lbl_80987ED8 = .bss:0x80987ED8; // type:object size:0x1C +lbl_80987EF4 = .bss:0x80987EF4; // type:object size:0x14 data:4byte +lbl_80987F08 = .bss:0x80987F08; // type:object size:0x9C +lbl_80987FA4 = .bss:0x80987FA4; // type:object size:0x4 data:4byte +lbl_80987FA8 = .bss:0x80987FA8; // type:object size:0x10 data:4byte +lbl_80987FB8 = .bss:0x80987FB8; // type:object size:0x8 data:4byte +lbl_80987FC0 = .bss:0x80987FC0; // type:object size:0x20 data:float +lbl_80987FE0 = .bss:0x80987FE0; // type:object size:0x20 data:float +lbl_80988000 = .bss:0x80988000; // type:object size:0x8 data:4byte +lbl_80988008 = .bss:0x80988008; // type:object size:0xE0 +lbl_809880E8 = .bss:0x809880E8; // type:object size:0x4 data:4byte +lbl_809880EC = .bss:0x809880EC; // type:object size:0x4 data:4byte +lbl_809880F0 = .bss:0x809880F0; // type:object size:0x4 data:4byte +lbl_809880F4 = .bss:0x809880F4; // type:object size:0x4 data:4byte +lbl_809880F8 = .bss:0x809880F8; // type:object size:0x4 data:4byte +lbl_809880FC = .bss:0x809880FC; // type:object size:0x4 data:4byte +lbl_80988100 = .bss:0x80988100; // type:object size:0x10 +lbl_80988110 = .bss:0x80988110; // type:object size:0x8 +lbl_80988118 = .bss:0x80988118; // type:object size:0x4 data:4byte +lbl_8098811C = .bss:0x8098811C; // type:object size:0x4 data:4byte +lbl_80988120 = .bss:0x80988120; // type:object size:0x10 +lbl_80988130 = .bss:0x80988130; // type:object size:0x8 +lbl_80988138 = .bss:0x80988138; // type:object size:0x4 data:4byte +lbl_8098813C = .bss:0x8098813C; // type:object size:0x4 data:4byte +lbl_80988140 = .bss:0x80988140; // type:object size:0x4 data:4byte +lbl_80988144 = .bss:0x80988144; // type:object size:0x2C +lbl_80988170 = .bss:0x80988170; // type:object size:0x10 +lbl_80988180 = .bss:0x80988180; // type:object size:0xD0 +lbl_80988250 = .bss:0x80988250; // type:object size:0x10 +lbl_80988260 = .bss:0x80988260; // type:object size:0x8 +lbl_80988268 = .bss:0x80988268; // type:object size:0x4 data:4byte +lbl_8098826C = .bss:0x8098826C; // type:object size:0x4 data:4byte +lbl_80988270 = .bss:0x80988270; // type:object size:0x4 data:4byte +lbl_80988274 = .bss:0x80988274; // type:object size:0x4 data:4byte +lbl_80988278 = .bss:0x80988278; // type:object size:0x4 data:4byte +lbl_8098827C = .bss:0x8098827C; // type:object size:0x4 data:4byte +lbl_80988280 = .bss:0x80988280; // type:object size:0x10 +lbl_80988290 = .bss:0x80988290; // type:object size:0x8 +lbl_80988298 = .bss:0x80988298; // type:object size:0x4 data:4byte +lbl_8098829C = .bss:0x8098829C; // type:object size:0x4 data:4byte +lbl_809882A0 = .bss:0x809882A0; // type:object size:0x8 +lbl_809882A8 = .bss:0x809882A8; // type:object size:0x8 +sUnloadingScreen__8UIScreen = .bss:0x809882B0; // type:object size:0x4 data:4byte +lbl_809882B4 = .bss:0x809882B4; // type:object size:0x1C data:4byte +lbl_809882D0 = .bss:0x809882D0; // type:object size:0x10 +lbl_809882E0 = .bss:0x809882E0; // type:object size:0x60 +lbl_80988340 = .bss:0x80988340; // type:object size:0x8 data:4byte +lbl_80988348 = .bss:0x80988348; // type:object size:0x410 +lbl_80988758 = .bss:0x80988758; // type:object size:0x4 data:4byte +lbl_8098875C = .bss:0x8098875C; // type:object size:0xC +lbl_80988768 = .bss:0x80988768; // type:object size:0x8 +lbl_80988770 = .bss:0x80988770; // type:object size:0x4 data:4byte +lbl_80988774 = .bss:0x80988774; // type:object size:0x4 data:4byte +@LOCAL@SetType__7DOFProcF6Symbol@types = .bss:0x80988778; // type:object size:0x4 data:4byte +@LOCAL@StaticClassName__7DOFProcFv@name = .bss:0x8098877C; // type:object size:0x4 data:4byte +lbl_80988780 = .bss:0x80988780; // type:object size:0x4 data:4byte +lbl_80988784 = .bss:0x80988784; // type:object size:0xC +lbl_80988790 = .bss:0x80988790; // type:object size:0x8C +lbl_8098881C = .bss:0x8098881C; // type:object size:0xC +lbl_80988828 = .bss:0x80988828; // type:object size:0x8 +lbl_80988830 = .bss:0x80988830; // type:object size:0x4 +lbl_80988834 = .bss:0x80988834; // type:object size:0x2C8 +lbl_80988AFC = .bss:0x80988AFC; // type:object size:0x4 data:4byte +lbl_80988B00 = .bss:0x80988B00; // type:object size:0x8 data:4byte +lbl_80988B08 = .bss:0x80988B08; // type:object size:0x4 data:4byte +lbl_80988B0C = .bss:0x80988B0C; // type:object size:0x8 data:4byte +lbl_80988B14 = .bss:0x80988B14; // type:object size:0x4 data:4byte +lbl_80988B18 = .bss:0x80988B18; // type:object size:0x1C0 +lbl_80988CD8 = .bss:0x80988CD8; // type:object size:0xC data:4byte +lbl_80988CE4 = .bss:0x80988CE4; // type:object size:0xC +lbl_80988CF0 = .bss:0x80988CF0; // type:object size:0x8 +lbl_80988CF8 = .bss:0x80988CF8; // type:object size:0x4 data:4byte +lbl_80988CFC = .bss:0x80988CFC; // type:object size:0x4 data:4byte +lbl_80988D00 = .bss:0x80988D00; // type:object size:0x4 +lbl_80988D04 = .bss:0x80988D04; // type:object size:0x4 +lbl_80988D08 = .bss:0x80988D08; // type:object size:0x4 +lbl_80988D0C = .bss:0x80988D0C; // type:object size:0x4 +lbl_80988D10 = .bss:0x80988D10; // type:object size:0x4 +lbl_80988D14 = .bss:0x80988D14; // type:object size:0x4 +lbl_80988D18 = .bss:0x80988D18; // type:object size:0x4 +lbl_80988D1C = .bss:0x80988D1C; // type:object size:0x1A4 +lbl_80988EC0 = .bss:0x80988EC0; // type:object size:0x4 data:4byte +lbl_80988EC4 = .bss:0x80988EC4; // type:object size:0xC data:4byte +lbl_80988ED0 = .bss:0x80988ED0; // type:object size:0x10 +lbl_80988EE0 = .bss:0x80988EE0; // type:object size:0x28 data:4byte +lbl_80988F08 = .bss:0x80988F08; // type:object size:0x8 data:4byte +lbl_80988F10 = .bss:0x80988F10; // type:object size:0x10 +lbl_80988F20 = .bss:0x80988F20; // type:object size:0x8 +lbl_80988F28 = .bss:0x80988F28; // type:object size:0x4 data:4byte +lbl_80988F2C = .bss:0x80988F2C; // type:object size:0x4 data:4byte +lbl_80988F30 = .bss:0x80988F30; // type:object size:0x4 data:4byte +lbl_80988F34 = .bss:0x80988F34; // type:object size:0x4 data:4byte +lbl_80988F38 = .bss:0x80988F38; // type:object size:0x4 data:4byte +lbl_80988F3C = .bss:0x80988F3C; // type:object size:0x4 data:4byte +lbl_80988F40 = .bss:0x80988F40; // type:object size:0x4 data:4byte +lbl_80988F44 = .bss:0x80988F44; // type:object size:0x4 data:4byte +lbl_80988F48 = .bss:0x80988F48; // type:object size:0x4 data:4byte +lbl_80988F4C = .bss:0x80988F4C; // type:object size:0x4 data:4byte +lbl_80988F50 = .bss:0x80988F50; // type:object size:0x24 +lbl_80988F74 = .bss:0x80988F74; // type:object size:0x24 +lbl_80988F98 = .bss:0x80988F98; // type:object size:0x8 data:4byte +lbl_80988FA0 = .bss:0x80988FA0; // type:object size:0x8 data:4byte +lbl_80988FA8 = .bss:0x80988FA8; // type:object size:0x4 data:4byte +lbl_80988FAC = .bss:0x80988FAC; // type:object size:0x14 data:4byte +lbl_80988FC0 = .bss:0x80988FC0; // type:object size:0x18 data:4byte +lbl_80988FD8 = .bss:0x80988FD8; // type:object size:0x18 data:4byte +lbl_80988FF0 = .bss:0x80988FF0; // type:object size:0x108 +lbl_809890F8 = .bss:0x809890F8; // type:object size:0x8 data:4byte +lbl_80989100 = .bss:0x80989100; // type:object size:0x8 data:4byte +lbl_80989108 = .bss:0x80989108; // type:object size:0x18 +lbl_80989120 = .bss:0x80989120; // type:object size:0x48 +lbl_80989168 = .bss:0x80989168; // type:object size:0x8 data:4byte +lbl_80989170 = .bss:0x80989170; // type:object size:0x30 +lbl_809891A0 = .bss:0x809891A0; // type:object size:0x4 data:4byte +lbl_809891A4 = .bss:0x809891A4; // type:object size:0x4 data:4byte +gConsole = .bss:0x809891A8; // type:object size:0x8 data:4byte +lbl_809891B0 = .bss:0x809891B0; // type:object size:0x8 +TheDOFProc = .bss:0x809891B8; // type:object size:0x8 data:4byte +lbl_809891C0 = .bss:0x809891C0; // type:object size:0x4 data:4byte +lbl_809891C4 = .bss:0x809891C4; // type:object size:0x4 +lbl_809891C8 = .bss:0x809891C8; // type:object size:0x4 data:4byte +lbl_809891CC = .bss:0x809891CC; // type:object size:0xC +lbl_809891D8 = .bss:0x809891D8; // type:object size:0x1C80 +lbl_8098AE58 = .bss:0x8098AE58; // type:object size:0x4 data:4byte +lbl_8098AE5C = .bss:0x8098AE5C; // type:object size:0x1D0C data:4byte +lbl_8098CB68 = .bss:0x8098CB68; // type:object size:0x4 data:4byte +lbl_8098CB6C = .bss:0x8098CB6C; // type:object size:0x4 data:4byte +lbl_8098CB70 = .bss:0x8098CB70; // type:object size:0x110 data:4byte +lbl_8098CC80 = .bss:0x8098CC80; // type:object size:0x8 data:4byte +lbl_8098CC88 = .bss:0x8098CC88; // type:object size:0x4 data:4byte +lbl_8098CC8C = .bss:0x8098CC8C; // type:object size:0x4 data:4byte +lbl_8098CC90 = .bss:0x8098CC90; // type:object size:0x4 data:4byte +lbl_8098CC94 = .bss:0x8098CC94; // type:object size:0xB4 data:4byte +lbl_8098CD48 = .bss:0x8098CD48; // type:object size:0x4 +lbl_8098CD4C = .bss:0x8098CD4C; // type:object size:0x4 +lbl_8098CD50 = .bss:0x8098CD50; // type:object size:0x38 +lbl_8098CD88 = .bss:0x8098CD88; // type:object size:0x78 data:4byte +lbl_8098CE00 = .bss:0x8098CE00; // type:object size:0x10 +lbl_8098CE10 = .bss:0x8098CE10; // type:object size:0x4 data:4byte +lbl_8098CE14 = .bss:0x8098CE14; // type:object size:0x4 data:4byte +lbl_8098CE18 = .bss:0x8098CE18; // type:object size:0xBC +lbl_8098CED4 = .bss:0x8098CED4; // type:object size:0x4 data:4byte +lbl_8098CED8 = .bss:0x8098CED8; // type:object size:0x10 data:4byte +lbl_8098CEE8 = .bss:0x8098CEE8; // type:object size:0x8 data:4byte +lbl_8098CEF0 = .bss:0x8098CEF0; // type:object size:0xC +lbl_8098CEFC = .bss:0x8098CEFC; // type:object size:0xB4 +lbl_8098CFB0 = .bss:0x8098CFB0; // type:object size:0x4 data:4byte +lbl_8098CFB4 = .bss:0x8098CFB4; // type:object size:0x4 data:4byte +lbl_8098CFB8 = .bss:0x8098CFB8; // type:object size:0x4 data:4byte +lbl_8098CFBC = .bss:0x8098CFBC; // type:object size:0x4 data:4byte +lbl_8098CFC0 = .bss:0x8098CFC0; // type:object size:0x10 +lbl_8098CFD0 = .bss:0x8098CFD0; // type:object size:0x8 +lbl_8098CFD8 = .bss:0x8098CFD8; // type:object size:0x10 +lbl_8098CFE8 = .bss:0x8098CFE8; // type:object size:0x8 +lbl_8098CFF0 = .bss:0x8098CFF0; // type:object size:0x70 +lbl_8098D060 = .bss:0x8098D060; // type:object size:0x4 data:4byte +lbl_8098D064 = .bss:0x8098D064; // type:object size:0xC4 data:4byte +lbl_8098D128 = .bss:0x8098D128; // type:object size:0x4 data:4byte +lbl_8098D12C = .bss:0x8098D12C; // type:object size:0x4 data:4byte +lbl_8098D130 = .bss:0x8098D130; // type:object size:0x8 +lbl_8098D138 = .bss:0x8098D138; // type:object size:0x4 data:4byte +lbl_8098D13C = .bss:0x8098D13C; // type:object size:0x4 data:4byte +lbl_8098D140 = .bss:0x8098D140; // type:object size:0x4 data:4byte +lbl_8098D144 = .bss:0x8098D144; // type:object size:0x1C +lbl_8098D160 = .bss:0x8098D160; // type:object size:0x8 data:float +lbl_8098D168 = .bss:0x8098D168; // type:object size:0x4 data:4byte +lbl_8098D16C = .bss:0x8098D16C; // type:object size:0xC +lbl_8098D178 = .bss:0x8098D178; // type:object size:0x8 +lbl_8098D180 = .bss:0x8098D180; // type:object size:0x10 +lbl_8098D190 = .bss:0x8098D190; // type:object size:0x8 +lbl_8098D198 = .bss:0x8098D198; // type:object size:0x8 data:float +lbl_8098D1A0 = .bss:0x8098D1A0; // type:object size:0x8 data:4byte +lbl_8098D1A8 = .bss:0x8098D1A8; // type:object size:0x8 +lbl_8098D1B0 = .bss:0x8098D1B0; // type:object size:0x4 data:4byte +lbl_8098D1B4 = .bss:0x8098D1B4; // type:object size:0x4 data:float +lbl_8098D1B8 = .bss:0x8098D1B8; // type:object size:0x140 data:float +lbl_8098D2F8 = .bss:0x8098D2F8; // type:object size:0x4 data:4byte +lbl_8098D2FC = .bss:0x8098D2FC; // type:object size:0x4 data:4byte +lbl_8098D300 = .bss:0x8098D300; // type:object size:0x4 data:4byte +lbl_8098D304 = .bss:0x8098D304; // type:object size:0x4 data:4byte +lbl_8098D308 = .bss:0x8098D308; // type:object size:0x4 data:4byte +lbl_8098D30C = .bss:0x8098D30C; // type:object size:0x44 data:4byte +lbl_8098D350 = .bss:0x8098D350; // type:object size:0x4 data:4byte +lbl_8098D354 = .bss:0x8098D354; // type:object size:0x19C data:4byte +lbl_8098D4F0 = .bss:0x8098D4F0; // type:object size:0x8 +lbl_8098D4F8 = .bss:0x8098D4F8; // type:object size:0x68 +lbl_8098D560 = .bss:0x8098D560; // type:object size:0x88 +lbl_8098D5E8 = .bss:0x8098D5E8; // type:object size:0xB8 +lbl_8098D6A0 = .bss:0x8098D6A0; // type:object size:0x10 +lbl_8098D6B0 = .bss:0x8098D6B0; // type:object size:0x18 +lbl_8098D6C8 = .bss:0x8098D6C8; // type:object size:0x10 +lbl_8098D6D8 = .bss:0x8098D6D8; // type:object size:0x8 +lbl_8098D6E0 = .bss:0x8098D6E0; // type:object size:0x4 data:4byte +lbl_8098D6E4 = .bss:0x8098D6E4; // type:object size:0x19C data:4byte +lbl_8098D880 = .bss:0x8098D880; // type:object size:0x104 +lbl_8098D984 = .bss:0x8098D984; // type:object size:0x4 data:4byte +lbl_8098D988 = .bss:0x8098D988; // type:object size:0x130 data:4byte +lbl_8098DAB8 = .bss:0x8098DAB8; // type:object size:0x2008 data:float +lbl_8098FAC0 = .bss:0x8098FAC0; // type:object size:0x4 data:4byte +lbl_8098FAC4 = .bss:0x8098FAC4; // type:object size:0x24 data:float +lbl_8098FAE8 = .bss:0x8098FAE8; // type:object size:0x4 data:4byte +lbl_8098FAEC = .bss:0x8098FAEC; // type:object size:0x4 data:4byte +lbl_8098FAF0 = .bss:0x8098FAF0; // type:object size:0x4 data:4byte +lbl_8098FAF4 = .bss:0x8098FAF4; // type:object size:0x4 data:4byte +lbl_8098FAF8 = .bss:0x8098FAF8; // type:object size:0x4 data:4byte +lbl_8098FAFC = .bss:0x8098FAFC; // type:object size:0x4 data:4byte +lbl_8098FB00 = .bss:0x8098FB00; // type:object size:0xC data:4byte +lbl_8098FB0C = .bss:0x8098FB0C; // type:object size:0xC +lbl_8098FB18 = .bss:0x8098FB18; // type:object size:0x3B8 +lbl_8098FED0 = .bss:0x8098FED0; // type:object size:0x4 data:4byte +lbl_8098FED4 = .bss:0x8098FED4; // type:object size:0x4 data:4byte +lbl_8098FED8 = .bss:0x8098FED8; // type:object size:0x4 data:4byte +lbl_8098FEDC = .bss:0x8098FEDC; // type:object size:0x4 data:4byte +lbl_8098FEE0 = .bss:0x8098FEE0; // type:object size:0x4 data:4byte +lbl_8098FEE4 = .bss:0x8098FEE4; // type:object size:0x4 data:4byte +lbl_8098FEE8 = .bss:0x8098FEE8; // type:object size:0x4 data:4byte +lbl_8098FEEC = .bss:0x8098FEEC; // type:object size:0x4 data:4byte +lbl_8098FEF0 = .bss:0x8098FEF0; // type:object size:0x8 data:4byte +lbl_8098FEF8 = .bss:0x8098FEF8; // type:object size:0x180 +lbl_80990078 = .bss:0x80990078; // type:object size:0x8 data:4byte +lbl_80990080 = .bss:0x80990080; // type:object size:0x8 data:4byte +lbl_80990088 = .bss:0x80990088; // type:object size:0x8 data:4byte +lbl_80990090 = .bss:0x80990090; // type:object size:0x8 data:4byte +lbl_80990098 = .bss:0x80990098; // type:object size:0x50 data:4byte +lbl_809900E8 = .bss:0x809900E8; // type:object size:0x8 data:4byte +@LOCAL@hashTo5Bits__FP9DataArray@hashMapping = .bss:0x809900F0; // type:object size:0x400 +@LOCAL@hashTo6Bits__FP9DataArray@hashMapping = .bss:0x809904F0; // type:object size:0x400 +@LOCAL@getRandomSequence32A__FP9DataArray@usedUp@0 = .bss:0x809908F0; // type:object size:0x20 +@LOCAL@getRandomSequence32B__FP9DataArray@usedUp@0 = .bss:0x80990910; // type:object size:0x20 +lbl_80990930 = .bss:0x80990930; // type:object size:0x4 +lbl_80990934 = .bss:0x80990934; // type:object size:0x4 data:4byte +lbl_80990938 = .bss:0x80990938; // type:object size:0x8 data:4byte +lbl_80990940 = .bss:0x80990940; // type:object size:0x28 +lbl_80990968 = .bss:0x80990968; // type:object size:0x20 +lbl_80990988 = .bss:0x80990988; // type:object size:0x4 data:4byte +lbl_8099098C = .bss:0x8099098C; // type:object size:0x4 data:4byte +lbl_80990990 = .bss:0x80990990; // type:object size:0x4 data:4byte +lbl_80990994 = .bss:0x80990994; // type:object size:0x4 data:4byte +lbl_80990998 = .bss:0x80990998; // type:object size:0x4 data:4byte +lbl_8099099C = .bss:0x8099099C; // type:object size:0x4 data:4byte +lbl_809909A0 = .bss:0x809909A0; // type:object size:0x4 data:4byte +lbl_809909A4 = .bss:0x809909A4; // type:object size:0x4 data:4byte +lbl_809909A8 = .bss:0x809909A8; // type:object size:0x4 data:4byte +lbl_809909AC = .bss:0x809909AC; // type:object size:0x4 data:4byte +lbl_809909B0 = .bss:0x809909B0; // type:object size:0x4 data:4byte +lbl_809909B4 = .bss:0x809909B4; // type:object size:0x4 data:4byte +lbl_809909B8 = .bss:0x809909B8; // type:object size:0x8 data:4byte +lbl_809909C0 = .bss:0x809909C0; // type:object size:0x8 +lbl_809909C8 = .bss:0x809909C8; // type:object size:0x410 +lbl_80990DD8 = .bss:0x80990DD8; // type:object size:0x8 data:4byte +lbl_80990DE0 = .bss:0x80990DE0; // type:object size:0x10 +lbl_80990DF0 = .bss:0x80990DF0; // type:object size:0x8 +lbl_80990DF8 = .bss:0x80990DF8; // type:object size:0x4 data:4byte +lbl_80990DFC = .bss:0x80990DFC; // type:object size:0x4 data:4byte +lbl_80990E00 = .bss:0x80990E00; // type:object size:0x8 data:4byte +lbl_80990E08 = .bss:0x80990E08; // type:object size:0x8 data:4byte +lbl_80990E10 = .bss:0x80990E10; // type:object size:0x8 data:4byte +lbl_80990E18 = .bss:0x80990E18; // type:object size:0x18 +lbl_80990E30 = .bss:0x80990E30; // type:object size:0x8 +TheSynth = .bss:0x80990E38; // type:object size:0x8 data:4byte +lbl_80990E40 = .bss:0x80990E40; // type:object size:0x158 +lbl_80990F98 = .bss:0x80990F98; // type:object size:0x100 +lbl_80991098 = .bss:0x80991098; // type:object size:0x100 data:byte +cipher_descriptor = .bss:0x80991198; // type:object size:0x580 +crypt_error = .bss:0x80991718; // type:object size:0x4 data:4byte +lbl_80991720 = .bss:0x80991720; // type:object size:0x30 +lbl_80991750 = .bss:0x80991750; // type:object size:0x30 +lbl_80991780 = .bss:0x80991780; // type:object size:0x10 +lbl_80991790 = .bss:0x80991790; // type:object size:0x14 +lbl_809917A4 = .bss:0x809917A4; // type:object size:0x4 data:4byte +lbl_809917A8 = .bss:0x809917A8; // type:object size:0x218 data:4byte +lbl_809919C0 = .bss:0x809919C0; // type:object size:0x4 data:4byte +lbl_809919C4 = .bss:0x809919C4; // type:object size:0x2C data:4byte +lbl_809919F0 = .bss:0x809919F0; // type:object size:0x4 data:4byte +lbl_809919F4 = .bss:0x809919F4; // type:object size:0x4 data:4byte +lbl_809919F8 = .bss:0x809919F8; // type:object size:0x8 data:4byte +lbl_80991A00 = .bss:0x80991A00; // type:object size:0x44 +lbl_80991A44 = .bss:0x80991A44; // type:object size:0x4 data:4byte +lbl_80991A48 = .bss:0x80991A48; // type:object size:0x4 data:4byte +lbl_80991A4C = .bss:0x80991A4C; // type:object size:0x4 data:4byte +lbl_80991A50 = .bss:0x80991A50; // type:object size:0x1C data:4byte +lbl_80991A6C = .bss:0x80991A6C; // type:object size:0x4 data:4byte +lbl_80991A70 = .bss:0x80991A70; // type:object size:0x4 data:4byte +lbl_80991A74 = .bss:0x80991A74; // type:object size:0x20C data:4byte +lbl_80991C80 = .bss:0x80991C80; // type:object size:0x4 data:4byte +lbl_80991C84 = .bss:0x80991C84; // type:object size:0x4 data:4byte +lbl_80991C88 = .bss:0x80991C88; // type:object size:0x30 +lbl_80991CB8 = .bss:0x80991CB8; // type:object size:0x4 data:4byte +lbl_80991CBC = .bss:0x80991CBC; // type:object size:0xEC data:4byte +lbl_80991DA8 = .bss:0x80991DA8; // type:object size:0x4 data:4byte +lbl_80991DAC = .bss:0x80991DAC; // type:object size:0x1A4 data:4byte +lbl_80991F50 = .bss:0x80991F50; // type:object size:0x8 data:4byte +lbl_80991F58 = .bss:0x80991F58; // type:object size:0x4 data:4byte +lbl_80991F5C = .bss:0x80991F5C; // type:object size:0x4 data:4byte +lbl_80991F60 = .bss:0x80991F60; // type:object size:0x4 data:4byte +lbl_80991F64 = .bss:0x80991F64; // type:object size:0x4 data:4byte +lbl_80991F68 = .bss:0x80991F68; // type:object size:0x4 data:4byte +lbl_80991F6C = .bss:0x80991F6C; // type:object size:0x8 data:4byte +lbl_80991F74 = .bss:0x80991F74; // type:object size:0x4 data:4byte +lbl_80991F78 = .bss:0x80991F78; // type:object size:0x4 data:4byte +lbl_80991F7C = .bss:0x80991F7C; // type:object size:0x2DC data:4byte +lbl_80992258 = .bss:0x80992258; // type:object size:0x4 data:4byte +lbl_8099225C = .bss:0x8099225C; // type:object size:0x4 data:4byte +lbl_80992260 = .bss:0x80992260; // type:object size:0x18 +lbl_80992278 = .bss:0x80992278; // type:object size:0x2C8 +TheRnd = .bss:0x80992540; // type:object size:0x10 data:4byte +lbl_80992550 = .bss:0x80992550; // type:object size:0x20 +lbl_80992570 = .bss:0x80992570; // type:object size:0x8 data:4byte +lbl_80992578 = .bss:0x80992578; // type:object size:0xB0 data:4byte +lbl_80992628 = .bss:0x80992628; // type:object size:0x8 +lbl_80992630 = .bss:0x80992630; // type:object size:0xC +lbl_8099263C = .bss:0x8099263C; // type:object size:0x4 data:4byte +lbl_80992640 = .bss:0x80992640; // type:object size:0x8 data:4byte +lbl_80992648 = .bss:0x80992648; // type:object size:0xD0 +lbl_80992718 = .bss:0x80992718; // type:object size:0x18 data:4byte +lbl_80992730 = .bss:0x80992730; // type:object size:0x4 data:4byte +lbl_80992734 = .bss:0x80992734; // type:object size:0x398 data:4byte +lbl_80992ACC = .bss:0x80992ACC; // type:object size:0x4 data:4byte +lbl_80992AD0 = .bss:0x80992AD0; // type:object size:0x18 data:4byte +lbl_80992AE8 = .bss:0x80992AE8; // type:object size:0x38 +lbl_80992B20 = .bss:0x80992B20; // type:object size:0x8 data:float +lbl_80992B28 = .bss:0x80992B28; // type:object size:0x4 data:4byte +lbl_80992B2C = .bss:0x80992B2C; // type:object size:0x248 data:4byte +lbl_80992D74 = .bss:0x80992D74; // type:object size:0x4 data:4byte +lbl_80992D78 = .bss:0x80992D78; // type:object size:0x80 data:4byte +lbl_80992DF8 = .bss:0x80992DF8; // type:object size:0x10 +lbl_80992E08 = .bss:0x80992E08; // type:object size:0x18 +lbl_80992E20 = .bss:0x80992E20; // type:object size:0x4 data:4byte +lbl_80992E24 = .bss:0x80992E24; // type:object size:0x1C data:4byte +lbl_80992E40 = .bss:0x80992E40; // type:object size:0x400 data:4byte +lbl_80993240 = .bss:0x80993240; // type:object size:0x8 data:4byte +lbl_80993248 = .bss:0x80993248; // type:object size:0x8 data:4byte +lbl_80993250 = .bss:0x80993250; // type:object size:0x100 data:byte +lbl_80993350 = .bss:0x80993350; // type:object size:0x80 data:4byte +lbl_809933D0 = .bss:0x809933D0; // type:object size:0x20 data:4byte +lbl_809933F0 = .bss:0x809933F0; // type:object size:0x240 +lbl_80993630 = .bss:0x80993630; // type:object size:0x38 data:4byte +lbl_80993668 = .bss:0x80993668; // type:object size:0x100 +lbl_80993768 = .bss:0x80993768; // type:object size:0x100 +lbl_80993868 = .bss:0x80993868; // type:object size:0x100 +lbl_80993968 = .bss:0x80993968; // type:object size:0x20 +lbl_80993988 = .bss:0x80993988; // type:object size:0x28 +fragmentinfo = .bss:0x809939B0; // type:object size:0x180 scope:local data:4byte +lbl_80993B30 = .bss:0x80993B30; // type:object size:0x500 +lbl_80994030 = .bss:0x80994030; // type:object size:0x20 +gDBCommTable = .bss:0x80994050; // type:object size:0x28 scope:global data:4byte +lbl_80994078 = .bss:0x80994078; // type:object size:0x28 data:4byte +lbl_809940A0 = .bss:0x809940A0; // type:object size:0x19A8 data:4byte +gTRKRestoreFlags = .bss:0x80995A48; // type:object size:0x9 scope:global data:byte +lbl_80995A58 = .bss:0x80995A58; // type:object size:0x18 data:4byte +gTRKSaveState = .bss:0x80995A70; // type:object size:0x94 scope:global data:4byte +lbl_80995B08 = .bss:0x80995B08; // type:object size:0x10 +gTRKState = .bss:0x80995B18; // type:object size:0xA4 scope:global data:4byte +gTRKCPUState = .bss:0x80995BC0; // type:object size:0x430 scope:global data:4byte +lbl_80995FF0 = .bss:0x80995FF0; // type:object size:0x80 data:4byte +lbl_80996070 = .bss:0x80996070; // type:object size:0x90 data:4byte +lbl_80996100 = .bss:0x80996100; // type:object size:0x1200 data:4byte +lbl_80997300 = .bss:0x80997300; // type:object size:0x1200 data:4byte +lbl_80998500 = .bss:0x80998500; // type:object size:0xD80 data:4byte +lbl_80999280 = .bss:0x80999280; // type:object size:0x100 +lbl_80999380 = .bss:0x80999380; // type:object size:0x8E0 data:byte +lbl_80999C60 = .bss:0x80999C60; // type:object size:0x480 data:4byte +lbl_8099A0E0 = .bss:0x8099A0E0; // type:object size:0x60 +lbl_8099A140 = .bss:0x8099A140; // type:object size:0x40 +lbl_8099A180 = .bss:0x8099A180; // type:object size:0x80 +lbl_8099A200 = .bss:0x8099A200; // type:object size:0x7800 +lbl_809A1A00 = .bss:0x809A1A00; // type:object size:0x1800 +lbl_809A3200 = .bss:0x809A3200; // type:object size:0x4EAD +lbl_809A80AD = .bss:0x809A80AD; // type:object size:0x3853 +lbl_809AB900 = .bss:0x809AB900; // type:object size:0xC793 data:byte +lbl_809B8093 = .bss:0x809B8093; // type:object size:0xD21A +lbl_809C52AD = .bss:0x809C52AD; // type:object size:0xF133 +lbl_809D43E0 = .bss:0x809D43E0; // type:object size:0x40 +lbl_809D4420 = .bss:0x809D4420; // type:object size:0x60 data:4byte +lbl_809D4480 = .bss:0x809D4480; // type:object size:0x1000 +lbl_809D5480 = .bss:0x809D5480; // type:object size:0x1000 +lbl_809D6480 = .bss:0x809D6480; // type:object size:0x7E0 +lbl_809D6C60 = .bss:0x809D6C60; // type:object size:0x1000 +lbl_809D7C60 = .bss:0x809D7C60; // type:object size:0x30 +lbl_809D7C90 = .bss:0x809D7C90; // type:object size:0x88 data:4byte +lbl_809D7D18 = .bss:0x809D7D18; // type:object size:0x90 data:4byte +lbl_809D7DA8 = .bss:0x809D7DA8; // type:object size:0x30 +lbl_809D7DD8 = .bss:0x809D7DD8; // type:object size:0x7C data:4byte +lbl_809D7E54 = .bss:0x809D7E54; // type:object size:0x104 +lbl_809D7F58 = .bss:0x809D7F58; // type:object size:0x30 data:byte +lbl_809D7F88 = .bss:0x809D7F88; // type:object size:0x230 +lbl_809D81B8 = .bss:0x809D81B8; // type:object size:0x27C8 +lbl_809DA980 = .bss:0x809DA980; // type:object size:0x3B0 +lbl_809DAD30 = .bss:0x809DAD30; // type:object size:0x148 +lbl_809DAE78 = .bss:0x809DAE78; // type:object size:0x408 data:byte +lbl_809DB280 = .bss:0x809DB280; // type:object size:0x7E8 data:byte +lbl_809DBA68 = .bss:0x809DBA68; // type:object size:0x418 data:byte +lbl_809DBE80 = .bss:0x809DBE80; // type:object size:0x4640 +__DVDTicketViewBuffer = .bss:0x809E04C0; // type:object size:0xE0 scope:local +__DVDTmdBuffer = .bss:0x809E05C0; // type:object size:0x4A00 scope:local +lbl_809E4FC0 = .bss:0x809E4FC0; // type:object size:0x20 +lbl_809E4FE0 = .bss:0x809E4FE0; // type:object size:0x30 +lbl_809E5010 = .bss:0x809E5010; // type:object size:0x30 +lbl_809E5040 = .bss:0x809E5040; // type:object size:0x40 +lbl_809E5080 = .bss:0x809E5080; // type:object size:0x20 +lbl_809E50A0 = .bss:0x809E50A0; // type:object size:0x20 +lbl_809E50C0 = .bss:0x809E50C0; // type:object size:0x20 +lbl_809E50E0 = .bss:0x809E50E0; // type:object size:0x30 +lbl_809E5110 = .bss:0x809E5110; // type:object size:0x60 +WaitingQueue = .bss:0x809E5170; // type:object size:0x20 scope:local data:4byte +lbl_809E51A0 = .bss:0x809E51A0; // type:object size:0x8C +lbl_809E522C = .bss:0x809E522C; // type:object size:0xD4 +__ErrorInfo = .bss:0x809E5300; // type:object size:0x80 scope:global data:byte +CheckBuffer = .bss:0x809E5400; // type:object size:0x20 scope:local +lbl_809E5420 = .bss:0x809E5420; // type:object size:0x80 data:4byte +lbl_809E54A0 = .bss:0x809E54A0; // type:object size:0x20 data:4byte +lbl_809E54C0 = .bss:0x809E54C0; // type:object size:0x20 data:4byte +lbl_809E54E0 = .bss:0x809E54E0; // type:object size:0xC0 data:4byte +lbl_809E55A0 = .bss:0x809E55A0; // type:object size:0x20 data:4byte +lbl_809E55C0 = .bss:0x809E55C0; // type:object size:0x20 data:4byte +Ecb = .bss:0x809E55E0; // type:object size:0xC0 scope:local data:4byte +FifoObj = .bss:0x809E56A0; // type:object size:0x80 scope:local +lbl_809E5720 = .bss:0x809E5720; // type:object size:0x600 +lbl_809E5D20 = .bss:0x809E5D20; // type:object size:0x24 data:4byte +lbl_809E5D44 = .bss:0x809E5D44; // type:object size:0x3C data:4byte +__responses = .bss:0x809E5D80; // type:object size:0xD0 scope:local data:4byte +__timeout_alarm = .bss:0x809E5E50; // type:object size:0x30 scope:local +lbl_809E5E80 = .bss:0x809E5E80; // type:object size:0x40 +lbl_809E5EC0 = .bss:0x809E5EC0; // type:object size:0x80 data:4byte +lbl_809E5F40 = .bss:0x809E5F40; // type:object size:0x3A80 data:4byte +lbl_809E99C0 = .bss:0x809E99C0; // type:object size:0x1A20 +lbl_809EB3E0 = .bss:0x809EB3E0; // type:object size:0x30 data:float +lbl_809EB410 = .bss:0x809EB410; // type:object size:0x20 data:double +lbl_809EB430 = .bss:0x809EB430; // type:object size:0x30 data:double +lbl_809EB460 = .bss:0x809EB460; // type:object size:0x200 +lbl_809EB660 = .bss:0x809EB660; // type:object size:0x80 +lbl_809EB6E0 = .bss:0x809EB6E0; // type:object size:0x10 +lbl_809EB6F0 = .bss:0x809EB6F0; // type:object size:0x30 +s_homeDir = .bss:0x809EB720; // type:object size:0x40 scope:local +s_message = .bss:0x809EB780; // type:object size:0x100 scope:local +lbl_809EBA80 = .bss:0x809EBA80; // type:object size:0x20 +lbl_809EBAA0 = .bss:0x809EBAA0; // type:object size:0x40 data:4byte +__OSRebootParams = .bss:0x809EBAE0; // type:object size:0x1C scope:global data:4byte +lbl_809EBB00 = .bss:0x809EBB00; // type:object size:0x50 +__OSErrorTable = .bss:0x809EBB50; // type:object size:0x44 scope:global data:4byte +lbl_809EBBA0 = .bss:0x809EBBA0; // type:object size:0x20 +lbl_809EBBC0 = .bss:0x809EBBC0; // type:object size:0x2C8 +lbl_809EBE88 = .bss:0x809EBE88; // type:object size:0x18 data:4byte +Scb = .bss:0x809EBEA0; // type:object size:0x54 scope:local data:4byte +DefaultThread = .bss:0x809EBEF8; // type:object size:0x318 scope:local data:4byte +lbl_809EC210 = .bss:0x809EC210; // type:object size:0x100 data:4byte +lbl_809EC310 = .bss:0x809EC310; // type:object size:0x5F0 +StmEhInBuf = .bss:0x809EC900; // type:object size:0x20 scope:local +StmEhOutBuf = .bss:0x809EC920; // type:object size:0x20 scope:local data:4byte +lbl_809EC940 = .bss:0x809EC940; // type:object size:0x20 data:4byte +lbl_809EC960 = .bss:0x809EC960; // type:object size:0x20 +lbl_809EC980 = .bss:0x809EC980; // type:object size:0x20 data:4byte +lbl_809EC9A0 = .bss:0x809EC9A0; // type:object size:0x20 +lbl_809EC9C0 = .bss:0x809EC9C0; // type:object size:0x200 data:4byte +lbl_809ECBC0 = .bss:0x809ECBC0; // type:object size:0x20 data:4byte +__OSExpireAlarm = .bss:0x809ECBE0; // type:object size:0x30 scope:global data:4byte +Control = .bss:0x809ECC20; // type:object size:0x190 scope:local data:4byte +ConfBuf = .bss:0x809ECDC0; // type:object size:0x4000 scope:local +lbl_809F0DC0 = .bss:0x809F0DC0; // type:object size:0x4000 +lbl_809F4DC0 = .bss:0x809F4DC0; // type:object size:0x1008 data:4byte +Packet = .bss:0x809F5DC8; // type:object size:0x80 scope:local data:4byte +lbl_809F5E48 = .bss:0x809F5E48; // type:object size:0x20 +TypeTime = .bss:0x809F5E68; // type:object size:0x20 scope:local +lbl_809F5E88 = .bss:0x809F5E88; // type:object size:0x160 +lbl_809F5FE8 = .bss:0x809F5FE8; // type:object size:0x78 +lbl_809F6060 = .bss:0x809F6060; // type:object size:0x78 data:2byte +lbl_809F60D8 = .bss:0x809F60D8; // type:object size:0x58 data:2byte +lbl_809F6130 = .bss:0x809F6130; // type:object size:0x28 data:4byte +lbl_809F6158 = .bss:0x809F6158; // type:object size:0x28 data:byte +lbl_809F6180 = .bss:0x809F6180; // type:object size:0x30 +lbl_809F61B0 = .bss:0x809F61B0; // type:object size:0x10 data:4byte +lbl_809F61C0 = .bss:0x809F61C0; // type:object size:0x1000 +lbl_809F71C0 = .bss:0x809F71C0; // type:object size:0x2FA0 data:byte +lbl_809FA160 = .bss:0x809FA160; // type:object size:0x60 +lbl_809FA1C0 = .bss:0x809FA1C0; // type:object size:0x750 data:4byte +lbl_809FA910 = .bss:0x809FA910; // type:object size:0x108 +lbl_809FAA18 = .bss:0x809FAA18; // type:object size:0x60 +lbl_809FAA78 = .bss:0x809FAA78; // type:object size:0x468 data:byte +lbl_809FAEE0 = .bss:0x809FAEE0; // type:object size:0xA0 data:2byte +lbl_809FAF80 = .bss:0x809FAF80; // type:object size:0x1A0 +lbl_809FB120 = .bss:0x809FB120; // type:object size:0x1208 +lbl_809FC328 = .bss:0x809FC328; // type:object size:0x20 +lbl_809FC348 = .bss:0x809FC348; // type:object size:0x20 +lbl_809FC368 = .bss:0x809FC368; // type:object size:0x4 data:4byte +lbl_809FC36C = .bss:0x809FC36C; // type:object size:0x1 data:byte +lbl_809FC370 = .bss:0x809FC370; // type:object size:0x24 +lbl_809FC394 = .bss:0x809FC394; // type:object size:0x24 +lbl_809FC3B8 = .bss:0x809FC3B8; // type:object size:0x348 +lbl_809FC700 = .bss:0x809FC700; // type:object size:0x8 +lbl_809FC708 = .bss:0x809FC708; // type:object size:0x4 data:4byte +lbl_809FC70C = .bss:0x809FC70C; // type:object size:0xC data:4byte +lbl_809FC718 = .bss:0x809FC718; // type:object size:0x8 data:4byte +lbl_809FC720 = .bss:0x809FC720; // type:object size:0x400 +lbl_809FCB20 = .bss:0x809FCB20; // type:object size:0x400 +lbl_809FCF20 = .bss:0x809FCF20; // type:object size:0x400 +lbl_809FD320 = .bss:0x809FD320; // type:object size:0x8 data:4byte +lbl_809FD328 = .bss:0x809FD328; // type:object size:0x8 data:4byte +lbl_809FD330 = .bss:0x809FD330; // type:object size:0x4 data:4byte +lbl_809FD334 = .bss:0x809FD334; // type:object size:0x4 data:4byte +lbl_809FD338 = .bss:0x809FD338; // type:object size:0x28 +lbl_809FD360 = .bss:0x809FD360; // type:object size:0x8 data:byte +lbl_809FD368 = .bss:0x809FD368; // type:object size:0x100 data:byte +lbl_809FD468 = .bss:0x809FD468; // type:object size:0x40 data:byte +lbl_809FD4A8 = .bss:0x809FD4A8; // type:object size:0x18 data:byte +lbl_809FD4C0 = .bss:0x809FD4C0; // type:object size:0x2060 +lbl_809FF520 = .bss:0x809FF520; // type:object size:0x2060 +lbl_80A01580 = .bss:0x80A01580; // type:object size:0x8000 +lbl_80A09580 = .bss:0x80A09580; // type:object size:0x20 +lbl_80A095A0 = .bss:0x80A095A0; // type:object size:0x80 +lbl_80A09620 = .bss:0x80A09620; // type:object size:0x4 data:4byte +lbl_80A09624 = .bss:0x80A09624; // type:object size:0x4 data:4byte +lbl_80A09628 = .bss:0x80A09628; // type:object size:0x8 data:4byte +lbl_80A09630 = .bss:0x80A09630; // type:object size:0x400 +lbl_80A09A30 = .bss:0x80A09A30; // type:object size:0x8 data:4byte +lbl_80A09A38 = .bss:0x80A09A38; // type:object size:0x8 data:4byte +lbl_80A09A40 = .bss:0x80A09A40; // type:object size:0x8 data:4byte +lbl_80A09A48 = .bss:0x80A09A48; // type:object size:0x50B8 +lbl_80A0EB00 = .bss:0x80A0EB00; // type:object size:0x2F48 +lbl_80A11A48 = .bss:0x80A11A48; // type:object size:0x8 data:4byte +lbl_80A11A50 = .bss:0x80A11A50; // type:object size:0x8 data:byte +lbl_80A11A58 = .bss:0x80A11A58; // type:object size:0x8 data:4byte +lbl_80A11A60 = .bss:0x80A11A60; // type:object size:0x8 data:4byte +lbl_80A11A68 = .bss:0x80A11A68; // type:object size:0x8 data:4byte +lbl_80A11A70 = .bss:0x80A11A70; // type:object size:0x8 data:4byte +lbl_80A11A78 = .bss:0x80A11A78; // type:object size:0x8 data:4byte +lbl_80A11A80 = .bss:0x80A11A80; // type:object size:0x8 data:4byte +lbl_80A11A88 = .bss:0x80A11A88; // type:object size:0x8 data:4byte +lbl_80A11A90 = .bss:0x80A11A90; // type:object size:0x20 data:byte +lbl_80A11AB0 = .bss:0x80A11AB0; // type:object size:0x8 data:4byte +lbl_80A11AB8 = .bss:0x80A11AB8; // type:object size:0x8 data:4byte +lbl_80A11AC0 = .bss:0x80A11AC0; // type:object size:0x8 data:4byte +lbl_80A11AC8 = .bss:0x80A11AC8; // type:object size:0x8 data:4byte +lbl_80A11AD0 = .bss:0x80A11AD0; // type:object size:0x8 +lbl_80A11AD8 = .bss:0x80A11AD8; // type:object size:0x14 data:4byte +lbl_80A11AEC = .bss:0x80A11AEC; // type:object size:0x34 data:4byte +lbl_80A11B20 = .bss:0x80A11B20; // type:object size:0x40 data:4byte +lbl_80A11B60 = .bss:0x80A11B60; // type:object size:0xCA0 +lbl_80A12800 = .bss:0x80A12800; // type:object size:0x180 +lbl_80A12980 = .bss:0x80A12980; // type:object size:0xE0 +lbl_80A12A60 = .bss:0x80A12A60; // type:object size:0x20 data:4byte +lbl_80A12A80 = .bss:0x80A12A80; // type:object size:0x20 data:4byte +lbl_80A12AA0 = .bss:0x80A12AA0; // type:object size:0x20 +lbl_80A12AC0 = .bss:0x80A12AC0; // type:object size:0x20 data:4byte +lbl_80A12AE0 = .bss:0x80A12AE0; // type:object size:0x3020 +lbl_80A15B00 = .bss:0x80A15B00; // type:object size:0xBD0 data:2byte +lbl_80A166D0 = .bss:0x80A166D0; // type:object size:0x27D50 data:4byte +lbl_80A3E420 = .bss:0x80A3E420; // type:object size:0x18 +lbl_80A3E438 = .bss:0x80A3E438; // type:object size:0x68 data:4byte +lbl_80A3E4A0 = .bss:0x80A3E4A0; // type:object size:0xD0 +lbl_80A3E570 = .bss:0x80A3E570; // type:object size:0x10 data:2byte +lbl_80A3E580 = .bss:0x80A3E580; // type:object size:0x230 data:byte +lbl_80A3E7B0 = .bss:0x80A3E7B0; // type:object size:0x208 data:4byte +lbl_80A3E9B8 = .bss:0x80A3E9B8; // type:object size:0x1A8 +lbl_80A3EB60 = .bss:0x80A3EB60; // type:object size:0x1D0 data:4byte +lbl_80A3ED30 = .bss:0x80A3ED30; // type:object size:0x190 data:4byte +lbl_80A3EEC0 = .bss:0x80A3EEC0; // type:object size:0x20 data:4byte +lbl_80A3EEE0 = .bss:0x80A3EEE0; // type:object size:0x38 +lbl_80A3EF18 = .bss:0x80A3EF18; // type:object size:0x100 +lbl_80A3F018 = .bss:0x80A3F018; // type:object size:0x30 data:4byte +lbl_80A3F048 = .bss:0x80A3F048; // type:object size:0x18 +lbl_80A3F060 = .bss:0x80A3F060; // type:object size:0xA8 data:4byte +lbl_80A3F108 = .bss:0x80A3F108; // type:object size:0x98 +lbl_80A3F1A0 = .bss:0x80A3F1A0; // type:object size:0x20 +lbl_80A3F1C0 = .bss:0x80A3F1C0; // type:object size:0x60 +lbl_80A3F220 = .bss:0x80A3F220; // type:object size:0x2A0 data:byte +lbl_80A3F4C0 = .bss:0x80A3F4C0; // type:object size:0x20 data:4byte diff --git a/tools/ghidra-scripts/dtk_symbol_importer.py b/tools/ghidra-scripts/dtk_symbol_importer.py index 30e3474c..fb44beb8 100644 --- a/tools/ghidra-scripts/dtk_symbol_importer.py +++ b/tools/ghidra-scripts/dtk_symbol_importer.py @@ -9,17 +9,9 @@ import string import subprocess -def demangle(sym): - try: - # TODO: port the demangler to python as calling cwdemangle is SLOW - demangler_output = subprocess.check_output(['cwdemangle', sym]) - return SymbolUtilities.replaceInvalidChars(str(demangler_output).split("(")[0], False) - except: - return sym - f = askFile("Symbols File", "OK") +demangler_output = subprocess.check_output(['rb3-batch-demangle', f.absolutePath]) -# cleanup existing syms for sym in currentProgram.getSymbolTable().getSymbolIterator(): if sym.getSource() == USER_DEFINED: continue @@ -27,22 +19,22 @@ def demangle(sym): continue sym.delete() -for l in file(f.absolutePath): - tokens = l.split(" ") - addr_matches = re.search(r'0x........', tokens[2]) - if addr_matches == None: - raise Exception("invalid symbols file") +for l in demangler_output.splitlines(): + tokens = l.split("|||") + lbl = tokens[0] + name = SymbolUtilities.replaceInvalidChars(str(tokens[1]).split("(")[0], False) + + if name == "@@@@@": + name = lbl - address = toAddr(addr_matches.group(0)) - name = tokens[0] - demangled_name = demangle(name) - print("Created label {} at address {}".format(demangled_name, address)) + address = toAddr(tokens[2]) + print("Created label {} at address {}".format(name, address)) sym = getSymbolAt(address) if sym == None: - createLabel(address, name, False, IMPORTED) - createLabel(address, demangled_name, True, ANALYSIS) + createLabel(address, lbl, False, IMPORTED) + createLabel(address, name, True, ANALYSIS) else: - createLabel(address, name, False, IMPORTED) - createLabel(address, demangled_name, sym.getSource() != USER_DEFINED, ANALYSIS) + createLabel(address, lbl, False, IMPORTED) + createLabel(address, name, sym.getSource() != USER_DEFINED, ANALYSIS)